/*   
Theme Name: cert
*/
:root {
    --color-primary: #00b3a4;
    /* --color-secondary: #008d80; */
    --color-secondary: #009997;
    --color-light-darken: #ecf7f7;
    --color-dark: #3e3e3e;
    --color-dark-lighten: #909C9C;
    --color-light: #fff;
    --color-error: #ED432B;
    --color-error-lighten: #FFF1F0;
    --color-gray: #f0f4f8;
    --color-text: #3e3e3e;
    --color-text-secondary: var(--color-dark-lighten);
    --color-text-lighter: #BCC4C4;
    --color-bg: var(--color-light);
    --default-font-family: "Inter Tight", sans-serif;
    --default-font-weight: 500;
    --regular-font-weight: 400;
    --container-max-width: 1350px;
    --page-min-width: 1024px;
    --page-mobile-min-width: 380px;
    --radius: 16px;
}


/* desktop */
@media (min-width: 1024px) {
    .hide_on_desktop {
        display: none !important;
    }
}
/* tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .hide_on_tablet {
        display: none !important;
    }
}
/* mobile */
@media (max-width: 768px) {
    .hide_on_mobile {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--default-font-family);
    margin: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-width: 320px;
    min-height: 100vh;
}


a {
    text-decoration: none;
}

input::placeholder {
    color: var(--color-text-lighter);
    opacity: 0.8;
}


/* ---- Button ---- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: var(--default-font-weight);
    cursor: pointer;
}

/* .button:focus {
    outline: none;
} */

/* ---- Button Content ---- */
.button__icon {
    display: inline-block;
}

.button__icon svg {
    stroke: var(--color-light);
}

.button__text {
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    font-weight: var(--default-font-weight);
    text-decoration: none;
}

/* ---- Button Sizes ---- */
.button--s {
    font-size: 14px;
    padding: 4px;
    border-radius: 12px;
}
.button--s .button__text {
    padding: 9px 13px 7px;
}

.button--m {
    font-size: 14px;
    padding: 4px;
    border-radius: 14px;
}
.button--m.button--m-lt {
    font-size: 16px;
}
.button--m .button__text {
    padding: 13px 13px 11px;
}
.button--m .button__icon {
    height: 40px;
    width: 40px;
    border-radius: 12px;
}

.button--l {
    font-size: 16px;
    padding: 4px;
    border-radius: 14px;
}
.button--l .button__text {
    padding: 15px 12px;
}
.button--l .button__icon {
    height: 48px;
    width: 48px;
    border-radius: 14px;
}

/* ---- Button Hover ---- */
html:not(.is-touch) .button:not(.button--disabled):hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
}

/* ---- Button Disabled ---- */
.button.button--disabled {
    background: rgba(255, 255, 255, 0.4);
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}
.button--disabled .button__icon svg {
    stroke: #aaa;
}

/* ---- Button Types ---- */
.button--normal {
    background: linear-gradient(to right, #009997, #34CDCB);
    color: #fff;
    transition: all .3s ease-out;
}
.button--normal .button__icon {
    background-color: rgba(255, 255, 255, 0.2);
}
.button--normal.button--disabled .button__icon {
    background-color: #fff;
}

.button--contrast {
    background: #fff;
    color: #009688;
}
.button--contrast:not(.button--disabled) .button__text {
    background: linear-gradient(to right, #009997, #34CDCB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
html:not(.is-touch) .button--contrast:not(.button--disabled):hover .button__text {
    background: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.button--contrast .button__icon {
    background-color: #ECF7F7;
}
html:not(.is-touch) .button--contrast:not(.button--disabled):hover .button__icon {
    background-color: rgba(255, 255, 255, 0.2);
}
.button--contrast.button--disabled .button__icon {
    background-color: #fff;
}

.button--blur {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: #fff;
    transition: all .3s ease-out;
}
.button.button--blur.button--disabled {
    background-color: rgba(255, 255, 255, 0.4);
}
.button.button--blur.button--disabled .button__text {
    color: #3E3E3E;
    opacity: 0.5;
}
.button--blur .button__icon {
    background-color: rgba(255, 255, 255, 0.2);
}
html:not(.is-touch) .button--blur:not(.button--disabled):hover .button__icon {
    background-color: rgba(255, 255, 255, 0.2);
}
.button--blur.button--disabled .button__icon {
    background-color: rgba(255, 255, 255, 0.4);
}
/* ---- /Button ---- */

/* ---- Select ---- */
.select {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Поле селекта */
.select__field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.select__icon {
    margin-right: 1px;
    width: 24px;
    height: 24px;
    stroke: #009997;
    fill: none;
    transition: transform 0.2s ease;
}

/* при открытии */
.select--open .select__icon {
    transform: rotate(180deg);
}

/* Выпадающий список */
.select__dropdown {
    position: absolute;
    z-index: 2;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
    padding: 15px 0;
    display: none;
}

.select--open .select__dropdown {
    display: block;
}

/* Опции */
.select__option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.select__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.select__radio--active {
    background: #00a2a2;
    position: relative;
}

.select__radio--active::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
/* ---- /Select ---- */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.section {
    padding: 80px 0;
    min-width: var(--page-min-width);
    box-sizing: border-box;
}

.section__title {
    font-size: 36px;
    font-weight: var(--default-font-weight);
    margin: 0 0 60px;
    padding: 0;
    color: var(--color-text);
}

.section__title span {
    color: var(--color-primary);
}

.text-gradient {
    background: linear-gradient(to right, #009997, #34CDCB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-light {
    background: linear-gradient(to right, #23b8b6, #33cdca);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-error {
    background: linear-gradient(to right, #f14e35, #f55741);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 68px 60px 0;
    min-width: var(--page-min-width);
    box-sizing: border-box;
}

.header__container {
    display: flex;
    height: 64px;
    min-width: fit-content;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: var(--default-font-weight);
    margin: 12px 0 12px 18px;
}

.header__logo-icon {
    width: 216px;
    height: 38px;
    fill: var(--color-primary);
}

.header__controls {
    display: flex;
    align-items: center;
    padding-right: 8px;
    padding-left: 16px;
}

.header__phone {
    margin-right: 10px;
}

nav {
    flex: 1;
}

.nav__list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    margin-left: 30px;
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .nav__item {
        margin-left: auto;
    }
}

.nav__link {
    text-decoration: none;
    font-size: 14px;
    color: var(--color-text);
    transition: all .3s;
}

/* Start */
.start {
    background-image: url('images/landscape.jpg');
    background-color: #ddd6cb;
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    position: relative;
}

.start__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 1000px;
    max-width: 100%;
    box-sizing: border-box;
    color: var(--color-light);
    padding: 250px 0 150px;
    background: linear-gradient(0, rgba(0, 0, 0, 0.5), transparent);
}

.start__title {
    font-size: 64px;
    font-weight: var(--default-font-weight);
    margin: 0 0 23px;
    line-height: 1.1;
}

.start__title span {
    color: var(--color-primary);
}

.start__subtitle {
    font-size: 18px;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.start__action {
    margin: 0 6px;
}

/* Verification */
.verification {
    padding-bottom: 20px;
}

.verification__container {
    padding: 60px 60px 10px;
    max-width: unset;
}

.verification__form-wrap {
    background-color: var(--color-light-darken);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 36px 36px 30px;
    color: var(--color-text);
    max-width: var(--container-max-width);
    box-sizing: border-box;
}

.verification__title {
    margin: 0;
    align-self: start;
    width: 400px;
    font-size: 36px;
    font-weight: var(--default-font-weight);
    line-height: 1.1;
}

.verification__title span {
    color: #29c1bf;
}

.verification__form {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.verification__form-line {
    display: flex;
}

.verification__form-text {
    margin: 0;
    padding: 1px 0 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-secondary);
}

.verification__input {
    flex-grow: 1;
    margin-right: 14px;
    padding: 15px 23px 12px;
    border: none;
    border-radius: 14px;
    background-color: var(--color-light);
    color: var(--color-text);
    font-size: 18px;
}

.verification__form-button {
}

.verification__button-icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
}

.verification__form-suggest {
    margin: 0;
    padding: 18px 0 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-lighter);
}

.verification__suggest-title {
    margin-right: 12px;
    padding: 5px 8px 4px 0;
}

.verification__suggest-label {
    display: inline-block;
    background-color: var(--color-light);
    padding: 7px 8px 5px;
    border-radius: 6px;
    cursor: pointer;
}

.verification__offer {
    margin: 0;
    /*padding: 24px 0 0;*/
    font-size: 18px;
    color: var(--color-text-secondary);
    text-align: center;
}

/* Risks */
.risks {
    padding: 33px 60px 10px;
}

.risks__container {
    padding: 0;
    box-sizing: border-box;
}

.risks__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.risks__block-title {
    min-height: 86px;
    font-size: 36px;
    color: var(--color-text);
    font-weight: var(--default-font-weight);
    margin: 36px 0 30px;
    padding: 0;
    line-height: 1.1;
}

.risks__block-title span {
    color: #14adab
}

.risks__block-warning .risks__block-title span {
    color: #f14d36;
}

.risks__item {
    background-color: var(--color-light);
    padding: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;

    box-shadow: 
        0px 15px 34px 0px #E3E3E32A,
        0px 62px 62px 0px #E3E3E327,
        0px 139px 83px 0px #E3E3E30D,
        0px 247px 99px 0px #E3E3E303,
        0px 386px 108px 0px #E3E3E310;
}

.risks__icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
}

.risks__block-warning .risks__icon-wrap {
    background-color: var(--color-error-lighten);
}

.risks__icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
}

.risks__item-text {
    margin: 0;
    padding: 1px 0 0 16px;
    font-size: 18px;
    line-height: 1.1;
}

.risks__block-warning .risks__icon {
    stroke: var(--color-error);
}

/* CTA Banner */
.cta-banner {
    padding: 30px 60px 60px;
}

.cta-banner__container {
    background-image: url('images/landscape-thin.jpg');
    background-size: cover;
    background-color: #ddd6cb;
    background-position: center;
    border-radius: 24px;
    padding: 34px 36px 38px;
}

.cta-banner__title {
    font-size: 36px;
    font-weight: var(--default-font-weight);
    color: var(--color-light);
    margin: 0;
    padding: 0 0 10px;
}

.cta-banner__button {
    margin-top: 12px;
}

/* How It Works */
.how-it-works {
    padding: 0 60px;
    height: 100vh;
    box-sizing: border-box;
}

.how-it-works__container {
    background-color: #ECF7F7;
    position: relative;
    height: 94vh; /* 712px */
    padding: 0 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(220deg, #aedfdeaa 0%, transparent 20%),
        radial-gradient(circle,rgba(255, 255, 255, 0.6) 0%, rgba(220, 241, 241, 1) 100%);
}

.how-it-works__title {
    position: absolute;
    top: calc(50% - 52px);
    left: 0;
    width: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    font-size: 64px;
    line-height: 1;
    text-align: center;
}

.how-it-works__steps {

}

.how-it-works__step {
    position: relative;
    z-index: 2;
    display: flex;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 12px 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.how-it-works__step:nth-child(even) {
    margin-left: auto;
}

.how-it-works__step-number {
    width: 48px;
    height: 48px;
    background-color: #ECF7F7EE;
    border-radius: 14px;
    font-size: 18px;
    font-weight: var(--default-font-weight);
    color: var(--color-primary);
    display: block;
    text-align: center;
    line-height: 2.7;
}

.how-it-works__step-text {
    flex-grow: 1;
    margin: 0 0 0 16px;
    padding: 0;
    font-size: 18px;
}

/* What You Get */
.what-you-get {
    padding: 98px 60px 0;
}

.what-you-get__container {
    padding: 0;
}

.what-you-get__title {
    padding: 0;
    margin: 0 0 34px;
}
.what-you-get__title span {
    color: #019a98;
}

.what-you-get__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.what-you-get__item {
    background-color: var(--color-light-darken);
    padding: 12px;
    border-radius: 28px;
    position: relative;
}

.what-you-get__folder-decor {
    background-color: var(--color-light);
    background-image: url(images/folder-corner.png);
    background-size: 50px 30px;
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    width: 70px;
    top: 35px;
    left: 12px;
    padding: 24px;
    border-radius: 24px 0 0 0;
}

.what-you-get__icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
}

.what-you-get__icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
}

.what-you-get__item-title {
    height: 180px;
    margin: 53px 0 0;
    padding: 25px 25px 23px;
    box-sizing: border-box;
    display: flex;
    align-items: end;
    font-size: 18px;
    font-weight: var(--default-font-weight);
    background-color: var(--color-light);
    border-radius: 24px;
}


@media (min-width: 1024px) and (max-width: 1200px) {
    .what-you-get__item-title {
        font-size: 16px;
    }
}

/* Pricing */
.pricing {
    padding: 80px 60px 40px;
}

.pricing__container {
    padding: 0;
}

.pricing__title {
    padding: 18px 0 2px;
    margin-bottom: 32px;
}

.pricing__blocks {
    display: grid;
    gap: 18px;
}

@media (min-width: 768px) {
    .pricing__blocks {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "a1 a2 a3"
            "b1 b2 b3";
    }
    
    .card-1a { grid-area: a1; }
    .card-2a { grid-area: a2; }
    .card-3a { grid-area: a3; }
    
    .card-1b { grid-area: b1; }
    .card-2b { grid-area: b2; }
    .card-3b { grid-area: b3; }
    .pricing__card {
        margin-right: 7px;
    }
    .pricing__card-special {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "a1"
            "b1"
            "a2"
            "b2"
            "a3"
            "b3";
    }
}

.pricing__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 36px;
    border-radius: 20px;
    background-color: var(--color-bg);
    box-shadow: 
        0px 15px 34px 0px #E3E3E31A,
        0px 62px 62px 0px #E3E3E317,
        0px 139px 83px 0px #E3E3E30D,
        0px 247px 99px 0px #E3E3E303,
        0px 386px 108px 0px #E3E3E300;
}

.pricing__card-special {
    background-color: var(--color-light-darken);
}

.pricing__card-title {
    font-size: 18px;
    font-weight: var(--default-font-weight);
    margin: 0;
    padding: 25px 0 13px;
}

.pricing__card-price {
    font-weight: var(--default-font-weight);
    margin: 0 0 30px;
}

.pricing__card-price-digits {
    font-size: 36px;
}


.pricing__card-price-sub {
    font-size: 18px;
    line-height: 1.1;
}

.pricing__card-info {
    flex: 1;
    display: flex;
    align-items: end;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--color-text-secondary);
}

.pricing__card-subtitle {
    margin: 0;
    padding: 0 0 23px;
    font-size: 18px;
    font-weight: 400;
}

.pricing__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.pricing__card-feature {
    margin-bottom: 16px;
    padding: 0;
    display: flex;
    font-size: 18px;
}

.pricing__icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
}

.pricing__card-feature-icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
}

.pricing__card-special .pricing__icon-wrap {
    background-color: var(--color-light);
}

.pricing__icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
}

.pricing__button-wrap {
    margin-top: auto;
}

.pricing__button {
    width: 100%;
    box-sizing: border-box;
}


@media (min-width: 1024px) and (max-width: 1200px) {
    .pricing__card-price-digits {
        font-size: 28px;
    }
    .pricing__card-info {
        font-size: 16px;
    }

    .pricing__card-subtitle {
        font-size: 16px;
    }

    .pricing__card-feature {
        font-size: 16px;
    }

    .pricing__card-price-sub {
        font-size: 16px;
    }
}

/* Calculator */
.calculator {
    padding: 60px;
}

.calculator__container {
    background-color: var(--color-light-darken);
    border-radius: 24px;
    padding: 100px 126px;
    background: linear-gradient(-40deg, #aedfdeaa 0%, var(--color-light-darken) 60%, var(--color-light-darken) 100%);
}


@media (min-width: 1024px) and (max-width: 1200px) {
    .calculator__container {
        padding: 80px 40px;
    }
}

.calculator__title {
    margin: 0;
    padding: 0 0 34px;
    align-self: start;
    font-size: 36px;
    font-weight: var(--default-font-weight);
    line-height: 1.1;
    text-align: center;
}

.calculator__title span {
    color: #2fc8c6;
}

.calculator__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.calculator__form {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    height: 100%;
    padding: 30px 30px 30px 36px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
}

.calculator__row {
    display: flex;
    gap: 35px;
}

.calculator__row-part {
    flex: 1;
}

.calculator__label {
    display: block;
    margin: 6px 0 14px;
    font-weight: 400;
    font-size: 18px;
}

.calculator__label-chemic {
    margin-bottom: 16px;
}

.calculator__select {
    margin: 16px 0 0;
}

.calculator__radio-group {
    display: flex;
    flex-direction: column;
    padding-top: 1px;
}

.calculator__radio-group .calculator__radio-group-label {
    margin-right: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    width: max-content;
}

.calculator__radio-group-field {
    display: none;
}

.calculator__radio-group-circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 7px solid transparent;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    background: #fff;
    vertical-align: bottom;
}

.calculator__radio-group-field:checked ~ .calculator__radio-group-circle {
    background:
        linear-gradient(0deg, white, white) padding-box,
        linear-gradient(to right, #009997, #34CDCB) border-box;
}

.calculator__select-circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 7px solid transparent;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    background: #fff;
    vertical-align: bottom;
}

.calculator__select-circle--active {
    background:
        linear-gradient(0deg, white, white) padding-box,
        linear-gradient(to right, #009997, #34CDCB) border-box;
}

.calculator__result {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    height: 100%;
    width: 336px;
    box-sizing: border-box;
    padding: 30px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    text-align: center;
    background-image: linear-gradient(50deg, #88dad859 0%, transparent 50%);
}

.calculator__result-label {
    margin: 6px 0 10px;
    font-size: 18px;
    font-weight: 400;
}

.calculator__result-price {
    flex: 1;
    align-content: center;
    font-size: 36px;
    font-weight: var(--default-font-weight);
    color: var(--color-text-lighter);
    margin: 0;
}

.calculator__result-period-empty {
    color: var(--color-text-lighter);
}

.calculator__chem-input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.calculator__chem-input {
    flex: 1;
    height: 48px;
    box-sizing: border-box;
    padding: 11px 44px 9px 44px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--color-light);
    /* outline: none; */
}

.calculator__chem-search-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #bdc3c4;
}

.calculator__chem-clear-ico {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #bdc3c4;
    cursor: pointer;
}

.calculator__chem-dropdown {
    display: none;
    position: absolute;
    z-index: 2;
    margin-top: 7px;
    width: calc(100% - 88px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    padding: 3px 2px;
    max-height: 182px;
    overflow-y: auto;
    border-right: 16px solid #fff;
    border-top: 6px solid #fff;
    border-bottom: 6px solid #fff;
}

.calculator__chem-dropdown--open {
    display: block;
}

/* Стилизация скроллбара */
.calculator__chem-dropdown::-webkit-scrollbar {
    width: 3px;
}

.calculator__chem-dropdown::-webkit-scrollbar-track {
    background-color: #ecf7f7;
    border-radius: 3px;
}

.calculator__chem-dropdown::-webkit-scrollbar-thumb {
    background: #b6dede;
    border-radius: 10px;
}

html:not(.is-touch) .calculator__chem-dropdown::-webkit-scrollbar-thumb:hover {
    background: #87c7c7;
}

.calculator__chem-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.calculator__chem-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf7f7;
    flex-shrink: 0;
    fill: none;
}

.calculator__chem-checkbox--checked {
    stroke: #009997;
}

.calculator__field-button {
    flex: 1;
    align-content: end;
}

.calculator__field-chemicals {
    padding-top: 11px;
}

.calculator__submit-button {
    width: calc(100% - 2px);
}

.calculator__chem-added-list {
    padding: 10px 0 0;
}

.calculator__chem-added-label {
    display: inline-block;
    background-color: var(--color-light);
    margin: 0 2px 6px 0;
    padding: 4px 2px 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 12px;
}

.calculator__chem-added-delete {
    cursor: pointer;
    vertical-align: middle;
    fill: none;
    stroke: #bdc3c4;
}


/* FAQ */

.faq {
    padding: 38px 60px 10px;
}

.faq__container {
    padding: 0;
}


.faq__title {
    margin-bottom: 34px;
}

.faq__content {
    display: flex;
    flex-direction: row;
}

.faq__pic {
    min-width: 424px;
    width: 50%;
    max-width: 624px;
    /*height: 404px;*/
    background-image: url('images/f_landscape.jpg');
    background-color: #ddd6cb;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.faq__items {
    max-width: 800px;
    flex: 1;
    padding: 0 0 0 20px;
}

.faq__item {
    padding: 10px 11px;
    border-radius: 18px;    
    background-color: var(--color-light);
    box-shadow:
        0px 15px 34px 0px #E3E3E32A,
        0px 62px 62px 0px #E3E3E327,
        0px 139px 83px 0px #E3E3E30D,
        0px 247px 99px 0px #E3E3E303,
        0px 386px 108px 0px #E3E3E310;
}

.faq__item:not(:last-child){
    margin-bottom: 16px;
}

.faq__head {
    display: flex;
}

.faq__item-title {
    flex: 1;
    margin: 0;
    padding: 1px 16px 0 16px;
    font-size: 18px;
    line-height: 1.1;
    color: var(--color-text);
    font-weight: var(--default-font-weight);
    align-content: center;
}

.faq__icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
    cursor: pointer;
}

.faq__icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq__item--active .faq__icon {
    transform: rotate(-45deg);
}

.faq__item-text {
    box-sizing: border-box;
    margin: 0;
    padding: 22px 40px 16px 16px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: var(--default-font-weight);
    color: var(--color-text);
}

.faq__item-text-wrap {
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: transform 0.2s ease, opacity 0.4s ease;
}

.faq__item--active .faq__item-text-wrap {
    transform: scaleY(1);
    opacity: 1;
    height: auto;
}

/* Blog */
.blog {
    padding: 88px 60px 10px;
}

.blog__container {
    padding: 0;
}

.blog__header {
    display: flex;
}

.blog__controls {
    display: flex;
    gap: 8px;
}

.blog__controls-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
    cursor: pointer;
}

.blog__controls-icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.blog__title {
    flex: 1;
    margin-bottom: 42px;
}

.blog__posts {
    display: flex;
    gap: 24px;
}

.blog__posts.swiper-container{
    overflow: hidden;
}

.blog__post {
    /*width: calc((100% - 48px)/3);*/
}

.blog__post-image-wrap {
    /* width: 408px; */
    height: 248px;
    background-color: var(--color-light-darken);
    border-radius: 20px;
    overflow: hidden;
}

.blog__post-image {
    min-width: 100%;
    min-height: 100%;
    width: -webkit-fill-available;
    object-fit: cover;
}

.blog__post-title {
    font-size: 24px;
    font-weight: 400;
    margin: 24px 0 0;
    padding: 0;
}

.blog__post-text {
    font-size: 18px;
    font-weight: 400;
    padding: 24px 0 12px;
    margin: 0;
}

.blog__post-info {
    margin: 0;
    padding: 24px 0 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-secondary);
}

/* Offer Form */
.offer-form {
    padding: 80px 60px;
}

.offer-form--popup {
    padding: 0;
    margin: 0;
}

.offer-form__container {
    max-width: var(--container-max-width);
    box-sizing: border-box;
    margin: 9px auto 0;
    padding: 60px 60px 116px;
    background-color: var(--color-light-darken);
    border-radius: 24px;
    background-image: linear-gradient(50deg, #88dad859 0%, transparent 50%);
}

.offer-form--popup .offer-form__container {
    padding: 31px 40px 40px;
}

.offer-form__title {
    /*margin-top: 40px;
    margin-bottom: 36px;*/
    font-size: 36px;
    text-align: center;
    line-height: 1.1;
    max-width: 795px;
    margin: 40px auto 36px;
}

.offer-form--popup .offer-form__title {
    margin-bottom: 31px;
    font-size: 28px;
}

.offer-form__form {
    max-width: 630px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-form__controls {
    display: flex;
    gap: 26px;
    padding: 9px 0 0;
}

.offer-form--popup .offer-form__controls {
    gap: 22px;
}

.offer-form__button-wrap {

}

.offer-form__disclaim {
    flex-grow: 1;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-dark-lighten);
    align-content: center;
}

.offer-form__disclaim a {
    color: var(--color-dark-lighten);
    text-decoration: underline;
}

.offer-form__input {
    width: 100%;
    height: 56px;
    box-sizing: border-box;
    margin-right: 14px;
    padding: 15px 23px 12px;
    border: none;
    border-radius: 14px;
    background-color: var(--color-light);
    color: var(--color-text);
    font-size: 18px;
}

.offer-form--popup  .offer-form__input {
    height: 48px;
    font-size: 16px;
}

.offer-form--popup  .offer-form__button {
    height: 48px;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 60px;
    margin-top: 40px;
    background-color: #009997;
    color: var(--color-light);
    font-size: 14px;
    border-radius: 20px 20px 0 0;
}

.footer__address {
    color: var(--color-light);
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin: 0 auto;
    padding: 40px 0 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.footer__container p {
    margin: 2px 0 16px;
    padding: 0;
    line-height: 1.2;
}

.footer__logo-link {
    text-decoration: none;
    font-weight: var(--default-font-weight);
    font-size: 24px;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.footer__logo-icon {
    width: 216px;
    height: 38px;
    fill: var(--color-primary);
}

.footer__link {
    color: var(--color-light);
    text-decoration: underline;
    margin: 10px 0 0;
}

.footer__phone {
    color: var(--color-light);
    text-decoration: underline;
    margin: 10px 0 0;
    font-weight: var(--default-font-weight);
}

.footer__socials {
    display: flex;
    margin-top: 24px;
}

.footer__social-link {
    margin-right: 8px;
}

.footer__social-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-light);
}

/* For animation */
.js-pin-section {
    height: 250vh;
}

.js-pin-container {
    position: sticky;
    top: 0;
    height: 100vh;
    padding-top: 3vh;
    box-sizing: border-box;
}

[data-animate] {
    opacity: 0;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay.st-active {
    display: flex;
}

.popup {
    border-radius: 8px;
    position: relative;
    max-width: 520px;
    width: 90%;
}

.popup__close-btn {
    position: absolute;
    top: 29px;
    right: 20px;
    width: 36px;
    height: 36px;
    background-color: var(--color-light);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__close-btn-icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    flex-shrink: 0;
}

.popup-message {
    margin-top: 9px;
    padding: 40px;
    border-radius: 24px;
    background-color: var(--color-light);
    text-align: center;
}

.popup-message__icon-wrap {
    margin: 0 auto;
    width: 48px;
    height: 48px;
    background-color: var(--color-light-darken);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-message--error .popup-message__icon-wrap {
    background-color: #fff2f1;
}

.popup-message__icon {
    margin: 12px;
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: transparent;
    flex-shrink: 0;
}

.popup-message--error .popup-message__icon {
    stroke: #ed432a;
}

.popup-message__title {
    margin: 0;
    padding: 25px 0 10px;
    align-self: start;
    font-size: 28px;
    font-weight: var(--default-font-weight);
    line-height: 1.1;
}

.popup-message__text {
    margin: 0;
    padding: 6px 0 24px;
    align-self: start;
    font-size: 18px;
    font-weight: var(--default-font-weight);
    line-height: 1.2;
}
.verification__table{
    max-width: var(--container-max-width);
    margin: 0 auto 24px;
}
.table-row{
    display: flex;
    padding: 24px 16px 24px 36px;
    border-radius: 18px;
    box-shadow: 0px 15px 34px 0px rgba(227, 227, 227, 0.1),0px 62px 62px 0px rgba(227, 227, 227, 0.09),0px 139px 83px 0px rgba(227, 227, 227, 0.05),0px 247px 99px 0px rgba(227, 227, 227, 0.01),0px 386px 108px 0px rgba(227, 227, 227, 0);
    background: rgba(255, 255, 255, 1);
    margin-bottom: 16px;
    align-items: center;
}
.table-row.table-head{
    background: rgba(236, 247, 247, 1);
}
.table-cell{
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.table-row.table-head .table-cell{
    color: rgba(0, 153, 151, 1);    
}
.table-cell:not(:last-child){
    margin-right: 83px;
}
.table-cell:first-child{
    margin-right: 192px;    
    width: 16%;
}
.table-cell:nth-child(2){
    width: 11%;
}
.table-cell:nth-child(3){
    width: 7%;
}
.table-cell:nth-child(4){
    width: 10%;
}
.table-cell:nth-child(5){
    width: 16%;
}
.flex-cell{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 201px;
}
.table-cell a{
    padding: 10px 16px;
    border-radius: 12px;
    background: linear-gradient(90.00deg, rgba(0, 153, 151, 1),rgba(52.42778015136719, 204.98074340820312, 202.986572265625, 1) 67%);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.srok-more{
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}
.srok-more:after{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24.000000' heigaht='24.000000' fill='none'%3E%3Crect id='Icon' width='24.000000' height='24.000000' x='0.000000' y='0.000000' /%3E%3Cpath id='Vector' d='M16 10L12 14L8 10' stroke='rgb(0,153,151)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' /%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: all .3s;
}
.srok-more.active:after{
    transform: rotate(180deg);
}
.srok-list{
    display: none;
    background-color: #fff;
    padding: 5px 10px;
    position: absolute;
    margin-top: 10px;
    left: -10px;
}
.srok-list-item{
    margin-bottom: 5px;
}
.table-close{
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36.000000' height='36.000000' fill='none' clip-path='url(%23clipPath_0)' customFrame='url(%23clipPath_0)'%3E%3Cdefs%3E%3CclipPath id='clipPath_0'%3E%3Crect width='36.000000' height='36.000000' x='0.000000' y='0.000000' rx='12.000000' fill='rgb(255,255,255)' /%3E%3C/clipPath%3E%3CclipPath id='clipPath_1'%3E%3Crect width='24.000000' height='24.000000' x='6.000000' y='6.000000' fill='rgb(255,255,255)' /%3E%3C/clipPath%3E%3C/defs%3E%3Crect id='Icon square' width='36.000000' height='36.000000' x='0.000000' y='0.000000' rx='12.000000' fill='rgb(236,247,247)' /%3E%3Cg id='Icon' clip-path='url(%23clipPath_1)' customFrame='url(%23clipPath_1)'%3E%3Crect id='Icon' width='24.000000' height='24.000000' x='6.000000' y='6.000000' /%3E%3Cpath id='Vector' d='M22 22L18 18L14 14M22 14L18 18M18 18L14 22' stroke='rgb(165,219,218)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' /%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    margin-left: auto;
    cursor: pointer;
}
.price-cell{
    min-width: 67px;
}
.search-slider{
    overflow: hidden;
}
.nav__link:hover{
    color: rgba(0, 153, 151, 1);
}