html {
    scroll-behavior: smooth
}

body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: #F3F5F8
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    padding-top: 137px;
    overflow-x: hidden
}

@media (max-width: 1365px) {
    .main-wrapper {
        padding-top: 145px
    }
}

.container {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px
}

.wrapper-editor {
    padding: 140px 0 40px
}

.target-anchor {
    scroll-margin-top: 100px
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.mb80 {
    margin-bottom: 80px
}

@media (max-width: 1023px) {
    .mb80 {
        margin-bottom: 60px
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.title-xl {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1
}

@media (max-width: 1023px) {
    .title-xl {
        font-size: 34px
    }
}

.title-l {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1
}

@media (max-width: 1023px) {
    .title-l {
        font-size: 28px
    }
}

.text-l {
    font-size: 26px;
    font-weight: 400;
    line-height: 150%
}

@media (max-width: 1023px) {
    .text-l {
        font-size: 22px
    }
}

.text-m {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%
}

@media (max-width: 1365px) {
    .text-m {
        font-size: 16px
    }
}

.text-l.bold, .text-m.bold {
    font-weight: 700
}

.text-center {
    text-align: center
}

.white {
    color: #FFF
}

.black {
    color: #4B515A
}

.dark {
    color: #153975
}

.orange {
    color: #DC641E
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.4s linear
}

.header.active {
    transform: translateY(-89px)
}

.header-protect {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 3px;
    z-index: 999
}

.header-protect-text {
    font-size: 8px;
    line-height: 10px;
    color: rgba(0, 0, 0, .3);
    font-weight: 400
}

.header-protect-text a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s linear
}

.header-protect-text a:hover {
    color: #BF0000
}

.header-top {
    padding: 15px 0;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(25px)
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.header-logo {
    display: block;
    width: 236px;
    height: 59px
}

.header-bottom {
    padding: 8px 0;
    background: var(--Orange, #DC641E)
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px
}

@media (max-width: 1023px) {
    .header-bottom-inner {
        flex-direction: column;
        align-items: stretch
    }
}

.header-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px
}

@media (max-width: 1023px) {
    .header-bottom-wrapper {
        gap: 10px;
        justify-content: space-between
    }
}

.header-menu {
    margin-right: 40px
}

@media (max-width: 1023px) {
    .header-menu {
        display: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px
    }
}

@media (min-width: 1024px) {
    .header-menu {
        display: block !important
    }
}

.header-list {
    display: flex;
    align-items: center;
    gap: 60px
}

@media (max-width: 1023px) {
    .header-list {
        gap: 10px 20px;
        flex-wrap: wrap;
        justify-content: center
    }
}

.header-link {
    display: block;
    color: var(--White, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: 0.2s linear;
    overflow: hidden;
    position: relative
}

.header-link::before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #FFF;
    transition: transform 0.2s linear;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-110%)
}

@media (any-hover: hover) {
    .header-link:hover::before {
        transform: translateX(0)
    }
}

.header-btn {
    display: block;
    padding: 6px 20px;
    border: 1px solid #153975;
    border-radius: 50px;
    background: var(--Blue-Dark, #153975);
    outline: none;
    cursor: pointer;
    color: var(--White, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    transition: background 0.2s linear;
    position: relative;
    z-index: 1
}

@media (any-hover: hover) {
    .header-btn:hover {
        background: var(--Orange, #DC641E)
    }
}

.header-btn:active {
    transform: translateY(2px)
}

.header-lang {
    width: 75px;
    height: 40px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    user-select: none;
    position: relative
}

.header-lang-inner {
    width: 100%;
    background-color: #DC641E;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0
}

.header-lang-inner img {
    width: 22px
}

.header-lang-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 40px;
    padding: 0 10px;
    cursor: pointer;
    transition: 0.2s linear
}

.header-lang-active::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 8px;
    transition: transform 0.3s ease-in-out
}

.header-lang-active.active::after {
    transform: rotate(180deg)
}

.header-lang-list {
    display: none;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .5)
}

.header-lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    color: inherit;
    text-decoration: none;
    transition: 0.2s linear
}

.header-lang-list a:hover {
    background: #153975
}

.header-burger {
    display: none
}

@media (max-width: 1023px) {
    .header-burger {
        display: block;
        width: 44px;
        height: 40px;
        background-image: url("data:image/svg+xml,%3Csvg width='44' height='40' viewBox='0 0 44 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='40' rx='10' fill='white' fill-opacity='0.15'/%3E%3Cpath d='M10 10H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M17 20L34 20' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 30H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A")
    }

    .header-burger.active {
        background-image: url("data:image/svg+xml,%3Csvg width='44' height='40' viewBox='0 0 44 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='40' rx='10' fill='white' fill-opacity='0.15'/%3E%3Cpath d='M14 28.0001L30.9706 11.0296' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M14 11.0002L30.9706 27.9707' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A")
    }
}

.btn {
    display: block;
    padding: 16px 40px;
    width: fit-content;
    border-radius: 50px;
    color: var(--White, #FFF);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    transition: background-color 0.2s linear;
    position: relative;
    z-index: 1
}

.btn:active {
    transform: translateY(2px)
}

.btn--orange {
    background-color: #DC641E
}

@media (any-hover: hover) {
    .btn--orange:hover {
        background-color: #153975
    }
}

.btn--blue {
    background-color: #153975
}

@media (any-hover: hover) {
    .btn--blue:hover {
        background-color: #DC641E
    }
}

.form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 40px;
    width: 100%;
    max-width: 715px;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--White, #FFF);
    box-shadow: 0 7px 30px 0 rgba(21, 57, 117, .15);
    position: relative
}

@media (max-width: 544px) {
    .form {
        max-width: unset;
        padding: 20px
    }
}

.form .btn {
    width: 100%;
    margin-bottom: 20px
}

.form-title {
    margin-bottom: 20px;
    text-align: center;
    color: #153975;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700
}

@media (max-width: 1023px) {
    .form-title {
        font-size: 28px
    }
}

.form__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px
}

.form__input-wrapper {
    display: flex;
    position: relative;
    width: 100%
}

.form-name, .form-email {
    position: relative
}

.form-name::before, .form-email::before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%)
}

.form-name::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M16.6667 17.5V15.8333C16.6667 14.9493 16.3155 14.1014 15.6904 13.4763C15.0653 12.8512 14.2174 12.5 13.3334 12.5H6.66671C5.78265 12.5 4.93481 12.8512 4.30968 13.4763C3.68456 14.1014 3.33337 14.9493 3.33337 15.8333V17.5' stroke='%23120124' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.99996 9.16667C11.8409 9.16667 13.3333 7.67428 13.3333 5.83333C13.3333 3.99238 11.8409 2.5 9.99996 2.5C8.15901 2.5 6.66663 3.99238 6.66663 5.83333C6.66663 7.67428 8.15901 9.16667 9.99996 9.16667Z' stroke='%23120124' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A")
}

.form-email::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M3.33329 3.33301H16.6666C17.5833 3.33301 18.3333 4.08301 18.3333 4.99967V14.9997C18.3333 15.9163 17.5833 16.6663 16.6666 16.6663H3.33329C2.41663 16.6663 1.66663 15.9163 1.66663 14.9997V4.99967C1.66663 4.08301 2.41663 3.33301 3.33329 3.33301Z' stroke='%23120124' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3333 5L9.99996 10.8333L1.66663 5' stroke='%23120124' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A")
}

.form__input {
    width: 100%;
    height: 100%;
    padding: 13px 13px 13px 46px;
    border-radius: 6px;
    border: 1px solid #CBD5E1;
    outline: none;
    background: #FFF;
    transition: all 0.3s ease-in-out;
    color: #121212;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1
}

.form__input[type="tel"] {
    padding-block: 16px
}

.form__input::placeholder {
    color: rgba(18, 1, 36, .5);
    font-weight: 400
}

.form__input.valid {
    border: 1px solid #84E4A4;
    background: #E6FAED
}

.form__input.error {
    border: 1px solid #FF2633;
    background: #FFD4D6
}

.preloader {
    display: none;
    background: #fff;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 400;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: .5;
    border-radius: 30px
}

label.error {
    display: flex;
    transform-style: preserve-3d;
    position: absolute;
    z-index: 2;
    top: calc(100% + 4px);
    left: 0;
    min-width: 90%;
    border-radius: 8px;
    background: #FF2314;
    color: #FFF;
    font-size: .875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 7px 13px 7px 12px
}

label.error::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 15px;
    height: 15px;
    background: #FF2314;
    border-radius: 2px;
    transform: rotate(45deg);
    top: -8px;
    left: 11px
}

.iti {
    width: 100%
}

.iti__country-container {
    z-index: 3
}

.iti__selected-country::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 23px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #020D1B;
    right: -4px
}

.iti .iti__selected-dial-code {
    margin-left: 0;
    margin-bottom: 4px;
    color: #121212;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    color: #4B515A;
    font-size: 16px;
    line-height: 1.2
}

@media (max-width: 1023px) {
    .form-checkbox {
        font-size: 14px
    }
}

.form-checkbox input {
    display: block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 3px;
    border: 1px solid var(--Black-txt, #4B515A);
    background: #fff;
    overflow: hidden;
    appearance: none;
    cursor: pointer;
    position: relative
}

.form-checkbox input:checked::before {
    opacity: 1
}

.form-checkbox input::before {
    content: "";
    width: 80%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M.707 3.657 0 4.364l2.828 2.828.708.708.707-.708 5.656-5.656-.707-.708-5.656 5.657L.707 3.657Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.form-checkbox a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s linear
}

.form-checkbox a:hover {
    color: #DC641E
}

.intro {
    padding: 40px 0 200px
}

@media (max-width: 544px) {
    .intro {
        padding: 40px 0 377px
    }
}

.intro-inner {
    position: relative
}

.intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 860px;
    padding: 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 7px 30px 0 rgba(21, 57, 117, .15);
    backdrop-filter: blur(25px)
}

@media (max-width: 1023px) {
    .intro-wrapper {
        padding: 20px;
        gap: 20px
    }
}

.intro-text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px
}

.intro-img {
    position: absolute;
    right: -340px;
    top: -176px;
    bottom: -200px;
    z-index: -1
}

@media (max-width: 1365px) {
    .intro-img {
        top: -185px
    }
}

@media (max-width: 544px) {
    .intro-img {
        bottom: -377px;
        right: -15px;
        left: -15px;
        top: unset
    }
}

.intro-img img {
    object-fit: cover
}

@media (max-width: 544px) {
    .intro-img img {
        object-position: bottom
    }
}

.about-inner {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.about-top {
    display: grid;
    grid-template-columns:520px 1fr;
    align-items: flex-start;
    gap: 40px
}

@media (max-width: 1023px) {
    .about-top {
        grid-template-columns:1fr
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px
}

@media (max-width: 1023px) {
    .about-text {
        padding: 0
    }
}

.about-list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

@media (max-width: 1023px) {
    .about-list {
        grid-template-columns:1fr
    }
}

.about-item {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.benefits {
    padding: 80px 0;
    background: #FFF
}

@media (max-width: 1023px) {
    .benefits {
        padding: 60px 0
    }
}

.benefits-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

.benefits-inner .btn {
    margin: 0 auto
}

.benefits-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px
}

.benefits-body {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    align-items: flex-start;
    gap: 20px
}

@media (max-width: 1023px) {
    .benefits-body {
        grid-template-columns:repeat(1, 1fr)
    }
}

.benefits-picture {
    border-radius: 20px;
    overflow: hidden
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.benefits-item {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.benefits-item .text-l {
    padding-left: 34px;
    position: relative
}

.benefits-item .text-l::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='12' fill='%230060FF'/%3E%3Cpath d='M9.54276 17.7632L4.62829 12.8487C4.33224 12.5526 4.33224 12.0493 4.62829 11.7533L5.69408 10.6875C5.99013 10.3914 6.46382 10.3914 6.75987 10.6875L10.1053 14.0033L17.2105 6.89803C17.5066 6.60197 17.9803 6.60197 18.2763 6.89803L19.3421 7.96382C19.6382 8.25987 19.6382 8.76316 19.3421 9.05921L10.6382 17.7632C10.3421 18.0592 9.83882 18.0592 9.54276 17.7632Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.calculator-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
    max-width: 1030px;
    margin: 0 auto;
    border-radius: 40px;
    background: var(--White, #FFF);
    box-shadow: 0 7px 30px 0 rgba(21, 57, 117, .15);
    backdrop-filter: blur(25px)
}

@media (max-width: 1023px) {
    .calculator-inner {
        padding: 20px;
        gap: 20px
    }
}

.calculator-head {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.calculator--title {
    max-width: 100%;
    margin: 0 auto;
    color: #fff
}

.calculator--title_mob {
    display: none
}

.calculator--content {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 37px;
    background: var(--accent);
    border: 3px solid rgba(255, 255, 255, .1);
    border-radius: 30px
}

.calculator .container {
    position: relative
}

.calculator .decor {
    position: absolute;
    width: 172px;
    height: 172px;
    right: -120px;
    top: -50px;
    z-index: 2
}

.calculator--renge_wrapper {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-gap: 0;
    grid-auto-rows: auto
}

.calculator--renge_title_wrapper {
    grid-column: 1/5;
    grid-row: 1/2
}

.calculator--renge_result_wrapper {
    grid-column: 1/2;
    grid-row: 2/3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center
}

.calculator--renge_body {
    grid-column: 2/5;
    grid-row: 2/3;
    padding-left: 40px;
    box-sizing: border-box
}

.calculator--values {
    width: 66.6%
}

.calculator--result {
    width: 33%
}

.result--btn_mob {
    display: none
}

.calculator--renge_body .irs--round .irs-bar, .calculator--renge_body .irs--round .irs-line {
    height: 8px;
    top: 23px
}

.calculator--renge_body .irs--round .irs-handle {
    top: 15px
}

.calculator--renge_body .irs--round.irs-with-grid {
    height: 55px
}

.calculator--renge_body .irs--round .irs-handle {
    border: 6px solid #DC641E;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(89, 0, 0, .7)
}

.calculator--renge_body .irs--round .irs-bar {
    background-color: #DC641E;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .2)
}

.calculator--renge_body .irs--round .irs-grid-pol {
    background-color: transparent
}

.calculator--renge_body .irs--round .irs-line {
    background: #153975
}

.calculator--renge_title {
    margin-bottom: 15px
}

.calculator--renge_wrapper-padding {
    padding-bottom: 17px
}

.calculator--renge_result {
    height: 50px;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    border-radius: 35px;
    background: var(--Orange, #DC641E);
    color: #FFF;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1
}

.calculator--result_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    height: 100%;
    flex-grow: 1;
    border-radius: 20px;
    background: var(--Blue-Dark, #153975)
}

.calculator--result-sum {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1
}

.irs-grid-text {
    font-style: normal;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 17px;
    color: #ffffff !important;
    top: 15px
}

.irs-grid-text .js-grid-text-4 {
    left: 108% !important
}

.calculator_inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px
}

@media (max-width: 1250px) {
    .calculator--content {
        padding: 40px 13px
    }

    .calculator .container::before {
        transform: rotate(15.77deg);
        width: 161px;
        height: 161px;
        right: 0;
        top: -140px
    }

    .calculator_inner {
        width: 100%;
        display: flex;
        flex-direction: column
    }

    .calculator--values {
        width: 100%
    }

    .calculator--renge_wrapper-padding {
        padding-bottom: 37px
    }

    .calculator--renge_title_wrapper {
        padding-left: 55px
    }

    .calculator--result {
        width: 100%
    }
}

@media (max-width: 1023px) {
    .calculator--renge_title_wrapper {
        padding-left: 36px
    }
}

@media (max-width: 767px) {
    .calculator--content {
        padding: 40px 16px 47px
    }

    .calculator .container::before {
        width: 75px;
        height: 75px;
        right: -3px;
        top: -40px
    }

    .calculator--renge_title_wrapper {
        padding-left: 30px
    }

    .calculator--renge_wrapper {
        display: flex;
        flex-direction: column
    }

    .calculator--renge_wrapper-padding {
        padding-bottom: 33px
    }

    .calculator--renge_body {
        order: 1;
        padding: 0
    }

    .calculator--renge_title_wrapper {
        padding: 0;
        text-align: center
    }

    .calculator--renge_result {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px
    }

    .calculator--result_body {
        width: 100%
    }
}

.trust-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

.trust-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px
}

.trust-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

@media (max-width: 767px) {
    .trust-item {
        flex-direction: column
    }
}

@media (min-width: 768px) {
    .trust-item:nth-child(even) {
        flex-direction: row-reverse
    }
}

.trust-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

@media (max-width: 767px) {
    .trust-list {
        gap: 20px
    }
}

.trust-step {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.trust-list, .trust-img {
    width: calc(50% - 10px)
}

@media (max-width: 767px) {
    .trust-list, .trust-img {
        width: 100%
    }
}

.trust-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

@media (max-width: 767px) {
    .trust-bottom {
        gap: 20px
    }
}

.trust-box {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

@media (max-width: 767px) {
    .trust-box {
        grid-template-columns:repeat(1, 1fr)
    }
}

.trust-box-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    background: var(--White, #FFF);
    box-shadow: 0 7px 30px 0 rgba(21, 57, 117, .15);
    backdrop-filter: blur(25px)
}

.trust-box-icon {
    width: 40px;
    height: 40px
}

.reviews-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

@media (max-width: 1023px) {
    .reviews-inner {
        gap: 20px
    }
}

.reviews-inner .btn {
    margin: 0 auto
}

@media (max-width: 544px) {
    .reviews-inner .btn {
        width: 100%
    }
}

.reviews-carousel {
    margin-left: -340px;
    margin-right: -340px
}

@media (max-width: 1023px) {
    .reviews-carousel {
        margin-left: -15px;
        margin-right: -15px
    }
}

.reviews-slider {
    width: 100%;
    padding: 20px 0;
    margin: -20px 0
}

.reviews-slide {
    width: 788px;
    padding: 10px;
    border-radius: 40px;
    background: var(--Blue-Dark, #153975);
    box-shadow: 0 0 15px 0 #153975;
    opacity: .5;
    transition: opacity 0.2s linear
}

.reviews-slide.swiper-slide-active {
    opacity: 1
}

@media (max-width: 1023px) {
    .reviews-slide {
        width: calc(100% - 30px)
    }
}

.reviews-slide-inner {
    display: flex;
    flex-direction: column;
    padding: 25px 40px;
    border-radius: 32px;
    border: 1px solid var(--Orange, #DC641E)
}

@media (max-width: 1023px) {
    .reviews-slide-inner {
        padding: 20px
    }
}

.reviews-mark {
    width: 55px;
    height: 80px;
    margin-bottom: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='30' viewBox='0 0 40 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.308942 29.6904V20.8986C0.308942 18.4021 0.797376 15.8514 1.77424 13.2464C2.75111 10.6415 4.04004 8.18572 5.64101 5.87922C7.24199 3.57273 8.97865 1.64613 10.851 0.0994206L18.5031 4.61744C16.9835 7.00534 15.7353 9.50178 14.7585 12.1068C13.8087 14.7117 13.3339 17.6152 13.3339 20.8172V29.6904H0.308942ZM20.8639 29.6904V20.8986C20.8639 18.4021 21.3523 15.8514 22.3292 13.2464C23.3061 10.6415 24.595 8.18572 26.196 5.87922C27.7969 3.57273 29.5336 1.64613 31.4059 0.0994206L39.0581 4.61744C37.5385 7.00534 36.2903 9.50178 35.3134 12.1068C34.3637 14.7117 33.8888 17.6152 33.8888 20.8172V29.6904H20.8639Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

@media (max-width: 1023px) {
    .reviews-mark {
        margin-bottom: 0
    }
}

.reviews-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px
}

.reviews-user {
    margin-top: auto;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    gap: 20px
}

@media (max-width: 1023px) {
    .reviews-user {
        margin-left: unset
    }
}

.reviews-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.reviews-name {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: var(--White, #FFF);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1
}

.reviews-name span {
    color: var(--White, #FFF);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    opacity: .8
}

.reviews-quote {
    color: var(--White, #FFF);
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    opacity: .8
}

.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px
}

@media (max-width: 1023px) {
    .reviews-carousel-wrapper {
        margin-top: 20px
    }
}

.reviews-btn {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-size: contain
}

@media (any-hover: hover) {
    .reviews-btn:hover {
        opacity: .7
    }
}

.reviews-btn--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50' fill='none'%3E%3Cpath d='M31.25 40.625L15.625 25L31.25 9.375' stroke='%23153975' stroke-width='3.04061' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.swiper-pagination {
    position: static;
    width: fit-content !important
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 10px !important;
    background: var(--Blue-Dark, #153975) !important;
    opacity: 0.5 !important
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2)
}

.reviews-btn--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50' fill='none'%3E%3Cpath d='M18.75 9.375L34.375 25L18.75 40.625' stroke='%23153975' stroke-width='3.04061' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.start-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.start-top {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.start-list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1
}

@media (max-width: 1023px) {
    .start-list {
        gap: 50px;
        grid-template-columns:repeat(1, 1fr)
    }
}

.start-list::before {
    content: "";
    height: 2px;
    background: var(--Orange, linear-gradient(90deg, rgba(220, 100, 30, 0) 0%, #DC641E 49.99%, rgba(220, 100, 30, 0) 100%));
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: -1
}

@media (max-width: 1023px) {
    .start-list::before {
        display: none
    }
}

.start-item {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.start-head {
    color: #DC641E;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    padding-bottom: 36px;
    position: relative
}

@media (max-width: 1023px) {
    .start-head {
        padding-bottom: 25px;
        font-size: 24px;
        position: relative
    }

    .start-head::after {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--Orange, linear-gradient(90deg, rgba(220, 100, 30, 0) 0%, #DC641E 49.99%, rgba(220, 100, 30, 0) 100%));
        position: absolute;
        left: 50%;
        bottom: -6px;
        transform: translateX(-50%)
    }
}

.start-head::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #DC641E;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%)
}

.start-picture {
    height: 217px
}

.start-picture img {
    object-position: bottom
}

.start-body {
    display: flex;
    flex-direction: column;
    gap: 20px
}

@media (max-width: 1023px) {
    .start-body {
        gap: 15px
    }
}

.start-name {
    text-transform: uppercase
}

.faq-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px
}

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 40px;
    overflow: hidden
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 50px;
    background-color: #DC641E;
    transition: background-color 0.2s linear;
    position: relative
}

@media (max-width: 1365px) {
    .faq-item {
        padding: 30px 15px;
        gap: 15px
    }
}

.faq-item.active {
    background-color: #153975
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.faq-number {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    flex-shrink: 0
}

@media (max-width: 1023px) {
    .faq-number {
        font-size: 28px
    }
}

.faq-content {
    flex-grow: 1
}

.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: opacity 0.2s linear
}

@media (max-width: 1365px) {
    .faq-head {
        gap: 5px
    }
}

@media (any-hover: hover) {
    .faq-head:hover {
        opacity: .5
    }
}

.faq-question {
    color: var(--White, #FFF);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1
}

@media (max-width: 1023px) {
    .faq-question {
        font-size: 22px
    }
}

.faq-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 17px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    transition: transform 0.2s linear
}

.faq-body {
    margin-top: 20px;
    display: none
}

@media (max-width: 1365px) {
    .faq-body {
        margin-top: 15px
    }
}

.register {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.register-bottom {
    padding: 80px 0;
    background-size: cover;
    background-position: right
}

@media (max-width: 1023px) {
    .register-bottom .form {
        margin: 0 auto
    }
}

.modal {
    width: 100%;
    height: 100%;
    background: rgba(1, 7, 18, .8);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.modal::-webkit-scrollbar {
    display: none
}

.modal.active {
    opacity: 1;
    visibility: visible
}

.modal-inner {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 10px
}

.modal-wrapper {
    height: auto;
    width: fit-content;
    margin: auto
}

.modal-wrapper .form {
    margin: 40px 0;
    padding: 60px 40px 40px
}

@media (max-width: 544px) {
    .modal-wrapper .form {
        padding: 50px 20px 20px
    }
}

.modal-wrapper .form .modal-close {
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='44' height='40' viewBox='0 0 44 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='40' rx='10' fill='white' fill-opacity='0.15'/%3E%3Cpath d='M14 28.0001L30.9706 11.0296' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M14 11.0002L30.9706 27.9707' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    transition: 0.2s linear
}

.modal-wrapper .form .modal-close:hover {
    opacity: .5
}

.footer {
    padding: 80px 0;
    margin-top: auto;
    background: #FFF
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.footer__logo {
    display: block;
    width: 236px;
    height: 59px
}

.footer__description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: rgba(75, 81, 90, .4);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2
}

.footer__menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%
}

.footer__menu a {
    color: rgba(75, 81, 90, .5);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s linear
}

.footer__menu a:hover {
    color: #4B515A
}

.intgrtn-btn-submit{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 16px 40px;
    border-radius: 50px;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    background-color: #DC641E;
    line-height: 1.1;
    text-transform: uppercase;
    transition: background-color 0.2s linear;
    position: relative;
    z-index: 1;
}