﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/

    --primary-color: rgb(34, 171, 230);
    --danger-color: rgb(240, 64, 64);
    --warning-color: rgb(233, 193, 32);
    --success-color: rgb(31, 173, 78);
    --body-color: rgb(250, 250, 250);
    --color-light: rgb(242, 242, 247);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 1.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --body-font-size: 0.875rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;
    /*========== Font weight ==========*/
    --font-medium: 400;
    --font-semi-bold: 500;
    --font-bold: 600;
    --font-bolder: 700;

    --swiper-navigation-size: 28px;
}

/*CUSTOM*/

html, body {
    font-family: var(--body-font);
    background-color: var(--body-color);
    -webkit-font-smoothing: antialiased;
}

.h1-font-size {
    font-size: var(--h2-font-size);
}

.h2-font-size {
    font-size: var(--h1-font-size);
}

.h3-font-size {
    font-size: var(--h3-font-size);
}

.normal-font-size {
    font-size: var(--normal-font-size)
}

.small-font-size {
    font-size: var(--small-font-size)
}

.smaller-font-size {
    font-size: var(--smaller-font-size)
}

.tiny-font-size {
    font-size: var(--tiny-font-size)
}

.cursor-pointer {
    cursor: pointer;
}

.bg-navbar {
    background-color: var(--color-light);
}

.ws-nowrap {
    white-space: nowrap;
}

.mb-6 {
    margin-bottom: 10rem;
}

.text-justify {
    text-align: justify;
}

.btn-send{
    width:200px;
}



/*Card general*/

.card{
    border:1px solid rgb(221,221,221,.5);
}

.custom-card-body {
    height: 222px;
}

.image-wrapper-rectangle {
    position: relative;
    padding-top: 50%;
}

.image-wrapper-square {
    position: relative;
    padding-top: 100%;
}

.image-general {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*custom link*/

.read-more-link {
    color: #212529 !important;
    font-weight: 600;
    transition: 300ms all ease;
}

    .read-more-link:hover {
        color: #2196f3 !important;
    }

    .read-more-link > i {
        transition: 300ms all ease;
    }

    .read-more-link:hover > i {
        margin-left: .4rem;
    }


/*DROPDOWN*/
.language-dropdownMenu {
    top: 39px;
    left: -17px
}

.dropdown-menu {
    display: none;
    min-width: 1rem;
    /* transform: translateY(0px);
    transition: .5s ease all;*/
}

.dropdown:hover > .dropdown-menu {
    display: block;
    /* transform: translateY(10px);
    transition: .5s ease all;*/
}

.dropdown-item {
    font-size: var(--small-font-size);
    transition: .5s ease all;
}

    .dropdown-item i {
        background-color: var(--color-light);
        padding: .4rem;
    }

    .dropdown-item:hover > i {
        color: var(--warning-color);
    }

.dropdown-menu:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -10px;
    border-style: solid;
    border-width: 0 15px 10px 15px;
    border-color: transparent transparent rgb(158, 158, 158, .68) transparent;
}


/*Banner One*/
.bannerOne {
    border-bottom: 1px solid rgb(228, 228, 228);
    border-top: 1px solid rgb(228, 228, 228);
}

.bannerOne-item {
    border-right: 1px solid rgb(76, 76, 76, .4);
    margin-right: .2rem;
    transition: 300ms all ease-in;
}

    .bannerOne-item:hover {
        background-color: rgb(76, 76, 76, .1);
    }


    .bannerOne-item a {
        /*font-size: var(--small-font-size);*/
        padding: 1rem;
    }


    .bannerOne-item:last-child {
        border-right: none;
    }

/*SLIDER ONE-HOME*/

.mySwiper {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(228, 228, 228);
    box-shadow: rgb(228 228 228) 0px 1px 0px;
    border-radius: 12px;
    overflow: hidden
}

.sliderOne-swiper-wrapper {
    box-shadow: 0 0 0.5rem #d3d3d3;
    border-radius: 0.5rem;
}

.sliderOne-swiper-item {
    height: 508px;
}


.swiper-pagination {
    flex-wrap: nowrap;
    overflow-x: auto;
    height: 177px;
}

.swiper-pagination-bullet {
    width: 45px;
    height: 45px;
    border-radius: .5rem;
    text-align: center;
    line-height: 52px;
    font-size: 16px !important;
    opacity: 1;
    background-color: #efefef;
    margin-right: 5rem !important;
}

    .swiper-pagination-bullet i {
        font-size: 1.5rem !important;
        color: #808080;
    }


    .swiper-pagination-bullet p {
        font-weight: 600;
        color: #808080 !important;
    }


.swiper-pagination-bullet-active > i {
    color: rgb(31, 173, 78);
}

.swiper-scrollbar-drag {
    background-color: #198754;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    fill: black !important;
    stroke: black !important;
}

/*SLIDER TWO-HOME-NEWS*/

.swiper-pagination2 .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: 2px solid rgb(255, 255, 255);
    background-color: #9e9e9e;
    cursor: pointer;
    margin-right: 1rem !important;
    line-height: 0;
}

.swiper-pagination2 .swiper-pagination-bullet-active {
    background-color: #000;
}

/*BANNER THREE HOME*/

.bg-bannerthree {
    background-image: linear-gradient(to left, #4caf50, rgb(252, 244, 228));
}


/*divider*/
hr.hr-text {
    position: relative;
    border: none;
    height: 1px;
    background: #999;
}

    hr.hr-text::before {
        content: attr(data-content);
        display: inline-block;
        background: #fff;
        font-weight: bold;
        font-size: 0.85rem;
        color: #999;
        border-radius: 30rem;
        padding: 0.2rem 2rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


/*slider 3*/
.slider-3-bg-one {
    background-color: #8f9675;
}

.slider-3-bg-two {
    background-color: #9aa2b1;
}

.slider-3-bg-three {
    background-color: #92843c;
}

.slider-3-bg-four {
    background-color: #463635;
}

.slider-3-bg-five {
    background-color: #928880;
}

.slider-3-bg-six {
    background-color: #463635;
}

.slider-3-bg-seven {
    background-color: #b18d81;
}

.slider-3-cardbody-size {
    height: 160px;
}


/*home banner one*/

.bg-home-bannertwo {
    background-image: linear-gradient(to left, rgb(255, 232, 186), rgb(252, 244, 228));
}

/*foooter*/

/*banner 3*/

.banner-three div > a {
    transition: 300ms all ease-in;
}

    .banner-three div > a:hover {
        color: rgb(31, 173, 78) !important;
    }

.banner-three-wrapper {
    border: 1px solid rgb(228, 228, 228);
    border-radius: .6rem;
}

.banner-three-item {
    border-right: 1px solid rgb(228, 228, 228);
}


/*footer list*/
.footer-list > li > a {
    transition: 300ms all ease;
    color: rgb(102, 102, 102);
    font-weight: 600;
}

.link-color-primary > li > a:hover {
    color: #0d6efd;
}

.link-color-warning > li > a:hover {
    color: #ffc107;
}

.link-color-success > li > a:hover {
    color: #198754;
}

.link-color-danger > li > a:hover {
    color: #dc3545;
}


.footer-list > li > a > i {
    transition: 300ms all ease;
}

.footer-list > li > a:hover > i {
    margin-left: .4rem;
}


/*Scroll Bar */
::-webkit-scrollbar {
    width: .3rem;
    height: .3rem;
    border-radius: .5rem;
    background-color: #ddd;
}

::-webkit-scrollbar-thumb {
    background-color: #198754;
    border-radius: .5rem;
}

/*institutional-active-link*/

.institutional-active-link {
    color: #4caf50;
}

/*Nav Tabs*/
.navtabs-link {
    text-decoration: none;
    color: #212529;

}

/*Board of trustees and board of directors*/
.img-team {
width:186px;
height:186px;
    transition: transform .5s;
    filter: grayscale(100%);
}

    .img-team:hover {
        filter: grayscale(0);
        transform: scale(1.05);
    }

.team-list > li > a > i {
    color: darkgray;
    transition: transform .5s;
}


    .team-list > li > a > i:hover {
        font-size: 1.2rem;
        color: black;
        transform: scale(1.1);
    }


    /*Photo Gallery*/



.swiperGallery {
    width: 100%;
    height: 100%;
}

.mySwiperGallery {
    height: 400px;
    width: 100%;
}

.mySwiperThumb {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .mySwiperThumb .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .mySwiperThumb .swiper-slide-thumb-active {
        opacity: 1;
    }

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-nextGallery, .swiper-button-prevGallery {
    color: #000 !important;
    fill: black !important;
    stroke: black !important;
    background: #9e9e9e85;
    padding: 1.5rem;
    border-radius:.3rem;
}


/*contact*/
.contact-map iframe {
    filter: grayscale(100%) !important;
}


/* newSlider_swiper AREA */
/* Slider kapsayıcısı */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slider içeriği */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Geçişleri yumuşatır */
}

/* Slider elemanları */
.slide {
    min-width: 150px;
    max-width: 150px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Resimlerin boyutlandırılması */
    .slide img {
        width: 100%;
        height: auto;
        display: block;
    }
