@keyframes scrollHandleMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
}

header {

}

main {
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 calc(20px + (48 - 20) * ((100vw - 320px) / (1920 - 320)));
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 1921px) {
    .container {
        padding: 0 2rem;
    }
}

/*HEADER*/
.header {
    transition: all 0.6s;
    position: relative;
    left: 0;
    width: 100%;
    padding: 3rem 0 0;
    z-index: 3;
}

.header.header__mp {
    position: absolute;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    max-width: 1600px;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60px;
    height: 60px;
    width: 100%;
    position: relative;
    max-width: 184px;
    z-index: 2;
}

.header__logo img {
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 158px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    min-width: 300px;
}

.header-contacts__button {
    padding: 0;
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: .5rem;
    /*box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border: 1px solid #ffffff4d;*/
    color: var(--white);
    /*border-radius: 10px;*/
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);


    border: 3px solid var(--border-color-gray);
    background-color: transparent;
    color: var(--white);
    font-weight: 500;
    border-radius: 3.125rem;
}

.header-contacts__button:hover i {
    animation: scrollHandleMove 1.5s infinite ease-in-out;
}

.header-contacts__button.active i {
    transform: rotate(180deg);
}

.header-contacts__button i {
    transition: var(--transition);
}

.header-contacts__phone {
    font-weight: 700;
    font-size: 18px;
}

.header-contacts__address {
    font-size: 13px;
    white-space: nowrap;
}

.header-contacts__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    color: var(--white);
    border-radius: var(--border-radius-inner);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    position: absolute;
    top: calc(100% + 7px);
    gap: 20px;
    width: 100%;
    display: none;
}

.header-contacts__slide > *:not(:last-child) {
    margin-bottom: 20px;
}

.header-contacts__email {
    display: block;
    white-space: nowrap;
}

.header-contacts__email:hover {
    color: var(--beige);
}

.header-contacts__shedule {
}

.header-shedule__prop ul {
    margin: 0;
    list-style: none;
}

.header-shedule__prop ul li {
    padding: 0;
    list-style: none;
}

.header-contacts__social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social__item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 40px;
    font-size: 2.3rem;
    aspect-ratio: 1;
    transition: var(--transition);
}

.header-social__item:hover {
    cursor: pointer;
}

/*/ HEADER*/


/* ADVANTAGES
.mp-advantages {
    position: relative;
    display: flex;
    background-color: #1d1c1a;
    overflow: hidden;
    display: none;
}

.mp-advantages__content {
    flex: 0 0 100%;
    display: flex;
}

.mp-advantages__body {
    color: var(--white);
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    position: relative;
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 2rem;
    z-index: 3;
    padding: 4rem 0;
}

.mp-advantages__body::before {
    content: "";
    height: 100%;
    width: 50%;
    position: absolute;
    right: -25%;
    bottom: 0;
    background-color: #1d1c1a;
    z-index: -1;
    transform: skew(-20deg);
}

.mp-advantages__right-img {
    flex: 0 0 50%;
    padding: 0 0 48% 0;
    transform: translateX(-100%);
    position: relative;
    pointer-events: none;
}

.mp-advantages__right-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.mp-advantages__list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    counter-resets: new-counter;
    list-style: none;
}

.mp-advantages__list li {
    counter-increment: new-counter;
    position: relative;
    padding-left: 64px;
    z-index: 4;
}

.mp-advantages__list li:nth-child(n of .mp-advantages__list ~ li) {
    margin-left: 2rem;
}

/*.mp-advantages__list li:last-child {
    grid-column: -1/1;
    padding-left: 0;
}*/

/*.mp-advantages__list li::before {
    content: counter(new-counter, decimal-leading-zero);
    color: #d7b7898f;
    /*background-image: linear-gradient(to right, #232020, #d7b789);
    background-clip: text;
    color: transparent;*//*

    font-size: 5rem;
    position: absolute;
    left: 0;
    bottom: -12px;
    line-height: 1;
    font-weight: 500;
    height: 100px;
    display: flex;
    align-items: flex-end;
}

/*.mp-advantages__list li:last-child::before {
    content: unset;
}*//*
.mp-advantages__btn {
    width: 75%;
    margin-top: 4rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border: 1px solid #ffffff4d;
    color: var(--white);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.mp-advantages2 {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 6rem 0;
    background-color: var(--brown);
    display: none;
}

.mp-advantages2::before {
    position: absolute;
    top: -71%;
    right: 0;
    left: 0;
    height: 140%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    content: "";
    pointer-events: none;
}

span[class^="mp-advantages2__bg-layer"] {
    position: absolute;
    background-image: radial-gradient(rgb(212 186 149 / 20%) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.mp-advantages2__bg-layer1 {
    top: -10%;
    left: -32%;
    width: 60%;
    height: 150%;
}

.mp-advantages2__bg-layer2 {
    top: -31%;
    right: -50%;
    width: 75%;
    height: 100%;
}

.mp-advantages2__bg-image {
    position: absolute;
    left: -50%;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 25%;
    pointer-events: none;
}


/* /ADVANTAGES*/

/*marquee*/
.mp-marquee {
    white-space: nowrap;
    flex-shrink: 0;
    /*transform: translate(100%, 0);*/
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: var(--brown);
}

.mp-marquee > * {
    white-space: nowrap;
    font-size: 3.6rem;
    margin-right: 2rem;
    text-transform: uppercase;
    position: relative;
    font-weight: 800;
    background-clip: text;
    font-family: sans-serif;
    display: flex;
    /*gap: 3rem;
    opacity: 85%;*/
    line-height: 1;
}

.mp-marquee.mp-marquee__rtl {
    /*font-size: 3.6rem;
    font-weight: 800;
    transform: scale(1.9);
    padding-bottom: 10px;
    margin-top: -25px;*/
    transform-origin: left;
    line-height: normal;

    /*animation: marquee-ltr 30s linear infinite;*!*/
}

.mp-marquee__rtl a {
    line-height: 1;
}

.mp-marquee__ltr {
    font-weight: 800;
    /*animation: marquee-rtl 30s linear infinite;*!*/
}

.mp-marquee__rtl a:nth-child(odd) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--beige);
}

.mp-marquee__rtl a:nth-child(even) {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: unset;
    color: var(--beige);
}

.mp-marquee__ltr span {
    line-height: 2;
    font-size: 6rem;
}

.js-marquee {
    line-height: 1;
}

.mp-marquee__ltr span:nth-child(odd) {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: unset;
    color: var(--beige);
}

.mp-marquee__ltr span:nth-child(even) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--beige);
}

@keyframes marquee-ltr {
    0% {
        transform: translate(100%, 0);
    }
    99% {
        opacity: 1;
        transform: translate(-100%, 0);
    }
    /*100% {
        opacity: 0;
        transform: translate(-100%, 0);
    }*/
}

@keyframes marquee-rtl {
    0% {
        transform: translate(-100%, 0);
    }
    99% {
        opacity: 1;
        transform: translate(100%, 0);
    }
    /* 100% {
         opacity: 0;
         transform: translate(100%, 0);
     }*/
}

/*/marquee*/


/*FEEDBACK*/
.mp-feedback {
    background-color: var(--brown);
    padding: 10rem 0 60px;
    overflow: hidden;
    position: relative;
}

.mp-feedback__container {
    position: relative;
}

.mp-feedback__bg-label {
    white-space: nowrap;
    white-space: pre-line;
    color: rgb(255 255 255 / 30%);
    font-size: 8rem;
    background-image: linear-gradient(to top, #232020, #d7b789);
    background-clip: text;
    color: transparent;
    /* writing-mode: sideways-lr; */
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 4;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mp-feedback__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 330px;
    padding: 60px 400px 60px 120px;
    background: #d7b789;
    border-radius: 10px;
    max-width: 80%;
    margin: 0 auto;
    z-index: 4;
}

.mp-feedback__body::before {
    content: "";
    position: absolute;
    bottom: -25%;
    right: -41%;
    height: 100vh;
    width: 150vw;
    background-image: radial-gradient(circle, rgba(35, 32, 32, 0) 5%, rgba(35, 32, 32, 0) 48%, rgba(35, 32, 32, 1) 62%, rgba(35, 32, 32, 1) 68%);
    z-index: 7;
    pointer-events: none;
}

.mp-feedback__body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -37%;
    height: 100%;
    width: 200vw;
    background-image: radial-gradient(circle, rgba(35, 32, 32, 0) 5%, rgba(35, 32, 32, 0) 21%, rgba(35, 32, 32, 1) 71%, rgba(35, 32, 32, 1) 91%);
    z-index: 3;
}

.mp-feedback__content {
    backdrop-filter: blur(6px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    color: var(--white);
    z-index: 5;
    padding: 2rem;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mp-feedback__img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    height: 400px;
    object-fit: contain;
    z-index: 6;
    pointer-events: none;
}

.mp-feedback__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mp-feedback__text {
    font-size: 20px;
}

.mp-feedback__btn {
    width: 100%;
    max-width: 400px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    color: var(--beige);
    backdrop-filter: blur(10px);
    background: rgb(161 140 114 / 27%);
    background: var(--brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    margin: 2rem auto 0;
    transition: var(--transition);
}

.mp-feedback__btn:hover {

}

/* /FEEDBACK*/


/*ACCORDION*/
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /*max-width: 75%;*/
    margin: 0 auto;
}

.accordion__details {

}

.accordion__summary {
    font-size: 1.125rem;
    padding: 2rem calc(4rem + 4rem) 2rem 2rem;
    color: var(--beige);
    cursor: pointer;
}

.accordion__title {

}

.accordion__content-body {
    overflow: hidden;
    padding: 0 2rem 0 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.accordion__content-body p {
    padding-bottom: .5rem;
}

.accordion__details[open] + .accordion__content {
    grid-template-rows: 1fr;
    padding-bottom: 2rem;
}

.accordion__summary {
    position: relative;
    list-style-type: none;
    /*list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M12.9,0.1c0.1,0.2,0.1,0.6,0,0.8l-6,6C6.7,7,6.3,7,6.1,6.9l-6-6C0,0.7,0,0.4,0.1,0.2s0.5-0.2,0.7,0l5.6,5.6 l5.7-5.7C12.3,0,12.7,0,12.9,0.1z'/%3E%3C/svg%3E%0A");
    list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M12.9,0.1c0.1,0.2,0.1,0.6,0,0.8l-6,6C6.7,7,6.3,7,6.1,6.9l-6-6C0,0.7,0,0.4,0.1,0.2s0.5-0.2,0.7,0l5.6,5.6 l5.7-5.7C12.3,0,12.7,0,12.9,0.1z'/%3E%3C/svg%3E%0A");*/
}

.accordion__marker {
    transition: var(--transition);
    width: 60px;
    aspect-ratio: 1;
    position: absolute;
    z-index: 2;
    top: 0;
    top: -1rem;
    transform: translateY(50%);
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    overflow: hidden;
    border: 3px solid var(--border-color-gray);
    color: var(--white);
}

.accordion__details[open] .accordion__marker {
    transform: translateY(50%) rotate(180deg);
}

.accordion__details:hover .accordion__marker {
    background: rgb(255 255 255 / 30%);
    background: #fff;
    color: var(--white);
    color: var(--brown);
}

.accordion__details[open]:hover .accordion__summary {
    background-color: transparent;
}

.accordion__details:hover .accordion__summary {

}

/*/ACCORDION*/


/* FOOTER 2
.footer {
    position: relative;
    padding: 6rem 0 2rem;
    /*background-color: var(--brown);
    z-index: 2;
    /*overflow: hidden;
}

/*
.footer::before {
    content: '';
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inset: 0;
    backdrop-filter: blur(0);
    transition: backdrop-filter 0.5s ease-in-out;
    transition-delay: 0.2s;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 60%, rgb(35, 32, 32) 100%);
    top: -100%;
    left: 0;
    height: 100%;
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    bottom: -70%;
    right: 0;
    left: 0;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}
*//*
.footer__container {
}

.footer__map {
    width: 750px;
    aspect-ratio: 1;
    display: flex;
    flex: 0 0 750px;
    border-radius: 50%;
    border-radius: calc(var(--border-radius-card) * 7);
    overflow: hidden;
    outline: 5px solid var(--brown);
    outline-offset: -10px;
}

.f-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    background: rgba(255, 255, 255, 5%);
    border-radius: var(--border-radius-card);
    padding: var(--gap) calc(var(--gap) * 2);
}


.f-contacts__label {
    font-size: 1.125rem;
    color: var(--beige);
}

.f-contacts__value {
    font-size: 1.25rem;
    color: var(--white);
}

.f-contacts__phone {
}

.f-contacts__email {
}

.f-contacts__address {
}

.f-contacts__social {
}

.f-menu {
    z-index: 1;
    position: relative;
}

.f-menu__list {
    position: relative;
    align-items: baseline;
    column-width: 250px;
    column-gap: var(--gap);
    width: 100%;
    z-index: 3;
}

.f-menu__item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.f-menu__item > a {
    gap: .5rem;
    display: flex;
    align-items: center;
    color: var(--beige);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    position: relative;
}

.f-menu__submenu {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
}

.f-menu__subitem {
    break-inside: avoid;
    margin-bottom: .75rem;
    font-size: 14px;
    color: rgb(255 255 255 / 66%);
}

.f-menu__subitem a {
    position: relative;
    transition: all .3s ease 0s;
}

.footer__middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    padding: 6rem 0;
    align-items: center;
}

.footer__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: auto;
    justify-content: space-between;
}

.footer__bottom a:nth-child(2) {
    text-align: center;
}

.footer__bottom a:nth-child(3) {
    text-align: right;
}

span[class^="footer__bg-layer"] {
    position: absolute;
    background-image: radial-gradient(rgb(212 186 149 / 20%) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.footer__bg-layer1 {
    top: -31%;
    right: -50%;
    width: 75%;
    height: 100%;
}

.footer__bg-layer2 {
    top: 50%;
    left: 0;
    width: 80%;
    height: 100%;
    transform: translate(-15%, -50%);
    animation: mapLayerPulse 10s infinite linear;
    transition: var(--transition);
}

@keyframes mapLayerPulse {
    0%, 100% {
        transform: translate(-15%, -50%) scale(0.8);
    }
    25% {
        transform: translate(-15%, -50%) scale(0.65);
    }
    50% {
        transform: translate(-15%, -50%) scale(0.5);
    }
    75% {
        transform: translate(-15%, -50%) scale(1.1);
    }
}

.footer__bg-layer3 {
    top: -10%;
    left: -32%;
    width: 60%;
    height: 150%;
}

/* /FOOTER 2*/

/* FOOTER 2 */
.footer {
    position: relative;
    z-index: 3;
}

.footer__container {
    max-width: 1600px;
}

.footer__map {
    /*padding-top: 4rem;*/
}

.ymap-frame {
    width: 100%;
    position: relative;
    height: 600px;
}

.footer__body {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: var(--gap);
    padding: 3.5rem 0 1rem;
    border-bottom: 1px solid #dfe1e91c;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
    font-size: .85rem;
    gap: .5rem;
}

.footer__bottom a {
    color: var(--muted-color);
}

.footer__bottom a:hover {
    color: var(--white);
}

.f-contacts {
    display: flex;
    flex-direction: column;
}

.f-contacts__item {
    position: relative;
    display: flex;
    margin-bottom: 1rem;
    gap: .5rem;
    align-items: baseline;
}

.f-contacts__icon,
.f-contacts__label {
    color: var(--primary-color);
}

.f-contacts__value {
    color: var(--white);
}

.f-contacts__item a:hover {
    color: var(--primary-color);
}

.f-social {
    display: flex;
    gap: 1rem;
    z-index: 3;
    position: relative;
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.f-social__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 1rem;
    border: 3px solid var(--border-color-gray);
    border-radius: 50%;
    height: 3.75rem;
}

.f-social__icon {

}

.f-social__icon ._icon-vk {
}

.f-social__icon._icon-tg {
    font-size: 1.2rem;
}

.f-social__icon._icon-whatsapp {
    font-size: 1.2rem;
}

@media (max-width: 1280px) {
    .footer__body {
        grid-template-columns: 1fr max-content;
  /*      border-bottom: none;*/
        gap: 3.5rem;
    }

    .f-menu__list {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        grid-template-columns: 1.25fr 1fr 1fr .75fr;
        grid-template-columns: 1.5fr 1fr;
    }

    .f-contacts {
        /*display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: "tel social" "email social" "address social";
        width: 100%;
        flex-direction: row;*/
        gap: calc(var(--gap) / 4);
    }

    .f-social {
        margin-top: 0;
        margin-left: 0;
        grid-column: 1/4;
    }

    .footer__bottom {

    }
}



@media (max-width: 768px) {
    .footer__body  {
        grid-template-columns: 1fr;
        gap: var(--gap);
        padding: 2rem 0;
    }
    .f-menu__list {
        grid-template-columns: 1fr;
    }
}
/* /FOOTER 2 */


/*TAGS*/
.tags {
    display: flex;
    row-gap: .5rem;
    column-gap: .25rem;
    flex-wrap: wrap;
    align-items: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
    width: fit-content;
    transition: all .2s ease-in-out;
    border: 1px solid transparent;
    position: relative;
    padding: .25rem .5rem;

    background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/*/TAGS*/

/*ASIDE*/
.aside {
    position: relative;
}

.aside__title {
    color: var(--primary-color);
}

.aside__list {
    position: sticky;
    top: 0;
}

.aside__item {
    transition: var(--transition);
    /*padding: 1rem;*/
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding-left: 0;
}

.aside__item:hover {
    /*background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: #dfe1e91c;*/
}

.aside__item::before {
    content: unset;
}

.aside__item a {
    color: var(--white);
}

.aside__item:hover a {
    color: var(--primary-color);
}

/*/ASIDE*/


/* SERVICES*/
.services {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: calc(var(--gap) * 3);
}

.services__aside {
    position: relative;
}

.services__body {
    position: relative;
}

/* /SERVICES*/