*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
}
.header{
    color: #fff;
position: relative;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    transition: all .2s ease-out;
}
.headerLite{
    height: 120px!important;
}

.headerLite div{
    padding-top: 40!important;
}

.darkBlur{
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 10;
    background: rgba(0,0,0,0.15);
}

.logo{
    position: absolute;
    left:calc(50% - 76.56px)
}

.logoLite #text g path{
    opacity: 1;
    animation:animate-logoText .2s linear forwards;
}
.form_content{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.form_container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
form {
    width: 600px;
    margin: 0 auto;
  }
  
 
  
  .input-group {
    margin-bottom: 30px;
    position: relative;
  }
  
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  .input-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: 0.3s;
    pointer-events: none;
  }
  
  .input-group input:focus,
  .input-group textarea:focus {
    border-color: #324147;
  }
  
  .input-group input:focus + label,
  .input-group textarea:focus + label,
  .input-group input:valid + label,
  .input-group textarea:valid + label {
    top: -15px;
    font-size: 12px;
    color: #fff;
  }
  
  .submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #2d2926;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #121212;
  }

@keyframes animate-logoText {
    0%{
        opacity: 1;
        transform: translateY(0);
    }
    100%{
        opacity: 0;
        transform: translateY(20px);
    }
}
.logoLite #mark g path{
    animation:animate-logoMark .2s linear forwards;
}
@keyframes animate-logoMark {
    0%{
        transform: translateY(0) scale(1) translateX(0px);
    }
    100%{
        transform: translateY(100px) scale(1.2) translateX(-65px);
    }
}

.logoReverse #text g path{
    opacity: 1;
    animation:logoReverse-logoText .2s linear forwards;
}
@keyframes logoReverse-logoText {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.logoReverse #mark g path{
    animation:logoReverse-logoMark .2s linear forwards;
}
@keyframes logoReverse-logoMark {
    0%{
        transform: translateY(100px) scale(1.2) translateX(-65px);
    }
    100%{
        transform: translateY(0) scale(1) translateX(0px);
    }
}
.bgImage {
    position: relative;
    height: 100%;
    width: 100%;
}
.bgImage img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hide{
    display: block;
}
.line{
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 0.5;
    max-width: 1200px;
    display: flex;
    position: relative;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto;
}
.main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2000;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
.aboutContent{
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
    scroll-snap-align: center;
}
.aboutContent video{
    height: 50vh;
    width: 100%;
    position: absolute;
    object-fit: cover;
    top: 0px;
    left:0px;
    z-index: -10;
}
.aboutContent .container{
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.aboutContent .container h1{
    font-size: 5rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.14286;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    margin-bottom: 25px;

}
.aboutContent .container h3{
    text-align: center;
    font-weight: 400;
    line-height: 1.14286;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.aboutContent .container p{
    text-align: center;
    line-height: 1.14286;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    margin-bottom: 25px;
}

.content{
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    scroll-snap-align: center;
}
.content video{
    height: 100vh;
    width: 100%;
    position: absolute;
    object-fit: cover;
    top: 0px;
    left:0px;
    z-index: -10;
}
.content .container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.content .container h1{
    font-size: 5rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.14286;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    margin-bottom: 25px;

}
.content .container h3{
    text-align: center;
    font-weight: 400;
    line-height: 1.14286;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.content .container p{
    text-align: center;
    line-height: 1.14286;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    margin-bottom: 25px;
}
.content .container a{
    color: #111111;
    background: #FFFFFF;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 30px;
    display: inline-flex;
    min-height: 46px;
    padding: 0 16px;
    width: 276px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.3em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.content .container a span{
    transition: transform .4s;
}
.content .container a:hover svg{
    opacity: 1;
    transform: translate3d(4px, 0, 0);
}
.content .container a:hover span{
    opacity: 1;
    transform: translate3d(-4px, 0, 0);
}
.content .container a svg{
    opacity: 0;
    transition: opacity .4s,transform .4s;
    will-change: opacity;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
}
.fade-in{
    opacity: 1!important;
    transform: translateY(0px)!important;
}
.location{
    padding-top:0px;
    transition: all .5s ease-out;
}
.location>a{
    color: #fff;
    font-weight: 600;
    letter-spacing: .16667em;
    transition: opacity 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5001;
    width: 97.78px;
    font-size: 12px;
}
.location>a:hover{
    opacity: 0.5;
}
.menuButton{
    display: flex;
    align-items: center;
    will-change: transform;
    position: relative;
    z-index: 5;
}
.menuWrapper{
    justify-content: center;
    align-items: center;
    display: flex;
    padding-top:0px;
    cursor: pointer;
    width: 80.19px;
    transition: opacity 1s ease-out;
    position: absolute;
}
.menuWrapper span {
    margin-left: 10px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .16667em;
    font-size: 12px;
}
.menuWrapper:hover {
    opacity: 0.5;
}
.perde{
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #151515;
    opacity: 0.3;
    cursor: pointer;
    display: none;
    z-index: 2;
}
.perde.acik{
    display: block!important;
}
.menu {
    height: 100vh;
    width: 42vw;
    position: fixed;
    top: 0;
    opacity: 1;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.15);
    display: flex;
    color: #fff;
    overflow: visible;
    transition: transform .3s ease-out;
    transform: translateX(-100%);
    position: absolute;
    z-index: 2;
}
.menu.active {
    transform: translateX(0);
  }
.menuMain{
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
}
.menuItem{
    padding-right: calc(16px + 6.5vw);
    opacity: 1;
    width: 100%;
    display: block;
    text-align: right;
    will-change: opacity, transform;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    transform: translateX(-50%);
}
.menuItem.transformed {
    transform: translateX(50px);
  }
.menuItem a{
    text-decoration: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    box-sizing: border-box;
    letter-spacing: .15em;
    font-weight: 600;
    transition: opacity 1s ease-out;
    overflow: visible;
    margin: 0;
    padding: 0;
    width: auto;
    position: relative;
    color:#fff;
    opacity: 0.6;
}
.menuItem>a:hover{
    opacity: 1;
}

.footerContent{
    background: none!important;
    position: relative;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
    height: 788px;
}

.treeLink{
    background-color:#222;
    width: 100%;
    position: absolute;
    top: 0px;
    left:0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.textContent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 200;
    line-height: 2;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin: 60px 0px;
    color:#fff;
}
.textContent h3{
    letter-spacing: 0.2em;
    font-weight: 500;
    font-size: 20px;
}
.linkContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex:4;
    margin: 0 auto;
    overflow: hidden;
}
.linkMain{
    display: flex;
    height: 600px;
    width: 412px;
    flex-direction: column;
    color: #fff;
    margin-left: 20px;
}
.linkContent:first-child{
    margin-left: 0px;
}

.linkMain span{
    display: flex;
    flex-direction: column;
    height: 168px;
    border-left: solid 1px #ddd;
    padding: 0 20px;
}
.linkMain span h3{
    padding: 15px 0;
    font-weight: 500;
}
.linkMain span p{
    font-weight: 300;
    letter-spacing: .05714em;
    font-size: 14px;
    line-height: 1.57143;
}
.footerBosluk{
    display: flex;
    position: relative;
    height: 305px;
    width: 100%;
    z-index: -9999;
}
.relativeEt{
    position: relative!important;
}
.footer{
    position: fixed;
    width: calc(100vw - 17px);
    bottom: 0;
    height: 306px;
    background-color: #151515;
    color:#fff;
    z-index: -9999;
    display: flex;
    justify-content: center;
    align-items: start;
}
.footer .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
}
.footer .container>a{
    margin: 30px 0px;
    opacity: .8;
    transition: opacity 0.4s ease-in-out;
}
.footer .container a:hover{
    opacity: 1;
}
.footer .container a>img{
    height: 59px;
}
.footer .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .container .content{
    display: flex;
    justify-content: space-between;
    height: 140px;
}
.socialContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.socialContainer>a{
    color:white;
}
.social {
    display: flex;
    flex:1;
    justify-content: end;
    align-items: center;
}
.social a img{
    height: 18px!important;
    margin-left: 24px;
    display: inline-block;
}
.textBox{
    display: flex;
    justify-content: start;
    align-items: center;
    height: 140px;
    width: 100%;
    flex-wrap: wrap;
    flex:4
}
.textBox a{
    display: block;
    width: 164px;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.4s ease-in-out;
    padding-bottom: 16px;
    font-weight: 600;
    box-sizing: border-box;
}
.textBox a:hover{
    opacity: 1;
    color: #fff;
}
.cizgi{
    height: 1px;
    width: 100%;
    display: block;
    background-color: #3b3b3b;
}

.icerik{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 60px;
    background-image: url("../image/icBg.webp");
    background-color: #fff;
    background-size: fixed;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 960px;
}
.icerik  h2{
    display: block;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 400;
}

.youtube-container{
    width: 1200px!important;
    height: 675px!important;
    padding-bottom: 15px;
}

.parallax-item{
    margin: 0 auto;
    width: 1620px;
    height: 912px;
}
.parallax-container{
    width: 100%;
    height: 1080px!important;
}

.seperator{
    margin-bottom: 24px;
    line-height: 2px;
    font-size: 2px;
    box-sizing: border-box;
}
.seperator span{
    display: block;
    background-color: #151515;
    width: 50px;
    height: 2px;
    box-sizing: border-box;
}
#scrollButton {
    position: fixed;
    bottom: 20px;
    right: 40px;
    color: white;
    padding: 8.5px 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    background-color: #0000002b;
    border:solid 1px #ffffff5b;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal İçeriği */
.modal-content {
    display: block;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

/* Kapatma Butonu */
.close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

/* Resim */
.resim {
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}


#pinContainer {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
}
#slideContainer {
    width: 400%; /* to contain 4 panels, each with 100% of window width */
    height: 100vh;
}
.panel {
    height: 100vh;
    width: 25%; /* relative to parent -> 25% of 400% = 100% of window width */
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}
.blue{
    background-color: blue;
}
.green{
    background-color: green;
}
.turqoise{
    background-color: turquoise;
}
.bordeaux{
    background-color: yellow;
}
.kategori{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 0;
}
.urun{
    width: 390px;
    margin:0px 5px 20px 5px;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.urunResim {
    height: 390px;
    width: 390px;
    background-color: #ccc;
    background-size:  100% auto; /* Resim sınırları içinde kalacak şekilde ayarlandı */
    background-position: center;
    background-repeat: no-repeat; /* Resmin tekrar etmemesi sağlandı */
    transition: background-size .3s ease-in-out;
    overflow: hidden; /* Resmin sınırlarını aşmasını engellemek için overflow özelliği eklendi */
}
.urun:hover .urunResim{
    background-size: 110% auto;
}
.urunAciklama{
    border-left: 1px solid #ddd;
    padding-bottom: 50px;
}
.katLink{
    padding: 24px 24px 0 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.66667;
    color:#000;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.urunAciklama a h4{
    padding: 5px 24px 0 24px;
    font-weight: 400;
    letter-spacing: .1em;
    font-size: 1.5rem;
    line-height: 1.005;
    max-height: 53.22px;
}
.urunAciklama a p{
    display: inline-block;
    padding: 7px 24px 0 24px;
    color: dimgray;
    font-weight: 300;
    letter-spacing: .005em;
    font-size: 1rem;
    line-height: 1.4;
    max-height: 80px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resimler{
    display: flex;
    margin: 25px auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1300px){
    .treeLink{
        overflow: auto;
    }
    .parallax-item{
        width: 1300px!important;
        height: 732px!important;
    }
    
}
@media only screen and (max-width: 1200px){
    .aboutContent .container h1{
        font-size: 3rem;
    }
    .content .container h1{
        font-size: 3rem;
    }
    .footer .container .content{
        justify-content: space-around;
        
    }
    .parallax-item{
        width: 1200px!important;
        height: 676px!important;
    }
}

@media only screen and (max-width: 900px){
    .menu{
        width: 40%;
    }
    .linkContent{
        margin: 0px;
        flex-direction: column;
    }
    .footerContent{
        height: 1988px;
    }
    .footer{
        height: 406px;
    }
    .footerBosluk{
        height: 405px;
    }
    .footer .container .content{
        height: 256px;
    }
    #scrollButton {
    right: 60px;        
    }
    .social{
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .textBox{
        padding-left: 16px;
    }
    .youtube-container{
        width: 900px!important;
        height: 506px!important;
    }
    .parallax-item{
        width: 900px!important;
        height: 507px!important;
    }
    .parallax-container{
        height: 640px!important;
    }
    
    
    .kategori{
        justify-content: center;
    }
}
@media only screen and (max-width: 768px){
    .footer{
        width: 100%;
    }
    .menu{
        width: 100%;
    }
    .menuItem{
        padding-right: 80px;
    }
    .youtube-container{
        width: 430px!important;
        height: 242px!important;
    }
    .parallax-item{
        width: 400px!important;
        height: 242px!important;
    }
    .parallax-container{
        height: 330px!important;
    }
    
    form {
        width: 300px;
        margin: 0 auto;
      }
      .hide{
        display: none!important;
    }
}

