/* Start Стили родителя */

body,
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* End Стили родителя */

.b-overflow {
    overflow: hidden;
}

.b-button {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 64px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    border-radius: 32px;
    transition-property: all;
    transition-duration: 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.b-button::before,
.b-button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-button::before {
    left: -100%;
    background: linear-gradient(249.03deg, #FDD165 3.67%, #9200CF 86.02%);
}

.b-button::after {
    left: 0;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
}

.b-button:hover {
    box-shadow: 0 10px 20px rgba(146, 0, 207, 0.3);
    text-decoration: none;
}

.b-button:hover::before {
    left: 0;
}

.b-button:hover::after {
    left: 100%;
}

.b-button__inner {
    position: relative;
    z-index: 5;
}

.b-button__inner:focus {
    text-decoration: none;
}

.b-border-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    max-width: 100%;
    height: 64px;
    padding: 3px;
    box-sizing: border-box;
    border-radius: 32px;
    text-decoration: none;
    transition-property: all;
    transition-duration: 0.3s;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 420px) {
    .b-border-button {
        height: 60px;
    }
}

.b-border-button::before,
.b-border-button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-border-button::before {
    left: -100%;
    background: linear-gradient(258.69deg, #FDD165 8.98%, #9200CF 84.24%);
}

.b-border-button::after {
    left: 0;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
}

.b-border-button:hover::before {
    left: 0;
}

.b-border-button:hover::after {
    left: 100%;
}

.b-border-button__inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
    border-radius: 29px;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-border-button__inner::after {
    content: "";
    position: absolute;
    right: 23px;
    width: 21px;
    height: 12px;
    background-image: url("../images/icon-arrow-gradient.svg");
    background-position: center;
    background-repeat: no-repeat;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-border-button:hover .b-border-button__inner {
    color: #9200CF;
}

.b-border-button:hover .b-border-button__inner::after {
    background-image: url("../images/icon-arrow-gradient--hover.svg");
}

.b-container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.b-visually-hidden {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}


/* Start Promo */

.b-promo-wrapper {
    padding-top: 10px;
    padding-bottom: 75px;
    background-color: #FBFBFD;
}

@media (max-width: 768px) {
    .b-promo-wrapper {
        padding-top: 0;
    }
}

@media (max-width: 420px) {
    .b-promo-wrapper {
        padding-bottom: 20px;
    }
}

.b-promo {
    position: relative;
}

@media (max-width: 768px) {
    .b-promo {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.b-promo__banner {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .b-promo__banner {
        border-radius: 0;
        height: 494px;
    }
}

.b-promo__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .b-promo__inner {
        display: flex;
        align-items: center;
    }
}

.b-promo__content {
    max-width: 520px;
    padding: 50px 0 40px 50px;
}

@media (max-width: 768px) {
    .b-promo__content {
        max-width: 100%;
        padding: 15px;
    }
}

.b-promo__content p {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@media (max-width: 420px) {
    .b-promo__content p {
        margin-top: 20px;
        margin-bottom: 20px;
        letter-spacing: 0;
    }
}

.b-promo__title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .b-promo__title {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .b-promo__title {
        font-size: 26px;
        line-height: 40px;
    }
}

.b-promo__button {
    margin-top: 42px;
    border: 0;
}

.b-promo__button:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .b-promo__button {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    .b-promo__button {
        margin-top: 30px;
    }
}


/* End Promo */


/* Start Advantages */

.b-advantages {
    display: flex;
    padding: 0;
    margin: 75px -15px 30px;
    list-style: none;
}

@media (max-width: 1024px) {
    .b-advantages {
        margin-right: -10px;
        margin-left: -10px;
        overflow-x: auto;
    }
}

@media (max-width: 420px) {
    .b-advantages {
        margin-top: 30px;
    }
}

.b-advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    width: calc(25% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    padding: 25px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition-property: all;
    transition-duration: 0.3s;
    box-sizing: border-box;
}

.b-advantages__item:before {
    display: none;
}

@media (max-width: 1024px) {
    .b-advantages__item {
        min-width: 270px;
        width: calc(25% - 20px);
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 38px;
    }
}

.b-advantages__item:hover {
    box-shadow: 0 4px 20px rgba(146, 0, 207, 0.1);
}

.b-advantages__thumbnail {
    display: block;
    width: 100%;
    height: 86px;
    object-fit: cover;
}

.b-advantages__description {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}


/* End Advantages */


/* Start Sale Banner */

.b-sale-banner {
    display: flex;
    align-items: center;
    padding: 18px 30px 20px 30px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .b-sale-banner {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .b-sale-banner {
        padding-top: 12px;
        padding-bottom: 30px;
    }
}

.b-sale-banner__description {
    margin-right: auto;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .b-sale-banner__description {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .b-sale-banner__description {
        font-size: 16px;
        line-height: 20px;
    }
}

.b-sale-banner__accent {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #663399;
}

@media (max-width: 420px) {
    .b-sale-banner__accent {
        font-size: 16px;
        line-height: 20px;
    }
}

.b-sale-banner__button {
    margin-left: 30px;
    flex-shrink: 0;
}

.b-sale-banner__button:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .b-sale-banner__button {
        margin-left: 0;
    }
}


/* End Sale Banner */

.b-service-contest-wrapper {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

@media (max-width: 420px) {
    .b-service-contest-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/* Start Service Contest */

.b-service-contest--other {
    margin-top: 150px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .b-service-contest--other {
        margin-top: 28px;
        margin-bottom: -5px;
    }
}

.b-service-contest__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #000000;
}

@media (max-width: 420px) {
    .b-service-contest__title {
        font-size: 22px;
        line-height: 27px;
    }
}

.b-service-contest__sub-title {
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #663399;
}

@media (max-width: 420px) {
    .b-service-contest__sub-title {
        margin-top: 21px;
        font-size: 16px;
        line-height: 20px;
    }
}

.b-service-contest__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 50px;
    margin-left: -18px;
    margin-right: -18px;
    list-style: none;
}

@media (max-width: 1024px) {
    .b-service-contest__list {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width: 420px) {
    .b-service-contest__list {
        margin-top: 30px;
    }
}

.b-service-contest__item {
    position: relative;
    width: calc(20% - 36px);
    list-style: none;
    min-height: 156px;
    box-sizing: border-box;
    margin-right: 18px;
    margin-left: 18px;
    margin-bottom: 36px;
    padding: 119px 10px 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-service-contest__item a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    left: 0;
}

.b-service-contest__item:before {
    display: none;
}

@media (max-width: 1024px) {
    .b-service-contest__item {
        width: calc(25% - 20px);
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .b-service-contest__item {
        width: calc((100% / 3) - 20px);
    }
}

@media (max-width: 520px) {
    .b-service-contest__item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 420px) {
    .b-service-contest__item {
        min-height: 147px;
        padding-top: 115px;
    }
}

.b-service-contest__item:hover {
    box-shadow: 0 4px 20px rgba(146, 0, 207, 0.1);
}

.b-service-contest__thumbnail {
    position: absolute;
    top: 15px;
    left: 50%;
    max-width: calc(100% - 6px);
    transform: translateX(-50%);
}

@media (max-width: 420px) {
    .b-service-contest__thumbnail {
        top: 10px
    }
}

.b-service-contest__description {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 520px) {
    .b-service-contest__description {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
    }
}


/* End Service Contest */


/* Start Info */

.b-info {
    display: flex;
    align-items: center;
    margin-top: 43px;
    padding: 9px 30px 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
    background: #FFD014;
    border-radius: 10px;
}

@media (max-width: 520px) {
    .b-info {
        flex-direction: column;
        text-align: center;
        padding-bottom: 15px;
    }
}

@media (max-width: 420px) {
    .b-info {
        margin: 39px -15px 0;
        padding: 15px;
        font-size: 16px;
    }
}

.b-info--large {
    padding-top: 21px;
    padding-bottom: 22px;
    padding-right: 20px;
    line-height: 26px;
    letter-spacing: -0.2px;
}

@media (max-width: 420px) {
    .b-info--large {
        margin-top: 30px;
        padding-top: 16px;
        padding-bottom: 15px;
        line-height: 22px;
        letter-spacing: 0;
    }
}

.b-info::before {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 75px;
    height: 75px;
    margin-right: 30px;
    background-image: url("../images/icon-info.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 520px) {
    .b-info::before {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 420px) {
    .b-info::before {
        width: 48px;
        height: 48px;
    }
}

.b-info--large::before {
    margin-right: 43px;
}

@media (max-width: 420px) {
    .b-info--large::before {
        margin-right: 0;
    }
}

.b-info p {
    margin-top: 0;
    margin-bottom: 0;
}

.b-info a {
    color: #2400FF;
    text-decoration: none;
}


/* End Info */


/* Start Order Service */

.b-order-service-wrapper {
    padding-top: 75px;
    background: #FBFBFD;
}

@media (max-width: 420px) {
    .b-order-service-wrapper {
        padding-top: 30px;
        background: #EFEFF5;
    }
}

.b-order-service__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-order-service__title {
        font-size: 22px;
        line-height: 27px;
    }
}

.b-order-service__description {
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-order-service__description {
        margin-top: 21px;
        font-size: 16px;
        line-height: 24px;
    }
}

.b-order-service__form {
    padding: 13px 52px 20px;
    margin: 30px -51px 0;
    background: #EFEFF5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .b-order-service__form {
        margin-right: -15px;
        margin-left: -15px;
        padding-right: 15px;
        padding-left: 15px;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 375px) {
    .b-order-service__form {
        margin-top: 0;
    }
}

.b-order-service__form-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #663399;
}

@media (max-width: 420px) {
    .b-order-service__form-title {
        margin-top: 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.form-services {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -18px;
    padding: 0;
    list-style: none;
}

@media (max-width: 1024px) {
    .form-services {
        margin-right: -10px;
        margin-left: -10px;
    }
}

@media (max-width: 420px) {
    .form-services {
        margin-bottom: 16px;
    }
}

.form-services__item {
    width: calc(20% - 36px);
    margin-right: 18px;
    margin-left: 18px;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.form-services__item:before {
    display: none;
}

@media (max-width: 1024px) {
    .form-services__item {
        width: calc(20% - 20px);
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media (max-width: 900px) {
    .form-services__item {
        width: calc(25% - 20px);
    }
}

@media (max-width: 720px) {
    .form-services__item {
        width: calc((100% / 3) - 20px);
    }
}

@media (max-width: 550px) {
    .form-services__item {
        width: calc(50% - 20px);
        margin-bottom: 15px;
    }
}

@media (max-width: 420px) {
    .b-order-service__col--task {
        order: 1;
    }
    .b-order-service__col--active {
        order: 3;
    }
}

.form-services__item input {
    display: none;
}

.form-services__label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 32px;
    box-sizing: border-box;
    cursor: pointer;
    transition-property: all;
    transition-duration: 0.3s;
}

input:checked+.form-services__label,
.form-services__label:hover {
    padding: 3px;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
}

@media (max-width: 420px) {
    input:checked+.form-services__label,
    .form-services__label:hover {
        padding: 2px;
    }
}

.form-services__label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #000000;
    border-radius: 24px;
    box-sizing: border-box;
}

input:checked+.form-services__label .form-services__label-inner,
.form-services__label:hover .form-services__label-inner {
    background: #EFEFF5;
    padding-right: 12px;
    padding-left: 12px;
}

.b-order-service__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 29px;
}

@media (max-width: 700px) {
    .b-order-service__grid {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .b-order-service__grid {
        margin-top: 35px;
    }
}

.b-order-service__col {
    width: calc((770 / 1170) * 100%);
    margin-bottom: 15px;
}

@media (max-width: 950px) {
    .b-order-service__col {
        width: calc(100% - 350px);
        margin-bottom: 15px;
    }
}

@media (max-width: 700px) {
    .b-order-service__col {
        width: 100%;
        margin-bottom: 0;
    }
}

.b-order-service__col:nth-child(2n) {
    width: calc((320 / 1170) * 100%);
}

@media (max-width: 950px) {
    .b-order-service__col:nth-child(2n) {
        width: 320px;
        flex-shrink: 0;
        margin-left: 30px;
    }
}

@media (max-width: 700px) {
    .b-order-service__col:nth-child(2n) {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
    }
}

.b-order-service__item {
    position: relative;
    margin-top: 0;
    margin-bottom: 15px;
}

.b-order-service__icon {
    position: absolute;
    top: 23px;
    left: 20px;
}

.b-order-service__label {
    position: absolute;
    top: 23px;
    left: 48px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.5);
}

.b-order-service__field:focus+.b-order-service__label,
.b-order-service__field.not-empty+.b-order-service__label {
    opacity: 0;
    pointer-events: none;
}

.b-order-service__label .red {
    color: #FF0000;
    font-size: 30px;
    line-height: 2px;
}

.b-order-service__field {
    display: block;
    width: 100%;
    padding: 23px 20px 19px 48px;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.5);
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    border: 0;
}

.b-order-service__field.error {
    border: 1px solid red;
}

.b-order-service__field--textarea {
    border-radius: 20px;
    resize: none;
    height: 143px;
}

@media (max-width: 420px) {
    .b-order-service__field--textarea {
        height: 120px;
    }
}

.b-order-service__field::placeholder {
    opacity: 1;
    font-family: inherit;
    font-size: inherit;
}

.b-order-service__field:focus {
    outline: none;
}

.b-order-service__col--row {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .b-order-service__col--row {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .b-order-service__col--row {
        order: 2;
        margin-top: 6px;
    }
}

.b-order-service__item--file {
    margin-right: auto;
    margin-top: 19px;
}

@media (max-width: 1024px) {
    .b-order-service__item--file {
        margin-top: 0;
    }
}

.b-order-service__file {
    display: none;
}

.b-order-service__label-file {
    display: block;
    padding-left: 48px;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 420px) {
    .b-order-service__label-file {
        padding-left: 35px;
    }
}

.b-order-service__item--file-icon {
    position: absolute;
    left: 0;
    top: 5px;
}

@media (max-width: 420px) {
    .b-order-service__item--file-icon {
        width: 25px;
    }
}

.b-order-service__label-file strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-order-service__label-file strong {
        margin-bottom: 2px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

.b-order-service__capcha {
    display: block;
    border-radius: 5px;
    border: 1px solid #FFD014;
}

@media (max-width: 700px) {
    .b-order-service__capcha {
        margin-left: auto;
        margin-right: auto;
    }
}

.b-order-service__button {
    width: 100%;
    border: none;
}

@media (max-width: 700px) {
    .b-order-service__button {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }
}

.b-accept {
    position: relative;
    padding-left: 44px;
    font-size: 10px;
    line-height: 10px;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    cursor: default;
}

.b-accept input {
    display: none;
}

.b-accept__icon {
    position: absolute;
    left: 0;
    top: 3px;
    width: 29px;
    height: 12px;
    background: #DDDDDD;
    border-radius: 20px;
}

.b-accept input:checked+.b-accept__icon {
    background: #FFD014;
}

.b-accept.error {
    border: 1px solid red;
}

.g-recaptcha.error {
    border: 1px solid red;
}

.b-accept__icon::before {
    content: "";
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 5;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-accept input:checked+.b-accept__icon::before {
    right: calc(100% - 11px);
}

.b-accept a {
    color: #000000;
}

.b-order-service__accept {
    margin-top: 24px;
}

.b-order-service-banner {
    margin-top: -13px;
    padding: 32px 15px 30px;
    transform: translateY(38px);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
    background: #FFD014;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

@media (max-width: 420px) {
    .b-order-service-banner {
        margin-right: -15px;
        margin-left: -15px;
        padding: 15px;
        line-height: 22px;
        transform: translateY(55px);
    }
}


/* End Order Service */


/* Start Comprehensive Service */

.b-comprehensive-service {
    margin-top: 112px;
}

@media (max-width: 420px) {
    .b-comprehensive-service {
        margin-top: 85px;
    }
}

.b-gray-wrapper .b-comprehensive-service {
    margin-top: 0;
}

.b-comprehensive-service__title {
    max-width: 730px;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
}

@media (max-width: 420px) {
    .b-comprehensive-service__title {
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 27px;
        text-align: center;
    }
}

.b-comprehensive-service__grid {
    display: flex;
    align-items: center;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__grid {
        flex-direction: column;
    }
}

.b-comprehensive-service__thumbnail {
    position: relative;
    z-index: 5;
    display: block;
    border-radius: 5px;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__thumbnail {
        margin-bottom: 20px;
        max-width: 100%;
    }
}

.b-comprehensive-service__content {
    position: relative;
    padding: 0 0 0 82px;
}

@media (max-width: 1200px) {
    .b-comprehensive-service__content {
        padding-left: 30px;
    }
}

@media (max-width: 1080px) {
    .b-comprehensive-service__content {
        padding-left: 0;
    }
}

.b-comprehensive-service__content-inner {
    position: relative;
    z-index: 1;
}

.b-comprehensive-service__content-inner p {
    margin-top: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.b-comprehensive-service__content-inner p.b-clock-icon {
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.b-clock-icon::before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    margin-right: 16px;
    background-image: url("../images/icon-clock.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.b-comprehensive-service__content::before {
    content: "";
    position: absolute;
    left: -125px;
    top: -60px;
    bottom: -56px;
    right: -172px;
    z-index: -1;
    transform: skew(26deg);
    background: #FBFBFD;
    border-radius: 30px;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__content::before {
        bottom: 35px;
    }
}

.b-gray-wrapper .b-comprehensive-service__content::before {
    left: -108px;
    top: -72px;
    bottom: -74px;
    right: -87px;
    z-index: 1;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .b-gray-wrapper .b-comprehensive-service__content::before {
        display: none;
    }
}

.custom-list {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 420px) {
    .custom-list {
        margin-bottom: 22px;
    }
}

.custom-list li {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    padding-left: 0;
}

@media (max-width: 480px) {
    .custom-list li {
        font-size: 16px;
    }
}

.custom-list li:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 420px) {
    .custom-list li:not(:last-child) {
        margin-bottom: 5px;
    }
}

.custom-list li::before {
    content: "";
    display: inline-block;
    position: relative;
    vertical-align: baseline;
    width: 11px;
    height: 11px;
    margin-right: 26px;
    border-radius: 50%;
    background: #FFD014;
    box-shadow: 0 4px 5px rgba(255, 208, 20, 0.2);
}

.b-comprehensive-service__active {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__active {
        flex-direction: column-reverse;
        align-items: center;
        margin-bottom: 0;
    }
}

.b-comprehensive-service__button {
    width: 240px;
    margin-right: 30px;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__button {
        margin-right: 0;
        width: 320px;
    }
}

.b-comprehensive-service__price {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 1080px) {
    .b-comprehensive-service__price {
        margin-bottom: 20px;
    }
}

@media (max-width: 420px) {
    .b-comprehensive-service__price {
        margin-bottom: 14px;
    }
}

.b-comprehensive-service__price strong {
    font-weight: 700;
    font-size: 30px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #181818;
}


/* End Comprehensive Service */


/* Start Custom Text */

.b-custom-text {
    margin-top: 70px;
    padding: 54px 29px 45px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #000000;
    background: #FBFBFD;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 420px) {
    .b-custom-text {
        margin-top: 30px;
        margin-right: -15px;
        margin-left: -15px;
        padding: 30px 15px;
        font-size: 16px;
        border-radius: 0;
        box-shadow: none;
    }
}

.b-custom-text h2 {
    margin-top: 0;
    margin-bottom: 31px;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-custom-text h2 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 27px;
    }
}

.b-custom-text h2+p {
    margin-bottom: 49px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-custom-text h2+p {
        margin-bottom: 30px;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }
}

.b-custom-text .custom-list {
    margin-top: 24px;
}

@media (max-width: 420px) {
    .b-custom-text .custom-list {
        margin-top: 15px;
    }
}

.b-custom-text .custom-list li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 0;
}

@media (max-width: 420px) {
    .b-custom-text .custom-list li {
        font-size: 16px;
    }
}

.b-custom-text__more {
    display: none;
}

.b-custom-text__more-inner::after {
    display: none;
}

@media (max-width: 420px) {
    .b-custom-text__more {
        display: flex;
        margin: 30px auto 0;
    }
}

.b-custom-text .custom-list li:not(:last-child) {
    margin-bottom: 24px;
}

.b-custom-text .custom-list li::before {
    margin-right: 15px;
}


/* End Custom Text */


/* Start Get Consultation */

.b-get-consultation {
    position: relative;
    margin-left: 55px;
    padding: 46px 0 46px 78px;
    margin-top: 143px;
    margin-bottom: 75px;
}

@media (max-width: 1024px) {
    .b-get-consultation {
        margin-left: 0;
    }
}

@media (max-width: 860px) {
    .b-get-consultation {
        padding: 0;
        margin-top: 50px;
    }
}

@media (max-width: 420px) {
    .b-get-consultation {
        margin: 0 -15px;
    }
}

.b-why-list+.b-get-consultation {
    margin-top: 118px;
}

@media (max-width: 420px) {
    .b-why-list+.b-get-consultation {
        margin-top: 60px;
        margin-bottom: -20px;
    }
}

.b-get-consultation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 242px;
    height: 242px;
    background: linear-gradient(101.61deg, rgba(253, 209, 101, 0.5) 5.79%, rgba(146, 0, 207, 0.5) 82.81%);
    border-radius: 50%;
}

@media (max-width: 860px) {
    .b-get-consultation::before {
        display: none;
    }
}

.b-get-consultation__circle {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: linear-gradient(101.61deg, rgba(253, 209, 101, 0.5) 5.79%, rgba(146, 0, 207, 0.5) 82.81%);
}

@media (max-width: 860px) {
    .b-get-consultation__circle {
        display: none;
    }
}

.b-get-consultation__circle::before {
    content: "";
    width: 150px;
    height: 150px;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%), #FFD014;
    border-radius: 50%;
}

.b-get-consultation__phone {
    position: absolute;
    z-index: 5;
    top: -70px;
    left: -7px;
}

@media (max-width: 860px) {
    .b-get-consultation__phone {
        display: none;
    }
}

.b-get-consultation__inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 31px 0 31px 253px;
}

@media (max-width: 1200px) {
    .b-get-consultation__inner {
        padding-left: 170px;
    }
}

@media (max-width: 860px) {
    .b-get-consultation__inner {
        padding: 20px 15px;
        background: #1C1C1C;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .b-get-consultation__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .b-get-consultation__inner {
        border-radius: 0;
        padding-bottom: 35px;
    }
}

.b-get-consultation__inner::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    right: -92px;
    z-index: 1;
    transform: skew(32deg);
    background: #1C1C1C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 37px 11px 37px 11px;
}

@media (max-width: 860px) {
    .b-get-consultation__inner::before {
        display: none;
    }
}

.b-get-consultation__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@media (max-width: 420px) {
    .b-get-consultation__title {
        font-size: 22px;
    }
}

.b-get-consultation__content {
    max-width: 370px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .b-get-consultation__content {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.b-get-consultation__content p {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.b-get-consultation__button {
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .b-get-consultation__button {
        margin-left: 0;
    }
}


/* End Get Consultation */


/* Start Partners */

.b-partners {
    margin-bottom: 155px;
}

@media (max-width: 420px) {
    .b-partners {
        padding-top: 33px;
        margin-bottom: 28px;
    }
}

.b-partners__title {
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #000000;
}

@media (max-width: 420px) {
    .b-partners__title {
        margin-bottom: 0px;
        font-size: 22px;
        line-height: 27px;
    }
}

.b-partners__slider {
    position: relative;
    display: flex;
    padding: 0;
    margin-right: -15px;
    margin-left: -15px;
    list-style: none;
}

.b-partners__slider li {
    padding-left: 0;
}

@media (max-width: 420px) {
    .b-partners__slider {
        margin-right: -15px;
        margin-left: -7px;
        overflow-x: auto;
    }
}

.b-partners__slider .slick-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    border: none;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
    outline: none;
    cursor: pointer;
}

.b-partners__slider .slick-arrow:hover {
    background: #9201CF;
}

.b-partners__slider .slick-arrow::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    background-image: url("../images/icon-large-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.b-partners__slider .slick-arrow:hover::before {
    background-color: #9201CF;
    background-image: url("../images/icon-large-arrow--hover.svg");
    transform: rotate(0);
}

.b-partners__slider .slick-next::before {
    transform: rotate(180deg);
}

.b-partners__slider .slick-prev:hover::before {
    transform: rotate(180deg);
}

.b-partners__slider .slick-prev {
    left: -45px;
}

.b-partners__slider .slick-next {
    right: -45px;
}

.b-our-certificates {}

.b-our-certificates .slick-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    border: none;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
    outline: none;
    cursor: pointer;
}

.b-our-certificates .slick-arrow:hover {
    background: #9201CF;
}

.b-our-certificates .slick-arrow::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    background-image: url("../images/icon-large-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.b-our-certificates .slick-arrow:hover::before {
    background-color: #9201CF;
    background-image: url("../images/icon-large-arrow--hover.svg");
    transform: rotate(0);
}

.b-our-certificates .slick-next::before {
    transform: rotate(180deg);
}

.b-our-certificates .slick-prev:hover::before {
    transform: rotate(180deg);
}

.b-our-certificates .slick-prev {
    left: -45px;
}

.b-our-certificates .slick-next {
    right: -45px;
}

.b-partners__slider li:before {
    display: none;
}

.b-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    margin: 15px;
    width: calc(100% - 30px);
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition-property: all;
    transition-duration: 0.3s;
    height: 200px;
}

.b-partners__item img {
    max-height: 150px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 420px) {
    .b-partners__item {
        min-width: 270px;
        width: calc(25% - 15px);
        margin-right: 7px;
        margin-left: 7px;
        margin-bottom: 37px;
        box-sizing: border-box;
    }
}

.b-partners__item:hover {
    box-shadow: 0 4px 20px rgba(146, 0, 207, 0.1);
}

.b-partners__thumbnail {
    display: block;
    max-width: 100%;
}


/* End Partners */


/* Start Our Certificates */

.b-our-certificates {
    padding-bottom: 44px;
}

.b-our-certificates__title {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #000000;
}

@media (max-width: 420px) {
    .b-our-certificates__title {
        font-size: 22px;
        line-height: 27px;
    }
    .b-our-certificates {
        padding-bottom: 0px;
    }
}

.b-our-certificates__description {
    margin-top: 9px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
}

@media (max-width: 420px) {
    .b-our-certificates__description {
        margin-top: 21px;
        margin-bottom: 19px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
    }
}

.b-our-certificates__list {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0;
    list-style: none;
}

@media (max-width: 1024px) {
    .b-our-certificates__list {
        overflow-x: auto;
    }
}

@media (max-width: 420px) {
    .b-our-certificates__list {
        margin-left: -7px;
        margin-right: -15px;
    }
}

.b-our-certificates__item {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: calc(25% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    background: #FFFFFF;
    padding-left: 0;
}

.b-our-certificates__item:before {
    display: none;
}

@media (max-width: 1024px) {
    .b-our-certificates__item {
        min-width: 195px;
        margin-bottom: 30px;
    }
}

@media (max-width: 420px) {
    .b-our-certificates__item {
        width: calc(25% - 14px);
        margin-right: 7px;
        margin-left: 7px;
        margin-bottom: 38px;
    }
}

.b-our-certificates__thumbnail {
    display: block;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition-property: all;
    transition-duration: 0.3s;
}

.b-our-certificates__item:hover .b-our-certificates__thumbnail {
    box-shadow: 0 4px 20px rgba(146, 0, 207, 0.1);
}


/* End Our Certificates */


/* Start Service Main */

.b-service-main {
    padding-top: 62px;
    background-color: #FBFBFD;
}

@media (max-width: 420px) {
    .b-service-main {
        padding-top: 52px;
    }
}

.b-service-main__promo {
    display: flex;
}

@media (max-width: 768px) {
    .b-service-main__promo {
        flex-direction: column;
        align-items: center;
    }
}

.b-service-main__promo-content {
    flex-grow: 1;
}

.b-service-main__title {
    margin-top: 0;
    margin-bottom: 33px;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 768px) {
    .b-service-main__title {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .b-service-main__title {
        margin-bottom: 0px;
        font-size: 26px;
        line-height: 40px;
    }
}

.b-service-main__promo-content p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-service-main__more {
    display: none;
}

@media (max-width: 420px) {
    .b-service-main__more {
        display: flex;
        margin: 29px auto 10px;
    }
}

.b-service-main__promo-form {
    flex-shrink: 0;
    width: 370px;
    margin-left: 30px;
    margin-top: 21px;
}

@media (max-width: 580px) {
    .b-service-main__promo-form {
        width: 100%;
        max-width: 345px;
        margin-left: 0;
    }
}

.b-default-form {
    position: relative;
}

.b-default-form__content {
    position: relative;
    padding: 30px 25px;
    background: #1C1C1C;
    border-radius: 20px;
}

@media (max-width: 420px) {
    .b-default-form__content {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.b-calc-price__form .b-default-form__content {
    padding-top: 40px;
    padding-bottom: 41px;
}

.b-service-main__circle {
    position: absolute;
    right: -127px;
    top: 50%;
    width: 399px;
    height: 399px;
    background: linear-gradient(101.61deg, rgba(253, 209, 101, 0.5) 5.79%, rgba(146, 0, 207, 0.5) 82.81%);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 580px) {
    .b-service-main__circle {
        display: none;
    }
}

.b-calc-price__form .b-service-main__circle {
    transform: translateY(-50%) scale(0.9);
}

@media (max-width: 1200px) {
    .b-calc-price__form .b-service-main__circle {
        display: none;
    }
}

.b-service-main__circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 317px;
    height: 317px;
    background: linear-gradient(101.61deg, rgba(253, 209, 101, 0.5) 5.79%, rgba(146, 0, 207, 0.5) 82.81%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.b-service-main__circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 246px;
    height: 246px;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%), #FFD014;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.b-default-form__title {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.b-default-form__item {
    position: relative;
    margin-top: 0;
    margin-bottom: 15px;
}

.b-default-form__field {
    display: block;
    width: 100%;
    padding: 21px 8px 21px 50px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(0deg, #3F3F3F, #3F3F3F);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.7), inset 0 4px 4px rgba(0, 0, 0, 0.4);
    border-radius: 32px;
    border: none;
    outline: none;
}

.b-default-form__field::placeholder {
    font-family: inherit;
    font-size: 18px;
    line-height: 22px;
    opacity: 1;
}

.b-default-form__label {
    position: absolute;
    top: 22px;
    left: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.5);
}

.b-default-form__field:focus+.b-default-form__label,
.b-default-form__field.not-empty+.b-default-form__label {
    opacity: 0;
    pointer-events: none;
}

.b-default-form__label .red {
    color: #FF0000;
    font-size: 30px;
    line-height: 2px;
}

.b-default-form__icon {
    position: absolute;
    top: 25px;
    left: 20px;
}

.b-default-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    padding: 20px 0 22px;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
    border-radius: 32px;
    border: none;
}

.b-default-form__accept {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.b-default-form__accept a {
    color: #FFFFFF;
}


/* End Service Main */


/* Start Service Includes */

.b-service-includes {
    margin-top: 101px;
}

@media (max-width: 420px) {
    .b-service-includes {
        margin-top: 30px;
    }
}

.b-service-includes__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 36px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-service-includes__title {
        font-size: 22px;
        line-height: 26px;
    }
}

.b-service-includes__list {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 120px;
    padding: 0;
    list-style: none;
}

@media (max-width: 1200px) {
    .b-service-includes__list {
        margin-top: 0;
        overflow-x: auto;
    }
}

.b-service-includes__item {
    position: relative;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: calc(25% - 30px);
    height: 170px;
    padding: 15px;
    margin-left: 15px;
    margin-right: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    box-sizing: border-box;
}

.b-service-includes__item:before {
    display: none;
}

@media (max-width: 1200px) {
    .b-service-includes__item {
        min-width: 270px;
        margin-top: 120px;
        margin-bottom: 30px;
    }
}

@media (max-width: 420px) {
    .b-service-includes__item {
        margin-top: 68px;
        margin-bottom: 38px;
    }
}

.b-service-includes__description {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-service-includes__image {
    position: absolute;
    bottom: 134px;
    left: 50%;
    transform: translateX(-50%);
}

.b-service-includes__item:nth-child(2) .b-service-includes__image,
.b-service-includes__item:nth-child(4) .b-service-includes__image {
    bottom: 147px;
}


/* End Service Includes */


/* Start Promo Price */

.b-promo-price {
    position: relative;
    margin-top: -15px;
    margin-bottom: 136px;
    transform: translateY(86px);
}

@media (max-width: 420px) {
    .b-promo-price {
        margin: 28px -15px 0;
        transform: translateY(0);
    }
}

.b-promo-price__picture {
    position: absolute;
    top: -10px;
    left: 6px;
}

@media (max-width: 1024px) {
    .b-promo-price__picture {
        display: none;
    }
}

.b-promo-price__inner {
    display: flex;
    margin-left: 175px;
    padding: 37px 46px 32px 95px;
    align-items: center;
    background: #1C1C1C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .b-promo-price__inner {
        margin-left: auto;
        padding: 30px 15px;
    }
}

@media (max-width: 860px) {
    .b-promo-price__inner {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .b-promo-price__inner {
        border-radius: 0;
    }
}

.b-promo-price__content {
    max-width: 530px;
    margin-right: auto;
}

@media (max-width: 860px) {
    .b-promo-price__content {
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }
}

.b-promo-price__title {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@media (max-width: 420px) {
    .b-promo-price__title {
        margin-bottom: 17px;
        font-size: 22px;
        line-height: 24px;
    }
}

.b-promo-price__description {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.b-promo-price__price {
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@media (max-width: 420px) {
    .b-promo-price__price {
        max-width: 215px;
        margin-left: auto;
        margin-right: auto;
        line-height: 40px;
    }
}

.b-promo-price__price strong {
    font-weight: 700;
    font-size: 30px;
    line-height: 22px;
    color: #FFD014;
}

@media (max-width: 860px) {
    .b-promo-price__button {
        margin-top: 20px;
    }
}

@media (max-width: 420px) {
    .b-promo-price__button {
        margin-top: 13px;
    }
}


/* End Promo Price */

.b-gray-area {
    padding-top: 75px;
    margin-top: 75px;
    background: #FBFBFD;
}

@media (max-width: 420px) {
    .b-gray-area {
        padding-top: 30px;
        margin-top: 0;
    }
}


/* Start Custom Table */

.b-custom-table {
    position: relative;
}

@media (max-width: 1200px) {
    .b-custom-table {
        margin-bottom: 10px;
    }
}

.b-custom-table::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: -10px;
    left: 10px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .b-custom-table::before {
        display: none;
    }
}

.b-custom-table__inner {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .b-custom-table__inner {
        margin-right: -15px;
        box-shadow: none;
        background-color: transparent;
        overflow-x: auto;
    }
}

.b-custom-table__content {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 1200px) {
    .b-custom-table__content {
        margin-bottom: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 420px) {
    .b-custom-table__content {
        margin-bottom: 44px;
    }
}

.b-custom-table__content caption {
    padding-top: 20px;
    padding-bottom: 30px;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #000000;
}

@media (max-width: 1200px) {
    .b-custom-table__content caption {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-radius: 20px 20px 0 0;
        background-color: #fff;
    }
}

@media (max-width: 420px) {
    .b-custom-table__content caption {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 22px;
        line-height: 27px;
    }
}

.b-custom-table__content th {
    padding: 23px 19px 22px 19px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-custom-table__content td {
    padding: 24px 19px 28px 19px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-custom-table__content tr:nth-child(2n) td {
    background: #FBFBFD;
}

@media (max-width: 1200px) {
    .b-custom-table__content tr:nth-child(2n) td {
        background-color: #ffffff;
    }
}

.b-custom-table__content--decor td {
    padding: 15px 18px 13px 19px;
    color: #6A6A6A;
}

.b-custom-table__content th,
.b-custom-table__content td {
    text-align: center;
    border: 1px solid #F2F2F2;
    white-space: nowrap;
}

.b-custom-table__content th:first-child,
.b-custom-table__content td:first-child {
    text-align: left;
}

.b-custom-table__content td:first-child {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-custom-table__content--decor td:first-child {
    font-size: 18px;
    color: #6A6A6A;
}

.b-custom-table__content .b-price {
    width: 20%;
}


/* End Custom Table */


/* Start Hours */

.b-hours {
    position: relative;
    margin-top: 42px;
    margin-bottom: 93px;
}

@media (max-width: 420px) {
    .b-hours {
        margin-top: 29px;
        margin-bottom: 26px;
    }
}

.b-hours__content {
    display: flex;
    align-items: center;
    margin-left: 130px;
    padding: 16px 30px 16px 140px;
    background: #EFEFF5;
    border-radius: 10px;
}

@media (max-width: 960px) {
    .b-hours__content {
        margin-left: 0;
        padding-left: 30px;
    }
}

@media (max-width: 640px) {
    .b-hours__content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .b-hours__content {
        margin: 0 -15px 0;
        padding: 28px 15px 30px 15px;
    }
}

.b-hours__description {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 513px;
    margin-right: auto;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 640px) {
    .b-hours__description {
        max-width: 100%;
        margin-bottom: 30px;
        font-size: 22px;
        text-align: center;
    }
}

.b-hours__thumbnail {
    position: absolute;
    left: -6px;
    top: -5px;
}

@media (max-width: 960px) {
    .b-hours__thumbnail {
        display: none;
    }
}


/* End Hours */


/* Start Calc Price */

.b-calc-price {
    position: relative;
    display: flex;
    margin: 100px -15px 137px -10px;
    padding: 30px 15px 0 35px;
    background: #EFEFF5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .b-calc-price {
        margin-left: -15px;
        border-radius: 0;
    }
}

@media (max-width: 800px) {
    .b-calc-price {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .b-calc-price {
        margin-bottom: 54px;
    }
}

@media (max-width: 420px) {
    .b-calc-price {
        padding: 30px 15px 0 15px;
        margin-top: 27px;
    }
}

.b-calc-price__picture {
    position: absolute;
    bottom: -115px;
    right: 363px;
    z-index: 5;
}

@media (max-width: 1200px) {
    .b-calc-price__picture {
        display: none;
    }
}

.b-calc-price__content {
    margin-right: auto;
    margin-top: 20px;
}

@media (max-width: 420px) {
    .b-calc-price__content {
        margin-right: 0;
        margin-top: 0;
    }
}

.b-calc-price__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.01em;
    color: #663399;
}

@media (max-width: 420px) {
    .b-calc-price__title {
        font-size: 22px;
        line-height: 27px;
        text-align: center;
    }
}

.b-calc-price__grid {
    display: flex;
}

@media (max-width: 1200px) {
    .b-calc-price__grid {
        flex-direction: column;
    }
}

.b-calc-price__category {
    margin-left: 5px;
    margin-right: 79px;
}

@media (max-width: 420px) {
    .b-calc-price__category {
        margin-left: 0;
        margin-right: 0;
    }
}

.b-calc-price__category-title {
    margin-top: 9px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #483F38;
}

.b-calc-price__category-list {
    margin-top: 28px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 420px) {
    .b-calc-price__category-list {
        margin-top: 23px;
    }
}

.b-calc-price__category-item:before {
    display: none;
}

.b-calc-price__category-item:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 420px) {
    .b-calc-price__category-item:not(:last-child) {
        margin-bottom: 15px;
    }
}

.b-calc-price__category-label {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #483F38;
}

.b-calc-price__category-label::before {
    content: "";
    width: 40px;
    height: 40px;
    margin-right: 15px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

input:checked+.b-calc-price__category-label::before {
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%);
    box-shadow: 0 1px 6px rgba(147, 1, 207, 0.42), inset 0 -1px 3px rgba(0, 0, 0, 0.25);
}

input:checked+.b-calc-price__category-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url("../images/icon-check.png");
    background-position: center;
    background-repeat: no-repeat;
}

.b-calc-price__data {
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .b-calc-price__data {
        margin-top: 30px;
    }
}

.b-calc-price__data-hour {
    width: 340px;
}

.b-calc-price__data-label {
    display: block;
    margin-bottom: 13px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #483F38;
}

.b-calc-price__data-field {
    width: 100%;
    padding: 20px 15px 20px 64px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #A9A9A9;
    background-color: #FFFFFF;
    background-image: url("../images/icon-clock.png");
    background-position: 9px 50%;
    background-repeat: no-repeat;
    border-radius: 30px;
    border: none;
    outline: none;
}

.b-calc-price__data-field::placeholder {
    opacity: 1;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #A9A9A9;
}

.b-calc-price__data-result {
    position: relative;
    margin-top: 56px;
    padding: 17px 0 13px 39px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
    background: #FFFFFF;
    border-radius: 20px 0 0 20px;
}

@media (max-width: 1200px) {
    .b-calc-price__data-result {
        margin-top: 30px;
        border-radius: 20px;
    }
}

.b-calc-price__data-result::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #ffffff;
}

@media (max-width: 1200px) {
    .b-calc-price__data-result::before {
        display: none;
    }
}

.b-calc-price__data-title {
    margin-right: 27px;
    transform: translateY(-4px);
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #000000;
}

.b-calc-price__data-price {
    font-weight: 700;
    font-size: 30px;
    line-height: 22px;
    letter-spacing: 0.01em;
    color: #181818;
}

.b-calc-price__form {
    width: 370px;
    margin-top: 6px;
    margin-bottom: -25px;
}

@media (max-width: 1200px) {
    .b-calc-price__form {
        margin-top: 30px;
    }
}

@media (max-width: 420px) {
    .b-calc-price__form {
        width: 100%;
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
}


/* End Calc Price */


/* Start Reality */

@media (max-width: 768px) {
    .b-reality {
        padding: 30px 0;
        background: #FFFFFF;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }
}

.b-reality__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
}

@media (max-width: 768px) {
    .b-reality__title {
        margin-bottom: 48px;
        font-weight: 600;
        font-size: 22px;
        line-height: 27px;
        text-align: center;
    }
}

.b-reality__inner {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -17px;
    transform: translateY(77px);
    padding: 30px 30px 30px 204px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

@media (max-width: 980px) {
    .b-reality__inner {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .b-reality__inner {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        box-shadow: none;
        transform: translateY(0);
    }
}

.b-reality__picture {
    position: absolute;
    left: -33px;
    top: -40px;
}

@media (max-width: 980px) {
    .b-reality__picture {
        display: none;
    }
}

.b-reality__content {
    max-width: 586px;
    margin-right: auto;
}

@media (max-width: 768px) {
    .b-reality__content {
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }
}

.b-reality__description {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

@media (max-width: 768px) {
    .b-reality__description {
        margin-bottom: 20px;
    }
}

.b-reality__ok {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #9200CF;
}

@media (max-width: 768px) {
    .b-reality__ok {
        display: none;
    }
}


/* End Reality */

.b-gray-wrapper {
    padding-top: 43px;
    background-color: #FBFBFD;
}

@media (max-width: 420px) {
    .b-gray-wrapper {
        padding-top: 11px;
    }
}


/* Start Why List */

.b-why-list {
    margin-top: 75px;
    padding: 20px 50px 40px 50px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .b-why-list {
        margin-left: -15px;
        margin-right: -15px;
        box-shadow: none;
        border-radius: 0;
    }
}

@media (max-width: 420px) {
    .b-why-list {
        padding: 30px 15px 30px;
        margin-top: -18px;
    }
}

.b-why-list__title {
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

@media (max-width: 420px) {
    .b-why-list__title {
        font-size: 22px;
        line-height: 27px;
    }
}

.b-why-list__item {
    display: flex;
    align-items: flex-start;
}

.b-why-list__item:not(:last-child) {
    margin-bottom: 25px;
}

.b-why-list__content {
    max-width: 747px;
    margin-right: auto;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .b-why-list__content {
        max-width: 100%;
        margin-right: 0;
    }
    .b-why-list__thumbnail {
        display: none;
    }
}

@media (max-width: 420px) {
    .b-why-list__content {
        font-size: 16px;
        line-height: 26px;
    }
}

.b-text-hide {
    display: none;
}

.b-why-list__item-title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

@media (max-width: 420px) {
    .b-why-list__item-title {
        margin-bottom: 15px;
    }
}

.b-why-list__content p {
    margin: 0;
}

.b-why-list__link {
    display: none;
}

@media (max-width: 420px) {
    .b-why-list__link {
        display: flex;
        margin: 30px auto 5px;
    }
}


/* End Why List */

.modal-over {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}

.modal-over .b-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    width: 370px;
    max-width: 100%;
    transform: translate(-50%, -50%);
}

@media(max-width: 560px) {
    .g-recaptcha {
        margin: 0 auto;
    }
}

.nicescroll-rails {
    background: #EAEAEA!important;
    height: 2px!important;
    opacity: 1!important;
}

.nicescroll-cursors {
    height: 6px!important;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%)!important;
    border-radius: 5px!important;
    top: -2px!important;
}

.mCSB_scrollTools .mCSB_draggerContainer {
    background: #EAEAEA!important;
    height: 2px!important;
    opacity: 1!important;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    height: 6px!important;
    background: linear-gradient(101.61deg, #FDD165 5.79%, #9200CF 82.81%)!important;
    border-radius: 5px!important;
    top: -2px!important;
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    display: flex;
}

.mCSB_draggerRail {
    display: none;
}