:root {
    /* Основные цвета: */
    --color-white: #FAFFFF;
    --color-dark: #011F26;
    --color-blue: #D0E1F1;
    --color-dark-blue: #A0BEDA;
    --color-red: #EB5757;
    --color-green: #10CF75;
    --color-light-grey: #9BCDD4;
    --color-grey: #96A5A8;

    --font-LetoTextSansDefect: 'LetoTextSansDefect';
    --font-Montserrat: 'Montserrat';
}

::selection {
    background-color: var(--color-dark);
    color: var(--color-blue);
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

::-moz-selection {
    background-color: var(--color-dark);
    color: var(--color-blue);
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

::-webkit-selection {
    background-color: var(--color-dark);
    color: var(--color-blue);
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

* {
    color: var(--color-dark);
    padding: 0;
    margin: 0;

    box-sizing: border-box;
}


/* =============================== */

/* Общие стили */

/* =============================== */

html, body {
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

*, *::before, *::after {
    box-sizing: inherit;
}


body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: var(--font-Montserrat), sans-serif;

    scroll-behavior: smooth;
    overflow-x: hidden;

    background-color: var(--color-white);
}

.grid-container {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    padding: 160px 20px 0 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 450px;

}

.div-main,
.div-about-me,
.div-services,
.div-achievements,
.div-record {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    justify-content: center;
    align-items: center;

    min-width: 0;
    min-inline-size: 0;

    width: 100%;

    gap: 50px
}

.div-descriptions {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}


.div-image {
    display: block;
    position: relative;
    overflow: visible;
    transform-origin: bottom right;
    -webkit-transform-origin: 100% 100%;

    /*border: 2px solid var(--color-dark);*/
}

.image-olga {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    object-fit: cover;

    /*border: 3px solid var(--color-red);*/
}

.image-background {
    position: absolute;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    background-color: var(--color-blue);
    transform-origin: bottom right;
    bottom: 0;
    right: 0;
    pointer-events: none;
    transform: rotate(-20deg);
    transition: transform 1.8s cubic-bezier(0.2, 2, 0.2, 1);
    will-change: transform;
}


.div-text-description {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    align-self: stretch;
}

.title_h1 {
    width: 100%;

    font-family: var(--font-LetoTextSansDefect), sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.title-h2 {
    grid-column: 1 / 13;
    width: 100%;

    font-family: var(--font-LetoTextSansDefect), sans-serif;
    text-align: center;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.title-h3 {
    font-family: var(--font-LetoTextSansDefect), sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    margin-bottom: 25px;
}

.title-h3.reviews {
    text-align: center;
}

.description_h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.text-description {
    width: 100%;

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.title-description-block {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.title-text-description-block {
    font-family: var(--font-Montserrat), sans-serif;
    font-style: normal;
    line-height: normal;
}


.el-svg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.forging {
    width: 100%;
    height: 108px;
    background-image: url('/static/assets/svg/forging.svg');
}

.link {
    color: var(--color-dark-blue);
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 4%; /* 2.7px */
    text-underline-offset: 5%; /* 1.98px */
    text-underline-position: from-font;
}

.number {
    width: 50px;
    height: 50px;
    transition: opacity 0.8s ease;
}

.ico {
    width: 40px;
    height: 40px;
}


.one {
    background-image: url('/static/assets/svg/one.svg');
}

.two {
    background-image: url('/static/assets/svg/two.svg');
}

.three {
    background-image: url('/static/assets/svg/three.svg');
}


.point {
    background-image: url('/static/assets/svg/point.svg');
}

.up {
    background-image: url('/static/assets/svg/up.svg');
}

.goal {
    background-image: url('/static/assets/svg/goal.svg');
}

.help {
    background-image: url('/static/assets/svg/help.svg');
}


.messenger {
    display: inline-block;

    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}


.tg {
    background-image: url('/static/assets/messengers/tg.svg');
}

.whatsapp {
    background-image: url('/static/assets/messengers/whatsapp.svg');
}

.vk {
    background-image: url('/static/assets/messengers/vk.svg');
}

.mail {
    background-image: url('/static/assets/messengers/mail.svg');
}


.tg_dark {
    background-image: url('/static/assets/messengers/tg_dark.svg');
}

.whatsapp_dark {
    background-image: url('/static/assets/messengers/whatsapp_dark.svg');
}

.vk_dark {
    background-image: url('/static/assets/messengers/vk_dark.svg');
}

.mail_dark {
    background-image: url('/static/assets/messengers/mail_dark.svg');
}


.messenger.tg_white {
    background-image: url('/static/assets/messengers/tg_white.svg');
}

.messenger.whatsapp_white {
    background-image: url('/static/assets/messengers/whatsapp_white.svg');
}

.messenger.vk_white {
    background-image: url('/static/assets/messengers/vk_white.svg');
}

.mail_white {
    background-image: url('/static/assets/messengers/mail_white.svg');
}


/* =============================== */

/* Главный блок */

/* =============================== */
.div-main-text {
    grid-column: 7 / 13;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}


.div-image.main {
    grid-column: 1 / 7;
    height: 667px;
}

.image-olga.main {
}

.image-background.main {
    transform: rotate(-1.822deg);
}


/* =============================== */

/* Обо мне */

/* =============================== */

.div-description {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
}

.div-image.about-me {
    grid-column: 1 / 6;

    height: 710px;
}

.image-olga.about-me {
}

.image-background.about-me {
    transform: rotate(3.626deg);
    transform-origin: 100% 100%;
}


.div-descriptions.about-me {
    grid-column: 6 / 13;
    width: 100%;
}

.div-about-me-descriptions-blocks {

    display: flex;
    flex-direction: column;
    grid-column: 1 / 13;
    width: 100%;

    margin-top: 50px;
    gap: 50px;
}

.div-description-block {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    padding: 50px 25px;
    gap: 25px;

    border-radius: 2px;
    border-top: 4px solid rgba(160, 190, 218, 0.25);
    border-bottom: 4px solid rgba(160, 190, 218, 0.25);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12.5px);
}

.title-description-block.about-me {
    gap: 15px;
}

.title-text-description-block.about-me {
    font-size: 28px;
    font-weight: 600;
}

.text-about-me-description-block {
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* =============================== */

/* Услуги */

/* =============================== */
.div-services {
    gap: 50px
}

.div-services-blocks {
    grid-column: 1 / 13;
    display: flex;
    flex-direction: column;
}

.div-service-block {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 200px;
}

.div-description-blocks-service {
    width: 100%;
    grid-column: 1 / 13;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    gap: 25px;

    margin-bottom: 150px;
}

.title-description-block.service {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 15px
}

.div-title-descriptions-service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3px;
    align-self: stretch;
}

.title-descriptions-service {
    color: var(--color-dark-blue);
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.title-details-descriptions-service {
    align-self: stretch;
    color: var(--color-dark);
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.title-details-descriptions-service.particular {
    font-size: 24px;
    font-weight: 300;
}

.title-text-description-block.service {
    color: var(--color-dark-blue);
    font-size: 32px;
    font-weight: 700;
}

.div-description-block.service {
    gap: 50px;
}

.text-description-block.service {
    font-family: var(--font-Montserrat), sans-serif;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.div-text-description.service {
    gap: 75px;
}

.div-description-button-block {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
    align-self: stretch;
}

.btn-description {
    display: flex;
    width: 100%;
    padding: 15px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;

    color: var(--color-white);
    background-color: var(--color-dark);
    border: 0;
    text-decoration: none;

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s;

}

.more, .price-list {
    background-color: var(--color-blue);
}

.sign {
    background-color: var(--color-dark-blue);

}

.more:hover, .price-list:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    outline: 3px solid var(--color-blue);
    transition: 0.5s;
}

.sign:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    outline: 3px solid var(--color-dark-blue);

    transition: 0.5s;
}

/* Коучинг */
.div-descriptions.coach {
    grid-column: 7 / 13;
    width: 100%;
    gap: 50px;
}

.div-image.coach {
    grid-column: 1 / 7;
    height: 682px;
}

.image-olga.coach {
    width: 100%;
    height: 100%;
}

.image-background.coach {
    transform: rotate(-3deg);
    transform-origin: 100% 100%;
}


/* Профориентация подростков */
.div-descriptions.pro-orientation {
    grid-column: 7 / 13;
    gap: 50px;
}

.div-image.pro-orientation {
    grid-column: 1 / 7;
    height: 698px;
}

.image-olga.pro-orientation {
    width: 100%;
    height: 100%;
}

.image-background.pro-orientation {
    transform: rotate(3.573deg);
    transform-origin: bottom right;
}


/* «Другими глазами» */
.div-descriptions.game-WOE {
    grid-column: 7 / 13;
    gap: 50px;
}

.div-image.game-WOE {
    grid-column: 1 / 7;
    height: 682px;
}

.image-olga.game-WOE {
    width: 100%;
    height: 100%;
}

.image-background.game-WOE {
    transform: rotate(-3deg);
    transform-origin: top right;
}

.image-background.game-WOE2 {
    transform-origin: bottom right;
    transform: rotate(3.573deg);
    background-color: var(--color-dark-blue);
}

.div-text-description.service.game-WOE {
    gap: 50px;
}


/* Метафорические Ассоциативные Карты */
.div-service-block.game-MAC {
    margin-bottom: 0;
}

.div-descriptions.game-MAC {
    grid-column: 7 / 13;
    gap: 50px;
}

.div-image.game-MAC {
    grid-column: 1 / 7;
    transform-origin: bottom left;

    height: 698px;
}

.image-olga.game-MAC {
    width: 100%;
    height: 100%;
}

.image-background.game-MAC {
    transform: rotate(5.187deg);
    transform-origin: bottom left;
}

.image-background.game-MAC2 {
    transform: rotate(3.573deg);
    transform-origin: bottom right;
    background-color: var(--color-dark-blue);
}

.div-text-description.service.game-MAC {
    gap: 100px;
}


/* =============================== */

/* Прайс-лист */

/* =============================== */

.div-price-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 100px;
}

.div-price-lists-block {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

}

.div-price-list-block {
    width: 100%;

    display: flex;
    flex-direction: column;
    padding: 50px;
    gap: 25px;

    align-items: center;
    align-self: stretch;

    border-radius: 50px;
    border: 3px solid var(--color-dark-blue);
}

.div-price-description {
    display: flex;
    width: 100%;
    gap: 50px;

    align-self: stretch;
    align-items: center;

    min-width: 0;
}

.div-price-description-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    min-width: 150px;
}

.title-text-price {
    width: 100%;

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 28px;
    font-weight: 500;

    font-style: normal;
    line-height: normal;
}

.text-price, .text-price-details {
    color: var(--color-light-grey);
    width: 100%;
    font-family: var(--font-Montserrat), sans-serif;

    text-align: right;
    font-style: normal;
    line-height: normal;
}

.text-price {
    font-size: 26px;
    font-weight: 400;
}

.text-price-details {
    font-size: 16px;
    font-weight: 400;
}

.add-detail {
    text-align: start;
}


/* =============================== */

/* Запись */

/* =============================== */

.record-form {
    grid-column: 1 / 13;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.div-record-blocks {

    display: flex;
    padding: 50px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    align-self: stretch;

    border-top: 5px solid var(--color-blue);
    border-radius: 5px;
}


.div-record-blocks.form-footer {
    gap: 15px;

}

.div-record-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 50px;
    align-self: stretch;

}

.div-record-block.contacts {
    flex-direction: row;
    gap: 25px;
}

.div-record-service-block {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    gap: 0px;
    align-self: stretch;
}

.div-record-type-service-block {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 15px;
    align-self: stretch;
    flex-wrap: wrap;
}

.record-label {

    margin-left: 15px;
}

.record-input {
    display: flex;
    padding: 15px 25px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    width: 100%;

    border-radius: 15px;
    border: 0;
    background: var(--color-blue);
    color: var(--color-dark);

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    transition: 0.2s;
}

.record-input::placeholder {
    color: var(--color-white);;
    font-size: 24px;
    font-weight: 300;
}

.record-input:hover {
    outline: 2px solid var(--color-dark-blue);
}

.record-input:focus {
    outline: 3px solid var(--color-dark-blue);
    color: var(--color-dark);
}

.btn-type-service {
    display: flex;
    min-height: 54px;
    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    flex-grow: 1;

    border-radius: 100px;
    background: var(--color-dark-blue);

    color: var(--color-white);
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    transition: 0.3s;
}

.btn-type-service.messengers {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
    cursor: pointer;

    transition: background-color 0.3s, border-color 0.3s;
}

.div-record-type-service-block input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;

}

.btn-type-service:hover,
.btn-type-service:focus {
    box-shadow: 0 10px 30px rgba(11, 46, 100, 0.12);
    outline: 2px solid var(--color-dark);
    cursor: pointer;
}

/* focus-visible для клавиатуры — важно для доступности */
.btn-type-service:hover, .btn-type-service:focus-visible {
    box-shadow: 0 0 0 4px rgba(88, 155, 212, 0.18);
}

/* активное (выбрано) состояние — работает когда input:checked + label или когда label имеет класс .selected */
.btn-type-service.selected,
input[type="checkbox"]:checked + .btn-type-service,
input[type="radio"]:checked + .btn-type-service {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 18px 40px rgba(16, 207, 117, 0.12);
}

.warning {
    width: 100%;
    color: var(--color-dark);

    font-family: var(--font-Montserrat), sans-serif;
    text-align: left;
    font-style: normal;
    line-height: normal;
    font-weight: 300;
    font-size: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    display: flex;

    width: 24px;
    height: 24px;
    border: 2px solid #589BD4;
    border-radius: 6px;
    background: url('/static/assets/svg/check.svg') no-repeat center;
    background-size: 16px;
    transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #10CF75;
    border-color: #10CF75;
}


.bnt {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;

    font-family: var(--font-Montserrat), sans-serif;

    font-size: 24px;
    font-weight: 300;

    border: none;
    border-radius: 100px;
    padding: 15px 25px;

    background-color: var(--color-dark-blue);
    color: var(--color-white);

    transition: 0.3s;
}

.bnt:hover {
    background-color: var(--color-blue);
    cursor: pointer;
}

.bnt:active {
    transform: translateY(4px);
}


.notification {
    display: flex;
    flex-direction: column;

    align-items: center;
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: calc(100% - 20px);
    max-height: 80vh;


    padding: 25px;
    border-radius: 50px;
    gap: 25px;
    z-index: 1000;
    text-align: center;

    overflow: hidden;

    color: var(--color-dark);
    background-color: var(--color-white);
    box-shadow: 0px 4px 15px rgba(16, 207, 117, 0.3);
    border: 5px solid var(--color-dark-blue);

}

.notification--error {
    background-color: var(--color-white);
    border: 5px solid var(--color-red);
}

.notification--success {
    background: var(--color-white);
    border: 5px solid var(--color-green);
}

/* Цвета под сценарии (используем переменные, как просили) */
.notification--success #notif-btn {
    background-color: var(--color-green);
}

.notification--error #notif-btn {
    background-color: var(--color-red);
}

.notification--sending #notif-btn {
    background-color: var(--color-dark-blue);
}


.notification__spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.9);
    animation: notif-spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.text-notification {
    width: 100%;

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 18px;
    font-weight: 300;

    font-style: normal;
    line-height: normal;

    margin-bottom: 18px;
}


.notification.modal {
    width: 800px;
    gap: 0px;
    border: 5px solid var(--color-dark-blue);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;

    max-height: 60vh;
    overflow-y: auto;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 25px 25px 25px 25px;
    /*border: 1px solid var(--color-dark-blue);*/
}

ol.text-notification {
    list-style: none; /* убираем стандартные маркеры */
    margin: 10px 0;
    padding: 0;
}

ol.text-notification li {
    position: relative;
    padding-left: 15px; /* отступ для пунктика */
    margin-bottom: 10px;
    line-height: 1.4;
}

ol.text-notification li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em; /* вертикальное выравнивание */
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-dark-blue); /* или var(--color-green) */
}

.bnt.form_modal {
    background-color: var(--color-red);
}

.bnt.form_modal:hover {
    opacity: 0.8;
}


/* =============================== */

/* Отзывы */

/* =============================== */
.div-reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 100px
}

.div-reviews-blocks {
    grid-column: 1 / 13;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.div-reviews-block {
    display: flex;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.div-title-reviews-block {
    display: flex;
    gap: 25px;

    align-items: center;
    justify-content: center;
}

.div-review-block {
    display: flex;
    flex-direction: column;


    width: 555px;
    height: 450px;
    flex-shrink: 0;
    gap: 15px;

    align-items: start;
    justify-content: space-between;

    padding: 25px;
    border-radius: 50px;
    background-color: var(--color-blue);

    flex-grow: 1;
    max-width: 100%;

    will-change: opacity, transform;
    transition: opacity 1560ms cubic-bezier(.2, .9, .2, 1), transform 1560ms cubic-bezier(.2, .9, .2, 1);
    opacity: 1;
    transform: translateY(0);
}

.div-review-block.review-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.div-review-block.review-show {
    opacity: 1;
    transform: translateY(0);
}

.div-review-block.review-hidden,
.div-review-block[aria-hidden="true"] {
    pointer-events: none;
}


.div-title-review {
    display: flex;
    gap: 15px;

    justify-content: start;
    align-items: center;
}

.div-text-title-review {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.title-review {
    font-family: var(--font-LetoTextSansDefect), sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.text-age-review {
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.text-review {
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    display: -webkit-box;
    -webkit-line-clamp: 10; /* 14 кол-во строк, которые помещаются */
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* чтобы троеточие отображалось */
    text-overflow: ellipsis;

    height: 100%;
    align-self: start;
    justify-self: start;
}


.review-link {
    display: flex;
    font-family: var(--font-Montserrat), sans-serif;
    color: var(--color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    background-color: var(--color-dark-blue);

    transition: 0.1s;
}

.review-link:hover {
    outline: 2px solid var(--color-dark);

}

.review-img {
    width: 80px;
    height: 80px;

    border-radius: 100px;
}


.btn-arrow {
    width: 40px;
    height: 40px;

    border: 0;
}

.btn-arrow.left {
    background-image: url('/static/assets/svg/arrow_left.svg');
}

.btn-arrow.right {
    background-image: url('/static/assets/svg/arrow_right.svg');
}

.btn-arrow.detailed {
    width: 20px;
    height: 20px;
    background-image: url('/static/assets/svg/arrow_detailed_white.svg');
}

.btn-arrow.up {
    width: 20px;
    height: 20px;
    background-image: url('/static/assets/svg/arrow_up.svg');
}

.show-more {
    color: var(--color-dark-blue);
    background-color: var(--color-white);
    outline: 2px solid var(--color-dark-blue);
}

.show-more:hover {
    background-color: var(--color-dark);
    cursor: pointer;
}


/* Полный отзыв */
.review-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 31, 38, 0.30);


    z-index: 1200;
    padding: 24px;
}

.hidden {
    display: none;
}

.div-full-review-block {
    width: min(720px, 96%);
    max-width: 720px;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 25px;
    border-radius: 50px;

    background-color: var(--color-blue);
    color: var(--color-white);

    position: relative;
    box-shadow: 0 0 25px 0 rgba(160, 190, 218, 0.4);
}

.div-full-review-block .modal-title {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.div-full-review-block .modal-title .review-img {
    width: 64px;
    height: 64px;
    border-radius: 999px;
}

.full-review-content {
    overflow-y: auto;
    max-height: calc(100vh - 220px);
    padding: 15px 15px 15px 0;

    border-radius: 25px;
    /*border: 2px solid var(--color-dark-blue);*/
}

.div-full-review-block .text-review {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    text-overflow: clip !important;
    height: auto !important;
    max-height: none !important;
    white-space: normal;

    font-family: var(--font-Montserrat), sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.div-full-review-block .review-link.modal-close {
    width: 100%;
    font-family: var(--font-Montserrat), sans-serif;
    font-size: 16px;
    align-self: center;
    padding: 14px 20px;
    border-radius: 40px;

    background-color: var(--color-white);
    color: var(--color-dark);
    border: 0;
}

.review-link.modal-close:hover {
    outline: 3px solid var(--color-red);
}

.review-overlay.showing .div-full-review-block {
    transform: translateY(0);
    opacity: 1;
    transition: transform .18s ease, opacity .18s ease;
}


/* =============================== */

/* Достижения */

/* =============================== */

.div-achievements-blocks {
    grid-column: 1 / 13;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.div-achievements-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;

    min-width: 0;
}

.img-achievement {
    display: block;
    flex: 1 1 0;
    min-width: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    border-radius: 25px;

    outline: 0px solid var(--color-dark-blue);

    transition: transform .12s ease;


}

.img-achievement:hover {
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 0 20px 0 rgba(160, 190, 218, 0.30);
}

.cert_block_1 {
    height: 820px;
}

.cert_block_2 {
    height: 400px;
}

.cert_block_3 {
    height: 250px;
}

.cert_block_4 {
    height: 520px;
}


/* Просмотр достижений */
.image-lightbox {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 20px;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox__inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.image-lightbox__img {
    max-width: calc(100vw - 160px);
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    user-select: none;
}

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    display: inline-flex;

    border: none;
    border-radius: 100px;
    padding: 8px;
    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;
    cursor: pointer;

    background: var(--color-white);
    box-shadow: 0 0 20px 0 rgba(160, 190, 218, 0.40);
    z-index: 10010;
}

.lb-btn:hover {
    background-color: var(--color-blue);
}

.lb-btn img {
    width: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}

.lb-prev {
    left: 10px;
}

.lb-next {
    right: 10px;
}

.lb-btn:focus {
    outline: 2px solid rgba(0, 0, 0, 0.12);
}

.lb-close {
    position: absolute;
    right: 12px;
    top: 0;

    border: none;
    border-radius: 100px;
    padding: 15px;
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    background: var(--color-white);
    box-shadow: 0 3px 9.6px 0 rgba(235, 87, 87, 0.25);
    z-index: 10010;
}

.lb-close:hover {
    background: var(--color-dark);
    box-shadow: 0 0 20px 0 rgba(160, 190, 218, 0.20);
}

.lb-close img {
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
}

.lb-close:focus {
    outline: 2px solid rgba(0, 0, 0, 0.12);
}


@media (max-width: 960px) {
    .grid-container {
        /*border: 2px solid var(--color-red);*/

        max-width: 960px;
    }

    .div-descriptions.coach,
    .div-descriptions.pro-orientation,
    .div-descriptions.game-WOE,
    .div-descriptions.game-MAC {
        gap: 35px;
    }

    .title_h1 {
        font-size: 54px;
    }

    .text-description {
        font-size: 24px;
    }

    .title-descriptions-service {
        /*font-size: 42px;*/
        font-size: 2.5em;
    }


    .text-description-block.service {
        font-size: 22px;
    }

    .title-details-descriptions-service {
        font-size: 24px;
    }

    .btn-description {
        font-size: 20px;
    }

    .number {
        width: 35px;
        height: 35px;
    }

    /* IMAGE */
    .div-image {
        max-height: 530px;
    }

    .div-image.coach {
        max-height: 550px;
    }

    .div-image.pro-orientation {
        max-height: 470px;
    }

    .div-image.game-WOE {
        max-height: 550px;
    }

    .div-image.game-MAC {
        max-height: 550px;
    }


    /* Достижения */
    .cert_block_1 {
        height: 600px;
    }

    .cert_block_2 {
        height: 255px;
    }

    .cert_block_3 {
        height: 160px;
    }

    .cert_block_4 {
        height: 325px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        /*border: 5px solid var(--color-dark);*/
    }

    .div-main,
    .div-about-me,
    .div-services,
    .div-achievements,
    .div-record {
        gap: 25px

    }

    .div-main-text,
    .div-descriptions.about-me,
    .div-descriptions.coach,
    .div-descriptions.pro-orientation,
    .div-descriptions.game-WOE,
    .div-descriptions.game-MAC {
        grid-column: 1/ 13;
        gap: 25px;


    }

    .div-description {
        padding: 0 25px;
    }

    .div-text-description.service {
        gap: 5px !important;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }

    .div-description-block.service {
        padding: 25px 25px;
    }

    .title_h1 {
        font-size: 64px;
        text-align: center;
    }

    .description_h2 {
        font-size: 24px;
    }

    .title-h3.text-price-list {
        width: 100%;
        text-align: center;
    }

    .text-description {
        font-size: 24px;
    }

    .title-descriptions-service {
        /*font-size: 42px;*/
        font-size: 2.5em;
    }


    .text-description-block.service {
        font-size: 20px;
    }

    .title-details-descriptions-service {
        font-size: 24px;
    }

    .text-about-me-description-block {
        font-size: 20px;
    }

    .btn-description {
        font-size: 20px;
    }

    .number {
        width: 35px;
        height: 35px;
    }

    .el-svg.forging {
        background-position: left center;
        width: 100%;
        height: 120px;
    }

    /* IMAGE */
    .div-image,
    .div-image.main,
    .div-image.about-me,
    .div-image.coach,
    .div-image.pro-orientation,
    .div-image.game-WOE,
    .div-image.game-MAC {
        grid-column: 1 / 13;
        max-height: 900px;
        height: 600px;
    }

    .div-image.about-me {
        height: 800px;
    }

    .div-image.coach {
        height: 750px;
    }

    .div-record-block.contacts {
        flex-direction: column;
    }


    /* Достижения */
    .cert_block_1 {
        height: 600px;
    }

    .cert_block_2 {
        height: 222px;
    }

    .cert_block_3 {
        height: 140px;
    }

    .cert_block_4 {
        height: 280px;
    }


    .div-description-button-block {
        gap: 10px;
    }

    .btn-description {
        font-size: 18px;
    }

    .btn-type-service {
        font-size: 24px;
    }

    /* Отзывы */
    .div-review-block.review-show {
        width: 400px;
        height: 500px;
    }

    .text-review {
        font-size: 18px;
    }


    .notification.modal {
        width: 100%;
        max-width: 650px;


    }
}

@media (max-width: 560px) {
    .grid-container {
        /*border: 5px solid var(--color-green);*/

        max-width: 560px;
        gap: 250px;

        padding: 90px 12px 0 12px;
    }

    .div-main,
    .div-about-me,
    .div-services,
    .div-achievements,
    .div-price-list
    .div-record,
    .div-reviews {
        gap: 25px
    }

    .div-services {
        margin: 0;
    }


    .div-description-block {
        padding: 25px;
    }

    .div-title-descriptions-service {
        gap: 5px;
    }

    .div-description-button-block {
        flex-direction: column;
    }

    .div-description {
        padding: 0 15px;
    }

    .div-description-block.service {
        gap: 25px;
    }


    .div-text-description.service {
        display: flex;
        align-items: center;
        align-content: center;
        gap: 25px !important;
        align-self: stretch;
        flex-wrap: wrap;
    }


    .title_h1 {
        font-size: 48px;
        text-align: left;
    }

    .title-h2 {
        font-size: 72px;
    }

    .title-h3 {
        font-size: 32px;
    }

    .description_h2 {
        font-size: 20px;
    }


    .title-h3.text-price-list {
        width: 100%;
        text-align: center;
    }

    .text-description {
        font-size: 20px;
    }

    .title-descriptions-service,
    .title-descriptions-service.game-WOE {
        width: 100%;
        font-size: 36px;
        text-align: center;
    }

    .title-details-descriptions-service.particular {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }

    .title-details-descriptions-service {
        font-size: 16px;
        font-weight: 300;
        text-align: center;
    }

    .title-text-description-block.about-me {
        font-size: 24px;
    }

    .text-description-block.service {
        font-size: 20px;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;

        flex-grow: 1;

        transition: 0.3s;
    }


    .text-about-me-description-block {
        font-size: 18px;
    }

    .btn-description {
        font-size: 18px;
    }

    .ico {
        width: 35px;
        height: 35px;
    }

    .number {
        width: 35px;
        height: 35px;
    }

    /* IMAGE */
    .div-image,
    .div-image.main,
    .div-image.about-me,
    .div-image.coach,
    .div-image.pro-orientation,
    .div-image.game-WOE,
    .div-image.game-MAC {
        grid-column: 1 / 13;
        width: 100%;
        max-height: 600px;
        height: 450px;
    }

    .div-image.about-me {
        height: 550px;
    }

    .div-image.coach {
        height: 550px;
    }


    /* Прайс лист*/
    .div-price-list-block {
        border-radius: 25px;
        padding: 0;
        gap: 0;

        overflow: hidden;
    }

    .div-price-description {
        position: relative;

        align-items: start;
        justify-content: center;
        flex-direction: column;
        outline-bottom: 2px solid var(--color-dark-blue);

        padding: 25px 25px;

        gap: 15px;

        /*box-shadow: 0 2px 0 0 var(--color-dark-blue);*/
    }

    .div-price-description::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 50%; /* ставим в центр */
        transform: translateX(-50%); /* смещаем на половину ширины */
        width: 80%; /* длина линии */
        height: 2px;
        background-color: var(--color-dark-blue);

        opacity: 0.3;
    }


    .div-price-description-details {
        width: 100%;
        min-width: 120px;
        text-align: center;

    }


    .title-text-price {
        font-size: 28px;
        text-align: center;
    }

    .text-price {
        font-size: 24px;
        text-align: center;
    }

    .text-price.detailed {
        display: inline-block;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1; /* 8.4px */
    }

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

    /* Дополнительные опции */
    .div-price-description.add-detail {
        display: flex;
        flex-direction: row;

        width: 100%;

        padding: 25px 35px;

        justify-content: center;
        align-items: center;

        gap: 0;
    }

    .text-price-details.add-detail {
        width: 100%;
        text-align: start;
    }

    .text-price-details.add-detail-time {
        width: 50px;
    }


    .div-record-blocks {
        padding: 25px;

        border-top: 4px solid var(--color-blue);
        border-radius: 4px;
    }

    .div-description-button-block {
        gap: 10px;
    }

    .btn-description {
        font-size: 18px;
    }

    .btn-type-service {
        font-size: 24px;
    }

    .btn-type-service.coach,
    .btn-type-service.pro-orientation,
    .btn-type-service.game-WOE,
    .btn-type-service.game-MAC {
        font-size: 18px;
        padding: 5px 25px;

        min-height: 40px;
    }

    /* Запись */
    .record-input,
    .record-input::placeholder {
        font-size: 20px;
    }


    /* Отзывы */
    .div-reviews {
        gap: 75px;
    }

    .div-reviews-blocks {
        gap: 10px;
    }

    .div-reviews-block {
        gap: 15px;
    }

    .div-review-block {
        width: 100%;
        height: 250px;
        padding: 15px;
        border-radius: 25px;
        gap: 10px;
    }

    .div-review-block.review-show {
        width: 100%;
        height: 350px;
    }

    .text-review {
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 9; /* 14 кол-во строк, которые помещаются */
        -webkit-box-orient: vertical;
        overflow: hidden;

    }

    .review-img {
        width: 50px;
        height: 50px;

    }

    .review-link {
        font-size: 18px;

    }


    /* Достижения */
    .div-achievements-blocks {
        gap: 10px;
    }

    .div-achievements-block {
        gap: 10px;

        /*border: 1px solid var(--color-dark-blue);*/
    }

    .img-achievement {
        border-radius: 10px;
        /*border: 1px solid var(--color-dark);*/
    }

    .cert_block_1 {
        height: 400px;
    }

    .cert_block_2 {
        height: 140px;
    }

    .cert_block_3 {
        height: 90px;
    }

    .cert_block_4 {
        height: 220px;
    }
}

@media (max-width: 420px) {
    .grid-container {
        /*border: 5px solid var(--color-red);*/

        max-width: 420px;

        gap: 250px;

        padding: 95px 12px 0 12px;
    }


    .div-description-block {
        padding: 25px;
    }

    .div-title-descriptions-service {
        gap: 5px;
    }

    .div-description-button-block {
        flex-direction: column;
    }

    .div-description {
        padding: 0 15px;
    }

    .div-description-block.service {
        gap: 25px;
    }

    /**/
    .div-text-description.service {
        display: flex;
        align-items: center;
        align-content: center;
        gap: 25px !important;
        align-self: stretch;
        flex-wrap: wrap;
    }


    .title_h1 {
        font-size: 48px;
        text-align: left;
    }

    .title-h2 {
        font-size: 72px;
    }

    .description_h2 {
        font-size: 20px;
    }


    .title-h3.text-price-list {
        width: 100%;
        text-align: center;
    }

    .text-description {
        font-size: 20px;
    }

    .title-descriptions-service,
    .title-descriptions-service.game-WOE {
        width: 100%;
        font-size: 36px;
        text-align: center;
    }

    .title-details-descriptions-service.particular {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }

    .title-details-descriptions-service {
        font-size: 16px;
        font-weight: 300;
        text-align: center;
    }

    .title-text-description-block.about-me {
        font-size: 24px;
    }

    /**/
    .text-description-block.service {
        font-size: 20px;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;

        flex-grow: 1;

        transition: 0.3s;
    }


    .text-about-me-description-block {
        font-size: 18px;
    }

    .btn-description {
        font-size: 18px;
    }

    .ico {
        width: 35px;
        height: 35px;
    }

    .number {
        width: 35px;
        height: 35px;
    }

    /* IMAGE */
    .div-image,
    .div-image.main,
    .div-image.about-me,
    .div-image.coach,
    .div-image.pro-orientation,
    .div-image.game-WOE,
    .div-image.game-MAC {
        grid-column: 1 / 13;
        width: 100%;
        max-height: 600px;
        height: 400px;
    }


    .div-image.about-me {
        height: 475px;
    }

    .div-image.coach {
        height: 550px;
    }

}