:root {
    --ff-headers: 'Geologica', sans-serif;
    --ff-main: 'Onest', sans-serif;

    --container-padding: 24px;
    --container-width: 1400px;

    --accent-green: #C1FB68;
    --accent-blue: #0A4B88;
    --accent-light-blue: #9AEAF8;

    --transition-value: 0.3s ease-in-out; 
}

html {
    scroll-behavior: smooth;
}

.container {
    box-sizing: content-box;
    max-width: var(--container-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* #region BASE-STYLES */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--ff-main);
    font-size: 15px;
    background-color: white;
    color: #303437;
    position: relative;
}
body.popup-open {
    /* overflow: hidden; */

}

main#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul li {
    list-style-type: none;
}

a {
    transition: color var(--transition-value);
}
a:hover {
    color: var(--accent-green);
}
/* #endregion BASE-STYLES */

/* #region COMPONENTS */
.btn {
    font-family: var(--ff-main);
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 100vmax;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-value);
}

.btn--white {
    color: var(--accent-blue);
    font-weight: 800;
    background-color: white;
}
.btn--white:hover {
    background-color: var(--accent-green);
}

.btn--blue {
    background-color: #D4E7F6;
    color: #074987;
    font-size: 11px;
    font-weight: 800;
    font-style: normal;
    line-height: 133%; /* 14.63px */
    letter-spacing: 0.33px;
    text-transform: uppercase;
}
.btn--blue:hover {
    background-color: var(--accent-green);
}

.btn-accent {
    background-color: var(--accent-green);
    font-size: 18px;
    font-weight: 700;
    color: #163800;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-value);
    padding: 32px 37px;
}
.btn-accent::before {
    content: '';
    width: 473px;
    height: 88px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -49px;
    border-radius: 473px;
    opacity: 0.4;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    pointer-events: none;
}
.btn-accent:hover {
    background-color: #91FFF2;
}


.block-title {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;

    font-family: var(--ff-headers);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.4;
    color: #35393D;
    text-align: center;
    text-transform: uppercase;
}
.block-title > span {
    color: var(--accent-blue);
}

.block-undertext {
    color: var(--accent-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 165%;
    text-align: center;
}

.block-style-wrap {
    position: relative;
    padding-bottom: 5.49vw;
}
.block-style-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5.49vw;
    background-image: url('../img/block-wrap.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


.fg {
    padding: 21px 20px;
    border-radius: 100vmax;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background-color: rgba(255, 255, 255, 0.03);
    color: white;

    display: inline-flex;
    align-items: center;
    column-gap: 10px;

    transition: all var(--transition-value);
}

.fg > input {
    flex-grow: 1;
    max-width: none;
    font-family: var(--ff-main);
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    background-color: transparent;
    outline: none;
}
.fg > input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.fg:focus-within {
    border-color: white;
}

.fg svg path {
    transition: all var(--transition-value);
}

.fg.error {
    color: #FFB8B8;
    border-color: rgba(255, 42, 42, 0.60);
    /* background: rgba(255, 173, 173, 0.24); */
    box-shadow: 0 4px 37px 0 rgba(189, 55, 86, 0.43);
}
.fg.error > input::placeholder {
    color: #FFB8B8;
}
.fg.error svg path {
    stroke: #FFB8B8;
}

.fg-checkbox  {
    cursor: pointer;
}

.fg-checkbox > input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.checkbox {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #EEF0F5;
    background: white;
    transition: all var(--transition-value);
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url('../icons/check.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all var(--transition-value);
}

.fg-checkbox input:checked + .checkbox {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}
.fg-checkbox input:checked + .checkbox::before {
    opacity: 1;
}

/* #endregion COMPONENTS */

/* #region HEADER & FOOTER */
.site-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.header__content {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 77px;
}

.header__logo {
    flex-shrink: 0;
    max-width: 140px;
}

.header__nav {
    flex-grow: 1;
}
.header__menu {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    padding-top: 7px;
}
.header__menu > li > a {
    display: inline-block;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 500;
    color: #83A4C3;
    text-decoration: none;
    transition: color var(--transition-value);
    position: relative;
}
.header__menu > li > a:hover {
    color: white;
}

.header__menu > li > a::before {
    content: '';
    width: 9px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background-image: url('../icons/water-drop.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-value), transform var(--transition-value);
}

.header__menu > li > a:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
}

.header__contacts {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
.header-phone {
    display: flex;
    align-items: center;
    column-gap: 7px;
    text-decoration: none;
    color: white;
}

.link-tool {
    flex-shrink: 0;
    width: 47px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100vmax;
    background-color: rgba(240, 243, 246, 0.07);
}

.header-phone__value {
    font-size: 18px;
    font-weight: 500;
}
.header__btn {
    padding: 15px 20px;
    font-size: 11px;
    letter-spacing: 0.33px;
    text-transform: uppercase;
}
.header__burger-wrapper {
    display: none;
}
.header__burger {
    cursor: pointer;
}

.site-header--dark  {
    position: static;
    border-bottom: 1px solid #ECEDEF;
}
.site-header--dark .header__menu > li > a {
    color: #9A9C9E;
}
.site-header--dark .header__menu > li > a:hover {
    color: #35393D;
}
.site-header--dark .header__menu > li > a::before {
    background-image: url('../icons/water-drop--dark.svg');
}
.site-header--dark .header-phone {
    color: #35393D;
}
.site-header--dark .header-phone:hover {
    color: var(--accent-blue);
}
.site-header--dark .link-tool {
    background-color: #ECEFF3;
}



.site-footer {
    margin-top: auto;
    padding: 40px 0;
    background-color: #242627;
}
.footer-bottom {
    padding-top: 19px;
    border-top: 1px solid #2F3132;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #A7A8A9;
}
.footer__privacy {
    color: #A7A8A9;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding-bottom: 20px;
    font-size: 12px;
    color: #D3D4D4;
}
.footer__logo {
    flex-shrink: 0;
}
.footer__logo > .custom-logo-link {
    display: inline-block;
    max-width: 140px;
}
.footer-socials {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-socials__item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact__title {
    margin-bottom: 6px;
}
.footer-contact__link {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}
.footer-contact--email {
    margin-left: 40px;
}
.footer-contact--email .footer-contact__link:hover {
    text-decoration: underline;
}
/* #endregion HEADER & FOOTER */

/* #region HERO */
.block-hero {
    background-color: var(--accent-blue);
    color: white;
    padding-top: 237px;
    position: relative;
    z-index: 1;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    max-width: 1920px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;;
}
.hero__bg-image {
    position: absolute;
    bottom: 0;
    left: 40%;
}
.hero__img {
    max-width: none;
    max-height: none;
}
.hero__bg-image::before {
    content: '';
    position: absolute;
    right: 0;
    top: -200px;
    max-width: 955px;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    opacity: 0.49;
    background: white;
    filter: blur(250px);
    z-index: -1;
}
.hero-wrapper {
    display: flex;
}
.hero__content {
    flex-shrink: 0;
    padding-bottom: 165px;
    width: 670px;
    margin-right: 30px;
}
.hero__title {
    font-family: var(--ff-headers);
    font-size: 57px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
}
.hero__title::before {
    content: '';
    width: 64px;
    height: 12px;
    background-image: url('../icons/hero-wave.svg');
    background-size: 100% 100%;
    position: absolute;
    right: calc(100% + 16px);
    top: 25px;
}
.hero__title > span {
    color: #90E8F8;
}

.hero__subtitle {
    font-family: var(--ff-headers);
    font-size: 37px;
    margin-bottom: 15px;
}
.hero__text {
    font-family: var(--ff-headers);
    font-size: 16px;
    line-height: 1.65;
    color: #9FB8D0;
    margin-right: 20%;
}

.hero__btn-wrapper {
    margin-top: 15px;
    padding: 8px;
    border-radius: 100vmax;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero__btn-promo {
    position: absolute;
    width: calc(100% - 52px);
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    
    padding: 8px 20px 8px 8px;
    background-color: #9AEAF8;
    border-radius: 100vmax;
    box-shadow: 0 -6px 31px 0 rgba(0, 0, 0, 0.30), 0 0 34px 0 rgba(154, 234, 248, 0.24);

    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #1D5862;
    font-size: 12px;
    font-weight: 900;
    line-height: 124%; /* 14.88px */
    text-transform: uppercase;
}
.hero__btn-promo::before {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    top: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background-color: #9AEAF8;
    z-index: -1;
}

.hero__btn-promo-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-promo {
    display: flex;
    align-items: center;
    border-radius: 25px;
    background: #0E457A;
    backdrop-filter: blur(5.5px);
    min-height: 175px;
}
.hero-promo__left {
    padding: 25px 31px 25px 25px;
    background-image: url('../icons/promo-sep.svg');
    background-size: auto 100%;
    background-position: 100% center;
    background-repeat: no-repeat;
}
.hero-promo__fire {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%; /* 15px */
    padding: 13px 12px 13px 55px;
    border-radius: 100vmax;
    background: radial-gradient(68.87% 73.05% at 67.96% 10.68%, #EABC59 0%, #FA511E 100%);
    position: relative;
}
.hero-promo__fire-icon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 60px;
    object-fit: contain;
    max-width: none;
    max-height: none;
}

.hero-promo__right {
    max-width: 320px;
    padding: 25px 25px 25px 20px;
}
.hero-promo__title {
    font-size: 23px;
    font-weight: 700;
    line-height: 132%; /* 30.36px */
}
.hero-promo__text {
    font-size: 15px;
    line-height: 1.32;
    color: #A0B6CB;
    margin-top: 9px;
}
.hero__btn-wrapper--mobile {
    display: none;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1920px;
    margin: auto;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__scroll {
    position: absolute;
    bottom: 0;
    left: 90px;
    pointer-events: all;
}
.hero__scroll-circle {
    width: 171px;
}
.hero__scroll::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-size: 100%  100%;
    background-image: url('../icons/arw-down.svg');
}

.hero__bubbles {
    position: absolute;
    bottom: -245px;
    right: 50%;
    width: 564px;
    height: auto;
    object-fit: contain;
    transform: rotate(21deg) scaleX(-1);
}

/* #endregion HERO */

/* #region PROBLEMS */
.block-problems {
    padding-top: 90px;
}

.problems__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.65;
    color: var(--accent-blue);
    text-align: center;
    position: relative;
    bottom: -15px;
}

.problems {
    display: flex;
    row-gap: 20px;
    column-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.problem {
    flex: 1 1 calc((100% - 80px) / 5);
    padding: 35px;
    border-radius: 20px;
    border: 3px solid #E9F0F5;
    position: relative;
}
.problem::before {
    content: '';
    position: absolute;
    right: 19px;
    transform: translateY(-50%);
    top: 0;
    width: 50px;
    height: 50px;
    background-image: url('../img/problems/star-warning.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.problem__img {
    width: 56px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 15px;
}
.problem__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    color: #303437;
}
/* #endregion PROBLEMS */

/* #region PROS */
.block-pros {
    padding: 90px 0;
}
.block-pros__title {
    max-width: 1020px;
}

.pros-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.pros-item {
    flex: 1 1 calc((100% - 120px) / 4);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pros-item__img {
    flex-shrink: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.pros-item__title {
    font-family: var(--ff-headers);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #35393D;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.pros-item__text {
    font-size: 15px;
    line-height: 1.54;
    color: #595C5F;
}
/* #endregion PROS */

/* #region HOW IT WORKS */
.block-hiw {
    padding: 90px 0;
    background-color: #EFF7FF;
    position: relative;
    z-index: 1;
}
.hiw__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.hiw__bg-l  {
    width: 565px;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: -140px;
    bottom: -357px;
    transform: rotate(338deg);
    transition: opacity var(--transition-value) !important;
}
.hiw__bg-r {
    position: absolute;
    right: -216px;
    bottom: -40px;
    transform: rotate(338deg) !important;
    object-fit: contain;
    transition: opacity var(--transition-value) !important;
}

.hiw__title {
    max-width: 762px;
}

.hiw-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hiw-item {
    padding: 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 7px 28px 0 rgba(0, 0, 0, 0.07);
    flex: 1 1 calc((100% - 80px) / 5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.hiw-item__counter {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #2A5961;
    font-weight: 800;

    position: absolute;
    right: 24px;
    top: 0;
    transform: translatey(-50%);
    background-image: url('../img/hiw/star.svg');
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
}
.hiw-item__img {
    width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    flex-shrink: 0;
}
.hiw-item__text {
    font-family: var(--ff-headers);
    font-size: 15px;
    line-height: 1.54;
    color: #444B52;
}

.hiw__text {
    margin-top: 40px;
}

/* #endregion HOW IT WORKS */

/* #region SOLUTION */
.block-solution {
    padding: 90px 0;
    background-color: #F9FAFB;
}
.solution__wrapper {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.solution__content {
    width: 39.1%;
    min-width: 317px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    flex-shrink: 0;
}
.solution__title {
    color: #35393D;
    font-family: var(--ff-headers);
    font-size: 31px;
    font-weight: 900;
    line-height: 139%; /* 43.09px */
    text-transform: uppercase;
}
.solution__title > span {
    color: var(--accent-blue);
}
.solution__subtitle {
    color: #44474B;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}
.solution__text {
    color: #585B5E;
    font-size: 16px;
    line-height: 1.65;
}

.solution__footer {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    padding: 20px;
    border-radius: 16px;
    border: 4px solid #90E8F8;
}
.solution__footer-img {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}
.solution__footer-text {
    color: #585B5E;
    font-size: 15px;
    line-height: 1.54;
}
.solution__footer--laptop {
    display: none;
    margin-top: 20px;
    padding: 16px;
    column-gap: 15px;
}
.solution__footer--laptop .solution__footer-img {
    width: 43px;
}
.solution__footer--laptop .solution__footer-text {
    font-size: 14px;
}

.solution__image {
    /* flex-shrink: 0; */
    flex-grow: 1;
    position: relative;
}

.solution__stats {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.stats-inner {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.stat {
    padding: 4px 10px 4px 30px;
    background-color: white;
    border-radius: 0 100vmax 100vmax 0;
    position: relative;
}
.stat__title {
    color: #5A5E62;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.11;
}
.stat__value {
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.24;
}
.stat__image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background-image: url('../icons/star.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

/* #endregion SOLUTION */

/* #region BLOCK COMPONENTS */
.comp {
    padding-top: 90px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
}
.comp__header {
    max-width: 1142px;
    text-align: center;
}
.comp__title {
    margin-bottom: 0 !important;
}
.comp__subtitle {
    margin-top: 10px;
    color: #303437;
    font-size: 25px;
    font-weight: 500;
    line-height: 165%; /* 41.25px */
}
.comp__btn--laptop {
    display: none;
}
.comp__cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.comp-card {
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    border: 3px solid #E9EFF5;
    flex: 1 1 calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.comp-card__img {
    width: 50px;
    height: auto;
    margin-bottom: 40px;
    object-fit: contain;
}
.comp-card__title {
    margin-bottom: 10px;
    font-family: var(--ff-headers);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: #35393D;
}
.comp-card__text {
    font-size: 15px;
    line-height: 1.54;
    color: #444B52;
}
.comp-card__hover {
    position: absolute;
    top: 0px;
    left: -3px;
    width: calc(100% + 6px);
    height: 100%;
    min-height: 100%;
    /* min-height: 350px; */

    display: flex;
    flex-direction: column;

    z-index: 1000;
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 25px 431px 121px 0 rgba(3, 29, 53, 0.00), 16px 276px 111px 0 rgba(3, 29, 53, 0.03), 9px 155px 93px 0 rgba(3, 29, 53, 0.10), 4px 69px 69px 0 rgba(3, 29, 53, 0.17), 1px 17px 38px 0 rgba(3, 29, 53, 0.20);

    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-value);
}
.comp-card__hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 75, 136, 0.00) 50%, var(--accent-blue) 100%);
    z-index: -1;
    pointer-events: none;
}
.comp-card__hover-bg {
    position: absolute;
    width: 100%;
    min-height: 350px;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    pointer-events: none;
}
.comp-card__hover-title,
.comp-card__hover-text {
    color: white;
}

.comp-card__hover-title {
    margin-top: auto;
}

.comp-card.hover .comp-card__hover {
    opacity: 1;
    top: -16px;
    min-height: 350px;
    pointer-events: all;
}

.comp-card__title--main,
.comp-card__text--main,
.comp-card__img--main {
    opacity: 1;
    transition: opacity var(--transition-value);
}
.comp-card.hover .comp-card__title--main,
.comp-card.hover .comp-card__text--main,
.comp-card.hover .comp-card__img--main {
    opacity: 0;
}

/* #endregion BLOCK COMPONENTS */

/* #region WHOM */
.block-whom {
    background-color: #F9FAFB;
    padding-top: 90px;
    overflow: hidden;
}
.whom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.whom__content {
    width: 62%;
    padding-bottom: 90px;
    flex-shrink: 0;
    /* margin-right: 30px; */
}
.whom__title {
    text-align: start;
}
.whom__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.whom-item {
    flex: 1 1 calc((100% - 40px) / 3);
}
.whom-item__inner {
    padding: 20px;
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background: white;
    box-shadow: 0 17px 31px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.whom-item__inner::before {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url('../icons/star-check.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.whom-item__text {
    font-size: 15px;
    line-height: 1.54;
}

.whom__img {
    margin-right: -20px;
    max-width: calc(38% - 10px);
}
/* #endregion WHOM */

/* #region STEPS */
.block-steps {
    padding: 90px 0;
}
.steps__undertext {
    margin-top: 40px;
}
.steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.step {
    flex: 1 1 calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 20px;
    min-height: 245px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(10, 75, 136, 0.00) 39.21%, var(--accent-blue) 100%);
    z-index: -1;
}
.step__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.step__counter {
    margin-top: auto;
    width: 40px;
    height: 40px;
    background-image: url('../icons/star.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A5961;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    line-height: 154%; /* 23.1px */
}
.step__name {
    font-family: var(--ff-headers);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: white;
}
.step__text {
    color: #D5E1EB;
    font-size: 15px;
    line-height: 1.54;
}

.step__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.step__icon::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('../icons/arw-r.svg');
    background-size: 100% 100%;
}
.step:last-child ::after {
    background-image: url('../icons/check.svg');
}
.step__icon-circle {
    height: 119px;
    width: auto;
    pointer-events: none;
}

/* #endregion STEPS */

/* #region FAQ */
.block-faq {
    padding: 90px 0;
    overflow: hidden;
}
.faq {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.faq-item__header {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #E9EFF5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    cursor: pointer;
    transition: background-color var(--transition-value);
}
.faq-item__question {
    font-size: 18px;
    color: #35393D;
    font-weight: 700;
    line-height: 1.38;
    transition: color var(--transition-value);
}
.faq-item__toggle {
    flex-shrink: 0;
    transition: transform var(--transition-value);
}
.faq-item__answer {
    padding: 20px;
    font-size: 15px;
    line-height: 1.3;
    color: #54585C;
}

.faq-item__header:hover .faq-item__question {
    color: #074987;
}

.faq-item__header--active {
    background-color: #E9EFF5;
}
.faq-item__header--active .faq-item__question {
    color: #074987;
}
.faq-item__header--active .faq-item__toggle {
    transform: rotate(180deg);
}

/* #endregion FAQ */

/* #region diff */
.block-diff {
    padding-bottom: 90px;
}
.diff__header {
    padding: 90px 0 98px;
    background-color: #074987;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.diff__bg {
    position: absolute;
    max-width: none;
    max-height: none;
    width: 565px;
    height: auto;
    pointer-events: none;
}
.diff__bg-l {
    bottom: -406px;
    left: -233px;
    transform: scaleX(-1) rotate(161deg);
}
.diff__bg-r {
    right: -162px;
    top: -20px;
    transform: rotate(342deg);
}
.diff__header::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% - 80px);
    width: 955px;
    height: 955px;
    border-radius: 955px;
    opacity: 0.49;
    background: white;
    filter: blur(250px);
    z-index: -1;
}
.diff__title {
    margin: 0 auto !important;
    color: white;
    max-width: 762px;
}
.diff__title > span {
    color: #90E8F8;
    white-space: nowrap;
}

.diff__wrapper {
    margin-top: -40px;
    overflow-x: auto;
}

.diff__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 20px;
    position: relative;
    z-index: 2;
}
.diff__names {
    padding-top: 98px;
    flex-grow: 1;
}
.diff-name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.54;
    color: #35393D;
    border-bottom: 1px solid #EEF1F4;

    position: absolute;
    width: 260px;
    height: 100%;
    right: calc(100% + 45px );
    top: 0;

    display: flex;
    align-items: center;
}
.diff-name--last {
    border-bottom: none;
}

.diff-card {
    width: 375px;
    padding: 25px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 0 42px 0 rgba(0, 0, 0, 0.06);
}
.diff-card--main {
    border: 3px solid #90E8F8;
    margin-left: calc(18.2% + 20px);
}

.diff-item {
    padding: 14px 0;
    border-bottom: 1px solid #EEF1F4;
    position: relative;
}
.diff-item--last {
    border-bottom: none;
}

.diff-card__name {
    color: #404447;
    font-size: 16px;
    font-weight: 700;
    line-height: 154%; /* 24.64px */
}
.diff-card__title {
    color: #212426;
    font-size: 22px;
    font-weight: 900;
    line-height: 154%; /* 33.88px */
    padding-bottom: 14px;
    border-bottom: 1px solid #EEF1F4;
    text-transform: uppercase;
}
.diff-item__price {
    color: #212326;
    font-size: 16px;
    font-weight: 700;
    line-height: 154%; /* 24.64px */
}
.diff-item__rating {
    display: flex;
    column-gap: 2px;
    margin-bottom: 5px;
}
.diff-item__rating > svg,
.diff-item__rating > img {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
}
.diff-item__text {
    color: #4B4F52;
    font-size: 15px;
    font-weight: 400;
    line-height: 154%;
}
.diff__btn {
    width: 100%;
}
.diff__btn--mobile {
    display: none;
}

.diff-card--second .diff-name {
    display: none;
}

/* #endregion diff */

/* #region REVIEWS */
.block-reviews {
    padding: 90px 0;
    background-color: #EFF7FF;
    overflow: hidden;
}
.reviews-swiper {
    width: 56.5%;
    overflow: visible !important;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-item.swiper-slide {
    height: auto;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #E9EFF5;
    
    background: #FFF;
}
.reviews-item__header {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}
.reviews-item__avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    border-radius: 50%;
    background-color: #E9F3F9;
}
.reviews-item__avatar-letter {
    color: var(--accent-blue);
    text-align: center;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}
.reviews-item__name {
    font-family: var(--ff-headers);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #35393D;
}
.reviews-item__date {
    color: #818B9A;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%; /* 14.4px */
}
.reviews-item__text {
    color: #575A60;
    font-size: 15px;
    font-weight: 400;
    line-height: 156%; /* 23.4px */
}

.reviews-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}
.reviews-nav__pagination {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 4px;
}
.reviews-nav .swiper-pagination-bullet {
    margin: 0 !important;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all var(--transition-value);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews-nav .swiper-pagination-bullet::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 2px solid #D5DDE5;
    transition: all var(--transition-value);
}
.reviews-nav .swiper-pagination-bullet-active {
    border-color: var(--accent-blue);
}
.reviews-nav .swiper-pagination-bullet-active::before {
    border-color: transparent;
    background-color: var(--accent-blue);
}
.reviews-nav__arrow {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: #E7EDF3;
    transition: background-color var(--transition-value);
    cursor: pointer;
}
.reviews-nav__arrow svg path {
    transition: stroke var(--transition-value);
}
.reviews-nav__arrow:hover {
    background-color: var(--accent-blue);
}
.reviews-nav__arrow:hover svg path {
    stroke: white;
}
/* #endregion REVIEWS */

/* #region FORM */
.block-form {
    background-color: var(--accent-blue);
    color: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.form__title {
    text-align: left;
    color: white;
    padding-right: 70px;
    margin-bottom: 5px;
}
.form__title span {
    color: #8FE6F6;
}
.form__subtitle {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.65;
    color: #96B2CC;
    margin-bottom: 20px;
}


.form__content {
    flex-shrink: 0;
    width: 60%;
    padding: 90px 0 60px;
}

.form__btn {
    padding: 21px 32px;
}
.form__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form__inputs  .fg {
    flex-grow: 1;
}
.form__btn {
    font-size: 16px;
}
.form__acceptence {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    color: #92AFCA;
    font-size: 13px;
    cursor: pointer;
}
.form__acceptence a {
    color: #92AFCA;
}
.form__acceptence a:hover {
    color: var(--accent-green);
}

.form__acceptence.error .checkbox {
    color: #FFB8B8;
    border-color: rgba(255, 42, 42, 0.60);
    /* background: rgba(255, 173, 173, 1); */
    box-shadow: 0 4px 37px 0 rgba(189, 55, 86, 0.43);
}

.form-container {
    display: flex;
}
.form__image {
    flex-grow: 1;
    position: relative;
}
.form__image::before {
    content: '';
    position: absolute;
    top: 55%;
    right: 25%;
    width: 127%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    opacity: 0.49;
    background: #FFF;
    filter: blur(250px);
    z-index: -1;
}
.form__img {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 751px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.form-bbls {
    position: absolute;
    width: 564px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transform: rotate(346deg);
    left: -231px;
    bottom: -260px;
    z-index: -1;
}

.form-timer-block {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 2;
}

.form-timer {
    position: absolute;
    z-index: 3;
    top: -15px;
    left: calc(60% - 45px);
    padding: 30px 25px 25px 25px;
    border-radius: 27px;
    background: linear-gradient(116deg, rgba(14, 8, 23, 0.59) -0.98%, rgba(8, 8, 28, 0.59) 95.36%);
    box-shadow: 109px 206px 65px 0 rgba(0, 0, 0, 0.00), 70px 132px 60px 0 rgba(0, 0, 0, 0.01), 39px 74px 50px 0 rgba(0, 0, 0, 0.03), 17px 33px 37px 0 rgba(0, 0, 0, 0.04), 4px 8px 20px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(14.5px);
    color: white;
}
.form-timer__title {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 14px;
    border-radius: 100vmax;
    background-color: #9AEAF8;
    color: #1D5862;
    position: absolute;
    left: 25px;
    top: 0;
    transform: translateY(-50%);
}

#form-notifications {
    position: fixed;
    height: 100%;
    width: auto;
    top: 0;
    right: 0;
    z-index: 111111;
    padding: 20px 10px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}
.notification {
    pointer-events: all;
    padding: 10px 14px;
    border-radius: 11px;
    background: #E86060;
    display: flex;
    align-items: center;
    column-gap: 10px;
    transition: all var(--transition-value);
    opacity: 0;
    transform: translateX(30%);
    cursor: pointer;
}
.notification.show {
    opacity: 1;
    transform: translateX(0);
}
.notification-icon {
    align-self: flex-start;
    width: 28px;
    height: 28px;
    border-radius: 900px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.notification-icon svg {
    width: 16px;
    height: auto;
}
.notification-message {
    align-self: center;
    color: white;
    font-size: 14px;
}
.close-notification {
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    margin-left: auto;
    flex-shrink: 0;
}

/* #endregion FORM */

/* #region PRIVACY */
.page-title {
    padding: 30px 0 25px;
    color: #35393D;
    font-family: var(--ff-headers);
    font-size: 38px;
    font-weight: 900;
    line-height: 150%; /* 57px */
    text-transform: uppercase;
}
.privacy-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 90px;
}
.privacy-content {
    flex-grow: 1;
}
.privacy-menu {
    flex-shrink: 0;
    width: 360px;
    padding: 25px;
    border-radius: 20px;
    background: #F9FAFB;
}
.privacy-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44;
    color: #35393D;
    transition: all var(--transition-value);
}
.privacy-menu__toggle {
    flex-shrink: 0;
    display: none;
    transition: transform var(--transition-value);
}

.privacy-menu__header.active .privacy-menu__toggle {
    transform: rotate(180deg);
}

.privacy-menu__content {
    padding-top: 15px;
}
.privacy-content {
    font-size: 16px;
    line-height: 1.65;
}
.privacy-content p {
    margin-bottom: 25px;
}
.privacy-content h2 {
    font-family: var(--ff-headers);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
.privacy-menu__content ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}
.privacy-menu__content ul li:last-child {
    margin-bottom: 0;
}
.privacy-menu__content ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    margin-top: 0.3em;
    background-image: url('../icons/menu-perf.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}


.privacy-menu__content ul li > a {
    color: #074987;
    font-size: 14px;
    font-weight: 500;
    line-height: 143%; /* 20.02px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
/* #endregion PRIVACY */

/* #region MOBILE MENU */
#mobile-menu {
    width: 320px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: radial-gradient(119.77% 126.3% at 95.67% 0%, #1A6FBE 0%, #0A4B88 100%);
    border-radius: 0 14px 14px 0;
    padding: 25px;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform var(--transition-value);
}
#mobile-menu.active {
    transform: translateX(0);
    pointer-events: all;
}
.mobile__menu > li {
    margin-bottom: 15px;
}
.mobile__menu > li:last-child {
    margin-bottom: 0;
}
.mobile__menu > li > a {
    font-size: 16px;
    color: white;
    text-decoration: none;
}
.mobile__logo {
    display: block;
    max-width: 160px;
    margin-bottom: 30px;
}
.mobile__contacts {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mobile__contacts .header__btn {
    display: block;
    width: 100%;
}
.mobile__contacts .header-phone__value {
    display: inline-block;
}
#mobile-menu__close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    width: 47px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 900px;
    background: rgba(240, 243, 246, 0.07);
}

#mobile-menu .link-tool {
    background-color: rgba(240, 243, 246, 0.07);
}
#mobile-menu .header-phone {
    color: white;
}

/* #endregion MOBILE MENU */

/* #region POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(5, 14, 23, 0.50);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all var(--transition-value);
}
.popup.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.popup-inner {
    max-height: 100%;
    overflow-y: auto;
    padding-top: 50px;
    max-width: 734px;
    width: 100%;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE и Edge */
}

.popup-inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.popup-border {
    padding: 10px;
    border-radius: 33px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    width: 100%;
}
.modal {
    padding: 85px 35px 35px;
    border-radius: 25px;
    background: radial-gradient(119.77% 126.3% at 95.67% 0%, #1A6FBE 0%, #0A4B88 100%);
    /* box-shadow: 0 630px 176px 0 rgba(0, 0, 0, 0.00), 0 403px 161px 0 rgba(0, 0, 0, 0.02), 0 227px 136px 0 rgba(0, 0, 0, 0.08), 0 101px 101px 0 rgba(0, 0, 0, 0.13), 0 25px 55px 0 rgba(0, 0, 0, 0.15); */

    display: flex;
    flex-direction: column;
    gap: 33px;

    position: relative;
}

.modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    width: 47px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 900px;
    background: rgba(240, 243, 246, 0.07);
    cursor: pointer;
    transition: opacity var(--transition-value);
}
.modal__close:hover {
    opacity: 0.8;
}


.modal-timer {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);

    padding: 20px 25px 12px 25px;
    border-radius: 25px;
    background: rgba(14, 69, 122, 1);
    backdrop-filter: blur(5.5px);

    color: white;
}
.modal-timer__title {
    padding: 11px 13px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 900px;
    background: #90E8F8;
    color: #2A5961;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%; /* 13px */
    width: max-content;
}

.modal-timer .timer-value {
    font-size: 36px;
}

.modal__header {
    text-align: center;
}

.modal__title {
    font-family: var(--ff-main);
    font-size: 31px;
    font-weight: 900;
    line-height: 139%; /* 43.09px */
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}
.modal__title > span {
    color: #90E8F8;
}

.modal-promo {
    display: inline-block;
    color: white;
    font-family: var(--ff-headers);
    font-size: 12px;
    font-weight: 700;
    line-height: 150%; /* 18px */
    text-transform: uppercase;
    border-radius: 900px;
    background: linear-gradient(86deg, #EABC59 -17.83%, #FA511E 138.95%);
    position: relative;
    padding: 8px 13px 8px 42px;
}
.modal-promo__fire {
    position: absolute;
    max-width: none;
    max-height: none;
    width: 35px;
    height: 47px;
    object-fit: contain;
    object-position: center;
    left: 0;
    bottom: 0;
    text-align: center;
}

.modal-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.modal-step {
    flex: 1 1 calc((100% - 25px) / 2);
    display: flex;
    gap: 7px;
}
.modal-step__counter {
    flex-shrink: 0;
    color: #2A5961;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 154%; /* 18.48px */
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    background-image: url('../icons/star.svg');
    background-size: 100% 100%;
}

.modal-step__text {
    color: white;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 139%; /* 19.46px */
}
.modal-step__text > span {
    color: #90E8F8;
}

.modal-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.modal-form .fg {
    flex: 1 1 calc((100% - 20px) / 2);
}
.modal-form__btn-wrap {
    padding: 8px;
    border-radius: 900px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: auto;
    max-width: 330px;
    width: 100%;
}
.modal-form__btn {
    width: 100%;
}

.modal-form .form__acceptence {
    margin-top: 0;
    align-items: center;
}

#modal-sent .popup-inner {
    padding-top: 0;
}

#modal-sent .modal {
    padding: 35px;
    text-align: center;
}
.modal__subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: white;
}
.modal-sent__btn-wrap {
    padding: 8px;
    border-radius: 900px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 326px;
    margin: auto;
    width: 100%;
}
.modal-sent__btn {
    width: 100%;
}
/* #endregion POPUP */

@media screen and (max-width: 1448px) {
    :root {
        --container-width: 1200px;
    }

    /* #region HERO */
    .hero__title::before {
        content: none;
    }
    .hero__title {
        font-size: 44px;
    }
    .hero__subtitle {
        font-size: 32px;
    }
    .hero__content {
        width: 520px;
    }
    .hero__bg-image {
        left: 30%;
    }
    /* #endregion HERO */

    /* #region HEADER & FOOTER */
    .header__content {
        gap: 40px;
    }
    /* #endregion HEADER & FOOTER */

    /* #region COMPONENTS */
    .block-title {
        font-size: 34px;
    }
    /* #endregion COMPONENTS */

    /* #region PROBLEMS */
    .problems {
        margin-bottom: 40px;
    }
    .problem {
        flex: 1 1 calc((100% - 80px) / 3);
    }
    .problem::before {
        width: 39px;
        height: 39px;
        top: -16px;
        transform: translateY(0);
        right: 22px;
    }
    .problems__text  {
        bottom: 0;
        position: static;
    }
    /* #endregion PROBLEMS */

    /* #region HOW IT WORKS */
    .hiw-item {
        flex: 1 1 calc((100% - 40px) / 3);
    }
    .hiw-item__counter {
        width: 36px;
        height: 36px;
        font-size: 13px;
        top: -12px;
        transform: translateY(0);
    }
    /* #endregion HOW IT WORKS */

    /* #region STEPS */
    .step__name {
        padding-right: 35px;
    }
    /* #endregion STEPS */

    /* #region FORM */
    .form__btn {
        width: calc(50% - 7.5px);
    }
    /* #endregion FORM */
}

@media screen and (max-width: 1248px) {
    /* #region HERO */
    .block-hero {
        padding-top: 170px;
    }
    .hero__img {
        width: 970px;
    }
    .hero__content {
        padding-bottom: 120px;
    }
    .hero-promo {
        min-height: auto;
        position: relative;
    }
    .hero-promo__fire {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: max-content
    }
    .hero-promo__right {
        display: none;
    }
    .hero-promo__left {
        padding: 28px 25px 12px;
        background-image: none;
    }
    .hero__bg-image::before {
        top: 50px;
    }

    .hero__scroll-circle {
        width: 120px;
    }
    .hero__scroll::before {
        width: 18px;
        height: 18px;
        top: 16px;
    }
    /* #endregion HERO */

    /* #region HEADER & FOOTER */
    .header__content {
        gap: 20px;
    }
    .header__logo {
        max-width: 120px;
    }
    .header__nav {
        max-width: 62%;
    }
    .header-phone__value {
        font-size: 16px;
    }
    .header__btn {
        display: none;
    }

    .footer-contact--email {
        margin-left: 20px;
    }
    /* #endregion HEADER & FOOTER */

    /* #region HOW IT WORKS */
    .hiw__bg-l {
        display: none;
    }
    .hiw__bg-r {
        width: 305px;
        top: -69px;
        right: -84px;
        bottom: auto;
        transform: rotate(310deg);
    }
    /* #endregion HOW IT WORKS */

    /* #region SOLUTION */
    .solution__wrapper {
        column-gap: 18px;
    }
    .solution__content {
        width: 41%;
    }
    .solution__title {
        font-size: 27px;
    }
    /* #endregion SOLUTION */

    /* #region WHOM */
    .whom-item {
        flex: 1 1 calc((100% - 20px) / 2);
    }
    /* #endregion WHOM */

    /* #region diff */
    .diff-name {
        position: static;
        margin-bottom: 2px;
        font-size: 15px;
        line-height: 1.54;
        border: none;
    }
    .diff-card--second .diff-name {
        display: block;
    }
    .diff-card--main {
        margin-left: 0;
    }
    /* #endregion diff */

    /* #region REVIEWS */
    .reviews-swiper.swiper {
        width: 79%;
        padding: 0 var(--container-padding);
        margin-left: 0;
    }
    /* #endregion REVIEWS */
}

@media screen and (max-width: 992px) {

    /* #region HERO */
    .block-hero {
        padding-top: 117px;
        border-radius: 0;
    }
    .hero__content {
        padding-bottom: 92px;
        width: 336px;
    }
    .hero__title {
        font-size: 29px;
        margin-bottom: 6px;
    }
    .hero__subtitle {
        font-size: 19px;
        margin-bottom: 10px;
    }
    .hero__text {
        font-size: 13px;
        margin-right: 20px;
    }
    .hero__btn-wrapper {
        margin-top: 10px;
    }
    .hero__btn-promo {
        font-size: 10px;
        column-gap: 8px;
        width: calc(100% - 40px);
    }
    .hero__btn-promo-icon {
        width: 32px;
        height: 32px;
    }
    .hero__btn-promo-icon img {
        width: 14px;
        height: auto;
        object-fit: contain;
    }
    .hero-promo__fire {
        font-size: 13px;
    }
    .timer-value {
        font-size: 36px;
    }

    .hero-promo {
        margin-top: 17px;
    }

    .hero__bg-image {
        left: auto;
        width: calc(100% - 119px);
        right: -145px;
    }
    .hero__img {
        max-width: 100%;
        max-height: 100%;
    }
    .hero__bg-image::before {
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
        top: 0;
        max-width: 955px;
        width: 70%;
    }

    .hero-promo__fire-icon {
        width: 35px;
        height: auto;
    }
    .hero-promo__fire {
        padding: 11px 9px 11px 41px;
    }

    .hero__scroll {
        right: 0;
        left: auto;
    }

    .hero__bubbles {
        width: 429px;
        max-width: none;
    }

    /* #endregion HERO */

    /* #region HEADER & FOOTER */
    .header__content {
        gap: 30px;
        padding: 12px 0;
    }
    .header__nav {
        display: none;
    }
    .header-phone {
        column-gap: 10px;
    }
    .header__burger-wrapper {
        display: block;
    }
    .header-tablet__aside {
        max-width: 186px;
        flex-grow: 1;
    }

    .site-footer {
        padding: 20px 0;
    }
    .footer__logo {
        width: 100%;
        text-align: center;
        order: 1;
    }
    .footer__logo > .custom-logo-link {
        max-width: 102px;
    }

    .footer-contact {
        order: 2;
    }
    .footer-contact--email {
        order: 3;
        margin-left: 0;
    }
    .footer-socials {
        order: 4;
        flex-grow: 0;
    }
    /* #endregion HEADER & FOOTER */

    /* #region COMPONENTS */
    .block-title {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .block-undertext {
        font-size: 16px;
    }

    .btn-accent {
        font-size: 16px;
        padding: 21px 20px;
    }

    .fg {
        padding: 17px 20px;
    }
    /* #endregion COMPONENTS */

    /* #region PROBLEMS */
    .block-problems {
        padding-top: 60px;
    }
    .problems {
        row-gap: 18px;
        column-gap: 18px;
    }
    .problem {
        flex: 1 1 calc((100% - 46px) / 2);
        padding: 16px;
    }
    .problem__img {
        width: 40px;
        margin-bottom: 10px;
    }
    .problem__text {
        font-size: 14px;
    }

    .problems__text {
        margin-bottom: 5px;
    }
    /* #endregion PROBLEMS */

    /* #region PROS */
    .block-pros {
        padding: 60px 0;
    }
    .pros-wrapper {
        gap: 15px;
    }
    .pros-item {
        flex: 1 1 calc((100% - 15px) / 2);
        flex-direction: row;
        align-items: flex-start;
        column-gap: 10px;
    }
    .pros-item__img {
        width: 34px;
    }
    .pros-item__title {
        font-size: 13px;
        margin-bottom: 2px;

    }
    /* #endregion PROS */

    /* #region HOW IT WORKS */
    .block-hiw {
        padding: 60px 0;
    }
    .hiw__bg-r {
        width: 216px;;
    }
    .hiw-items {
        gap: 15px;
    }
    .hiw-item {
        padding: 16px;
        padding-top: 20px;
        flex: 1 1 calc((100% - 20px) / 2);
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .hiw-item__img {
        width: 40px;
    }
    .hiw__text {
        margin-top: 20px;
    }
    /* #endregion HOW IT WORKS */

    /* #region SOLUTION */
    .block-solution {
        padding: 60px 0;
    }
    .solution__title {
        font-size: 19px;
    }
    .solution__subtitle {
        font-size: 15px;
    }
    .solution__text {
        font-size: 13px;
    }

    .stats-inner {
        row-gap: 20px;
    }
    .stat__title {
        font-size: 12px;
    }
    .stat__value {
        font-size: 13px;
    }

    .solution__footer {
        display: none;
        border-width: 2px;
    }
    .solution__footer--laptop {
        display: flex;
    }
    /* #endregion SOLUTION */

    /* #region BLOCK COMPONENTS */
    .comp {
        padding-top: 60px;
        padding-bottom: 30px;
        row-gap: 20px;
    }
    .comp__subtitle {
        margin-top: 5px;
        font-size: 18px;
        line-height: 1.2;
    }
    .comp__btn {
        display: none;
    }
    .comp__btn--laptop {
        display: inline-flex;
    }
    .comp__cards {
        gap: 15px;
    }
    .comp-card {
        min-height: 220px;
        flex: 1 1 calc((100% - 15px) / 2);
        border-width: 2px;
        padding: 16px;
    }
    .comp-card__img {
        margin-bottom: 15px;
    }
    .comp-card__hover {
        padding: 16px;
        width: calc(100% + 4px);
        left: -2px;
        top: -2px;
        /* min-height: 350px; */ 
    }
    .comp-card.hover .comp-card__hover {
        top: -2px;
    }
    /* #endregion BLOCK COMPONENTS */

    /* #region WHOM */
    .block-whom {
        padding-top: 60px;
    }

    .whom__title > br {
        display: none;
    }
    .whom__content {
        width: 100%;
        padding-bottom: 60px;
    }
    .whom-item:nth-last-child(2),
    .whom-item:last-child {
        flex-basis: 100%;
    }
    .whom-item:nth-last-child(2) .whom-item__inner,
    .whom-item:last-child .whom-item__inner {
        width: calc(50% - 7px);
    }
    .whom {
        position: relative;
        z-index: 1;
    }
    .whom__items {
        gap: 14px;
    }
    .whom-item__inner {
        flex-direction: row;
        column-gap: 10px;
    }
    .whom__img {
        position: absolute;
        bottom: 0;
        right: 24px;
        margin-right: 0;
        z-index: -1;
        height: 295px;
        max-width: none;
        width: calc(50% - 35px);
        object-fit: cover;
        object-position: top;
    }
    /* #endregion WHOM */

    /* #region STEPS */
    .block-steps {
        padding: 60px 0;
    }
    .steps {
        gap: 15px;
    }
    .step {
        min-height: 263px;
        padding: 16px;
        row-gap: 5px;
    }
    .step__name {
        font-size: 15px;
    }
    .step__text {
        font-size: 13px;
    }
    .step__icon {
        top: auto;
        transform: translateY(0);
        bottom: 0;
    }
    .step__icon-circle {
        height: 101px;
    }
    .step__icon::after {
        left: 13px;
    }
    .step__name {
        padding-right: 40px;
    }
    .step__text {
        padding-right: 30px;
    }
    .steps__undertext {
        margin-top: 20px;
    }
    /* #endregion STEPS */

    /* #region FAQ */
    .block-faq {
        padding: 60px 0 100px;
    }
    .faq-item__header {
        padding: 15px 14px;
        border-radius: 12px;
    }
    .faq-item__question {
        font-size: 14px;
    }
    .faq-item__toggle {
        width: 17px;
        height: auto;
    }
    .faq-item__answer {
        padding: 10px 14px;
        font-size: 14px;
    }
    /* #endregion FAQ */

    /* #region DIFF */
    .block-diff {
        padding-bottom: 60px;
    }
    .diff__header {
        padding: 60px 0 70px;
    }
    .diff__header::after {
        content: none;
    }
    .diff__bg-l {
        bottom: -241px;
        left: -139px;
        transform: scaleX(-1) rotate(161deg);
        width: 330px;
    }
    .diff__bg-r {
        width: 350px;
        right: -116px;
        top: -205px;
        transform: rotate(342deg);
    }

    .diff__content {
        column-gap: 14px;
        width: max-content;
        padding-bottom: 5px;
    }
    .diff-card {
        padding: 16px;
        width: 312px;
        flex-shrink: 0;
    }
    .diff-item {
        padding: 10px 0;
    }
    .diff-card__name {
        font-size: 13px;
    }
    .diff-card__title {
        font-size: 15px;
        padding-bottom: 10px;
    }
    .diff-name {
        font-size: 13px;
    }
    .diff-item__price {
        font-size: 13px;
    }
    .diff-item__rating > svg,
    .diff-item__rating > img {
        width: 18px;
        height: 18px;
    }
    .diff-item__text {
        font-size: 13px;
    }

    .diff__btn {
        display: none;
    }
    .diff__btn--mobile {
        padding: 17px 27px;
        display: flex;
        margin: 15px auto 0 auto;
    }
    /* #endregion DIFF */

    /* #region REVIEWS */
    .block-reviews {
        padding: 60px 0;
    }
    .reviews-nav {
        margin-top: 20px;
    }
    .reviews-swiper.swiper {
        width: 79%;
        padding: 0 var(--container-padding);
        margin-left: 0;
    }
    .reviews-item.swiper-slide {
        padding: 16px;
        border-radius: 14px;
    }
    .reviews-item__header{
        column-gap: 10px;
        margin-bottom: 10px;
    }
    .reviews-item__avatar {
        width: 42px;
        height: 42px;
    }
    .reviews-item__avatar-letter {
        font-size: 18px;
    }
    .reviews-item__name {
        font-size: 14px;
    }
    .reviews-item__text {
        font-size: 14px;
    }
    /* #endregion REVIEWS */

    /* #region FORM */
    .form__content {
        width: 63%;
        padding: 60px 0;
    }
    .form__title {
        margin-bottom: 5px;
        padding-right: 0;
    }

    .form__subtitle {
        font-size: 15px;
    }
    .form__img {
        width: 192%;
        top: auto;
        bottom: -45px;
        left: -125px;
        max-height: 392px;
    }

    .form__image::before {
        width: 181%;
        top: 40%;
        right: -10%;
    }

    .block-form .form {
        padding-right: 135px;
    }
    .form__btn {
        width: 100%;
    }
    .form__acceptence {
        align-items: flex-start;
    }

    .form-bbls {
        position: absolute;
        width: 302px;
        transform: rotate(342deg);
        left: auto;
        bottom: auto;
        top: 39px;
        right: -100px;
    }

    .form-timer {
        left: auto;
        right: 15px;
        top: 55px;
        padding: 23px 16px 18px 16px;
    }
    .form-timer__title {
        font-size: 13px;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: max-content;
    }


    /* #endregion FORM */

    /* #region PRIVACY */
    .page-title {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .privacy-wrapper {
        flex-direction: column-reverse;
        align-items: stretch;
        margin-bottom: 60px;
    }
    .privacy-menu {
        width: auto;
    }
    .privacy-menu__header {
        cursor: pointer;
    }
    .privacy-menu__toggle {
        display: block;
    }

    .privacy-content {
        font-size: 14px;
    }
    .privacy-content p {
        margin-bottom: 20px;
    }
    .privacy-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    /* #endregion PRIVACY */

    /* #region POPUP */
    .popup-inner {

    }
    .popup-border {
        max-width: 550px;
        padding: 4px;
        border-radius: 17px;
    }
    .modal {
        padding: 70px 16px 16px 16px;
        border-radius: 14px;
        gap: 15px;
    }
    .modal__close {
        width: 15px;
        height: 15px;
        background: none;
        right: 10px;
        top: 10px;
    }
    .modal-steps {
        gap: 13px;
    }
    .modal-step__text {
        font-size: 13px;
    }
    .modal__title {
        font-size: 19px;
    }
    .modal__subtitle {
        font-size: 15px;
        max-width: 320px;
    }
    .modal-promo__fire {
        width: 28.798px;
        height: 39.971px;
        bottom: -1px;
        left: -1px;
    }
    .modal-promo {
        padding: 5px 9px 5px 31px;
        font-size: 11px;
    }
    .modal-form__btn-wrap {
        max-width: 100%;
        padding: 4px;
    }
    .modal-form {
        row-gap: 15px;
        column-gap: 10px;
    }

    .modal-timer {
        top: -30px;
        padding: 20px 12px 12px 12px;
    }
    .modal-timer .timer-value {
        font-size: 31px;
    }

    #modal-sent .modal {
        padding: 16px;
    }
    .modal-sent__btn-wrap {
        padding: 4px;
        max-width: 208px;
    }

    /* #endregion POPUP */
}

@media screen and (max-width: 768px) {
    :root {
        --container-padding: 14px;
    }


    /* #region HERO */
    .block-hero {
        padding-top: 100px;
        padding-bottom: 360px;
    }
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .hero__btn-wrapper {
        display: none;
    }
    .hero__content {
        width: 100%;
        margin: 0;
        padding-bottom: 10px;
    }
    .hero__text {
        margin-right: 0;
    }
    .hero__bg-image {
        width: 100%;
        right: 0;
    }
    .hero__btn-wrapper--mobile {
        display: block;
    }

    .hero__img {
        height: 330px;
        object-fit: contain;
        object-position: bottom;
    }

    .hero__scroll {
        right: 50%;
        transform: translateX(50%);
    }

    .hero__bubbles {
        width: 440px;
        position: absolute;
        bottom: 155px;
        right: -214px;
        height: auto;
        object-fit: contain;
        transform: rotate(34deg) scaleX(-1);
    }

    /* #endregion HERO */

    /* #region HEADER & FOOTER */
    .header__logo {
        max-width: 96px;
    }

    .footer__logo {
        width: auto;
    }
    .footer-contact {
        order: 3;
    }
    .footer-contact--email {
        order: 4;
    }
    .footer-socials {
        order: 2;
        width: calc(100% - 122px);
        justify-content: flex-end;
    }
    /* #endregion HEADER & FOOTER */

    /* #region SOLUTION */
    .solution__wrapper {
        flex-direction: column;
        row-gap: 20px;
        align-items: center;
    }
    .solution__content {
        width: auto;
        min-width: auto;
    }
    .solution__subtitle {
        font-size: 16px;
    }
    .solution__text {
        font-size: 14px;
    }
    .solution__footer {
        display: flex;
        padding: 16px;
        column-gap: 15px;
    }
    .solution__footer--laptop {
        display: none;
    }
    .solution__footer-img {
        width: 43px;
    }
    .solution__footer-text {
        font-size: 14px;
    }
    /* #endregion SOLUTION */

    /* #region STEPS */
    .steps {
        justify-content: center;
    }
    .step {
        flex-basis: calc(50% - 8px);
        /* max-width: calc(50% - 8px); */
    }
    /* #endregion STEPS */

    /* #region REVIEWS */
    .reviews-swiper.swiper {
        width: 95%;
    }
    /* #endregion REVIEWS */

    /* #region FORM */
    .block-form .form {
        padding-right: 60px;
    }
    .form__img {
        left: -50px;
        bottom: 0;
    }

    .form-timer {
        left: auto;
        right: 15px;
        top: 0px;
        transform: translateY(-50%);
        padding: 23px 16px 18px 16px;
    }

    /* #endregion FORM */
}

@media screen and (min-width: 681px) and (max-width: 767px) {
    /* #region HERO */
    .hero-promo__right {
        display: block;
    }
    .hero-promo__fire {
        position: relative;
        transform: translate(0);
        left: auto;
        top: auto;
        margin-bottom: 10px;
    }
    .hero-promo__title {
        font-size: 22px;
    }
    .hero-promo__text {
        font-size: 14px;
        margin-top: 5px;
    }
    .hero-promo {
        margin-top: 10px;
    }
    .hero-promo__left {
        padding-right: 32px;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-image: url('../icons/promo-sep.svg');
    }
    .hero__img {
        height: 330px;
        width: auto;
        margin: auto;
        transform: translateX(36px);
        object-fit: contain;
        object-position: bottom;
    }
    /* #endregion HERO */
}

@media screen and (max-width: 680px) {
    /* #region HERO */
    .block-hero {
        padding-top: 100px;
        padding-bottom: 280px;
    }
    .hero__content {
        padding-bottom: 20px;
    }
    .hero__bg-image {
        width: max-content;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero__img {
        margin-left: 69px;
        height: 250px;
    }
    /* #endregion HERO */
}

@media screen and (max-width: 580px) {

    /* #region HEADER & FOOTER */
    .header-phone__value {
        display: none;
    }
    .header-tablet__aside {
        flex-grow: 0;
    }


    .footer-socials__title {
        display: none;
    }
    .footer-contact {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    /* #endregion HEADER & FOOTER */

    /* #region PROBLEMS */
    .problems {
        margin-bottom: 20px;
        row-gap: 20px;
    }
    .problem {
        flex-basis: 100%;
        display: flex;
        align-items: center;
        column-gap: 10px;
    }
    .problem__img {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    /* #endregion PROBLEMS */

    /* #region PROS */
    .pros-item {
        flex-direction: row;
        align-items: flex-start;
        column-gap: 10px;
        flex-basis: 100%;
    }
    .pros-item__img {
        width: 34px;
    }
    .pros-item__title {
        font-size: 13px;
        margin-bottom: 2px;
        
    }
    /* #endregion PROS */

    /* #region HOW IT WORKS */
    .hiw__bg-l {
        display: block;
        left: -87px;
        bottom: -152px;
        width: 298px;
    }
    .hiw-item {
        flex-basis: 100%;
    }
    /* #endregion HOW IT WORKS */

    /* #region SOLUTION */
    .solution__image {
        margin: 0 -14px;
    }
    .solution__img {
        max-width: calc(100% - 6px);
        margin: auto;
    }
    .solution__stats {
        padding: 12px 0;
        bottom: -5px;
        left: 0;
        top: auto;
        right: auto;
        transform: translateY(0);
        overflow: hidden;
        width: 100%;
    }
    .stats-inner {
        display: block;
        white-space: nowrap;
        width: max-content;
        will-change: transform;
    }
    .stats-inner.marquee {
        animation: marquee 10s linear infinite;
    }
    .stats-inner.marquee.paused {
        animation-play-state: paused;
    }
    .stat {
        display: inline-block;
        flex-shrink: 0;
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.13);
        margin-right: 35px;
    }
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    /* #endregion SOLUTION */

    /* #region BLOCK COMPONENTS */
    .comp-card {
        flex-basis: 100%;
    }
    .comp__btn {
        padding: 21px 18px;
    }
    /* #endregion BLOCK COMPONENTS */

    /* #region WHOM */
    .whom {
        flex-direction: column;
        row-gap: 12px;
    }
    .whom__content {
        padding-bottom: 0;
    }
    .whom__img {
        position: static;
        aspect-ratio: 359 / 257;
        width: calc(100% + 24px);
        height: auto;
        margin: 0 -12px;
    }
    .whom-item {
        flex-basis: 100%;
    }
    .whom-item__inner {
        width: 100% !important;
    }
    /* #endregion WHOM */

    /* #region STEPS */
    .step {
        padding: 20px;
        flex-basis: 100%;
        max-width: none;
        width: 100%;
        min-height: auto;
        aspect-ratio: 332 / 170;
    }
    .step__icon {
        right: -10px;
    }
    .step__icon-circle {
        height: 48px;
    }
    .step__icon::after {
        top: 17px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    .step:last-child .step__icon::after {
        transform: translateX(-50%);
    }
    .step__text {
        padding-right: 70px;
    }
    .step__name {
        padding-right: 0;
    }
    /* #endregion STEPS */

    /* #region DIFF */
    .diff__bg-l {
        bottom: -205px;
        left: -139px;
        transform: scaleX(-1) rotate(161deg);
        width: 330px;
    }
    .diff__bg-r {
        width: 330px;
        right: -105px;
        top: -205px;
        transform: rotate(342deg);
    }
    .diff__title > br {
        display: none;
    }
    .diff-card {
        width: 280px;
    }
    .diff__btn--mobile {
        display: inline-flex;
        width: 100%;
    }
    /* #endregion DIFF */

    /* #region REVIEWS */
    .reviews-swiper.swiper {
        width: 84%;
    }
    /* #endregion REVIEWS */

    /* #region form */
    .block-form {
        padding-top: 90px;
        position: relative;
    }
    .form-container {
        flex-direction: column;
    }
    .form__content {
        width: auto;
        padding-top: 0;
    }
    .form__title {
        text-align: center;
    }
    .form__subtitle {
        text-align: center;
    }
    .block-form .form {
        padding-right: 0;
    }
    .form__image {
        position: static;
    }
    .form__img {
        position: static;
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
        margin: 0 -12px;
        width: calc(100% + 24px);
        aspect-ratio: 362 / 172;
        object-position: center top;
        object-fit: cover;
    }
    .form__image::before {
        bottom: 0;
        top: auto;
        width: 137%;
        left: 50%;
        top: 70%;
        transform: translateX(-50%);
    }

    .form-bbls {
        position: absolute;
        width: 302px;
        transform: rotate(342deg);
        left: auto;
        bottom: auto;
        top: -32px;
        right: -115px;
    }

    .form-timer {
        left: 50%;
        right: auto;
        top: -43px;
        transform: translateX(-50%);
        padding: 20px 25px;
    }
    .form-timer__title {
        font-size: 15px;
    }
    .form-timer .timer-value {
        font-size: 44px;
    }

    #form-notifications {
        padding: 14px;
        gap: 5px;
    }
    .notification {
        padding: 6px 8px;
        column-gap: 6px;
    }
    .notification-message {
        font-size: 12px;
    }
    .notification-icon {
        width: 22px;
        height: 22px;
    }
    .notification-icon svg {
        width: 12px;
        height: 12px;
    }
    

    /* #endregion form */

    /* #region POPUP */
    .modal-step {
        flex-basis: 100%;
        align-items: center;
    }
    .modal-form .fg {
        flex-basis: 100%;
    }
    .modal-sent__btn-wrap {
        max-width: 100%;
    }
    /* #endregion POPUP */

}