:root{
    --pvc: url(https://private.sensible.works/fettahoglu/img/pvc.png);
    --shutter: url(https://private.sensible.works/fettahoglu/img/shutter.png);
    --glass: url(https://private.sensible.works/fettahoglu/img/glass.png);
    --aluminium: url(https://private.sensible.works/fettahoglu/img/aluminium.png);
}
body {
    background-color: #FAFAFC;
    width: 100%;
}
.lang{
    font-family: 'Open Sauce Two';
    font-weight: 600;
    font-style: normal;
    color: rgba(166, 169, 183, 1);
    cursor: pointer;
}
.lang-selector{
    width: 0%;
    height: 0vh;
    background-color: #FAFAFC;
    position: fixed;
    z-index: 1000000000;
    top: 0;
    right: 0;
    font-family: 'Open Sauce Two';
    font-weight: 600;
    font-style: normal;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
ul a{
    text-decoration: none;
}
.lang-selector.active{
    width: 100%;
    height: 100vh;
    display: flex;
}
.lang-selector ul span{
    color: rgba(27, 26, 90, 1);
    font-size: 35px;
    position: relative;
    top: -20px;
}
.lang-selector ul a{
    position: relative;
    left:23px;
    list-style: circle;
    text-decoration: none;
    color: rgba(27, 26, 90, 1);
    font-size: 20px;
    line-height: 30px;
}
.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    margin-top: 30px;
}
.gallery img{
    width: 300px;
    height: 300px; /* Tüm fotoğrafların aynı yükseklikte olmasını sağlar */
    object-fit: cover; /* Fotoğrafın taşan kısmını kırpar ve düzgün yerleştirir */
}
.imgprod{
    cursor: pointer;
}
.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 26, 90, 0.336);
    z-index: 9998;
  }
  
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
  }
  
  .lightbox-content {
    background-color: #FAFAFC;
    max-width: 50%;
  }
  .lightbox-content img {
    width: 100%;
    
  }
  .lightbox-close {
    position: absolute;
    top: 45px;
    right: 50px;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: white;
    border: none;
    cursor: pointer;
  }
  .color-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.color-charts img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}

@media screen and (max-width: 768px) {
    .color-charts {
        padding: 10px;
        gap: 10px;
    }
    
    .color-charts img {
        width: 85%;
        height: auto;
        aspect-ratio: 4/3;
    }
}

.color-charts img:hover {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.video-container {
    position: relative;
    display: inline-block;
    width: 300px;
    max-width: 300px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-icon:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    padding: 20px;
    box-sizing: border-box;
}

.video-modal-content {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 80vh;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-modal {
        padding: 10px;
    }

    .video-modal-content {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 1140px){
    header{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    #logo{
        width: 140px;
    }
    .header-right{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    #orangeButton{
        color: #E95E2A;
        border: 0px;
        padding: 14px 25px;
        background-color: rgba(233, 94, 42, 0.2);
        border-radius: 27.5px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 14px;
    }
    .beOur{
        position: relative;
        right: 100px;
    }
    .menu-icon {
        position: fixed;
        right: 50px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 999;
    }
    .menu-icon .menu-icon__cheeckbox {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
        z-index: 2;
        -webkit-touch-callout: none;
        position: absolute;
        opacity: 0;
    }
    .menu-icon div {
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 22px;
        height: 12px;
    }
    .menu-icon span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--bar-bg, #000);
        border-radius: 1px;
        transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
    }
    .menu-icon span:first-of-type {
        top: 0;
    }
    .menu-icon span:last-of-type {
        bottom: 0;
    }
    .menu-icon.active span:first-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
        transform: rotate(45deg);
        top: 5px;
    }
    .menu-icon.active span:last-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
        transform: rotate(-45deg);
        bottom: 5px;
    }
    .menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
        width: 22px;
    }
    @media (min-width: 1024px) {
        .menu-icon:hover span:first-of-type {
            width: 26px;
       }
        .menu-icon:hover span:last-of-type {
            width: 12px;
       }
    }
    .menuShadow{
        width: 100%;
        height: 100vh;
        background-color: rgba(27, 26, 90, 0.12);
        position: absolute;
        right: 0px;
        top: 0px;
        transition: 0.5s;
        opacity: 0%;
        display: none;
        position: fixed;
        z-index: 997;
    }
    .menuShadow.active{
        opacity: 100%;
        display: block;
    }
    .menu{
        width: 700px;
        height: 100vh;
        background-color: #FAFAFC;
        position: fixed;
        right: -700px;
        top: 0px;
        transition: 0.5s;
        z-index: 998;
    }
    .menu.active{
        right: 0px;
    }
    nav{
        width: 300px;
        margin-top: 200px;
        margin-left: 200px;
    }
    nav ul{
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    nav ul li{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        letter-spacing: -0.5px;
        font-size: 45px;
    }
    nav ul li a{
        text-decoration: none;
        color: rgba(27, 26, 90, 1);
    }
    .conInfo{
        display: flex;
        flex-direction: column;
        height: 45px;
        justify-content: space-between;
        margin-left: 200px;
        margin-top: 50px;
    }
    .conInfo a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        text-decoration: underline;
        color: rgba(233, 94, 42, 1);
        font-size: 17px;
    }
    .conInfo a:nth-child(2){
        color: rgba(27, 26, 90, 1);
    }
    #slog{
        display: table;
        margin: 0 auto;
        width: 60%;
        letter-spacing: -1px;
        font-family: 'Open Sauce Two';
        font-weight: bold;
        font-style: normal;
        font-size: 60px;
        text-align: center;
        color: rgba(27, 26, 90, 1);
        margin-top: 190px;
        max-width: 1140px;
        min-width: 640px;
    }
    .prodTop{
        width: 70%;
        min-width: 990px;
        display: flex;
        margin: 0 auto;
        margin-top: 50px;
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodInfo{
        display: flex;
        flex-direction: column;
    }
    .prodInfo span:nth-child(1){
        color: rgba(27, 26, 90, 1);
        font-size: 30px;
    }
    .prodInfo span:nth-child(2){
        color: rgba(166, 169, 183, 1);
        font-size: 18px;
        line-height: 21px;
        margin-top: 10px
    }
    .prodInfo span b{
        color: rgba(27, 26, 90, 1);
    }
    .prodImage{
        flex-grow: 1;
    }
    .prodImage img{
        min-height: 290px;
        height: 20vw;
        max-height: 350px;
        border-radius: 20px;
    }
    #tech{
        color: rgba(27, 26, 90, 1);
        font-size: 30px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodTech{
        width: 70%;
        min-width: 990px;
        display: table;
        margin: 0 auto;
        margin-top: 70px;
    }
    .spec{
        display: flex;
        justify-content: space-between;
        height: 50px;
        font-size: 18px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        align-items: center;
        transition: 0.2s;
    }
    .prodTech .spec:nth-child(2){
        margin-top: 10px;
    }
    .spec span:nth-child(1){
        margin-left: 50px;
        color: rgba(166, 169, 183, 1);
    }
    .spec span:nth-child(2){
        width: 400px;
        color: rgba(27, 26, 90, 1);
    }
    .spec.black{
        background-color: rgba(231, 235, 246, 1);
    }
    .spec.white{
        background-color: rgba(250, 250, 252, 1);
    }
    .spec.black:hover{
        background-color: rgb(214, 218, 230);
    }
    .spec.white:hover{
        background-color: rgb(237, 237, 238);
        
    }
    .prodDoc{
        width: 70%;
        min-width: 990px;
        margin: 0 auto;
        display: table;
        margin-top: 70px;
    }
    #doc{
        color: rgba(27, 26, 90, 1);
        font-size: 30px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        margin-top: 80px;
    }
    .catalog{
        margin-top: 20px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .catalog:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 50px;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .catalog span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 18px;
        color: rgba(27, 26, 90, 1);
    }
    .catalog span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .catalog a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        color: rgba(233, 94, 42, 1);
        margin-top: 15px;
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .sens.catalog.active{
        height: auto;
    }
    
    .color{
        margin-top: 10px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .color:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 50px;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .color span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 18px;
        color: rgba(27, 26, 90, 1);
    }
    .color span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .sens.color.active{
        height: auto;
    }
    .docBott{
        margin-left: 50px;
        margin-top: 15px;
        display: flex;
        gap: 10px;
        width: 90%;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .docBott img{
        width: 300px;
    }
    footer{
        background-color: rgba(166, 169, 183, 0.19);
        height: 740px;
        margin-top: 160px;
        display: flex;
        flex-direction: column;
    }
    .footer-main{
        display: flex;
        height: 350px;
        margin: 0 auto;
        margin-top: 200px;
        width: 90%;
        min-width: 860px;
    }
    .f-left{
        display: flex;
        flex-direction: column;
        gap: 160px;
    }
    .top-top a #logo{
        width: 170px;
    }
    .top-bottom{
        width: 50%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        margin-left: 5px;
        margin-top: 10px;
        min-width: 275px;
    }
    .top-bottom span{
        color: rgba(27, 26, 90, 1);
        font-size: 20px;
    }
    .top-bottom span b a{
        color: #E95E2A;
        text-decoration: underline;
    }
    .f-right{
        display: flex;
        flex-direction: row;
        gap: 160px;
    }
    .right-left{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
    }
    .rl-top{
        color: rgba(27, 26, 90, 1);
    }
    .rl-bottom ul a{
        color: #E95E2A;
        line-height: 40px;
        text-decoration: none;
    }
    .right-right{
        font-family: 'Open Sauce Two';
        font-weight: 400;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
        width: 40%;
    }
    .rr-top{
        color: rgba(27, 26, 90, 1);
        font-weight: 600;
    }
    .rr-bottom ul li{
        color: #E95E2A;
        line-height: 50px;
        text-decoration: underline;
    }
    .rr-bottom ul li:nth-child(1){
        text-decoration: none;
        font-weight: 600;
    }
    .rr-bottom ul li:nth-child(2){
        line-height: 24px;
    }
    .footer-bottom{
        display: flex;
        justify-content: space-between;
        width: 90%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        color: rgba(166, 169, 183, 1);
        align-items: center;
        margin: 0 auto;
        margin-top: 100px;
        min-width: 860px;
    }
    .footer-bottom span img{
        width: 90px;
        margin-top: -10px;
        margin-left: 5px;
    }
}
@media screen and (min-width: 840px) and (max-width: 1140px){
    header{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    #logo{
        width: 140px;
    }
    .header-right{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    #orangeButton{
        color: #E95E2A;
        border: 0px;
        padding: 14px 25px;
        background-color: rgba(233, 94, 42, 0.2);
        border-radius: 27.5px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 14px;
    }
    .beOur{
        position: relative;
        right: 100px;
    }
    .menu-icon {
        position: fixed;
        right: 50px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 999;
    }
    .menu-icon .menu-icon__cheeckbox {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
        z-index: 2;
        -webkit-touch-callout: none;
        position: absolute;
        opacity: 0;
    }
    .menu-icon div {
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 22px;
        height: 12px;
    }
    .menu-icon span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--bar-bg, #000);
        border-radius: 1px;
        transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
    }
    .menu-icon span:first-of-type {
        top: 0;
    }
    .menu-icon span:last-of-type {
        bottom: 0;
    }
    .menu-icon.active span:first-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
        transform: rotate(45deg);
        top: 5px;
    }
    .menu-icon.active span:last-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
        transform: rotate(-45deg);
        bottom: 5px;
    }
    .menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
        width: 22px;
    }
    @media (min-width: 1024px) {
        .menu-icon:hover span:first-of-type {
            width: 26px;
       }
        .menu-icon:hover span:last-of-type {
            width: 12px;
       }
    }
    .menuShadow{
        width: 100%;
        height: 100vh;
        background-color: rgba(27, 26, 90, 0.12);
        position: absolute;
        right: 0px;
        top: 0px;
        transition: 0.5s;
        opacity: 0%;
        display: none;
        position: fixed;
        z-index: 997;
    }
    .menuShadow.active{
        opacity: 100%;
        display: block;
    }
    .menu{
        width: 700px;
        height: 100vh;
        background-color: #FAFAFC;
        position: fixed;
        right: -700px;
        top: 0px;
        transition: 0.5s;
        z-index: 998;
    }
    .menu.active{
        right: 0px;
    }
    nav{
        width: 300px;
        margin-top: 180px;
        margin-left: 200px;
    }
    nav ul{
        height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    nav ul li{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        letter-spacing: -0.5px;
        font-size: 45px;
    }
    nav ul li a{
        text-decoration: none;
        color: rgba(27, 26, 90, 1);
    }
    .conInfo{
        display: flex;
        flex-direction: column;
        height: 45px;
        justify-content: space-between;
        margin-left: 200px;
        margin-top: 50px;
    }
    .conInfo a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        text-decoration: underline;
        color: rgba(233, 94, 42, 1);
        font-size: 17px;
    }
    .conInfo a:nth-child(2){
        color: rgba(27, 26, 90, 1);
    }
    #slog{
        display: table;
        margin: 0 auto;
        width: 60%;
        letter-spacing: -1px;
        font-family: 'Open Sauce Two';
        font-weight: bold;
        font-style: normal;
        font-size: 50px;
        text-align: center;
        color: rgba(27, 26, 90, 1);
        margin-top: 190px;
        max-width: 1140px;
        min-width: 540px;
    }
    .prodTop{
        width: 90%;
        min-width: 800px;
        display: flex;
        margin: 0 auto;
        margin-top: 50px;
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodInfo{
        display: flex;
        flex-direction: column;
    }
    .prodInfo span:nth-child(1){
        color: rgba(27, 26, 90, 1);
        font-size: 26px;
    }
    .prodInfo span:nth-child(2){
        color: rgba(166, 169, 183, 1);
        font-size: 16px;
        line-height: 21px;
        margin-top: 10px
    }
    .prodInfo span b{
        color: rgba(27, 26, 90, 1);
    }
    .prodImage{
        flex-grow: 1;
    }
    .prodImage img{
        min-height: 230px;
        height: 20vw;
        max-height: 350px;
        border-radius: 20px;
    }
    #tech{
        color: rgba(27, 26, 90, 1);
        font-size: 26px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodTech{
        width: 90%;
        min-width: 800px;
        display: table;
        margin: 0 auto;
        margin-top: 70px;
    }
    .spec{
        display: flex;
        justify-content: space-between;
        height: 50px;
        font-size: 16px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        align-items: center;
        transition: 0.2s;
    }
    .prodTech .spec:nth-child(2){
        margin-top: 10px;
    }
    .spec span:nth-child(1){
        margin-left: 50px;
        color: rgba(166, 169, 183, 1);
    }
    .spec span:nth-child(2){
        width: 400px;
        color: rgba(27, 26, 90, 1);
    }
    .spec.black{
        background-color: rgba(231, 235, 246, 1);
    }
    .spec.white{
        background-color: rgba(250, 250, 252, 1);
    }
    .spec.black:hover{
        background-color: rgb(214, 218, 230);
    }
    .spec.white:hover{
        background-color: rgb(237, 237, 238);
        
    }
    .prodDoc{
        width: 90%;
        min-width: 800px;
        margin: 0 auto;
        display: table;
        margin-top: 70px;
    }
    #doc{
        color: rgba(27, 26, 90, 1);
        font-size: 26px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        margin-top: 80px;
    }
    .catalog{
        margin-top: 20px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .catalog:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 50px;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .catalog span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 16px;
        color: rgba(27, 26, 90, 1);
    }
    .catalog span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .catalog a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        color: rgba(233, 94, 42, 1);
        margin-top: 15px;
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .sens.catalog.active{
        height: auto;
    }
    
    .color{
        margin-top: 10px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .color:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 50px;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .color span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 16px;
        color: rgba(27, 26, 90, 1);
    }
    .color span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .sens.color.active{
        height: auto;
    }
    .docBott{
        margin-left: 50px;
        margin-top: 15px;
        display: flex;
        gap: 10px;
        width: 90%;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .docBott img{
        width: 300px;
    }
    footer{
        background-color: rgba(166, 169, 183, 0.19);
        height: 740px;
        margin-top: 160px;
        display: flex;
        flex-direction: column;
    }
    .footer-main{
        display: flex;
        height: 350px;
        margin: 0 auto;
        margin-top: 200px;
        width: 90%;
        min-width: 660px;
    }
    .f-left{
        display: flex;
        flex-direction: column;
        gap: 160px;
    }
    .top-top a #logo{
        width: 170px;
    }
    .top-bottom{
        width: 50%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        margin-left: 5px;
        margin-top: 10px;
        min-width: 275px;
    }
    .top-bottom span{
        color: rgba(27, 26, 90, 1);
        font-size: 20px;
    }
    .top-bottom span b a{
        color: #E95E2A;
        text-decoration: underline;
    }
    .f-right{
        display: flex;
        flex-direction: row;
        gap: 60px;
    }
    .right-left{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
    }
    .rl-top{
        color: rgba(27, 26, 90, 1);
    }
    .rl-bottom ul a{
        color: #E95E2A;
        line-height: 40px;
        text-decoration: none;
    }
    .right-right{
        font-family: 'Open Sauce Two';
        font-weight: 400;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
        width: 70%;
    }
    .rr-top{
        color: rgba(27, 26, 90, 1);
        font-weight: 600;
    }
    .rr-bottom ul li{
        color: #E95E2A;
        line-height: 50px;
        text-decoration: underline;
    }
    .rr-bottom ul li:nth-child(1){
        text-decoration: none;
        font-weight: 600;
    }
    .rr-bottom ul li:nth-child(2){
        line-height: 24px;
    }
    .footer-bottom{
        display: flex;
        justify-content: space-between;
        width: 90%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        color: rgba(166, 169, 183, 1);
        align-items: center;
        margin: 0 auto;
        margin-top: 100px;
        min-width: 660px;
    }
    .footer-bottom span img{
        width: 90px;
        margin-top: -10px;
        margin-left: 5px;
    }
}
@media screen and (max-width: 840px){
    header{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .lightbox-close {
        position: absolute;
        top: 45px;
        right: 10px;
        font-size: 24px;
        padding: 10px 15px;
        border-radius: 50px;
        background-color: white;
        border: none;
        cursor: pointer;
      }
      .lightbox-content {
        background-color: #FAFAFC;
        max-width: 100%;
      }
    #logo{
        width: 140px;
    }
    .header-right{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    #orangeButton{
        color: #E95E2A;
        border: 0px;
        padding: 14px 25px;
        background-color: rgba(233, 94, 42, 0.2);
        border-radius: 27.5px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 12px;
    }
    .beOur{
        position: relative;
        right: 100px;
        display: none;
    }
    .menu-icon {
        position: fixed;
        right: 10px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 999;
    }
    .menu-icon .menu-icon__cheeckbox {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
        z-index: 2;
        -webkit-touch-callout: none;
        position: absolute;
        opacity: 0;
    }
    .menu-icon div {
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 22px;
        height: 12px;
    }
    .menu-icon span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--bar-bg, #000);
        border-radius: 1px;
        transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
    }
    .menu-icon span:first-of-type {
        top: 0;
    }
    .menu-icon span:last-of-type {
        bottom: 0;
    }
    .menu-icon.active span:first-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
        transform: rotate(45deg);
        top: 5px;
    }
    .menu-icon.active span:last-of-type, .menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
        transform: rotate(-45deg);
        bottom: 5px;
    }
    .menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
        width: 22px;
    }
    @media (min-width: 1024px) {
        .menu-icon:hover span:first-of-type {
            width: 26px;
       }
        .menu-icon:hover span:last-of-type {
            width: 12px;
       }
    }
    .menuShadow{
        width: 100%;
        height: 100vh;
        background-color: rgba(27, 26, 90, 0.12);
        position: absolute;
        right: 0px;
        top: 0px;
        transition: 0.5s;
        opacity: 0%;
        display: none;
        position: fixed;
        z-index: 997;
    }
    .menuShadow.active{
        opacity: 100%;
        display: block;
    }
    .menu{
        width: 100%;
        height: 100vh;
        background-color: #FAFAFC;
        position: fixed;
        right: -830px;
        top: 0px;
        transition: 0.5s;
        z-index: 998;
    }
    .menu.active{
        right: 0px;
    }
    nav{
        width: 300px;
        margin-top: 150px;
        margin-left: 80px;
    }
    nav ul{
        height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    nav ul li{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        letter-spacing: -0.5px;
        font-size: 45px;
    }
    nav ul li a{
        text-decoration: none;
        color: rgba(27, 26, 90, 1);
    }
    .conInfo{
        display: flex;
        flex-direction: column;
        height: 45px;
        justify-content: space-between;
        margin-left: 80px;
        margin-top: 50px;
    }
    .conInfo a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        text-decoration: underline;
        color: rgba(233, 94, 42, 1);
        font-size: 17px;
    }
    .conInfo a:nth-child(2){
        color: rgba(27, 26, 90, 1);
    }
    #slog{
        display: table;
        margin: 0 auto;
        width: 90%;
        letter-spacing: -1px;
        font-family: 'Open Sauce Two';
        font-weight: bold;
        font-style: normal;
        font-size: 40px;
        text-align: center;
        color: rgba(27, 26, 90, 1);
        margin-top: 190px;
        max-width: 1140px;
        min-width: 140px;
    }
    .prodTop{
        width: 95%;
        display: flex;
        margin: 0 auto;
        margin-top: 50px;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodInfo{
        display: flex;
        flex-direction: column;
    }
    .prodInfo span:nth-child(1){
        color: rgba(27, 26, 90, 1);
        font-size: 22px;
    }
    .prodInfo span:nth-child(2){
        color: rgba(166, 169, 183, 1);
        font-size: 15px;
        line-height: 21px;
        margin-top: 10px
    }
    .prodInfo span b{
        color: rgba(27, 26, 90, 1);
    }
    .prodImage{
        flex-grow: 1;
    }
    .prodImage img{
        width: 100%;
        max-height: 350px;
    }
    #tech{
        color: rgba(27, 26, 90, 1);
        font-size: 22px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
    }
    .prodTech{
        width: 95%;
        display: table;
        margin: 0 auto;
        margin-top: 70px;
    }
    .spec{
        display: flex;
        justify-content: space-between;
        height: 50px;
        font-size: 16px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        align-items: center;
        transition: 0.2s;
    }
    .prodTech .spec:nth-child(2){
        margin-top: 10px;
    }
    .spec span:nth-child(1){
        margin-left: 20px;
        color: rgba(166, 169, 183, 1);
        width: 50%;
    }
    .spec span:nth-child(2){
        width: 50%;
        color: rgba(27, 26, 90, 1);
    }
    .spec.black{
        background-color: rgba(231, 235, 246, 1);
    }
    .spec.white{
        background-color: rgba(250, 250, 252, 1);
    }
    .spec.black:hover{
        background-color: rgb(214, 218, 230);
    }
    .spec.white:hover{
        background-color: rgb(237, 237, 238);
        
    }
    .prodDoc{
        width: 95%;
        margin: 0 auto;
        display: table;
        margin-top: 70px;
    }
    #doc{
        color: rgba(27, 26, 90, 1);
        font-size: 22px;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        margin-top: 80px;

    }
    .catalog{
        margin-top: 10px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .catalog:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 10px;
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .catalog span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 16px;
        color: rgba(27, 26, 90, 1);
    }
    .catalog span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .catalog a{
        font-family: 'Open Sauce Two';
        font-weight: normal;
        font-style: normal;
        color: rgba(233, 94, 42, 1);
        margin-top: 15px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .sens.catalog.active{
        height: auto;
    }
    
    .color{
        margin-top: 10px;
        background-color: rgba(231, 235, 246, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 50px;
        transition: 0.2s;
        cursor: pointer;
    }
    .color:hover{
        background-color: rgb(218, 225, 245);

    }
    .docTop{
        margin-top: 13px;
        margin-left: 10px;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .color span{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 16px;
        color: rgba(27, 26, 90, 1);
    }
    .color span:nth-child(2){
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
        color: rgba(166, 169, 183, 1);
    }
    .sens.color.active{
        height: auto;
    }
    .docBott{
        margin-left: 10px;
        margin-top: 15px;
        display: flex;
        gap: 10px;
        width: 90%;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .docBott img{
        width: 300px;
    }
    footer{
        background-color: rgba(166, 169, 183, 0.19);
        height: 500px;
        margin-top: 160px;
        display: flex;
        flex-direction: column;
    }
    .footer-main{
        display: flex;
        height: 250px;
        margin: 0 auto;
        margin-top: 50px;
        width: 95%;
        gap: 50px;
        flex-direction: column;
    }
    .f-left{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .top-top{
        display: none;
    }
    .top-top a #logo{
        width: 170px;
    }
    .top-bottom{
        width: 80%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        margin-left: 5px;
        margin-top: 10px;
        min-width: 275px;
    }
    .top-bottom span{
        color: rgba(27, 26, 90, 1);
        font-size: 20px;
    }
    .top-bottom span b a{
        color: #E95E2A;
        text-decoration: underline;
    }
    .f-right{
        display: flex;
        flex-direction: row;
        gap: 60px;
        display: none;
    }
    .right-left{
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
        display: none;
    }
    .rl-top{
        color: rgba(27, 26, 90, 1);
    }
    .rl-bottom ul a{
        color: #E95E2A;
        line-height: 40px;
        text-decoration: none;
    }
    .right-right{
        font-family: 'Open Sauce Two';
        font-weight: 400;
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-size: 20px;
        width: 70%;
    }
    .rr-top{
        color: rgba(27, 26, 90, 1);
        font-weight: 600;
    }
    .rr-bottom ul li{
        color: #E95E2A;
        line-height: 50px;
        text-decoration: underline;
    }
    .rr-bottom ul li:nth-child(1){
        text-decoration: none;
        font-weight: 600;
    }
    .rr-bottom ul li:nth-child(2){
        line-height: 24px;
    }
    .footer-bottom{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 95%;
        font-family: 'Open Sauce Two';
        font-weight: 600;
        font-style: normal;
        color: rgba(166, 169, 183, 1);
        margin: 0 auto;
        gap: 15px;
        margin-top: 100px;
        font-size: 15px;
    }
    .footer-bottom span img{
        width: 80px;
        margin-top: -5px;
        margin-left: 5px;
    }
}