*{
    margin: 0px;
    padding: 0px;
}

html{ height:100%; }


body{
    min-height:100%; padding:0; margin:0; position:relative; 
    font-family: sans-serif;
    font-size: 16px;
    background-color: #f3f3f4;
    overflow-x: hidden;
}
body p, body li{line-height: 26px;}

body::-webkit-scrollbar {
    width: 0.6em;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #11161e;
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: #11161e;
    outline: 1px solid rgb(71, 71, 71);
  }
  .lazy{background-image: none !important; width: 10px; height: 10px;}
.tepe{
    width: 100%;
    height: 57px;
    background-color: #11161e;
    color: #fff;
}
.container{
    margin: 0 auto;
    width: 1172px;
}

.top-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    grid-auto-rows: 1fr;
    line-height: 57px;
}
.top-info a{color: #fff; text-decoration: none;}
header ul{list-style: none;}
.top-sos{ margin-top: 1px; float: right;}
.top-sos li{ display: inline-block; top: 23px;}
.top-sos li a{background-color: #fff; display: inline-block; width: 35px; height: 35px; border-radius: 35px; text-align: center; line-height: 39px;} 



.widget_polylang{
    float: right;
}
.widget_polylang li{display: inline-block; margin-right: 20px;}
.fixle{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #fff;
    z-index: 10;
}
.orta{
    width: 100%;
    height: 92px;
    background-color: #f3f3f4;
}
.orta-wrap{
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-gap: 1em;
    grid-auto-rows: 1fr;
}
.logo{
    width: 157px;
    height: 62px;
    margin-top: 14px;
}
.ikonlu{
    display: grid;
    grid-template-columns: 13% 87%;
    grid-gap: 1em;
    grid-auto-rows: 1fr;
    margin-top: 20px;
}
.ikonlu a{text-decoration: none; color: #11161e;}
.ikonlu:last-child{grid-template-columns: 10% 87%;}
.h-ince{
    display: block;
    font-size: 17px;
    color: #525252;
    margin-bottom: 5px;
}
.h-kalin{
    font-size: 20px;
    font-weight: 600;
}

.alt{
    width: 100%;
    height: 71px;
    background-color: #11161e;
}
@media only screen and (min-width: 850px) {
    .nav-wrap{
        display: grid;
        grid-template-columns: 75% 25%;
        grid-gap: 1em;
        grid-auto-rows: 1fr;
    }
    
    #nav li{display: inline-block;}
    
    #nav li a{display: flex; text-decoration: none; color: #fff; padding: 23px 27px; font-size: 15px; text-transform: uppercase; font-weight: 600;}
    #nav li:first-child a{padding-left: 5px;}
    .menu-item-has-children{
        position: relative;
    }
    .menu-item-has-children::after{
        content: '❮';
        position: absolute;
        top: 23px;
        color: #fff;
        right: 13px;
        font-size: 12px;
        transform: rotate(-90deg);
    }
    #nav li a:hover{
        color: #dc4828;
    }
    .menu-item-has-children:hover::after {
        color: #dc4828; /* Hover rengi */
    }
    .acik{color: #dc4828 !important;}
    .acik:after{color: #dc4828 !important;}
    
    .sub-menu{
        position: absolute;
        top: 71px;
        display: none;
        z-index: 10;
    }
    
    .sub-menu a{
        color: #11161e !important;
        padding: 10px  15px !important;
        line-height: 25px;
        background-color: #fff;
        width: 200px;
        border-bottom: 1px solid #e6e6e6;
        text-transform: capitalize !important;
    }
    .sub-menu a:hover{
        color: #dc4828 !important;
    }
    
    .menu-item-has-children:hover .sub-menu{
        display: block;
        animation: slideDown 0.5s ease;
    }
    .nav-ivir div{display: inline-block;}
    .arama-but{
        padding: 23px;
        cursor: pointer;
        border-left: 1px solid rgba(255, 255, 255, 0.20);
    }
    .nav-ilet a{
        padding: 27px;
        background: #dc4828;
        position: relative;
        top: -4.7px;
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
    }
  }


@keyframes slideDown {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /*slider*/
  .slider{
    background-color: #11161e;
  }
  .carousel-container {
    position: relative;
    width: 100%;
    height: 800px;
    box-sizing: border-box;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.carousel-slide img{position: relative;width: 100%; height: 800px; object-fit: cover; box-sizing: border-box; position: relative;}

.slide-in{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #11161ec2;
}


.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}
.carousel-controls {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 9;
}
.carousel-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.308);
    position: absolute;
    color: rgba(255, 255, 255, 0.308);
    line-height: 30px;
    opacity: 0.4;
}
.carousel-controls button:hover{opacity: 1;}
.carousel-controls button:first-child{ left: 3%;}
.carousel-controls button:last-child{ right: 3%;}

.slide-wrap{
    display: grid;
    grid-template-columns: 65% 35%;
    grid-gap: 1em;
    grid-auto-rows: 1fr;
    color: #fff;
}
.slide-yaz{
    margin-top: 22%;
}
.slide-span{
    color: #dc4828;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    top: -100px;
    opacity: 0;
    letter-spacing: 0.4rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    
}
.active .slide-span{
    animation: hareketiki 2s ease forwards;
}
@keyframes hareketiki {
    to {
        top: calc(0px); /* Div, sayfanın sağ kenarına kadar gidecek */
        opacity: 1;
    }
}
.slide-title{
    font-size: 70px;
    line-height: 95px;
    position: relative;
    left: -200px;
    opacity: 0;
    margin-top: 17px;
    font-weight: 600;
    text-transform: uppercase;
    
}
.active .slide-title{
    animation: hareket 1.5s ease forwards;
}
@keyframes hareket {
    to {
        left: calc(0px); /* Div, sayfanın sağ kenarına kadar gidecek */
        opacity: 1;
    }
}
.slide-desc{
    font-size: 1.2rem;
    margin-top: 48px;
    margin-left: 100px;
    opacity: 0;
}
.active .slide-desc{
    animation: hareketd 1.5s ease forwards;
}
@keyframes hareketd {
    to {
        margin-left: 0px; /* Div, sayfanın sağ kenarına kadar gidecek */
        opacity: 1;
    }
}
.slide-buts{
    margin-top: 50px;
}
.slide-but{
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    color: #ffffff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 700;
    border: 1px solid #dc4828;
    background-color: #dc4828;
    text-decoration: none;
    text-transform: uppercase;
   
    margin-right: 18px;
    position: relative;
    bottom: -100px;
    opacity: 0;
   
}
.active .slide-but{
    animation: hareketuc 1.5s ease forwards;
}
@keyframes hareketuc {
    to {
        bottom: calc(0px); /* Div, sayfanın sağ kenarına kadar gidecek */
        opacity: 1;
    }
}
.slide-but:hover{
    background-color: #11161e;
    border-color: #11161e;
}
.slide-buts .slide-but:last-child{
    border: 1px solid rgba(255, 255, 255, 0.192);
    background-color: rgba(255, 255, 255, 0.123);
   
}
.active .slide-buts .slide-but:last-child{
    animation: hareketuc 2.3s ease forwards;
}
.slide-buts .slide-but:last-child:hover{
    background-color: rgba(255, 255, 255, 0.233);
}
.slide-img img{width: 120%; height: auto; margin-top: 38%; position: relative; right: -250px; opacity: 0;}
@keyframes hareketdort {
    to {
        right: calc(-50px); /* Div, sayfanın sağ kenarına kadar gidecek */
        opacity: 1;
    }
}
.active .slide-img img{ animation: hareketdort 2.3s ease forwards;}
  /*slider*/

  /*giris*/
    .giris{
        margin-top: 120px;
    }
    .giris-wrap{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1em;
        grid-auto-rows: 1fr;
    }
    .giris-span{
        color: #dc4828;
        font-weight: 600;
        letter-spacing: 0.2rem;
    }
    .giris h1{
       font-size: 32px; 
       margin-top: 12px;
       line-height: 42px;
       font-weight: normal;
    }

    .kutular{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 2em;
        grid-auto-rows: 1fr;
        margin-top: 50px;
    }
    .kutu{
        text-align: center;
        background-color: #fff;
        padding:45px 30px;
    }
    .kutu-title{
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 25px;
        display: inline-block;
    }
    .kutu:hover .kutu-title{
        color: #dc4828;
    }
  /*giris*/

  /*deneyim*/
  .deneyim{margin-top: 120px; background-color: #fff; color: #525252;}
  .deneyim-wrap{
    display: grid;
    grid-template-columns: 49% 51%;
    grid-gap: 0em;
    grid-auto-rows: 0fr;
  }
  .deneyim img{width: 100%; height: 650px; object-fit: cover;}
  .deneyim-wrap > div:first-child{
    position: relative;
    padding-left: 373px;
    padding-top: 70px;
    width: 50%;
  }
  .deneyim-wrap .giris-span{margin-bottom: 15px; display: block;}
  .baslik{
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
  }
  .den-p{
    font-weight: 600;
    margin-top: 25px;
    font-size: 17px;
  }
  .den-list{list-style: none; margin-top: 15px; padding: 30px; background-color: #dc4828; font-weight: 600; color: #fff; font-size: 18px;}
  .den-list span{color: #fff; font-size: 21px;}
  .den-list li{margin-bottom: 10px;}
  /*deneyim*/

  /*projects*/
  .projects-home{
    padding: 130px 0px;
    padding-bottom: 90px;
  }
  .txt-center{text-align: center;}
  .bas-giris{margin-bottom: 17px; display: inline-block;}
  .sec-giris{margin-bottom: 60px;}

  .projects-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.5em;
    grid-auto-rows: 1fr;
  }
  .projects-wrap > div,  .projects-wrap > article{position: relative;
    -webkit-box-shadow: 0px 0px 30px -17px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -17px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -17px rgba(0,0,0,0.75);
    margin-bottom: 20px;
    background-color: #fff;
    padding: 22px; 
}
  .projects-home img{height: 340px; width: 100%; object-fit: cover; padding-bottom: 0px;}
  .pro-title{
    transition: 0.5s;
    margin-top: -4px;
    padding: 25px 15px;
    background-color: #fff;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .projects-wrap > div:hover .pro-title,  .projects-wrap > article:hover .pro-title{
    background-color: #dc4828;
    color: #fff;
  }
  .projects-wrap img{width: 100%;}
  .pro-title h2{
    font-size: 17px;
  }
  .projects-wrap a{text-decoration: none; color: #11161e;}

  .tumu{
    position: relative;
    display: inline-block;
    background: #dc4828;
    padding-left: 30px;
    text-decoration: none;
    padding-right: 30px;
    color: #fff !important;
    font-size: 16px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    margin-top: 42px;
  }
  .tumu:hover{
    background-color: #dc4828;
  }
  .home-blog .tumu{background-color: #dc4828 !important;}
  /*projects*/


  /*faq*/
.faq{
    width: 100%;
    height: auto;
    background-color: #E9EBF4;
    padding: 70px 0px;
    margin-top: 10px;
}
.faq-wrap{
    display: grid;
    grid-template-columns: 55% 45%;
    grid-gap: 2em;
    grid-auto-rows: 1fr;
    align-items: center;
}
.faq img{
    width: 100%;
    position: relative;
    animation: havada 1s infinite alternate;
}

.faq-icerik{
    margin-top:5px;
}

@keyframes havada {
    0% {
        top: -30px;
    }
    100% {
        top: 30px; /* İstediğiniz yüksekliği burada ayarlayabilirsiniz */
    }
}
.faq-span{
    color: #dc4828;
    font-size: 18px;
    font-weight: 600;
}
.faq-title{font-size: 32px; margin: 15px 0px; font-weight: 600; margin-bottom: 40px;}
.soru{font-size: 17px; font-weight: 600; margin-bottom: 10px; border-top: 1px solid #e2e2e2; padding-top: 18px; padding-bottom: 7px; cursor: pointer;}
.faq-con{
    display: grid;
    grid-template-columns: 8% 92%;
    grid-gap: 0em;
    grid-auto-rows: 1fr;
}
.numb{
    border-top: 1px solid #e2e2e2;
    padding-top: 17px;
    font-weight: 600;
}
.cevap{
    color: #525252;
    line-height: 25px;
    font-size: 16px;
    display: none;
    padding-bottom: 20px;
}
.aktif-soru .soru, .aktif-soru .numb{color: #dc4828;}
.aktif-soru .cevap{display: block;}
.faq img{
    width: 80%;
}
  /*faq*/

/*blog*/
.home-blog{
padding: 50px 0px 110px 0px;
}
.b-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2em;
    grid-auto-rows: 2fr;
}
.b-wrap img{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: -3px;
}
.b-wrap article{position: relative;}
.b-icerik{
    background-color: #fff; 
    padding: 30px;
    padding-top: 15px;
    padding-bottom: 40px;
}
.bos{font-size: 15px; color: #dc4828; text-transform: uppercase; padding: 15px 0px; font-weight: 600;}

.home-blog h2{
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 28px;
}
.home-blog h2 a{
    text-decoration: none;
    color: #11161e;
}.home-blog h2 a:hover{color: #dc4828;}
/*blog*/

  /*search*/
  .arama-over{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: #11161ece;
    z-index: 10;
   display: none;
  }
  .arama-wrap{
    margin: 0 auto;
    width: 350px;
   margin-top: 20%;
  }
  .arama-over input{
    float: left;
    width: 85%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #11161e;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.308);
    border-radius: 5px 0px 0px 5px;
  }
  .arama-over button{
    float: left;
    width: 15%;
    box-sizing: border-box;
    background-color: #dc4828;
    border: 1px solid rgba(255, 255, 255, 0.308);
    padding: 14.7px;
    padding-bottom: 14px;
    border-left: 0px;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
  }
  .arama-over button:hover{
    background-color: #11161e;
  }
  .goster{display: block;}
  .sakla{display: none;}
  /*search*/

  /*footer*/
  body::after{ content:''; display:block; height:330px; }

  footer{ 
    position:absolute; 
    bottom:0; 
    width:100%; 
    background-color: #11161e;
    height:150px; 
    color: #fff;
    padding: 50px 0px;
  }

  .popupbox{
   display: none;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    line-height: 20px;
    color: #fff;
    background-color: #11161ec9;
    text-align: center;
    padding-left: 0;
    padding: 10px 0px;
    z-index: 5;
  }

  .popupbox p {
    padding: 2px;
    margin-top: 5px;
    font-size: 15px;
}
.popupbox ul {
    list-style: none;
    text-align: center;
    padding-left: 0;
    margin-bottom: 5px;
}

.popupbox li {
    display: inline-block;
    padding: 5px;
    background-color: #222;
    border-radius: 5px;
    font-size: 14px;
    margin: 3px;
    cursor: pointer;
    transition: .5s;
}
.popupbox li:first-child{
    background-color: #dc4828;
}
.popupbox li:hover{
    background-color: #dc4828;
}
.popupbox a {
    color: #dc4828;
    font-weight: 600;
    text-decoration: none;
}

  .f-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
    grid-auto-rows: 1fr;
  }
  .sayfa-basi{
    text-align: right;
  }
  .sayfa-basi span{
    transform: rotate(270deg);
    display: block;
    float: right;
    cursor: pointer;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 26px;
    border-radius: 40px;
    font-size: 25px;
    background: #dc4828;
  }
  .sayfa-basi a{text-decoration: none; color: #fff;}
  .foot-map ul{list-style: none; position: relative; top: 50px;}
  .foot-map ul li{display: inline-block;}
  .foot-map a{text-decoration: none; color: #fff; font-size: 13px;}
  .foot-map a::after{
    content: ' | ';  padding: 10px;
  }
  .foot-map a:hover{
    color: #dc4828;
  }
  /*footer*/
 .mobilde{display: none;}
 .pcde{display: block;}
 .ikonlu-g{display: grid;}
 .mobile-nav{display: none;}

 @media only screen and (max-width: 1600px){
    .deneyim-wrap > div:first-child{
        padding-left: 10%;
        width: 80%;
    }
 }

  @media only screen and (max-width: 1200px) {
    .container{
        width: 90%;
    }
    .tepe, .orta{font-size: 14px;}
    #nav li a{padding: 23px 15px;
        font-size: 14px;}
    .nav-wrap{grid-template-columns: 90% 10%;}
    .nav-ilet{display: none !important;}
    .h-ince{font-size: 14px;}.h-kalin{font-size: 16px;}
    .ikonlu{margin-top: 24px;}
    .slide-img img{display: none;}
  }

  .ara-mobil{display: none !important;}
  @media only screen and (max-width: 850px) {
    .mobilde{
        display: block;
    }
    .ara-mobil{display: block !important;}
    .mobile-nav{display: block; }
    .orta-wrap{
        grid-template-columns: 50% 50%;
    }
    .top-wrap{grid-template-columns: 70% 30%; grid-gap: 0em;}
    .ikonlu-m{display: none;}
    .pcde{display: none;}
    .nav-wrap{grid-gap: 0em;}
    .ikonlu-g{display: none;}
    .mobile-nav span{
        display: block;
        width: 45px;
        height: 5px;
        margin-bottom: 7px;
        border-radius: 4px;
        background-color: #dc4828;
    }
    .orta-wrap{grid-gap: 0;}
    .navim{
        float: right;
        position: relative;
        top: 32px;
        cursor: pointer;
    }
    .orta{
        border-bottom: 2px solid #dc4828;
    }
    .alt{height: auto;}
    .nav-ivir{display: none;}
    #nav{
        display: none;
        position: absolute;
        top: 151px;
        left: 0px;
        z-index: 10;
        width: 100%;
    }
    #nav a{
        display: flex;
        background-color: #11161e;
        color: #fff;
        text-decoration: none;
        padding: 10px 5% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .sub-menu{display: none;}
    .sub-menu a{background-color: #1d222c !important;}
    .menu-item-has-children{position: relative;}
    .downup{
        position: absolute;
        right: 0px;
        top: 0px;
        padding: 10px 20px;
        background: #11161e;
      
        color: #fff;
        font-size: 21px;
    }
    .show{display: block;}
    /*menu bıttı*/

    .carousel-container, .carousel-slide img{height: 650px;}
    .slide-wrap{display: block;}
    .slide-span{font-size: 0.7rem; letter-spacing: 0.2rem;}
    .slide-title{
        font-size: 25px;
        line-height: 33px;
    }
    .slide-desc{font-size: 0.9rem; margin-top: 20px;}
    .slide-buts{margin-top: 32px;}
    .slide-but{
    padding-left: 7px;
    padding-right: 7px;
    font-size: 11px;
    line-height: 40px;
    margin-right: 12px;
    
    }
    .slide-img img{
        width: 65%;
        height: auto;
        margin-top: 18%;
        position: relative;
        right: auto;
        left: 0px;
        opacity: 0;
    }

    .giris{
        margin-top: 80px;
    }
    .giris-wrap{
        display: block;
    }
    .giris-wrap > div{margin-bottom: 20px;}
    .kutular{
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
        grid-gap: 1em;
    }
    .kutu{
        padding: 30px 10px;
    }

    .deneyim-wrap > div:first-child{
        padding-left: 5%;
        width: 87%;
    }
    .deneyim-wrap{display: block;}
    .deneyim img{height: auto; margin-top: 50px;}

    .projects-wrap{grid-template-columns: repeat(2, 1fr);}
    .faq-wrap{
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 0fr;
    }

    .b-wrap{grid-template-columns: repeat(2, 1fr);}

    footer{
        position: relative;
        height: auto;
        padding-bottom: 100px;
    }
    body::after{ content:''; display:block; height:auto; }

  }

 

  @media only screen and (max-width: 620px){
    .projects-wrap{grid-template-columns: repeat(1, 1fr);}
    .numb{padding-top: 20px;}
    .bas-giris{line-height: 25px;}
    .b-wrap{grid-template-columns: repeat(1, 1fr);}
    .f-wrap{grid-template-columns: 75% 25%; grid-gap:0em;}
    .slide-img img{display: block;}
  }

  @media only screen and (max-width: 400px){
    .kutular{
        grid-template-columns: repeat(1, 1fr);
    }
  }