/* CALC PAGE */
._hide {
    display: none
}

._hide-slow {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s ease, visibility .5s ease;
    -o-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease
}

main .banner-top-padding {
    display: none;
}

._flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.calc ._btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    white-space: nowrap;
    font-weight: 400;
    padding: 12px 30px;
    margin: 10px;
}

.calc .button {
    border-radius: 30px;
    outline-offset: 10px;
    font: 400 16px / 150% var(--text-font);
    background-color: #930338;
    color: #fff;
    outline: 1px solid #930338;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.calc .button:hover {
    background-color: #930338;
    outline: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.calc ._calc-btn {
    border-radius: 40px;
    cursor: pointer;
    background-color: #F6F6F6;
    color: var(--title-color);
    outline-offset: 0;
    padding: 14px 20px 12px;
    margin: 0;
    cursor: pointer;
}

.calc ._calc-btn:hover,
.calc ._active-btn {
    background-color: #E5E5E5;
    color: var(--text-color);
}

.calc {
    position: relative;
    z-index: 5;
    background-color: #fff;
    padding: 63px 0 59px;
}

.calc__answer-option {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    color: var(--text-color);
}

.calc .form-wrapper .input-wrapper .placeholder {
    position: absolute;
    left: 0;
    top: 45%;
    -webkit-transform: translate(0, -52%);
    -ms-transform: translate(0, -52%);
    transform: translate(0, -52%);
    font: 400 16px/21px var(--text-font);
    color: rgba(0, 0, 0, 0.6) !important;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calc .form-wrapper .input-wrapper.focus .placeholder {
    font-size: 11px;
    line-height: 14px;
    color: rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.calc .form-wrapper .input-wrapper,
.calc .form-wrapper .checkbox-wrapper {
    position: relative;
    display: block;
    border-bottom: 1px solid #A7ADB8;
    max-width: unset;
    cursor: text;
    text-align: left;
   margin: 0;
    height: 41px;
}

.calc .form-wrapper input.text {
    top: 6%;
    position: absolute;
}

.calc .form-wrapper input.text {
    top: -3%;
}

.calc__result--btn-container {
    position: relative;
}

.main-calc__img {
    display: none;
}

.calc__body {
    top: 0;
    background-color: #fff;
}

.calc__title {
    font: normal 600 30px/130% var(--title-font);
    color: var(--text-color);
    margin-bottom: 41px;
}

.calc__questions-container {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.calc__questions-container:nth-of-type(4) {
    margin-bottom: 50px;
}

.calc__questions-container_last {
    min-height: 64px;
}

.calc__questions-container:nth-of-type(2) .calc__answers-list {
    gap: 17px;
}

.calc__question {
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    color: var(--text-color);
    width: 100%;
    font-weight: 600;
    margin-bottom: 20px;
}

.calc__answer-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__result-text {
    color: #949393;
    font: normal 600 30px/130% var(--title-font);
}

.calc__calc--result {
    color: var(--title-color);
    font: normal 600 30px/130% var(--title-font);
}

.calc__result--prompt {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: calc(100% + 20px);
    color: var(--text-color);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 7px 0px rgba(93, 93, 93, 0.25);
    padding: 20px 40px 20px 20px;
    z-index: 5;
    box-sizing: border-box;
}

.calc__result--prompt p {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--text-color);
    margin: 0;
}

.calc__result--prompt-close-icon {
    position: absolute;
    top: 18px;
    left: unset;
    bottom: unset;
    right: 19px;
    margin: auto;
}

.calc__result--prompt-close-icon-btn {
    position: absolute;
    height: 37px;
    width: 37px;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.calc__result--prompt-close-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.calc__result--btn {
    font: 400 16px / 150% var(--text-font);
    color: var(--text-color);
    background-image: -o-linear-gradient(left, var(--text-color) 0, var(--text-color) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, var(--text-color)), to(var(--text-color)));
    background-image: linear-gradient(to right, var(--text-color) 0, var(--text-color) 100%);
    background-repeat: repeat-x;
    background-position: 0 83%;
    background-size: 100% 1px;
    padding-bottom: 1px;
}

.calc .button {
    font-family: var(--text-font);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 0 14px 0;
    width: 100%;
    max-width: 323px;
}

/* END CALC PAGE */
@media screen and (min-width: 700px) {

    /* CALC PAGE */
    .calc {
        padding: 59px 0 32px;
    }

    .calc .form-wrapper form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 30px;
    }

    .calc__questions-container:nth-of-type(4) {
        min-width: 300px;
        width: calc(100% - 400px);
        padding-top: 3px;
    }

    .calc__questions-container_last {
        min-height: 67px;
    }

    .calc .btn-wrapper {
        width: calc(50% - 10px);
        max-width: 343px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .calc .button {
        width: 100%;
    }

    /* END CALC PAGE */
}

@media screen and (min-width: 1200px) {
    /* CALC PAGE */

    .calc__body {
        position: absolute;
        top: 70px;
        left: 0;
        border-radius: 20px;
        max-width: 540px;
        padding: 40px;
    }

    .calc .form-wrapper form {
        align-items: center;
    }

    .main-calc__img {
        display: block;
    }

    .calc {
        padding: 0;
    }

    .calc__answers-list {
        gap: 16px;
    }

    .calc__questions-container {
        margin-bottom: 32px;
    }

    .calc .btn-wrapper {
        width: fit-content;
    }

    .calc__questions-container:nth-of-type(3) {
        margin-bottom: 40px;
    }

    .calc .button {
        width: 100%;
        max-width: 323px;
        padding: 14px 32px 14px 32px;
    }

    .calc__questions-container:nth-of-type(4) {
        width: calc(100% - 240px);
        padding-top: 0;
        margin-bottom: 0px;
        min-height: auto;
    }

    .calc__questions-container_last {
        min-height: auto;
    }

    .calc__result {
        margin-bottom: 1px;
    }

    .calc .form-wrapper form {
        gap: 0;
    }

    .calc__result--prompt {
        top: calc(100% + 11px);
    }

    .main-calc__img img {
        width: 100%;
        height: 721px;
        object-fit: cover;
        object-position: center;
    }

    .calc__answer-option {
        font-size: 14px;
    }
    .calc ._calc-btn {
    padding: 12px 20px 12px;

}   
section.calc{
    height: 721px;
} 
.calc picture {
        position: absolute;
        width: 100%;
        height: 800px;
        top: 0;
        left: 0;
    }

    .calc > .wrapper {
        position: relative;
        max-width: 1320px;
        width: calc(100% - 48px);
        margin: 0 auto;
        box-sizing: border-box;
        z-index: 1;
    }

    /* END CALC PAGE */
}
@media screen and (max-width: 374px) {
    .calc .button {
        max-width: calc(100% - 20px);
    }
}