/* USER VARIABLES SECTION */
:root {
    --accent: #728AFB;
    --main: #363636;
    --light-main: rgba(54, 54, 54, 0.7);
    --bg-color: #F0F1F4;
    --dark-grey: #797D8E;
    --extra-white: rgba(255, 255, 255, 0.7);
    --light-purple: #F1F3FF;
    --lavand: #E3E6F5;
    --gap: 20rem;
    --indent: 20rem;
    --radius: 30rem;
    --radiusbig: 100rem;
    --txt: 20rem;
}

/* FONTS LOAD SECTION */
@font-face {
    src: url("../fonts/Archivo-Regular.woff2") format("woff2");
    font-family: "archivo-regular";
}

@font-face {
    src: url("../fonts/Archivo-Medium.woff2") format("woff2");
    font-family: "archivo-medium";
}

@font-face {
    src: url("../fonts/Roboto-Regular.woff2") format("woff2");
    font-family: "roboto-regular";
}

@font-face {
    src: url("../fonts/Roboto-Medium.woff2") format("woff2");
    font-family: "roboto-medium";
}

/* GENERAL CSS SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #eee;
}

*::-webkit-scrollbar {
    height: 6rem;
    width: 6rem;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 5rem;
}

::placeholder {
    color: var(--light-main);
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

button {
    border: none;
    font-family: 'roboto-regular', sans-serif;
    font-size: var(--txt);
}

button:disabled,
.btn:disabled {
    pointer-events: none;
    opacity: .6;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input,
textarea {
    width: 100%;
    outline: none;
    color: var(--main);
    height: 68rem;
    font-size: var(--txt);
    border: none;
    box-shadow: none;
    font-family: 'roboto-regular', sans-serif;
    border: 1rem solid var(--light-main);
    padding: 20rem 24rem;
    border-radius: 16rem;
    background-color: transparent;
}

input[name="phone"] {
    background-image: url("../images/svg/flag-spain.svg");
    background-size: 18rem;
    background-repeat: no-repeat;
    background-position: 24rem center;
    padding-left: 52rem;
}

textarea {
    height: 120rem;
    resize: none;
}

html {
    font-size: calc(1vw / 19.6);
}

body {
    font-family: 'roboto-regular', sans-serif;
    font-size: var(--txt);
    color: var(--main);
    position: relative;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

body.overflow {
    overflow: hidden;
    position: relative;
}

address {
    font-style: normal;
}

img {
    max-width: 100%;
    pointer-events: none;
    user-select: none;
    object-fit: cover;
    object-position: center;
}

img.lazy {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6,
.card-title {
    font-weight: normal;
    font-style: normal;
    font-family: 'archivo-regular', sans-serif;
    margin-bottom: var(--indent);
}

h1,
.heading,
h2,
.heading2 {
    font-size: 64rem;
    margin-bottom: 45rem;
    line-height: 130%;
}

h3,
.heading3 {
    font-size: 40rem;
    line-height: 130%;
}

h4,
.heading4 {
    font-size: 26rem;
}

h5,
.heading5 {
    font-size: 24rem;
}

h6,
.heading6 {
    font-size: 22rem;
}

.card-title {
    font-size: 32rem;
    line-height: 125%;
}

.txt-big {
    font-family: 'archivo-regular', sans-serif;
    font-size: 24rem;
    line-height: 150%;
    color: var(--extra-white);
}

.txt-big ul,
.txt-big ol {
    padding-left: var(--gap);
}

.txt-big ul li,
.txt-big ol li {
    margin-bottom: calc(var(--indent) / 2);
}

.txt {
    line-height: 150%;
}

.txt ul,
.txt ol {
    padding-left: var(--gap);
}

a {
    color: var(--main);
    display: inline-block;
    transition: color .4s ease;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

b,
strong,
.bold {
    font-family: 'archivo-medium', sans-serif;
}

p:not(:last-child) {
    margin-bottom: var(--indent);
}

ul,
ol {
    margin-bottom: var(--indent);
}

svg {
    transition: stroke .4s ease, fill .4s ease;
    flex: 0 0 auto;
    fill-rule: evenodd;
    clip-rule: evenodd;
}

/* USER STYLES */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20rem 40rem;
    background-color: transparent;
    color: #fff;
    border: 1rem solid #fff;
    border-radius: var(--radiusbig);
    transition: background-color .4s ease, color .4s ease, border-color .4s ease;
    max-width: max-content;
    cursor: pointer;
    font-size: 26rem;
    gap: var(--gap);
}

.btn-white {
    background-color: #fff;
    color: var(--main);
}

.btn-accent {
    background-color: var(--accent);
    border-color: transparent;
}

.btn>img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
    width: 16rem;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 100rem;
    position: relative;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 30rem 0;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.content-error+.footer {
    display: none;
}

.section {
    margin-top: 120rem;
}

.content>*:last-child {
    margin-bottom: 120rem;
}

.content .error-page {
    margin-bottom: 0;
}

.heading-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    margin-bottom: 45rem;
}

.heading-block>* {
    margin-bottom: 0;
}

.heading-block__text {
    width: 50%;
}

.heading-block:has(.heading-block__wrap) {
    align-items: end;
}

.description {
    margin-bottom: 50rem;
    color: var(--main);
}

.sticky {
    position: sticky;
    top: 130rem;
    height: min-content;
}

.block-content {
    background: rgba(21, 22, 43, 0.26);
    border-radius: var(--radius);
    padding: 60rem 50rem;
    backdrop-filter: blur(59.5rem);
    -webkit-backdrop-filter: blur(59.5rem);
}

.arrow {
    width: 64rem;
    height: 64rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1rem solid #fff;
    border-radius: 50%;
    flex: 0 0 auto;
    overflow: hidden;
}

.arrow>* {
    height: 14rem;
    transform-origin: center;
    transition: transform .4s ease;
    transform: rotate(45deg);
}

.bar-menu {
    display: none;
}

/* str-elem */
.str-elem::after,
.str-elem::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8rem;
    height: 2rem;
    background-color: var(--main);
    transition: transform .4s ease;
}

.str-elem-big::before,
.str-elem-big::after {
    width: 12rem;
}

.str-elem::before {
    transform: translate(-80%, 0%) rotate(45deg);
}

.str-elem::after {
    transform: translate(-20%, 0%) rotate(-45deg);
}

.active>.str-elem::after {
    transform: translate(-20%, -50%) rotate(45deg);
}

.active>.str-elem::before {
    transform: translate(-80%, -50%) rotate(-45deg);
}

/* header */
.header {
    position: absolute;
    width: calc(100% - 36rem);
    top: 45rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    transition: top .4s ease;
}

.header.fixed {
    position: fixed;
    top: 20rem;
}

.header__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__wrapper {
    background-color: #fff;
    border-radius: var(--radiusbig);
    padding: 18rem 36rem;
    display: flex;
    gap: var(--gap);
    align-items: center;
    justify-content: space-between;
    border: 1rem solid rgba(66, 66, 66, 0.04);
    box-shadow: 2rem 4rem 20rem 0 rgba(23, 15, 43, 0.1);
}

.header__logo img {
    width: 244rem;
}

.header__nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: 'archivo-medium', sans-serif;
    font-size: 18rem;
}

.header__nav>ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: calc(var(--gap) * 2);
    row-gap: calc(var(--gap) / 2);
}

.header__nav li {
    position: relative;
}

.header__nav .str-elem {
    width: 20rem;
    height: 20rem;
    display: inline-block;
    position: relative;
    padding-left: 25rem;
    margin-left: -5rem;
    cursor: pointer;
}

.header__nav li>ul {
    position: absolute;
    left: -15rem;
    background-color: #fff;
    border-radius: 16rem;
    padding: 20rem 16rem;
    box-shadow: 3rem 4rem 15rem 0 rgba(0, 0, 0, 0.2);
    width: max-content;
    font-family: 'archivo-regular', sans-serif;
    line-height: 150%;
    transition: opacity 0.3s ease 0.2s, visibility 0s linear 0.2s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.header .btn {
    font-family: "roboto-medium", sans-serif;
    font-size: 18rem;
    padding: 16rem 40rem;
}

.header .socials {
    display: none;
}

/* hero */
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 30rem);
    padding: calc(120rem * 1.5) 0 60rem;
    gap: var(--gap);
    position: relative;
    padding: 140rem 18rem 24rem 18rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero__title {
    font-size: 72rem;
    color: #fff;
    line-height: normal;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.hero__content .block-content {
    width: 42%;
}

.hero__text {
    width: 90%;
    margin-bottom: 90rem;
}

.hero-internal .hero__content {
    justify-content: space-between;
}

.hero-internal .breadcrumbs {
    margin-top: 0;
    color: #fff;
}

.hero-internal .breadcrumbs-wrap a {
    color: var(--extra-white);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
}

.hero-tag {
    padding: 12rem 36rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    color: #fff;
    border-radius: 14rem;
    background-color: rgba(255, 255, 255, 0.13);
}

.hero-tag>img {
    width: 20rem;
}

/* products  */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.product-card__content {
    padding: 20rem;
    display: flex;
    gap: var(--gap);
    justify-content: space-between;
}

.product-card__info {
    display: flex;
    flex-direction: column;
}

.product-card {
    min-height: 500rem;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    padding: 16rem;
}

.product-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.product-card__arrow>* {
    transform: rotate(0deg);
    filter: brightness(0) invert(1);
}

/* content-block */
.content-block__wrap {
    background-color: var(--dark-grey);
    border-radius: var(--radius);
    padding: 60rem;
    display: flex;
    justify-content: space-between;
    gap: 140rem;
    color: #fff;
    position: relative;
}

.content-block__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-block__info:has(.btn) .sticky {
    margin-bottom: 100rem;
}

.content-block__wrap.accent {
    background: linear-gradient(0deg, #6E83E9, #6E83E9),
        linear-gradient(98.76deg, #6E83E9 -24.99%, #7C90F0 115.32%);
    color: #fff;
}
.content-block__wrap.accent.applications {
    background: #797D8E;
}

.content-block__wrap.line {
    overflow: hidden;
    z-index: 1;
}

.content-block__wrap.line::before {
    content: "";
    position: absolute;
    bottom: -110rem;
    left: 170rem;
    width: 250rem;
    height: 150%;
    background-color: #fff;
    opacity: 0.1;
    transform: rotate(25deg);
    z-index: -1;
}

.content-block__wrap.line .content-block__info {
    width: 66%;
    margin-left: auto;
}

.content-block__wrap.min .content-block__info {
    width: 43%;
}

.content-block__wrap.line-img {
    overflow: hidden;
    z-index: 1;
}

.content-block__wrap.line-img img {
    position: absolute;
    width: 50%;
    top: 50%;
    right: -150rem;
    transform: translateY(-50%);
    z-index: -1;
}

.content-block__wrap.empty {
    padding: 0;
    background-color: transparent;
    color: var(--main);
}

.content-block__wrap.half>* {
    width: 50%;
}

.content-block__img {
    border-radius: var(--radius);
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
}

.content-block__img.fill {
    width: 66%;
}

.content-block__img.min {
    width: 41%;
}

.content-block__video {
    display: flex;
    justify-content: space-between;
    gap: 70rem;
    margin-top: 40rem;
}

.content-block__video .block-video {
    width: 58%;
    flex: 0 0 auto;
}

/* block-video */
.block-video {
    display: flex;
    position: relative;
}

.block-video__img {
    width: 100%;
    height: 586rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.block-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110rem;
    height: 110rem;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50%;
    z-index: 1;
    backdrop-filter: blur(7.2rem);
    -webkit-backdrop-filter: blur(7.2rem);
}

.block-video__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15rem 0 15rem 30rem;
    border-color: transparent transparent transparent #fff;
    transition: border-color .4s ease;
}

/* content-background */
.content-background__block {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    z-index: 1;
    padding: 60rem 50rem;
    display: flex;
    justify-content: flex-end;
}

.content-background .img-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.content-background .img-background img {
    width: 100%;
    height: 100%;
}

.content-background__wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 36rem;
}

.content-background__block .txt {
    color: #fff;
    margin-bottom: 210rem;
}

/* protection */
.protection__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.protection-item {
    background-color: #fff;
    border-radius: var(--radius);
    min-height: 400rem;
    padding: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--gap);
    transition: box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.protection-item.active {
    background: linear-gradient(0deg, #728AFB, #728AFB),
        linear-gradient(98deg, #7C90F0 8.64%, #9CAEFF 100%);
}

.protection-item.active .protection-item__title {
    color: #fff;
}

.protection-item.active .protection-item__icon>* {
    filter: brightness(0) invert(1);
}

.protection-item.active::before,
.protection-item.active::after {
    opacity: 0;
}

.protection-item::before,
.protection-item::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: var(--radius);
    opacity: .3;
    transform: rotate(-30deg);
    transition: opacity .4s ease;
}

.protection-item:nth-child(5n+1):before {
    right: -200rem;
    bottom: 0;
    background: linear-gradient(134.9deg, #D0D8FF -1.08%, rgba(208, 216, 255, 0) 74.96%);
    width: 424rem;
    height: 290rem;
}

.protection-item:nth-child(5n+1)::after {
    right: -130rem;
    top: -170rem;
    background: linear-gradient(1.03deg, rgba(208, 216, 255, 0.27) 0.9%, #D0D8FF 99.1%);
    width: 320rem;
    height: 340rem;
}

.protection-item:nth-child(5n+2) {
    grid-column: span 2;
}

.protection-item:nth-child(5n+2)::before {
    background: linear-gradient(339.28deg, rgba(208, 216, 255, 0.0891) 48.49%, rgba(208, 216, 255, 0.33) 86.28%);
    width: 685rem;
    height: 345rem;
    opacity: .7;
    right: -350rem;
    bottom: 0;
}

.protection-item:nth-child(5n+2)::after {
    background: linear-gradient(20.61deg, rgba(208, 216, 255, 0.0891) 23.14%, rgba(208, 216, 255, 0.33) 80.64%);
    width: 770rem;
    height: 740rem;
    right: -250rem;
    top: -300rem;
    opacity: 1;
}

.protection-item:nth-child(5n+3)::before {
    background: linear-gradient(339.28deg, rgba(208, 216, 255, 0.0891) 48.49%, rgba(208, 216, 255, 0.33) 86.28%);
    width: 350rem;
    height: 200rem;
    bottom: 0;
    right: -90rem;
}

.protection-item:nth-child(5n+3)::after {
    background: linear-gradient(324.48deg, rgba(208, 216, 255, 0.27) 45.41%, #D0D8FF 136.46%);
    width: 200rem;
    height: 350rem;
    top: -100rem;
    right: -100rem;
}

.protection-item:nth-child(5n+4) .protection-item__title {
    width: 75%;
}

.protection-item:nth-child(5n+4)::before {
    width: 210rem;
    height: 280rem;
    background: linear-gradient(346.4deg, rgba(208, 216, 255, 0.27) 46.3%, #D0D8FF 91.51%);
    right: -100rem;
    bottom: 20rem;
}

.protection-item:nth-child(5n+4)::after {
    display: none;
}

.protection-item:nth-child(5n+5)::before {
    background: linear-gradient(339.28deg, rgba(208, 216, 255, 0.0891) 48.49%, rgba(208, 216, 255, 0.33) 86.28%);
    opacity: .7;
    width: 520rem;
    height: 280rem;
    bottom: -200rem;
    right: -200rem;
}

.protection-item:nth-child(5n+5)::after {
    background: linear-gradient(324.48deg, rgba(208, 216, 255, 0.27) 45.41%, #D0D8FF 136.46%);
    width: 330rem;
    height: 464rem;
    right: -130rem;
    top: -150rem;
}

.protection-item__title {
    width: 90%;
    transition: color .3s ease;
    margin-bottom: 0;
}

.protection-item__icon>* {
    width: 54rem;
    transition: filter .1s ease;
}

/* advantage */
.advantage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.advantage-item {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 36rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-item__title {
    display: flex;
    gap: var(--gap);
}

.advantage-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60rem;
    height: 60rem;
    border-radius: 10rem;
    background-color: var(--light-purple);
    flex: 0 0 auto;
}

.advantage-item__icon>* {
    width: 30rem;
}

/* certificates */
.certificates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45rem var(--gap);
}

.certificate-item {
    border: 1rem solid var(--dark-grey);
    background-color: transparent;
    padding: 50rem 40rem;
    transition: background-color .4s ease;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}

.certificate-item__wrap {
    display: flex;
    flex-direction: column;
}

.certificate-item__icon {
    margin-bottom: 60rem;
    width: 76rem;
    height: 76rem;
    background-color: var(--lavand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
}

.certificate-item__icon>* {
    width: 36rem;
}

/* installation */

.installation__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    counter-reset: step-counter;
}

.installation-item {
    counter-increment: step-counter;
    background-color: #fff;
    border-radius: var(--radius);
    padding: 32rem 36rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 340rem;
}

.installation-item:last-child {
    background: linear-gradient(97.99deg, #95A7FF 8.64%, #7C90F0 86.66%);
    justify-content: space-between;
}

.installation-item:not(:last-child):after {
    content: counter(step-counter);
    position: absolute;
    top: -60rem;
    right: -35rem;
    z-index: -1;
    font-size: 220rem;
    line-height: 150%;
    font-family: "archivo-regular", sans-serif;
    color: var(--accent);
    opacity: 0.3;
}

.installation-item__title {
    margin-bottom: 0;
}

.installation-item__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.installation-item__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 30, 56, 0.4);
}

.installation-item__img+.installation-item__title {
    color: #fff;
}

.installation-item:has(.installation-item__img):not(:last-child)::after {
    color: #fff;
    opacity: 0.4;
}

/* projects */
.projects__text {
    width: 67%;
}

.projects__block {
    margin: 50rem 0 20rem;
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
}

.projects__block.sticky {
    z-index: 1;
}

.projects__block.sticky .tab {
    background-color: var(--bg-color);
}

.projects-slider {
    padding: 2rem;
}

.project {
    width: 705rem;
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project__elem {
    padding: 36rem;
}

.project__img {
    width: 100%;
    height: 430rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.projects .swiper {
    overflow: visible;
}

.projects .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.projects-internal .projects__block {
    margin-bottom: 40rem;
}

.project-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40rem;
    position: relative;
    padding: 36rem;
    background-color: #fff;
    border-radius: var(--radius);
}

.project-card__category {
    position: absolute;
    top: 56rem;
    left: 56rem;
    background-color: #fff;
    border-radius: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 24rem;
    color: var(--main);
}

.project-card__img {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 410rem;
}

.project-card__elem {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.project-card__info {
    display: flex;
    gap: var(--gap);
    justify-content: space-between;
    align-items: end;
}

.project-card__arrow {
    border-color: var(--main);
}

.project-card__arrow>* {
    filter: brightness(0) invert(0);
    transform: rotate(0);
}

.project-card__data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.project-card__date {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.project-card__date::after {
    content: "";
    width: 1rem;
    height: 100%;
    background-color: var(--main);
    opacity: 0.2;
    display: inline-block
}

.project-card__place {
    display: flex;
    gap: 5rem;
}

.project-card__place img {
    width: 14rem;
    height: min-content;
    filter: grayscale(1) brightness(0);
    flex: 0 0 auto;
    margin-top: 2rem;
}

.project-video {
    background-color: transparent;
}

.project-video .project__elem {
    margin-top: 40rem;
    padding: 0;
}

.project-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90rem;
    height: 90rem;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50%;
    z-index: 1;
    backdrop-filter: blur(7.2rem);
    -webkit-backdrop-filter: blur(7.2rem);
}

.project-video__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13rem 0 13rem 26rem;
    border-color: transparent transparent transparent #fff;
    transition: border-color .4s ease;
}

/* tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
    position: relative;
}

.tab {
    padding: 20rem 50rem;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
    outline: 1rem solid var(--main);
    border-radius: var(--radiusbig);
}

.tab.active {
    outline: 1rem solid var(--accent);
    color: var(--accent);
}

.tabs .toggle-body {
    position: absolute;
    width: 100%;
    max-height: 250rem;
    overflow-y: auto;
    left: 0;
    top: calc(100% + 10rem);
    border-radius: var(--radius);
    z-index: 2;
    background-color: #fff;
    box-shadow: 3rem 4rem 15rem 0 rgba(0, 0, 0, 0.2);
}

.tabs .toggle-body .tab {
    outline: none;
}

.tabs .toggle-body .tab:not(:first-child) {
    padding-top: 0;
}

.tab.active.str-elem {
    padding-right: 60rem;
}

.tab.str-elem::after,
.tab.str-elem::before {
    right: 22rem;
}

.tab.active.str-elem::after,
.tab.active.str-elem::before {
    background-color: var(--accent);
}

.tab.white {
    background-color: #fff;
    color: var(--main);
    outline: none;
}

.tab.white.str-elem::before,
.tab.white.str-elem::after {
    background-color: var(--main);
}

/* swiper */
[data-swiper-container] {
    overflow: hidden;
}

.swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12rem;
}

.swiper-navigation.absolute {
    z-index: 1;
    padding: 0 20rem;
}

.swiper-navigation.absolute .swiper-button {
    background-color: rgba(255, 255, 255, .8);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.swiper-navigation.absolute .swiper-button.prev {
    left: 20rem;
    transform: translateY(-50%) rotate(180deg);
}

.swiper-navigation.absolute .swiper-button.next {
    right: 20rem;
}

.swiper-button {
    cursor: pointer;
    border-color: 1rem solid var(--main);
    transition: background-color .4s ease;
}

.swiper-button.prev {
    transform: rotate(180deg);
}

.swiper-button>* {
    filter: brightness(0) invert(0);
}

.swiper-button.swiper-button-disabled {
    pointer-events: none;
    opacity: .6;
}

.swiper-wrapper {
    align-items: stretch;
}

/* faq */
.faq__container {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
}

.faq__container.half>* {
    width: 50%;
}

.faq__wrapper {
    width: 66%;
    flex: 0 0 auto;
}

.faq__wrapper.lists .faq-item__title {
    padding: 32rem 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.faq__wrapper.lists .faq-item__title::before {
    content: "";
    position: relative;
    display: block;
    width: 10rem;
    height: 10rem;
    background-color: var(--accent);
    border-radius: 50%;
    flex: 0 0 auto;
    top: 6rem;
}

.faq-item__text {
    padding-bottom: 40rem;
    width: 80%;
}

.faq-item:last-child {
    border-bottom: 1rem solid rgba(36, 36, 36, .2);
}

.faq-item__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: 40rem 0;
    border-top: 1rem solid rgba(36, 36, 36, .2);
    margin-bottom: 0;
}

.faq-item__arrow {
    border-color: var(--light-main);
}

.faq-item__arrow>* {
    filter: brightness(0) invert(0);
    transform: rotate(90deg);
}

.faq-item.active .faq-item__arrow>* {
    transform: rotate(0);
}

/* articles */
.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.article-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: var(--radius);
    padding: 36rem 24rem;
    transition: box-shadow .4s ease;
}

.article-card__category {
    position: absolute;
    top: 24rem;
    left: 24rem;
    background-color: #fff;
    border-radius: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 24rem;
    color: var(--main);
    z-index: 1;
}

.article-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.article-card__date {
    font-size: 14rem;
}

.article-card__info {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--indent);
}

.article-card__link {
    margin-top: auto;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10rem;
}

.article-card__link img {
    height: 12rem;
    transform-origin: center;
    transform: rotate(90deg);
    transition: transform .4s ease;
}

.article-card__img {
    width: calc(100% + 48rem);
    height: 300rem;
    border-radius: var(--radius);
    overflow: hidden;
    margin-left: -24rem;
    margin-top: -36rem;
    margin-bottom: 36rem;
}

.article-card__img img {
    transition: transform .4s ease;
}

.articles-internal .articles__grid {
    gap: 80rem var(--gap);
}

.articles-internal .article-card__date {
    order: 1;
}

.articles-internal .article-card {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.articles-internal .article-card:first-child {
    grid-column: span 2;
    padding: 100rem 36rem 40rem;
    justify-content: end;
    color: #fff;
    min-height: 450rem;
}

.articles-internal .article-card:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 20rem;
    background: linear-gradient(0deg, rgba(29, 30, 56, 0.4), rgba(29, 30, 56, 0.4));
}

.articles-internal .article-card:first-child .article-card__date {
    color: #fff;
}

.articles-internal .article-card:first-child .article-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.articles-internal .article-card__text {
    margin-bottom: 10rem;
}

.articles-internal .article-card:first-child .article-card__text {
    color: var(--extra-white);
}

.articles-internal .article-card:not(:first-child) .article-card__text {
    display: none;
}

.articles-internal .article-card:first-child .article-card__info {
    width: 63%;
    margin-bottom: var(--indent);
}

.articles-internal .article-card__img {
    width: 100%;
    height: 380rem;
    margin: 0 0 20rem;
    border-radius: 20rem;
}

.articles-internal .article-card__info {
    margin-bottom: 0;
}

.articles-internal .article-card__content {
    gap: 0;
}

.articles-internal .tabs {
    min-width: 350rem;
    max-width: 450rem;
}

.articles-internal .tab {
    width: 100%;
}

.ajax-load-more {
    margin: 40rem auto 0;
}

.ajax-load-more:not(.load) {
    max-width: max-content;
}

/* article */
.article_category {
    background-color: #fff;
    border-radius: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 24rem;
    color: var(--main);
    width: max-content;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap);
    align-items: center;
    margin-bottom: 30rem;
}

.article__wrap {
    display: flex;
    gap: var(--gap);
    position: relative;
}

.article__content {
    width: 66%;
}

.artcile__img {
    width: 100%;
    height: 630rem;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 60rem;
}

.article-mailing {
    width: 494rem;
    height: max-content;
    flex: 0 0 auto;
    padding: 35rem 30rem;
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4rem 16rem 0 rgba(0, 0, 0, 0.08);
}

.article-mailing__form .form-wrap>*:last-child:not(.form-item) {
    margin-top: var(--indent);
}

.article-structure {
    margin-bottom: 60rem;
}

.article-structure__items {
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.article-structure__item {
    counter-increment: step-counter;
    display: flex;
    cursor: pointer;
    width: max-content;
}

.article-structure__item::before {
    content: counter(step-counter) ". ";
}

.article-description {
    display: flex;
    flex-direction: column;
    gap: 30rem;
}

.article-description__item.block {
    background-color: #fff;
    border-radius: 16rem;
    padding: 26rem 30rem;
}

.article-description__item-text {
    font-size: 22rem;
    color: var(--light-main);
}

.article-description__item-text p:last-child {
    margin-bottom: 0;
}

.article-description__item .swiper-slide__img {
    height: 420rem;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-description__slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

.article__share {
    padding: 40rem 30rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: var(--radius);
    gap: var(--gap);
}

/* contact */
.contact-form__container {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
}

.contact-form__container .form {
    width: 41%;
    flex: 0 0 auto;
}

.contact-form__img {
    width: 59%;
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 740rem;
}

.contact-form-internal .form {
    order: 1;
}

.contact-form__info {
    padding: 70rem;
    background-color: #fff;
    border-radius: var(--radius);
    width: 59%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-form__wrap {
    margin-top: 60rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36rem;
}

.contact-form__item-text {
    margin-top: 8rem;
    font-size: 24rem;
}

.contact-form__info-img {
    position: absolute;
    top: -70rem;
    right: 0;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.contact-form__block {
    background: linear-gradient(98.76deg, #6E83E9 -24.99%, #7C90F0 115.32%);
    border-radius: var(--radius);
    padding: 50rem 70rem;
    display: flex;
    flex-direction: column;
    width: 67%;
}

.contact-form-info .contact-form__info {
    padding: 30rem 36rem;
    width: 33%;
}

.contact-form-info .contact-form__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap);
    margin: 0;
    position: relative;
}

.contact-form-info .contact-form__wrap::after,
.contact-form-info .contact-form__wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: var(--radius);
    opacity: .3;
    transform: rotate(-30deg);
}

.contact-form-info .contact-form__wrap::after {
    right: -170rem;
    top: -170rem;
    background: linear-gradient(1.03deg, rgba(208, 216, 255, 0.27) 0.9%, #D0D8FF 99.1%);
    width: 320rem;
    height: 340rem;
}

.contact-form-info .contact-form__wrap::before {
    right: -300rem;
    bottom: -100rem;
    background: linear-gradient(134.9deg, #D0D8FF -1.08%, rgba(208, 216, 255, 0) 74.96%);
    width: 424rem;
    height: 290rem;
}

/* form */
.form {
    border-radius: var(--radius);
    padding: 70rem;
}

.form-accent {
    background: linear-gradient(98.76deg, #6E83E9 -24.99%, #7C90F0 115.32%);
}

.form-dark {
    background-color: #797D8E;
}

.form-white {
    background-color: #fff;
}

.form input,
.form textarea {
    background-color: rgba(255, 255, 255, .15);
    border-color: transparent;
    color: #fff;
}

.form ::placeholder {
    color: var(--extra-white);
}

.form-white input,
.form-white textarea {
    border-color: var(--light-main);
    background-color: #fff;
    color: var(--main);
}

.form-white ::placeholder {
    color: var(--light-main);
}

.form.fill .form-title {
    opacity: 0.15;
    font-size: 130rem;
    font-family: "archivo-medium", sans-serif;
    line-height: 150%;
}

.form-title {
    color: #fff;
    font-size: 46rem;
    line-height: 150%;
    margin-bottom: var(--indent);
    font-family: "archivo-regular", sans-serif;
}

.form-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.form-half .form-wrap {
    margin-top: 0;
}

.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-top: var(--indent);
}

.form-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
    margin-top: 50rem;
}

.form-item .toggles {
    position: relative;
}

.form-item .toggle-head {
    min-height: 68rem;
    border: 1rem solid #fff;
    padding: 20rem 24rem;
    padding-right: 50rem;
    border-radius: 16rem;
    display: flex;
    align-items: center;
    color: var(--extra-white);
    font-size: var(--txt);
}

.form-item .toggle-head.str-elem::after,
.form-item .toggle-head.str-elem::before {
    background-color: var(--extra-white);
    right: 20rem;
}

.form-item .toggle-body {
    position: absolute;
    width: 100%;
    background-color: #fff;
    border-radius: 12rem;
    z-index: 1;
}

.form-item .toggle-body .check {
    margin-top: 0;
    padding: 12rem 20rem;
    display: flex;
    align-items: center;
    border-bottom: 1rem solid rgba(36, 36, 36, .2);
    color: var(--light-main);
}

.form-item .toggle-body .check-label {
    font-size: 16rem;
}

.form-item .toggle-body .check input[type=checkbox]:checked+.check-label::before {
    background-color: var(--main);
}

.form-item .toggle-body .check input[type=checkbox]:checked+.check-label::after {
    border-color: #fff;
}

.form-item__title {
    color: var(--extra-white);
    margin: 12rem 0;
}

form .uk-form-danger {
    border-color: #FB4428;
    background-color: rgba(251, 68, 40, 0.05);
}

form .title-form-danger {
    color: #FB4428;
    font-size: 14rem;
    margin: 4rem 0;
}

.form-item__file {
    position: relative;
    border: 1rem dashed #fff;
    height: 220rem;
    padding: 20rem 24rem;
    border-radius: 16rem;
    color: var(--extra-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    text-align: center;
    transition: height 0.4s ease;
}

.form-item__file.has-files {
    height: 130rem;
}

.form-item__file img {
    width: 24rem;
}

.form-item__file input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-name b {
    color: #fff;
}

.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.file-preview:first-child {
    margin-top: 20rem;
}

.file-preview {
    display: flex;
    align-items: center;
    border-radius: 14rem;
    background: var(--extra-white);
    padding: 10rem 16rem;
    position: relative;
    gap: var(--gap);
    font-size: 18rem;
}

.file-preview.error .file-status {
    color: #FB4428;
    font-size: 14rem;
}

.file-details {
    width: 100%;
    gap: var(--gap);
    position: relative;
}

.file-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.file-thumbnail {
    width: 68rem;
    height: 68rem;
    flex-shrink: 0;
    border-radius: 8rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.file-thumbnail img {
    width: 100%;
    height: 100%;
}

.file-preview.error .file-thumbnail img {
    filter: grayscale(1);
    opacity: 0.4;
}

.file-preview.error .progress,
.file-preview.success .progress {
    display: none;
}

.file-thumbnail::before {
    display: none;
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.file-preview.error .file-thumbnail::before {
    content: '!';
    display: flex;
    background-color: #FB4428;
}

.file-preview.success .file-thumbnail::before {
    content: '✓';
    display: flex;
    background-color: var(--main);
}

.file-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.file-header span {
    word-break: break-word;
    overflow-wrap: break-word;
}

.file-status {
    font-size: 12rem;
    color: var(--light-main);
    margin-top: 4rem;
}

.file-success {
    color: green;
    margin-left: 8rem;
}

.file-preview .progress {
    height: 3rem;
    background: rgba(36, 36, 36, .2);
    width: 100%;
    border-radius: 18rem;
    overflow: hidden;
    margin-top: 15rem;
}

.file-preview .progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--main);
    transition: width 0.2s;
}

.file-actions {
    display: flex;
    gap: var(--gap);
}

.file-actions>* {
    width: 20rem;
    height: 22rem;
    background-size: contain;
    cursor: pointer;
}

.file-actions>*::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.file-actions .file-remove::before {
    background-image: url('../images/svg/remove.svg');
}

.file-actions .file-retry::before {
    background-image: url('../images/svg/retry.svg');
}

.file-preview .icon-image,
.file-preview .icon-pdf {
    width: 40rem;
    height: 40rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.file-preview .icon-image {
    background-image: url('../images/svg/file-image.svg');
}

.file-preview .icon-pdf {
    background-image: url('../images/svg/file-doc.svg');
}


/* check */
.check {
    margin-top: var(--indent);
}

.check input[type=checkbox]:checked+.check-label::after,
.check input[type=radio]:checked+.check-label::after {
    opacity: 1;
}

.check-label {
    position: relative;
    cursor: pointer;
    font-size: 18rem;
    display: inline-flex;
    margin: 0;
    padding-top: 2rem;
}

.check-label::before {
    content: '';
    width: 26rem;
    height: 26rem;
    border: 1rem solid var(--light-main);
    flex: 0 0 auto;
    margin-right: 14rem;
    border-radius: 5rem;
    display: inline-block;
    position: relative;
    top: -2rem;
}

.check-label.white::before {
    border-color: #fff;
}

.check input[type=checkbox]+.check-label::after {
    content: '';
    position: absolute;
    left: 7rem;
    top: 7rem;
    width: 14rem;
    height: 8rem;
    transition: opacity .2s ease;
    opacity: 0;
    border: 2rem solid var(--light-main);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

.check input[type=checkbox]+.check-label.white::after {
    border-color: #fff;
}

.check input[type=radio]+.check-label::before {
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/svg/radio.svg);
    background-size: 50% 50%;
}

/* toggle */
.toggle-head {
    cursor: pointer;
    position: relative;
}

.toggle-head-count {
    color: #fff;
    border-radius: 6rem;
    background-color: rgba(255, 255, 255, .3);
    padding: 2rem 8rem;
    margin-right: 8rem;
}

.toggle-head.tab {
    white-space: nowrap;
}

.toggle-head.tab span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.toggle-body {
    display: none;
}

/* internal */
.internal__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    min-height: calc(100vh - 30rem);
}

.internal__wrap.reverse .internal__img {
    order: 1;
}

.internal__wrap.light .internal-block {
    background: linear-gradient(321.4deg, #E1E2E8 0.06%, #CDCED8 99.94%);
}

.internal__wrap.accent .internal-block {
    background: linear-gradient(98.76deg, #6E83E9 -24.99%, #7C90F0 115.32%);
}

.internal__wrap.fill {
    grid-template-columns: repeat(1, 1fr);
    min-height: 600rem;
    overflow: hidden;
}

.internal__wrap.fill h1 {
    font-size: clamp(64rem, 20vw, 280rem);
    line-height: 0.3;
    font-family: "archivo-medium", sans-serif;
    opacity: 0.15;
    text-align: center;
    margin-bottom: 0;
}

.internal__wrap.fill h1.min {
    font-size: clamp(64rem, 20vw, 264rem);
    line-height: 0.2;
}

.internal__wrap.fill .internal-block__info {
    width: 100%;
}

.internal__img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100vh;
    min-height: 100%;
}

.internal-block {
    border-radius: var(--radius);
    padding: 140rem 70rem 60rem 70rem;
    background-color: var(--dark-grey);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.internal-block__img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.internal__wrap:not(.light) .internal-block {
    color: #fff;
}

.internal__wrap:not(.light) .breadcrumbs-wrap a {
    color: var(--extra-white);
}

.internal__wrap:not(.light) .internal-block .txt {
    color: var(--extra-white);
}

.internal-block__info {
    width: 80%;
}

.internal-block .breadcrumbs {
    margin-top: 0;
}

/* breadcrumbs */
.breadcrumbs {
    margin: 40rem 0;
}

.breadcrumbs-wrap>* {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12rem;
}

.breadcrumbs-wrap a {
    color: var(--light-main);
}

/* gallery */
.gallery__img {
    width: 530rem;
    height: 365rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery .swiper-slide {
    width: auto;
}

/* tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
    margin-bottom: 30rem;
}

.tag {
    padding: 20rem 36rem;
    border: 1rem solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radiusbig);
    margin-bottom: 0;
}

.tag.white {
    border-color: #fff;
}

/* models */
.models-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

.model__item {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 36rem;
    width: 100%;
}

/* modal */
.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, .54);
    z-index: 9999;
    transition: visibility 0s .25s, opacity .25s;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.modal__body {
    position: relative;
    margin: 0 var(--indent);
    max-height: 100%;
    width: 650rem;
    opacity: 0;
    background-color: #fff;
    transition: opacity 0s .25s, opacity .25s;
    border-radius: var(--radius);
}

.modal.show .modal__body {
    opacity: 1;
    transition: opacity 0s 0s, opacity .25s;
}

.modal__inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal__image img {
    width: 100%;
    height: 360rem;
}

.modal__inner-wrap {
    padding: 64rem 36rem 32rem 36rem;
    border-radius: var(--radius);
    background-color: #fff;
}

.modal__close {
    position: absolute;
    top: 30rem;
    right: 36rem;
    font-size: 40rem;
    z-index: 2;
    cursor: pointer;
    transition: color .4s ease;
}

.modal__text.success,
.modal__text.error {
    padding: 12rem 16rem;
    border-radius: 12rem;
}

.modal__text.success {
    color: #50774B;
    background-color: #EFFFE8;
}

.modal__text.error {
    color: #BA5A54;
    background-color: #FFEEED;
}

.modal .form {
    padding: 0;
}

.modal .btn {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.modal .form-btns {
    margin-top: 20rem;
}

/* team */
.team {
    width: 100%;
    min-height: 640rem;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 26rem 36rem;
}

.team__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.team__block {
    background-color: #fff;
    border-radius: 16rem;
    padding: 26rem 36rem;
}

.teams-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

.team__title {
    margin-bottom: 10rem;
}

/* equipments */
.equipments__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.equipment {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #fff;
}

.equipment__img {
    height: 370rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.equipment__block {
    padding: 36rem 50rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 370rem);
}

.equipment__text {
    margin-bottom: 50rem;
}

/* footer */
.footer {
    margin-top: auto;
}

.footer__wrap {
    background-color: #313134;
    padding: 60rem 60rem 30rem;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer__wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 460rem;
    height: 100%;
    background-image: url(../images/svg/footer.svg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.footer-menu {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 70rem;
}

.footer-menu__item:not(:last-child) {
    grid-column: span 2;
}

.footer-menu__item ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-menu__item {
    display: flex;
    flex-direction: column;
    gap: 50rem;
}

.footer-menu__item li:not(:last-child) {
    margin-bottom: 8rem;
}

.footer-menu__item a {
    font-size: 22rem;
    color: var(--extra-white);
    line-height: 150%;
    font-family: "archivo-regular", sans-serif;
}

.footer-menu__item-title {
    font-size: 18rem;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.25;
    margin-bottom: 24rem;
}

.footer__logo {
    width: 320rem;
    display: inline-block;
}

.footer-info__wrap {
    margin-top: 40rem;
    display: flex;
    flex-direction: column;
    gap: var(--indent);
}

.footer-elem {
    display: inline-flex;
    align-items: center;
    gap: 16rem;
    color: var(--extra-white);
    max-width: max-content;
    font-size: 18rem;
}

a.footer-elem {
    text-decoration: underline;
}

.footer-elem__icon {
    width: 20rem;
}

.footer-elem-address {
    width: 70%;
}

.footer__bottom {
    margin-top: 40rem;
    padding-top: 20rem;
    border-top: 1rem solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footer-pol {
    font-size: 18rem;
    color: #fff;
    opacity: 0.4;
    transition: opacity .4s ease;
}

/* socials */
.socials {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: var(--gap);
}

.socials__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.social-item {
    width: 64rem;
    height: 64rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    background-color: rgba(255, 255, 255, .08);
}

.social-item>* {
    width: 30rem;
    opacity: 0.6;
    transition: opacity .2s ease;
    filter: brightness(0) invert(1);
}

.social-text {
    text-transform: uppercase;
    font-size: 18rem;
    color: #fff;
    opacity: 0.25;
}

.socials.accent .social-item {
    background-color: var(--light-purple);
}

.socials.accent .social-item>* {
    filter: none;
}

/* map */
.map-container {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
}

.map-info {
    width: 59%;
    padding: 70rem;
    background-color: #fff;
    border-radius: var(--radius);
}

.map-info__text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    margin: 30rem 0 0;
}

.map-info__text ul li {
    margin-bottom: 0;
}

.map-address {
    position: relative;
    flex: 0 0 auto;
    width: 41%;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--dark-grey);
}

.map-address__item {
    position: absolute;
    left: 40rem;
    right: 40rem;
    bottom: 40rem;
    border-radius: var(--radius);
    background-color: var(--accent);
    color: #fff;
    padding: 26rem 36rem;
}

#map {
    width: 100%;
    height: 100%;
}
#map iframe {
    width: 100%;
    height: 100%;
}

/* images-slice */
.image-slices {
    display: flex;
    position: relative;
    gap: var(--gap);
}

.image-slice {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.image-slice:nth-child(1) {
    width: 125rem;
}

.image-slice:nth-child(2) {
    width: 270rem;
}

.image-slice:nth-child(3) {
    flex-grow: 1;
    min-width: 0;
    width: 100%;
}

.image-slice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-url);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 0;
    background-size: cover;
}

.image-slice:nth-child(1):before {
    background-position-x: 0;
}

.image-slice:nth-child(2):before {
    background-position-x: -125rem;
}

.image-slice:nth-child(3):before {
    background-position-x: calc(-125rem - 270rem);
}


/* error-page */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140rem);
    padding: 140rem 18rem 24rem 18rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.error-page__title {
    font-size: clamp(280rem, 50vw, 800rem);
    line-height: .1;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "archivo-medium", sans-serif;
}

.error-page__text {
    text-align: center;
    line-height: 110%;
}

/* gb */
.gb__content {
    display: flex;
    gap: var(--gap);
}

.gb__content>* {
    width: 50%;
}

.gb__list {
    padding-left: 120rem;
}

.gb__item {
    padding: 26rem 0;
    border-top: 1rem solid rgba(36, 36, 36, .18);
}

.gb__item:first-child {
    border: none;
}

.gb__slider {
    margin-bottom: var(--indent);
}

.gb__slider-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.gb__slider-img img {
    height: 500rem;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
}

.gb__thumb {
    cursor: pointer;
    border-radius: 16rem;
    overflow: hidden;
}

.gb__thumb img {
    height: 140rem;
    border-radius: 16rem;
    overflow: hidden;
    display: block;
}

/*load*/
.load {
    border: 6rem solid #fff;
    border-top: 6rem solid var(--accent);
    border-radius: 50%;
    max-width: none;
    width: 40rem;
    height: 40rem;
    animation: spinner 1s linear infinite;
    padding: 0;
    display: flex;
    background-color: transparent;
    transition: none;
}

.load.center {
    margin: 0 auto;
}

.load-center {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: spinner-center 1s linear infinite;
    transform: translate(-50%, -50%);
}

.load:not(.load-lazy)>* {
    display: none;
}

.load-lazy>* {
    opacity: 0;
    visibility: hidden;
}

.load-img {
    background-color: var(--dark-grey);
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner-center {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ----- */
.d-none {
    display: none;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.mt-auto {
    margin-top: auto;
}

.w-100 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.white {
    color: #fff;
}

.accent {
    color: var(--accent);
}

.c-main {
    color: var(--main);
}

.light-main {
    color: var(--light-main);
}

.bg-color {
    color: var(--bg-color);
}

.dark-grey {
    color: var(--dark-grey);
}

.extra-white {
    color: var(--extra-white);
}

.lavand {
    color: var(--lavand);
}

.light-purple {
    color: var(--light-purple);
}

.underline {
    text-decoration: underline;
}

.gal_title {
    max-width: 850rem;
    margin-bottom: 20rem;
}
.gal_descr {
    max-width: 850rem;
    color: var(--light-main);
    margin-bottom: 45rem;
    line-height: 1.5;
}

.content-block__info.content-block__info_inner_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80rem;
    row-gap: 26rem;
}
.content-block__info_item .txt {
    color: var(--light-main);
}
.content-block__wrap.min.wide .content-block__info {
    width: 100%;
    max-width: 1080rem;
}