/* --- Default Reset --- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* --- Global (assets/global.css) --- */
html{
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    &&::after, &&::before{
        pointer-events: none;
        user-select: none;
    }
}

body{
    max-width: 100%;
    overflow-x: hidden;
}

.logo{
    width: 70px;
    height: 70px;
    background-color: var(--bg);
}

img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            justify-self: center;
            align-self: center;
        }

/* --- Palette (VolcanicBlue.css) --- */
:root{
    /*BG*/
            --bg: #001825;
            --innerBg: #0f1846;
            --innerBlackBg: #111630;
            --innerBlackLighterBg: #033049;

            /*ACCENT*/
            --accent: #8c06e6;
            --altAccent: #9900ff5e;
            --accentHover: #fa1aa4;

            /*TEXT*/
            --textMain: #c7faf6;
            --textP: #c7faf6;
            --textPLighter: #c7faf6;
}

/* --- Style (OSWALD.css) --- */
:root{
    --brad: 32px;
    --sectionPadding: 3rem;
    --transitionMain: all .4s cubic-bezier(.075, .82, .165, 1);
}

html{
    font-size: 18px;
}

body{
    font-family: 'Oswald', sans-serif;
    color: var(--textMain)
}

h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

h2{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.2;
    initial-letter: var(--accentHover);
}

h3{
    font-size: 28px;
}

span, b{
    font-size: 24px;
}

a, p{
    font-size: 18px;
}

p{
    margin-bottom: 2.5rem;
}

body{
    background: var(--bg);
    line-height: 150%;
}

.wrapper, section:not(.noWrap){
    width: 100%;
    max-width: 1600px;
    margin: auto;
    margin-right: auto;
    margin-bottom: 75px;
    box-sizing: border-box;
}

.mainBtn{
    align-self: center;
    justify-self: center;
    margin: 1rem 0;
    padding: 1.4rem 1.5rem;
    background: var(--accent);
    border-radius: var(--brad);
    transition: var(--transitionMain);
}

.mainBtn:hover{
    scale: 1.04;
    cursor: pointer;
    box-shadow: 0px 0px 12px 5px var(--accentHover);
}

a{
    color: unset;
    text-decoration: none;
}

@media(max-width: 768px){
    .wrapper, section:not(.noWrap){
        max-width: 95%;
    }

    h2{
        margin-bottom: 1.2rem;
    }

    .mainBtn{
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px){

:root{
    --sectionPadding: 1.5rem;
}

h1{
    font-size: 40px;
    font-weight: 700;
}

h2{
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

h3{
    font-size: 26px;
    text-align: center;
}

span, b{
    font-size: 22px;
}

p{
    font-size: 18px;
    text-align: center;
}
}

.logo{
    transition: all;
    transition: all .4s cubic-bezier(.075, .82, .165, 1);
}
.logo:hover{
    scale: 1.04;
}


/* --- header.css --- */
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 0!important;
}

/*test*/
header>nav>a {
    display: none!important
}

header>nav>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 39px
}

.header__nav{
    margin-left: auto;
}

header>nav>ul a {
    width: max-content;
    transition: var(--transitionMain)
}

header>nav>ul a::after {
    content: none
}

header>nav>ul a:hover {
    color: var(--accent)!important
}

header>a {
    max-width: 186px;
    z-index: 80
}

header img, footer img{
    border-radius: 0;
}

@media (max-width: 1024px) {
    header {
        padding:16px 0
    }

    header>a:last-child {
        display: none
    }

    header>nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(21,21,22,.9);
        backdrop-filter: blur(8px);
        z-index: 50;
        transform: translateX(-120%) translateY(0);
        transition: var(--transitionMain);
        display: flex;
        flex-direction: column
    }

    header>nav>ul {
        margin-top: 124px;
        margin-left: 24px;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        height: 80vh;
        overflow-y: auto;
        overflow-x: hidden
    }

    header>nav>ul a {
        color: var(--textMain)!important;
        /* font-size: 16px!important */
    }

    header>nav>a {
        display: inline-block!important;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
        z-index: 90;
        max-width: 90%;
        color: var(--textBtn)!important
    }

    .navOpen {
        transform: translateX(0%) translateY(0)
    }
}

.mobile__menu {
    display: none;
    z-index: 61
}

.burger {
    width: 60px;
    height: 60px;
    transition-duration: .5s;
    position: relative;
    scale: 0.4
}

.open>.icon-left {
    background: 0 0
}

.open>.icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(4px,4px)
}

.open>.icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px,-4px)
}

.open>.icon-right {
    background: 0 0
}

.open>.icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px,4px)
}

.open>.icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px,-4px)
}

.icon-left {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff
}

.icon-left::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-left::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

.icon-left:hover {
    cursor: pointer
}

.icon-right {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff;
    left: 30px
}

.icon-right::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-right::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

@media (max-width: 1024px) {
    .mobile__menu {
        display:block;
        justify-self: flex-end;
        margin-left: auto;
    }

    header .mainBtn{
        display: none;
    }
}

.fadeInDown,header {
    animation-delay: .5s!important
}

/* --- hero.css --- */
.heroGrid {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    padding: 5% 0;
    && .heroInfo{
        position: relative;
        display: grid;
        grid-template-rows: 1fr 1fr auto;
        gap: 16px;
        grid-row: 2/5;
        && span{
            color: var(--accent);
        }
        && p {
            max-height: fit-content;
            margin-bottom: 0;
            max-width: 70%;
        }
        && .mainBtn{
            min-width: 50%;
            text-align: center;
            margin: 0;
            margin-right: auto;
        }
        && h1{
            margin-top: auto;
        }
        && span{
            font-size: inherit;
        }
        && .heroGradient {
            position: absolute;
            background-color: var(--bg);
            left: -25%;
            top: -10%;
            height: 120%;
            width: 140%;
            z-index: -1;
            filter: blur(20px);
        }
    }
    && .heroSwiper{
        width: 100%;
        grid-column: 1;
        grid-row: 1/6;
        border-radius: var(--brad);
        padding: 1.5rem;
        position: relative;
        max-width: 40vw;
        && .swiper-slide{
            border-radius: var(--brad);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            && img{
                aspect-ratio: 1/1;
                object-position: 100% 20%;  
            }
        }
    }

    && .heroarrow{
        position: absolute;
        height: 64px;
        width: 64px;
        background-color: var(--bg);
        top: calc(50% - 32px);
        left: 8px;
        z-index: 2;
        transition: var(--transitionMain);
        border-radius: 50%;
        &&.right{
            right: 8px;
            left: unset;
        }
        &&.left img{
            transform: scaleX(-1);
        }
        &&:hover{
            scale: 1.04;
            cursor: pointer;
            box-shadow: 0px 0px 12px 5px var(--accentHover);
        }
        &&:active{
            scale: 0.96;
            box-shadow: 0px 0px 12px 12px var(--accentHover);
        }
    }
}

@media (max-width: 768px) {
    .heroGrid{
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr;
        && .heroarrow{
            height: 48px;
            width: 48px;
            top: calc(50% - 24px);
        }
        && p {
            max-width: unset!important;
        }
        && .heroInfo{
            grid-row: 2;
            grid-column: 1;
            justify-content: center;
            grid-template-rows: auto;
            && h1{
                margin: 0 auto;
                max-width: fit-content;
                text-align: center;
            }
        && .mainBtn{
            margin: 0 auto;
        }
        } 
        && .heroSwiper{
            grid-row: 1;
            grid-column: 1;
            max-width: unset;
        } 
        
    }
}

.hero{
    position: relative;
    left: 0;
    top: 0;
    /* box-shadow: 0px 0px 28px 27px var(--bg) inset; */
    && .heroBg{
    position: absolute;
    z-index: -1;
    max-height: 100%;
    width: 100%;
    opacity: 0.3;
}
}

/* --- toc.css --- */
.toc{
    background-color: var(--bg);
    border-radius: var(--brad);
    margin-top: 75px!important;
}

.toc a{
    transition: var(--transitionMain);
    &&:hover{
        color: var(--accent);
        cursor: pointer;
    }
}

.toc__container>ul li {
    min-width: max-content;
    max-width: max-content
}

.toc__container>ul a {
    padding-left: 24px;
    padding-right: 24px;
}

/* Custom scrollbar for TOC container */
.toc__container {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.toc__container::-webkit-scrollbar {
    height: 8px;
}

.toc__container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

/* Swiper scrollbar styles */
.toc__container .swiper-scrollbar,
.toc .toc__container .swiper-scrollbar,
section.toc .toc__container .swiper-scrollbar {
    position: relative !important;
    background: transparent !important;
    border-radius: 6px !important;
    height: 6px !important;
    margin-top: 10px !important;
    min-width: 100% !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
    left: 0;
    right: 0;
}

.toc__container .swiper-scrollbar-drag {
    background-color: var(--accent);
    border-radius: 6px;
    height: 100%;
    position: relative;
    cursor: default;
}

/* Hide scrollbar after first interaction */
.toc__container.swiper-scrollbar-hidden .swiper-scrollbar {
    opacity: 0;
}

/* Show scrollbar on hover */
.toc__container:hover .swiper-scrollbar {
    opacity: 1;
}

/* --- afterheader.css --- */
.cous {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: stretch;
    justify-content: space-between;
    border-radius: var(--brad);
    gap: 48px;
    padding: var(--sectionPadding);
    background: var(--innerBg);
    min-height: 400px;
    && .cousInfo{
        height: fit-content;
        align-self: center;
        && p{
            margin-bottom: 0;
            text-align: center;
        }
        && h2{
            text-align: center;
        }
    }
}

.cous > div {
    flex: 1 1 50%;
}

.cous > img{
    border-radius: var(--brad);
}

.cous img{
    border-radius: var(--brad);
    overflow: hidden;
    aspect-ratio: 1/1;
    object-position: 0% 20%;
}

.cousRev {
    flex-direction: row-reverse;
}
.cousRev > div:first-child > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cous_swiper {
    border-radius: var(--brad);
    overflow: hidden;
    /* max-height: 640px; */
}
.cous_swiper .swiper-slide {
    display: flex;
    flex-direction: row;
    gap: 6px;
    max-width: 100%;
}

.cous_swiper .swiper-slide > * {
    flex: 1 1 50%;
}

@media (max-width: 1100px) {
    .refferal_img {
        display: none;
    }

    .cous > div:last-child{
        aspect-ratio: unset;
    }
}

@media (max-width: 768px) {
    .cous {
        grid-template-columns: 1fr;
        flex-direction: column;
        flex-wrap: wrap;
        padding: var(--sectionPadding);
        gap: 0;
        max-width: 76%;
        min-height: unset;
        
    }

    

    .cous p{
        margin-bottom: 0;
    }

    .cous > div {
        width: 100%;
        flex: 1 1 100% !important;
        padding: 0;
        max-width: fit-content;
    }
    .cous > div:first-child {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .cous > div:first-child > div {
        flex-direction: column;
    }
    .cous > div:first-child > a {
        max-width: 100%;
    }
    .cous div:last-child{
        display: none;
    }

    .cous div:first-child{
        max-height: 400px;
    }

}

/* --- features.css --- */
 /* Models Section */
.why {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index:1;
    &&::before{
        content: '';
        position: absolute;
        height: 76%;
        width: 70%;
        left: 0;
        top: 0;
        border: 10px rgba(189, 0, 206, 0.349) dotted;
        border-radius: 30%;
        transform: translateX(21%) translateY(14%);
        z-index: -2;
    };
    &&::after{
        content: '';
        position: absolute;
        height: 50%;
        width: 300%;
        left: -50%;
        top: 25%;
        background-color: var(--altAccent);
        filter: blur(50px);
        user-select: none;
        z-index: -1;
    };
}

.why div:not(:first-child) p{
    margin-top: 16px;
}

.why span{
    color: var(--textMain) !important;
    font-weight: 700 !important;
    font-size: 30px;
    margin-bottom: 16px;
}
.why > h2,
.why > p {
    text-align: center;
}

.why > div:nth-child(2){
    grid-column: 1;
    grid-row: 2;
    border-color: var(--accent);
}

.why > div:nth-child(3){
    grid-column: 2;
    grid-row: 3;
}

.why > div:nth-child(4){
    grid-column: 2;
    grid-row: 1;
}

.why > div:last-child{
    grid-row: 2;
    grid-column: 3;
    border-color: var(--accent);
}

.why > div{
    display: flex;
    flex-direction: column-reverse;
    border-radius: 50%;
    padding: 16px;
    height: fit-content;
    justify-self: center;
    align-self: center;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    border: 4px solid var(--altAccent);
    width: 300px;
    height: 300px;
    background-color: var(--bg);
}

.why > div img{
    width: 60px;
    justify-self: center;
    align-self: center;
    order: 1;
    object-fit: contain;
}

.why h2{
    margin: 0;
}

/* .why > div div:first-child{
    width: 350px;
} */

.why > div:first-child{
    position: relative;
    flex-direction: column;
    grid-column: 2/3;
    grid-row: 2/3;
    width: unset;
    height: unset;
    border-radius: var(--brad);
    border: 0px solid rgba(206, 0, 172, 0.705);
    background-color: none;
}

.why > div:last-child > div > div:first-child {
    height: 100%;
}

.why p{
        margin-bottom: 0;
        gap: 0px
    }

@media (max-width: 768px) {
    .why {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr repeat(4, 0.5fr);
        gap: 16px;
        &&::before{
            display: none;
        }
        &&::after{
        content: '';
        position: absolute;
        height: 70%;
        width: 10%;
        left: 45%;
        top: 25%;
        background-color: var(--altAccent);
        filter: blur(10px);
        user-select: none;
        z-index: -1;
    };

    
    }

    

    .why > div{
        grid-column: 1!important;
        grid-row: auto!important;
        width: 80%;
        aspect-ratio: 1/1;
        height: auto;
        padding: 0;
    }
    .why > div:last-child > div > div:last-child {
        max-width: 80px;
        min-width: 80px;
        max-height: 80px;
        min-height: 80px;
    }

    .why > div:first-child{
        padding: 0;
        text-align: left;
        width: 80%;
        aspect-ratio: unset;
    }

}


/* --- partner.css --- */
.partner:not(:first-child){
    margin-top: 1.5rem;
    background: var(--bg);
    
}

.partnersContainer{
    display: grid;
    grid-template-rows: auto auto;
    border-radius: var(--brad, 16px);
    max-width: 960px;
    justify-self: center;
}

.partnersContainer h3{
    max-height: min-content;
    align-self: center;
}

.partnersContainer .imgContainer{
    border-radius: var(--brad, 16px);
    /* padding: 1rem; */
    background: var(--accent);
}

.partnerHeading{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    vertical-align: middle;
    padding: 1% 2.5%;
    background: var(--accent, blue);
    border-radius: var(--brad, 16px) var(--brad, 16px) 0 0;
}

.mainInfo{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 32px;
}



.partnersContainer .partnerHeading{
    /* border-radius: var(--brad, 16px); */
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.partnerHeading a{
    max-width: 200px;
    align-self: center;
    /* max-height: fit-content; */
    padding: 0.5rem!important;
    background: var(--bg);
}

.partnersContainer .partner:first-child{
    background: var(--innerBlackBg, lightgrey);
    border-radius: var(--brad, 16px);
}

.partnerInfo{
    padding: 1.5rem;
    list-style: circle;
    background: var(--innerBg);
    border-radius: 0 0 var(--brad, 16px) var(--brad, 16px);
}

.partnerInfo b{
    font-family: inherit;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}
.partnerInfo ul{
    margin: 16px 0 32px;
}

.partnerInfo ul li{
    font-family: inherit;
    list-style: circle;
    margin-left: 1.1rem;
}

.partnerInfo ul li::marker{
    color: var(--accent, blue)
}

.paymentList{
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
}
.paymentList div{
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
}

.imgContainer{
    display: flex;
    align-items: space-between;
    justify-content: center;
}

.imgContainer div{
    display: flex;
    height: 50px;
    min-width: 50px;
    aspect-ratio: 1/1;
    justify-self: center;
    margin: auto;
    border-radius: var(--brad, 16px);
    background: var(--bg, white);
    justify-content: center;;
}

.imgContainer .counter{
    margin: 0;
    justify-self: center;
    align-self: center;
    text-align: center;
    vertical-align: middle;
}

.mainInfo{
    display: flex;
    gap: 50px;
}

.mainInfo p{
    margin-bottom: 0;
}

@media (max-width: 768px){
    .mainInfo{
        gap: 0;
        padding-bottom: 24px;
    }
    
    .imgContainer div{
        max-width: 50%;
    }

    .imgContainer .img{
        height: 80%;
    }

    .partnerHeading{
        padding: 0;
    }

    .partnerInfo{
        padding: 1rem;
    }

    .partnerInfo ul{
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .partnerHeading a{
        display: none;
    }

    .partnerInfo b{
    font-size: 20px;
    }
}

/* --- info.css --- */
/* --- style.css --- */
        .section-flex {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: start;
            gap: 24px;
            justify-content: space-between;
            flex-wrap: wrap;
            /* margin-bottom: 150px!important; */
        }


        .flexTextblock{
            z-index: 4;
            justify-self: center;
            align-self: center;
            margin: auto 0;
        }

        .big_bg{
            position: absolute;
            width: 100%;
            height: 101%;
            left: -10%;
            top: -0.5%;
            z-index: 1;
            && img{
                object-position: 0% 20%;
                transform: scaleX(-1);
            }
        }

        .section-flex::before {
            position: absolute;
            content: '';
            width: 180%;
            height: 101%;
            left: -40%;
            top: -0.5%;
            background: linear-gradient(90deg, var(--innerBg) 10%, var(--bg) 18% ,rgba(0, 0, 0, 0) 20%,rgba(0, 0, 0, 0) 40%,  var(--bg) 50%, var(--innerBg) 80%, var(--innerBg) 100%),
            linear-gradient(180deg,var(--bg) 0%, rgba(13, 11, 11, 0) 16%, rgba(13, 11, 11, 0) 50%, rgba(13, 11, 11, 0) 84%, var(--bg) 100%);
            z-index: 3;
            pointer-events: none; 
        }


        .section-flex.stretch {
            align-items: stretch
        }

        .section-flex>* {
            flex: 1 1 40%
        }

        .section-flex {
            gap: 70px
        }

        .section-flex div img {
            flex-grow: 1;
            display: block;
            border-radius: var(--brad);
        }

        .section-flex.row-reverse {
            flex-direction: row-reverse
        }

        .step {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 20px;
            gap: 24px
        }

        .step_flex {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .step-number {
            background: var(--accent);
            color: var(--textMain);
            min-width: 52px;
            min-height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            position: relative;
            && .buoy{
                position: absolute;
                height: 100%;
                width: 100%;
                aspect-ratio: 1/1;
            }
        }

        .how-repair-block .step-number {
            background: var(--acccent);
            color: var(--textMain) !important
        }

        .step-content h3 {
            margin-bottom: 12px !important;
            font-weight: 700;
        }

        .step-content p {
            margin: 0
        }

        .how-repair .section-flex {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
            justify-content: space-between;
            flex-wrap: wrap
        }

        .how-repair-block .section-flex.reverse {
            flex-direction: column-reverse
        }

        .how-repair__steps-container {
            display: flex;
            flex-direction: column
        }

        .how-repair__steps {
            display: flex;
            flex-wrap: wrap;
            column-gap: 24px
        }

        .how-repair__steps-container a {
            max-width: 240px
        }

        .how-repair-block h2+p {
            margin-bottom: 32px
        }

        .how-repair-block img {
            border-radius: var(--brad)
        }

        @media (min-width: 768px) {
            .how-repair__steps .step {
                flex: 1 1 40% !important
            }

            .how-repair-block .how-repair__steps-container {
                align-items: start
            }

            .how-repair__steps-container {
                align-items: center
            }


        }

        @media (max-width: 1200px) {
            .how-repair {
                padding: 60px 0
            }

            .step {
                flex-direction: column;
                align-items: start
            }

            .how-repair .section-flex {
                align-items: start
            }

            .how-repair .section-flex_second {
                flex-direction: column-reverse
            }

            .section-flex>* {
                flex: 0 1 100%
            }

            .how-repair .sectionImg .desktop {
                display: none
            }

            .how-repair .sectionImg .mobile {
                display: block
            }

            .how-repair__steps .step {
                flex: 1 1 100%
            }

            .how-repair-block .how-repair__steps .step {
                flex: 1 1 100% !important
            }
        }

        @media (min-width: 1200px) {
            .how-repair .sectionImg .desktop {
                display: block
            }

            .how-repair .sectionImg .mobile {
                display: none
            }

            .how-repair__steps .step {
                flex: 1 1 100% !important
            }

            .how-repair__steps-container {
                align-items: start
            }

            .section-flex .mainBtn {
                align-self: flex-start;
            }
        }

        @media (max-width: 700px) {
            .section-flex::before {
            position: absolute;
            content: '';
            top: -5%;
            height: 350px;
             background: none;
            z-index: 3;
            pointer-events: none; 
        }
            
            .section-flex div img {
                display: none;
            }

            .big_bg img{
                display: none;
            }

            .section-flex.column-reverse {
                flex-direction: column-reverse
            }

            .section-flex {
                gap: 35px;
                align-items: start
            }

            .step-number {
                align-self: center;
            }
        }

/* --- pricing_plans.css --- */
.pricing-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-rows: 0.2fr 0.2fr 1fr; */
    gap: 8px;
    border-radius: var(--brad);
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    && .pricing-card{
        grid-row: 1/4;
        display: flex;
        flex-direction: column;
        gap: 16px;
        background-color: var(--innerBlackBg);
        padding: 16px;
        border-radius: var(--brad);
        border: var(--accent) 4px solid;
        
    }
    && .pricing-card:last-child{
            grid-row: 3;
            border: var(--accent) 4px dotted;
        }
    && .pricing-card:nth-child(2){
            grid-row: 2/4;
            border: var(--accent) 4px dashed;
        }
    && .topcard{
        display: flex;
        flex-direction: column;
        gap: 8px;
        && .priceImg{
            max-width: 30%;
            margin: 0 auto;
            border-radius: 50%;
            background-color: var(--innerBg);
            padding: 8px;
        }
        && span{
            font-weight: 700;
        }
    }
    && .bottomcard{
        display: flex;
        justify-self: stretch;
        flex-grow: 1;
        flex-direction: column;
        gap: 16px;
    }

    && .mainBtn{
        width: 50%;
        margin: auto 0 0;
    }

    && ul{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px){
    .pricing-container{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-row: unset;
        && .pricing-card{
            grid-column: 1!important;
            grid-row: unset!important;
        }
        && .bottomcard{
            flex-grow: 1;
            justify-self: unset;
        }
    }
    
}

/* --- gallery.css --- */
#gallery .wrapper{
    margin-bottom: 0;
}

.gallery{
    cursor: grab;
    &&:active{
        cursor: grabbing;
    }
}

.galleryWrapper{
    background: var(--innerBg);
    padding: var(--sectionPadding);
    border-radius: var(--brad);
    position: relative;
    &&::after{
        content: '';
        height: 4px;
        width: 100%;
        background-color: var(--bg);
        top: 50%;
        left: 0;
        position: absolute;
    }
    && .gallery img{
        border-radius: var(--brad);
        border: 4px solid var(--bg)
    }
    && .galleryControls{
        position: absolute;
        top: calc(50% - 32px);
        left: -32px;
        height: 64px;
        width: calc(100% + 64px);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        && .arrow{
            height: 64px;
            width: 64px;
            background: var(--innerBg);
            border-radius: 50%;
            z-index: 2;
            transition: var(--transitionMain);
            && img{
                min-height: 100%;
                min-width: 100%;
            }
            &&:hover{
                scale: 1.04;
                cursor: pointer;
                box-shadow: 0px 0px 12px 5px var(--accentHover);
            }
            &&:active{
                scale: 0.96;
                box-shadow: 0px 0px 12px 12px var(--accentHover);
            }
        }
    }
}

@media (max-width: 768px) {
    .galleryControls{
        width: 100%!important;
        left: 0!important;
        && .arrow{
            &&:hover{
                scale: none !important;
                box-shadow: 0px 0px 0px 0px var(--accentHover)!important;
            }
            &&:active{
                scale: none !important;
                box-shadow: 0px 0px 12px 12px var(--accentHover)!important;
            }
    }
}
    
}
.gallery {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    max-width: 98%;
    overflow: hidden;
    position: relative;
    border-radius: var(--brad);
    background-color: var(--bg);
    padding: 16px;
    &&::after{
        content: '';
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        border-radius: var(--brad);
        left: 0;
        top: 0;
        position: absolute;
        z-index: 2;
        border: var(--bg) 4px solid;
        ;
        background: linear-gradient(90deg,var(--bg), rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 95%, var(--bg) 100%);
    }
}

.gallery > .swiper-wrapper {
    max-height: unset !important;
    align-items: stretch !important;
}

.gallery .swiper-slide {
    height: unset !important;
    border-radius: var(--bradMed);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gallery .swiper-slide img {
    aspect-ratio: 1/1.5;
    max-height: 400px;
}
.resultControls {
    width: 85%;
}
.resultControls > div {
    background-color: transparent !important;
}
.resultControls > div img {
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@media (max-width: 1024px) {
    .gallery::after {
            background: linear-gradient(94deg, var(--bg), rgba(1, 14, 1, 0) 20%, rgba(1, 14, 1, 0) 80%, var(--bg) 100%);
    }
}
@media (max-width: 768px) {
    .resultControls {
        display: flex;
        width: 117%;
    }
    .gallery .swiper-slide {
        width: 74%;
    }
    .resultControls {
        display: none;
    }
}


/* --- reviews.css --- */
#reviews{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;

}


.reviewImage, .gradientSection{
    position: absolute;
    width: 100%;
    height: 105%;
    grid-row: 1 / 3;
    top: -5%;
    left: 10%;
    user-select: none;
    object-position: 0% 60%;
}

.gradientSection{
    background: linear-gradient(180deg,var(--bg) 0%, rgba(13, 11, 11, 0) 12%, rgba(13, 11, 11, 0) 88%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 40%, rgba(13, 11, 11, 0) 60%, rgba(13, 11, 11, 0) 85%, var(--bg) 90%);
    z-index: 2;
    user-select: none;
}
#reviews{
    display: relative;
}

#reviews .wrapper .reviewControls{
    position: absolute;
    height: 64px;
    width: calc(128px + 1rem);
    display: flex;
    justify-content: space-between;
    right: 5%;
    bottom: -15%;
    && div{
        height: 64px;
        width: 64px;
        border-radius: 50%;
        transition: all .4s cubic-bezier(.075, .82, .165, 1);
        background: var(--innerBg);
    }
}

@media (max-width: 768px) {
    #reviews .wrapper .reviewControls{
       display: none;
    }
}

#reviews .swiper{
    position: relative;
    border-radius: var(--brad);
    cursor: grab;
    &&:active{
        cursor: grabbing;
    }
    &&::after{
        position: absolute;
        content: '';
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(95deg,rgba(13, 11, 11, 0) 78%, var(--bg) 100%);
        z-index: 1;
        pointer-events: none;
        user-select: none;
    }
}

#reviews .wrapper{
    padding: 1rem 2rem;
    z-index: 2;
    position: relative;
    &&::before{
        position: absolute;
        left: -100%;
        top: -10%;
        height: 135%;
        width: 200%;
        content: '';
        background-color: var(--bg);
        filter: blur(5px) opacity(0.8);
        border-radius: var(--brad);
        z-index: -1;
    }
}
.reviews_item {
  background-color: var(--innerBlackBg);
  padding: 24px;
  border-radius: 24px;
  color: var(--textP);
}
.namereviewsWrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  p{
    font-style: italic;
    margin: 0;
    white-space: nowrap;
  }
}

.wrapNameImage{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 40px;
  width: 40px;
  justify-content: flex-start;
  .avatarReview{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }

}
.reviewer_item-name{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.4rem;
  /* width: 90%; */
}
.reviews_item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews_item-body {
  font-size: 16px;
}
.reviews_item h4 {
  margin-bottom: 4px;
}
#reviews .swiper-wrapper {
  max-width: 360px;
}
#reviews .swiper-slide {
  height: unset;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviewer_item-stars {
  display: flex;
  max-width: 50px;
  gap: 0px;
}
.reviewer_item-stars p {
  font-size: 24px;
  margin-bottom: 0;
}
.rev__card_rating_active {
  color: var(--accentHover);
}

@media(max-width: 768px){


#reviews  {
  max-width: 100%;
  grid-template-columns: 1fr;
}

#reviews .wrapper{
    max-width: 100%;
    padding: 0;
    margin-bottom: 0;
}

.reviewImage, .gradientSection{
    display: none;
}

#reviews .wrapper::before {
    display: none;
}}

.mainBtn:hover, .reviewControls div:hover {
    scale: 1.04;
    cursor: pointer;
    box-shadow: var(--accentHover) 0 0 30px;
}

.mainBtn:hover, .reviewControls div:active{
    scale: 0.96;
    box-shadow: 0px 0px 12px 12px var(--accentHover);
}

/* --- afterheader.css --- */
.preFaq {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: stretch;
    justify-content: space-between;
    border-radius: var(--brad);
    gap: 48px;
    padding: var(--sectionPadding);
    background: var(--innerBg);
    min-height: 400px;
    && .preFaqInfo{
        height: fit-content;
        align-self: center;
        && p{
            margin-bottom: 0;
            text-align: center;
        }
        && h2{
            text-align: center;
        }
    }
}

.preFaq > div {
    flex: 1 1 50%;
}

.preFaq > img{
    border-radius: var(--brad);
}

.preFaq img{
    border-radius: var(--brad);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.preFaqRev {
    flex-direction: row-reverse;
}
.preFaqRev > div:first-child > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.preFaq_swiper {
    border-radius: var(--brad);
    overflow: hidden;
    /* max-height: 640px; */
}
.preFaq_swiper .swiper-slide {
    display: flex;
    flex-direction: row;
    gap: 6px;
    max-width: 100%;
}

.preFaq_swiper .swiper-slide > * {
    flex: 1 1 50%;
}

@media (max-width: 1100px) {
    .refferal_img {
        display: none;
    }

    .preFaq > div:last-child{
        aspect-ratio: unset;
    }
}

@media (max-width: 768px) {
    .preFaq {
        grid-template-columns: 1fr;
        flex-direction: column;
        flex-wrap: wrap;
        padding: var(--sectionPadding);
        gap: 0;
        max-width: 76%;
        min-height: unset;
    }

    .preFaq p{
        margin-bottom: 0;
    }

    .preFaq > div {
        width: 100%;
        flex: 1 1 100% !important;
        /* padding: var(--sectionPadding); */
        padding-bottom: 24px;
        max-width: fit-content;
    }
    .preFaq > div:first-child {
        margin-top: 24px;
    }
    .preFaq > div:first-child > div {
        flex-direction: column;
    }
    .preFaq > div:first-child > a {
        max-width: 100%;
    }
    .preFaq div:last-child{
        display: none;
    }

    .preFaq div:first-child{
        max-height: 400px;
    }

}

/* --- faq.css --- */
.faq>div {
    border-radius: var(--brad)
}

#faq{
    background-color: var(--innerBg);
    border-radius: var(--brad);
    padding: var(--sectionPadding);

}

.accord__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 32px 64px;
    background-color: var(--innerBlackLighterBg);
    border-radius: var(--brad);
    transition: var(--transitionMain);
    &&:hover{
        box-shadow: 0px 0px 12px 5px var(--accentHover);
        cursor: pointer;
        z-index: 3;
    }
}

.accord__item h3,.accord__item p {
    margin-bottom: 0;
}

.accord__item>div:first-child>p {
    font-weight: 400;
    color: var(--mainText)!important;
    font-size: 24px!important;
    margin-bottom: 0
}

.accord__item>div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.accord__item>div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: var(--transitionMain)
}

.accord__item>div:last-child p {
    text-align: left;
}

.show {
    visibility: visible!important
}

.accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    box-sizing: border-box; 
}

.accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
}

.accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
    padding: 0 1rem;
}

div.show{
    margin-top: 28px;
}

@media (max-width: 768px){
    .accord__item{
        padding: 32px 16px;
    }
}

/* --- footer.css --- */
footer {
    background-color: var(--innerBlackBg);
    position: relative;
}

.footer__top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 36px;
    margin-bottom: 29px
}

.footer__top>div:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.footer__top>div>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer__top>nav{
    width: 39%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer__top>div>ul a {
    display: inline-block;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer__top>div>ul img {
    height: 55%;
    object-fit: contain;
}

.footer__top>nav ul {
    margin-left: auto;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    align-items: left;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: left;
    flex-direction: column;
}

.footer__top>nav li a {
    width: max-content;
    text-decoration: none;
    transition: transform 150ms cubic-bezier(0.47, 0, 0.745, 0.715);
}


.footer__top>nav li a:hover{
    color: var(--accentHover);
    scale: 1.04;
}

.footer__bottom {
    padding: 16px 0;
    text-align: center;
    background-color: var(--innerBlackBg);
    border-top: 1px var(--innerBg) solid;
}

.footer__bottom p {
    justify-self: center;
    line-height: 150%;
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction:column-reverse;
        align-items: start;
        gap: 24px
    }

    /* .footer__top>div:first-child>a {
        max-width: 153px
    } */

    /* .footer__top>div>ul {
        display: none
    } */

    @media (max-width: 768px) {
    .footer__top>nav ul {
        margin-left: 0;
        padding-left: 0;
        max-width: 80%;
        align-items: center;
        gap: 24px;
        row-gap: 12px;
        justify-content: center;
        text-align: center;
        list-style: none;
        min-width: fit-content;
        justify-self: center;
    }
}

    .footer__top>nav ul:not(:last-child){
        margin-bottom: 12px;
    }

    .footer__top>nav{
        width: min-content;
        grid-template-columns: 1fr;
        align-self: center;
        white-space: nowrap;
    }

    .footer__top>div>ul a{
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .footer__top>div:first-child {
        flex-direction: column;
        align-self: center;
    }

    .footer__bottom{
        text-align: center;
    }

    .footer__top>div>ul{
        padding: 0;
    }
}

.logo, .footer__top div:first-child a{
    transition: var(--transitionMain);
    border-radius: var(--brad);
    padding: 8px;
}

.btnContainer:hover, .logo:hover, .footer__top div:first-child a:hover{
    scale: 1.05;
    background: var(--accentHover);
    box-shadow: 0px 0px 12px 5px var(--accentHover);
}
