a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    color: var(--Gray-900);
    font-size: 16px;
    line-height: normal;
}

button {
    cursor: pointer;
}

button,
input {
    font-weight: inherit;
    color: inherit;
    transition: all .3s ease-in;
    -webkit-appearance: none;
    -moz-appearance: none;
}

[class*="__container"] {
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 100px;
}

@media (max-width: 1200) {
    [class*="__container"] {
        padding: 0 70px;
    }
}

@media (max-width: 1024px) {
    [class*="__container"] {
        padding: 0 16px;
    }
}

.paragraph-body-regular {
    color: var(--Gray-700);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .paragraph-body-regular {
        font-size: 19px;
        line-height: 1.4;
    }
}

.label {
    max-width: fit-content;
    padding: 6px 14px 4px 14px;
    border-radius: var(--Extra-large);
    font-size: 18px;
    display: inline-flex;
    font-weight: 500;
    line-height: 1.1;
}

.label.blue-300 {
    color: var(--Main-Blue-900);
    background: var(--Main-Blue-300);
}

.label.blue-800 {
    color: var(--White);
    background: var(--Main-Blue-800);
}

.label.blue-900 {
    color: var(--White);
    background: var(--Main-Blue-900);
}

.button-wrapper {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.button-wrapper-start {
    justify-content: start;
}

@media (max-width: 767.98px) {
    .button-wrapper {
        height: 40px;
        min-height: 40px;
    }
}

@media (max-width: 487.98px) {
    .button-wrapper {
        width: 100%;
    }

    .button-wrapper-start {
        width: 100%;
        justify-content: center;
    }
}

.button {
    transition: all .3s ease-in;
    padding: 10px 8px;
    display: inline-flex;
    height: 52px;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 1;
    border: 2px solid transparent;
}

.button:disabled {
    opacity: 0.5;
}

.button:active {
    padding: 8px 6px;
    height: 48px;
}

@media (max-width: 767.98px) {
    .button {
        height: 40px;
        padding: 4px;
        width: 100%;
    }

    .button:active {
        padding: 4px 2px;
        height: 36px;
        width: calc(100% - 4px);
    }

    .button-active-fixed:active {
        width: calc(311px - 4px);
    }
}

@media (max-width: 487.98px) {
    .button-active-fixed:active {
        width: calc(100% - 4px);
    }
}

.button__text {
    padding: 7px 10px 3px 10px;
    font-size: 22px;
    transition: color .3s ease-in;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .button__text {
        font-size: 18px;
    }
}

.button__arrow {
    width: 32px;
    display: flex;
    padding: 4px !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--Extra-large);
    height: 32px;
}

@media (max-width: 767.98px) {
    .button__arrow {
        display: none;
    }
}

/**********Primary**********/
.button.main-blue-button {
    border-radius: var(--Extra-large);
    border: 2px solid var(--Main-Blue-600);
    background: var(--Main-Blue-600);
}


.button.main-blue-button .button__text {
    color: var(--White);
}

.button.main-blue-button .button__arrow {
    background: var(--Main-Blue-900);
}

@media (hover: hover) {
    .button.main-blue-button:hover {
        border-color: var(--Main-Blue-500);
        background: var(--Main-Blue-500);
    }
}

.button.main-white-button {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--White);
    background: var(--White);
}

.button.main-white-button .button__text {
    color: var(--Main-Blue-600);
}

.button.main-white-button .button__arrow {
    background: var(--Main-Blue-600);
}

@media (hover: hover) {
    .button.main-white-button:hover {
        border-color: var(--Main-Blue-800);
        background: var(--Main-Blue-800);
    }

    .button.main-white-button:hover .button__text {
        color: var(--White);
    }
}


/* Gray CTA Button Primary */
.button.main-gray-button {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Main-Blue-900);
    background: var(--Main-Blue-900);
    transition: all .3s ease-in;
}

.button.main-gray-button .button__text {
    color: var(--White);
}

.button.main-gray-button .button__arrow {
    background: var(--White);
}

@media (hover: hover) {
    .button.main-gray-button:hover {
        border-color: var(--Main-Blue-800);
        background: var(--Main-Blue-800);
    }
}

/**********Gray CTA Button Secondary**********/
.button.main-gray-button.secondary {
    border-radius: var(--Extra-large);
    border: 2px solid var(--Main-Blue-900);
    color: var(--Main-Blue-900);
    background-color: transparent;
}

.button.main-gray-button.secondary .button__text {
    color: var(--Main-Blue-900);
}

.button.main-gray-button.secondary .button__arrow {
    background: var(--Main-Blue-900);
}

@media (hover: hover) {
    .button.main-gray-button.secondary:hover {
        border-color: var(--Main-Blue-900);
        background: var(--Main-Blue-900);
    }

    .button.main-gray-button.secondary:hover .button__text {
        color: var(--White);
    }
}

/*******************************/

header {
    background-color: #FFFFFF;
}

html #header-navlist li a,
html #header-navlist li.dropdown-menu>span {
    color: var(--say9-primary-blue);
}

html #header-navlist>li:not(.current-menu-ancestor):not(:hover)>span .da svg path,
html #header-navlist>li.dropdown-menu:not(.current-menu-ancestor):not(:hover)>span .da svg path {
    fill: var(--say9-primary-blue) !important;
}

html #header-navlist ul.sub-menu {
    background-color: #FFFFFF !important;
    box-shadow: 4px -1px 10px 3px rgba(92, 90, 90, 0.03) !important;
}

html header.sticky {
    background-color: rgba(255, 255, 255, 1) !important;
}

header #mobile-menu-switch span {
    background-color: #077DFD;
}


.hero-section {
    padding: 34px 0px 92px 0px;
    background-color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 20px 0px 87px 0px;
    }
}

.hero-section__content {
    display: flex;
    border-radius: var(--Large-BG);
    background-color: var(--Main-Blue-200);
    padding: 0 0 40px calc(40px + 100 * (100vw - 1280.98px) / (1920 - 1280.98));
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

.os-mac.browser-chrome .hero-section__content {
    background-color: #e8f3ff;
}

html.os-mac.browser-safari .hero-section__content {
    background-color: #e8f3ff;
}

@media (min-width: 1280.98px) {
    .hero-section__content {
        background-image: url("../assets/images/listicle/hero-bg.png");
        background-repeat: no-repeat;
        background-position: right top;
    }
}

@media (max-width: 1280.98px) {
    .hero-section__content {
        padding: 60px 60px 100px 60px;
        gap: 50px;
        flex-direction: column-reverse;
        border-radius: var(--Large);
    }
}

@media (max-width: 767.98px) {
    .hero-section__content {
        padding: 40px 20px;
        border-radius: var(--Middle);
    }
}

.hero-left {
    padding: 27.5px 0px;
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;

}

@media (max-width: 1526.98px) {
    .hero-left {
        padding: 27.5px 0px 0px 0px;
    }
}

@media (max-width: 1280.98px) {
    .hero-left {
        padding: 0px;
        max-width: 677px;
    }
}

.hero-left__title {
    color: var(--Gray-900);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 20px;
    padding-top: calc(30px + 70 * (100vw - 1280.98px) / (1920 - 1280.98));
}

@media (max-width: 1280.98px) {
    .hero-left__title {
        padding-top: 0px;
    }
}

@media (max-width: 767.98px) {
    .hero-left__title {
        font-size: 34px;
        line-height: 1.18;
    }
}

.hero-left__text {
    font-size: 22px;
    line-height: 1.4;
    flex: 0 1 100%;
    margin-bottom: 120px;
}

@media (max-width: 1526.98px) {
    .hero-left__text {
        margin-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-left__text {
        font-size: 19px;
        margin-bottom: 40px;
    }
}

.hero-left__buttons {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hero-left__buttons .button-wrapper:nth-child(1) {
    width: 221px;
}

@media (max-width: 767.98px) {
    .hero-left__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-left__buttons .button-wrapper:nth-child(1) {
        width: 100%;
    }
}

@media (max-width: 487.98px) {
    .hero-left__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.hero-video {
    aspect-ratio: 651 / 571;
    height: auto;
    overflow: hidden;
    flex: 0 1 43.2%;
}

.hero-video video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 651 / 571;
}

@media (max-width: 1280.98px) {
    .hero-video {
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .hero-video {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        aspect-ratio: 303/265;
    }

    .hero-video video {
        aspect-ratio: 303/265;
        width: 100%;
        height: auto;
    }
}

.second {
    padding-bottom: 125px;
    background-color: #FFFFFF;
    margin-top: -1px;
}

@media screen and (max-width: 1200px) {
    .second {
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 768px) {
    .second {
        padding-bottom: 80px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works {
        padding-bottom: 142px;
    }
}

@media (min-width: 1280.98px) {
    .second__wrapper {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: calc(40px + 75 * (100vw - 1280.98px) / (1920 - 1280.98));
        padding-right: calc(40px + 125 * (100vw - 1280.98px) / (1920 - 1280.98));
    }
}

@media (max-width: 1280.98px) {
    .second__wrapper {
        padding: 0px 60px;
    }
}

@media (max-width: 767.98px) {
    .second__wrapper {
        padding: 0px 32px;
    }
}

.second__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 80px;
}

@media (max-width: 1280.98px) {
    .second__content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 767.98px) {
    .second__content {
        gap: 24px;
    }
}

.second__label {
    margin-bottom: 24px;
}

.second__title {
    color: var(--Gray-900);
    max-width: 450px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    flex: 0 1 33%;
}

@media (max-width: 767.98px) {
    .second__title {
        font-size: 26px;
        line-height: 1.4;
    }
}

@media (max-width: 1280.98px) {
    .second__image {
        margin-right: 50px;
    }
}

@media (max-width: 991.98px) {
    .second__image {
        margin-right: 30px;
    }
}

@media (max-width: 767.98px) {
    .second__image {
        margin-right: 0px;
        width: 52px;
        height: 52px;
    }

    .second__image img {
        width: 43px;
        height: 43px;
        max-width: 43px;
        max-height: 43px;
        transform: rotate(12.741deg);
    }
}

.second__text {
    color: var(--Gray-900);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    flex: 0 1 41%;
}

@media (max-width: 1280.98px) {
    .second__text {
        flex: 0 1 100%;
    }
}

@media (max-width: 767.98px) {
    .second__text {
        font-size: 19px;
    }
}

@media (max-width: 1280.98px) {
    .second .second__content-left {
        display: flex;
        gap: 129px;
    }
}

@media (max-width: 991.98px) {
    .second .second__content-left {
        justify-content: space-between;
        gap: 50px;
    }
}

@media (max-width: 767.98px) {
    .second .second__content-left {
        gap: 14px;
        justify-content: start;
        width: 100%;
    }
}

.second-image-desktop {
    display: block;
    flex-shrink: 0;
}

@media (max-width: 1280.98px) {
    .second-image-desktop {
        display: none;
    }
}

.second-image-mobile {
    display: none;
}

@media (max-width: 1280.98px) {
    .second-image-mobile {
        display: block;
    }
}

.how-it-works {
    background-image: url("../assets/images/listicle/how-it-works-bg.png");
    background-repeat: no-repeat;
    background-position: right top;
    padding: 120px 0px 288px 0px;
    width: 100%;
    border-radius: 60px 60px 0px 0px;
    background-color: var(--Main-Blue-800);
}

@media (max-width: 1280.98px) {
    .how-it-works {
        padding: 97px 0px 288px 0px;
        border-radius: 32px 32px 0 0;
        background-position: right 0 top 146px;
        background-image: url("../assets/images/listicle/how-it-works-bg-tablet.png");
    }
}

@media (max-width: 767.98px) {
    .how-it-works {
        padding: 40px 0px;
        border-radius: 24px 24px 0 0;
        background-image: none;
    }
}

@media (max-width: 1280.98px) {
    .how-it-works__container {
        padding: 0px 60px;
    }
}

@media (max-width: 991.98px) {
    .how-it-works__container {
        padding: 0 40px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works__container {
        padding: 0 16px;
    }
}

.how-it-works__label {
    margin-bottom: 14px;
}

.how-it-works__title {
    color: var(--White);
    position: relative;
    font-size: 72px;
    z-index: 10;
    font-weight: 700;
    line-height: 1.08;
    max-width: 473px;
    margin-bottom: 48px;
}

@media (max-width: 1280.98px) {
    .how-it-works__title {
        font-size: 48px;
        line-height: 1.18;
    }
}

@media (max-width: 767.98px) {
    .how-it-works__title {
        margin-bottom: 32px;
        width: 100%;
        max-width: 100%;
    }
}

.how-it-works__title::after {
    position: absolute;
    z-index: -1;
    background-image: url("../assets/images/listicle/cards-left.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}

@media (min-width: 1280.98px) {
    .how-it-works__title::after {
        bottom: -25px;
        left: 549px;
        width: 204px;
        height: 205px;
    }
}

@media (max-width: 1280.98px) and (min-width: 767.98px) {
    .how-it-works__title::after {
        left: 372px;
        bottom: 2.6px;
        width: 166px;
        height: 167px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works__title::after {
        bottom: -47px;
        right: -25.43px;
        width: 103px;
        height: 104px;
    }
}

.how-it-works-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 1280.98px) {
    .how-it-works-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cards {
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    flex: 1 0 0;
    align-self: stretch;
}

.how-it-works-cards::after {
    position: absolute;
    background-image: url("../assets/images/listicle/cards-right-decor.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    width: 204px;
    height: 200px;
}

@media (min-width: 1280.98px) {
    .how-it-works-cards::after {
        right: -130px;
        bottom: -58px;
    }
}

@media (max-width: 1280.98px) and (min-width: 767.98px) {
    .how-it-works-cards::after {
        right: -78.5px;
        bottom: -73px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works-cards::after {
        width: 149px;
        height: 151px;
        right: -25.43px;
        bottom: -86.07px;
    }
}

.cards__label {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    padding-top: 6px;
    color: var(--Gray-900);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    border-radius: var(--Extra-large);
    background: var(--White);
    margin-bottom: 20px;
}

.cards__title {
    color: var(--Main-Blue-900);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.28;
    margin-bottom: 14px;
}

.cards__text {
    font-size: 22px;
    line-height: 1.4;
}

.cards-1 {
    border-radius: var(--Middle, 24px);
    background: var(--Other-Green-1-300);
}

.cards-2 {
    border-radius: var(--Middle, 24px);
    background: var(--Main-Blue-300);
}

.cards-3 {
    border-radius: var(--Middle, 24px);
    background: var(--Secondary-Turquoise-300);
}

.how-it-works-bottom {
    display: flex;
    padding: 26px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 400px;
    margin-top: 70px;
    gap: 36px;
    background: var(--Main-Blue-600);
}

.how-it-works-bottom__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 767.98px) {
    .how-it-works-bottom__button-wrapper {
        width: 197px;
        min-width: 197px;
        height: 52px;
    }
}

@media (max-width: 1280.98px) {
    .how-it-works-bottom {
        margin-top: 80px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works-bottom {
        margin-top: 98px;
        flex-direction: column;
        border-radius: var(--Middle);
        padding: 24px 16px;
    }

    .how-it-works-bottom__button-wrapper {
        height: 40px;
        max-width: 312px;
        width: 100%;
    }
}

.how-it-works-bottom__left {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .how-it-works-bottom__left {
        flex-direction: column;
        gap: 14px;
    }

    .how-it-works-bottom__left img {
        width: 33px;
        height: 33px;
    }
}

.how-it-works-bottom__left p {
    color: var(--White);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
}

@media (max-width: 767.98px) {
    .how-it-works-bottom__left p {
        text-align: center;
        font-size: 30px;
        line-height: 1.28;
    }

    .how-it-works-bottom__button {
        width: 311px;
    }

    .how-it-works-bottom__button:active {
        width: calc(311px - 4px) !important;
    }
}

@media (max-width: 487.98px) {
    .how-it-works-bottom__button {
        width: 100%;
    }
}


.benefits {
    margin-top: -153px;
    padding: 167px 0px 264px 0px;
    border-radius: 60px 60px 0 0;
    background-image: url("../assets/images/listicle/benefits-bg.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--Main-Blue-300);
}

@media (max-width: 1280.98px) {
    .benefits {
        border-radius: 32px 32px 0 0;
        padding: 104px 0px 150px 0px;
        margin-top: -181px;
        background-position: right top;
        background-image: url("../assets/images/listicle/benefits-bg-tablet.png");
    }
}

@media (max-width: 767.98px) {
    .benefits {
        border-radius: 24px;
        margin-top: 80px;
        background-image: none;
        padding: 70px 0px 144px 0px;
    }
}

.benefits__title {
    color: var(--Gray-900);
    margin: 14px 0px 60px 0px;
    font-size: 82px;
    font-weight: 700;
    line-height: 1.08;
}

@media (max-width: 1280.98px) {
    .benefits__title {
        font-size: 60px;
        line-height: 1.16;
    }
}

@media (max-width: 767.98px) {
    .benefits__title {
        font-size: 48px;
        margin: 14px 0px 40px 0px;
        line-height: 1.18;
    }
}

.benefits-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-columns__column {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 53px;
}

.benefits-column__content {
    display: flex;
    width: 100%;
    padding: 32px;
    align-items: start;
    gap: 24px;
    border-radius: var(--Middle);
    background: var(--White);
}

@media (max-width: 767.98px) {
    .benefits-column__content {
        flex-direction: column;
        padding: 32px 20px;
    }
}

.benefits-column__image {
    width: 53px;
    height: 53px;
}

@media (max-width: 767.98px) {
    .benefits-column__image {
        display: none;
    }
}

.benefits-column__texts {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

.benefits-column__title {
    color: var(--Gray-900);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
}

.benefits-column__left {
    width: 70px;
    height: 70px;
    display: flex;
    padding: 14px;
    align-items: center;
    gap: 10px;
}

.benefits-column__left-1 {
    border-radius: var(--Extra-large);
    background: var(--Secondary-Yellow-400);
}

.benefits-column__left-2 {
    border-radius: var(--Extra-large);
    background: var(--Secondary-Turquoise-400);
}

.benefits-column__left-3 {
    border-radius: var(--Extra-large);
    background: var(--Other-Green-1-400);
}

.benefits-column__left-4 {
    border-radius: var(--Extra-large);
    background: var(--Secondary-Terracotta-500);
}

#pricing_wrapper {
    margin-top: -110px;
}

.pricing {
    padding: 110px 0px;
    position: relative;
    z-index: 10;
    margin-top: -120px;
    border-radius: 60px;
    background-image: url("../assets/images/listicle/pricing-bg.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--White);
}

@media (max-width: 1280.98px) {
    .pricing {
        border-radius: var(--Large);
        padding: 125px 0px 104px 0px;
        margin-top: -25px;
        background-image: url("../assets/images/listicle/pricing-bg-tablet.png");
    }
}

@media (max-width: 767.98px) {
    #pricing_wrapper {
        margin-top: 0;
    }

    .pricing {
        padding: 60px 0px;
        margin-top: 80px;
        border-radius: var(--Middle);
        background-image: url("../assets/images/listicle/pricing-bg-mobile.png");
    }
}

.pricing__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing__title {
    color: var(--Gray-900);
    text-align: center;
    font-size: 82px;
    margin-top: 14px;
    margin-bottom: 70px;
    font-weight: 700;
    line-height: 1.08;
}

@media (max-width: 1280.98px) {
    .pricing__title {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .pricing__title {
        font-size: 34px;
        line-height: 1.18;
    }
}

.pricing__buttons {
    border-radius: 34px;
    background: var(--Main-Blue-200);
    display: flex;
    width: 279px;
    position: relative;
    margin-bottom: 30px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

@media (max-width: 487.98px) {
    .pricing__buttons {
        margin-bottom: 40px;
    }
}

.pricing__button {
    color: var(--Gray-900);
    background-color: transparent;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    width: 132px;
    height: 38px;
    padding: 6px 16px 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    border-radius: 20px;
}

.pricing__button-active-badge {
    width: 132px;
    height: 38px;
    position: absolute;

    border-radius: 20px;
    transition: left .3s ease 0s;
    background: var(--Main-Blue-700);
}

.pricing__button-active-badge.left {
    left: 4px;
}

.pricing__button-active-badge.right {
    left: 143px;
}

.pricing__button.active {
    color: var(--White);
}

@media (max-width: 1780.98px) and (min-width: 487.98px) {
    .pricing__cards__wrapper:hover {
        cursor: grabbing;
    }

    .pricing__cards__wrapper:active {
        cursor: grabbing;
    }
}

@media (min-width: 487.98px) {
    .pricing__cards__wrapper {
        overflow-x: auto;
        width: 100%;
        max-width: 1780px;
        user-select: none;
        margin: 0 auto;
        padding: 0 70px;
        scroll-snap-stop: always;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .pricing__cards__wrapper::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .pricing__cards__wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 767.98px) {
    .pricing__cards__wrapper {
        padding: 0 16px;
    }
}

.pricing__cards {
    display: none;
    gap: 24px;
    flex-direction: row;
    flex-wrap: nowrap;
}

@media (max-width: 487.98px) {
    .pricing__cards {
        flex-direction: column;
    }
}

@media (min-width: 487.98px) {
    .pricing__cards {
        min-width: calc(4 * 392px + 24px * 3);
    }
}

.pricing__cards.active {
    display: flex;
}

.pricing__card {
    border-radius: var(--Middle);
    overflow: hidden;
}

.pricing__card .button-wrapper {
    width: 100%;
}

@media (min-width: 487.98px) {
    .pricing__card {
        flex: 0 1 392px;
        width: 392px;
        min-width: 392px;
    }
}

@media (max-width: 487.98px) {
    .pricing__card {
        width: 100%;
    }
}

.pricing__card.active .pricing-card__top {
    background: var(--Main-Blue-800);
}

.pricing__card.active .pricing-card__bottom {
    background: var(--Main-Blue-600);
}

.pricing__card.active .pricing-card-price__period {
    color: var(--Main-Blue-300);
}

.pricing__card.active .pricing-card-price__text {
    color: var(--Main-Blue-300);
}

.pricing__card.active .pricing-card-bottom__li {
    color: var(--Main-Blue-200);
}

.pricing__card.custom-plan .pricing-card-bottom__price {
    margin-bottom: 0 !important;
}

.pricing-card__top {
    display: flex;
    padding: 18px 32px 40px 32px;
    justify-content: start;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: var(--Middle) var(--Middle) 0 0;
    background: var(--Main-Blue-600);
}

.pricing-card__title {
    color: var(--White);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .pricing-card__title {
        font-size: 22px;
    }
}

.pricing-card__bottom {
    display: flex;
    min-height: 544px;
    margin-top: -26px;
    position: relative;
    padding: 48px 32px 40px 32px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: var(--Middle);
    background: var(--Main-Blue-800);
}

@media (max-width: 767.98px) {
    .pricing-card__bottom {
        display: flex;
        padding: 28px 16px 20px 16px;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex-shrink: 0;
        min-height: 410px;
        height: 410px;
    }
}

.pricing-card-bottom__best-value {
    position: absolute;
    right: 32px;
    top: 18px;
}

@media (max-width: 767.98px) {
    .pricing-card-bottom__best-value {
        right: 14px;
    }
}

.pricing-card__button {
    width: 100%;
}

.pricing-card-bottom__list {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    gap: 12px;
    align-self: stretch;
    flex: 1 1 100%;
}

.pricing-card-bottom__li {
    display: flex;
    gap: 14px;
    color: var(--Gray-400);
    max-height: fit-content;
}

@media (max-width: 767.98px) {
    .pricing-card-bottom__li {
        font-size: 22px !important;
        gap: 8px;
    }
}

.pricing-card-bottom__li-img {
    max-height: 30px;
    padding: 6px 0px 0px 0px;
}

.pricing-card-bottom__li-img img {
    width: 24px;
    height: 24px;
}

@media (max-width: 767.98px) {
    .pricing-card-bottom__li-img {
        max-height: 20px;
        padding: 4.5px 0px 0px 0px;
    }

    .pricing-card-bottom__li-img img {
        width: 15px;
        height: 15px;
    }
}

.pricing-card-bottom__price {
    margin-bottom: 32px;
}

@media (max-width: 767.98px) {
    .pricing-card-bottom__price {
        margin-bottom: 24px;
    }
}

.pricing-card-price__text {
    color: var(--White);
    font-size: 22px;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
}

.pricing-card-price__content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card-price__value {
    color: var(--White);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.16;
}

@media (max-width: 767.98px) {
    .pricing-card-price__value {
        font-size: 48px;
        line-height: 1.18;
    }
}

.pricing-card-price__period {
    color: var(--White);
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.pricing-card-bottom__text {
    color: var(--White);
    font-size: 22px;
    margin: 24px 0px;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .pricing-card-bottom__text {
        margin: 20px 0px 24px 0px;
    }
}

.pricing-card-bottom__text-bottom {
    display: flex;
    flex: 1 1 100%;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    color: var(--Gray-400);
    font-size: 22px;
    line-height: 1.4;
}

.pricing-card-bottom__text-bottom p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.pricing-card-bottom__text-bottom-img {
    margin-top: 4px;
    height: 24px;
    width: 20px;
}

.pricing-card-counter {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 8px;
    align-self: stretch;
}

.pricing-card-counter__button {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: var(--Extra-large);
    background: var(--White);
}

.pricing-card-counter__button svg path {
    transition: all .3s ease 0s;
}

@media (hover: hover) {
    .pricing-card-counter__button:hover {
        border-radius: var(--Extra-large);
        background: var(--Main-Blue-900);
    }

    .pricing-card-counter__button:hover svg path {
        stroke: var(--White);
    }
}

.pricing-card-counter__button:disabled {
    opacity: 0.5;
}

.pricing-card-counter__value {
    display: flex;
    height: 40px;
    padding: 6px 14px 4px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: var(--Large-BG);
    background: var(--White);
    color: var(--Gray-700);
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
    outline: none;
    border: 2px solid var(--White);
}

.pricing-card-counter__value:focus {
    border: 2px solid var(--Secondary-Terracotta-500);
}

.pricing-card-counter__value::-webkit-outer-spin-button,
.pricing-card-counter__value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.faq {
    padding: 301px 0px 190px 0px;
    margin-top: -131px;
    background: var(--Main-Blue-900);
}

@media (max-width: 1280.98px) {
    .faq {
        margin-top: -96px;
        padding: 213px 0px 111px 0px;
    }
}

@media (max-width: 767.98px) {
    .faq {
        margin-top: -25px;
        padding: 50px 0px 65px 0px;
    }
}

.faq__container {
    max-width: 1502px;
}

.faq__title {
    margin-bottom: 60px;
    color: var(--White);
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.08;
}

@media (max-width: 1280.98px) {
    .faq__title {
        font-size: 48px;
        line-height: 1.18;
    }
}

@media (max-width: 767.98px) {
    .faq__title {
        font-size: 34px;
        margin-bottom: 40px;
    }
}

.faq__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.faq-item {
    display: flex;
    padding: 32px 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    align-self: stretch;
    border-radius: var(--Middle);
    background: var(--White);
}

@media (max-width: 767.98px) {
    .faq-item {
        padding: 32px 20px;
        border-radius: var(--Small);
        background: var(--Main-Blue-800);
    }
}

.faq-item:first-child::before {
    content: "";
    position: absolute;
    z-index: 10;
    background-image: url("../assets/images/listicle/question-top.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 94.58px;
    height: 121.089px;
}

@media (min-width: 1280.98px) {
    .faq-item:first-child::before {
        left: 403px;
        bottom: -68px;
    }
}

@media (max-width: 1280.98px) and (min-width: 767.98px) {
    .faq-item:first-child::before {
        top: -47px;
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .faq-item:first-child::before {
        right: 0;
        top: -47px;
    }
}

.faq-item:last-child::before {
    content: "";
    position: absolute;
    z-index: 10;
    background-image: url("../assets/images/listicle/bottom-question.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 94.58px;
    height: 121.089px;
}

@media (min-width: 1280.98px) {
    .faq-item:last-child::before {
        bottom: -60px;
        right: 12px;
    }
}

@media (max-width: 1280.98px) and (min-width: 767.98px) {
    .faq-item:last-child::before {
        bottom: -68px;
        right: 0px;
    }
}

@media (max-width: 767.98px) {
    .faq-item:last-child::before {
        width: 70.341px;
        height: 90.057px;
        right: 0;
        top: -24px;
    }
}

.faq-item__img {
    height: 42px;
}

.faq-item__content {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    gap: 14px;
}

@media (max-width: 1280.98px) {
    .faq-item__content {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .faq-item__content {
        gap: 8px;
    }
}

.faq-item__left {
    color: var(--Gray-900);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
    flex: 0 1 60%;
}

@media (max-width: 767.98px) {
    .faq-item__left {
        font-size: 26px;
        line-height: 1.4;
        color: var(--White);
    }
}

.faq-item__right {
    flex: 0 1 40%;
}

@media (max-width: 767.98px) {
    .faq-item__right {
        color: var(--Gray-300);
    }
}

#result {
    background: var(--Main-Blue-900);
}

@media screen and (max-width: 1024px) {
    html body.show-menu header.sticky {
        background-color: #FFFFFF !important;
    }

    header #header-navigation {
        background-color: #FFFFFF !important;
    }

    html #header-navlist ul.sub-menu {
        box-shadow: none !important;
    }

    #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor).active>span,
    #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor):not(.active):hover>span {
        color: var(--say9-primary-blue) !important;
    }

    #header-navlist>li.dropdown-menu.active:not(.current-menu-ancestor)>span .da svg path,
    #header-navlist>li.dropdown-menu:not(.active):not(.current-menu-ancestor):hover>span .da svg path {
        fill: var(--say9-primary-blue) !important;
    }

    #header-navlist>li.dropdown-menu.active:hover>span .da svg path {
        fill: #63AEFF !important;
    }
}

.white-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

#exit_offer_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10999999999999000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    pointer-events: none;
}

#exit_offer_popup.show_offer_popup {
    pointer-events: all;
}

#exit_offer_popup.show_offer_popup #offer_blur {
    opacity: 1;
}

#exit_offer_popup.show_offer_popup #offer_popup_wrapper {
    transform: translateX(0%);
    opacity: 1;
}

#offer_blur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(46.6px);
    background-color: #50A2C81A;
    z-index: 0;
    opacity: 0;
    transition: opacity .3s ease;
    cursor: pointer;
}

#offer_popup_wrapper {
    z-index: 2;
    height: 100%;
    max-height: 735px;
    width: 100%;
    max-width: 800px;
    background: #E5F1FF;
    display: flex;
    align-items: center;
    border-radius: 20px;
    position: relative;
    transform: translateY(20%);
    opacity: 0;
    background-image: url("../assets/images/offer-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: opacity .5s ease, transform .6s ease, background-color 0.5s ease-in-out;
}

#offer_left {
    margin-left: -100px;
    margin-top: 68px;
    margin-bottom: 61px;
}

#offer_left img {
    max-height: 606px;
    height: 100%;
    max-width: 387px;
}

#offer_right {
    padding: 90px 60px 30px 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    width: 100%;
}

#offer_demo {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.offer_title {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--say9-default-text-blue);
}

.offer_content {
    font-size: 24px;
    line-height: 1.6em;
    color: #4A5578;
    margin-bottom: 60px;
}

#offer_btn {
    background-color: var(--say9-secondary-blue);
    padding: 17px 14px 13px;
    border-radius: 200px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#offer_btn:hover {
    background-color: #63AEFF;
}

#offer_btn:active {
    padding: 15px 14px 11px;
}

#offer_popup_close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: flex;
    z-index: 10;
}

#offer_popup_close svg path:last-child {
    fill: rgba(252, 252, 252, 1);
}

#offer_popup_close svg path:first-child {
    fill: transparent;
    transition: fill 0.3s ease-in-out;
}

#offer_popup_close svg:hover path:first-child {
    fill: var(--say9-main-blue);
}

.hide {
    display: none !important;
}

/* Offer Form */

#offer_form {
    width: 100%;
}


#offer_form form label {
    color: #7F88A2;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

#offer_form form label:after {
    content: none;
}

#offer_form form input {
    position: relative;
    color: #4A5578;
    border-radius: 12px;
    border: 2px solid transparent;
    /* padding: 11px 12px 8px 40px; */
    padding: 2px 12px 0 40px;
    font-size: 19px;
    background-color: #F6FAFF;
    /* line-height: 1.4em; */
    line-height: 44px;
    transition: border-color 0.3s ease-in-out;
}

#offer_form form input:active,
#offer_form form input:focus {
    border-color: #99CAFF;
}

#offer_form form input:-webkit-autofill {
    -webkit-text-fill-color: #4A5578 !important;
    color: #4A5578 !important;
    background-color: #F6FAFF !important;
    background-clip: content-box !important;
    box-shadow: 0 0 0 1000px #F6FAFF inset !important;
    border: none !important;
    appearance: none;
    -webkit-appearance: none;
}

#offer_form form input::placeholder {
    color: #B9C0D4;
    transition: color 0.3s ease-in-out;
}

#offer_form form .ff-el-input--content {
    position: relative;
}

#offer_form form svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    z-index: 1;
    pointer-events: none;
}

#offer_form form svg path {
    transition: stroke-opacity 0.15s ease-in-out;
}

#offer_form form svg.active path {
    stroke-opacity: 1;
}

#offer_form form button[type="submit"] {
    background-color: var(--say9-secondary-blue);
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 200px;
    text-align: center;
    padding: 17px 20px 13px;
    width: 100%;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#offer_form form button[type="submit"]:hover,
#offer_form form button[type="submit"]:focus {
    opacity: 1;
    background-color: #63AEFF;
}

#offer_form form button[type="submit"]:active {
    padding: 15px 20px 11px;
}

#offer_form .ff_submit_btn_wrapper {
    margin: 35px 0 0;
    height: 52px;
}

#offer_form:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:active,
#offer_form:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:focus {
    padding: 17px 20px 13px;
}

#offer_form .offer_form_input {
    margin-bottom: 12px;
    height: 101px;
}

#offer_form .offer_form_input :not(.ff-el-is-error) .text-danger.error {
    display: none;
}

#offer_form .ff-el-group.ff-el-is-error input:active,
#offer_form .ff-el-group.ff-el-is-error input:focus {
    border-color: #F22B1D !important;
}

.offer_form_website.ff-el-is-error .ff-el-input--content::before {
    transition: border-color 0.3s ease-in-out;
}

.offer_form_website.ff-el-is-error .ff-el-input--content:focus-within::before {
    border-color: #F22B1D !important;
}

#offer_form .ff-el-group.ff-el-is-error label {
    color: #D92D20;
}

#offer_form .ff-el-group.ff-el-is-error .text-danger {
    margin: 6px 0 0;
    color: #D92D20;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    line-height: 1.1em;
}

#offer_form.thank_you {
    padding: 60px 60px 40px;
}

#offer_form .ff-message-success {
    border: none;
    box-shadow: none;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0;
}

#offer_form .ff-message-success .thank_you {
    text-transform: none;
    margin-bottom: 12px;
    color: var(--say9-default-text-blue);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
}

#offer_form .ff-message-success p {
    margin-bottom: 60px;
    color: #4A5578;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6em;
}

#offer_form .ff-message-success button {
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 200px;
    margin: auto;
    padding: 17px 20px 13px;
    background-color: var(--say9-secondary-blue);
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    line-height: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#offer_form .ff-message-success button:hover {
    background-color: #63AEFF;
}

#offer_form .ff-message-success button:active {
    padding: 15px 20px 11px;
}

#offer_form .ff-message-success .thank_you_bottom,
#offer_form .ff-message-success .thank_you_bottom span {
    color: var(--say9-default-text-blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1em;
}

#offer_form .ff-message-success .thank_you_links {
    margin-top: 10px;
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
}

#offer_form .thank_you_icon {
    width: 30px;
    height: 30px;
    background-image: none;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}

#offer_form .thank_you_icon:hover {
    background-color: #FFFFFF;
}

#offer_form .thank_you_icon img {
    display: block;
}

.offer_form_website .ff-el-input--content::before {
    content: "http://";
    position: absolute;
    height: 100%;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    padding: 12px 12px 8px;
    color: #7F88A2;
    z-index: 1;
    border-right: 1px solid #D0D5DD;
}

#offer_form .offer_form_input .ff-el-input--content::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background-image: url('../assets/images/input-alert-icon.svg');
    display: none;
}

#offer_form .offer_form_input .ff-el-is-error .ff-el-input--content::after {
    display: block;
}

#offer_form .offer_form_website input {
    padding-left: 90px;
}

/* Form button loading */

#exit_offer_popup .loader-wrapper {
    max-width: 250px;
}


@media screen and (max-width: 1024px) {
    #offer_popup_wrapper {
        background-size: 105%;
        max-height: 560px;
    }

    #offer_right {
        padding: 70px 30px 30px 20px;
    }

    #offer_left {
        margin: 30px 0 30px -50px;
    }

    #offer_left img {
        max-height: 501px;
        max-width: 320px;
    }

    #offer_form {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    #offer_popup_wrapper {
        flex-direction: column-reverse;
        height: unset;
        max-height: unset;
        overflow: hidden;
    }

    #offer_popup_close svg {
        height: 28px;
    }

    #offer_right {
        display: block;
        padding: 60px 20px 20px;
    }

    #offer_left {
        margin: 0;
    }

    #offer_left img {
        margin-bottom: -180px;
    }

    #offer_form {
        padding: 0;
    }

    #offer_form.thank_you {
        padding: 95px 60px 90px;
    }

    #offer_form .offer_form_input {
        margin-bottom: 12px;
    }

    #offer_form button[type="submit"] {
        max-width: 320px;
    }

    #offer_form .ff-el-form-check div {
        font-size: 10px;
    }

    #offer_form .ff-message-success .title.thank_you {
        font-size: 34px;
        line-height: 1.2em;
    }

    #offer_form .ff-message-success p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    #offer_form .ff-message-success button {
        max-width: 320px;
    }

    #offer_form .ff-message-success .thank_you_bottom {
        margin-top: 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    #offer_popup_wrapper {
        max-width: 370px;
        background-size: 110%;
    }

    #exit_offer_popup {
        padding: 20px;
    }

    #offer_right {
        padding-top: 40px;
    }

    #offer_left img {
        max-width: 150px;
        max-height: 235px;
        margin-bottom: -80px;
    }

    #offer_form .ff_submit_btn_wrapper {
        margin-top: 20px;
        height: 47px;
    }

    #offer_form form button[type="submit"],
    #offer_form .ff-message-success button {
        font-size: 19px;
        padding: 15px 20px 11px;
    }

    #offer_form form button[type="submit"]:hover,
    #offer_form form button[type="submit"]:focus,
    #offer_form:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:focus,
    #offer_form .ff-message-success button:hover {
        background-color: var(--say9-secondary-blue);
        padding: 15px 20px 11px;
    }

    #offer_form form button[type="submit"]:active,
    #offer_form:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:active,
    #offer_form .ff-message-success button:active {
        padding: 13px 20px 9px;
        background-color: #63AEFF;
    }

    #offer_form form input,
    .offer_form_website .ff-el-input--content::before {
        font-size: 16px;
    }

    #offer_form form input {
        line-height: 40px;
    }

    #offer_form form svg {
        width: 18px;
        height: 18px;
    }

    #offer_form.thank_you {
        padding: 90px 20px 85px;
    }
}

@media screen and (max-width: 390px) {
    #offer_right {
        padding: 40px 15px 10px;
    }

    #offer_popup_close {
        top: 15px;
        right: 15px;
    }

    #offer_form .offer_form_input {
        margin-bottom: 5px;
    }

    #offer_form .offer_form_input.ff-el-is-error {
        margin-bottom: 5px;
    }

    #offer_form .ff_submit_btn_wrapper {
        margin-bottom: 0;
    }

    #offer_form button[type="submit"] {
        margin-top: 0;
    }

    #offer_form .offer_form_website input {
        padding-left: 80px;
    }

    #offer_left img {
        margin-bottom: -110px;
    }

    #offer_form form input {
        line-height: 34px;
    }

    #offer_form.thank_you {
        padding: 75px 20px 85px;
    }
}