:root{
    --color1:#375295;
    --color2:#00A6E6;
    --color3:#1f1f1f;
    --color4:#ffffff;
    --level-1: #8dccad;
    --level-2: #f5cc7f;
    --level-3: #7b9fe0;
    --level-4: #f27c8d;
    --black: black;
}
*{
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    outline: none !important; 
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
::marker{
    color: var(--color1);
}
.maxWidth{
    max-width: 1520px;
}
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: var(--color1);
    height: 7px;
}
::-webkit-scrollbar-thumb {
    background: var(--color2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color2);
    border-radius: 10px;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background:var(--color1);
    z-index: 999;
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:white;
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:before, #loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:white;
}
#loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}.scrollup {
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color:var(--color2);
    border: 1px solid transparent;
    z-index: 222;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 50%;
    }
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color: white !important;
}
.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:white !important;
    top: 0px !important;
    animation: slideDown 0.35s ease-out;
}
.mobil-hamburger-menu-btn{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    > i{
        color: var(--color1) !important;
    }
}
.offcanvas{
    z-index:99999;
    background-color:var(--color1) !important;
}
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 74%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding-bottom: .3rem;
    padding-top: .3rem;
}
ul.offcanvas-social-media {
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
}
ul.offcanvas-social-media > li {
    padding-right: 0;
}
ul.offcanvas-social-media > li > a > i {
    color: white !important;
    font-size: 26px;
    transition: transform 0.2s ease;
    display: inline-block;
}
ul.offcanvas-social-media > li > a:hover > i {
    transform: scale(1.3);
}
.offcanvas-header{
   padding:0rem !important;
}
.offcanvas-body {
    scrollbar-color:#f0f0f0  #f0f0f0;
    scrollbar-width: thin;
}
.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}
.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color2); 
    border-radius: 10px; 
}
.offcanvas-body::-webkit-scrollbar-track {
    background-color: #f0f0f0; 
}
.offcanvas-site-logo > a > img{
    filter: brightness(0) invert(1);
}
.accordion {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: 4px;
    list-style-type: none;
    margin-left: -4rem;
    > li {
        padding-bottom: .5rem;
    }
    > .menu-item {
       padding-bottom: 1rem;
    }
    > .menu-item > a{
        color: white !important;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 18px;
    }
}
.accordion-submenu{
    display: none;
    margin-left: .5rem;
    margin-top: 1rem;
    list-style-type: none;
    >li{
        padding-bottom: 1rem;
    }
    > li > a{
    font-size: 14px;
    color: var(--color4) !important;
    padding: 7px 15px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 400;
    }
}
.accordion .link {
   cursor: pointer;
   display: block;
   padding: 0px 15px 15px 42px;
   color:white !important;
   font-size: 18px;
   font-weight: 500;
   position: relative;
   transition: all 0.4s ease;
   text-decoration: none;
   text-transform: capitalize;
}
.accordion-submenu > li > a{
    font-size: 16px;
}
.accordion li:last-child .link {
   border-bottom: 0;
}
.accordion li i {
   position: absolute;
   top: 16px;
   left: 12px;
   font-size: 18px;
   color: #595959;
   transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
    right: -50px;
    left: auto;
    font-size: 18px;
    top: 5px;
    background-color: white !important;
    color: var(--color1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
    top: -20px;
}
.accordion li.open .link {
   color: white;
}
.accordion li.open i {
    color: var(--color1);
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo{
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.mobil-web-site-logo > a > img{
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.language-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -.6rem;
    > li {
        padding-right: .7rem;
        > a{
            color: white;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
        }
    }
}
#language-menu{
    margin-left: -1.4rem !important;
}

.site-navigation{
    background-color: white;
    border-bottom: 1px solid #ececec;
    padding: 1rem 1rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.stickyHeader{
    background-color: white;
    z-index: 444;
    position: fixed;
    border-bottom: 1px solid #ececec;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    width: 100%;
}
.web-site-logo > a > img{
    width: 200px;  
}
.site-navigation-menu{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    list-style-type: none;
    margin-top: 1.7rem;
    > li > a{
        color: var(--color1);
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        padding: 58px 0px;
         &::after{
        content: "";
        display: block;
        height: 4px;
        background:var(--color1);
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 40%;
    }
        > i {
            color: var(--color1);
            font-size: 13px;
        }
    }
}

.site-navigation-menu > li:hover > .sub-menu {
    display: block;
}
.sub-menu{
    display: none;
    position: absolute;
    z-index: 555;
    min-width: 325px;
    background-color:var(--color2);
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    padding-left: 0rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    margin-top: 2.3rem;
    margin-left: -1.7rem;
}
.sub-menu > li{
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 4px solid white; 
    position: relative;
}
.sub-menu > li:hover{
    background-color: var(--color1);
    color:white;
    >a {
        background-color: var(--color1);
        color: white !important; 
        text-decoration: none !important;
        display: block;
    }
}
.sub-menu > li > a{
    color: white !important;
    text-decoration: none !important;
    font-size: 17px;
    font-weight: 400;
    > i {
         color: white;
         font-size: 13px;
        float: right;
        padding-top: .5rem;
    }
}
.sub-menu-child{
    display: none;
    position: absolute;
    z-index: 555;
    min-width: 400px;
    background-color:var(--color2);
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    left: 320px;
    top: 0px;
    padding-left: 0rem;
}
.sub-menu > li:hover > .sub-menu-child{
    display: block;
}
.sub-menu-child > li{
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.sub-menu-child > li:hover{
    background-color: var(--color1);
    color:white;
    >a {
        background-color: var(--color1);
        color: white !important; 
        text-decoration: none !important;
        display: block;
    }
}
.sub-menu-child > li > a{
    color: white !important;
    text-decoration: none !important;
    font-size: 17px;
    font-weight: 400;
    > i {
         color: white;
         font-size: 13px;
    }
}
.site-navigation-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    > a{
        color: var(--color1);
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: .5rem;
        padding-bottom: .5rem;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border: 1px solid var(--color1);
        transition: .3s ease;
        &:hover{
            background-color: var(--color2);
            color: white;
            font-size: 18px;
            font-weight: 500;
            border: 1px solid var(--color2);
        }
    }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/********************************************************************************************************************/
#owl-slider > .owl-dots{
    display:none !important;
}
.slider-img{
     position:relative;
       &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--color1);
        opacity: .6;
    }
}
.slider-img > img{
    height:700px;
    width: 100%;
    object-fit: cover;
}
.mobil-slider-img{
      position:relative;
       &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--color1);
        opacity: .6;
    }
}
.mobil-slider-img > img{
    height:100%;
    width: 100%;
    object-fit: cover;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: white !important;
    border-color: white !important;
}
.owl-theme .owl-dots .owl-dot span{
    width: 15px !important; 
    height: 15px !important;
}
#owl-slider > .owl-nav{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: space-between !important;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}
.slider-content{
    position: absolute;
    top: 220px;
    left: 20%;
}
.slider-content-title > p{
    color: white;
    font-size: 20px;
    font-weight: 700;
}
.slider-sub-title > p {
    color: white;
    font-size: 45px;
    font-weight: 600;
    line-height: 4rem;
}
.slider-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 1.5rem;
    > a{
        margin-right: 1rem;
    }
}
.slider-btn > a{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid var(--color1);
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
    background-color: #3752958c;
    transition: .3s ease;
    text-transform: uppercase;
    &:hover{
        background-color: var(--color1);
        color: white;
        border: 1px solid var(--color1);
    }
}
#owl-slider > .owl-nav > .owl-prev{
    background-color: white !important;
    color: var(--color1) !important;
    width: 50px;
    height: 50px;
    > span {
        font-size:25px;
    }
}
#owl-slider > .owl-nav > .owl-next{
    background-color: white !important;
    color: var(--color1) !important;
    width: 50px;
    height: 50px;
    > span {
        font-size:25px;
    }
}
.slider-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out;
}
.slider-content.animate {
    opacity: 1;
    transform: translateY(0);
}
/********************************************************************************************************************/
.slider-info{
    position: relative;
    z-index: 105;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--color1);
        z-index: -1;
    }
}
.slider-info-list{
    background-color: white !important;
    width: 100% !important;
    position: relative;
    top: -50px;
}
.slider-info-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    text-align: center;
    text-decoration: none !important;
    border: none !important;
    height: 250px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    padding: .7rem;
    &:hover{
        box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
        border: 1px solid #cfcfcf;
    }
}
.slider-info-box-title > h3{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--color3);
    line-height: 1.5rem;
    transition: .3s ease;
    height: 70px;
    &:hover{
        color: var(--color1);
    }
}
.slider-info-box-icon{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
    > i {
        color: var(--color1);
        font-size:40px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        transition: background-color 1.5s ease;
        padding-top: .8rem;
    }
}
.slider-info-box:hover > .slider-info-box-icon > i {
    background-color: var(--color1);
    color: white;
}
.slider-info-content{
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
    justify-content: space-between;
    > .title > h3{
        color: white;
        font-size: 22px;
        font-weight: 400;
    }
}
.slider-info-content > .btn-link {
    text-decoration: none;
}
.slider-info-content > .btn-link > a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    background-color: var(--color2);
    padding: 1rem;
    transition: .3s ease;
    text-decoration: none;
    padding-left: 3rem;
    padding-right: 3rem;
}
/********************************************************************************************************************/
.kurumsal{
    padding: 80px 0px 130px 0px;
    background-color: #F6F6F6;
    overflow: hidden;
}
.kurumsal-content > .title > h1{
    font-size: 40px;
    font-weight: 700;
    line-height: 3rem;
    color: #202B5D;
}
.kurumsal-content > .text {
    margin-top: 2rem;
}
.kurumsal-content > .text > p {
    color: #62718d;
    font-size: 16px;
    font-weight: 400;
    padding-top: .5rem;
}
.kurumsal-content > .motto{
    margin-top: 3rem;
    border-left: 3px solid var(--color1);
    padding-left: 1rem;
}
.kurumsal-content > .motto > .motto-title > h3{
    color: var(--color1);
    font-size: 25px;
    font-weight: 600;
}
.motto > .motto-text > p {
    color: var(--color3);
    font-size: 16px;
    font-weight: 400;
    padding-top: .5rem;
}
.video-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 2rem;
}
.video-box > .icon > a > i{
    background-color: var(--color1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    padding: .8rem;
    font-size: 16px;
}
.video-box > .icon{
    margin-right: .7rem;
}
.video-box > .title > p{
    color: #62718d;
    font-size: 16px;
    font-weight: 500;
}
.kurumsal-img-list{
    display: flex;
    flex-direction: column;
    position: relative;
}
.kurumsal-first-img{
    z-index: 150;
}
.kurumsal-second-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: absolute;
    top: 350px;
    left: 300px;
}
.kurumsal-img-background{
    position: absolute;
    top: 90%;
    left: 100px;
    z-index: 55;
}
/********************************************************************************************************************/
.counter{
   background-color: var(--color1);
   padding: 20px 30px 20px 30px;
}
.counter-inner{
   text-align: center;
   padding-top: 1rem;
}
.counter-title{
   margin-bottom: 0;
   font-size: 55px;
   font-weight: 300;
   line-height: 44px;
   color: #ffffff;
   display: block;
}
.counter-text {
   color: #ffffff;
   font-size: 20px;
   font-style: normal;
   font-weight: 400;
   margin-top: 35px;
   display: block;
}
/********************************************************************************************************************/
.timeline {
    padding-block: 50px;
    background-color: var(--color1);
}
.timeline ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    position: relative;
}
.timeline ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    background-color: #fff;
}
.timeline ul > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 140px;
    position: relative;
}
.timeline ul > li:not(:last-child) {
    margin-right: 20px;
}
.timeline ul > li:nth-child(even) {
    flex-direction: column-reverse;
}
.timeline ul > li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 8px solid #fff;
    background-color: var(--color1);
    z-index: 1;
}
.timeline ul > li .years {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.timeline ul > li .text {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}
@media only screen and (min-width: 0px) and (max-width: 900px) {
    .timeline ul {
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .timeline ul::before {
        display: none;
    }
    .timeline ul > li:not(:last-child) {
        margin-right: 50px;
    }
    .timeline ul > li .text {
        font-size: 16px;
    }
}
/********************************************************************************************************************/
.arastirmalar{
    padding: 50px 0px 50px 0px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.arastirmalar::before{
    content: "";
    width: 40%;
    height: 100%;
    position: absolute;
    right: 0px;
    background: #f2edeb;
    top: 0;
    z-index: -4;
}
.section-arastirmalar-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.section-arastirmalar-content-title > h3{
    font-size: 36px;
    color: #202b5d;
    font-weight: 600;
    margin: 0;
    float: left;
}
.section-arastirmalar-content-btn{
    margin-top: .5rem;
}
.section-arastirmalar-content-btn > a {
    color: var(--color2);
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    > i {
        font-size: 14px;
        color: var(--color2);
    }
}
.etkinlik-item{
    margin-top: 3rem;
    height: 100%;
    position: relative;
    width: 100%;
}
.etkinlik-item.ui-size-small {
    display: block;
    text-decoration: none;
    overflow: hidden;
}
.etkinlik-item.ui-size-small:hover .etkinlik-item-img {
    overflow: hidden;
}
.etkinlik-item.ui-size-small:hover .etkinlik-item-img img {
    transform: scale(1.05);
}
.etkinlik-item.ui-size-small .etkinlik-item-body {
    height: auto;
    text-align: center;
}
.etkinlik-item.ui-size-small .etkinlik-item-img {
    height: auto;
}
.etkinlik-item.ui-size-small .etkinlik-item-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.etkinlik-item-body > .date{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: white;
    display: flex;
    flex-direction: row;
    height: 35px;
    overflow: hidden;
}
.etkinlik-item-body > .date > .date-first-text{
    background-color: var(--color1);
    padding-right: .8rem;
    padding-left: .8rem;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding-top: .3rem;
}
.etkinlik-item-body > .date > .date-second-text{
    background-color: white;
    padding-right: .8rem;
    padding-left: .8rem;
    padding-top: .3rem;
    color:var(--color3);
    font-size: 16px;
    font-weight: 400;
}
.etkinlik-item-body{
    background-color: #fff;
    box-shadow: 0px 10px 40px 0px rgba(6, 22, 58, 0.1);
    border: 1px solid #f2edeb;
    padding: 1rem;
    height: 300px;
    overflow: hidden;
}
.etkinlik-item-body > .sub-title > p{
    color: var(--color1);
    font-size: 18px;
    font-weight: 500;
}
.etkinlik-item-body > .title > h3{
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.2px;
    font-weight: 500;
    color: #202b5d;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.etkinlik-item-body > .text {
    margin-top: 1rem;
}
.etkinlik-item-body > .text > p{
    color: #62718d;;
    font-size: 16px;
    font-weight: 400;
    height: 100px;
    overflow: hidden;
}
.etkinlik-item-body > .btn-link {
    text-decoration: none;
    margin-top: auto;
    padding-top: 1.5rem;
    > a{
        border: 2px solid #e0e0e0;
        font-size: 16px;
        font-weight: 400;
        color: var(--color1);
        padding-left: 3rem;
        padding-right: 3rem;
        padding-bottom: .6rem;
        padding-top: .6rem;
        text-decoration: none;
        transition: .3s ease;
        &:hover{
            background-color: var(--color1);
            border: 2px solid var(--color1);
            color: white;
        }
    }
}
.etkinlik-item-img {
    overflow: hidden;
    height: 250px;
}
.etkinlik-item-img > a {
    display: block;
    width: 100%;
    height: 100%;
}
.etkinlik-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
#etkinlik-item-img > img{
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.etkinlik-item-img > .icon{
    width: 100%;
    height: 200px;
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background-color: #fff;
}
/****************************************************************************************/
.section-belgeler-content{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    margin-left: calc(40% - 20%);
}
.section-belgeler-content-title{
    margin-top: .5rem;
}
.section-belgeler-content-title > h3{
    color: var(--color1);
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align:left;
}
.section-belgeler-list-content{
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin-top: 2rem;
    background-color: white;
    height: 540px;
    padding: 2rem;
    overflow: hidden;
}
.section-belgeler-list-content-icon{
    background-color: var(--color1);
    height: 125px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}
.section-belgeler-list-content-icon > i {
    color: white;
    font-size: 50px;
    padding-top: 2rem;
}
.section-belgeler-list{
    margin-top: 1.5rem;
    padding-left: 0rem;
    margin-left: -1.9rem;
    &:not([class *= "ui-style-"]) {
        > ul {
            > li {
                &:last-child {
                    justify-content: center;
                }
            }
        }
    }
    &.ui-style-detail {
        > ul {
            > li {
                padding-inline: 20px;
                &:nth-child(odd) {
                    background-color: #f5f5f5;
                }
            }
        }
    }
    > ul {
        list-style-type: none;
        > li {
            display: flex;
            align-items: center;
           justify-content: space-between;
           border-bottom: 1px solid #eeeeee;
               padding-bottom: .4rem;
           > a {
                 font-size: 18px;
                 line-height: 1.2;
                 color: #202b5d;
                 letter-spacing: 0.2px;
                 font-weight: 500;
                 text-decoration: none;
                 padding-bottom: .4rem;
                 padding-top: .8rem;
               }
            .left {
               display: flex;
               flex-direction: column;
               justify-content: flex-start;
               align-items: flex-start;
               > div {
                 font-size: 18px;
                 line-height: 1.2;
                 color: #202b5d;
                 letter-spacing: 0.2px;
                 font-weight: 500;
                 text-decoration: none;
                 padding-bottom: .4rem;
                 padding-top: .8rem;
               }
               
               > span{
                   margin: 0 0 0 0;
                   font-size: 16px;
                   line-height: 22px;
                   color: #62718d;
                   padding-bottom: .4rem;
               }
            }
            .right {
                display: flex;
                align-items: center;
                .icon {
                    font-size: 18px;
                    color: #000;
                    text-decoration: none;
                    display: block;
                    }
                .icon:not(:last-child) {
                    margin-right: 20px;
                    }
                .icon:hover {
                    color: var(--color1);
                    }
                }
            }
        }
    }
}
.section-belgeler-list > ul > li:last-child {
    border-bottom: none;
    align-items: center !important;
    > a{
       font-size: 16px;
       line-height: 24px;
       letter-spacing: 0.2px;
       color: #0067da; 
       text-align: center !important;
       > i {
        font-size: 12px;
       }
    }
}
/****** GALERİ SAYFASI *******************************************************/
.gallery-page {
    padding: 20px 0 60px;
}
/* CSS Grid galeri — Bootstrap'ten bağımsız */
.kav-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
@media (max-width: 991px) {
    .kav-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .kav-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.galeri-item {
    position: relative;
    overflow: hidden;
    background: #111;
    aspect-ratio: 4 / 3;
}
.galeri-item > a {
    display: block;
    width: 100%;
    height: 100%;
}
.galeri-item > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.galeri-item:hover > a > img {
    transform: scale(1.06);
    opacity: 0.8;
}
.galeri-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.galeri-item:hover::after {
    opacity: 1;
}
/****** GALERİ BİTİŞ *********************************************************/
/**************************************************************************************************************************************************************/
.etkinlikler{
    padding: 130px 0px 70px 0px;
    background: url("../images/banner/home1_bg_blog.jpg");
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 50% 50% !important;
}
.etkinlikler.ui-style-2 {
    padding-bottom: 50px !important;
    padding-top: 20px !important;
    background: none;
    position: relative;
    z-index: 1;
}
.etkinlikler.ui-style-2 .section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color1);
}
.etkinlikler.ui-style-2 .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
.etkinlikler.ui-style-2 .section-etkinlikler-content > .title > h3 {
    color: #fff;
}
.etkinlikler.ui-style-3 {
    padding-top: 30px !important;
}
.section-etkinlikler-content{
    margin-top: 2.5rem;
    text-align: center;
}
.section-etkinlikler-content > .title > h3{
    margin: 0px;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: #202b5d;
    margin-bottom: 17px;
}
.section-etkinlikler-content > .text {
    margin-top: 1rem;
}
.section-etkinlikler-content > .text > p {
    margin: 0px;
    font-size: 18px;
    line-height: 26px;
    color: #62718d;
}
.section-etkinlikler-content > .btn-link{
    margin-top: 2rem;
    text-decoration: none;
    > a{
        border: 2px solid #e0e0e0;
        font-size: 16px;
        font-weight: 400;
        color: var(--color1);
        padding-left: 3rem;
        padding-right: 3rem;
        padding-bottom: .6rem;
        padding-top: .6rem;
        text-decoration: none;
        transition: .3s ease;
        &:hover{
            background-color: var(--color1);
            border: 2px solid var(--color1);
            color: white;
        }
    }
}
/*************************************************************************************************************************************************/
.yayin-arsivi{
    position: relative;
    background-color: #202b5d;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 70%;
        background-color: var(--color1);
        z-index: -1;
    }
}
.section-yayin-arsivi-content{
    margin-top: 3rem;
}
.section-yayin-arsivi-content > .title > h3{
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0.2px;
    color: #ffffff;
}
.section-yayin-arsivi-content > .text{
    margin-top: 1rem;
}
.section-yayin-arsivi-content > .text > p {
    color: #d1cfcf;
    margin: 0px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.yayin-arsivi-list{
    width: 100% !important;
    position: relative !important;
    top: 60px;
    z-index: 44;
}
.yayin-arsivi-list-right .heading, .yayin-arsivi-list-left .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
}
.yayin-arsivi-list-right{
    background-color: #FFFFFF;
    box-shadow: 0px 10px 40px 0px rgba(6, 22, 58, 0.1);
    padding: 30px 30px 55px 30px;
    border: 1px solid #e9e6e6;
    height: 375px;
    overflow: hidden;
}
.yayin-arsivi-list-right > ul {
    list-style-type: none;
    padding-left: 0rem;
    margin-left: 0rem;
}
.yayin-arsivi-list-right > ul > li {
    border-bottom: 1px solid #eeeeee;
    position: relative;
    padding: 0 20px;
    transition: 0.4s;
    &::before{
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      top: -1px;
      left: 0;
      visibility: hidden;
      opacity: 0;
      transition: 0.8s;
    }
    &::after{
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      bottom: 0px;
      left: 0;
      visibility: hidden;
      opacity: 0;
      transition: 0.8s;
    }
    &:hover{
        background-color: white;
        box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
        width: 100%;
    }
}
.yayin-arsivi-list-right > ul > li > a{
    font-size: 18px;
    line-height: 1.2;
    color: var(--color1);
    font-weight: 400;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 13px 0 11px 0;
    text-decoration: none;
}
.yayin-arsivi-list-right > ul > li > a > i {
    color: #888888;
    font-size: 13px;
    padding-top: .3rem;
}
.yayin-arsivi-list-right > ul > li:last-child {
    border-bottom: none !important;
}
.yayin-arsivi-list-left{
    background-color: var(--color2);
    box-shadow: 0px 10px 40px 0px rgba(6, 22, 58, 0.1);
    padding: 30px 30px 55px 30px;
    height: 375px;
    overflow: hidden;
}
.yayin-arsivi-list-left > ul {
    list-style-type: none;
    padding-left: 0rem;
    margin-left: 0rem;
}
.yayin-arsivi-list-left > ul > li {
    border-bottom: 1px solid rgba(230, 230, 230, 0.699);
    position: relative;
    padding: 0 20px;
    transition: 0.4s;
    &::before{
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      top: -1px;
      left: 0;
      visibility: hidden;
      opacity: 0;
      transition: 0.8s;
    }
    &::after{
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      bottom: 0px;
      left: 0;
      visibility: hidden;
      opacity: 0;
      transition: 0.8s;
    }
    &:hover{
        background-color: white;
        box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
        width: 100%;
    }
    &:hover >a{
        color: var(--color1);
    }
    &:hover >a > i{
         color: var(--color1);
    }
}
.yayin-arsivi-list-left > ul > li > a{
    font-size: 18px;
    line-height: 1.2;
    color: white;
    font-weight: 400;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 13px 0 11px 0;
    text-decoration: none;
}
.yayin-arsivi-list-left > ul > li > a .text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yayin-arsivi-list-left > ul > li > a > i {
    color: white;
    font-size: 13px;
    padding-top: .3rem;
}
.yayin-arsivi-list-left > ul > li:last-child {
    border-bottom: none !important;
}
/***************************************************************************************************************************************/
.haberler{
    padding: 0px 0px 100px 0px;
    background-color: #F6F6F6;
}
.section-haberler-content{
    padding-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.section-haberler-content > .title > h3{
    margin: 0px;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: #202b5d;
    margin-bottom: 17px;
}

.section-haberler-content > .btn-link{
    margin-top: 2rem;
    text-decoration: none;
    > a{
        font-size: 16px;
        font-weight: 400;
        color: white;
        background-color: var(--color1);
        padding-left: 3rem;
        padding-right: 3rem;
        padding-bottom: 1rem;
        padding-top: 1rem;
        text-decoration: none;
        transition: .3s ease;
        &:hover{
            background-color: var(--color1);
            color: white;
        }
    }
}
.haber-item{
    margin-top: 2rem;
    position: relative;
    margin-bottom: 2rem;
}
.haber-item-img {
    display: block;
}
.haber-item-img > img{
        max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: white;
}
#haber-item-img{
    border: 1px solid #ddd;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.haber-item-body{
    background-color: white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    position: absolute;
    padding: 1rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    width: 75%;
}
.haber-item-body > .haber-item-title > h3{
    font-size: 20px;
    line-height: 30px;
    color: #202b5d;
    font-weight: 500;
    text-align: center;
}
.haber-item-btn-link{
    text-align: center;
}
.haber-item-btn-link > a{
    text-align: center;
    margin: 4px 0 0 0;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #62718d;
    text-decoration: none;
    transition: .3s ease;
}
.haber-item-btn-link > a > i {
    color: #62718d;
    font-size: 11px;
}
.haber-item-icon {
    font-size: 32px;
}
.haber-item-icon svg {
    width: 1em;
    height: 1em;
}
.haber-item-text {
    font-size: 20px;
}
/***************************************************************************************************************/
.banner{
    position: relative;
    height: 300px;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    position: relative;
    box-shadow: 0 5px 5px rgb(0 0 0 / 04%);
}
.banner .container-fluid {
    height: 100%;
}
.banner .container-fluid .row {
    height: 100%;
}
.banner-title{
   display: flex;
   align-items: flex-end;
   justify-content: center;
   height: 100%;
}
.banner-title >h1{
    color: var(--color1);
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 11px 11px 0 0;
    padding: 15px 25px;
    box-shadow: 0 -10px 15px rgb(0 0 0 / 10%);
    margin: 0;
}
.page-content{
    padding: 50px 0px 50px 0px;
}
.page-content-description > p {
    font-size: 16px;
    font-weight: 400;
    padding-top: .5rem;
    color: var(--color3);
}
.page-content-description .d-flex img {
    width: 100px;
}
.page-content-img {
    position: sticky;
    top: 130px;
}
.page-content-img > img{
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}
.page-content-title > h3{
    font-size: 40px;
    font-weight: 700;
    line-height: 3rem;
    color: #202B5D;
}
.page-content-title > h4{
    font-size: 23px;
    font-weight: 700;
    line-height: 3rem;
    color: #202B5D;
}
.page-content-description > ul{
    padding-left: 0rem;
    margin-left: 1rem;
}
.page-content-description > ul > li {
    font-size: 16px;
    font-weight: 400;
    padding-top: .5rem;
    color: var(--color3);
}
.page-content-contact > a{
    font-size: 18px;
    font-weight: 700;
    color: #202B5D;
}
.page-content-btn{
    margin-top: 2rem;
}
.page-content-btn > a{
    background-color: #0073AA;
    padding-left: 2rem;
    padding-right: 2rem;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: .7rem;
    padding-bottom: .7rem;
    text-decoration: none;
}
.haberler-page{
    padding-bottom: 3rem;
}
.contact{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.contact-adres{
    background-color: var(--color1);
    height: 100%;
    padding: 3rem;
}
.contact-adres-menu-title > h3{
    color: white;
    font-size:40px;
    font-weight: 600;
}
.contact-adres-menu-title > h4{
    color:white;
    font-size: 25px;
    font-weight: 400;
    padding-top: 1rem;
}
.contact-adres-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 2rem;
}
.contact-adres-menu >  li {
    padding-top: 2rem;
}
.contact-adres-menu > li > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.contact-adres-menu > li > a > i {
    padding-right: 1rem;
    font-size: 25px;
}
.contact-adres-menu > li > i {
    padding-right: 1rem;
}
.contact-form{
    position: sticky;
    top: 100px;
}
.contact-form-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.contact-form-text > p {
    font-size: 16px;
    color: var(--color3);
    font-weight: 400;
    padding-top: 1rem;
}
.socail-media-adres-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: -2rem;
    margin-top: 3rem;
    list-style-type: none;
    > li{
        padding-right: 1rem;
        >a {
         color: white;
          font-size:25px;
        }
    }
}
form{
    padding-top: 2rem;
}
.form-group{
    margin-bottom: 1rem;
}
.label{
    color: var(--color3);
    font-size: 16px;
    font-weight: 400;
}
.form-control{
    height: 50px;
    border: 1px solid #ccc !important;
    border-radius: 0px !important;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="checkbox"]:focus,
input[type="file"]:focus,
.uneditable-input:focus {   
  border-color:var(--color1);
  outline: 0 none !important;
}
.form-send{
    border: none;
    background-color: var(--color1);
    color: white;
    width: 170px;
    height: 40px;
    transition: .3s ease;
    position: relative;
    top: 15px;
    border-radius: 0px;
    &:hover{
      background-color: var(--color1);
    }
}
.form-check-input{
    font-size: 20px;
}
.form-check-input{
    background-color: white !important;
    border-color: var(--color1) !important;
    font-size: 20px;
}
.form-check-input:checked{
    background-color: var(--color1) !important;
    border-color: var(--color1) !important;
    font-size: 20px;
}
.form-check-label{
    padding-top: .3rem;
    padding-left: .3rem;
}
.form-check-label > span{
    padding-top: .5rem;
    font-size: 16px;
    color: var(--color3);
    > a{
        font-size: 16px;
        color: var(--color3);
        text-decoration: none;
    }
}
textarea{
    height: 100px !important;
}
.contact-map{
    padding-bottom: 3rem;
}
.nav-item > .nav-link{
    color: var(--color2);
    background-color: white;
    font-size: 35px;
    color: #cacaca;
    font-weight: 900;
    border: none !important;
    outline: none !important;
    transition: .3s ease;
    &:hover{
        color: var(--color1);
    }
}
.nav-link.active::after {
    display: block;
    content: "";
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 12px solid var(--color1);
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    transform: rotate(360deg);
}
.nav-link.active{
    color: var(--color1) !important;
}
.nav-tabs{
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 0px !important;
}
.file-upload-group {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}
.upload-label {
 padding-bottom: .5rem;
}
.custom-file-upload {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width:100%;
}
.upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.file-name-display {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 0px !important;
  background-color: white;
  color: var(--color3);
  font-size: 14px;
  height: 55px;
}
.upload-btn {
  padding: 15.5px 20px;
  background-color:var(--color1);
  color: #fff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  transition: background-color 0.3s ease;
  z-index: 1;
}
.yonetim-kurulu{
    padding: 2rem 0rem 2rem 0rem;
}
.page-sidebar {
    background: var(--color1);
    border-radius: 9px;
    position: sticky;
    top: 10px;
    height: 700px;
    overflow: hidden;
}
.page-sidebar ul {
    padding: 1.5rem 0 1.5rem;
    margin: 0;
    list-style: none;
}
.page-sidebar ul > li{
    padding: .2rem 0rem .2rem 0rem;
}
.page-sidebar ul a {
    color: #fff;
    display: block;
    padding: .75rem 2rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
}
.page-sidebar ul a:hover {
    background-color: #fff1;
}
.page-sidebar .title {
    font-size: 20px;
    color: var(--color2);
    padding: 2rem;
    padding-bottom: 0;;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 600;
}
.page-sidebar > ul > li.active{
    background-color: #fff1;
}
.ekib-box{
    padding: 2rem;
    background: #f3f3fa;
    margin-bottom: 1rem !important;
    height: 430px;
    overflow: hidden;
    transition: .3s ease;
    display: block;
    text-decoration: none;
    &:hover{
        background-color: #062239fa;
        > .ekib-box-title > h3{
            color: white;
        }
        > .ekib-box-sub-title > h4{
            color: white;
        }
    }
}
.ekib-box-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.ekib-box-img > img{
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
}
.ekib-box-title > h3{
    margin-top: 1.5rem;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--color1);
}
.ekib-box-sub-title > h4{
    text-align: center;
    margin: 0;
    color: var(--color3);
    font-size: 16px;
    font-weight: 500;
}
/***************************************************************************************************************/
footer{
    padding:30px 0px 30px 0px;
    background-color: #1A2555;
    position: relative;
    z-index: 44;
}
.footer-top{
    padding-bottom: .7rem;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        border-bottom: 1px solid #263A65;
        z-index: -4;
    }
}
.footer-navigation-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-left: 0rem;
    margin-left: -.7rem;
}
.footer-navigation-menu > li {
    padding-right: .3rem;
}
.footer-navigation-menu > li  > a{
    display: inline-flex;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #b0b8ca;
    text-decoration: none;
}
.footer-social-media-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0rem;
    padding: 0rem;
}
.footer-social-media-menu > li {
    padding-right: .7rem;
}
.footer-social-media-menu > li > a{
    color: var(--color1);
    font-size: 16px;
    background-color: white;
    border: 1px solid white;
    padding: .5rem;
    border-radius:50%;
}

.footer-menu-title > h3{
    color: white;
    font-size: 23px;
    font-weight: 500;
    padding-top: .5rem;
}
.footer-menu-list > ul {
    list-style-type:  none;
    margin-left: -2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    > li {
        padding-top: .6rem;
        > a{
            color: var(--color2);
            font-size: 16px;
            font-weight: 400;
            text-decoration: none;
            transition: .3s ease;
            &:hover{
                color: var(--color5);
            }
        }
    }
}
.footer-social-media > ul{
    list-style-type: none;
    margin-left: -2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    > li {
        padding-right: 1rem;
        >a{
            color: var(--color1);
            > i {
                border: 1px solid var(--color1);
                padding: .5rem;
                border-radius: 20px;
                font-size: 20px;
                transition: .3s ease;
                &:hover{
                    background-color: var(--color5) !important;
                    color: white !important;
                }
            }
        }
    }
}
.footer-about-us-text > p{
    color: #8c96ac;
    font-size: 18px;
    font-weight: 400;
}
.footer-about-us-text > ul{
    list-style-type: none;
    margin-left: -.6rem;
    padding-left: 0rem;
    > li {
        padding: .5rem;
        color: white;
        font-size: 16px;
        font-weight: 400;
        > a{
            color: #8c96ac;
            font-size: 16px;
            font-weight: 400;
            text-decoration: none;
            > span{
            color: white;
             }   
            > i {
                margin-right: .4rem;
                font-size: 13px;
                color: var(--color2);
            }
        }
    }
}
.footer-menu-list > ul{
    margin-left: -.5rem !important;
    padding-left: 0rem !important;
}
.footer-menu-list > ul > li > a{
    color: #8c96ac;
    font-size: 16px;
    font-weight: 400;
    transition: .3s ease;
    padding: .5rem;
    &:hover{
        color: white;
        > i {
            color: white;
        }
    }
}
.footer-menu-list > ul > li > a > i{
    padding-right: .5rem;
    color: #8c96ac;
    font-size: 12px;
}
.footer-coprigyt{
    padding-top: 2rem;
}
.footer-coprigyt > .text > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.footer-about-us-text{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.footer-bottom{
    background-color: #06163A;
}
.coprigyt-text > p{
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding-top: .8rem;
    padding-bottom: 0rem;
}
.footer-web-site-logo > a > img{
    width: 200px;
    filter: brightness(0) invert(1);
}
.footer-center{
    padding: 40px 0px 0px 0px;
}
/*****************************************************************************************************************/
.extra-content {
    margin-top:3rem;
    background-color:transparent;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding:1rem;
}
.project-page{
    padding: 50px 0px 50px 0px;
}
ol{
    list-style-type: none !important;
}
ol::marker{
    display: none !important;
}
.organizasyon-semasi{
    padding: 50px 0px 50px 0px;
}
.rectangle {
  position: relative;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.level-1 {
  width: 50%;
  margin: 0 auto 40px;
  background: var(--color1);
  color: #fff;
}
.level-1:first-child::before {
  height: 40px;
}
.level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: rgb(44, 44, 44);
}
.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
.level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background: var(--black);
}
.level-2-wrapper::after {
  display: none;
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 2px;
  background: var(--black);
}
.level-2-wrapper li {
  position: relative;
}
.level-2-wrapper > li::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}
@media screen and (min-width: 1750px) {
	.level-2-wrapper > li::before {
		margin-left: 1px;
	}
}
.level-2 {
  width: 70%;
  margin: 0 auto 20px;
  background: var(--color2);
  color: #fff;
}
.level-2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
  display: none;
}
.level-2::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}
.level-3-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 20px;
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
}
.level-3-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: calc(25% - 5px);
  width: calc(50% + 10px);
  height: 2px;
  background: var(--black);
  display: none;
}
.level-3-wrapper > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 2px;
  height: 20px;
  background: var(--black);
  display: none;
}
.level-3 {
  margin-bottom: 20px;
  background: var(--level-3);
}
.level-4-wrapper {
  position: relative;
  width: 80%;
  margin-left: 20px;
}
.level-4-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--black);
}
.level-4-wrapper li + li {
  margin-top: 20px;
}
.level-4 {
  font-weight: normal;
  background: var(--color4);
}
.level-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}
@media screen and (max-width: 700px) {
  .rectangle {
    padding: 20px 10px;
  }
  .level-1,
  .level-2 {
    width: 100%;
  }
  .level-1 {
    margin-bottom: 20px;
  }
  .level-1::before,
  .level-2-wrapper > li::before {
    display: none;
  }
  .level-2-wrapper,
  .level-2-wrapper::after,
  .level-2::after {
    display: block;
  }
  .level-2-wrapper {
    width: 90%;
    margin-left: 10%;
  }
  .level-2-wrapper::before {
    left: -20px;
    width: 2px;
    height: calc(100% + 40px);
  }
  .level-2-wrapper > li:not(:first-child) {
    margin-top: 50px;
  }
}

/****** PROJELER & HABER KARTLARI ********************************************/
.haber-item{
    margin-top: 2rem;
    position: relative;
    margin-bottom: 2rem;
}
.haber-item-img {
    display: block;
}
.haber-item-img > img{
    max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: white;
}
#haber-item-img{
    border: 1px solid #ddd;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.haber-item-body{
    background-color: white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    position: absolute;
    padding: 1rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    width: 75%;
}
.haber-item-body > .haber-item-title > h3{
    font-size: 20px;
    line-height: 30px;
    color: #202b5d;
    font-weight: 500;
    text-align: center;
}
.haber-item-btn-link{
    text-align: center;
}
.haber-item-btn-link > a{
    text-align: center;
    margin: 4px 0 0 0;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #62718d;
    text-decoration: none;
    transition: .3s ease;
}
.haber-item-btn-link > a > i {
    color: #62718d;
    font-size: 11px;
}
.project-page{
    padding: 50px 0px 50px 0px;
}
.nav-item > .nav-link{
    color: var(--color2);
    background-color: white;
    font-size: 35px;
    color: #cacaca;
    font-weight: 900;
    border: none !important;
    outline: none !important;
    transition: .3s ease;
}
.nav-item > .nav-link:hover{
    color: var(--color1);
}
.nav-link.active::after {
    display: block;
    content: "";
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 12px solid var(--color1);
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    transform: rotate(360deg);
}
.nav-link.active{
    color: var(--color1) !important;
}
.nav-tabs{
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: 0px !important;
}
/****** PROJELER BİTİŞ *******************************************************/
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.page-item {
    display: inline-block;
}
.page-link {
    display: inline-block;
    padding: 8px 14px;
    color: var(--color2) !important;
    text-decoration: none;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    outline: none !important;
    &:focus{
        outline: none !important;
    }
} 
.page-link.active{
    background-color: var(--color1) !important;
    color: white !important;
}
.page-link:hover {
    background-color: var(--color1) !important;
    color: #fff !important;
    border-color: var(--color1) !important; 
} 
.page-item.active .page-link {
    background-color: var(--color1) !important;
    color: white;
    border-color: var(--color1) !important;
    pointer-events: none;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: bold;
}

/* WPML footer dil gecisini gizle */
.wpml-ls-statics-footer,
.wpml-ls-legacy-list-horizontal {
    display: none !important;
}

/* Koordinatorluk footer listesi */
.koordinator-list>li {
    padding-top: .3rem;
}
/* ============================================================
   CONTACT & FORM STYLES � front/assets/css/app.css'ten al�nd�
   ============================================================ */
.contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.contact-adres {
    background-color: var(--color1);
    height: 100%;
    padding: 3rem;
}
.contact-adres-menu-title > h3 {
    color: white;
    font-size: 40px;
    font-weight: 600;
}
.contact-adres-menu-title > h4 {
    color: white;
    font-size: 25px;
    font-weight: 400;
    padding-top: 1rem;
}
.contact-adres-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 2rem;
}
.contact-adres-menu > li {
    padding-top: 2rem;
}
.contact-adres-menu > li > a {
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.contact-adres-menu > li > a > i {
    padding-right: 1rem;
    font-size: 25px;
}
.contact-form {
    position: sticky;
    top: 100px;
}
.contact-form-title > h3 {
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.contact-form-text > p {
    font-size: 16px;
    color: var(--color3);
    font-weight: 400;
    padding-top: 1rem;
}
.contact-form-text > p > span {
    font-weight: 700;
    color: var(--color1);
}
.contact-form-description {
    margin-bottom: 1rem;
}
.contact-map {
    padding-bottom: 3rem;
}

/* --- FORM ELEMENTS --- */
form {
    padding-top: 2rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-label {
    color: var(--color3);
    font-size: 16px;
    font-weight: 400;
}
.form-control {
    height: 50px;
    border: 1px solid #ccc !important;
    border-radius: 0px !important;
}
textarea.form-control {
    height: 100px !important;
}
textarea {
    height: 100px !important;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
.uneditable-input:focus {
    border-color: var(--color1) !important;
    outline: 0 none !important;
    box-shadow: none !important;
}
.form-send {
    border: none;
    background-color: var(--color1);
    color: white;
    width: 170px;
    height: 40px;
    transition: .3s ease;
    position: relative;
    top: 15px;
    border-radius: 0px;
    cursor: pointer;
}
.form-send:hover {
    background-color: var(--color2);
    color: white;
}
/* CF7 submit overrides */
.wpcf7-submit {
    border: none;
    background-color: var(--color1);
    color: white;
    min-width: 170px;
    height: 40px;
    transition: .3s ease;
    border-radius: 0px;
    cursor: pointer;
    padding: 0 2rem;
    font-size: 15px;
}
.wpcf7-submit:hover {
    background-color: var(--color2);
}
.form-check-input {
    background-color: white !important;
    border-color: var(--color1) !important;
    font-size: 20px;
}
.form-check-input:checked {
    background-color: var(--color1) !important;
    border-color: var(--color1) !important;
}
.form-check-label {
    padding-top: .3rem;
    padding-left: .3rem;
}
.form-check-label > span {
    padding-top: .5rem;
    font-size: 16px;
    color: var(--color3);
}
.form-check-label > span > a {
    font-size: 16px;
    color: var(--color3);
    text-decoration: none;
}
/* CF7 checkbox/radio wrapper */
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
    margin-bottom: .5rem;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label {
    font-size: 15px;
    color: var(--color3);
    padding-left: .3rem;
    cursor: pointer;
}
/* CF7 select */
.wpcf7 select {
    height: 50px;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    width: 100%;
    padding: 0 .75rem;
    font-size: 15px;
    color: var(--color3);
    background-color: #fff;
}
/* CF7 response messages */
.wpcf7-response-output {
    margin-top: 1rem !important;
    padding: .75rem 1rem !important;
    border-radius: 0 !important;
    font-size: 14px;
}
.gonulluluk-form-wrap {
    margin-top: 2rem;
}

/* ============================================================
   CF7 DEFAULT INPUT OVERRIDES - form-control class olmasa da calısır
   ============================================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 select {
    height: 50px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0 .75rem;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    transition: border-color .2s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 select:focus {
    border-color: var(--color1);
    outline: none;
    box-shadow: none;
}
.wpcf7 textarea {
    width: 100%;
    height: 110px;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: .5rem .75rem;
    font-size: 15px;
    color: #555;
    resize: vertical;
}
.wpcf7 textarea:focus {
    border-color: var(--color1);
    outline: none;
    box-shadow: none;
}
.wpcf7 label {
    font-size: 15px;
    color: #555;
    font-weight: 500;
    margin-bottom: .3rem;
    display: block;
}
.wpcf7-form p,
.wpcf7-form .form-group {
    margin-bottom: 1rem;
}
.wpcf7-submit {
    border: none;
    background-color: var(--color1);
    color: #fff;
    min-width: 150px;
    height: 42px;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding: 0 2rem;
    transition: background-color .3s;
    margin-top: 1rem;
}
.wpcf7-submit:hover {
    background-color: var(--color2);
}
.wpcf7-acceptance input[type="checkbox"],
.wpcf7-checkbox input[type="checkbox"],
.wpcf7-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color1);
    cursor: pointer;
    margin-right: .4rem;
}
.wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1.2rem;
    margin-bottom: .5rem;
}
.wpcf7-list-item-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.wpcf7-response-output {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: 0;
    font-size: 14px;
}
.wpcf7 span.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
}

/* ============================================================
   CF7 CHECKBOX WRAPPER FIX
   ============================================================ */
/* CF7, form-check-input classini wrapper SPAN'a koyuyor - border kaldir */
.wpcf7 span.wpcf7-form-control.form-check-input,
.wpcf7 span.wpcf7-checkbox,
.wpcf7 span.wpcf7-radio {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    font-size: inherit !important;
}
/* Asil checkbox/radio inputlar */
.wpcf7 span.wpcf7-list-item input[type="checkbox"],
.wpcf7 span.wpcf7-list-item input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--color1);
    cursor: pointer;
    border: 1px solid var(--color1);
    border-radius: 3px;
    margin-right: .4rem;
    flex-shrink: 0;
}
.wpcf7 span.wpcf7-list-item {
    display: inline-flex !important;
    align-items: center;
}
.wpcf7 span.wpcf7-list-item-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}
/* Acceptance (KVKK) */
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
    display: flex !important;
    align-items: flex-start;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--color1);
    margin-right: .5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CF7 KVKK acceptance inline fix */
.wpcf7-acceptance {
    display: inline !important;
    vertical-align: middle;
}
.wpcf7-acceptance .wpcf7-list-item {
    display: inline-flex !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}
.wpcf7-acceptance input[type="checkbox"] {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    vertical-align: middle;
    margin: 0 6px 0 0 !important;
    accent-color: var(--color1);
    border: 1px solid var(--color1);
    border-radius: 3px;
    flex-shrink: 0;
}
.kvkk-wrap {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    flex-wrap: nowrap;
}
.kvkk-wrap span {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
.kvkk-wrap span a {
    color: var(--color1);
    text-decoration: none;
    font-weight: 600;
}

/* KVKK satir fix - agresif override */
.kvkk-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    flex-wrap: nowrap;
}
.kvkk-wrap .wpcf7-form-control-wrap,
.kvkk-wrap .wpcf7-acceptance,
.kvkk-wrap .wpcf7-list-item,
.kvkk-wrap .wpcf7-list-item label {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
.kvkk-wrap input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    accent-color: var(--color1);
    margin: 0 !important;
    cursor: pointer;
}
.kvkk-wrap .wpcf7-list-item-label {
    display: none !important;
}
