.banner {
    padding-top: 23px;
    padding-bottom: 35px;
    background-color: #f1f1f199;
    position: relative;
}

.banner .container {
    padding: 0;
}

.banner__inner {
    display: flex;
    flex-direction: column;
}

.banner__header {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 23px;
}

.banner__header-text {
    font-size: 18px;
    font-weight: 600;
    color: #0049ff;
}

.banner__header-title {
    font-size: 25px;
    font-weight: 400;
    margin-top: 9px;
    line-height: 100%;
    letter-spacing: -0.05em;
}

.banner__header-title span {
    font-weight: 700;
}

.banner__header-subtext {
    display: none;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
}

.banner__header-green {
    color: #09d171;
}

.banner__header-subtext span {
    color: #000;
}

.banner__form {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 29px;
    position: relative;
    z-index: 3;
}

.banner__form-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.05em;
}

.banner__values-wrapper {
    width: 100%;
    margin-top: 26px;
}

.banner__value-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 243px;
    margin: 12px auto 0 auto;
}

.banner__value-title {
    font-size: 15px;
    line-height: 21px;
    display: inline-block;
}

.banner__value-wrapper span {
    position: absolute;
    top: 50%;
    right: 53px;
    transform: translateY(-50%);
    font-size: 36px;
    font-weight: 700;
    font-size: 27px;
}

.banner__value-block {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner__value-block:last-child {
    margin-top: 30px;
}

.banner__value-block .range-value-list {
    margin: 0 auto;
    margin-top: 1px;
}

.banner__value-block .range-value-item {
    font-size: 12px;
    line-height: 16px;
}

.banner__form-value {
    padding: 5px 70px 5px 40px;
    background-color: #fff;
    /* box-shadow: 0px 2.4px 12px rgba(0, 0, 0, 0.15); */
    border-radius: 6px;
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    max-width: 212px;
    min-height: 52px;
    -moz-appearance: textfield;
}

.banner__value-wrapper.big {
    max-width: 243px;
    margin: 26px auto 0 auto;
}

.banner__value-wrapper.big span {
    right: 57px;
    font-size: 36px;
}

.banner__form-value.big {
    font-size: 36px;
    max-width: 243px;
    min-height: 61px;
    box-shadow: 0px 2.4px 12px rgba(0, 0, 0, 0.15);
}

.banner__form-value.without-icon {
    padding: 5px 55px;
}

.banner__form-value::-webkit-outer-spin-button,
.banner__form-value::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.banner__form .input-wrapper {
    margin: 34px auto 0 auto;
    width: 100%;
}

.banner__form .input-wrapper.big {
    margin-top: 38px;
}

.banner__form-range {
    max-width: 300px;
    width: 100%;
    height: 5px;
}

.banner__form-range.big {
    max-width: 300px;
}

.banner__form-range::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0049ff;
    border: 1px solid #fff;
}

.banner__form-range::-moz-range-track {
    background-color: #dedede;
    border: none;
    height: 5px;
}

.banner__form-range::-moz-range-progress {
    background-color: #0049ff;
    height: 100%;
}

.banner__form-text {
    font-size: 10px;
    line-height: 13px;
    color: #858585;
    max-width: 328px;
    margin: 11px auto 0 auto;
}

.range-value-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

.range-value-list.big {
    max-width: 300px;
}

.range-value-item {
    font-size: 12px;
    font-weight: 500;
    color: #696464;
}

.range-value-list.big .range-value-item {
    font-size: 12px;
}

.input-wrapper-result {
    display: flex;
    align-items: center;
    max-width: 243px;
    margin: 15px auto 0 auto;
    max-width: 274px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.input-wrapper-result span {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 19px;
    padding: 0 5px;
    position: relative;
}

.input-wrapper-result span:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 1px;
    background-color: #000;
}

.banner__form-btn {
    max-width: 220px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 25px auto 0 auto;
    padding: 11px 28px;
    background-color: #09d171;
    min-height: 48px;
    border-radius: 6px;
}

.banner__form-btn.big {
    max-width: 215px;
    min-height: 48px;
    padding: 11px 22px;
    margin-top: 10px;
}

.calc-form {
    background-color: #FFFFFF;
    padding: 25px 11px;
}

.calc-wrapper.banner__form {
    background-color: #F3F3F3;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: none;
    padding-bottom: 50px;
    padding: 0;
    margin: 0 auto;
    padding: 32px 0;
    border-radius: 15px;
}

.calc-wrapper .banner__form-inner {
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: none;
    padding-bottom: 50px;
    padding: 0;
    margin: 0 auto;
}

.calc-wrapper .banner__form-btn {
    max-width: 282px;
    min-height: 52px;
    background-color: #0049ff;
    padding: 13px 58px;
}

.calc-wrapper .banner__form-btn:hover, .credits__info-btn:hover {
    background-color: #0434D3;
}


.calc-wrapper .banner__form-footer {
    display: flex;
    flex-direction: column;
}

.calc-wrapper .banner__form-footer .banner__form-btn {
    order: 1;
    margin-top: 42px;
}

.calc-wrapper .banner__form-footer .input-wrapper-result {
    order: 2;
    margin-top: 28px;
}

.calc-wrapper .banner__form-footer .banner__form-text {
    order: 3;
    margin-top: 11px;
}

.hiring {
    padding: 24px 0 50px;
    background-color: #0049ff;
}

.hiring__title.title {
    color: #fff;
}

.hiring__inner {
    color: #fff;
}

.hiring__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 24px;
}

.hiring__item {
    max-width: 270px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 18px;
    background-color: #195bfe;
    box-shadow: 0px 3.0691px 15.3455px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    background-color: #306bfe;
    border-radius: 8px;
}

.hiring__item-img {
    width: 46px;
    height: 46px;
}

.hiring__item-title {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.05em;
}

.hiring__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    max-width: 245px;
}

.credits {
    padding: 22px 0 40px;
}

.credits__info {
    text-align: center;
}

.credits__img {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.credits__info-suptitle {
    font-size: 22px;
    font-weight: 400;
    color: #404040;
    line-height: 30px;
    letter-spacing: -0.05em;
}

.credits__info-title {
    font-size: 25px;
    font-weight: 700;
    color: #0049ff;
    line-height: 34px;
}

.credits__info-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    max-width: 300px;
}

.credits__info-text:first-of-type {
    margin: 10px auto 0;
}

.credits__info-text:last-of-type {
    margin: 0 auto;
}

.credits__info-text span {
    font-weight: 700;
}

.credits__info-btn {
    padding: 13px 59px;
    background-color: #0049ff;
    max-width: 280px;
    min-height: 50px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.credits__info-btn a {
    color: #fff;
}

.credits__info-btn a:active, .credits__info-btn a:focus {
    outline: none;
}

.credits__info-btn a::-moz-focus-inner {
    border: 0;
}

.reasons {
    margin-top: 40px;
}

.reasons__title {
    font-size: 22px;
    font-weight: 400 !important;
    line-height: 30px;
    letter-spacing: -0.05em;
}

.reasons__title span {
    font-weight: 700;
}

.reasons__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 25px;

}

.reasons__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 270px;
    min-height: 210px;
    padding: 20px 18px;
    margin: 0 10px;
    box-shadow: 0px 3.06553px 15.3276px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #0049ff;
}

.reasons .img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 3.06553px 15.3276px rgba(0, 0, 0, 0.1);
}

.reasons__item-img {
    width: 46px;
    height: 46px;
}

.reasons__item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-top: 10px;
    letter-spacing: -0.05em;
}

.reasons__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-top: 6px;
}

.reviews {
    padding-bottom: 40px;
}

.reviews .container.no-padding {
    padding-left: 20px;
}

.reviews .swiper {
    margin-top: 25px;
    padding-bottom: 32px;
}

.reviews__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 270px;
    height: 192px;
    box-shadow: 0px 2.92732px 10.9775px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 30px;
}

.reviews__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews__item-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.reviews__item-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.reviews__item-star {
    width: 16px;
    height: 23px;
}

.reviews__item-info {
    display: flex;
    flex-direction: column;
    color: #1a1d27;
}

.reviews__item-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 3px;
    line-height: 23px;
}

.reviews__item-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    margin-top: 2px;
}

.reviews__item-text.bottom {
    margin-top: 8px;
    font-size: 11px;
    line-height: 23px;
}

.reviews__item-name {
    font-weight: 700;
}

.reviews .swiper .swiper-pagination {
    bottom: 0;
}

.callback {
    padding: 30px 0;
    background-image: url("../images/callback-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 170px;
}

.callback__inner {
    display: flex;
    flex-direction: column;
}

.callback__inner span {
    text-align: center;
    font-size: 22px;
    color: #fff;
    padding-bottom: 15px;
}

.callback__title {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.callback__title span {
    font-weight: 700;
}

.callback__btn {
    display: inline-block;
    max-width: 200px;
    width: 100%;
    min-height: 40px;
    background-color: #fff;
    color: #0049ff;
    font-size: 18px;
    font-weight: 700;
    padding: 8 58px;
    margin: 15px auto 0 auto;
    border-radius: 6px;
}

.callback__btn a {
    color: #0049ff;
}

.callback__btn a:active, .callback__btn a:focus {
    outline: none;
}

.callback__btn a::-moz-focus-inner {
    border: 0;
}

.blog {
    padding: 30px 0;
}

.blog .swiper-pagination {
    bottom: 0 !important;
}

.blog .container.no-padding {
    padding-left: 20px;
}

.blog .swiper {
    padding-bottom: 32px;
}

.blog__item {
    width: 290px;
    min-height: 320px;
    padding: 24px 30px 11px 30px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4.38554px 16.4458px rgba(0, 0, 0, 0.1);
}

.blog__item-img {
    width: 100%;
    height: auto;
}

.blog__item-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.05em;
}

.blog__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: auto;
    margin-top: 3px;
}

.blog__item-link {
    font-size: 13px;
    font-weight: 700;
    color: #0049ff;
    text-transform: uppercase;
    margin-top: 20px;
}

.blog__item-link:hover, .blog__view-all-btn:hover {
    text-decoration: underline;
    text-decoration-color: #0049ff;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
}

.blog__view-all-btn {
    text-align: center;
    display: block;
    max-width: 360px;
    min-height: 66px;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.05em;
    background: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.blog__view-all-btn a {
    color: #0049ff;
}

.blog__view-all-btn a:active, .blog__view-all-btn a:focus {
    outline: none;
}

.blog__view-all-btn a::-moz-focus-inner {
    border: 0;
}

.footer {
    background-image: url("../images/footer-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 35px 0;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: center;
}

.footer__logo {
    width: 185px;
    height: 35px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.footer__list-item {
    font-size: 22px;
    font-weight: 700;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
}

.footer__links-item {
    font-size: 14px;
    font-weight: 400;
}

.footer__links-link {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.socials__link {
    width: 26px;
    height: 26px;
}

.socials__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages__list {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 120px;
    width: 100%;
    background-color: #f8f8f899;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
}

.advantages__item {
    width: 140px;
    min-height: 55px;
}

.advantages__item-img {
    width: 18px;
    height: 18px;
}

.advantages__item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-top: 4px;
}

.advantages__item-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #696464;
    margin-top: 3px;
}

.footer-desktop {
    display: none;
    padding: 73px 0 45px;
    background-color: #0049ff;
    background-image: url("../images/footer-circles.svg");
    background-repeat: no-repeat;
    background-position: right;
}

.footer-desktop__inner {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.footer__logo {
    width: 183px;
    height: 35px;
}

.footer__logo-img {
    width: 100%;
    height: 100%;
}

.footer-desktop__list {
    display: flex;
    align-items: center;
    gap: 210px;
    margin-top: 90px;
}

.footer-desktop__list-item {
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: -0.05em;
}

.footer-desktop__text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-top: 55px;
}

.footer-desktop__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #fff;
    max-width: 587px;
}

.footer-desktop__text:nth-of-type(2) {
    margin-top: 20px;
}

.footer-desktop__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.footer-desktop__bottom-list {
    display: flex;
    align-items: center;
    gap: 37px;
}

.footer-desktop__bottom-item {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: -0.05em;
}

.footer-desktop__bottom-link {
    color: #fff;
}

.footer-desktop .socials {
    margin-top: 0;
}

@media (min-width: 875px) {
    .banner .container {
        padding: 0 20px;
    }

    .banner__form {
        box-shadow: none;
    }

    .calc-form,
    .calc-wrapper.banner__form {
        background-color: #F9F9F9;
    }

    .hiring__list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .credits__inner {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 70px;
    }

    .credits__img {
        margin: 0;
        max-width: 300px;
    }

    .credits__info {
        max-width: 550px;
        text-align: left;
    }

    .reasons__list {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 35px;
    }

    .callback {
        padding: 85px 0;
    }

    .banner__inner {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .banner__header {
        max-width: 660px;
        text-align: left;
    }

    .banner__header-text {
        font-size: 30px;
        line-height: 30px;
    }

    .banner__header-title {
        font-size: 30px;
    }

    .banner__header-subtext {
        font-size: 20px;
    }

    .banner__form {
        max-width: 500px;
        width: 100%;
        background-color: #f1f1f1cc;
        padding-bottom: 20px;
        position: relative;
    }

    .banner__header-subtext {
        display: flex;
    }

    .blog__item {
        max-width: 100%;
        min-height: 445px;
    }

    .blog__item-text {
        font-size: 16px;
    }

    .reviews .swiper {
        max-width: 1300px;
    }

    .blog .swiper {
        max-width: 1300px;
    }
}

@media (min-width: 1150px) {
    .banner {
        padding-bottom: 0;
        padding-top: 0;
        background-color: #f9f9f9;
        overflow: hidden;
    }

    .banner-bg {
        background-image: url("../images/banner-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
    }

    .banner__inner {
        justify-content: space-between;
    }

    .banner__form {
        max-width: 730px;
        padding-top: 75px;
        padding-bottom: 0;
    }

    .calc-wrapper.banner__form {
        padding-top: 87px;
    }

    .banner__values-wrapper {
        display: flex;
        align-items: center;
        gap: 88px;
        margin-top: 34px;
        width: 100%;
        justify-content: center;
    }

    .calc-wrapper .range-value-list {
        max-width: 471px;
    }

    .calc-wrapper .range-value-item {
        margin-top: 2px;
        font-size: 23px;
        font-weight: 400;
        line-height: 31px;
    }

    .calc-wrapper .banner__form-inner {
        max-width: 1035px;
    }

    .banner__header-text {
        font-size: 30px;
        line-height: 30px;
        font-weight: 600;
        letter-spacing: -0.05em;
    }

    .banner__header-title {
        font-size: 50px;
        font-weight: 600;
        margin-top: 12px;
        line-height: 100%;
        letter-spacing: -0.05em;
    }

    .banner__header-subtext {
        margin-top: 25px;
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
    }

    .banner__value-block:last-child {
        margin-top: 0;
    }

    .banner__form-title {
        font-size: 32px;
        line-height: 100%;
        font-weight: 400;
        letter-spacing: -0.05em;
    }

    .calc-wrapper .banner__form-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 54px;
        letter-spacing: -0.05em;
    }

    .banner__value-wrapper.big {
        max-width: 405px;
    }

    .banner__value-wrapper.big span {
        font-size: 60px;
        right: 90px;
    }

    .banner__form-btn {
        font-size: 22px;
    }

    .banner__form-btn.big {
        margin-top: 25px;
        width: 359px;
        max-width: 359px;
        height: 66px;
        font-weight: 600;
    }

    .banner__form-value.big {
        max-width: 100%;
        min-height: 102px;
        font-size: 60px;
        font-weight: 700;
        padding: 5px 120px 5px 80px;
        box-shadow: none;
    }

    .banner__value-title {
        font-size: 16px;
    }

    .calc-wrapper .banner__form-btn {
        max-width: 356px;
        min-height: 64px;
        padding: 17px 129px 17px 129px;
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
    }

    .calc-wrapper .banner__form-value {
        font-weight: 600;
    }

    .calc-wrapper .input-wrapper {
        margin-top: 43px;
        max-width: 471px;
    }

    .calc-wrapper .banner__form-range {
        max-width: 471px;
    }

    .calc-wrapper .input-wrapper-result {
        max-width: 100%;
    }

    .calc-wrapper .input-wrapper-result span {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

    .banner__form .input-wrapper {
        width: 471px;
    }

    .banner__form-text {
        max-width: 928px;
        font-size: 12px;
        line-height: 16px;
    }

    .calc-wrapper .banner__form-footer .banner__form-text {
        margin-top: 22px;
    }

    .hiring {
        padding: 54px 0 63px;
    }

    .hiring__title.title {
        font-size: 30px;
    }

    .hiring__list {
        margin-top: 40px;
        gap: 63px;
    }

    .advantages__list {
        display: flex;
        margin-top: 35px;
    }

    .advantages__item {
        width: 145px;
    }

    .credits {
        padding: 23px 0 74px;
        background-color: #fdfdfd;
        background-image: url("../images/credits-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    .credits__inner {
        gap: 70px;
    }

    .credits__info {
        max-width: 550px;
        width: 100%;
    }

    .credits__info-suptitle {
        font-size: 22px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: -0.05em;
    }

    .credits__info-title {
        font-size: 30px;
        font-weight: 400;
        line-height: 54px;
        letter-spacing: -0.05em;
    }

    .credits__info-title span {
        font-weight: 700;
    }

    .credits__info-text {
        margin: 10px 0 0 0 !important;
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .credits__info-text span {
        font-weight: 400;
    }

    .credits__info-text:last-of-type {
        margin-top: 20px !important;
    }

    .credits__info-btn {
        max-width: 360px;
        min-height: 66px;
        padding: 18px 83px;
        margin-top: 24px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -0.05em;
    }

    .credits__img {
        max-width: 698px;
        width: 100%;
        height: 698px;
    }

    .reasons {
        margin-top: 12px;
    }

    .reasons__title.title {
        font-weight: 600 !important;
        font-size: 30px;
    }

    .reasons__title span {
        font-weight: 600;
    }

    .reasons__list {
        justify-content: center;
        margin-top: 40px;
    }

    .reasons__item {
        max-width: 351px;
        min-height: 210px;
        padding: 39px 38px 46px;
    }

    .reasons__item-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: -0.05em;
        margin-top: 19px;
    }

    .reasons__item-text {
        font-size: 14px;
        line-height: 17px;
        margin-top: 8px;
        min-height: 55px;
    }

    .reviews {
        padding: 23px 0 74px;
    }

    .reviews__title.title {
        font-size: 30px;
    }

    .reviews .swiper {
        margin-top: 40px;
    }

    .reviews__item {
        max-width: 403px;
        min-height: 277px;
        padding: 15px 44px;
    }

    .reviews__item-img {
        width: 74px;
        height: 74px;
    }

    .reviews__item-star {
        width: 25px;
        height: 35px;
    }

    .reviews__item-text {
        margin-bottom: auto;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
    }

    .reviews__item-info {
        margin-top: 6px;
    }

    .reviews__item-title {
        font-size: 16px;
        line-height: 35px;
    }

    .reviews__item-text.bottom {
        margin-top: auto;
        font-size: 14px;
    }

    .callback__title {
        font-size: 30px;
        font-weight: 400;
        line-height: 61px;
    }

    .callback__title span {
        font-weight: 600;
    }

    .callback__btn {
        max-width: 360px;
        min-height: 66px;
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: -0.05em;
    }

    .blog {
        padding: 46px 0 60px;
    }

    .blog__title.title {
        font-size: 30px;
    }

    .blog .container.no-padding {
        padding-left: 0;
    }

    .blog__inner {
        padding-bottom: 30px;
        border-bottom: 1px solid #d3d3d3;
    }

    .blog__item {
        width: 403px;
        min-height: 443px;
        padding: 48px 36px 24px;
    }

    .blog .swiper-pagination {
        bottom: 0 !important;
    }

    .blog__item-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.05em;
        margin-top: 17px;
    }

    .blog__item-text {
        font-size: 14px;
        line-height: 21px;
        margin-top: 8px;
    }

    .blog__item-link {
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: -0.05em;
    }

    .footer {
        display: none;
    }

    .footer-desktop {
        display: block;
    }
}

@media (min-width: 400px) {
    .reviews__item {
        width: auto;
    }

    .blog__item {
        width: auto;
        height: auto;
    }
}
