:root{
    --color1:#ca9b41;
    --color2:#05163F;
    --color3:white;
    --color4:#181717;  
}
*{
    box-sizing: border-box;
    font-family: 'Hind', sans-serif;
    --bs-nav-tabs-border-color:none !important;
    --bs-table-bg:transparent !important;
    outline: none !important;
}
html{
    overflow-x:hidden !important;
}
.maxWidth{
    max-width: 1320px;
}
p{
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
::marker{
    color:var(--color1);
}
::-webkit-scrollbar {
    width: 10px; 
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background:var(--color2);
}
::-webkit-scrollbar-thumb:hover {
    background:var(--color2);
}
#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: #000;
    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;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:var(--color1);
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    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%);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.scrollup {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: none;
    background-color:var(--color1);
    border-radius: 30px;
    z-index: 9999;
    border: 1px solid transparent;
    transform: scale2(.7);
        animation: scale2 infinite 3s;
        z-index: 222;
    } 
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color:white !important;
}
header{
    background-color: var(--color2);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute;
    width: 100%;
    background-color: transparent;
    z-index: 555;
}
.header-top{
    border-bottom: 1px solid #80868b;
}
.header-web-site-logo > a > img{
    width: 700px;
    margin-left: -4.8rem;
}
.site-navigation-contact-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    margin-top: 2rem;
}
.site-navigation-contact-menu > li {
    padding-right: 2rem;
}
.site-navigation-contact-menu > li:nth-child(1){
    border-right: 1px solid #80868b;
}
.site-navigation-contact-menu > li:nth-child(2){
    padding-left: 2rem;
}
.contact-menu-item{
    display: flex;
}
.contact-menu-item > .icon{
    font-weight: 600;
    text-decoration: none;
    color: var(--color1);
    margin-top: .5rem;
    margin-right: .5rem;
}
.contact-menu-item > .icon > svg{
    fill: var(--color1);
}
.contact-menu-item > .text {
    display: flex;
    flex-direction: column;
}
.contact-menu-item > .text > span{
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #80868b;
}
.contact-menu-item > .text > a{
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: white;
}
.header-social-media-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    margin-top: .8rem;
}
.teklif-btn{
    margin-right: -3rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.teklif-btn > a{
    background-color: var(--color1);
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 4rem;
    padding-right: 4rem;
    text-decoration: none;
    &:hover{
        background-color: white;
        color: var(--color1);
        transition: .5s ease;

    }
}
.header-social-media-menu > ul > li {
    padding-right: 2rem;
}
.header-social-media-menu > ul > li > a{
    color: white;
    font-size: 16px;
}
.header-bottom{
    margin-top: 6rem;
}
.site-navigation-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-top: 3rem;
    margin-left: -2rem;
}
.site-navigation-menu > li {
    padding-right: 2rem;
}
.site-navigation-menu > li > a{
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding:45px 0px;
   /* &::after{
        content: "";
        display: block;
        height: 3px;
        background:var(--color1);
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 50%;
    }*/
    &:hover{
        color: var(--color1);
        transition: .2s ease;
    }
}
.site-navigation-menu > li:hover > .sub-menu{
    display: block;
}
.sub-menu{
    display: none;
    background-color: #1D1D1D;
    min-width: 280px;
    position: absolute;
    list-style-type: none;
    transition: all .5s ease;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    z-index: 445;
    padding: 13px 0px;
    box-shadow: 6px 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    color: white !important;
    border-top: 4px solid var(--color1);
}
.sub-menu > li {
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: .7rem;
    padding-right: 1rem;
    &:hover{
        background-color: #cc842a;
        > a {
            color: white;
        }
    }
}
.sub-menu > li > a{
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 14px;
    display: block;
    width: 100%;
}
@keyframes growDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}
.sticky{
    background-color: #000;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 666;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    animation: slideDown 0.35s ease-out;
    margin-top: 0rem;
    padding-top: 0rem;
    height: 100px;
    margin-top: -1rem;
}
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:var(--color2);
    top: 0px !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}
.mobil-hamburger-menu-btn{
    display: inline-block;
	line-height: 1;
    font-size: 30px;
    > i{
        color:white !important;
    }
}
.offcanvas{
    z-index:789;
    background-color:var(--color2) !important;
}
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 19rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:var(--color4);
    padding-bottom: 1rem;
    padding-top: .5rem;
}
.offcanvas-social-media > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-top: 0rem;
    margin-left: -2rem;
}
.offcanvas-social-media > ul > li{
    padding-right: 2rem;
}
.offcanvas-social-media > ul > li > a > i{
    color: var(--color1) !important;
    font-size: 20px;
}
.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; 
}
.accordion {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: 4px;
    list-style-type: none;
    margin-left: -4.7rem;
    > li {
        padding-bottom: .5rem;
    }
}
.accordion-submenu{
    display: none;
    margin-left: .5rem;
    margin-top: 1rem;
    list-style-type: none;
    >li{
        padding-bottom: 1rem;
    }
    > li > a{
    font-size: 16px;
    color: white !important;
    padding: 7px 15px;
    padding-left: 10px;
    text-decoration: none;
    }
}
.accordion .link {
   cursor: pointer;
   display: block;
   padding: 0px 15px 15px 42px;
   color: white!important;
   font-size: 1rem;
   font-weight: 700;
   position: relative;
   transition: all 0.4s ease;
   text-decoration: none;
   text-transform: uppercase;
}
.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: -70px;
    left: auto;
    font-size: 18px;
    top: -17px;
    background-color: white !important;
    color: var(--color2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
}
.accordion li.open .link {
   color: white;
}
.accordion li.open i {
    color: var(--color2);
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo {
	> a > img{
      width: 250px;
      filter: brightness(0) invert(1);
	}
}
.mobil-hamburger-menu-btn{
    display: inline-block;
	line-height: 1;
    font-size: 30px;
    > i{
        color:white !important;
    }
}
.search-btn-content{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 3rem;
    > button{
        background-color: transparent;
        border: none !important;
        > i {
            color: white;
        }
    }
}
.search-btn-title{
   padding-top: 5rem;
   > h3{
    color: white;
    font-size: 40px;
    font-weight: 600;
   }
}
.btn-close-search-box{
    background-color:transparent !important;
    color: white !important;
    border: none !important;
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 30px;
    margin-top: 1rem;
    >i {
        color: white !important;
    }
}

/*** CONTENT START *******/
.owl-caraousel >  .owl-nav{
    display: none !important;
}
#owl-slider >  .owl-nav{
    display: block !important;
    position:relative;
    z-index: 666;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    top: -500px;
}
#owl-slider >  .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    width:35px;
    height:35px;
    color: white !important;
    &:hover{
        background-color: var(--color2) !important;
        transition: .5s ease;
    }
}
#owl-slider >  .owl-nav > .owl-next{
    width:35px;
    height:35px;
    color: white !important;
    background-color: var(--color1) !important;
    &:hover{
        background-color: var(--color2) !important;
        transition: .5s ease;
    }
}
#owl-slider > .owl-dots{
    display: none;
}
.slider-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .3;
    }
}
.slider-img > img {
    height: 100vh;
}
.slider-content{
    position: absolute;
    z-index: 111;
    top: 425px;
    left: calc((100vw - 1320px) / 2) !important;
}
.slider-content-title > .ust-baslık{
    color: white !important;
    font-size: 60px !important;
    font-weight: 600;
    text-align: left !important;
    line-height: 3rem;
    position: relative  !important;
    &::before{
        content: "";
        position: absolute;
        border-top: 5px solid var(--color1);
        width: 5%;
        left: 0;
        top: -30px;
    }
}
.slider-content-text > p {
    color: var(--color1);
    font-size: 16px;
    font-weight: 400;
    text-align: left !important;
}
.hizli{
    position:relative;
    z-index: 411;
}
.slider-hizli-menu-list {
    position:absolute;  
    bottom: 75px;
    left: 50%;
    transform: translate(-50% ,  -50%);
}
.hizli-menu-item{
    background: rgb(39,38,37);
    background: linear-gradient(180deg, rgba(39,38,37,0.7847514005602241) 0%, rgba(39,38,37,0.6250875350140056) 0%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.4rem;
    height: 100px;

    border-bottom: 4px solid var(--color1);
    position: relative;
}
.hizli-menu-item-title{
    z-index: 44;
}
.hizli-menu-item-title  > h3{
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-top: .8rem;
}
.hizli-menu-item-icon > i {
    color: white;
    font-size: 30px;
    position: relative;
    top: 10px;
    z-index: 44;
}
.hizli-menu-item:hover .overlay {
    bottom: 0;
    height: 100%;
}
.overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color:var(--color1);
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
}
.kurumsal{
    padding:10px 0px 10px 0px;
    position: relative;
}
.kurumsal-img{
    position: relative;
}
.kurumsal-img > img{
    width: 100%;
    height:100%;
    object-fit:cover;
}
.kurumsal-img-content{
    position: absolute;
    bottom: 40px;
    padding: 1rem;
}
.kurumsal-img-title > h3{
    color: white;
    font-size:23px;
    font-weight: 600;
}
.kurumsal-img-text > p {
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding-top: 2rem;
}
.kurumsal-img-sub-text > p{
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding-top: 4rem;
}
.kurumsal-description{
    background-color:#f5f6f6 ;
    padding: 3rem;
    height: 428px;
    margin-bottom: 3rem;
}
.kurumsal-description-title > h1{
    color: var(--color1);
    font-size: 34px;
    font-weight: bold;
    text-align: center;
}
.kurumsal-description-title > h2{
    color: var(--color4);
    font-size: 34px;
    font-weight: bold;
    text-align: center;
}
.kurumsal-description-text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.kurumsal-description-extra{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--color1);
}
.kurumsal-description-extra-title > h3{
    color: white;
    font-size: 23px;
    font-weight: 600;
} 

.kurumsal-description-extra > .kurumsal-description-extra-btn{
    margin-top:0rem !important;
    padding-bottom: 0rem;
}

.kurumsal-description-extra-btn{
    padding-bottom:3rem;
}
.kurumsal-description-extra-btn > a {
    background-color: var(--color2);
    color: white;
    padding-top: .8rem;
    padding-bottom: .8rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: 2px solid transparent;
    > i {
        padding-right: 1rem;
    }
}
.counter{
    background-color: #eef1f2;
    padding:50px 0px 50px 0px;
    overflow-x:hidden !important;
}
.counter-item{
    padding-top: 3rem;
    padding-bottom: 2rem;
    &:hover{
        transform: scale(1.10);
        transition: .5s ease;
    }
}
.counter-item-icon > i {
    color: var(--color1);
    font-size: 50px;
    margin-right: 3rem;
    padding-bottom: .5rem;
}
.counter-item-title{
    padding-right: 3rem;
}
.counter-item-title > h3{
    color: var(--color2);
    font-size: 50px;
    font-weight: 700;
}
.counter-item-text > p{
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
    margin-right: 2rem;
}
.hizmetler{
    position: relative;
    padding:0px 0px 60px 0px;
}
.section-hizmetler-title{
    color: var(--color2);
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}
.section-hizmetler-text{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--color4);
    padding-top: 1rem;
}
.hizmetler-item{
    position: relative;
    margin-top: 2rem;
}
.hizmetler-item-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .5;
    }
}
.hizmetler-item-img > img{
    width: 100%;
    height: 100%;
}
.hizmetler-item-body{
    position: absolute;
    top: 150px;
    left: 30px;
}
.hizmetler-item-body .title > h3{
    color: white;
    font-size: 25px;
    font-weight: 600;
    padding-left: .4rem;
}
.hizmetler-item-body  > .icon {
    font-size: 40px;
    color: var(--color1);
    padding-left: .4rem;
}
.hizmetler-item:hover .hizmetler-overlay {
    bottom: 0px;
    height: 100%;
}
.hizmetler-item:hover > .hizmetler-item-body{
    opacity: 0;
    transition: .5s ease;
}
.hizmetler-overlay{
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgb(5,22,63);
    background: radial-gradient(circle, rgba(5,22,63,1) 0%, rgba(5,22,63,0.7203256302521008) 0%);
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
}
.hizmetler-overlay-body{
    padding: 6rem;
}
.hizmetler-overlay-title > h3{
    color: var(--color3);
    font-size: 25px;
    font-weight: 600;
}
.hizmetler-overlay-text > p{
    font-size: 16px;
    font-weight: 400;
    color: var(--color3);
    padding-top: 1rem;
}
.hizmetler-overlay-link > a{
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}
.projeler{
    background-color: #000;
    padding:0px 0px 50px 0px;
}
.section-projeler-title{
    color: white;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}
.section-projeler-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    padding-top: 1rem;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: var(--color1) !important;
    background-color: transparent !important;
    border-color: transparent !important;
    font-size: 25px;
    font-weight: 600;
}
.nav-tabs .nav-link{
    border-top-left-radius: 0px !important;
    border-top-left-radius:0px !important;
    margin-bottom:0rem !important;
    border: 0px !important;
    font-size: 25px;
    font-weight: 600;
    color: white!important;
}
#myTab{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.proje-item{
    margin-top: 2rem;
    position: relative;
}
.proje-item-img > img{
    width: 100%;
}
.proje-item:hover {
    cursor: pointer;
}
.proje-item:hover > .proje-item-body{
    display: block;
}
.proje-item:hover > .projeler-overlay{
    opacity: 1;
}
.projeler-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0.6082808123249299) 0%, rgba(0,0,0,0.7203256302521008) 0%);
    > img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
.proje-item-body{
    position: absolute;
    top: 200px;
    left: 50px;
    display: none;
}
.proje-item-body > .title > h3{
    color: white;
    font-size: 20px;
    font-weight: 400;
}
.proje-item-body > .sub-title > h3{
    color: white;
    font-size: 25px;
    font-weight: 600;
}
.proje-item-body > .btn-link{
    padding-top: 7rem;
    text-decoration: none !important;
}
.proje-item-body > .btn-link > a{
    color: white;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
}
.projeler-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.projeler-btn > a{
    color: white;
    background-color: var(--color1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.haberler{
    padding:30px 0px 70px 0px;  
}
.section-haberler-title{
    color: var(--color4);
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}
.section-haberler-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--color4);
    padding-top: 1rem;
}
.haber-item{
    margin-top: 2rem;
    position: relative;
}
.haber-item-date{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.haber-item-img > img{
    height:300px;
    width:100%;
    object-fit:cover;
}
.haber-item-date > span{
    color: var(--color4);
    font-size: 16px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 400;
}
.haber-item-title > h3{
    color: var(--color1);
    font-size: 25px;
    font-weight: 600;
    height:90px;
    overflow:hidden;
}
.haber-item-text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
    height:75px;
    overflow: hidden;
}
.haber-item-link{
    margin-top: 1rem;
}
.haber-item-link > a{
    font-size: 16px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color1);
}
/****** CONTENT END ***********/
.banner{
    height: 400px;
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;   
}
.banner-title{
    padding-top: 18rem;
}
.banner-title > h1{
    color: white;
    font-size: 40px;
    font-weight: 600;
}
.page{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.page-description > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.haber-detay{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.haber-detay-description > .text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.ekip{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.ekib-box {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease-in-out;
&:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  
.ekib-box-footer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ekib-box-imgBx {
    transform: scale(1.3);
}
}
.ekib-box-imgBx {
    transition: 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.ekib-box-footer {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 4.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 0.3s ease-in-out;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
}  
.ekib-box-footer > h3{
    font-size: 16px;
    font-weight: 400;
}
.vizyon-misyon{
    margin-top:4rem;
    margin-bottom: 4rem;
}
.description > .title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
}
.description > .text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
    padding-top: 1rem;
}
.hakkimizda{
    padding:40px 0px 20px 0px;
}
.hakkimizda-text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.baskanin-mesaji {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.baskanin-mesaji-text > p {
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.referanslar{
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.referans-item{
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: .7;
    position: relative;
    height: 200px;
    &:hover{
		opacity: 1;
		transition: .2s cubic-bezier(0.215, 0.610, 0.355, 1);
	}
	&::after{
		content: "";
        display: block;
		position: absolute;
        height: 4px;
		background-color: var(--color1); 
        width: 0;
        transition: width 1s;
        bottom: 0px;
	}
	&:hover::after{
        width: 100%;
    }
}
.iletisim-adresleri{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.iletisim-adres-title{
    color:var(--color1);
    font-size: 30px;
    font-weight: 600;  
}
.iletisim-adres-navigation{
    padding: 0;
    margin-left: .3rem;
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.iletisim-adres-navigation > li {
    padding-top: 1rem;
}
.iletisim-adres-navigation > li > a{
    text-decoration: none;
    color: var(--color4);
    font-size: 16px;
    text-decoration: none;
}
.iletisim-adres-navigation > li > a > i{
    margin-right:.5rem;
    font-size: 20px;
    color: var(--color2);
}
.iletisim-form{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.iletisim-form-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
}
.iletisim-form-text > p {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    padding-top: 1rem;
}
.form-group{
    margin-bottom: 1rem;
}
.label{
    color:var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.form-control{
    height: 45px;
}
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(--color2);
  box-shadow: 0 1px 1px var(--color2) inset, 0 0 8px var(--color2) !important;
  outline: 0 none;
}
.form-send{
    border: none;
    background-color: var(--color2);
    color: white;
    width: 170px;
    height: 40px;
    margin-top: 1rem;
    background-color: var(--color1);
    font-size: 16px;
}
.form-check-input:checked{
    background-color:var(--color2) !important;
    border-color: var(--color2) !important;
}
.form-check-label > span{
    padding-top: .5rem;
    font-size: 16px;
    color: var(--color4);
    font-weight: 400;
    > a {
        font-size: 16px;
        color: var(--color4);
        font-weight: 400;
    }
}
.form-label{
    font-size: 16px;
    font-weight: 400;
    color: var(--color4);
}
textarea{
    height: 100px !important;
}
.projeler-page{
    background-color: var(--color2);
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.proje-detay{
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.proje-detay img{
    width: 100%;
    height: 500px;
    object-fit:cover;
}

#owl-project-slider > .owl-nav{
    display: block !important;
}
#owl-project-slider > .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    &:hover{
        background-color: var(--color2) !important;
        color: white !important;
    }
}
#owl-project-slider > .owl-nav > .owl-next{
    background-color: var(--color1) !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    &:hover{
        background-color: var(--color2) !important;
        color: white !important;
    }
}
#owl-project-slider > .owl-dots{
    display: none;
}
#owl-slider   .owl-dots > .owl-dot > span{
    color:white;
    width: 17px;
    height: 17px;
    &:hover{
        color: white !important;
        background-color:var(--color2);
    }
}
#owl-slider  .owl-theme .owl-dots .owl-dot span{
    width: 17px;
    height: 17px;
    color: var(--color2) !important;
    background-color: var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    color: var(--color2) !important;
    background-color: var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: var(--color2) !important;
}
#owl-slider  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    color: var(--color2) !important;
    background-color: var(--color1) !important;
}
.proje-detay-description > .title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 1rem;
}
.table > tbody > tr:nth-child(odd){  
    background: rgb(5,22,63);
        background: radial-gradient(circle, rgba(5,22,63,1) 0%, rgba(5,16,42,0.11248249299719892) 0%);
    > td{
        color:var(--color4) !important;
        font-size: 16px;
        font-weight: 400;
    }
}
.table > tbody > tr:nth-child(even){
    > td{
        color: var(--color4) !important;
        font-size: 16px;
        font-weight: 400;
    }
}
.hizmet-detay-description{
    background-color: var(--color4);
    padding: 275px 0px 50px 0px;
}
.section-title{
    color: white;
    font-size: 60px;
    left: 0px;
    font-weight: 900;
    > h3{
        color: white;
        font-size: 30px;
        font-weight: 600;
        position: relative;
        
    }  
    > h1{
        color: white;
        font-size: 30px;
        font-weight: 600;
        position: relative;
      
    } 
}
.hizmet-detay-description-2{
    position: relative;
    padding:50px 0px 50px 0px;
}
.section-title-dark{
    color: var(--color2);
    font-size: 60px;
    position: relative;
    left: 0px;
    font-weight: 900;
    > h3{
        color:var(--color2);
        font-size: 40px;
        font-weight: 600;
        position: relative;
        &::before{
            content: "";
            position: absolute;
            height: 2px;
            background-color: var(--color1);
            bottom: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            width: 250px;
            left: 135px;
            top: 50px;
        }
    }  
}
.description > p {
    color: white;
    font-size: 16px;
    font-weight: 400;
}
.description-dark > p {
    color:var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.hizmet-detay-description-3{
    background-color: var(--color4);
    position: relative;
    padding:50px 0px 50px 0px;
}
.search-form{
    margin-top: 5rem !important;
}
.search-form >  .search-btn , .search-input {
    position: absolute;
    height: 10vh;
    font-size: 5vh;
    border: none;
    bottom: 0;
}
.search-btn {
    position: absolute;
    height: 10vh;
    font-size: 5vh;
    border: none;
    bottom: 0;
    width: 20%;
    right: 0;
    color: #fff;
    background: #FF9700;
    cursor: pointer;
    height: 70px;
    > i {
        font-size: 30px !important;
    }
}
/**  FOOTER START  **/
footer{
    background-color: #000;
    padding:50px 0px 50px 0px;
}
.footer-social-media-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -1.4rem;
}
.footer-social-media-menu > ul > li {
    padding-right: 2rem;
    padding-top: 2rem;
}
.footer-social-media-menu > ul > li > a{
    color: white;
    font-size: 20px;
}
.footer-contact-menu > ul{
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
.footer-contact-menu > ul > li {
    padding-top: 1rem;
}
.footer-contact-menu > ul > li{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.footer-contact-menu > ul > li > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.footer-hizli-menu > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    list-style-type: none;
}
.footer-hizli-menu > ul > li {
    padding-top: 1rem;
}
.footer-hizli-menu > ul > li > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.footer-web-site-logo{
    > a >img{
            max-width: 100%;
    height: auto;
    width: 150px;

    }
}
.footer-bottom{
    padding:20px 0px 20px 0px;
}
.text-coprigyt > p{
    color: var(--color4);
    font-size: 16px;
    font-weight: 400;
}
.text-coprigyt-link{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.cerez-bar{
    background-color:var(--color4);
    position: fixed;
    height: 70px;
    bottom: 0px;
    width: 100%;
    padding-top: 1.5rem;
	padding-bottom:1.5rem;
    z-index: 777;
}
.cerez-div{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.cerez-text{
    color: white;
    font-size: 16px;
    font-weight: 400;
}
.cerez-text > p > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.cerez-btn > button{
    padding: 5px 23px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color2);
    border-radius: 5px;
    background:white;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 30px;
    border: 1px solid transparent;
}
.hide{
    display: none;
}
.show{
    display: block;
}
@media(max-width:767px){
    .cerez-bar{
        background-color: var(--color4);
        position: fixed;
        height: 150px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        align-items: flex-start;
    }
}
@media(min-width:768px){
    .cerez-bar{
        position: fixed;
        height: 140px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }
    .cerez-text > p {
        text-align: center;
    }
}
@media(min-width:992px){
    .cerez-bar{
        position: fixed;
        height: 110px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }  
    .cerez-text > p {
        text-align: center;
    } 
}
@media(min-width:1200px){
    .cerez-bar{
        position: fixed;
        height: 110px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }  
    .cerez-text > p {
        text-align: left;
    }
}
@media(min-width:1400px){
    .cerez-bar{
        position: fixed;
        height: 70px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: row;
        justify-content:space-between;
    }  
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }
  
  /* Pagination Nav */
  .pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  
  /* Pagination Link */
  .pagination-link {
    padding: 8px 14px;
    text-decoration: none;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 4px;
    background-color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-size: 14px;
  }
  
  /* Hover State */
  .pagination-link:hover {
    background-color: var(--color1);
    color: #fff;
    border-color:var(--color1);
  }
  
  /* Active Page */
  .pagination-link.active {
    background-color: var(--color2);
    color: #fff;
    background-color: var(--color2);
    font-weight: bold;
    pointer-events: none;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .pagination-link {
      padding: 6px 10px;
      font-size: 13px;
    }
  }

.kurumsal-description-extra-title h3.wp-block-heading{
        font-size: 20px;
}
#description > p:nth-child(2) {
    color:white !important;
}
.hizmetler-page{
    padding:40px 0px 40px 0px;
}
.hizmet-item{
    margin-bottom:1.5rem;
    border:1px solid #effed;
    padding:1rem;
    height:450px;
    overflow:hidden;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius:10px;
}
.hizmet-item-img > img{
    height:300px;
    width:100%;
    object-fit:cover;
    border-radius:10px;
}
.hizmet-item-title > h3{
    color: var(--color1);
    font-size: 25px;
    font-weight: 600;
    height: 60px;
    overflow: hidden;
    padding-top:2rem;
}
.hizmet-item-link > a{
    font-size: 16px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color2);
}
.cerez-text > p{
    color:white;
}

/**  FOOTER END  **/


.header-language {
	display: flex;
	align-items: center;
}
.header-language > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	transition: .3s;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}
.header-language > a:hover {
	background-color: #fff;
	color: #000;
}
.header-language > a:not(:last-child) {
	margin-right: 10px;
}

.mobil-menu__right {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

@media (max-width: 480px) {
	.header-language {
		margin-right: 20px;
	}
	
	.header-language > a {
		width: 25px;
		height: 25px;
		font-size: 12px;
		font-weight: 400;
	}
}