@charset "UTF-8";

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: "TT Norms";
    src: local("TT Norms Bold"), local("TT-Norms-Bold"), url("../../fonts/TTNorms-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geometria";
    src: local("Geometria Regular"), local("Geometria-Regular"), url("../../fonts/Geometria-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: "TTNorms";
    src: url("../../fonts/Geometria-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    height: auto;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: "Geometria", sans-serif;
    font-weight: 400;
    background-color: #111111;
}

@media (max-width: 1500px) {
    body {
        overflow-x: hidden;
    }
}

main {
    flex: 1 1 auto;
}

._container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ## Main */
section {
    padding: 50px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    section {
        padding: 25px 0;
    }
}

section header {
    position: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 0 auto 40px;
    text-align: center;
    background-color: transparent;
}

@media (max-width: 991px) {
    section header {
        gap: 12px;
        margin-bottom: 24px;
    }
}

section h2 {
    font-family: "TT Norms", sans-serif;
    font-size: clamp(18px, 1.2962962963vw + 13.3333333333px, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 130%;
    letter-spacing: 2%;
    text-transform: uppercase;
}

section h3 {
    font-family: "TT Norms", sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 130%;
    letter-spacing: 2%;
    text-transform: uppercase;
}

section :where(p) {
    font-family: "Geometria", sans-serif;
    font-size: clamp(14px, 0.3703703704vw + 12.6666666667px, 18px);
    color: #fff;
    line-height: 150%;
}

section :where(p):not(:last-of-type) {
    margin-bottom: 25px;
}

section p:empty {
    margin: 0;
}

@media (max-width: 991px) {
    section :where(p):not(:last-of-type) {
        margin-bottom: 12px;
    }
}

section ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: listCounter;
}

section ol>li {
    font-size: clamp(14px, 0.3703703704vw + 12.6666666667px, 18px);
    color: #fff;
    font-weight: 400;
    line-height: 150%;
    counter-increment: listCounter;
}

section ol>li:last-child {
    margin-bottom: 0;
}

section ol>li:before {
    content: counter(listCounter) ".";
    margin-right: 3px;
    color: #cc001e;
}

.breadcrumb {}

@media (max-width: 650px) {
    .breadcrumb {
        display: none;
    }
}

/* ## Buttons */
.btn {
    border-radius: 15px;
    transition: all 0.4s ease 0s;
    overflow: hidden;
    cursor: pointer;
}

.btn-red {
    display: flex;
}

.btn-red p,
.btn-red a,
.btn-red .popup-link-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 17px 40px;
    max-width: 100%;
    font-family: "Geometria", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background-image: linear-gradient(91.96deg, #cc001e 38.45%, #7a0114 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 991px) {

    .btn-red p,
    .btn-red a,
    .btn-red .popup-link-custom {
        padding: 17px 20px;
        white-space: unset;
    }
}

.btn-red p:before,
.btn-red a:before,
.btn-red .popup-link-custom:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 1;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

@media (min-width: 1200px) {

    .btn-red p:hover,
    .btn-red a:hover,
    .btn-red .popup-link-custom:hover {
        transform: translateY(-2.5px);
        box-shadow: 0px 10px 30px 0px rgba(255, 131, 131, 0.4);
    }

    .btn-red p:hover:before,
    .btn-red a:hover:before,
    .btn-red .popup-link-custom:hover:before {
        left: 100%;
    }
}

.btn-red--big p,
.btn-red--big a,
.btn-red--big .popup-link-custom {
    min-height: 70px;
    text-transform: uppercase;
}

.btn-red--shadow p,
.btn-red--shadow a,
.btn-red--shadow .popup-link-custom {
    box-shadow: 0px 10px 30px 0px rgba(255, 131, 131, 0.2);
}

.btn-red--shadow-2 p,
.btn-red--shadow-2 a,
.btn-red--shadow-2 .popup-link-custom {
    box-shadow: 0px 10px 30px 0px rgba(255, 131, 131, 0.4);
}

.btn-white {
    display: flex;
}

.btn-white button,
.btn-white p,
.btn-white a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 17px 40px;
    max-width: 100%;
    font-family: "Geometria", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

@media (max-width: 991px) {

    .btn-white button,
    .btn-white p,
    .btn-white a {
        white-space: unset;
    }
}

.btn-white button:before,
.btn-white p:before,
.btn-white a:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 1;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

@media (min-width: 1200px) {

    .btn-white button:hover,
    .btn-white p:hover,
    .btn-white a:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 0 rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .btn-white button:hover:before,
    .btn-white p:hover:before,
    .btn-white a:hover:before {
        left: 100%;
    }
}

.btn-white button:active,
.btn-white p:active,
.btn-white a:active {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.1s ease;
}

.btn-white--red a,
.btn-white--red button {
    color: #7f0114;
    box-shadow: 0px 10.01px 30.04px 0px rgba(255, 131, 131, 0.2);
}

.btn-white--w-angle a {
    justify-content: space-between;
    padding: 16px 22px;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

.prices-page {
    background: #111;
}

.prices-section {
    position: relative;
    padding: 25px 0 50px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .prices-section {
        padding: 25px 0 0;
    }
}

.prices-section__container {
    position: relative;
    z-index: 1;
}

.prices-section__title {
    margin: 0 0 50px;
    text-align: center;
}

@media (max-width: 991px) {
    .prices-section__title {
        margin: 0 0 20px;
    }
}

.prices-section__title h1 {
    font-family: "TT Norms", sans-serif;
    font-size: clamp(24px, calc(2.2222222222vw + 16px), 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2%;
    color: #ffffff;
    text-transform: uppercase;
}

.prices-tabs__top {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 20px;
    margin: 0 0 60px;
}

@media (max-width: 991px) {
    .prices-tabs__top {
        display: flex;
        margin-bottom: 40px;
    }
}

.prices-tabs__nav {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

@media (max-width: 991px) {
    .prices-tabs__nav {
        display: flex;
        align-items: stretch;
        gap: 10px;
        margin-inline: -20px;
        padding-inline: 20px;
        overflow-y: hidden;
        overflow-x: auto;
        isolation: isolate;
    }
}

@media (min-width: 992px) {
    ._no-arrows .prices-tabs__nav {
        justify-content: center;
    }
}

.prices-tabs__nav::-webkit-scrollbar {
    display: none;
}

.prices-tabs__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 18px;
    max-width: 100%;
    border-radius: 15px;
    background-color: #000;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 991px) {
    .prices-tabs__button {
        padding: 14px 20px;
        border-radius: 12px;
    }
}

.prices-tabs__button:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 1.5px;
    border-radius: inherit;
    background-image: linear-gradient(180deg, #424242 0%, #111111 65%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background-image 0.4s ease;
}

.prices-tabs__button:after {
    content: "";
    position: absolute;
    inset: 1.5px;
    z-index: 1;
    background: linear-gradient(360deg, #7E0114 0%, #CC011E 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.prices-tabs__button._active:after {
    opacity: 1;
}

@media (min-width: 1200px) {
    .prices-tabs__button:hover:after {
        opacity: 1;
    }
}

.prices-tabs__button._active:before {
    background-image: linear-gradient(180deg, #FF4C65 0%, #CC011E 65%);
}

.prices-tabs__button-label {
    position: relative;
    z-index: 2;
    font-family: "Geometria", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

@media (max-width: 991px) {
    .prices-tabs__button-label {
        font-size: 14px;
    }
}

.prices-tabs__button._active .prices-tabs__button-label {
    font-weight: 700;
}

.prices-tabs._no-arrows .prices-tabs__arrow {
    opacity: 0;
}

.prices-tabs__arrow {
    position: relative;
    width: 30px;
    height: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

@media (max-width: 991px) {
    .prices-tabs__arrow {
        display: none;
    }
}

.prices-tabs__arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid #e40024;
    border-left: 2px solid #e40024;
    transition: border-color 0.3s ease;
}

.prices-tabs__arrow--prev:before {
    left: 9px;
    transform: translateY(-50%) rotate(-45deg);
}

.prices-tabs__arrow--next:before {
    right: 9px;
    transform: translateY(-50%) rotate(135deg);
}

.prices-tabs__arrow:hover:before {
    border-color: #fff;
}

.prices-tabs__pane {
    display: none;
}

.prices-tabs__pane._active {
    display: block;
}

.prices-table {
    max-width: 1162px;
    margin: 0 auto;
    padding-inline: 40px;
    color: #fff;
    background: #1D1D1D;
    border: 1px solid #CC001E;
    border-radius: 30px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .prices-table {
        padding-inline: 20px;
        border-radius: 20px;
    }
}

.prices-table__row {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .prices-table__row {
        justify-content: space-between;
        gap: 30px;
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .prices-table__row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: max-content max-content;
        align-items: flex-end;
    }
}

@media (max-width: 650px) {
    .prices-table__row {
        gap: 15px;
    }
}

.prices-table__row+.prices-table__row {
    border-top: 1.5px solid rgba(51, 51, 51, 1);
}

.prices-table__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .prices-table__name {
        font-size: 16px;
    }
}

@media (max-width: 650px) {
    .prices-table__name {
        display: flex;
        gap: 10px;
        grid-column: 1 / -1;
        order: 1;
    }
}

.prices-table__name-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: #fff;
    transform: rotate(-135deg);
    background-color: #000;
    border-radius: 50%;
    transition: .3s;
}

.prices-table__name:hover .prices-table__name-icon {
    color: #CC001E;
    background-color: #fff;
}

.prices-table__name-label {
    position: relative;
}

.prices-table__name-label:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7A0114, #CC001E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.prices-table__name:hover .prices-table__name-label:first-child:after {
    transform: scaleX(1);
}

.prices-table__name-icon svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 991px) {
    .prices-table__name-icon {
        width: 20px;
        height: 20px;
    }

    .prices-table__name-icon svg {
        width: 12px;
        height: 12px;
    }
}

.prices-table__price {
    margin-left: auto;
    font-family: "TT Norms", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .prices-table__price {
        font-size: 20px;
    }
}

@media (max-width: 650px) {
    .prices-table__price {
        order: 2;
        margin-left: 0;
    }
}

.prices-table__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    gap: 20px;
    width: 300px;
    max-width: 100%;
}

.prices-table__actions>* {
    flex-grow: 1;
}

@media (min-width: 992px) {
    .btn-white--mob-icon .btn-white__icon {
        display: none;
    }
}

@media (max-width: 991px) {
    .prices-table__actions .btn-white--mob-icon {
        width: auto;
    }

    .prices-table__actions .btn-white--mob-icon a {
        gap: 10px;
        padding: 0;
        font-size: 14px;
        color: #fff;
        background: transparent;
    }

    .btn-white--mob-icon .btn-white__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        color: rgba(204, 0, 30, 1);
        transform: rotate(-135deg);
        background-color: #fff;
        border-radius: 50%;
    }
}

@media (max-width: 650px) {
    .prices-table__actions {
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        order: 3;
    }

    .prices-table__order {
        order: 3;
        height: 40px;
    }

    .prices-table__actions>* {
        height: 40px;
        width: 150px;
    }

    .prices-table__order {
        margin-top: auto;
    }
}

.prices-table__order .popup-link-custom {
    padding: 17px 30px;
    min-width: unset;
}

/* ## Test */

@media (max-width: 650px) {
    .prices-table--experiment .prices-table__row {
        gap: 15px;
    }

    .prices-table--experiment .prices-table__name {
        display: flex;
        gap: 10px;
        grid-column: 1 / -1;
        order: 1;
    }

    .prices-table--experiment .prices-table__price {
        order: 2;
    }

    .prices-table--experiment .prices-table__actions {
        order: 3;
        grid-row: unset;
    }
}

/* ## Test 2 */

@media (max-width: 650px) {
    .prices-table--experiment2 .prices-table__row {
        gap: 15px;
    }

    .prices-table--experiment2 .prices-table__name {
        grid-column: 1 / -1;
    }

    .prices-table--experiment2 .prices-table__actions {
        flex-direction: row;
        grid-row: unset;
    }

    .prices-table--experiment2 .prices-table__about .btn-white__label {
        display: none;
    }

    .prices-table--experiment2 .prices-table__actions {
        gap: 15px;
    }

    .prices-table--experiment2 .prices-table__order .popup-link-custom {
        padding: 17px;
    }

    .prices-table--experiment2 .btn-white--mob-icon .btn-white__icon {
        width: 30px;
        height: 30px;
    }
}

/*--------------------------------------------------------------
# Contacts
--------------------------------------------------------------*/
section.contacts-secit.contacts-secit-global {
    padding: 0;
}

.contacts-secit__title {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 20px;
}

@media (max-width: 991px) {
    .contacts-secit__title {
        margin-bottom: 12px;
    }
}

.contacts-secit__title h2 {
    font-size: clamp(18px, 1.2962962963vw + 13.3333333333px, 32px) !important;
    text-align: center;
}

.contacts-secit__rows {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.rows-contacts-secit__text {
    margin: 0 auto;
    max-width: 962px;
    text-align: center;
}

.contacts-secit__tel a {
    font-weight: 700;
}