/* Resetting */
html{
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
a{
    text-decoration: none;
    display: inline-block;
}
ul{
    list-style-type: none;
    padding-left: 0;
}
html , body{
    font-family: "Sofia Pro", sans-serif;
}
/* Resetting Ends */
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #282571 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 7px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #282571;
    border-radius: 10px;
    border: 1px solid #ffffff;
}
/* Root variables */
:root{
    --primary-bg-color: #282571;
    --primary-light-color:#302C83;
    --bg-primary-gray:#EDEDED;
    --menu-color: #DC4A5D;
    --secondary-bg-color:#1CACBD;
    --card-green-text-color: #38B54A;
}
/* Root variables */
/* Container Codes */
.c-container {

    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .c-container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .c-container {
        width: 945px;
    }
}
@media (min-width: 1200px) {
    .c-container {
        width: 945px;
    }
}
@media(max-width: 600px){
    .c-container{
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 1000px){
    .content-container{
        max-width: 971px;
        margin: 0 auto;
    }
}
/* Container Codes */
/* Font Face */
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Sofia Pro'),url("../fonts/SofiaProRegularAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 150;
    src: local('Sofia Pro'), url("../fonts/SofiaProUltraLightAz.woff") format('woff');

}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 200;
    src: local('Sofia Pro'), url("../fonts/SofiaProExtraLightAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 300;
    src: local('Sofia Pro'), url("../fonts/SofiaProLightAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 500;
    src: local('Sofia Pro'), url("../fonts/SofiaProMediumAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Sofia Pro'), url("../fonts/SofiaProSemiBoldAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Sofia Pro'), url("../fonts/SofiaProBoldAz.woff") format('woff');
}
@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 900;
    src: local('Sofia Pro'), url("../fonts/SofiaProBlackAz.woff") format('woff');
}
/* Font Face */

/* Navbar Starts */
.bg-primary-blue{
    background-color:var(--primary-bg-color);
}
.hero-container-fluid{
    width: 100%;
    position: relative;
}
nav.sticky-nav-bar{
    display: flex;
    padding:17px 14px 0 30px;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index:999999;
}
.hamburger-menu-ul{
    margin-bottom: 0;
    cursor: pointer;
}
.main-slider{
    max-width: 100vw !important;
    width: 100%;
    height: 100vh;
}
.white-logo-h{
    display: none;
}
.white-logo{
    position: relative;
}
.sidebar-menu-container{
    display: flex;
    align-items: flex-start;
    column-gap:7px ;
}
.btn-side{
    width: 112px;
    height: 49px;
    border-radius: 10px;
    border: none;
    outline: none;
    color: white;
    font-size:18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-btn{
    background-color:var(--secondary-bg-color);
    padding: 0 20px 0 22px;
}
.menu-btn{
    background-color:var(--menu-color);
    padding: 0 19px 0 12px ;
}
.search-container{
    position: relative;
}
.search-input-container{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    display: flex;
    align-items: center;
    height:100%;
    background-color:var(--secondary-bg-color);
    border-radius: 10px;
    width: 350px;
    justify-content: flex-end;
    padding: 0 20px 0 21px;
    column-gap: 8px;
}
.search-container .search-inp{
    width: 100%;
    border-radius: none;
    border: none;
    background: transparent;
    color: white;
    font-weight: 300;
    font-size: 18px;
}
.search-container .search-inp::placeholder{
    color: white;
    opacity: 44%;
}
.search-container .search-inp:focus{
    border: none;
    box-shadow: none;
    outline: none;
}
.search-container .search-icon{
    cursor: pointer;
}
.hamburger-container{
    position: relative;
}
.menu-container{
    position: absolute;
    width: 350px;
    right: 0;
    top: 0;
    background-color: var(--menu-color);
    padding:16px 20px 30px 41px;
    border-radius: 10px;
    z-index: 99999999999;
}
.menu-container ul{
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    row-gap: 13px;
    flex-direction: column;
}
.swiper-slide .plyr__video-wrapper iframe{
    pointer-events: none;
}
.menu-container ul li a{
    font-weight: 400;
    font-size: 20px;
    color: white;
}
.menu-text{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 18px;
    font-weight: 300;
    gap:13px;
    padding-bottom: 27px;
    cursor: pointer;
}
.close-img{
    cursor:pointer;
}
.scroll-to-button{
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9999999999999;
    display: flex;
    justify-content: center;
    animation: hopping ease-in-out infinite 3s;
}
@keyframes hopping{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
    100%{
        transform: translateY(0);
    }
}
/* Navbar Ends */
/* Slider  */
/* left: -1px; */
.main-slider video {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    left: -0.2%;
    object-fit: fill;
}
@media (max-width: 1460px){
    .main-slider video {
        left: -0.2%;
    }
}
.swiper-slide{
    display: flex;
    height: 100vh !important;
    width: 100vw !important;
    position: relative !important;
}
.mute-container{
    bottom: 12%;
    left: 8%;
    position: absolute;
    z-index: 99999999999999999999999;
}
.unmute-btn, .mute-btn{
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}
.unmute-btn svg, .mute-btn svg{
    width: 60px;
    height: 60px;

}
.unmute-btn svg circle{
    fill: var(--menu-color);
}
.mute-btn svg circle{
    fill: var(--secondary-bg-color);
}
.mute-btn svg path{
    fill: white;
}
.unmute-btn:focus, .mute-btn:focus{
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}




.unmute-btn-y, .mute-btn-y{
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}
.unmute-btn-y svg, .mute-btn-y svg{
    width: 60px;
    height: 60px;

}
.unmute-btn-y svg circle{
    fill: var(--menu-color);
}
.mute-btn-y svg circle{
    fill: var(--secondary-bg-color);
}
.mute-btn-y svg path{
    fill: white;
}
.unmute-btn-y:focus, .mute-btn-y:focus{
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

@media  only screen and (min-width:1431px) and (max-width:1920px) {
    .swiper-slide{
        
        /*scale: .94;
        padding: 0 50px;
        scale: 1.01;*/
        scale: 1.1;
        padding:2% 5%;
    }
}
@media(max-width:1430px){
    .swiper-slide{
        display: flex;
        height: auto !important;
        width: 100% !important;
    }
    .main-slider{
        height: auto;
    }
}
.main-slider img {
    width: 100%;
    margin: 0 auto;
}
.plyr--video{
    width: 100vw !important;
}
/* Slider Ends */
/* Projects Container */
.projects-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap:7px ;
    row-gap:10px ;
    padding-top: 132px;
}
.projects-desc{
    margin-bottom: 0;
}
.projects-container .project-cont-item{
    border-radius: 10px;
    background-color:#302C83;
    min-height:278px;
    height:278px;
    position: relative;
}

.projects-container .item-absolute{
    height: 100%;
}
.item-absolute a{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item-absolute .project-heading-text{
    max-width: 374px;
    font: normal normal 500 35px/35px Sofia Pro;
    letter-spacing: 0px;
    color: #38B54A;
    transition: color 150ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}
.inf-ls .content-header-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.inf-ls .content-header-text .inf-ls-span{
    font: normal normal 500 14px Sofia Pro;
    letter-spacing: 0px;
    color: #282571;
}
.item-absolute .projects-desc{
    font: normal normal 300 14px/20px Sofia Pro;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.71;
    transition: all 150ms ease-in-out;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-absolute{
    position: absolute;
    top: 0;
    padding:21px 36px 24px 36px;
    left: 0;
    transition: all 150ms ease-in-out;
    border-radius: 10px;
}
.item-absolute:hover{
    background-color: var(--secondary-bg-color);
    width: 520px;
    height: 300px;
    z-index:999999999999999;
    padding-bottom: 60px;
}
.project-cont-item:nth-child(even) .item-absolute:hover{
    left: -49px;
}
.content-desc-cc p {
    font: normal normal 300 20px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #363636;
    padding-bottom: 23px;
    margin-bottom: 0;
}
.project-cont-item:nth-child(odd) .item-absolute:hover{
    right: 19px;
}
.active-arrow{
    opacity: 0;
    width: 10px;
    height: 33px;
    position: absolute;
    right: 16px;
    bottom: 18px;
}
.active-arrow svg{
    position: absolute;
    right: 5px;
    bottom: 8px;
}
.item-absolute:hover .project-heading-text{
    color: white;
}
.item-absolute:hover .project-heading-text .head-text-sub-y{
    color: white;
}
.item-absolute:hover .projects-desc, .item-absolute:hover .active-arrow{
    opacity: 100%;
}
/* Projects Container Ends */
/* Footer */
.footer-container{
    display: flex;
    width: 100%;
    background: black;
    margin-top: 60px;
}
.f-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 1183px;
    margin:0 auto 0 auto ;
    padding:39px 0 49px 0;
}
.footer-logo{
    height: 81px;
    width: 122px;
}
.footer-social-ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    left:-30px;
}
.footer-social-ul svg path{
    fill:#797979;
}
.footer-menu-ul{
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    left: -14px;
}
.footer-menu-ul li .menu-link-footer{
    font: normal normal normal 16px/20px Sofia Pro;
    letter-spacing: 0px;
    color: #FFFFFF;
}
.ytp-gradient-top,.ytp-watermark , .ytp-show-cards-title, .ytp-paid-content-overlay, .ytp-bezel-text-hide, .ytp-doubletap-ui-legacy, .ytp-ad-persistent-progress-bar-container, .ytp-suggested-action, .ytp-info-panel-preview, .ytp-pause-overlay-container, .ytp-info-panel-detail-skrim, .ytp-info-panel-detail , .ytp-watermark{
    display: none !important;
}
:not(.ytp-mweb-player) .ytp-watermark:not(.ytp-no-hover):not(.ytp-muted-autoplay-watermark):hover{
    opacity: 0 !important;
}
/* Footer Ends */
/* Gallery */
.fancybox__content{
    position:relative;
    overflow:hidden;
}
.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    padding: 0;
    background: transparent;
    color: #fff;
}
.fancybox__content iframe{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:0;
    pointer-events:none;
    height:46.25vh;
    width: 50vw;
}
.pagination-container{
    display: flex;
    justify-content: center;
    column-gap: 70px;
    padding-top: 23px;
    padding-bottom: 24px;
}
.content-desc{
    display: none;
}
.pagination-btns a{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap:12px;
    font: normal normal normal 14px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #868686;
}
.is-active{
    font: normal normal normal 14px/25px Sofia Pro !important;
    letter-spacing: 0px !important;
    color: #282571 !important;
}
.is-active svg path{
    fill:#DC4A5E ;
}
.content-header-text{
    font: normal normal 200 40px Sofia Pro;
    letter-spacing: 0px;
    color: #282571;
    padding-bottom: 22px;
    margin-bottom: 0;
}
.inf-ls-span:first-of-type{
    position: relative;
    bottom: -2px;
}
.inf-ls-span:last-of-type{
    position: relative;
    top: -2px;
}
.content-desc{
    margin-bottom: 0;
    font: normal normal 300 20px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #363636;
    padding-bottom: 23px;
}
.hashtag {
    font: normal normal 300 19px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #DC4A5E;
    margin-bottom: 0;
    padding-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
}
.hashtag a{
    font: normal normal 300 19px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #DC4A5E;
}
.hashtag a{
    transition: color 150ms ease-in-out;
}
.hashtag a:hover{
    color: var(--primary-bg-color) !important;
}
.share-container{
    position: relative;
}

.share-container button{
    background-color:#DC4A5D;
    color: white;
    font: normal normal 300 16px/40px Sofia Pro;
    letter-spacing: 0px;
    box-shadow: none;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 17px 0 13px;
}
.project-gallery-container{
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 10px;
    padding-bottom: 32px;
}

.gallery-item{
    width: 307px;
    max-width: 307px;
    min-height: 200px;
    max-height:200px;
    height: 200px;
    border-radius: 10px;
    object-fit: contain;
    cursor:pointer;
}
.fancybox__container{
    z-index: 9999999999999999999 !important;
}
.gallery-item a{
    position: relative;
    border-radius: 10px;
}
.gallery-item a:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
   /* background: transparent linear-gradient(1deg, #000000 0%, #0A0A0AE1 0%, #54545400 100%) 0% 0% no-repeat padding-box;*/
}
.play-btn-absolute{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:99;
}
.share-sub-container{
    position: absolute;
    background: white;
    max-width:258px;
    padding-top: 37px;
    padding-left:16px;
    padding-right:17px;
    z-index:999999999999;
    top: 115%;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
    display: none;
}
.share-sub-container::before{
    content: "";
    position: absolute;
    top:-5px;
    left: 26px;
    width: 32px;
    height: 32px;
    background: white;
    z-index:12;
    transform: rotate(45deg);
}
.close-share-list{
    position: absolute;
    top: 13px;
    right: 15px;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}
.share-list-container{
   padding-bottom: 25px;
}
.share-item{
    padding:7px 11px ;
    border-radius: 5px;
    transition: background-color 200ms ease;
}
.share-item a{
    display: flex;
    column-gap:15px;
    align-items: center;
    font: normal normal 500 18px/22px Sofia Pro;
    letter-spacing: 0.22px;
    color: #000000;
}
.share-item:hover{
    background-color:#EFEFEF;
}
.copy-link-btn{
    display: flex !important;
    align-items: center;
    font: normal normal normal 14px/18px Sofia Pro !important;
    letter-spacing: 0.17px!important;
    color: #5D5D5D !important;
    background: transparent !important;
    column-gap:9px !important;
    padding-bottom: 18px !important;
}
/* Gallery Ends*/
/* Detay Sayfası */
.bg-primary-gray{
    background-color: var(--bg-primary-gray);
    width: 100%;
    height: 100%;
}
.c-static{
    position: static !important;
}
.project-card-items{
    display: flex;
    flex-flow: row wrap;
    margin-left: -8px;
    width: 100%;
}
.card-item:nth-child(3n){
    width: 231px;
}
.card-item:nth-child(5n){
    width: 231px;
}
.card-item:nth-child(7n){
    width: 231px;
}
.card-item{
    height: 250px;
    margin: 0 8px 8px 0;
    overflow: hidden;
    border-radius: 10px;
}
.card-item:nth-child(2n+10){
    min-width: 100px;
}

/* Detay Sayfası Ends */
/* Video Modal */
.video-popup-up{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999999999999999999999999999999;
}
.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.plyr__video-embed iframe {
    top: -50%;
    height: 200%;
}
.video-popup-up{
    display: none;
}
.video-popup-up #player{
    width: 100vw;
    height: 100vh;
}
.plyr__poster{
    background: rgba(0, 0, 0, 0.88) !important;
}
.close-video{
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 9999999999999999999999999999999;
    right: 30px;
    top: 20px;
    border: none;
    background-color:var(--primary-bg-color);
}
.zoom , .slideshow, .full-screen, .thumbnails{
    display: none !important;
}
/* Video Modal Ends */

/* Proje Listesi */
.page-heading-h1{
    font: normal normal 200 40px/50px Sofia Pro;
    letter-spacing: 0px;
    color: #282571;
    opacity: 1;
    padding-top: 37px;
    padding-bottom:52px;
}
.projects-table-list-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 26px;
    row-gap: 11px;
}
.table-project-name{
    margin-bottom: 0;
}
.table-list-item{
    padding-top: 12px;
    padding-bottom: 14px;
    border-bottom:1px solid #D9D9D9;
    transition: all 200ms ease-in-out;
    min-width: 330px;
}
.table-list-item:hover{
    background: white;
    border-color:white;
    padding-left: 19px;
    box-shadow: 3px 6px 20px #0000000B;
}
.table-list-item a{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.table-list-item a .small-number{
    font: normal normal normal 16px/20px Sofia Pro;
    letter-spacing: 0px;
    color: #ED3859;
}
.table-list-item a .table-project-name{
    font: normal normal normal 22px/27px Sofia Pro;
    letter-spacing: 0px;
    color: #696969;
}
.table-list-item a .green-color{
    font: normal normal normal 22px/27px Sofia Pro;
    letter-spacing: 0px;
    color: #38B54A;
}
.projects-table-list-container{
    padding-bottom: 15px;
}
/* Proje Listesi Ends */

/* Başkandan */
.message-container{
    display:grid;
    grid-template-columns:555px 350px;
    gap: 40px;
    padding-top: 55px;
}
.messages-images-wrapper{
    display: flex;
    column-gap: 7px;
}
.messages-images-wrapper .left-col-c{
    width: 231px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.messages-images-wrapper .right-col-c{
    width: 317px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.messages-images-wrapper img{
    border-radius: 10px;
    height:872px;
}
.message-title{
    margin-bottom: 0;
    padding-bottom: 22px;
}
.message-text-wrapper{
    position: relative;
    top: -11px;
}
.message-p{
    font: normal normal 300 18px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #363636;
    margin-bottom: 0;
    padding-bottom: 23px;
}
.message-p p{
    font: normal normal 300 18px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #363636;
    margin-bottom: 0;
}
.message-text-wrapper .message-title{
    font: normal normal 300 40px Sofia Pro;
    letter-spacing: 0px;
    color: #282571;
}
/* Başkandan Ends */

/* Info Sayfası */
/*.parent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(9, 1fr);
    grid-column-gap: 7px;
    grid-row-gap: 10px;
}*/


.text-grid-container{
    padding-top: 114px;
    padding-bottom: 51px;

}
.info-header{
    font: normal normal 200 40px/50px Sofia Pro;
    letter-spacing: 0px;
    opacity: 1;
    color: #38B54A;
}
.color-white{
    color: white;
}
@media (min-width: 1000px) {
    .grid-container{
        max-width: 945px;
        margin: 0 auto;
    }
}
.grid-container{
    display: flex;
    gap:7px ;
}
.left-col-i{
    display: flex;
    flex-wrap: wrap;
    max-width:469px;
    column-gap:7px;
    row-gap: 10px;
}
.right-col-i{
    display: flex;
    flex-wrap: wrap;
    max-width:469px;
    column-gap:7px;
    row-gap: 10px;
}
.info-item{
    padding: 24px 35px 18px 35px;
    animation: fadeIn forwards cubic-bezier(0.59, -0.12, 0.44, 1.18) .9s;
    opacity: 0;
}
.project-animation{
    animation: fadeInCustom2 forwards cubic-bezier(0.59, -0.12, 0.44, 1.18) .9s;
}
/*.projects-container .project-cont-item{
    opacity: 0;
}*/
.player-custom-video{
    width: 100%;
    height: 100%;
}
.gallery-item a img:first-of-type{
    max-width:307px;
    width: 307px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    object-fit: fill;
}
@keyframes fadeIn{
    from{
        transform: translateY(-500px) translateX(-200px) rotate(30deg);
        opacity: 0;
        scale: 0;
    }
    to{
        transform: translateY(0)  rotate(0deg);
        opacity: 1;
        scale: 1;
    }
}
.info-item h3{
    font: normal normal 900 44px/40px Sofia Pro;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-bottom: 0;
    max-width: 408px;
}
.info-item p{
    margin-bottom: 0;
    font: normal normal normal 18px/25px Sofia Pro;
    letter-spacing: 0px;
    color: #FFFFFF;
    max-width: 267px;
}
.right-col-i .no-padding{
    padding: 0;
}
.left-col-i .info-item:nth-child(1){
    padding: 23px 40px;
    width: 469px;
    border: 1px solid #E25E71;
    border-radius: 10px;
    height:120px ;
    animation-delay: 100ms;
}
.left-col-i .info-item:nth-child(2){
    padding: 23px 40px;
    width: 469px;
    background: #3F4AE5;
    border-radius: 10px;
    height:203px;
    animation-delay: 200ms;
}
.left-col-i .info-item:nth-child(3){
    width: 469px;
    background:#E2526D;
    border-radius: 10px;
    height:142px;
    animation-delay: 300ms;
}
.left-col-i .info-item:nth-child(4){
    width: 469px;
    background:#68CCC9;
    border-radius: 10px;
    height: 124px;
    animation-delay: 400ms;
}
.left-col-i .info-item:nth-child(5){
    width: 231px;
    background:#EC6759;
    border-radius: 10px;
    height: 140px;
    animation-delay: 500ms;
}
.left-col-i .info-item:nth-child(6){
    width: 231px;
    background:#3F4AE5;
    border-radius: 10px;
    height: 140px;
    animation-delay: 600ms;
}
.left-col-i .info-item:nth-child(7){
    width: 469px;
    border: 1px solid #68CCC9;
    border-radius: 10px;
    height: 118px;
    animation-delay:700ms;
}
.left-col-i .info-item:nth-child(8){
    width: 469px;
    background-color:#3F4AE5;
    border-radius: 10px;
    height: 178px;
    animation-delay:800ms;
}
.left-col-i .info-item:nth-child(9){
    width: 469px;
    background-color:#EC6759;
    border-radius: 10px;
    height: 120px;
    animation-delay:900ms;
}
.right-col-i .info-item:nth-child(1){
    width: 231px;
    background-color:#EC6759;
    border-radius: 10px;
    height: 120px;
    animation-delay:150ms;
}
.right-col-i .info-item:nth-child(2){
    width: 231px;
    background-color:#3F4AE5;
    border-radius: 10px;
    height: 120px;
    animation-delay:250ms;
}
.right-col-i .info-item:nth-child(3){
    width: 349px;
    background-color:#3A70F6;
    border-radius: 10px;
    height: 120px;
    animation-delay:350ms;
}
.right-col-i .info-item:nth-child(4){
    width: 112px;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    animation-delay:450ms;
    height: 120px;
}
.right-col-i .info-item:nth-child(4) img{
    height: 100%;
}
.right-col-i .info-item:nth-child(5){
    width:469px;
    border: 1px solid #68CCC9;
    border-radius: 10px;
    height: 203px;
    animation-delay:550ms;
}
.right-col-i .info-item:nth-child(7){
    width: 469px;
    border: 1px solid #E25E71;
    border-radius: 10px;
    height: 164px;
    animation-delay:950ms;
}
.right-col-i .info-item:nth-child(8){
    width: 469px;
    background-color: #68CCC9;
    border-radius: 10px;
    height: 178px;
    animation-delay:1050ms;
}
.right-col-i .info-item:nth-child(9){
    width: 349px;
    border: 1px solid #1CACBD;
    border-radius: 10px;
    height: 120px;
    animation-delay:1150ms;
}
.right-col-i .info-item:nth-child(10){
    width: 112px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    height: 120px;
    animation-delay:1250ms;
}
.info-group{
    display: flex;
    column-gap: 7px;
}
.info-sub-group{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.info-group .info-item:nth-child(1){
    width: 231px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    animation-delay:650ms;
}
.info-sub-group .info-item:nth-child(1){
    width: 231px;
    height: 120px;
    background-color: #68CCC9;
    border-radius: 10px;
    animation-delay:750ms;
}
.info-sub-group .info-item:nth-child(2){
    width: 231px;
    height: 120px;
    background-color: #EC6759;
    border-radius: 10px;
    animation-delay:750ms;
}

/* Info Sayfası Ends */

/* Mobile Css */
@media(max-width: 1220px){
    .f-container{
        flex-direction: column;
        gap: 40px;
    }
    .projects-container {
        padding-top: 100px;
        margin-top: 20px;
    }
    .menu-container{
        z-index: 999999999999999999;
    }
    .scroll-to-button {
        z-index: 1;
    }
    .projects-container{
        padding: 0 15px;
    }
}
@media(max-width: 1000px){
    .projects-table-list-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .content-container{
        padding: 0 15px;
    }
    .project-gallery-container{
        justify-content: center;
    }
    nav.sticky-nav-bar {
        display: flex;
        padding: 17px 14px 0 7px;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        z-index: 999999;
    }
    .pagination-container {
        display: flex;
        justify-content: center;
        column-gap: 35px;
        padding-top: 23px;
        padding-bottom: 61px;
    }
}
@media( max-width: 500px) {
    .search-cp-inp {
        width: 186px !important;
    }

    .search-cp-select {
        width: 100% !important;
    }
}
@media(max-width: 600px){
    .search-cp-form{
        flex-wrap: nowrap !important;
    }
    .bg-video-loader-container {
        width: 100vw !important;
        height: unset !important;
        row-gap: 12px !important;
        margin-top: 59px;
    }
    .video-loader-text-anim-container h3 {
        font-size: 14px !important;
        font-weight: bold !important;
        color: white !important;
    }
    .video-loader-text-anim-container {
        flex-direction: row !important;
        column-gap: 52px !important;
    }
    .video-loader-logo-container img {
        width: 100px !important;
        height: auto !important;
    }
    .video-loader-text-anim-container h3 {
        position:relative;
        bottom: -8px;
    }
    .captcha #captcha{
        width: 100% !important;
        margin-bottom:15px;
    }
    .gallery-item{
        width: 100%;
        max-width: 100%;
        min-height: 100%;
        max-height: 100%;
    }
    .gallery-item a img:first-of-type {
        max-width: 100%;
        width: 100%;
    }
    #modal_contact_page .modal-content{
        width: 100% !important;
    }
    .gallery-item a {
        width: 100%;
    }
    .item-absolute:hover {
        width: 100%;
        height: 100%;
    }
    .footer-social-ul{
        left: -15px;
    }
    .projects-container {
        padding-top: 20px;
    }
    .footer-menu-ul{
        flex-direction: column;
    }
    .scroll-to-button {
        z-index: 1;
    }
    .projects-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .btn-side {
        width: 95px;
        height: 33px;
        font-size: 14px;
    }
    .btn-side img{
        width: 15px;
        height: auto;
    }
    .search-input-container {
        transform: translateY(109%) translateX(35%);
        height: 100%;
        width: 287px;
        column-gap: 8px;
    }
    .search-container .search-inp::placeholder{
        font-size: 13px;
    }
    .menu-container {
        width: 300px;
    }
    .scroll-to-button .scroll-to-button{
        width: 48px;
    }
    .scroll-to-button{
        bottom: -61px;
    }
}

/* Mobile Css Ends */




/* Sonradan eklenenler */
.search-results-container{
    padding-top: 81px;
    padding-bottom:80px;
}
.search-results-li{
    width: 100%;
}
.search-results-li a{
    width: 100%;
    border-bottom: 1px solid #CBCBCB;
    padding: 12px 20px 15px 16px;
    display: flex;
    justify-content: space-between;
    font: normal normal normal 22px/27px Sofia Pro;
    letter-spacing: 0;
    color: #696969;
    align-items: center;
    transition: all 250ms ease-in-out;
}
.search-results-li a:hover{
    background-color:white;
    border-color: white;
    box-shadow: 3px 6px 20px #0000000B;
}
.search-results-li a:hover svg{
    opacity: 1;
}
.search-results-li a svg{
    opacity: 0;
    transition: all 100ms ease-in-out;
}
.flex-header .subhead-text{
    margin-bottom: 0;
    font: normal normal normal 16px/20px Sofia Pro;
    letter-spacing: 0;
    color: #4A4A4A;
}
.flex-header .search-header-text{
    font: normal normal 300 40px/50px Sofia Pro;
    letter-spacing: 0;
    color: #282571;
    margin-bottom:1px;
}
@media(max-width: 800px){
    .content-container{
        padding-top: 15px;
    }
    .search-results-container{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .search-results-li a {
        font: normal normal normal 16px/20px Sofia Pro;
    }
    .project-card-items{
        justify-content: center;
    }

    .project-card-items .card-item:nth-child(n+3):nth-child(10n+3){
        width: 350px!important;
    }
    .project-card-items .card-item:nth-child(n+5):nth-child(6n+5){
        width: 350px!important;
    }
    .project-card-items .card-item:nth-child(n+7):nth-child(10n+7){
        width: 350px!important;
    }
    .project-card-items .card-item:nth-child(n+7):nth-child(20n+1){
        width: 350px !important;
    }
    .main-slider{
        height: unset;
    }
    .main-slider video{
        height: 100%;
    }
    .message-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .messages-images-wrapper img {
        max-width: 100%;
    }
    .message-container {
        padding-top: 19px;
    }
}
@media(max-width: 1000px){
    .grid-container{
        flex-direction: column;
        align-items: center;
    }
}
@media(max-width: 600px){
    .grid-container{
        flex-direction: column;
        align-items: center;
    }
    .left-col-i .info-item:nth-child(1){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(2){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(3){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(4){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(5){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(6){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(7){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(8){
        width: 100%;
    }
    .left-col-i .info-item:nth-child(9){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(1){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(2){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(3){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(4){
        width: 100%;
        height: 260px;
    }
    .right-col-i .info-item:nth-child(4) img{
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
        overflow: hidden;
        animation-delay: 450ms;
        height: 260px;
    }
    .right-col-i .info-item:nth-child(5){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(7){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(8){
        width: 100%;
    }
    .info-group{
        flex-direction: column;
    }
    .info-group{
        width: 100%;
    }
    .right-col-i .info-item:nth-child(9){
        width: 100%;
    }
    .right-col-i .info-item:nth-child(10){
        width: 100%;
    }
    .info-group .info-item:nth-child(1){
        width: 100%;
        height: 100%;
        border-radius: 21px;
        margin-top: 10px;
    }
    .info-sub-group .info-item:nth-child(2){
        width: 100%;
    }
    .grid-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .info-group .info-item:nth-child(1) img {
        width: 100%;
        margin-bottom: 10px;
        height: 100%;
    }
    .info-item{
        height: 100% !important;
    }
    .right-col-i .info-item:nth-child(10) img{
        width: 100%;
        height: 200px;
    }
    .text-grid-container{
        padding-top: 100px;
    }
    .project-card-items {
        margin-left: 0px;
    }
    .card-item{
        width: 100% !important;
    }
    .project-card-items .card-item:nth-child(n+5):nth-child(6n+5), .project-card-items .card-item:nth-child(n+7):nth-child(10n+7), .project-card-items .card-item:nth-child(n+5):nth-child(6n+5), .project-card-items .card-item:nth-child(n+3):nth-child(10n+3) {
        width: 100% !important;
    }
    .project-card-items {
        padding: 20px 0 20px 0;
    }
}
.project-card-items{
    display: flex;
    flex-wrap: wrap;
    column-gap: 7px;
    row-gap: 10px;
}
.card-item{
    position: relative;
    transition: all 300ms ease-in-out;
    opacity: 0;
}
.card-item{
    animation: fadeInCustom forwards ease-in-out .1s;
}
.card-item:nth-child(1){
    animation-delay: 150ms;
}
.card-item:nth-child(2n){
    animation-delay: 200ms;
}
.card-item:nth-child(3n){
    animation-delay: 300ms;
}
.card-item:nth-child(4n){
    animation-delay: 400ms;
}
.card-item:nth-child(5n){
    animation-delay: 500ms;
}
.card-item:nth-child(6n){
    animation-delay: 600ms;
}
.card-item:nth-child(7n){
    animation-delay: 700ms;
}
.card-item:nth-child(8n){
    animation-delay: 800ms;
}
.card-item:nth-child(9n){
    animation-delay: 900ms;
}
.card-item:nth-child(10n){
    animation-delay: 1000ms;
}
.card-item:hover{
    box-shadow: rgb(0 0 0 / 22%) 6px 10px 8px;
    scale: 1.01;
    transform: translateY(-4px);
}
.card-item .card-text-container{
    position: absolute;
    bottom: 0;
    left: 0;
    padding:14px 22px;
    /*background: transparent linear-gradient(1deg, #000000 0%, #0A0A0AE1 0%, #54545400 100%) 0% 0% no-repeat padding-box;*/
    height: 191px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;

}
.card-item .card-text-container p{
    text-shadow: 2px 0 #171717, -2px 0 #171717, 0 2px #171717, 0 -2px #171717, 1px 1px #171717, -1px -1px #171717, 1px -1px #171717, -1px 1px #171717;
    width: 100%;
    font: normal normal 900 24px/27px Sofia Pro;
    letter-spacing: 0px;
    color: #FFFFFF;
    max-width: 160px;
}
.card-item a{
    width: 100%;
}
.card-item img{
    width: 100%;
    height: 100%;
    min-height:267px;
    object-fit:cover;
}
.project-card-items{
    padding: 44px 0 44px 0;
}
.project-card-items .card-item{
    overflow: hidden;
    border-radius: 10px;
    height:267px;
}
.project-card-items .card-item{
    width: 350px;
}
.project-card-items .card-item:nth-child(n+3):nth-child(10n+3){
    width: 231px;
}
.project-card-items .card-item:nth-child(n+5):nth-child(6n+5){
    width: 231px;
}
.project-card-items .card-item:nth-child(n+7):nth-child(10n+7){
    width: 231px;
}
.project-card-items .card-item:nth-child(n+7):nth-child(20n+1){
    width: 231px;
}
.content-header-text{
    padding-top:37px;
}
@keyframes fadeInCustom{
    from{
        opacity: 0;
        scale: .98;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
@keyframes fadeInCustom2{
    from{
        bottom:-60%;
    }
    to{
        bottom: 0;
    }
}
.no-f{
    flex-direction: column!important;
}
.cursor-pointer{
    cursor:pointer;
}
.project-animation:nth-child(1){
    animation-delay: 100ms;
}
.project-animation:nth-child(2n){
    animation-delay: 200ms;
}
.project-animation:nth-child(3n){
    animation-delay: 400ms;
}
.project-animation:nth-child(4n){
    animation-delay: 500ms;
}
.project-animation:nth-child(5n){
    animation-delay: 700ms;
}
.project-animation:nth-child(6n){
    animation-delay: 800ms;
}
.project-animation:nth-child(7n){
    animation-delay: 900ms;
}
.project-animation:nth-child(8n){
    animation-delay: 1100ms;
}
.project-animation:nth-child(9n){
    animation-delay: 1200ms;
}
.project-animation:nth-child(10n){
    animation-delay: 1300ms;
}
#modal_contact_page .modal-content{
    width: 503px;
    border-radius: 13px;
    padding: 48px 48px 30px 48px;
}
.modal-body{
    padding: 0 !important;
}
.form-contact-container{
    display: flex;
    flex-direction: column;
    row-gap: 36px;
}
.contact-input{
    padding-bottom: 7px !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #CBCBCB;
    transition: all 150ms ease-in-out;
    font: normal normal normal 14px/18px Sofia Pro;
    letter-spacing: 0px;
    color: #030303;
    outline: none;
    box-shadow: none;
    width: 100%;
}
#captcha{
    width: 58% !important;
}
.contact-input::placeholder{
    font: normal normal normal 14px/18px Sofia Pro;
    letter-spacing: 0px;
    color: #939393;
    opacity: 1;
    outline: none;
    box-shadow: none;
}
.contact-input:focus{
    border-bottom: 1px solid #DC4A5E;
    color: #030303;
    outline: none;
    box-shadow: none;
}
.contact-textarea{
    height:81px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #CBCBCB;
    transition: all 150ms ease-in-out;
    font: normal normal normal 14px/18px Sofia Pro;
    letter-spacing: 0px;
    color: #030303;
    outline: none;
    box-shadow: none;
    resize: none;
}
.contact-textarea::placeholder{
    font: normal normal normal 14px/18px Sofia Pro;
    letter-spacing: 0px;
    color: #939393;
    opacity: 1;
    outline: none;
    box-shadow: none;
}
.contact-textarea:focus{
    border-bottom: 1px solid #DC4A5E;
    color: #030303;
    outline: none;
    box-shadow: none;
}
.input-captcha-container{
    position: relative;
    width: 100%;
}
#subject{
    width: 100%;
}
.submit-btn{
    margin: 0 auto;
    width: 175px;
    border-radius: 10px;
    background-color:#DC4A5D;
    color: white;
    font: normal normal bold 15px/40px Sofia Pro;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    transition: all 200ms ease-in-out;
    outline: none;
}
.submit-btn:hover{
    background-color:var(--primary-bg-color);
    border: none;
    box-shadow: none;
    outline: none;
}
.submit-btn:focus{
    border: none;
    box-shadow: none;
    outline: none;
}
.captcha-code-img{
    position: absolute;
    left: 95px;
    bottom: 19px;
}
.modal-body{
    position: relative;
}
.modal-close{
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 99999999999;
}
.modal-dialog{
    padding-top: 100px;
}
.modal-close:focus{
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}
/* Sonradan eklenenler */


/* Galeri */
.download-gallery-btn{
    position: absolute !important;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    z-index: 999999999999999999999999999999999;
    background: rgba(255, 255, 255, 0.3) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    column-gap: 13px;
    transition: background-color ease-in-out 50ms;
    font: normal normal 200 16px Sofia Pro;
    letter-spacing: 0px;
    color: white!important;
}
.download-gallery-btn:hover{
    background-color: #DC4A5D;
}
.download-gallery-btn:before{
    content: none !important;
}
.download-text{
    display: none;
}
.gallery-item{
    position: relative;
}
.gallery-header{
    padding-bottom: 45px !important;
}
.gal-desc p{
    margin-bottom: 0;
    max-width: 307px;
    padding-bottom: 9px;
    padding-top: 7px;
    font: normal normal 300 14px/20px Sofia Pro;
    letter-spacing: 0px;
    color: #363636;
}
.no-degrade  a:before{
    content: none !important;
}
.head-text-sub-y{
    font: normal normal 500 14px Sofia Pro;
    letter-spacing: 0px;
    color: #38B54A;
}

/*@media only screen and (min-width: 1281px) and (max-width: 1920px){
    .swiper-slide {
        scale: 1.1;
        padding: 2% 5% !important;
    }
}*/

/* Galeri Ends */



/* Galeri Filtreleme Starts */
.search-filter-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.search-cp-form{
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    flex-wrap: wrap;
}
.search-cp-select{
    padding: 5px 0px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #6fcdf0;
    margin-right:31px;
}
.search-cp-inp:focus, .search-cp-button, .search-cp-select:focus{
    outline: none;
}
.search-cp-inp{
    padding: 5px 0px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #6fcdf0;
    margin-left: -35px;
    width: 260px;
}
.search-cp-button{
    background: #dc4a5e;
    color: white;
    border-radius: 5px;
    border-color: transparent;
    font-weight: 500;
    font-size: 15px;
    padding: 0px 19px;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
.search-cp-button svg{
    width: 20px;

}
/* Galeri Filtreleme Ends */

/* Loading Video */
.dot-overtaking {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    margin: -1px 0;
    box-shadow: 0 -20px 0 0;
   /* filter: blur(2px);*/
    animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
}
.dot-overtaking::before, .dot-overtaking::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    box-shadow: 0 -20px 0 0;
    /*filter: blur(2px);*/
}
.dot-overtaking::before {
    animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
    animation-delay: 0.3s;
}
.dot-overtaking::after {
    animation: dot-overtaking 1.5s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
    animation-delay: 0.6s;
}

@keyframes dot-overtaking {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}
.bg-video-loader-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    row-gap: 32px;
}
.video-loader-logo-container img{
    width: 300px;
    height: auto;
}
.video-loader-text-anim-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 52px;
}
.video-loader-text-anim-container h3{
    font-size: 30px;
    font-weight: bold;
    color: white;
}
.swiper-slide{
    position: relative;
}


@media (max-width: 500px) {
    .project-cont-item:nth-child(even) .item-absolute:hover{
        left: unset !important;
    }
    .project-cont-item:nth-child(odd) .item-absolute:hover{
        right: unset !important;
    }
    .projects-desc:nth-child(3){
        -webkit-line-clamp: 2 !important;
    }
    .projects-container .project-cont-item{
        height:max-content;
    }
    .projects-container .item-absolute{
        position: relative !important;
        height:max-content;
    }
}
/* Loading Video */