* {
    color: white;
}

.header-menu {
    position: absolute;
}

.slider {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    height: calc(100svh - 5pc);
    max-height: 950px;
    margin: auto;
    --img-1-size: 900px;
    --img-2-size: 900px;

    --img-1-top: 0px;
    --img-1-left: 450px;

    --img-2-top: 300px;
    --img-2-right: 500px;
}

.slider .img-1 {
    position: absolute;
    top: var(--img-1-top);
    left: calc((var(--img-1-left) * -1));

    width: var(--img-1-size);
    height: var(--img-1-size);
    transform: rotate(45deg);
    object-fit: cover;
    object-position: center;
    transition: .2s ease;
    animation: loadIMG-1 2s ease;
    z-index: 1;
}

@keyframes loadIMG-1 {
    from {
        left: calc(var(--img-1-size) * -1);
        transform: rotate(0deg);
        opacity: 0;
    }

    to {
        left: calc((var(--img-1-left) * -1));
        transform: rotate(45deg);
        opacity: 1;
    }
}

.slider .img-2 {
    position: absolute;
    top: calc((var(--img-2-top) * -1));
    right: calc((var(--img-2-right) * -1));

    width: var(--img-2-size);
    height: 900px;
    transform: rotate(-23deg);
    animation: loadIMG-2 2s ease;
    transition: .2s ease-in-out;
    z-index: 1;
}

@keyframes loadIMG-2 {
    from {
        right: calc((var(--img-2-size) * -1));
        transform: rotate(0deg);
        opacity: 0;
    }

    to {
        right: calc((var(--img-2-right) * -1));
        transform: rotate(-23deg);
        opacity: 1;
    }
}

.slider .content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.slider .content .text {
    display: flex;
    flex-direction: column;
    gap: 1pc;
}

.slider .content .text .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: .5pc;
    width: 100%;
}

.slider .content .text h1 {
    font-family: "NeueMontreal-light", sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: .1pc;
}

.slider .content .text .row .route {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 2pc;
    border: 1px solid white;
    border-radius: 2pc;
    padding: .5pc .7pc;
    cursor: pointer;
    transition: .2s ease;
    animation: routeLoad 2s ease;
}

.slider .content .text .row .route:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slider .content .text .row .route p {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-wrap: nowrap;
    opacity: 0;
    animation: routeLoadP .4s 2s ease both;
}

@keyframes routeLoad {
    from {
        width: 65px;
    }

    to {
        width: 100%;
    }
}

@keyframes routeLoadP {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slider .content .text .row .route .icon {
    display: flex;
    border-radius: 2pc;
    padding: .5pc 1pc;
    border: 1px solid white;
    transition: .4s ease;
}

.slider .content .text .row .route:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: .5pc 1.2pc;
}

.slider .content .text .row .route:active .icon {
    transition: .1s ease;
    background-color: rgba(255, 255, 255, 0.15);
}

.slider .content .text .row .route .icon svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

.slider .content .text .row h2 {
    font-family: "Libre Baskerville", sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    opacity: 0;
    animation: load .4s 2.5s ease both;
}

.slider .content .text .row h2:last-child {
    font-family: "NeueMontreal-light", sans-serif;
    letter-spacing: .1pc;
    font-weight: 900;
    text-align: end;
    grid-column: 1/3;
    animation: load .4s 3s ease both;
}

.slider .content .info-text {
    position: absolute;
    top: calc(100% - 75px);
    left: 50%;
    transform: translate(-50%, calc(-100% + 45px));
    width: 80%;
    border-top: 2px solid rgba(174, 167, 220, 0.32);
    opacity: 0;
    transition: 1.4s ease;
    animation: load 1.4s 2s ease both;
}

@keyframes load {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slider .content .info-text .txt {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5pc;
}

.slider .content .info-text .txt p {
    font-family: "Quicksand", sans-serif;
    font-size: 2ch;
    font-weight: 400;
    text-align: center;
}

.slider .content .info-text .cnt-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 50px;
}

.slider .content .info-text .cnt-mobile .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .4s linear;
}

.slider .content .info-text .cnt-mobile .txt.active {
    opacity: 1;
    visibility: visible;
}

.slider .social {
    flex: 1;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
}

.slider .social .routes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2pc;
}

.slider .social .routes .route {
    display: flex;
    padding: .3pc;
    border-radius: .2pc;
    background-color: transparent;
    transition: .2s ease;
    cursor: pointer;
}

.slider .social .routes .route:hover {
    background-color: rgba(174, 167, 220, 0.12);
}

.slider .social .routes .route:active {
    transition: .1s ease;
    background-color: rgba(174, 167, 220, 0.22);
}

.slider .social .routes .route svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: rgba(174, 167, 220, 0.32);
}

.main {
    display: flex;
    flex-direction: column;
    gap: 4pc;
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    margin-top: 4pc;
    margin-bottom: 2pc;
    padding: 1pc 0;
    z-index: 1;
}

.main>div {
    z-index: 2;
}

.text-about {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1pc;
    width: 100%;
    height: 100%;
}

.text-about h2 {
    font-family: "Quicksand", serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.text-about p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    line-height: 1.4pc;
}

.text-about .route-text p {
    font-family: "Libre Baskerville", sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
}

.plan-cards {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2pc;
    width: 100%;
    height: max-content;
}

.plan-cards .card {
    flex: 1;
    position: relative;
    min-width: 250px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border: 1.5px solid rgba(174, 167, 220, 0.32);
    padding: 1pc;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .1s ease, opacity .4s ease calc(var(--d) * .4s);
}

.plan-cards.active .card {
    opacity: 1;
    visibility: visible;
}

.plan-cards .card:active {
    background-color: rgba(255, 255, 255, 0.05);
}

.plan-cards .card>div {
    flex: 1;
    width: 100%;
}

.plan-cards .card .card-name {
    max-height: max-content;
    padding: .5pc 0;
}

.plan-cards .card .card-name p {
    font-family: "Tan-nimbus", sans-serif;
    font-size: .9rem;
    font-weight: 100;
    text-transform: capitalize;
}

.plan-cards .card .card-name p span {
    color: #907ffc;
    font-size: 1.2rem;
}

.plan-cards .card .text {
    display: flex;
    flex-direction: column;
    gap: 1pc;
    padding: 1pc 0;
}

.plan-cards .card .text h2 {
    font-family: "NeueMontreal-light", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .1pc;
    text-transform: capitalize;
}

.plan-cards .card .text p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 400;
}

.plan-cards .card .icon {
    display: flex;
    align-items: center;
    justify-content: end;
    max-height: max-content;
    padding: .5pc 0;
}

.plan-cards .card .icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.plan-cards .card .icon svg path {
    stroke: rgba(174, 167, 220, .7);
}

.design-gallery {
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2pc;
    opacity: 0;
    transition: .7s .2s ease;
    margin: 4pc 0;
}

.design-gallery.active {
    opacity: 1;
}

.design-gallery .info-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: .5pc;
}

.design-gallery .info-text h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1pc;
    width: 100%;
    cursor: pointer;
    transition: .2s ease;
}

.design-gallery .info-text h2 svg {
    width: 2rem;
    height: 2rem;
    transition: .2s ease;
}

.design-gallery .info-text h2:hover svg {
    transform: translate(7%, -7%);
}

.design-gallery .info-text h2:active svg {
    transition: .1s ease;
    transform: translate(4%, -4%);
}

.design-gallery .info-text h2 svg path {
    stroke: white;
}

.design-gallery .info-text p {
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.design-gallery .row {
    --design-width: 275px;
    flex: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--design-width));
    justify-content: space-evenly;
    justify-items: center;
    gap: 2pc;
}

.design-gallery .design {
    position: relative;
    width: var(--design-width);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: .5pc;
    transition: .2s ease;
    filter: brightness(100%);
}

.design-gallery .design::before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
    z-index: -1;
}

.design-gallery .design:hover::before {
    opacity: 1;
}

.design-gallery .row .design:hover {
    transform: scale(1.025);
}

.design-gallery .design .img {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 300px;
    border-radius: 1pc;
    overflow: hidden;
    overflow-y: auto;
}

.design-gallery .design .img::-webkit-scrollbar {
    width: 0;
}

.design-gallery .design .img img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.design-gallery .design .text {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1pc;
    padding: .5pc .3pc;
}

.design-gallery .design .text h2 {
    font-family: "NeueMontreal", serif;
    font-size: 1.7rem;
    text-align: left;
    font-weight: 100;
    letter-spacing: .05pc;
    text-transform: capitalize;
}

.design-gallery .design .text p {
    font-family: "Quicksand", serif;
    font-size: .9rem;
}

.design-gallery .design .text .route {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 2pc;
    border: 1px solid white;
    border-radius: 2pc;
    padding: .4pc 1pc;
    margin-top: 1pc;
    cursor: pointer;
    transition: .2s ease;
}

.design-gallery .design .text .route:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.design-gallery .design .text .route p {
    font-family: "Quicksand", sans-serif;
    font-size: .9rem;
    font-weight: 400;
    text-wrap: nowrap;
    transition: .4s ease;
}

.design-gallery .design .text .route .icon {
    display: flex;
    border-radius: 2pc;
    padding: .5pc .7pc;
    border: 1px solid white;
    transition: .4s ease;
}

.design-gallery .design .text .route:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: .5pc 1.2pc;
}

.design-gallery .design .text .route:active .icon {
    transition: .1s ease;
    background-color: rgba(255, 255, 255, 0.15);
}

.design-gallery .design .text .route .icon svg {
    width: .9rem;
    height: .9rem;
    fill: white;
}

.why-us {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2pc;
    width: 100%;
    height: max-content;
    margin: 4pc 0;

    --whyus-img-1-size: 550px;
    --whyus-img-1-top: 150px;
    --whyus-img-1-right: -350px;

    --whyus-img-2-size: 450px;
    --whyus-img-2-top: 0px;
    --whyus-img-2-left: -300px;
}

.why-us .img-1 {
    position: absolute;
    top: var(--whyus-img-1-top);
    width: var(--whyus-img-1-size);
    height: var(--whyus-img-1-size);
    right: var(--whyus-img-1-right);
    transform: rotate(-78deg) rotateX(180deg);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 2s ease;
}

.why-us.active .img-1 {
    opacity: 1;
    visibility: visible;
    animation: img-1-load 2s ease;
}

@keyframes img-1-load {
    from {
        right: calc(var(--whyus-img-1-size) * -1);
        transform: rotate(0) rotateX(180deg);
        opacity: 0;
        visibility: hidden;
    }

    to {
        right: var(--whyus-img-1-right);
        transform: rotate(-78deg) rotateX(180deg);
        opacity: 1;
        visibility: visible;
    }
}

.why-us .img-2 {
    position: absolute;
    top: var(--whyus-img-2-top);
    width: var(--whyus-img-2-size);
    height: max-content;
    left: var(--whyus-img-2-left);
    transform: rotate(0);
    object-fit: contain;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 2s ease;
}

.why-us.active .img-2 {
    opacity: 1;
    visibility: visible;
    animation: img-2-load 2s ease;
}

@keyframes img-2-load {
    from {
        left: calc(var(--whyus-img-2-size) * -1);
        transform: rotate(40deg);
        opacity: 0;
        visibility: hidden;
    }

    to {
        left: calc(var(--whyus-img-2-left));
        transform: rotate(0);
        opacity: 1;
        visibility: visible;
    }
}

.why-us .title-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4pc;
    width: 100%;
}

.why-us .title-name>div {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.why-us .title-name .left {
    justify-content: end;
}

.why-us .title-name .left p {
    font-family: "Quicksand", sans-serif;
    font-size: 2.2rem;
    text-align: end;
}

.why-us .title-name .right {
    justify-content: start;
}

.why-us .title-name .right p {
    font-family: "NeueMontreal", sans-serif;
    font-size: 1.4rem;
    font-weight: 100;
    letter-spacing: .05pc;
}

.why-us .values {
    flex: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.why-us .values .vl {
    display: flex;
    flex-direction: row;
    gap: 4pc;
    width: 100%;
    height: max-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1pc;
}

.why-us .values .vl>div {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.why-us .values .vl>div p {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
}

.why-us .values .vl .header {
    justify-content: end;
}

.why-us .values .vl .header p {
    font-size: 2rem;
    text-align: right;
}

.why-us .values .vl .text p {
    font-size: 1.2rem;
}

.cls-area {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: .5pc;
    width: 100%;
    min-height: 500px;
    height: max-content;
}

.cls-area>div {
    flex: 1;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2pc;
}

.cls-area>div .selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .5pc;
    width: 100%;
    height: 35px;
}

.cls-area>div .selector .sl {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 0 1.6pc;
    height: 100%;
    border-radius: 2pc;
}

.cls-area>div .selector .sl[type="comments"] {
    background-color: #8221fe;
}

.cls-area>div .selector .sl[type="referances"] {
    background-color: #907ffc;
}

.cls-area>div .selector .sl[type="contact"] p {
    color: black;
}

.cls-area>div .selector .sl.gradient-bg {
    background: linear-gradient(135deg, #340b68, #5718dd, #37f9ff);
}

.cls-area>div .selector .sl.gradient-bg-2 {
    background: linear-gradient(135deg, #10013b, #5c10ff);
}

.cls-area>div .selector .sl.bg-bold {
    background-color: #11036f;
}

.cls-area>div .selector .sl.crs {
    cursor: pointer;
    transition: .2s ease;
}

.cls-area>div .selector .sl.crs:hover {
    filter: brightness(110%);
}

.cls-area>div .selector .sl.crs:active {
    transition: .1s ease;
    transform: scale(.98);
}

.cls-area>div .selector .sl p {
    font-family: "Quicksand", serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-wrap: nowrap;
}

.cls-area>div .selector .sl.logo p {
    font-family: "Tan-nimbus", sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: black;
}

.cls-area>div .selector .sl svg {
    width: 2.2rem;
    height: 2.2rem;
}

.cls-area>div .selector .sl svg path {
    fill: black;
    stroke: black;
}

.cls-area>div .selector .sl.gradient-bg svg path {
    fill: white;
    stroke: white;
}

.cls-area>div .output-area {
    position: relative;
    flex: 1;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1pc;
    overflow: hidden;
}

.cls-area>div .output-area .output {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .4s ease;
    scroll-behavior: smooth;
    opacity: 0;
    visibility: hidden;
}

.cls-area>div .output-area .output.active {
    opacity: 1;
    visibility: visible;
}

.cls-area>div .output-area .output[page="comments"] {
    display: flex;
    flex-direction: column;
    gap: .5pc;
    box-shadow: 0 0 30px 1px black inset;
    transition: .2s ease;
}

.cls-area>div .output-area .output[page="comments"]:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cls-area>div .output-area .output[page="comments"] .comment {
    display: flex;
    flex-direction: column;
    gap: .7pc;
    width: 100%;
    min-height: 100%;
    padding: 1.5pc;
    border-radius: 1pc;
    opacity: 0;
    z-index: -1;
    transition: .4s ease;
}

.cls-area>div .output-area .output[page="comments"] .comment.active {
    opacity: 1;
    z-index: 1;
}

.cls-area>div .output-area .output[page="comments"] .comment .author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5pc;
    width: 100%;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .name p {
    font-family: "Quicksand", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .rating {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .1pc;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .rating svg {
    width: 1rem;
    height: 1rem;
    fill: gold;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .route {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s ease;
    padding: .3pc;
    border-radius: .2pc;
    z-index: 5;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .route:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cls-area>div .output-area .output[page="comments"] .comment .author .route svg {
    width: 1.4rem;
    height: 1.4rem;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .route svg path {
    stroke: white;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .show-all-button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cls-area>div .output-area .output[page="comments"] .comment .author .show-all-button svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: rgba(255, 255, 255, 1);
}

.cls-area>div .output-area .output[page="comments"] .comment .content p {
    font-family: "Quicksand", sans-serif;
    line-height: 1.25pc;
    font-size: 1rem;
    font-weight: 500;
}

.cls-area>div .output-area .output[page="referances"] {
    display: flex;
    flex-direction: column;
    gap: .5pc;
    padding: 1.5pc;
}

.cls-area>div .output-area .output[page="referances"] h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 2.3rem;
    font-weight: 500;
    text-transform: capitalize;
}

.cls-area>div .output-area .output[page="referances"] p {
    font-family: "Quicksand", sans-serif;
    font-size: .9rem;
    font-weight: 500;
}

.cls-area>div .output-area .output[page="referances"] .referances-output {
    flex: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    gap: 2.5pc;
    align-content: start;
    padding: .5pc;
    overflow-y: auto;
}

.cls-area>div .output-area .output[page="referances"] .referances-output::-webkit-scrollbar {
    width: .3pc;
    background-color: #907ffc5e;
    border-radius: 2pc;
}

.cls-area>div .output-area .output[page="referances"] .referances-output::-webkit-scrollbar-thumb {
    background-color: #8221fe;
    border-radius: 2pc;
}

.cls-area>div .output-area .output[page="referances"] .referances-output .referance {
    position: relative;
    width: 85px;
    height: 85px;
    cursor: pointer;
}

.cls-area>div .output-area .output[page="referances"] .referances-output .referance img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .2s ease;
}

.cls-area>div .output-area .output[page="referances"] .referances-output .referance:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.cls-area>div .output-area .output[page="referances"] .referances-output .referance:active img {
    transition: .1s ease;
    transform: scale(1.05);
}

.cls-area>div .output-area .output[page="contact"] {
    display: flex;
    flex-direction: column;
    gap: 1pc;
    padding: 1.5pc;
}

.cls-area>div .output-area .output[page="contact"] h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
}

.cls-area>div .output-area .output[page="contact"] .ct {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1pc;
    width: 100%;
    height: max-content;
}

.cls-area>div .output-area .output[page="contact"] .ct .icon {
    display: flex;
    background-color: #5718dd;
    padding: .7pc;
    border-radius: 50%;
}

.cls-area>div .output-area .output[page="contact"] .ct .icon svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

.cls-area>div .output-area .output[page="contact"] .ct .text p {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.cls-area>div .output-area .output[page="sss"] .sss-options {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 1pc;
    padding: 1.5pc;
    width: 100%;
    height: 100%;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2pc;
    width: 100%;
    height: max-content;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .text {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    height: max-content;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .text p {
    font-family: "NeueMontreal-light", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .1pc;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1pc;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: .4pc .4pc;
    padding-left: .5pc;
    border-radius: 2pc;
    cursor: pointer;
    transition: .2s ease;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router p {
    font-family: "Quicksand", sans-serif;
    font-size: .85rem;
    font-weight: 600;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2pc;
    padding: .4pc 1pc;
    transition: .2s ease;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: .4pc 1.2pc;
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router:active .icon {
    transition: .1s ease;
    background-color: rgba(255, 255, 255, 0.15);
}

.cls-area>div .output-area .output[page="sss"] .sss-options .option .router .icon svg {
    width: .9rem;
    height: .9rem;
    fill: white;
}

@media only screen and (max-width: 950px) {
    .header-menu .options {
        display: none;
    }

    .header-menu .router {
        display: none;
    }

    .header-menu .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 100%;
        transform: translateX(0);
        width: 250px;
        height: 100%;
        opacity: 1;
        visibility: visible;
        background-color: rgba(6, 1, 30, 0.8);
        transition: .4s ease;
        padding-top: 6pc;
    }

    .header-menu .nav-menu.active {
        transform: translateX(-100%);
    }

    .header-menu .nav-menu .icon {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: max-content;
        height: max-content;
        padding: 2pc;
        padding-top: 20px;
        transition: .2s;
    }

    .header-menu .nav-menu.active .icon {
        transform: translateX(0);
    }

    .header-menu .nav-menu .icon svg {
        width: 2rem;
        height: 2rem;
        transition: .2s ease;
    }

    .header-menu .nav-menu.active .icon svg:nth-child(1) {
        opacity: 0;
        visibility: hidden;
    }

    .header-menu .nav-menu .icon svg:nth-child(2) {
        position: absolute;
        opacity: 0;
        visibility: hidden;
    }

    .header-menu .nav-menu.active .icon svg:nth-child(2) {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .nav-menu .icon svg path {
        fill: white;
    }

    .slider {
        --img-1-size: 700px;
        --img-2-size: 700px;

        --img-1-top: 0px;
        --img-1-left: 370px;

        --img-2-top: 250px;
        --img-2-right: 420px;
    }

    .slider .content .info-text .cnt {
        display: none;
    }

    .slider .content .info-text .cnt-mobile {
        display: block;
    }
}

@media only screen and (max-width: 850px) {
    .slider {
        --img-1-size: 700px;
        --img-2-size: 700px;

        --img-1-top: 0px;
        --img-1-left: 400px;

        --img-2-top: 250px;
        --img-2-right: 460px;
    }

    .why-us {
        --whyus-img-1-size: 425px;
        --whyus-img-1-top: 350px;
        --whyus-img-1-right: -250px;

        --whyus-img-2-size: 375px;
        --whyus-img-2-top: 0px;
        --whyus-img-2-left: -250px;
    }
}

@media only screen and (max-width: 700px) {
    .main {
        width: 90%;
    }

    .slider {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5pc;

        --img-1-size: 600px;
        --img-2-size: 600px;

        --img-1-top: 0px;
        --img-1-left: 350px;

        --img-2-top: 250px;
        --img-2-right: 400px;
    }

    .slider .social {
        display: none;
    }


    .design-gallery .row {
        justify-content: center;
    }

    .design-gallery .design {
        max-width: calc(100% - 3pc);
    }
}

@media only screen and (max-width: 600px) {
    .slider {
        --img-1-size: 550px;
        --img-2-size: 550px;

        --img-1-top: 0px;
        --img-1-left: 350px;

        --img-2-top: 250px;
        --img-2-right: 420px;
    }

    .why-us .title-name {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2pc;
    }

    .why-us .values {
        gap: 2pc;
    }

    .why-us .values .vl {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2pc;
    }

    .why-us .values .vl p {
        text-align: center !important;
    }

    .cls-area .left .selector .sl.gradient-bg {
        display: none;
    }

    .cls-area .right {
        margin-top: 2pc;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options {
        align-items: stretch;
        justify-content: start;
        gap: 3pc;
        overflow-y: auto;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options::-webkit-scrollbar {
        width: .3pc;
        background-color: #10013b;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options::-webkit-scrollbar-thumb {
        background-color: #5718dd;
        border-radius: 2pc;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options .option .text {
        width: 100%;
        align-items: start;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options .option .text p {
        text-align: start;
    }
}

@media only screen and (max-width: 500px) {
    .slider {
        --img-1-size: 500px;
        --img-2-size: 500px;

        --img-1-top: 0px;
        --img-1-left: 330px;

        --img-2-top: 250px;
        --img-2-right: 430px;
    }

    .slider .content .text h1 {
        font-size: 3.3rem;
    }

    .slider .content .text .row .route p {
        font-size: 1rem;
    }

    .slider .content .text .row .route .icon svg {
        width: .9rem;
        height: .9rem;
    }

    .slider .content .text .row h2 {
        font-size: 1.9rem;
    }

    .plan-cards .card {
        min-height: 300px;
    }

    .design-gallery .info-text p {
        text-align: justify;
    }

    .design-gallery .row {
        --design-width: 100%;
        padding-top: 2pc;
    }

    .design-gallery .design {
        max-width: calc(100% - 3pc);
    }

    .why-us {
        --whyus-img-1-size: 425px;
        --whyus-img-1-top: 550px;
        --whyus-img-1-right: -250px;

        --whyus-img-2-size: 375px;
        --whyus-img-2-top: 0px;
        --whyus-img-2-left: -200px;
    }

    .why-us.active .img-2 {
        filter: brightness(80%);
    }

    .cls-area .right .selector .sl.gradient-bg {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .slider .content .text .row .route p {
        font-size: 1.1rem;
        flex: 1;
        text-align: center;
        font-weight: 500;
    }

    .slider .content .text .row .route .icon svg {
        width: 1rem;
        height: 1rem;
    }

    .slider .content .text .row {
        display: flex;
        flex-direction: column;
        gap: 1pc;
    }

    .slider .content .text .row h2 {
        font-size: 2.4rem;
        text-align: center;
    }

    .slider .content .text .row h2:last-child {
        width: 100%;
        text-align: center;
    }

    .cls-area .left .selector .sl:nth-child(1) {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    .slider {
        --img-1-size: 500px;
        --img-2-size: 500px;

        --img-1-top: 0px;
        --img-1-left: 380px;

        --img-2-top: 250px;
        --img-2-right: 480px;
    }

    .slider .content .text h1 {
        font-size: 3rem;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options .option {
        flex-direction: column;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options .option .text {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .cls-area>div .output-area .output[page="sss"] .sss-options .option .text p {
        text-align: center !important;
    }
}