@import url(https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap);

@keyframes spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes c-button_effect_filter {
    0% {
        filter: grayscale(0);
        color: currentColor
    }

    to {
        filter: grayscale(1);
        color: transparent
    }
}

@keyframes c-button_effect_inner-opacity {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes c-button_effect_spinner-opacity {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes c-button_effect_spinner-rotation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

table {
    margin: 1rem 0;
    padding: 1rem 0;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    border-collapse: collapse
}

table td {
    border: 1px solid #ebebeb;
    padding: 1rem
}

#bg-loader {
    position: fixed;
    z-index: 100;
    top: .5rem;
    right: .5rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    min-height: 4rem;
    background: rgba(0, 0, 0, .625);
    border-radius: .25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
    font-weight: 600;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem)
}

#bg-loader:before {
    content: "";
    min-width: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 1rem;
    border-radius: 1.25rem;
    border: .125rem solid #fff;
    border-top-color: transparent;
    animation: spinner 1s infinite linear
}

#bg-loader:not(.is-active) {
    opacity: 0;
    visibility: hidden
}

.c-button_effect_spinner {
    filter: grayscale(1);
    color: transparent !important;
    animation: c-button_effect_filter 2s
}

.c-button_effect_spinner div,
.c-button_effect_spinner i,
.c-button_effect_spinner span,
.c-button_effect_spinner svg {
    opacity: 0;
    animation: c-button_effect_inner-opacity 3s
}

.c-button_effect_spinner:before {
    content: "";
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto;
    z-index: 1;
    width: 1.25rem !important;
    height: 1.25rem !important;
    background: 0 0 !important;
    border-radius: 1.25rem !important;
    border: .125rem solid #000 !important;
    border-top-color: transparent !important;
    box-shadow: none;
    opacity: 1 !important;
    animation: c-button_effect_spinner-rotation 1s infinite linear, c-button_effect_spinner-opacity 3s
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: #fafcff
}

body {
    padding: 0
}

a {
    color: #011d50;
    text-decoration: none
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0
}

.anchor-link {
    visibility: hidden;
    position: absolute;
    top: -4rem
}

.button,
html {
    font-family: 'Lato', sans-serif
}

.button {
    border: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    border-radius: 0;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    background: #f03;
    cursor: pointer;
    transition: all .25s ease-in-out;
    outline: 0;
    white-space: nowrap;
    z-index: 2;
    position: relative
}

.button:hover {
    background: #ed002d
}

.button:hover .button__icon {
    transform: translate(.125rem, 0)
}

.button:focus {
    background: #ed002d
}

.button:active {
    background: #e00025
}

.button.button_size_xs {
    height: 2.5rem;
    font-size: 1rem;
    padding: 0 calc(3rem + 2.5rem) 0 3rem
}

.button.button_size_xs .button__icon-box {
    width: 2.5rem
}

.button.button_size_sm {
    height: 3rem;
    font-size: 1rem;
    padding: 0 calc(2.25rem + 3rem) 0 2.25rem
}

.button.button_size_sm .button__icon-box {
    width: 3rem
}

.button.button_bg_custom {
    background: #f96b74;
    color: #011d50
}

.button.button_bg_custom:hover {
    background: #ff3f50
}

.button.button_bg_custom:focus {
    background: #ff3f50
}

.button.button_bg_custom:active {
    background: #ff1a32
}

.button__icon-box {
    background: rgba(0, 0, 0, .1);
    height: 100%;
    width: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0
}

.button__icon {
    transition: all .25s ease-in-out;
    flex-shrink: 0;
    transform: translate(-.0625rem, 0)
}

.container {
    max-width: 96rem;
    min-width: 0;
    margin: 0 auto;
    width: 100%;
    padding: 0 3rem;
    grid-gap: 1.25rem
}

.field-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid rgba(52, 74, 115, .4);
    background: #fff;
    height: 4rem;
    padding: 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: all .25s ease-in-out
}

.field-box label {
    font-size: .6875rem;
    line-height: .5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #0500c7;
    text-transform: uppercase;
    position: absolute;
    top: .75rem;
    left: 1rem
}

.field-box i {
    position: absolute;
    right: .75rem;
    z-index: 1
}

.field-box input,
.field-box select,
.field-box.field-box_textarea textarea {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 1.375rem 1rem .25rem;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #344a73;
    outline-color: #0500c7
}

.field-box input::placeholder,
.field-box select::placeholder,
.field-box.field-box_textarea textarea::placeholder {
    color: #99a5b9;
    opacity: 1
}

.field-box input:-ms-input-placeholder,
.field-box select:-ms-input-placeholder,
.field-box.field-box_textarea textarea:-ms-input-placeholder {
    color: #99a5b9
}

.field-box input::-ms-input-placeholder,
.field-box select::-ms-input-placeholder,
.field-box.field-box_textarea textarea::-ms-input-placeholder {
    color: #99a5b9
}

.field-box input:disabled {
    background-color: #dcdcdc;
    cursor: not-allowed
}

.field-box input,
.field-box select {
    box-sizing: border-box
}

.field-box select {
    -webkit-appearance: none;
    appearance: none;
    background: 0 0;
    z-index: 2
}

.field-box.field-box_textarea,
.field-box.field-box_textarea.is-error {
    height: -moz-fit-content;
    height: fit-content
}

.field-box.field-box_textarea textarea,
.field-box.field-box_textarea.is-error textarea {
    min-height: 8rem;
    max-height: 16rem;
    max-width: 100%;
    min-width: 100%
}

.field-box:hover {
    border: 1px solid rgba(1, 86, 238, .6)
}

.field-box.is-error {
    height: 6rem
}

.field-box .is-error {
    font-family: 'Lato', sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 400;
    font-style: normal;
    color: #fe4a49;
    width: 100%;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    padding: .2rem 1rem
}

.icon-content-box {
    display: grid;
    grid-template-columns: auto auto;
    padding: 0
}

.icon-content-box__icon-box {
    padding: 2rem;
    height: 100%;
    background: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .05)
}

.icon-content-box__icon-box i {
    width: 3.75rem;
    height: 3.75rem
}

.icon-content-box__text-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 1.25rem 2rem
}

.icon-content-box__title {
    font-size: 1.675rem;
    line-height: 2.5rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #011d50;
    margin-bottom: .15rem;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    position: relative
}

.icon-content-box__title:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - .125rem);
    left: calc(100% + .675rem);
    width: 2rem;
    height: .125rem;
    background: #0156ee
}

.icon-content-box__text {
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #344a73
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: "strong";
    width: 36px;
    height: 36px
}

.icon svg {
    stroke-width: 1.5px;
    shape-rendering: geometricprecision
}

.img-block {
    position: relative;
    width: 100%
}

.icon svg,
.img-block__layer-main {
    width: 100%
}

.img-block__layer-main img {
    display: block;
    width: 100%
}

.icon svg,
.img-block.image-block_height_100 {
    height: 100%
}

.img-block.image-block_height_100 .img-block__layer-main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.img-block.image-block_height_100 .img-block__layer-main img {
    width: auto;
    min-height: 100%
}

.label,
.rating-stars {
    display: flex;
    align-items: center
}

.label {
    justify-content: flex-start
}

.label .label__icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    background: rgba(1, 86, 238, .1);
    border-radius: .25rem;
    margin-right: .75rem
}

.label .label__icon svg {
    width: 2.25rem;
    height: 2.25rem
}

.label .label__text {
    font-size: .9375rem;
    line-height: 1.25rem;
    font-weight: 900;
    color: #0156ee;
    letter-spacing: .0625rem;
    text-transform: uppercase
}

.rating-stars {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%
}

.label .label__text,
.rating-stars__value {
    font-family: 'Lato', sans-serif;
    font-style: normal
}

.rating-stars__value {
    font-size: 5.375rem;
    line-height: 5rem;
    font-weight: 400;
    color: #011d50;
    margin-right: 1.25rem
}

.rating-stars__stars-box {
    display: flex;
    margin-top: .5625rem;
    margin-bottom: .75rem
}

.rating-stars__star-box {
    width: 2rem;
    height: 2rem;
    background: #0156ee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    margin-right: .375rem
}

.rating-stars__star {
    width: calc(100% - .5rem)
}

.rating-stars__value-label,
.table-box__table tr {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal
}

.rating-stars__value-label {
    font-size: 1.25rem;
    line-height: 1.125rem;
    color: #344a73;
    opacity: .85;
    white-space: nowrap
}

.table-box__overflow {
    border-radius: .25rem;
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
    border-bottom: .25rem solid #9dadf7;
    border-top: .25rem solid #9dadf7
}

.table-box__table {
    width: 100%;
    border-collapse: collapse
}

.table-box__table tr {
    font-size: 1.35rem;
    line-height: 1.5rem;
    color: #011d50;
    height: 3.75rem
}

.table-box__table tr:nth-child(odd) {
    background: #fff
}

.table-box__table tr:nth-child(even) {
    background: rgba(255, 255, 255, .5)
}

.table-box__table tr td,
.table-box__table tr th {
    padding: 1rem 2rem;
    text-align: left
}

.table-box__table tr th {
    font-weight: 700
}

.table-box.table-box_align-center .table-box__overflow .table-box__table tr td,
.table-box.table-box_align-center .table-box__overflow .table-box__table tr th {
    text-align: center
}

.text-block,
.text-block h5,
.text-block p {
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #344a73
}

.text-block h5 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 700;
    color: #011d50;
    margin-bottom: 1rem
}

.title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem
}

.title-wrap__title {
    font-size: 3.25rem;
    line-height: 4rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #011d50;
    text-align: center;
    margin-bottom: .375rem;
    position: relative
}

.title-wrap__title:after,
.title-wrap__title:before {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - .25rem);
    width: 4rem;
    height: .1875rem;
    background: #0156ee
}

.title-wrap__title:before {
    left: -5rem
}

.title-wrap__title:after {
    right: -5rem
}

.title-wrap__sub-title {
    font-size: .875rem;
    line-height: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #f03;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .24rem;
    margin-bottom: .5rem
}

.title-wrap_alight_left {
    align-items: flex-start
}

.title-wrap_alight_left .title-wrap__title:before {
    display: none
}

.accordion .accordion__item {
    height: 5rem;
    padding: 1.5rem 4rem;
    background: #fff;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    list-style: none;
    border-radius: .5rem;
    transition: all .25s ease-in-out;
    margin-bottom: 2rem;
    position: relative
}

.accordion .accordion__item:hover {
    cursor: pointer;
    background: #fdfeff
}

.accordion .accordion__item:last-child,
.section_text-content .section__text-box ul li:last-child,
footer .footer__disclaimer p:last-child {
    margin-bottom: 0
}

.accordion .accordion__item.is-opened {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
}

.accordion .accordion__item.is-opened .accordion__item-body {
    opacity: 1
}

.accordion .accordion__item.is-opened .accordion__icon-animated:before {
    transform: rotate(0deg)
}

.accordion .accordion__item-body {
    opacity: 0;
    transition: all .25s ease-in-out
}

.accordion .accordion__item-content {
    margin-top: -1rem;
    padding-bottom: .5rem
}

.accordion .accordion__item-content table {
    width: 50%;
    text-align: center;
    border-collapse: collapse
}

.accordion .accordion__item-content table td {
    border: 1px solid #ebebeb
}

.accordion .accordion__icon-animated {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(135deg, #fe969c 0, #ff1a32 100%);
    border-radius: 1.5rem;
    width: 1.625rem;
    height: 1.625rem
}

.accordion .accordion__icon-animated:after,
.accordion .accordion__icon-animated:before {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - .0625rem);
    left: calc(50% - .4rem);
    width: .8rem;
    height: .125rem;
    border-radius: .125rem;
    background: #fff;
    transition: all .25s ease-in-out
}

.accordion .accordion__icon-animated:before {
    transform: rotate(-90deg)
}

.accordion .accordion__item-header-title {
    font-size: 1.625rem;
    line-height: 1.75rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #011d50;
    transition: all .25s ease-in-out;
    height: 80px;
    display: flex;
    align-items: center;
    margin-top: -1.5rem;
    position: relative
}

.contact__form {
    margin-top: 2rem;
    width: 100%;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    position: relative
}

.contact__form:after,
.contact__form:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: .0675rem;
    background: #fe969c
}

.contact__form:after {
    top: 0
}

.contact__form:before {
    bottom: 0
}

.contact__form .field-box {
    margin-bottom: 1rem
}

.contact__form .contact__form-button,
.form {
    width: 25rem;
    height: 30rem;
}

.form {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    grid-gap: 1rem;
    position: relative;
    background: #fff;
    border-radius: 0;
    max-width: 30rem;
    padding: 3rem
}

.form__label-pointer,
.form__label-pointer:after {
    display: block;
    position: absolute;
    background: #0156ee
}

.form__label-pointer {
    top: -.875rem;
    left: 2rem;
    padding: .25rem 1.25rem .375rem;
    font-size: 1rem;
    line-height: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #fff;
    text-align: center;
    border-radius: .25rem;
    z-index: 4
}

.form__label-pointer:after {
    content: '';
    bottom: 0;
    left: 50%;
    width: .75rem;
    height: .75rem;
    transform: translate(-50%, 50%) rotate(45deg)
}

.form__inner {
    transform: scale(1.125)
}

.unsubscribe__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    margin-top: 2rem
}

.unsubscribe__form {
    width: 100%;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    position: relative;
    height: -moz-fit-content;
    height: fit-content
}

.unsubscribe__form:after,
.unsubscribe__form:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: .0675rem;
    background: #fe969c
}

.unsubscribe__form:after {
    top: 0
}

.unsubscribe__form:before {
    bottom: 0
}

.unsubscribe__form .field-box {
    margin-bottom: 1rem
}

.unsubscribe__form .unsubscribe__form-button {
    width: 100%
}

.section_first {
    overflow: hidden
}

.section_first.section {
    padding-top: 0
}

.section_first .section__container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    justify-content: flex-start;
    position: relative
}

.section_first .section__content-wrap {
    grid-area: 1/1/2/13;
    max-width: 36rem;
    min-width: 1rem;
    display: grid;
    grid-gap: initial;
    z-index: 2
}

.section_first .section__image-wrap {
    grid-area: 1/5/3/13;
    min-width: 1rem;
    position: relative;
    height: 100%;
    width: 100%
}

.section_first .section__image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(#f3d6d2, #eec5bf)
}

.section_first .section__form-wrap {
    grid-area: 2/1/3/5;
    margin: auto auto 0 0;
    z-index: 5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1)
}

.section_first .section__labels-wrap {
    grid-area: 3/1/4/13;
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    padding: 2.5rem 2.5rem 0
}

.section_first .section__label {
    margin-right: 3.25rem
}

.section_first .section__label:last-child {
    margin-right: 0
}

.section_first .section__label-text {
    grid-row: 1/2;
    grid-column: 1/7;
    font-size: .9375rem;
    line-height: 1.25rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #f03;
    text-transform: uppercase;
    height: min-content;
    margin-bottom: 3rem;
    position: relative
}

.section_first .section__label-text:after {
    content: '';
    display: block;
    position: absolute;
    top: -.375rem;
    left: -1rem;
    width: 3.75rem;
    height: calc(100% + .75rem);
    background: #f03;
    opacity: .1
}

.section_first .section__title {
    font-size: 4rem;
    line-height: 4.25rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #011d50;
    margin: 1rem 0;
    position: relative
}

.section_first .section__title span {
    color: #f03
}


.section_first .section__intro {
    grid-row: 3/4;
    grid-column: 1/6;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(1, 29, 80, .8);
    height: min-content;
    display: block;
    padding-left: 2rem;
    position: relative;
    margin-top: 1rem
}

.section_first .section__intro:after {
    content: '';
    display: block;
    position: absolute;
    top: .625rem;
    left: 0;
    width: .0675rem;
    height: calc(100% - 1.125rem);
    border-radius: 1px;
    background: #f03
}

.section_first_inner .section__image-wrap img {
    max-height: 480px;
    min-height: 100%
}

.section_first_inner .section__title {
    margin-bottom: 0;
    grid-column: 1/6;
    font-size: 5rem;
    line-height: 6rem
}

.section_first_inner .section__title:after {
    top: 2.675rem
}

.section_navbar {
    background: #fff;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    z-index: 10
}

.section_navbar.section {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.section_navbar .section__container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section_navbar .section__logo-box {
    display: flex;
    align-items: center
}

.section_navbar .section__btn-box a:focus,
.section_navbar .section__logo-box:focus {
    outline: 0
}

.section_navbar .section__logo-symbol {
    margin-right: .5rem;
    padding: 0
}

.section_navbar .section__logo-symbol svg,
footer .footer__logo-symbol svg {
    display: block
}

.section_navbar .section__logo-text,
.section_navbar .section__nav-box .section__nav-list li a {
    font-size: 1.625rem;
    line-height: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #011d50
}

.section_navbar .section__nav-box {
    display: flex;
    align-items: center
}

.section_navbar .section__nav-box .section__nav-list {
    display: flex;
    padding: 0;
    margin-right: 2rem
}

.section_navbar .section__nav-box .section__nav-list li {
    list-style: none
}

.section_navbar .section__nav-box .section__nav-list li a {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #344a73;
    text-transform: uppercase;
    padding: 0 2rem;
    border-radius: 0;
    white-space: nowrap;
    height: 2.5rem;
    transition: all .25s ease-in-out
}

.section_navbar .section__nav-box .section__nav-list li a:hover {
    background: rgba(255, 63, 80, .15);
    color: #011d50
}

.section_navbar .section__nav-box .section__nav-list li a:focus {
    background: rgba(249, 107, 116, .3);
    outline: 0;
    color: #011d50
}

.section,
footer {
    position: relative
}

.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

.section.section_background_color {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    background: #f4f5fe
}

.section_advantages.section_background_color,
.section_cta {
    background-position: right 0 center;
    background-repeat: no-repeat;
    background-size: auto 100%
}

.section_advantages.section_background_color.section {
    padding-top: 6.5rem
}

.section_advantages .section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.section_advantages .section__bg img,
.section_cta .section__bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section_advantages .section__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto)
}

.section_advantages .section__title-wrap {
    grid-column: 1/-1
}

.section_advantages .section__boxes-wrap {
    grid-column: 1/-2;
    display: grid;
    grid-gap: inherit;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto)
}

.section_advantages .section__icon-content-box {
    width: 100%;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    position: relative;
    overflow: hidden
}

.section_advantages .section__icon-content-box:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: .125rem;
    height: 100%;
    background: #f96b74
}

.section_cta {
    background-size: cover;
    background-position: center center;
    margin-bottom: 3.5rem
}

.section_cta .section__bg,
footer:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.section_cta .section__bg {
    height: 100%
}

.section_cta .section__container {
    display: grid;
    justify-content: end;
    position: relative;
    grid-template-columns: repeat(12, 1fr)
}

.section_cta .section__content-wrap {
    grid-column: 4/-4;
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center
}

.section_cta .section__text {
    font-size: 1.35rem;
    line-height: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-shadow: .125rem .125rem .25rem rgba(0, 0, 0, .4);
    text-align: center;
    margin-bottom: 2rem
}

.section_cta .section__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

footer {
    background: #f4f5fe;
    padding-top: .75rem;
    margin-top: 3.5rem
}

footer:after {
    content: '';
    display: block;
    height: .75rem;
    background: #4971f2
}

footer .footer__line {
    width: 100%;
    height: .0625rem;
    background: rgba(5, 0, 199, .25)
}

footer .footer__first-line {
    padding: 3.5rem 0;
    width: 100%;
    display: grid;
    grid-template-columns: 2.5fr 9.5fr;
    align-items: center
}

footer .footer__logo-box {
    display: flex;
    align-items: center
}

footer .footer__logo-box:focus {
    outline: 0
}

footer .footer__logo-symbol {
    margin-right: .5rem;
    padding: 0
}

footer .footer__logo-text,
footer .footer__nav-box ul li {
    line-height: 2rem;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    color: #011d50
}

footer .footer__logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase
}

footer .footer__nav-box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0
}

footer .footer__nav-box ul li {
    font-size: 1rem;
    font-weight: 400;
    list-style: none;
    padding: 0 1rem 0 3rem;
    white-space: nowrap;
    position: relative
}

footer .footer__nav-box ul li:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 2.125rem;
    width: .375rem;
    height: .375rem;
    background: #ff1a32;
    border-radius: .25rem;
    opacity: .75
}

footer .footer__disclaimer {
    padding: 3.5rem 0
}

footer .footer__disclaimer p,
footer .footer__last-line .footer__text {
    font-size: .875rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #011d50
}

footer .footer__disclaimer p {
    line-height: 1.75rem;
    margin-bottom: 1rem
}

footer .footer__last-line {
    padding: 3.5rem 0;
    display: flex;
    justify-content: space-between
}

footer .footer__last-line .footer__text {
    line-height: 1rem
}

footer .footer__last-line .footer__text .title {
    font-weight: 600;
    color: #004de2
}

footer .footer__contact-box {
    display: flex
}

footer .footer__contact-box .footer__contact {
    margin-right: 2rem
}

footer a {
    position: relative;
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(5, 0, 199, .2);
    text-decoration-color: rgba(5, 0, 199, .2);
    transition: all .25s ease-in-out
}

footer a:hover {
    -webkit-text-decoration-color: #0500c7;
    text-decoration-color: #0500c7
}

.section_questions {
    overflow: hidden
}

.section_questions .section__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto
}

.section_questions .section__title-wrap {
    grid-column: 1/-1
}

.section_questions .section__accordion {
    grid-column: 3/-3
}

.section_rate.section_background_color {
    margin-bottom: 0
}

.section_rate .section__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto
}

.section_rate .section__apr-table-wrap,
.section_rate .section__examples-table-wrap {
    overflow: hidden
}

.section_reviews .section__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center
}

.section_reviews .section__title-wrap {
    grid-column: 1/-1
}

.section_reviews .section__wrapper {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1)
}

.section_reviews .section__text-wrap {
    grid-column: 1/2;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    align-content: center;
    padding: 2rem 6rem;
    min-width: 1rem
}

.section_reviews .section__rating-stars {
    margin-bottom: .5rem
}

.section_reviews .section__image-wrap {
    grid-column: 2/3;
    min-width: 1rem;
    overflow: hidden
}

.section_reviews .section__text-block {
    margin-bottom: 2rem
}

.section_reviews .section__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.section_steps .section__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto
}

.section_steps .section__title-wrap {
    grid-column: 1/-1
}

.section_steps .section__box {
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1);
    padding: 3.75rem 3.25rem 3rem;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative
}

.section_steps .section__box:after,
.section_steps .section__box:before {
    content: '';
    display: block;
    position: absolute;
    left: 3.25rem;
    width: calc(100% - 3.25rem*2);
    height: .0675rem;
    background: #ff3f50
}

.section_steps .section__box:before {
    top: 0
}

.section_steps .section__box:after {
    bottom: 0
}

.section_steps .section__header-box {
    display: flex;
    align-items: flex-end;
    margin-bottom: .875rem
}

.section_steps .section__title,
.section_steps .section__title span,
.section_text-content .section__text-box h2 {
    font-size: 1.75rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-style: normal;
    color: #011d50
}

.section_steps .section__title {
    line-height: 2rem;
    font-weight: 700;
    white-space: nowrap
}

.section_steps .section__title span {
    font-size: 3.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: #ff1a32;
    margin-right: .5rem
}

.section_steps .section__text {
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #344a73
}

.section_text-content.section {
    padding-top: 4rem;
    padding-bottom: 2rem
}

.section_text-content .section__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    justify-content: center
}

.section_text-content .section__text-box {
    grid-column: 4/10
}

.section_text-content .section__text-box h3,
.section_text-content .section__text-box p,
.section_text-content .section__text-box ul {
    font-size: 1.125rem;
    line-height: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #011d50;
    margin-bottom: 1rem
}

.section_text-content .section__text-box ul {
    padding-left: 1em
}

.section_text-content .section__text-box ul li {
    list-style: none;
    margin-bottom: .375rem
}

.section_text-content .section__text-box ul li:before {
    content: "\2022";
    color: #ff1a32;
    font-weight: 700;
    display: inline-block;
    width: 1.2rem;
    margin-left: -1rem;
    font-size: 1.25rem
}

.section_text-content .section__text-box h2 {
    line-height: 2.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
    margin-top: 2.5rem
}

.section_text-content .section__text-box h2.page-title {
    font-size: 2.125rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.section_text-content .section__text-box h3 {
    font-size: 1.5rem;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.section_text-content .section__text-box :first-child {
    margin-top: 0
}

.section_text-content .section__text-box :last-child {
    margin-bottom: 0
}

.section_why .section__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center
}

.section_why .section__title-wrap {
    grid-column: 1/-1
}

.section_why .section__wrapper {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 0 60px 0 rgba(0, 24, 68, .1)
}

.section_why .section__image-wrap {
    grid-column: 1/2;
    min-width: 1rem;
    overflow: hidden
}

.section_why .section__text-wrap {
    grid-column: 2/3;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    align-content: center;
    padding: 2rem 6rem
}

.section_why .section__text-block {
    margin-bottom: 1.75rem
}

.section_why .section__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.md-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-height: 90vh;
    max-width: 768px;
    min-width: 320px;
    z-index: 2000;
    visibility: hidden;
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    border-radius: .5rem
}

.md-modal:target {
    visibility: visible
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(38, 42, 60, .749);
    transition: all .25s ease-in-out
}

.md-modal:target~.md-overlay {
    opacity: 1;
    visibility: visible
}

.md-content {
    color: #000;
    background: #fff;
    position: relative;
    margin: 0 auto;
    border-top: 1px solid #e2eefb;
    padding: .5rem 1rem 1rem;
    height: 85vh;
    overflow: scroll;
    border-radius: 0 0 .5rem .5rem
}

.md-top {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    padding: 1rem 1rem .5rem;
    align-items: center
}

.md-top #title {
    color: #000;
    text-align: center
}

.md-content h2,
.md-content h3,
.md-content h4 {
    padding: .5em 0;
    font-weight: 700
}

.md-content>div {
    padding: 1rem 0
}

.md-content p {
    padding: .5rem 0
}

.md-content ul {
    margin: 0;
    padding: 0 0 30px 20px
}

.md-content>div ul li {
    padding: 5px 0
}

.md-close,
.md-content a {
    color: #004cff
}

.md-close {
    display: block;
    text-align: end;
    text-decoration: none;
    font-size: 2.5rem
}

@media screen and (max-width:91rem) and (min-width:1.1rem) {
    .section_navbar.section {
        padding-top: .75rem;
        padding-bottom: .75rem
    }

    .section_steps .section__title {
        font-size: 1.5rem;
        line-height: 1.75rem
    }

    .section_steps .section__title span {
        font-size: 2.75rem;
        line-height: 1.75rem;
        margin-right: .25rem
    }
}

@media screen and (max-width:86rem) and (min-width:1.16rem) {
    .rating-stars__value {
        font-size: 4rem;
        line-height: 4rem;
        margin-right: .75rem
    }

    .rating-stars__stars-box {
        margin-top: .125rem;
        margin-bottom: .5rem
    }

    .rating-stars__star-box {
        width: 1.5rem;
        height: 1.5rem
    }

    .rating-stars__value-label {
        font-size: 1.125rem
    }

    .section_advantages.section_background_color {
        background-position: right -10rem center
    }
}

@media screen and (max-width:81rem) and (min-width:1.23rem) {
    .button.button_size_xs {
        height: 2.25rem;
        padding: 0 calc(1.5rem + 2.25rem) 0 1.5rem
    }

    .button.button_size_xs .button__icon-box {
        width: 2.25rem
    }

    .button.button_size_sm i,
    .button.button_size_sm i svg,
    .button.button_size_xs i,
    .button.button_size_xs i svg {
        width: 2rem;
        height: 2rem
    }

    .button.button_size_sm {
        height: 2.75rem;
        font-size: 1rem;
        padding: 0 calc(2rem + 2.75rem) 0 2rem
    }

    .button.button_size_sm .button__icon-box {
        width: 2.75rem
    }

    .label {
        padding: 0 1rem
    }

    .label .label__icon {
        width: 3.25rem;
        height: 3.25rem;
        margin-right: .75rem
    }

    .label .label__text {
        font-size: 1rem;
        line-height: 1.25rem;
        width: min-content
    }

    .table-box__overflow .table-box__table tr {
        font-size: 1.125rem;
        height: 2rem
    }

    .table-box__overflow .table-box__table tr td,
    .table-box__overflow .table-box__table tr th {
        padding: .75rem 1.25rem
    }

    .text-block,
    .text-block p {
        font-size: 1rem;
        line-height: 1.75rem
    }

    .text-block h5 {
        font-size: 1.375rem;
        line-height: 1.875rem;
        margin-bottom: .5rem
    }

    .accordion .accordion__item-header-title {
        font-size: 1.375rem;
        line-height: 1.375rem
    }

    .section_navbar .section__nav-box .section__nav-list li a {
        height: 2.25rem
    }

    .section {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .section.section_background_color {
        margin-top: 3rem;
        margin-bottom: 3rem;
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .section_advantages.section_background_color {
        background-position: right -18rem center
    }

    .section_advantages .section__container {
        grid-template-columns: repeat(2, 1fr)
    }

    .section_advantages .section__boxes-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, auto)
    }

    .section_cta {
        margin-bottom: 3rem
    }

    .section_cta .section__text {
        font-size: 1.125rem;
        line-height: 2rem;
        margin-bottom: 1.5rem
    }

    footer {
        margin-top: 4rem
    }

    footer .footer__first-line {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    footer .footer__logo-box {
        display: flex;
        justify-content: center;
        margin-bottom: 4rem
    }

    footer .footer__nav-box ul li {
        padding: 0 3rem 0 1rem
    }

    footer .footer__nav-box ul li:after {
        left: 0
    }

    .section_rate.section_background_color {
        margin-bottom: 0
    }

    .section_reviews .section__rating-stars {
        margin-bottom: .25rem
    }

    .section_reviews .section__text-block {
        margin-bottom: 1.25rem
    }

    .section_steps .section__title {
        white-space: normal
    }

    .section_steps .section__title span {
        font-size: 2.5rem;
        margin-right: 0
    }

    .section_text-content .section__text-box {
        grid-column: 3/11
    }

    .section_why .section__text-block {
        margin-bottom: 1.25rem
    }
}

@media screen and (max-width:65rem) and (min-width:1.54rem) {
    .button {
        padding: 0 2.5rem
    }

    .label {
        padding: 0 1rem
    }

    .label .label__icon {
        width: 2.75rem;
        height: 2.75rem
    }

    .label .label__text {
        font-size: .875rem;
        line-height: 1.125rem
    }

    .rating-stars__value {
        font-size: 3.5rem;
        line-height: 3.5rem;
        margin-right: .5rem
    }

    .rating-stars__stars-box {
        margin-top: .375rem;
        margin-bottom: .25rem
    }

    .rating-stars__star-box {
        margin-right: .25rem
    }

    .rating-stars__value-label {
        font-size: .875rem
    }

    .section_navbar .section__logo-symbol {
        margin-right: .375rem
    }

    .section_navbar .section__logo-symbol svg {
        max-height: 2.25rem;
        width: auto
    }

    .section_navbar .section__logo-text {
        font-size: 1.5rem
    }

    .section_navbar .section__nav-box .section__nav-list {
        margin-right: 1.5rem
    }

    .section_navbar .section__nav-box .section__nav-list li a {
        padding: 0 1.5rem
    }

    .section_cta .section__content-wrap {
        grid-column: 2/-2
    }

    .section_reviews .section__text-wrap {
        padding: 4rem
    }

    .section_steps .section__box {
        padding: 2.75rem 2.25rem 2rem
    }

    .section_steps .section__box:after,
    .section_steps .section__box:before {
        left: 2.25rem;
        width: calc(100% - 2.25rem*2)
    }

    .section_why .section__text-wrap {
        padding: 4rem
    }
}

@media screen and (max-width:57rem) and (min-width:1.75rem) {
    .button.button_size_xs {
        font-size: .675rem
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .field-box input,
    .field-box select,
    .field-box.field-box_textarea textarea {
        font-size: 1.125rem
    }

    .field-box i {
        right: .25rem;
        transform: scale(.75)
    }

    .label {
        padding: 0 .75rem;
        border-radius: .5rem
    }

    .label .label__icon {
        width: 2.5rem;
        height: 2.5rem
    }

    .label .label__text {
        font-size: .75rem;
        line-height: 1rem
    }

    .table-box__overflow .table-box__table tr {
        font-size: 1rem;
        line-height: 1.25;
        height: 1.75rem
    }

    .table-box__overflow .table-box__table tr td,
    .table-box__overflow .table-box__table tr th {
        padding: .5rem 1rem;
        white-space: nowrap
    }

    .title-wrap {
        margin-bottom: .75rem
    }

    .title-wrap__title {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: .25rem
    }

    .title-wrap__title:after,
    .title-wrap__title:before {
        top: calc(50% - .125rem);
        width: 2.5rem;
        height: .125rem
    }

    .title-wrap__title:before {
        left: -3.25rem
    }

    .title-wrap__title:after {
        right: -3.25rem
    }

    .title-wrap__sub-title {
        margin-bottom: .375rem;
        font-size: .75rem
    }

    .accordion .accordion__item {
        padding-right: 3rem;
        padding-left: 3rem;
        margin-bottom: 1.25rem
    }

    .accordion .accordion__item-header-title {
        font-size: 1.25rem;
        line-height: 1.25rem
    }

    .accordion .accordion__icon-animated {
        width: 1.375rem;
        height: 1.375rem
    }

    .accordion .accordion__icon-animated:after,
    .accordion .accordion__icon-animated:before {
        width: .75rem;
        left: calc(50% - .375rem)
    }

    .section_navbar .section__nav-box .section__nav-list {
        margin-right: 1.25rem
    }

    .section_navbar .section__nav-box .section__nav-list li a {
        font-size: .875rem;
        padding: 0 1.25rem
    }

    .section {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .section.section_background_color {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .section_advantages .section__container {
        grid-template-columns: repeat(12, 1fr)
    }

    .section_advantages .section__boxes-wrap,
    .section_advantages .section__title-wrap {
        grid-column: 2/-2
    }

    .section_cta {
        margin-bottom: 2rem
    }

    .section_cta .section__text {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1rem
    }

    footer {
        margin-top: 3rem
    }

    footer .footer__first-line {
        padding: 2rem 0
    }

    footer .footer__logo-box {
        display: none
    }

    footer .footer__nav-box ul {
        grid-template-columns: repeat(2, 1fr)
    }

    footer .footer__nav-box ul li {
        font-size: .9375rem
    }

    footer .footer__disclaimer {
        padding: 2rem 0
    }

    footer .footer__disclaimer p {
        font-size: .875rem;
        line-height: 1.5rem;
        margin-bottom: 1rem
    }

    footer .footer__last-line {
        padding: 2rem 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    footer .footer__contact-box {
        margin-bottom: 2rem
    }

    .section_rate.section_background_color {
        margin-bottom: 0
    }

    .section_text-content.section {
        padding-top: 2rem
    }

    .section_text-content .section__text-box {
        grid-column: 2/12
    }

    .section_text-content .section__text-box p,
    .section_text-content .section__text-box ul {
        font-size: 1rem;
        line-height: 1.75rem
    }

    .section_text-content .section__text-box h2 {
        font-size: 1.5rem;
        line-height: 1.75rem
    }
}

@media screen and (max-width:48rem) and (min-width:2.08rem) {
    .field-box.is-error {
        height: 5rem
    }

    .field-box input,
    .field-box select,
    .field-box.field-box_textarea textarea {
        font-size: 1.25rem
    }

    .field-box i {
        right: .5rem;
        transform: scale(1)
    }

    .img-block.image-block_height_100 .img-block__layer-main img {
        width: 100%
    }

    .label {
        padding: 0 2rem
    }

    .label .label__icon {
        width: 2.75rem;
        height: 2.75rem
    }

    .label .label__text {
        font-size: .875rem;
        line-height: 1.125rem
    }

    .unsubscribe__container {
        grid-template-columns: 1fr
    }

    .section_navbar .section__nav-box .section__nav-list {
        display: none
    }

    .section_advantages.section_background_color {
        background-position: right top;
        background-size: auto 35%
    }

    .section_advantages .section__boxes-wrap,
    .section_advantages .section__title-wrap,
    .section_questions .section__accordion,
    .section_questions .section__title-block {
        grid-column: 1/-1
    }

    footer {
        margin-top: 3.5rem
    }

    .section_reviews .section__wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    .section_reviews .section__image-wrap {
        grid-column: 1/-1;
        grid-row: 1/2
    }

    .section_reviews .section__text-wrap {
        grid-column: 1/-1;
        grid-row: 2/3
    }

    .section_steps .section__container {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(4, auto)
    }

    .section_steps .section__box {
        grid-column: 1/-1;
        padding: 3.75rem 3.25rem 3rem
    }

    .section_steps .section__box:after,
    .section_steps .section__box:before {
        left: 3.25rem;
        width: calc(100% - 3.25rem*2)
    }

    .section_steps .section__title span {
        font-size: 3.25rem;
        margin-right: .5rem
    }

    .section_why .section__wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    .section_why .section__image-wrap,
    .section_why .section__text-wrap {
        grid-column: 1/-1
    }
}

@media screen and (max-width:37rem) and (min-width:2.7rem) {
    .icon-content-box__title {
        font-size: 1.5rem;
        line-height: 1.75rem;
        margin-bottom: .25rem
    }

    .icon-content-box__title:after {
        top: calc(50% - .0675rem);
        width: 1.5rem
    }

    .label {
        padding: 0 1.5rem
    }

    .title-wrap {
        margin-bottom: .25rem
    }

    .title-wrap__title {
        font-size: 2.25rem;
        line-height: 2.75rem
    }

    .accordion .accordion__item {
        padding-right: 2.5rem;
        padding-left: 2.5rem
    }

    .accordion .accordion__item-header-title {
        font-size: 1rem;
        line-height: 1.125rem
    }

    .section_first_inner .section__title {
        font-size: 2.25rem;
        line-height: 2.625rem
    }

    .section_first_inner .section__title:after {
        top: 1.125rem
    }

    .section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }

    .section.section_background_color {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem
    }

    .section_advantages.section_background_color {
        background-position: right top;
        background-size: 85% auto
    }

    .section_cta,
    footer .footer__contact-box .footer__contact {
        margin-bottom: 1.5rem
    }

    footer {
        margin-top: 2.5rem
    }

    footer .footer__nav-box ul {
        grid-template-columns: 1fr
    }

    footer .footer__last-line {
        padding: 2rem 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    footer .footer__contact-box {
        margin-bottom: 0;
        display: grid;
        grid-tempat-rows: auto auto
    }

    .section_rate.section_background_color {
        margin-bottom: 0
    }

    .section_reviews .section__text-wrap {
        padding: 3rem
    }

    .section_text-content .section__text-box {
        grid-column: 1/13
    }

    .section_text-content .section__text-box h2.page-title {
        margin-bottom: 1rem
    }

    .section_why .section__text-wrap {
        padding: 3rem
    }
}

@media screen and (max-width:27rem) and (min-width:3.7rem) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .icon-content-box__icon-box {
        padding: 1.25rem
    }

    .icon-content-box__icon-box i {
        width: 2.75rem;
        height: 2.75rem
    }

    .icon-content-box__title {
        font-size: 1.25rem;
        line-height: 1.5rem
    }

    .icon-content-box__text {
        line-height: 1.5rem
    }

    .section_first_inner .section__title {
        font-size: 1.75rem;
        line-height: 2.125rem
    }

    .section_navbar.section {
        padding-top: .25rem;
        padding-bottom: .25rem
    }

    .section_navbar .section__logo-symbol {
        margin-right: .25rem
    }

    .section_navbar .section__logo-symbol svg {
        max-height: 1.875rem;
        width: auto
    }

    .section_navbar .section__logo-text {
        font-size: 1.25rem
    }

    .section_reviews .section__button,
    .section_reviews .section__link {
        width: 100%
    }

    .section_steps .section__box {
        padding: 2.75rem 2.25rem 2rem
    }

    .section_steps .section__box:after,
    .section_steps .section__box:before {
        left: 2.25rem;
        width: calc(100% - 2.25rem*2)
    }

    .section_steps .section__title span {
        font-size: 2.25rem;
        margin-right: .125rem
    }

    .section_why .section__button,
    .section_why .section__link {
        width: 100%
    }
}

@media screen and (max-width:24rem) and (min-width:4.17rem) {
    .button.button_size_xs {
        height: 2rem;
        padding: 0 calc(1rem + 2rem) 0 1rem
    }

    .button.button_size_xs .button__icon-box {
        width: 2rem
    }

    .label {
        padding: 0 1.25rem
    }

    .label .label__icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: .5rem
    }

    .label .label__text {
        font-size: .75rem;
        line-height: 1rem
    }

    .rating-stars__value {
        font-size: 2.75rem;
        line-height: 2.75rem
    }

    .rating-stars__stars-box {
        margin-top: .375rem;
        margin-bottom: 0
    }

    .rating-stars__star-box {
        width: 1.125rem;
        height: 1.125rem;
        border-radius: .125rem
    }

    .rating-stars__value-label {
        font-size: .75rem
    }

    .title-wrap {
        margin-bottom: 0
    }

    .title-wrap__title {
        font-size: 1.75rem;
        line-height: 2rem;
        margin-bottom: .125rem
    }

    .title-wrap__title:after,
    .title-wrap__title:before {
        top: calc(50% - .1875rem);
        width: 1.5rem
    }

    .title-wrap__title:before {
        left: -2rem
    }

    .title-wrap__title:after {
        right: -2rem
    }

    .title-wrap__sub-title {
        font-size: .675rem
    }

    .contact__form,
    .unsubscribe__form {
        padding: 1rem
    }

    .section_first_inner .section__title {
        font-size: 1.625rem;
        line-height: 2rem
    }

    .section_reviews .section__text-wrap,
    .section_why .section__text-wrap {
        padding: 2rem
    }

    .section_text-content .section__text-box h2 {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin-top: 1.5rem
    }

    .section_text-content .section__text-box h2.page-title {
        font-size: 1.75rem;
        line-height: 2rem;
        font-weight: 700
    }
}

@media screen and (max-width:23rem) and (min-width:4.35rem) {
    .field-box {
        height: 3.5rem
    }

    .icon-content-box__text-box {
        padding: 1.25rem
    }

    .label {
        padding: 0 1rem
    }

    .label .label__icon {
        width: 2.25rem;
        height: 2.25rem
    }

    .accordion .accordion__item {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        margin-bottom: .75rem
    }

    .accordion .accordion__item-header-title {
        font-size: 1rem;
        line-height: 1.25rem
    }

    .section_first_inner .section__title {
        font-size: 1.625rem;
        line-height: 2rem
    }

    .section_navbar .section__logo-symbol svg {
        max-height: 1.75rem
    }

    .section_navbar .section__logo-text {
        font-size: 1.125rem
    }

    .section_navbar .section__btn-box {
        display: none
    }

    .section_cta .section__content-wrap {
        grid-column: 1/-1
    }
}

@media (max-width:960px) {
    .form {
        padding: 1rem
    }

    .form__inner {
        transform: none
    }
}

@media (max-width:1439px) {
    .section_first .section__image-wrap {
        grid-column: 6/13
    }

    .section_first .section__form-wrap {
        grid-column: 1/6
    }
}

@media (max-width:1149px) {
    .section_first .section__image-wrap {
        grid-column: 6/13
    }

    .section_first .section__form-wrap {
        grid-column: 1/7
    }
}

@media (max-width:800px) {
    .section_first .section__image-wrap {
        grid-column: 7/13
    }

    .section_first .section__form-wrap {
        grid-column: 1/7
    }
}

@media (max-width:767px) {
    .section_first .section__container {
        grid-template-areas: 'title' 'form' 'image' 'labels';
        grid-template-columns: 100%
    }

    .section_first .section__content-wrap {
        grid-area: title;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto
    }

    .section_first .section__title {
        font-size: 2.5rem;
        line-height: 3rem;
        text-align: center
    }

    .section_first .section__image-wrap {
        grid-area: image
    }

    .section_first .section__form-wrap {
        grid-area: form;
        width: 100%
    }

    .section_first .section__labels-wrap {
        grid-area: labels;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.5rem;
        justify-content: center
    }

    .section_first .section__label {
        margin: 0;
        padding: 0
    }
}