* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300 700;
    src: url('../fonts/Montserrat.woff2') format('woff2');
    font-display: swap;
}

body {
    background-color: #1E1D1B;
    font-family: "Montserrat", sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

input,
textarea {
    outline: none;
    border: none;
}

button,
a {
    border: none;
    outline: none;
    cursor: pointer;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff2") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

h1, h2 {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    cursor: default;
}

h1, h2, h3, h4, h5, ul, li, a {
    margin: 0;
}

:root {
    --white-color: #ffffff;
    --black-color: #1b1b19;
    --red-color: #DC2626;
    --white-2: rgba(255, 255, 255, 0.02);
    --white-3: rgb(255 255 255 / 3%);
    --white-5: rgba(255, 255, 255, 0.05);
    --white-6: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
}

.landing {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            90deg,
            #2a0d0d 0%,
            #171717 22%,
            #121212 52%,
            #1a1010 100%
    );
}

.hero {
    position: relative;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
    opacity: 0.55;
}

.hero::before {
    width: 2339px;
    height: 1161px;
    left: -300px;
    top: -174px;
    background-image: url("../images/hero/vector1.svg");
    filter: blur(100px);
}

.hero::after {
    width: 2339px;
    height: 2000px;
    right: -300px;
    top: 0;
    background-image: url("../images/hero/vector2.svg");
}

.section__container {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    min-height: 96px;
    justify-content: space-between;
    z-index: 20;
}

.header__logo,
.footer__logo {
    width: 200px;
    height: 48px;
    user-select: none;
    -webkit-user-select: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header__nav {
    display: flex;
    gap: 40px;
}

.lang-switcher {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 21;
}

.section__dropdown-toggle {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: var(--white-color);
}

.section__dropdown-text {
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    font-size: 16px;
}

.header__dropdown-toggle {
    gap: 8px;
}

.header__dropdown-menu,
.lang-switcher__menu,
.services__slider {
    display: none;
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    width: 113px;
    height: auto;
    background: var(--white-5);
    padding: 12px;
    border-radius: 12px;
    z-index: 22;
}

.lang-switcher__link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: var(--white-color);
    padding: 10px 16px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switcher__link:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher__toggle {
    width: 113px;
    height: 48px;
    border-radius: 100px;
    padding: 10px 16px;
    background-color: var(--white-5);
}

.lang-switcher__current {
    font-weight: 500;
    margin-left: 8px;
    margin-right: 16px;
}

.lang-switcher__icon {
    width: 20px;
    height: 20px;
}

.lang-switcher__dropdown-icon.open {
    transform: rotate(180deg);
}

.header__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 100px;
    padding: 10px 24px;
    background-color: var(--red-color);
    color: var(--white-color);
    font-weight: 500;
    line-height: 1;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.header__button:hover,
.service-card__button:hover {
    background-color: var(--white-color);
    color: var(--red-color);
}

.hero__content {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 48px;
    padding: 92px 0 120px 0;
    z-index: 2;
}

.hero__info {
    display: flex;
    flex-direction: column;
    margin: 50px 0 150px;
    gap: 48px;
}

.hero__title {
    width: 100%;
    max-width: 1000px;
}

.hero__title,
.contact-form__title {
    font-size: 90px;
    color: var(--white-color);
    line-height: 1.4;
}

.section__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 329px;
    height: 72px;
    border-radius: 100px;
    padding: 10px 40px;
    gap: 12px;
    background-color: var(--white-color);
    color: var(--black-color);
    transition: background-color 0.3s, color 0.3s;
}

.hero__button-text {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1;
}

.section__button:hover,
.project-page__link:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.hero__button-icon,
.contact-form__submit-icon {
    width: 24px;
    height: 24px;
    color: inherit;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero__tag {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    font-size: 24px;
    line-height: 1;
    border-radius: 100px;
    background-color: #ce26268c;
    color: var(--white-color);
    transition: background-color 0.2s, color 0.2s;
}

.hero__wave {
    position: absolute;
    top: 450px;
    left: 170px;
    width: 1800px;
    height: 759px;
    background-image: url("../images/hero/hero_wave.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.hero__tag:hover {
    background-color: var(--white-color);
    color: #000000;
    cursor: default;
}

.services,
.portfolio,
.contact-form {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    padding: 120px 0;
}

.services,
.contact-form {
    z-index: 2;
    isolation: isolate;
}

.portfolio {
    z-index: 1;
}

.services::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 0;
    width: 100%;
    height: 350px;
    background-image: url("../images/services/red_bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    pointer-events: none;
    filter: blur(150px);
    z-index: -1;
}

.section__title {
    font-size: 56px;
    line-height: 1.4;
    color: var(--white-color);
}

.services__title {
    margin-bottom: 40px;
}

.services__tab-icon-wrap {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.services__tab-icon {
    position: absolute;
    inset: 0;
    width: 24px;
    height: 24px;
}

.service__tab-icon--active,
.services__tab--active .service__tab-icon--default {
    display: none;
}

.lang-switcher__menu.open,
.service__tab-icon--default,
.services__tab--active .service__tab-icon--active {
    display: block;
}

.services__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.services__tab {
    display: flex;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    border-radius: 8px;
    padding: 16px 24px;
    gap: 10px;
    font-size: 16px;
    line-height: 1;
    background-color: var(--white-5);
    color: var(--white-color);
    transition: background-color 0.2s;
}

.services__tab--active {
    background-color: var(--white-color);
    color: rgba(30, 29, 27, 1);
    font-weight: 600;
}

.services__tab:hover {
    background-color: rgba(255, 255, 255, 0.11);
}

.services__tab--active:hover {
    background-color: var(--white-color);
}

.services__slider--active {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: rgba(36, 36, 36, 0.68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px;
    z-index: 3;
}

.service-card__content {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

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

.service-card__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    color: var(--white-color);
}

.service-card__title--mobile {
    display: none;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.service-card__item::before {
    content: "";
    background-color: var(--red-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.service-card__item {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white-color);
    gap: 12px;
}

.service-card__item-icon {
    width: 8px;
    height: 8px;
}

.service-card__button {
    display: flex;
    width: 274px;
    height: 56px;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    padding: 10px 32px;
    border-radius: 100px;
    background-color: var(--red-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s;
}

.service-card__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card__image img,
.form-card__image img,
.project-page__card-image,
.contact-form__image img {
    display: block;
    width: 100%;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
}

.contact-form__image {
    display: flex;
    align-items: center;
}

.services__wave {
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 1505px;
    height: 759px;
    background-image: url("../images/services/service_wave.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.portfolio::before {
    content: "";
    position: absolute;
    top: -246px;
    left: 70%;
    transform: translateX(-50%) rotate(180deg);
    width: 1280px;
    height: 780px;
    background-image: url("../images/hero/vector1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    filter: blur(200px);
    pointer-events: none;
    opacity: 0.55;
    z-index: -1;
}

.portfolio__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.portfolio__link:hover {
    background-color: var(--red-color);
}

.portfolio__link-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.portfolio__header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 40px;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.portfolio__card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
}

.portfolio__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: background 0.2s;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            transparent 30%
    );
    z-index: 1;
    pointer-events: none;
}

.portfolio__card-big {
    height: 620px;
}

.portfolio__card-small {
    height: 367px;
}

.portfolio__card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio__card-link-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio__card-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--red-color);
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.portfolio__card:hover .portfolio__card-link {
    opacity: 1;
}

.portfolio__hover-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 56px;
    left: 56px;
    gap: 24px;
    z-index: 2;
    opacity: 0;
}

.portfolio__hover-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: var(--white-color);
}

.portfolio__hover-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white-color);
}

.portfolio__card:hover .portfolio__hover-content {
    opacity: 1;
    backdrop-filter: none;
    z-index: 1;
}

.contact-form {
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/contact-form/vector.svg") center / cover no-repeat;
    opacity: 0.55;
    backdrop-filter: blur(150px);
    pointer-events: none;
    z-index: -1;
    -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.45) 16%,
            rgba(0, 0, 0, 0.75) 24%,
            rgba(0, 0, 0, 1) 34%
    );
    mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.45) 16%,
            rgba(0, 0, 0, 0.75) 24%,
            rgba(0, 0, 0, 1) 34%
    );
}

.contact-form__title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-form__content {
    display: grid;
    grid-template-columns: 624px 512px;
    position: relative;
    height: 100%;
    gap: 48px;
    border-radius: 40px;
    padding: 48px;
    z-index: 2;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
    linear-gradient(0deg, rgba(30, 29, 27, 0.4), rgba(30, 29, 27, 0.4));
    border: 1px solid var(--white-3);
    backdrop-filter: blur(300px);
}

.contact-form__body,
.service-card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__body {
    justify-content: space-between;
}

.contact-form__fields {
    display: flex;
    gap: 20px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8px;
}

.contact-form__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--white-color);
}

.contact-form__input {
    width: 302px;
    height: 56px;
    border: 1px solid var(--white-3);
    border-radius: 12px;
    background-color: var(--white-5);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    color: var(--white-6);
}

.contact-form__textarea-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--white-3);
    border-radius: 12px;
    background-color: var(--white-5);
}

.contact-form__textarea {
    width: 100%;
    height: 130px;
    border: none;
    outline: none;
    background: transparent;
    padding: 16px 16px 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    color: var(--white-6);
    resize: none;
}

.contact-form__textarea-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 16px 12px;
    overflow: visible;
}

.contact-form__counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.contact-form__file-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.contact-form__file-row .contact-form__label {
    max-width: 360px;
    line-height: 1.4;
}

.contact-form__file-wrap {
    display: flex;
    position: relative;
    width: 208px;
    height: 48px;
    gap: 8px;
}

.contact-form__file-input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.contact-form__file-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    height: 48px;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 12px 24px;
}

.contact-form__file-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.contact-form__file-text {
    line-height: 1;
    white-space: nowrap;
}

.contact-form__footer {
    display: flex;
    flex-direction: column;
}

.contact-form__footer {
    gap: 24px;
}

.contact-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-form__label-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
}

.contact-form__required-field {
    color: var(--red-color);
}

.contact-form__checkbox--primary {
    padding-top: 24px;
    border-top: 1px solid var(--white-5);
}

.contact-form__checkbox-input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.contact-form__checkbox-label {
    cursor: pointer;
    display: inline-block;
}

.contact-form__checkbox-label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--white-3);
    background: var(--white-5);
    transition: 0.2s;
}

.contact-form__checkbox-label span svg {
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-label span {
    background: #ef2b2d;
    border-color: #ef2b2d;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-label span svg {
    stroke-dashoffset: 0;
}

.contact-form__checkbox-text,
.contact-form__checkbox-accent {
    font-size: 16px;
}

.contact-form__checkbox-text {
    color: var(--white-6);
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.contact-form__checkbox-accent {
    color: var(--red-color);
}

.contact-form__checkbox-accent:hover {
    text-decoration: underline;
}

.contact-form__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 56px;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 100px;
    padding: 10px 32px;
    background: var(--red-color);
    color: var(--white-color);
    gap: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form__submit:hover {
    background-color: var(--white-color);
    color: var(--red-color);
}

.contact-form__submit-text {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.contact-form__submit:disabled {
    color: #989594;
    background-color: #373735;
}

.contact-form__wave:before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 110px;
    width: 1505px;
    height: 759px;
    background-image: url("../images/contact-form/form_wave-left.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.contact-form__wave::after {
    content: "";
    position: absolute;
    right: -460px;
    bottom: 110px;
    width: 1505px;
    height: 759px;
    background-image: url("../images/contact-form/form_wave_right.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.subscribe {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    padding: 24px 0;
    background: linear-gradient(var(--white-2), var(--white-2)),
    rgba(30, 29, 27, 1);
    z-index: 2;
}

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

.subscribe__title {
    font-size: 24px;
    line-height: 1;
    color: var(--white-color);
}

.subscribe__input {
    width: 430px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--white-3);
    padding: 10px 16px;
    background-color: var(--white-5);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    color: var(--white-6);
}

.subscribe__actions {
    display: flex;
    gap: 16px;
}

.subscribe__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 178px;
    height: 56px;
    border-radius: 12px;
    padding: 10px 40px;
    color: #1E1D1B;
    background-color: var(--white-color);
    gap: 12px;
    transition: background-color 0.3s, color 0.3s;
}

.subscribe__button:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.subscribe__button-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

.footer {
    display: flex;
    background-color: #1E1D1B;
    padding: 32px 0;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 416px);
    align-items: center;
    height: 160px;
}

.footer__company {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer__company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__company-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    height: 16px;
    color: var(--white-50);
}

.footer__contacts,
.footer__nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.footer__title {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-info,
.footer__links {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: 100%;
    gap: 12px;
}

.footer__text {
    font-size: 16px;
    line-height: 1;
    color: var(--white-color);
}

.footer__contact-link {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: var(--red-color);
}

.footer__contact-link:hover {
    text-decoration: underline;
}

.footer__social {
    display: flex;
    width: auto;
    gap: 8px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background: var(--white-5);
    transition: background 0.3s;
}

.footer__social-link:hover {
    background-color: var(--red-color);
}

.footer__link {
    font-size: 16px;
    line-height: 1;
    color: var(--white-color);
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--red-color);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.modal__box {
    position: relative;
    z-index: 1;
    width: min(480px, calc(100% - 32px));
    margin: 10vh auto 0;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.swal2-confirm {
    background: var(--red-color) !important;
    font-family: inherit !important;
}
