.first-screen {
    padding: 160px 0 70px;
    background: #eee7da;
    color: #151515;
}

.first-screen > .content {
    width: 100%;
}

.first-screen .first-screen__main {
    width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.first-screen .first-screen__text {
    width: 682px;
}

.first-screen .first-screen__title {
    margin: 0 0 30px;
    font-family: "Times New Roman";
    font-size: 42px;
    font-weight: 400;
    line-height: .98;
    letter-spacing: 0;
    color: #111;
}

.first-screen .first-screen__description {
    width: 450px;
    padding: 18px 24px;
    margin-bottom: 30px;

    background: #efe0bd;
    border-radius: 16px;

    font-size: 18px;
    line-height: 1.45;
    color: #222;
}

.first-screen .first-screen__buttons {
    display: flex;
    gap: 16px;
}

.first-screen .first-screen__button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 52px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.first-screen .first-screen__button--primary {
    width: 220px;
    color: #fff;
    background: linear-gradient(90deg,#a94b0b,#e66808);
}

.first-screen .first-screen__button--secondary {
    width: 210px;
    border: 1px solid #bf5a11;
    color: #bf5a11;
    background: transparent;
}

.first-screen .first-screen__image-wrapper {
    width: 175px;
    margin-top: 63px;
    margin-left: -122px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.first-screen .first-screen__image {
    display: block;
    width: 175px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.first-screen .first-screen__cards {
    width: 920px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.first-screen .first-screen__card {
    min-height: 140px;

    padding: 16px 18px 20px;

    background: rgba(255,255,255,.72);

    border: 1px solid transparent;
    border-radius: 10px;

    box-shadow: 0 8px 18px rgba(0,0,0,.08);

    transition: border-color .2s ease;
}

.first-screen .first-screen__card:hover {
    border-color: var(--color-accent-gold);
}

.first-screen .first-screen__card-number {
    margin-bottom: 16px;

    font-size: 40px;
    font-weight: 700;
    line-height: 1;

    color: var(--color-accent-gold);
}

.first-screen .first-screen__card-text {
    margin: 0;

    font-family: var(--font-primary);
    font-size: 21px;
    line-height: 1.2;
    color: #151515;
}

.second-screen {
    padding: 50px 0 70px;
    background: var(--color-background);
    color: #fff;
}

.second-screen > .content {
    width: 920px;
    margin: 0 auto;
}

.second-screen .second-screen__subtitle {
    margin: 0 0 24px;
    text-align: center;

    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.second-screen .second-screen__title {
    margin: 0 auto 40px;

    font-family: "Times New Roman", serif;
    font-size: 60px;
    font-weight: 400;
    line-height: .95;
    text-align: center;
    color: #fff;
}

.second-screen .second-screen__problems {
    width: 650px;
    margin: 0 auto 48px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.second-screen .second-screen__problem {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.second-screen .second-screen__problem img {
    width: 40px;
    flex-shrink: 0;
    margin-top: 2px;
}

.second-screen .second-screen__problem p {
    margin: 0;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
}

.second-screen .second-screen__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.second-screen .second-screen__card {
    min-height: 96px;

    padding: 14px 18px 18px;

    background: #f5f1ec;

    border-radius: 10px;
    border: 1px solid transparent;

    box-shadow: 0 8px 16px rgba(0,0,0,.18);

    transition: border-color .2s ease;
}

.second-screen .second-screen__card:hover {
    border-color: var(--color-accent-gold);
}

.second-screen .second-screen__number {
    margin-bottom: 12px;

    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    color: #b45a18;
}

.second-screen .second-screen__card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.4;
    color: #1b1b1b;
}

.second-screen__title .cascade {
    font-size: 80px
}

.third-screen {
    padding: 50px 0 70px;
    background: #eee7da;
}

.third-screen>.content {
    width: 1140px;
    margin: 0 auto;
}

.third-screen .third-screen__subtitle {
    margin: 0 0 20px;

    text-align: center;

    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;

    color: var(--color-header);
}

.third-screen .third-screen__title {
    margin: 0 0 24px;

    font-family: "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: .98;
    text-align: center;

    color: var(--color-header);
}

.third-screen .third-screen__description {
    margin: 0 0 42px;

    text-align: center;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;

    color: #6f6963;
}

.third-screen .third-screen__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 0 14px;
}

.third-screen .third-screen__plus {
    text-align: center;

    font-size: 34px;
    color: #fff;

    user-select: none;
}

.third-screen .third-screen__card {
    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.third-screen .third-screen__top {
    padding: 22px 20px 30px;

    min-height: 165px;

    background: #faf9f8;
    color: #111111;
}

.third-screen .third-screen__bottom {
    padding: 18px 20px 26px;

    min-height: 178px;

    background: #af560f;
    color: #fff;
}

.third-screen .third-screen__top h5,
.third-screen .third-screen__bottom h5 {
    margin: 0 0 18px;
    font-family: "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.third-screen .third-screen__top p,
.third-screen .third-screen__bottom p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.third-screen .third-screen__bottom p {
    font-weight: 600;
}

.third-screen .third-screen__buttons {
    margin-top: 34px;

    display: flex;
    justify-content: center;
}

.third-screen .third-screen__button {
    width: 220px;
    height: 46px;

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

    border: 1px solid #b85a13;
    border-radius: 12px;

    background: transparent;

    color: #b85a13;

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.third-screen .third-screen__bottom {
    padding: 18px 20px 26px;

    min-height: 178px;

    background: #af560f;
    color: #fff;

    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.fourth-screen {
    padding: 50px 0 25px;
    background: var(--color-background);
    color: #fff;
}

.fourth-screen>.content {
    width: 920px;
    margin: 0 auto;
}

/* ---------------- */

.fourth-screen .fourth-screen__subtitle {
    margin: 0 0 20px;

    text-align: center;

    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;

    color: var(--color-accent-gold);
}

.fourth-screen .fourth-screen__title {
    margin: 0 0 38px;

    font-family: "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: .96;

    text-align: center;

    color: #fff;
}

/* ---------------- */

.fourth-screen .fourth-screen__results {
    width: 560px;
    margin: 0 auto 36px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fourth-screen .fourth-screen__result {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.fourth-screen .fourth-screen__result img {
    width: 34px;
    flex-shrink: 0;
    margin-top: 3px;
}

.fourth-screen .fourth-screen__result p {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

/* ---------------- */

.fourth-screen .fourth-screen__bonus-title {
    margin: 34px 0 28px;

    font-family: "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;

    text-align: center;

    color: #fff;
}

/* ---------------- */

.fourth-screen .fourth-screen__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fourth-screen .fourth-screen__card {
    min-height: 108px;
    padding: 20px 34px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #f7f3ee;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    transition: border-color .2s ease;
}

.fourth-screen .fourth-screen__card:hover {
    border-color: var(--color-accent-gold);
}

.fourth-screen .fourth-screen__number {
    margin-bottom: 14px;

    font-size: 38px;
    font-weight: 700;
    line-height: 1;

    color: var(--color-accent-gold);
}

.fourth-screen .fourth-screen__card p {
    margin: 0;
    color: #111111;
    font-size: 20px;
    line-height: 1.35;
}

.fifth-screen {
    padding: 50px 0 70px;
    background: var(--color-background);
    color: #ffffff;
}

.fifth-screen > .content {
    width: 920px;
    margin: 0 auto;
}

.fifth-screen .fifth-screen__title {
    margin: 0 0 42px;
    font-family: "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: .96;
    color: #ffffff;
    text-align: center;
}

.fifth-screen .fifth-screen__container {
    display: grid;
    grid-template-columns: 1fr 380px;
    column-gap: 42px;
    align-items: start;
}

/* ---------------- LEFT ---------------- */

.fifth-screen .fifth-screen__left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fifth-screen .fifth-screen__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.fifth-screen .fifth-screen__item img {
    width: 34px;
    flex-shrink: 0;
    margin-top: 4px;
}

.fifth-screen .fifth-screen__item p {
    margin: 0;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;

    color: #ffffff;
}

/* ---------------- RIGHT ---------------- */

.fifth-screen .fifth-screen__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fifth-screen .fifth-screen__card {
    padding: 16px 18px;

    background: #f8f4ef;

    border-radius: 12px;
    border: 1px solid var(--color-accent-gold);

    color: #111111;

    box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.fifth-screen .fifth-screen__card strong {
    font-size: 18px;
    font-weight: 700;
}

.fifth-screen .fifth-screen__card {
    font-size: 16px;
    line-height: 1.4;
}

.fifth-screen__title .cascade{
    font-size: 76px;
}

.sixth-screen {
    padding: 50px 0 70px;
    background: #eee7da;
    color: var(--color-header);
}

.sixth-screen > .content {
    width: 920px;
    margin: 0 auto;
}

.sixth-screen .sixth-screen__subtitle {
    margin: 0 0 18px;

    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;

    color: var(--color-header);
}

.sixth-screen .sixth-screen__title {
    margin: 0 0 38px;

    font-family: "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0;
    text-align: center;

    color: var(--color-header);
}

/* ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â±ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â»ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â° */

.sixth-screen .sixth-screen__table-wrapper {
    width: 920px;
    margin: 0 auto;
    overflow: hidden;

    border-radius: 16px;
}

.sixth-screen .sixth-screen__table {
    display: grid;
    grid-template-columns: 235px repeat(3, 1fr);

    background: #151b55;
    border: 1px solid #2d417f;
}

.sixth-screen .sixth-screen__cell {
    min-width: 0;
    border-bottom: 2px solid rgba(203, 172, 108, 0.45);
}

.sixth-screen .sixth-screen__header {
    min-height: 205px;
    padding: 24px 18px;

    color: #ffffff;
    text-align: center;
}

.sixth-screen .sixth-screen__header--label {
    background: #101833;

    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.sixth-screen .sixth-screen__header--start {
    background: #304786;
}

.sixth-screen .sixth-screen__header--personal {
    background: #181957;
}

.sixth-screen .sixth-screen__header--premium {
    background: #202e67;
}

.sixth-screen .sixth-screen__tariff-name {
    min-height: 48px;

    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.sixth-screen .sixth-screen__old-price {
    min-height: 42px;

    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;

    color: #ffffff;
}

.sixth-screen .sixth-screen__old-price span {
    font-size: 14px;
}

.sixth-screen .sixth-screen__price {
    margin-top: 12px;

    font-family: var(--font-secondary);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;

    color: #ffffff;
}

.sixth-screen .sixth-screen__price span {
    font-size: 18px;
}

/* ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â·ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚Â ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¹ */

.sixth-screen .sixth-screen__feature {
    min-height: 52px;
    padding: 7px 20px;

    display: flex;
    align-items: center;

    background: #101833;

    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.15;

    color: #ffffff;
}

/* ÃƒÆ’Ã‚ÂÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚Â */

.sixth-screen .sixth-screen__value {
    min-height: 52px;

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

.sixth-screen .sixth-screen__value--start {
    background: #304786;
}

.sixth-screen .sixth-screen__value--personal {
    background: #181957;
}

.sixth-screen .sixth-screen__value--premium {
    background: #202e67;
}

.sixth-screen .sixth-screen__check {
    width: 20px;
    height: 20px;

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

    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    color: var(--color-accent-gold);
}

.sixth-screen .sixth-screen__minus {
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;

    color: var(--color-accent-gold);
}

/* ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¶ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚Â ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€¦Ã¢â‚¬â„¢ */

.sixth-screen .sixth-screen__footer-label {
    min-height: 85px;
    padding: 14px 20px;

    background: #101833;
    border-bottom: none;

    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;

    color: #f2d797;
}

.sixth-screen .sixth-screen__footer {
    min-height: 85px;
    padding: 14px;

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

    border-bottom: none;
}

.sixth-screen .sixth-screen__button {
    width: 100%;
    height: 46px;

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

    border: 1px solid #b8882d;
    border-radius: 12px;

    background: #ead29a;

    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;

    color: #101833;
}

/* ==========================
   ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¿ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¼ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€¦Ã¢â‚¬â„¢ ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â°
   ========================== */

.sixth-screen .sixth-screen__payback {
    margin-top: 54px;
}

.sixth-screen .sixth-screen__payback-title {
    margin: 0 0 34px;

    font-family: "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;

    color: var(--color-header);
}

.sixth-screen .sixth-screen__payback-cards {
    width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sixth-screen .sixth-screen__payback-card {
    min-height: 104px;
    padding: 16px 20px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #ad4e0c;
    box-shadow: 0 6px 12px rgba(48, 35, 22, 0.14);
    color: #ffffff;
}

.sixth-screen .sixth-screen__payback-card:hover {
    border-color: var(--color-accent-gold);
}

.sixth-screen .sixth-screen__payback-number {
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #68cf68;
}

.sixth-screen .sixth-screen__payback-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
}

.sixth-screen .sixth-screen__payback-description {
    margin: 26px 0 0;

    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;

    color: #706b66;
}

.seventh-screen {
    padding: 50px 0 70px;
    background: var(--color-background);
    color: #ffffff;
}

.seventh-screen > .content {
    width: 760px;
    margin: 0 auto;
}

.seventh-screen .seventh-screen__subtitle {
    margin: 0 0 10px;

    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    text-align: center;
    text-transform: uppercase;

    color: #ffffff;
}

.seventh-screen .seventh-screen__title {
    margin: 0 0 28px;

    font-family: "Times New Roman", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;

    text-align: center;

    color: #ffffff;
}

/* ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â´ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ */

.seventh-screen .seventh-screen__faq {
    width: 100%;
}

.seventh-screen .seventh-screen__item {
    padding: 0 0 22px;
}

.seventh-screen .seventh-screen__question {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    color: #ffffff;
    cursor: pointer;
    padding: 18px 0px 8px;
}

.seventh-screen .seventh-screen__question > span:first-child {
    padding-top: 3px;
}

/* ÃƒÆ’Ã‚ÂÃƒâ€¹Ã…â€œÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â° */

.seventh-screen .seventh-screen__icon {
    position: relative;

    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    border: 1px solid #ffffff;
    border-radius: 50%;
}

.seventh-screen .seventh-screen__icon::before,
.seventh-screen .seventh-screen__icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    background: #ffffff;

    transform: translate(-50%, -50%);
}

.seventh-screen .seventh-screen__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ */

.seventh-screen .seventh-screen__answer {
    display: grid;
    grid-template-rows: 0fr;

    overflow: hidden;

    opacity: 0;

    transition:
        grid-template-rows 0.25s ease,
        opacity 0.25s ease;
}

.seventh-screen .seventh-screen__answer-inner {
    min-height: 0;
    padding-right: 123px;
    padding-left: 34px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: #ffffff;
}

/* ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Âµ ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Âµ */

.seventh-screen .seventh-screen__item.active .seventh-screen__question {
    color: var(--color-accent-gold);
}

.seventh-screen .seventh-screen__item.active .seventh-screen__icon {
    border-color: var(--color-accent-gold);
}

.seventh-screen .seventh-screen__item.active .seventh-screen__icon::before,
.seventh-screen .seventh-screen__item.active .seventh-screen__icon::after {
    background: var(--color-accent-gold);
}

.seventh-screen .seventh-screen__item.active .seventh-screen__icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.seventh-screen .seventh-screen__item.active .seventh-screen__icon::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.seventh-screen .seventh-screen__item.active .seventh-screen__answer {
    grid-template-rows: 1fr;
    margin-top: 10px;
    opacity: 1;
}
.meeting-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    background: var(--color-accent-gold-light-bg, #eee8dc);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.meeting-popup.active {
    opacity: 1;
    visibility: visible;
}

.meeting-popup-dialog {
    position: relative;
    width: min(635px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 10px 50px 16px;
    border: 1px solid rgba(216, 190, 135, .45);
    border-radius: 14px;
    box-sizing: border-box;
    background: #1a233f;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    transform: translateY(14px);
    transition: transform .2s ease;
}

.meeting-popup.active .meeting-popup-dialog {
    transform: translateY(0);
}

.meeting-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 32px;
    padding: 0;
    border: 1px solid #c9ced8;
    border-radius: 7px;
    background: #f4f4f4;
    color: #17203a;
    font-size: 27px;
    font-weight: 700;
    line-height: 28px;
    cursor: pointer;
}

.meeting-popup-heading {
    width: calc(100% + 42px);
    max-width: 495px;
    margin: 0 0 30px -42px;
    padding: 8px 20px 10px;
    border-radius: 9px;
    box-sizing: border-box;
    background: #202b50;
    overflow: hidden;
}

.meeting-popup-heading h2 {
    max-width: 100%;
    margin: 0;
    color: #dfc382;
    font-family: Arial, sans-serif;
    font-size: clamp(19px, 2.4vw, 24px);
    font-weight: 400;
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.meeting-popup-heading p {
    max-width: 340px;
    margin: -1px 0 0 31px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.meeting-popup-form {
    width: 304px;
    margin-left: 2px;
}

.meeting-popup-field {
    display: block;
    margin-bottom: 10px;
}

.meeting-popup-field input,
.meeting-popup-field textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #d7d9df;
    border-radius: 0;
    box-sizing: border-box;
    background: #f4f4f4;
    color: #17203a;
    font: 16px/1.2 Arial, sans-serif;
    outline: none;
}

.meeting-popup-field input {
    height: 40px;
    padding: 0 10px;
}

.meeting-popup-field textarea {
    min-height: 120px;
    resize: vertical;
}

.meeting-popup-field input:focus,
.meeting-popup-field textarea:focus {
    border-color: #dfc382;
    box-shadow: 0 0 0 2px rgba(223, 195, 130, .22);
}

.meeting-popup-captcha {
    width: 304px;
    min-height: 102px;
    margin: 14px 0 10px;
}

.meeting-popup-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 8px;
    padding: 10px 18px;
    border: 0;
    background: #dfc382;
    color: #11182d;
    font: 16px/1.25 Arial, sans-serif;
    cursor: pointer;
}

.meeting-popup-submit:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.meeting-popup-policy {
    margin: 11px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
}

.meeting-popup-policy a {
    color: orange;
}

.meeting-popup-success {
    margin: 10px 0;
    color: #9ee6a2;
    font-size: 14px;
    font-weight: 700;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
