@charset "UTF-8";

@font-face {
    font-family: "Helvetica";
    src: url("../fonts/HelveticaNeue.woff2") format("woff2"),
        url("../fonts/HelveticaNeue.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Helvetica";
    src: url("../fonts/Helvetica-Bold.woff2") format("woff2"),
        url("../fonts/Helvetica-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"),
        url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2"),
        url("../fonts/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body,
html {
    background: white;
    color: #333;
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    letter-spacing: -0.005em;
    min-width: 320px;
    max-width: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.body_hidden {
    overflow: hidden;
}

.page-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul,
ol,
li {
    padding: 0;
    margin: 0;
}

a {
    color: #333;
    text-decoration: none;
    font-family: "Helvetica", sans-serif;
    font-weight: 400;
}

a:hover,
a:focus {
    text-decoration: none;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

.section-title {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 992px) {
    .section-title {
        font-size: 35px;
        line-height: normal;
    }
}

@media only screen and (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
}

/* a:hover {
    color: inherit !important;
}

a:hover {
    color: #ad2f2f !important;
} */
.section-title_color_red {
    color: #d32f2f;
}

.section-title_color_white {
    color: #fff;
}

.headerHeightMarginTop {
    margin-top: var(--headerHeight);
}

.go-back-btn {
    width: 30px;
    display: block;
}

.go-back-btn:before {
    content: url(/images/arrow-left.svg);
    width: 100%;
}

.go-back-btn_margin_bottom {
    margin-bottom: 45px;
}

@media only screen and (max-width: 1200px) {
    .go-back-btn_margin_bottom {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .go-back-btn_margin_bottom {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .go-back-btn_margin_bottom {
        margin-bottom: 25px;
    }
}

.defaultPaddings {
    padding-top: 112px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 1200px) {
    .defaultPaddings {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .defaultPaddings {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .defaultPaddings {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.formBtnMarginTop {
    margin-top: 48px;
}

@media only screen and (max-width: 992px) {
    .formBtnMarginTop {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .formBtnMarginTop {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .formBtnMarginTop {
        margin-top: 25px;
    }
}

.burger {
    display: none;
    width: 30px;
    height: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.burger .icon-bar {
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.burger.active .icon-bar:nth-child(1),
.burger.active .icon-bar:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
}

.burger.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.burger.active .icon-bar:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active .icon-bar:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.up_btn {
    position: fixed;
    border-radius: 50%;
    background-color: #082a3c;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 100;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: none;
}

.up_btn:after {
    position: absolute;
    content: "";
    display: block;
    top: 16px;
    left: 13px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

button {
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field textarea,
.form-field select {
    width: 100%;
}

.form-field__file {
    min-height: 52px;
    display: flex;
    align-items: center;
}

.form-field__error-message {
    color: #d32f2f;
    margin-top: 10px;
    margin-left: 5px;
}

.form-field__file span {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    text-transform: uppercase;
    cursor: pointer;
}

.form-field__file input[type="file"] {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.form-field__name {
    margin-bottom: 22px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #000000;
    font-weight: bold;
    margin-left: 1%;
    margin-top: 0%;
}

@media only screen and (max-width: 768px) {
    .form-field__name {
        font-size: 16px;
        line-height: normal;
    }
}

.form-field_has-btn-del .form-field__name {
    padding-left: 32px;
    position: relative;
}

.form-field_has-btn-del .form-field__delete {
    border: none;
    background: none;
    background: url(/images/x.svg) no-repeat center/100%;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.form-field_has-btn-del .form-field__delete:focus {
    outline: none;
}

.form-field_date {
    position: relative;
}

.form-field_date svg {
    display: block;
    position: absolute;
    bottom: 14px;
    right: 12px;
    width: 24px;
    height: 24px;
    fill: #979797;
    -webkit-transition: 0.3s #d32f2f;
    -o-transition: 0.3s #d32f2f;
    transition: 0.3s #d32f2f;
}

.form-field_date_active svg {
    fill: #d32f2f;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    border: none;
    background: #efefef;
    border-radius: 6px;
    padding-left: 28px;
    padding-right: 28px;
    font-family: "Helvetica";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #212121;
}

input::-webkit-outer-spin-button,
input::-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 */
}

@media only screen and (max-width: 576px) {
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    textarea {
        padding-left: 14px;
        padding-right: 14px;
    }
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
select {
    height: 52px;
}

@media only screen and (max-width: 576px) {
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    select {
        height: 46px;
    }
}

/* Для Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

textarea {
    resize: none;
    height: 100px;
    padding-top: 14px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    border: none;
    background: url(/images/arrow-down.svg) no-repeat right 20px center/12px
        auto;
    background-color: #efefef;
    border-radius: 6px;
    padding-left: 28px;
    padding-right: 28px;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    select {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.btn {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    height: 52px;
    background-color: #bf2e2e;
    border-radius: 0.5em;
    color: #fff;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
}

@media (max-width: 767px) {
    #guthaben-aufladen {
        display: none;
    }
}

.payment-btn {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    height: 52px;
    background-color: #bf2e2e;
    border-radius: 0.5em;
    color: #fff;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
}

.btn1 {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    height: 52px;
    background-color: green;
    border-radius: 0.5em;
    color: #fff;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: -110px;
    margin-right: -103px;
}

.btn5 {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    height: 52px;
    background-color: green;
    border-radius: 0.5em;
    color: #fff;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: -99px;
    margin-right: -103px;
    width: 150px;
}

.proposal-accept {
    right: 40%;
    position: absolute;
    transform: translateY(36px);
    padding: 15px 15px;
    height: 70px;
}

.btn3 {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    height: 52px;
    background-color: green;
    border-radius: 0.5em;
    color: #fff;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: -73px;
    margin-right: -79px;
}
.btn-offer-accept {
    background: #00800033;
    color: #008000;
    border-radius: 7.5px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #008000;
    /* min-width: 160px; */
    height: 44px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    @media (max-width: 767px) {
        /* padding: 14px 6px; */
        font-size: 12px;
        background: #008000;
        color: #ffffff;
        border: none;
    }
}

.btn-offer-reject {
    background: #d32f2f;
    color: #fff;
    /* padding: 10px 24px; */
    border-radius: 7.5px;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    @media (max-width: 767px) {
        /* padding: 14px 6px; */
        font-size: 12px;
    }
}

.bearBtN {
    right: 40%;
    position: absolute;
    transform: translateY(36px);
}

.fertBTN {
    position: absolute;
    top: 42px;
    right: 76px;
    background-color: #d32f2f;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.offerReject {
    position: absolute;
    top: 95px;
    right: 10px;
    background-color: #d32f2f;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.offer-text {
    position: absolute;
    top: 64px;
    right: 24px;
    background-color: yellow;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.offerAccpt {
    right: 13%;
    top: 86%;
    position: absolute;
    transform: translateY(36px);
}

.offerAccept {
    right: 28%;
    top: 86%;
    position: absolute;
    transform: translateY(36px);
}

.offerRject {
    position: absolute;
    top: 123px;
    right: 327px;
    background-color: #d32f2f;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.reject {
    position: absolute;
    top: 335px;
    right: 166px;
    background-color: green;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.inprocess {
    position: absolute;
    top: 14px;
    right: 184px;
    background-color: green;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.offer-accept {
    position: absolute;
    top: 14px;
    right: 184px;
    background-color: green;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.btn-Feedback-form {
    position: absolute;
    top: 68px;
    right: 184px;
    background-color: #d32f2f;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.offer-reject {
    position: absolute;
    top: 14px;
    right: 184px;
    background-color: #d32f2f;
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
}

.aaa {
    top: 39px;
    position: absolute;
    right: 182px;
    background: #fff;
}

/* .btn:hover {
    background-color: #333333;
} */

@media only screen and (max-width: 576px) {
    .aaa {
        height: 30px;
        letter-spacing: 0;
        font-size: 15px;
        /* top: 66%; */
        /* margin-right: 0%; */
        /* position: relative; */
        left: 0;
        margin-top: 66%;
        /* margin-right: 24%; */
        margin-left: 42%;
    }
}

@media only screen and (max-width: 576px) {
    .offerAccpt {
        top: 75%;
        right: 28%;
        font-size: 39%;
        font-weight: bold;
        font-weight: bolder;
        border-radius: 8px;
    }
}

@media only screen and (max-width: 576px) {
    .offerAccept {
        height: 46px;
        letter-spacing: 0;
        font-size: 8px;
        top: 49%;
        margin-right: -27%;
    }
}

@media only screen and (max-width: 576px) {
    .offerRject {
        top: 65%;
        right: 58%;
        font-size: 109%;
    }
}

@media only screen and (max-width: 576px) {
    .btn {
        height: 46px;
        letter-spacing: 0;
        font-size: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .btn-Feedback-form {
        height: 48px;
        margin-right: -47%;
        letter-spacing: 0;
        font-size: 15px;
        margin-top: 20%;
    }
}

.custom-checkbox,
.custom-radio {
    cursor: pointer;
}

.custom-checkbox input,
.custom-radio input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.custom-checkbox input:checked + .custom-checkbox__txt:after,
.custom-checkbox input:checked + .custom-radio__txt:after,
.custom-radio input:checked + .custom-checkbox__txt:after,
.custom-radio input:checked + .custom-radio__txt:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.custom-checkbox input:checked + .custom-checkbox__txt:before,
.custom-checkbox input:checked + .custom-radio__txt:before,
.custom-radio input:checked + .custom-checkbox__txt:before,
.custom-radio input:checked + .custom-radio__txt:before {
    border: none;
    background-color: #d32f2f;
    color: white;
}

.custom-checkbox .custom-checkbox__txt,
.custom-checkbox .custom-radio__txt,
.custom-radio .custom-checkbox__txt,
.custom-radio .custom-radio__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #000000;
}

.custom-checkbox .custom-checkbox__txt:before,
.custom-checkbox .custom-radio__txt:before,
.custom-radio .custom-checkbox__txt:before,
.custom-radio .custom-radio__txt:before {
    content: "";
    display: block;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    border: 1px solid #212121;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 4px;
}

.custom-checkbox .custom-checkbox__txt:after,
.custom-checkbox .custom-radio__txt:after,
.custom-radio .custom-checkbox__txt:after,
.custom-radio .custom-radio__txt:after {
    content: url(/images/check-white-small.png);
    position: absolute;
    left: 2px;
    /* bottom:1px; */
    top: -2px;
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    padding-left: 2px;
    margin-bottom: 1px;
    padding-top: -2px;
}

.datepicker-top-left,
.datepicker-top-right {
    border-top-color: #d32f2f;
}

.datepicker-top-left:before,
.datepicker-top-right:before {
    border-bottom-color: #d32f2f;
}

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
    background: #d32f2f;
    color: #fff;
}

input.is-invalid {
    border: 1px solid #d32f2f;
}

.invalid-feedback {
    margin-top: 10px;
    color: #d32f2f;
    font-weight: 500;
}

.invalid-feedback a {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
}

.icon {
    display: inline-block;
    font-style: normal;
    content: " ";
}

.ico {
    fill: currentColor;
}

.mfp-wrap {
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

html.mfp-helper {
    height: 100%;
}

html.mfp-helper body {
    overflow: hidden;
    height: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.mfp-close-btn-in .mfp-close {
    top: 10px;
    right: 10px;
    opacity: 1;
    width: 30px;
    height: 30px;
    color: transparent !important;
    background: url(/images/x.svg) no-repeat center;
}

.white-popup-block {
    max-width: 730px;
    width: 100%;
    padding: 20px 40px;
    margin: 0 auto;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
}

.popup-buble .popup-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.popup-buble.mfp-ready .popup-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup-buble.mfp-removing .popup-dialog {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.popup-buble.mfp-bg {
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.popup-buble.mfp-ready.mfp-bg {
    opacity: 1;
}

.popup-buble.mfp-removing.mfp-bg {
    opacity: 0;
}

.confirm-deletion {
    max-width: 450px;
}

.confirm-deletion__txt {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.confirm-deletion__wrap {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.confirm-deletion__btn-l {
    margin-right: 30px;
    font-size: 16px;
    font-weight: 600;
}

.confirm-deletion__btn-r {
    height: 48px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer * {
    color: #fff;
}

.footer p {
    line-height: 25px;
}

.footer a {
    transition: color 0.3s;
}

.footer h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    font-family: "Gilroy";
}

.footer a:hover {
    color: #e8cf51;
    text-decoration: underline;
}

.footer__inner {
    background-color: #d81010;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer__bottom {
    padding: 30px 0;
    background: linear-gradient(50deg, #ff0000, #a12727);
}

.footer svg {
    display: block;
    margin-bottom: -1px;
}

.footer__logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 576px) {
    .footer {
        display: none;
    }

    .footer-mobile {
        display: flex;
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
    }

    .page-heading {
        display: none;
    }

    .page-heading-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }
}

@media only screen and (min-width: 577px) {
    .footer {
        display: block;
    }

    .footer-mobile {
        display: none;
    }

    .contact-form button {
        width: fit-content;
    }

    .page-heading {
        display: block;
    }

    .page-heading-mobile {
        display: none;
    }
}

.page-heading-mobile a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    padding: 15px 18px;
    border-radius: 7.5px;
    background: #bf2e2e;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.page-heading-mobile h4 {
    color: #212121;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.12px;
}

.footer-mobile .top-footer {
    padding: 30px 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15.5px;
    background: #d81010;
    bottom: 0;
    margin: 0 !important;
}

.footer-mobile .top-footer p,
.footer-mobile .top-footer a {
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.08px;
}

.footer-mobile .bottom-footer {
    padding: 10px 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(77deg, #f00 0%, #a12727 100%);
}

.footer-mobile .bottom-footer p,
.footer-mobile .bottom-footer a {
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.08px;
}

/* .footer {
    background-color: #D32F2F;
    padding-top: 56px;
    padding-bottom: 27px;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 576px) {
    .footer {
        padding-top: 45px;
    }
}

.footer:before {
    content: url(/images/footer-bg.webp);
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 1439px) {
    .footer:before {
        display: none;
        content: '';
    }
}

.footer__row {
    margin-top: 30px;
}

.footer__row:first-child {
    margin-top: 0;
}

.footer__row_second {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 768px) {
    .footer__row_second {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__wrap_lists {
    max-width: 175px;
}

@media only screen and (max-width: 768px) {
    .footer__wrap_lists {
        max-width: 100%;
    }
}

.footer__logo {
    max-width: 325px;
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 576px) {
    .footer__logo {
        max-width: 270px;
    }
}

.footer__list {
    margin-top: 20px;
}

.footer__list:first-child {
    margin-top: 0;
}

.footer__list-item>a {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.footer__list-item_has-sublist>a {
    position: relative;
}

.footer__sublist {
    display: none;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    background-color: transparent;
}

.footer__sublist-item {
    margin-top: 10px;
}

.footer__sublist-item a {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #fff;
}

.footer__sublist-item a:hover {
    text-decoration: underline;
}

.footer__wrap_contact {
    margin-left: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (max-width: 768px) {
    .footer__wrap_contact {
        margin-left: 0;
        margin-top: 30px;
    }
}

.footer__contact-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.footer__contact-links {
    margin-top: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__contact-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    text-transform: lowercase;
    color: #FFFFFF;
    padding-left: 37px;
    position: relative;
    margin-top: 14px;
}

.footer__contact-link:first-child {
    margin-top: 0;
}

.footer__contact-link:hover {
    text-decoration: underline;
}

.footer__contact-link:before {
    width: 30px;
    position: absolute;
    top: calc(50% + 2px);
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer__contact-link_email:before {
    content: url(/images/msg.svg);
}

.footer__contact-link_tel:before {
    content: url(/images/call.svg);
}

.footer__contact-soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.footer__contact-soc-item {
    max-width: 30px;
    max-height: 22px;
    margin-left: 36px;
}

@media only screen and (max-width: 992px) {
    .footer__contact-soc {
        transform: none;
        margin-top: 19px;
        position: static;
    }

    .footer__contact-soc-item {
        margin-left: 20px;
    }
}

.footer__contact-soc-item:first-child {
    margin-left: 0;
}

.footer__contact-soc-item svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
    fill: #fff;
}

.footer__row_third {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .footer__row_third {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
    }
}

.footer__copy,
.footer__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.footer__links {
    margin-left: 48px;
}

.footer__link {
    margin-right: 48px;
    text-decoration: underline;
}

@media only screen and (max-width: 1200px) {

    .footer__links {
        margin-left: 25px;
    }

    .footer__link {
        margin-right: 25px;
    }
}

@media only screen and (max-width: 992px) {
    .footer__links {
        margin-left: 0;
    }
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__link:last-child {
    margin-right: 0;
}

.footer__sub-arrow {
    display: block;
    background: url(/images/arrow-down.svg) no-repeat center/100% auto;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s -webkit-transform;
    transition: 0.3s -webkit-transform;
    -o-transition: 0.3s transform;
    transition: 0.3s transform;
    transition: 0.3s transform, 0.3s -webkit-transform;
    -webkit-filter: invert(1);
    filter: invert(1);
}

.footer__sub-arrow_select {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.footer_login {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer_login:before {
    content: '';
    display: none;
}

.footer__l-link,
.footer__l-txt {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
}

@media only screen and (max-width: 992px) {
    .footer__l-txt {
        margin-top: 10px;
    }

    .footer__copy {
        order: 1;
        margin-top: 19px;
    }
}

.footer__l-txt a {
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.footer__l-txt a:hover {
    text-decoration: underline;
}

.footer__l-link:hover {
    text-decoration: underline;
} */

.form-contact-us {
    max-width: 453px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.form-contact-us__l {
    width: 62.69%;
}

.form-contact-us__r {
    width: 35.09%;
}

.form-contact-us .form-contact-us__field {
    width: 100%;
    border-radius: 39px;
}

.form-contact-us .form-contact-us__btn {
    width: 100%;
}

.form-contact-us__invalid {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #d32f2f;
}

@media only screen and (max-width: 576px) {
    .form-contact-us {
        flex-direction: column;
    }

    .form-contact-us__l,
    .form-contact-us__r {
        width: 100%;
    }

    .form-contact-us__r {
        margin-top: 15px;
    }
}

.form-contact-us_invalid .form-contact-us__field {
    border: 1px solid #d32f2f;
}

.form-contact-us_invalid .form-contact-us__invalid {
    display: block;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
}

.header__top {
    background: linear-gradient(90deg, #bf2e2e, #ff0000);
    min-height: 32px;
    display: flex;
    align-items: center;
}

.header__top a {
    color: #fff;
    transition: color 0.3s;
}

.header__top a:hover {
    color: #000;
}

.header__bottom {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 10%), 0 2px 1px -1px rgb(0 0 0 / 5%);
}

@media only screen and (max-width: 992px) {
    .header__bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .header__bottom {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.5);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #fff;
        padding: 15px;
        height: calc(var(--vh) * 100 - var(--headerHeight));
        overflow-y: auto;
        width: 100%;
    }
}

.header__nav_transition {
    -webkit-transition: 0.2s -webkit-transform;
    transition: 0.2s -webkit-transform;
    -o-transition: 0.2s transform;
    transition: 0.2s transform;
    transition: 0.2s transform, 0.2s -webkit-transform;
}

@media only screen and (max-width: 992px) {
    .header__nav.active {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.header__logo {
    max-width: 220px;
    width: 100%;
    display: block;
}

@media only screen and (max-width: 576px) {
    .header__logo {
        max-width: 160px;
    }
}

.header__logo img {
    display: block;
    width: 100%;
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header__menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header__item {
    position: relative;
    margin-left: 36px;
}

@media only screen and (max-width: 1200px) {
    .header__item {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .header__item {
        margin-top: 16px;
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header__item:first-child {
    margin-left: 0;
}

@media only screen and (max-width: 992px) {
    .header__item:first-child {
        margin-top: 0;
    }
}

@media only screen and (min-width: 993px) {
    .header__item:hover .header__wrap-sub-menu {
        display: block;
    }

    .header__item:before {
        display: block;
        content: "";
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #d32f2f;
        opacity: 0;
        -webkit-transition: 0.3s opacity;
        -o-transition: 0.3s opacity;
        transition: 0.3s opacity;
    }

    .header__item:hover:before {
        opacity: 1;
    }
}

.header__link {
    position: relative;
}

.header__sub-arrow {
    display: none;
}

@media only screen and (max-width: 992px) {
    .header__sub-arrow {
        display: block;
        background: url(/images/arrow-down.svg) no-repeat center/100% auto;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        left: calc(100% + 10px);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: 0.3s -webkit-transform;
        transition: 0.3s -webkit-transform;
        -o-transition: 0.3s transform;
        transition: 0.3s transform;
        transition: 0.3s transform, 0.3s -webkit-transform;
    }
}

.header__sub-arrow_select {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.header__links {
    margin-left: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .header__links {
        margin-left: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .header__links {
        margin-top: 20px;
        margin-left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header__link,
.header__login-txt,
.header__sub-link {
    font-family: "Helvetica";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #212121;
}

.header__login-txt,
.header__become-partner {
    position: relative;
}

@media only screen and (min-width: 993px) {
    .header__login-txt:before,
    .header__become-partner:before {
        display: block;
        content: "";
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #d32f2f;
        opacity: 0;
        -webkit-transition: 0.3s opacity;
        -o-transition: 0.3s opacity;
        transition: 0.3s opacity;
    }

    .header__login-txt:hover:before,
    .header__become-partner:hover:before {
        opacity: 1;
    }
}

.header__wrap-sub-menu {
    position: absolute;
    top: 100%;
    left: -30px;
    padding-top: 32px;
    width: 200px;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .header__wrap-sub-menu {
        padding-top: 32px;
    }
}

@media only screen and (max-width: 992px) {
    .header__wrap-sub-menu {
        position: static;
        padding-top: 10px;
        max-width: 342px;
        width: 100%;
    }
}

.header__sub-menu {
    padding-top: 10px;
    background: #f8f8f8;
    border-radius: 0px 0px 10px 10px;
}

@media only screen and (max-width: 992px) {
    .header__sub-menu {
        padding-top: 0;
        border-radius: 10px;
    }
}

.header__sub-link {
    padding-left: 27px;
    padding-right: 27px;
    padding-top: 6px;
    padding-bottom: 8px;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header__sub-link:hover {
    background: #d32f2f;
    color: #fff;
}

.header__sub-item:last-child .header__sub-link {
    border-radius: 0 0 10px 10px;
}

@media only screen and (max-width: 992px) {
    .header__sub-item:first-child .header__sub-link {
        border-radius: 10px 10px 0 0;
    }
}

.header__become-partner {
    margin-left: 32px;
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #d32f2f;
}

@media only screen and (max-width: 1200px) {
    .header__become-partner {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .header__become-partner {
        margin-left: 0;
        margin-top: 20px;
    }
}

.header__login {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .header__login {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 993px) {
    .header__login:hover .header__wrap-sub-menu {
        display: block;
    }
}

.header__login-txt {
    cursor: pointer;
}

.burger {
    display: none;
    width: 28px;
    height: 18px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.burger .icon-bar {
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    width: 100%;
    height: 2px;
    background-color: #d32f2f;
}

@media only screen and (max-width: 992px) {
    .burger .icon-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.burger.active .icon-bar:nth-child(1),
.burger.active .icon-bar:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
}

.burger.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.burger.active .icon-bar:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active .icon-bar:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header_congratulations {
    position: relative;
}

.page__container {
    margin: 0 0 0 0;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

@media only screen and (max-width: 992px) {
    .page__container {
        margin: 0 0 0 0;
        background: #f8f8f8;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.contact-form .form-group label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.08px;
    margin-bottom: 10px;
}

.contact-form button {
    background: #bf2e2e;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.08px;
    line-height: normal;
    padding: 15px 38px;
    border-radius: 8px;
}

.contact-form button:hover {
    background: #bf2e2e;
}

.contact-form #reasonDropdown,
.contact-form #proposalDropdown,
.contact-form #messageTextarea {
    padding: 15px 14px;
    border-radius: 8px;
    font-size: 14px;
    background: #efefef;
    color: #333333;
}

.contact-form #reasonDropdown:hover,
.contact-form #proposalDropdown:hover {
    cursor: pointer;
}

.page-heading {
    margin: 0 0 0 0;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

@media only screen and (max-width: 992px) {
    .page-heading {
        /* margin: 30px 0 0 0; */
        background: #f8f8f8;
        padding: 20px;
        border-radius: 8px;
    }
}

.page-heading .page-heading-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-heading .page-heading-title h4 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    line-height: 18.4px;
    letter-spacing: -0.08px;
}

.page-heading .page-heading-title a {
    display: flex;
    flex-direction: row;
    column-gap: 6px;
    align-items: center;
    padding: 9px 15px;
    border-radius: 8px;
    border: 1px solid #c62929;
    background: rgba(198, 41, 41, 0.08);
    font-weight: 600;
    font-size: 14px;
    color: #c62929;
}

.page-heading .page-heading-description {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.page-heading .page-heading-description p {
    font-size: 16px;
    font-weight: 600;
    line-height: 18.4px;
    letter-spacing: -0.08px;
    color: #333333;
}

.page-title-sec {
    margin-top: var(--headerHeight);
    padding: 70px 0;
    background: #d32f2f;
}

@media only screen and (max-width: 1200px) {
    .page-title-sec {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 992px) {
    .page-title-sec {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 768px) {
    .page-title-sec {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 576px) {
    .page-title-sec {
        padding: 30px 0;
    }
}

.page-title-sec__title {
    font-weight: 600;
    font-family: "Gilroy";
    font-size: 72px;
    line-height: 84px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .page-title-sec__title {
        font-size: 65px;
        line-height: normal;
    }
}

@media only screen and (max-width: 992px) {
    .page-title-sec__title {
        font-size: 55px;
    }
}

@media only screen and (max-width: 768px) {
    .page-title-sec__title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 576px) {
    .page-title-sec__title {
        font-size: 35px;
    }
}

.js-temporary-wrap {
    display: none;
}

.review {
    border: 1px solid #d32f2f;
    border-radius: 50px;
    padding: 25px 30px;
}

@media only screen and (max-width: 992px) {
    .review {
        border-radius: 23px;
        padding: 12px 10px;
    }
}

.review p {
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.2px;
}

p.review__date,
p.review__name {
    color: #212121;
    opacity: 0.4;
}

p.review__txt {
    color: #212121;
}

p.review__name {
    padding-right: 5px;
}

p.review__title {
    color: #d32f2f;
    letter-spacing: -0.005em;
}

.review__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .review {
    min-height: 200px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 576px) {
    .review {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 10px;
    }
}

.review__info {
    padding-left: 30px;
    padding-top: 15px;
}

@media only screen and (max-width: 576px) {
    .review__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 0;
    }
}

.review__name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .review__name {
        font-size: 20px;
        line-height: normal;
    }
}

@media only screen and (max-width: 576px) {
    .review__name {
        text-align: center;
    }
}

.review__stars-rating {
    margin-top: 4px;
}

.review__txt {
    margin-top: 14px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .review__txt {
        margin-top: 10px;
    }
}

.review__img {
    border-radius: 10px;
} */

img.review__img {
    border-radius: 50%;
}

.company__info {
    margin-left: 59%;
    margin-bottom: -6%;
    margin-top: 4%;
}

@media only screen and (max-width: 576px) {
    .company__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 0;
        margin-bottom: -1%;
    }
}

.stars-rating {
    height: 24px;
    min-width: 95px;
    max-width: 95px;
    background-image: url(/images/star_empty_v2.webp);
    background-repeat: repeat-x;
    background-position: left center;
    position: relative;
}

.stars-rating:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-image: url(/images/star_full_v2.webp);
    background-repeat: repeat-x;
    background-position: left center;
}

.stars-rating_fullness_0-5:before {
    width: 7px;
}

.stars-rating_fullness_1:before {
    width: 20px;
}

.stars-rating_fullness_1-5:before {
    width: 26px;
}

.stars-rating_fullness_2:before {
    width: 35px;
}

.stars-rating_fullness_2-5:before {
    width: 46px;
}

.stars-rating_fullness_3:before {
    width: 55px;
}

.stars-rating_fullness_3-5:before {
    width: 66px;
}

.stars-rating_fullness_4:before {
    width: 75px;
}

.stars-rating_fullness_4-5:before {
    width: 86px;
}

.stars-rating_fullness_5:before {
    width: 95px;
}

.step-by-step {
    counter-reset: i;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .step-by-step {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.step-by-step__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    text-align: left;
}

@media only screen and (max-width: 1200px) {
    .step-by-step__item {
        margin-top: 40px;
    }
}

.step-by-step__item:last-child:after {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .step-by-step__item:first-child {
        margin-top: 0;
    }
}

.step-by-step__item:after {
    content: "";
    display: block;
    position: absolute;
    top: 135px;
    left: 110%;
    height: 26px;
    width: 80px;
    background: url(/images/arrow-right_step.svg) no-repeat center right/100%
        auto;
}

@media only screen and (max-width: 1200px) {
    .step-by-step__item:after {
        display: none;
        background: none;
    }
}

.step-by-step__item-counter {
    width: calc(100% / 3);
}

.step-by-step__item-counter:before {
    content: counter(i);
    counter-increment: i;
    font-family: "Helvetica";
    font-weight: 700;
    font-size: 80px;
    line-height: 120px;
    letter-spacing: -0.005em;
    color: #d32f2f;
}

@media only screen and (max-width: 576px) {
    .step-by-step__item-counter:before {
        line-height: 100px;
    }
}

.step-by-step__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #212121;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .step-by-step__item-title {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 576px) {
    .step-by-step__item-title {
        font-size: 22px;
        line-height: normal;
        margin-top: 5px;
    }

    .step-by-step__item-counter {
        display: none;
    }

    .step-by-step__item-title::before {
        content: counter(i) ". ";
        counter-increment: i;
    }
}

.step-by-step__item-txt {
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .step-by-step__item-txt {
        font-size: 16px;
        line-height: normal;
        margin-top: 15px;
    }
}

.steps-desc {
    padding-top: 100px;
}

@media only screen and (max-width: 1200px) {
    .steps-desc {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .steps-desc {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .steps-desc {
        padding-top: 40px;
    }
}

.steps-desc__section-title {
    text-align: left;
    margin-top: 45px;
}

@media only screen and (max-width: 992px) {
    .steps-desc__section-title {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .steps-desc__section-title {
        margin-top: 20px;
    }
}

.steps-desc__subtitle {
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -0.005em;
    color: #212121;
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    .steps-desc__subtitle {
        font-size: 20px;
        line-height: normal;
    }
}

.steps-desc__txt {
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .steps-desc__txt {
        font-size: 16px;
        line-height: normal;
    }
}

.steps-forms_margin_top {
    margin-top: 30px;
}

@media only screen and (max-width: 992px) {
    .steps-forms_margin_top {
        margin-top: 40px;
    }
}

.steps-forms_margin_bottom {
    margin-bottom: 120px;
}

.steps-forms .btn {
    padding-left: 30px;
    padding-right: 30px;
    white-space: pre-line;
}

.steps-form__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
}

.steps-indicators_margin_top {
    margin-top: 70px;
}

@media only screen and (max-width: 992px) {
    .steps-indicators_margin_top {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .steps-indicators_margin_top {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 576px) {
    .steps-indicators_margin_top {
        margin-top: 30px;
    }
}

.steps-indicators__wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #f6f6f6;
    border-radius: 40px;
    counter-reset: i;
    position: relative;
    overflow: hidden;
}

.steps-indicators__wrap:before {
    content: "";
    width: 100%;
    left: 0;
    height: 4px;
    background-color: #fff;
    position: absolute;
    top: 62px;
}

@media only screen and (max-width: 576px) {
    .steps-indicators__wrap:before {
        top: 39px;
    }
}

@media only screen and (max-width: 576px) {
    .steps-indicators__wrap {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.steps-indicators__wrap-3-steps {
    max-width: 820px;
}

.steps-indicators__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .steps-indicators__item {
        padding-left: 0;
        padding-right: 0;
    }
}

.steps-indicators__item:first-child:before {
    content: "";
    height: 4px;
    width: 100%;
    background-color: #f6f6f6;
    position: absolute;
    top: 22px;
    right: 50%;
}

@media only screen and (max-width: 576px) {
    .steps-indicators__item:first-child:before {
        top: 19px;
    }
}

.steps-indicators__item:last-child:before {
    content: "";
    height: 4px;
    width: 100%;
    background-color: #f6f6f6;
    position: absolute;
    top: 22px;
    left: 50%;
}

@media only screen and (max-width: 576px) {
    .steps-indicators__item:last-child:before {
        top: 19px;
    }
}

.steps-indicators__counter {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #979797;
    -webkit-transition: 0.3s background;
    -o-transition: 0.3s background;
    transition: 0.3s background;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .steps-indicators__counter {
        width: 40px;
        height: 40px;
    }
}

.steps-indicators__counter:before {
    content: counter(i);
    counter-increment: i;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
}

@media only screen and (max-width: 576px) {
    .steps-indicators__counter:before {
        font-size: 20px;
        line-height: 20px;
    }
}

.steps-indicators__txt {
    margin-top: 32px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.2px;
    color: #212121;
}

@media only screen and (max-width: 992px) {
    .steps-indicators__txt {
        display: none;
    }
}

.steps-indicators__wrap_3-steps {
    /* max-width: 820px; */
    max-width: 100%;
}

.steps-indicators__item_active .steps-indicators__counter {
    background: #d32f2f;
}

.temp-form-steps {
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 30px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.temp-form-steps .steps-forms__block {
    margin-top: 35px;
}

.temp-form-steps .steps-forms__block:first-child {
    margin-top: 0;
}

.temp-form-steps .steps-forms__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 820px;
    width: 100%;
}

@media only screen and (max-width: 576px) {
    .temp-form-steps .steps-forms__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.temp-form-steps .form-field {
    width: calc(50% - 20px);
    margin-top: 40px;
}

@media only screen and (max-width: 992px) {
    .temp-form-steps .form-field {
        width: calc(50% - 15px);
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .temp-form-steps .form-field {
        width: 100%;
    }
}

@media only screen and (min-width: 577px) {
    .temp-form-steps .form-field:nth-child(-n + 2) {
        margin-top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .temp-form-steps .form-field:first-child {
        margin-top: 0;
    }
}

.temp-form-steps .form-field_full {
    width: 100%;
    max-width: 820px;
}

.temp-form-steps .steps-form__title + .steps-forms__wrap {
    margin-top: 22px;
}

.temp-form-steps .steps-form__checkboxes .row > div {
    margin-top: 18px;
}

.temp-form-steps .prev-step {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    background-color: #979797;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #ffffff;
    cursor: pointer;
    height: 52px;
    border-radius: 0.5em;
    transition: 0.3s;
}

.temp-form-steps .prev-step:hover {
    background-color: #c5c5c5;
}

@media only screen and (max-width: 576px) {
    .temp-form-steps .prev-step {
        height: 46px;
        letter-spacing: 0;
        font-size: 15px;
    }
}

.acc-bank-card .acc-bank-card__inner {
    max-width: 360px;
    width: 100%;
}

.acc-bank-card .acc-bank-card__inner > .acc-bank-card__form-field:first-child {
    margin-top: 0;
}

.acc-bank-card .acc-bank-card__form-field {
    margin-top: 40px;
}

@media only screen and (max-width: 768px) {
    .acc-bank-card .acc-bank-card__form-field {
        margin-top: 20px;
    }

    .temp-form-steps {
        padding: 15px;
        border-radius: 15px;
    }
}

.acc-bank-card .acc-bank-card__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 304px;
    width: 100%;
}

.acc-bank-card .acc-bank-card__wrap .acc-bank-card__form-field {
    width: calc(50% - 12px);
}

.acc-bank-card__btn {
    padding-left: 30px;
    padding-right: 30px;
}

.acc-billing-item {
    width: 100%;
    min-height: 186px;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 24px 32px 88x 24px;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .acc-billing-item {
        padding: 10px;
        border-radius: 10px;
    }
}

.acc-billing-item-top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
}

.acc-billing-item__top-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__top-line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.acc-billing-item__btn-info {
    position: absolute;
    top: 41px;
    right: 306px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Gilroy";
    height: 38px;
    padding: 5px 34px 5px 10px;
    border-radius: 9px;
    color: #fff;
    background: url(/images/more-info.svg) no-repeat right 9px center / 18px
        auto;
    background-color: #d32f2f;
    margin-right: -37%;
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__btn-info {
        margin-top: 58%;
        font-size: 83%;
        margin-left: 81%;
        right: 89%;
        padding: 5px 15px;
        width: 150px;
        text-align: start;
    }
}

.acc-billing-item__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 42px;
    color: #212121;
    letter-spacing: -0.005em;
    font-weight: bold;
}

.feedback-heading {
    font-size: 186%;
    font-weight: bold;
}

.companyname-heading {
    font-size: 259%;
    font-weight: bold;
    text-align: center;
}

.star-rating {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 20px;
}

.count {
    font-size: 20px;
    margin-left: 100%;
    margin-top: -22px;
}

.bar-container {
    height: 20px;
    background-color: lightgray;
    border-radius: 10px;
    overflow: hidden;
    width: 700px;
}

.bar {
    height: 100%;
    background-color: red;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 10px);
    margin-right: 10px;
}

.rating-number {
    font-size: 24px;
    font-weight: bold;
    margin-left: -104%;
    margin-bottom: -20px;
}

.rating-value {
    font-size: 19px;
    font-weight: bold;
    /* color: #555; */
    margin-left: 109%;
    margin-top: -21px;
}

.overall-summary {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-star {
    font-size: 35px;
    color: #fbbc04;
    margin-top: 16%;
    margin-left: 30%;
}

.rating-count {
    margin-left: -177px;
    font-size: 71px;
}

.total-ratings {
    margin-left: 305px;
    font-size: 52px;
    margin-bottom: 3%;
}

.feedback-form-heading {
    font-size: 254%;
    font-weight: bold;
    /* text-align: center; */
    margin-left: 33%;
    margin-top: -11%;
}

.feedback-subheading {
    font-size: 152%;

    text-align: center;
}

@media only screen and (max-width: 1200px) {
    .rating-count {
        margin-left: -148px;
        font-size: 50px;
    }
}

@media only screen and (max-width: 1200px) {
    .total-ratings {
        margin-left: 139px;
        font-size: 40px;
        margin-bottom: 3%;
    }
}

@media only screen and (max-width: 1200px) {
    .rating-star {
        font-size: 35px;
        color: #fbbc04;
        margin-top: 103px;
        margin-left: 12%;
    }
}

@media only screen and (max-width: 1200px) {
    .rating-value {
        font-size: 18px;
        font-weight: bold;
        /* color: #555; */
        margin-left: 93%;
        margin-top: -21px;
    }
}

@media only screen and (max-width: 1200px) {
    .rating-number {
        font-size: 22px;
        font-weight: bold;
        margin-left: -90%;
        margin-bottom: -20px;
    }
}

@media only screen and (max-width: 1200px) {
    .bar-container {
        height: 29spx;
        background-color: lightgray;
        border-radius: 11px;
        overflow: hidden;
        width: 236px;
    }
}

@media only screen and (max-width: 1200px) {
    .count {
        font-size: 19px;
        margin-left: 91%;
        margin-top: -20px;
    }
}

@media only screen and (max-width: 1200px) {
    .feedback-form-heading {
        font-size: 241%;
        font-weight: bold;
        /* text-align: center; */
        margin-left: 7%;
        margin-top: -28%;
    }
}

@media only screen and (max-width: 1200px) {
    .feedback-form-heading {
        font-size: 241%;
        font-weight: bold;
        /* text-align: center; */
        margin-left: 7%;
        margin-top: -28%;
    }
}

@media only screen and (max-width: 1200px) {
    .feedback-heading {
        font-size: 120%;
        font-weight: bold;
        text-align: center;
    }
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__title {
        font-size: 23px;
        line-height: normal;
        /* margin-top: -10%; */
    }
}

.acc-billing-item__date {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
    margin-left: 20px;
    margin-top: 3px;
}

.proposal-id {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: #212121;
    display: block;
    @media (max-width: 767px) {
        display: none;
    }
}
.proposal-id-row {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: #212121;
    display: none;
    @media (max-width: 767px) {
        display: block;
    }
}
.proposal_id {
    position: absolute;
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: #212121;
    /* margin-left: 122px; */
    margin-top: 3px;
    /* margin-right: -16%; */
    right: 3%;
    top: 0%;
}

@media only screen and (max-width: 1200px) {
    .proposal_id {
        margin-left: 0px;
        margin-top: 2px;
    }
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__date {
        margin-left: 10px;
        margin-top: 2px;
    }
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__date {
        margin-left: 0;
        margin-top: 4px;
    }
}

.acc-billing-item__path {
    font-weight: 600;
    font-size: 15px;
    line-height: 36px;
    color: #212121;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__path {
        font-size: 18px;
        line-height: normal;
    }
}

.acc-billing-item__characteristic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__characteristic {
        margin-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__characteristic_actions {
        margin-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.acc-billing-item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__actions {
        margin-top: 46px;
    }
}

.acc-billing-item__btn-accept {
    margin-right: 20px;
    color: #d32f2f;
    width: max-content;
    max-width: 140px;
}

.acc-billing-item__btn-accept:after {
    background-size: 14px 14px;
    background-image: url(/images/check_v2.svg);
}

.acc-billing-item__btn-cancel {
    color: #979797;
}

.acc-billing-item__btn-cancel:after {
    background-size: 12px 12px;
    background-image: url(/images/x_v2.svg);
}

.acc-billing-item__btn-accept,
.acc-billing-item__btn-cancel {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.2px;
    display: block;
    padding-right: 24px;
    position: relative;
    text-align: center;
}

.acc-billing-item__btn-accept:after,
.acc-billing-item__btn-cancel:after {
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.acc-billing-item__characteristic-txt {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
    margin-right: 10px;
}

.acc-billing-item__download {
    /* font-family: Helvetica;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #D32F2F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center; */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px;  */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px; */
    margin-right: 6%;
    margin-top: 21px;
    background: #d32f2f;
    padding: 9px 21px;
    color: #fff;
    border-radius: 8px;
    /* margin-left: -7%; */
    /* margin-right: 4%; */
    font-weight: bold;
    font-size: 118%;
    margin-top: -122px;
    margin-right: 2%;
}
.acc-billing-item-download {
    background: #cacaca;
    color: #494949;
    border-radius: 8px;
    font-weight: bold;
    width: 175px;
    font-size: 14px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 767px) {
        padding: 6px;
        font-size: 12px;
        width: fit-content;
        height: 28px;
        border-radius: 4px;
    }
}
.acc-billing-item__download_umzug {
    /* font-family: Helvetica;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #D32F2F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center; */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px;  */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px; */
    margin-right: 6%;
    margin-top: 21px;
    background: #d32f2f;
    padding: 9px 21px;
    color: #fff;
    border-radius: 8px;
    /* margin-left: -7%; */
    /* margin-right: 4%; */
    font-weight: bold;
    font-size: 118%;
    margin-top: -122px;
    margin-right: 2%;
}
.acc-billing-item__download_both {
    /* font-family: Helvetica;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #D32F2F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center; */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px;  */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* margin-left: 30px; */
    margin-right: 6%;
    margin-top: 21px;
    background: #d32f2f;
    padding: 9px 21px;
    color: #fff;
    border-radius: 8px;
    /* margin-left: -7%; */
    /* margin-right: 4%; */
    font-weight: bold;
    font-size: 118%;
    margin-top: -106px;
    margin-right: 2%;
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__characteristic-txt {
        font-weight: 400;
        font-size: 19px;
        line-height: 28px;
        color: rgb(33, 33, 33);
        margin-right: 10px;
        margin-top: 5%;
    }
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__download {
        position: absolute;
        right: 14%;
        /* display: none; */
        /* margin-right: 80%; */
        top: 36%;
    }
}
@media only screen and (max-width: 576px) {
    .acc-billing-item__download_umzug {
        position: absolute;
        right: 14%;
        /* display: none; */
        /* margin-right: 80%; */
        top: 33%;
    }
}

@media only screen and (max-width: 576px) {
    .acc-billing-item__download_both {
        position: absolute;
        right: 14%;
        /* display: none; */
        /* margin-right: 80%; */
        top: 28%;
    }
}

.acc-billing-item__download:after {
    /* content: url(/images/arrow-right.svg); */
    width: 18px;
    margin-left: 12px;
    margin-top: 2px;
}

.acc-billing-item__actions2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 24px;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__actions2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.acc-billing-item__slide-content2 {
    margin-top: 36px;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__slide-content2 {
        margin-top: 20px;
    }
}

.acc-billing-item__btn-offers-company {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
}

.acc-billing-item__btn-offers-company:after {
    content: "+";
    margin-left: 2px;
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.acc-billing-item__btn-offers-company_open:after {
    content: "-";
}

.acc-billing-item__btn-cancel2 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: #d32f2f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__btn-cancel2 {
        margin-top: 10px;
    }
}

.acc-billing-item__btn-cancel2 svg {
    fill: #d32f2f;
    width: 16px;
    height: 16px;
    margin-left: 13px;
    margin-bottom: 2px;
}

.acc-billing-item__btn-cancel2_canceled {
    color: #979797;
}

.acc-billing-item__btn-cancel2_canceled svg {
    display: none;
}

.acc-billing-item__slide-content {
    margin-top: 31px;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__slide-content {
        margin-top: 127px;
    }
}

.acc-billing-item__slide-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 25px;
}

.acc-billing-item__slide-content-row:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__slide-content-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 14px;
    }
}

.acc-billing-item__slide-content-l {
    padding-right: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
    padding-left: 18px;
    position: relative;
}

.acc-billing-item__slide-content-l::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d32f2f;
    position: absolute;
    top: 11px;
    left: 3px;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__slide-content-l {
        font-size: 16px;
        line-height: normal;
        padding-right: 0;
    }

    .acc-billing-item__slide-content-l::before {
        top: 7px;
    }
}

.acc-billing-item__slide-content-r {
    max-width: 443px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
    margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
    .acc-billing-item__slide-content-r {
        font-size: 16px;
        line-height: normal;
    }
}

.acc-billing-item_open .acc-billing-item__btn-info {
    background-image: url(/images/x_v3.svg);
    background-size: 15px auto;
    background-position: right 11px center;
}

.acc-billing__form {
    position: relative;
}

.acc-billing__form .acc-billing__form-field {
    border: 1px solid #979797;
    border-radius: 8px;
    height: 68px;
    background-color: #fff;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    margin-top: 20px;
}

#card-element.acc-billing__form-field {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
}

#card-element.acc-billing__form-field .__PrivateStripeElement {
    width: 100%;
}

.acc-billing__form .acc-billing__form-field:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 1200px) {
    .acc-billing__form .acc-billing__form-field {
        height: 60px;
        font-size: 14px;
        line-height: normal;
    }
}

@media only screen and (max-width: 992px) {
    .acc-billing__form .acc-billing__form-field {
        height: 52px;
    }
}

@media only screen and (max-width: 576px) {
    .acc-billing__form .acc-billing__form-field {
        height: 46px;
    }
}

.acc-billing__form-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}
.acc-billing-form-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    border-left: 1px solid #0000005c;
    padding-left: 10px;
    @media (max-width: 767px) {
        border-left: none;
        padding-left: 0;
    }
}

.acc-billing__form-btn svg {
    width: 100%;
    height: 100%;
    fill: #979797;
}

.acc-billing__inner {
    margin-top: 30px;
}

@media only screen and (max-width: 576px) {
    .acc-billing__inner {
        margin-top: 20px;
    }
}

.acc-billing__acc-billing-item {
    margin-top: 16px;
}

.acc-billing__acc-billing-item:first-child {
    margin-top: 0;
}

.acc-billing__empty {
    margin-top: 136px;
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #979797;
}

@media only screen and (max-width: 1200px) {
    .acc-billing__empty {
        margin-top: 80px;
        font-size: 25px;
        line-height: normal;
    }
}

@media only screen and (max-width: 992px) {
    .acc-billing__empty {
        margin-top: 20px;
        font-size: 19px;
    }
}

.acc-billing_empty .acc-billing__form-btn svg {
    fill: #d32f2f;
}

.acc-change-password {
    /* max-width: 370px; */
    width: 100%;
}

.acc-change-password__form-field {
    margin-top: 20px;
}

.acc-change-password__form-field:first-child {
    margin-top: 0;
}

.acc-change-password__btn {
    padding-left: 36px;
    padding-right: 36px;
    margin-top: 28px;
}
.custom-btn-submit {
    padding-left: 36px;
    padding-right: 36px;
    margin-top: 28px;
    width: 158ox;
    @media (max-width: 767px) {
        width: 100%;
    }
}

.acc-change-password__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.acc-change-password__photo-img {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    margin-right: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.acc-change-password__change-photo input[type="file"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.acc-change-password__txt {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    text-transform: uppercase;
    cursor: pointer;
}

.acc-company-profile__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.acc-company-profile__wrap .form-field {
    width: calc(50% - 10px);
    margin-top: 40px;
}

@media only screen and (min-width: 577px) {
    .acc-company-profile__wrap .form-field:nth-child(-n + 2) {
        margin-top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .acc-company-profile__wrap .form-field {
        width: 100%;
        margin-top: 20px;
    }

    .acc-company-profile__wrap .form-field:first-child {
        margin-top: 0;
    }
}

.acc-company-profile__block {
    margin-top: 42px;
}

@media only screen and (max-width: 576px) {
    .acc-company-profile__block {
        margin-top: 20px;
    }
}

.acc-company-profile__block:first-child {
    margin-top: 0;
}

.acc-company-profile__block .row > div {
    margin-top: 20px;
}

@media only screen and (min-width: 577px) {
    .acc-company-profile__block .row > div:nth-child(-n + 2) {
        margin-top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .acc-company-profile__block .row > div:first-child {
        margin-top: 0;
    }
}

.acc-company-profile__block .btn {
    padding-left: 30px;
    padding-right: 30px;
}

#payment-form .btn {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 15px;
}

#card-errors {
    font-family: "Helvetica", sans-serif;
    margin-top: 15px;
}

.acc-company-profile__title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
    margin-bottom: 20px;
}

.acc-company-profile__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.acc-company-profile__photo-img {
    width: 171px;
    border-radius: 50%;
    margin-right: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.acc-company-profile__change-photo input[type="file"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.acc-company-profile__txt {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    text-transform: uppercase;
    cursor: pointer;
}

.acc-offers-company__item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.acc-offers-company__item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.acc-offers-company__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
}

@media only screen and (max-width: 1200px) {
    .acc-offers-company__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.acc-offers-company__row:first-child {
    margin-top: 0;
}

.acc-offers-company__l,
.acc-offers-company__r {
    width: 50%;
}

@media only screen and (max-width: 1200px) {
    .acc-offers-company__l,
    .acc-offers-company__r {
        width: 100%;
    }
}

.acc-offers-company__l {
    padding-right: 10px;
}

@media only screen and (max-width: 1200px) {
    .acc-offers-company__l {
        padding-right: 0;
    }
}

.acc-offers-company__r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (max-width: 1200px) {
    .acc-offers-company__r {
        margin-top: 8px;
    }
}

.acc-offers-company__r_right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: center;
    align-self: center;
}

@media only screen and (max-width: 1200px) {
    .acc-offers-company__r_right {
        -ms-flex-item-align: start;
        align-self: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.acc-offers-company__img {
    max-width: 100%;
    height: auto;
    display: block;
}

.acc-offers-company__link-profile {
    font-family: Helvetica;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__link-profile {
        font-size: 14px;
        line-height: 14px;
        margin-top: 5px;
    }
}

.acc-offers-company__link-profile:after {
    content: url(/images/arrow-right.svg);
    width: 18px;
    margin-left: 12px;
    margin-top: 2px;
}

.acc-offers-company__title,
.acc-offers-company__location {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.acc-offers-company__title {
    color: #212121;
}

.acc-offers-company__location {
    color: #757575;
}

.acc-offers-company__stars-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px;
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__stars-rating {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 8px;
    }
}

.acc-offers-company__stars-rating-txt {
    margin-left: 17px;
    margin-top: 3px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__stars-rating-txt {
        margin-left: 0;
        margin-top: 4px;
    }
}

.acc-offers-company__contact-item {
    padding-left: 40px;
    position: relative;
    font-family: "Helvetica";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__contact-item {
        padding-left: 0;
    }
}

.acc-offers-company__contact-item:before {
    width: 30px;
    position: absolute;
    top: calc(50% + 3px);
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__contact-item:before {
        display: none;
    }
}

.acc-offers-company__contact-item_tel:before {
    content: url(/images/call_gray.svg);
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__contact-item_tel:before {
        content: "";
    }
}

.acc-offers-company__contact-item_tel_email:before {
    content: url(/images/msg_gray.svg);
}

@media only screen and (max-width: 576px) {
    .acc-offers-company__contact-item_tel_email:before {
        content: "";
    }
}

.account-content {
    width: 100%;
    /* border-left: 2px solid #efefef; */
    min-height: 100%;
    padding-top: 20px;
    padding-left: 0;
}

@media only screen and (max-width: 1200px) {
    .account-content {
        padding-top: 10px;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .account-content {
        padding-left: 0;
        padding-right: 0;
        /* padding-top: 30px; */
        /* border-top: 2px solid #efefef; */
        margin-top: 30px;
        border-left: 0;
    }
}

@media only screen and (max-width: 576px) {
    .account-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.account-sidebar {
    width: 100%;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar {
        padding: 10px;
    }
}

.account-sidebar__wrap-item {
    margin-top: 16px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 8px;
}

.account-sidebar__wrap-item:first-child {
    margin-top: -27px;
}

.account-sidebar__item {
    /* background: #ffffff; */
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 7%;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__item {
        padding: 10px;
    }
}

.status {
    background: gray;
    border-radius: 10px;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .status {
        padding: 5px 15px;
        width: 150px;
    }
}

.account-sidebar__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
    margin-right: 8px;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__link {
        font-size: 17px;
        line-height: normal;
    }
}

.account-sidebar-status__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: white;
    margin-right: 8px;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar-status__link {
        font-size: 12px;
        line-height: normal;
    }
}

.account-sidebar__btn:before {
    content: "+";
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
}

.account-sidebar-status__btn:before {
    content: "+";
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: white;
    /* width: 10px; */
}

/* @media only screen and (max-width: 1200px) {
    .account-sidebar-status__btn:before {
        content: "+";
        font-family: "Helvetica";
        font-weight: 600;
        font-size: 14px;
        line-height: 28px;
        color: white;
        width: 10px;
    }
} */

.account-sidebar__requests {
    margin-left: auto;
    margin-right: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #d32f2f;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__requests {
        margin-right: 6px;
    }
}

.account-sidebar__sublist {
    padding: 0 0 16px 26px;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__sublist {
        padding: 0 0 16px 26px;
    }
}

@media only screen and (max-width: 576px) {
    .account-sidebar__sublist {
        padding: 0 0 16px 8px;
    }
}

.account-sidebar__subitem {
    margin-top: 16px;
    /* margin-left: 4%; */
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__subitem {
        margin-top: 14px;
        margin-left: 3%;
    }
}

.account-sidebar__sublink {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

@media only screen and (max-width: 1200px) {
    .account-sidebar__sublink {
        font-size: 17px;
        line-height: normal;
    }
}

.dropdown-status-rejected {
    background: green;
    color: #fff;
    padding: 12px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: inline-block;
}

@media only screen and (max-width: 1200px) {
    .dropdown-status-rejected {
        font-size: 14px;
        line-height: normal;
        padding: 10px 15px;
        width: 147px;
        background: green;
    }
}

.dropdown-status2 {
    background: #00800033;
    color: #008000;
    border-radius: 7.5px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #008000;
    /* min-width: 160px; */
    height: 44px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    @media (max-width: 767px) {
        padding: 14px 6px;
        font-size: 12px;
        background: #008000;
        color: #ffffff;
        border: none;
    }
}

.dropdown-status3 {
    background: green;
    color: #fff;
    /* padding: 10px 24px; */
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 104%;
}

@media only screen and (max-width: 1200px) {
    .dropdown-status3 {
        font-size: 14px;
        line-height: normal;
        padding: 10px 15px;
        width: 147px;
    }
}

.dropdown-status4 {
    background: #d32f2f;
    color: #fff;
    /* padding: 10px 24px; */
    border-radius: 7.5px;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    @media (max-width: 767px) {
        padding: 14px 6px;
        font-size: 12px;
    }
}
.responsive-accordion {
    display: none;
    @media (max-width: 767px) {
        display: block;
    }
}
.desktop-accordion {
    display: flex;
    @media (max-width: 767px) {
        display: none;
    }
}
.on-small {
    display: none;
    @media (max-width: 767px) {
        display: block;
    }
}
.on-large {
    display: flex;
    @media (max-width: 767px) {
        display: none !important;
    }
}
.responsive-logo {
    height: 86px;
    width: 86px;
    @media (max-width: 767px) {
        height: 50px;
        width: 50px;
    }
}

/* @media only screen and (max-width: 1200px) {
    .dropdown-status4 {
        font-size: 14px;
        line-height: normal;
        padding: 10px 15px;
        width: 147px;
    }
} */

.dropdown-status-accepted {
    background: #d32f2f;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 104%;
    /* font-weight: bold; */
    padding: 8px;
}

@media only screen and (max-width: 1200px) {
    .dropdown-status-accepted {
        font-size: 14px;
        line-height: normal;
        padding: 10px 15px;
        width: 147px;
        /* background:green; */
    }
}

.sidebar-link-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.sidebar-link-content-wrapper > img {
    width: 33px;
    height: 33px;
}

.sidebar-link-content-wrapper > span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.account-sidebar__item_current .account-sidebar__link {
    color: #ffffff;
}

.account-sidebar__item_current .account-sidebar__btn:before {
    color: #ffffff;
}

.account-sidebar__item_current {
    background: #c62929;
    border-radius: 12px;
}

.account-sidebar__sublink_current {
    color: #c62929;
}

.account-sidebar__wrap-item_open .account-sidebar__btn:before {
    content: "-";
}

.account-sidebar__wrap-item_open .account-sidebar-status__btn:before {
    content: "-";
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: white;
    /* width: 10px; */
}

.blog-card {
    width: 100%;
    min-height: 387px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 20px;
}

@media only screen and (max-width: 992px) {
    .blog-card {
        min-height: auto;
    }
}

.blog-card__img {
    height: 266px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .blog-card__img {
        height: 200px;
    }
}

.blog-card__title {
    margin-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 24px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    color: #212121;
}

@media only screen and (max-width: 1200px) {
    .blog-card__title {
        font-size: 24px;
        line-height: normal;
    }
}

@media only screen and (max-width: 768px) {
    .blog-card__title {
        font-size: 20px;
        padding-top: 12px;
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 8px;
    }
}

.blog-card__read-more {
    margin-bottom: 24px;
    margin-left: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .blog-card__read-more {
        margin-left: 12px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 576px) {
    .blog-card__read-more {
        font-size: 14px;
        line-height: 14px;
    }
}

.blog-card__read-more:after {
    content: url(/images/arrow-right.svg);
    width: 18px;
    margin-left: 12px;
    margin-top: 2px;
}

.form-contact {
    max-width: 820px;
    width: 100%;
}

.form-contact__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form-contact__wrap .form-contact__form-field {
    width: calc(50% - 40px);
}

@media only screen and (max-width: 768px) {
    .form-contact__wrap .form-contact__form-field {
        width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 576px) {
    .form-contact__wrap .form-contact__form-field {
        width: 100%;
    }
}

@media only screen and (min-width: 577px) {
    .form-contact__wrap .form-contact__form-field:nth-child(-n + 2) {
        margin-top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .form-contact__wrap .form-contact__form-field:first-child {
        margin-top: 0;
    }
}

.form-contact__form-field {
    margin-top: 40px;
}

@media only screen and (max-width: 992px) {
    .form-contact__form-field {
        margin-top: 20px;
    }
}

.form-contact__btn {
    padding-left: 36px;
    padding-right: 36px;
    margin-top: 48px;
}

@media only screen and (max-width: 992px) {
    .form-contact__btn {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 576px) {
    .form-contact__btn {
        margin-top: 20px;
    }
}

.faq-item {
    width: 100%;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 20px;
    margin-top: 28px;
}

@media only screen and (max-width: 576px) {
    .faq-item {
        padding: 16px;
    }
}

.faq-item:first-child {
    margin-top: 0;
}

.faq-item__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .faq-item__title {
        font-size: 24px;
        line-height: normal;
    }
}

@media only screen and (max-width: 576px) {
    .faq-item__title {
        font-size: 18px;
    }
}

.faq-item__content {
    margin-top: 16px;
    max-width: 800px;
    width: 100%;
    display: none;
}

.faq-item__content p,
.faq-item__content ul,
.faq-item__content ol {
    margin-top: 24px;
}

@media only screen and (max-width: 768px) {
    .faq-item__content p,
    .faq-item__content ul,
    .faq-item__content ol {
        margin-top: 15px;
    }
}

.faq-item__content p:first-child,
.faq-item__content ul:first-child,
.faq-item__content ol:first-child {
    margin-top: 0;
}

.faq-item__content p,
.faq-item__content li,
.faq-item__content a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #212121;
}

.faq-item__content a {
    text-decoration: underline;
}

.faq-item__content li {
    padding-left: 24px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .faq-item__content li {
        padding-left: 20px;
    }
}

.faq-item__content ul li:before {
    content: "•";
    position: absolute;
    top: 0;
    left: 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .faq-item__content ul li:before {
        left: 8px;
    }
}

.faq-item__btn {
    font-family: Helvetica;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .faq-item__btn {
        font-size: 14px;
        line-height: 14px;
    }
}

.faq-item__btn:after {
    content: url(/images/arrow-right.svg);
    width: 18px;
    margin-left: 12px;
    margin-top: 2px;
}

.faq-item__btn:before {
    content: url(/images/arrow-right.svg);
    width: 18px;
    margin-right: 12px;
    margin-top: 2px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: none;
}

.faq-item_open .faq-item__btn:after {
    display: none;
}

.faq-item_open .faq-item__btn:before {
    display: block;
}

.form-faq__form-field {
    margin-top: 20px;
}

.form-faq__form-field_first {
    margin-top: 0;
}

.form-faq__btn {
    margin-top: 48px;
    padding-left: 36px;
    padding-right: 36px;
}

@media only screen and (max-width: 768px) {
    .form-faq__btn {
        margin-top: 26px;
    }
}

.feedback-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 818px;
    width: 100%;
}

.feedback-form__form-field {
    width: 100%;
    margin-top: 45px;
}

@media only screen and (max-width: 768px) {
    .feedback-form__form-field {
        margin-top: 30px;
    }
}

.feedback-form__btn {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 45px;
}

@media only screen and (max-width: 768px) {
    .feedback-form__btn {
        margin-top: 30px;
    }
}

.feedback-form__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.feedback-form__rating input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.feedback-form__rating label {
    margin-left: 8px;
    cursor: pointer;
}

.feedback-form__rating label:last-child {
    margin-left: 0;
}

.feedback-form__rating > label:before {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image: url(/images/star_empty_v3.webp);
    background-size: 100% 100%;
    background-position: center;
}

.feedback-form__rating input:checked ~ label:before {
    background-image: url(/images/star_full_v3.webp);
}

.advantages {
    margin-top: 80px;
}

@media only screen and (max-width: 768px) {
    .advantages {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .advantages__inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.advantages__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .advantages__item {
        margin-top: 25px;
    }
}

.advantages__item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    right: 30px;
}

.advantages__item-title {
    margin-top: 10px;
    padding-right: 90px;
    letter-spacing: -0.005em;
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #212121;
    min-height: 48px;
}

@media only screen and (max-width: 576px) {
    .advantages__item-title {
        font-size: 20px;
        line-height: normal;
    }
}

.advantages__item-txt {
    margin-top: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .advantages__item-txt {
        font-size: 16px;
        line-height: normal;
    }
}

.contact-us {
    margin-top: 200px;
    margin-bottom: 140px;
}

@media only screen and (max-width: 992px) {
    .contact-us {
        margin-bottom: 100px;
        margin-top: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .contact-us {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 576px) {
    .contact-us__section-title {
        font-size: 25px;
    }
}

.contact-us__form {
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-work {
    margin-top: 90px;
}

@media only screen and (max-width: 576px) {
    .contact-us__form {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .how-it-work {
        margin-top: 50px;
    }
}

.how-it-work__subtitle {
    margin-top: 18px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .how-it-work__subtitle {
        font-size: 18px;
        line-height: normal;
    }
}

@media only screen and (max-width: 768px) {
    .how-it-work__subtitle {
        margin-top: 0;
    }
}

.how-it-work__txt {
    margin-top: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .how-it-work__txt {
        font-size: 16px;
        line-height: normal;
    }
}

.how-it-work__step-by-step {
    margin-top: 60px;
}

@media only screen and (max-width: 1200px) {
    .how-it-work__step-by-step {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .how-it-work__step-by-step {
        margin-top: 20px;
    }
}

.main-banner {
    margin-top: var(--headerHeight);
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 812px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-banner_color_white .main-banner__title,
.main-banner_color_white .main-banner__subtitle,
.main-banner_color_white .main-banner__item {
    color: #fff;
}

.main-banner_bg_black,
.main-banner_bg_white {
    position: relative;
}

.main-banner_bg_black .container,
.main-banner_bg_white .container {
    position: relative;
    z-index: 2;
}

.main-banner_bg_black::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.main-banner_bg_white::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 1200px) {
    .main-banner {
        min-height: 600px;
        padding-top: 150px;
    }
}

@media only screen and (max-width: 768px) {
    .main-banner {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 150px;
    }
}

@media only screen and (max-width: 576px) {
    .main-banner {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .main-banner_home {
        background-position: top right;
    }

    .main-banner_home .container {
        position: relative;
        z-index: 2;
    }

    .main-banner_home::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.3);
    }
}

.main-banner__title {
    font-weight: 600;
    font-family: "Gilroy";
    font-size: 35px;
    line-height: 55px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .main-banner__title {
        font-size: 26px;
        line-height: normal;
    }
}

.main-banner__subtitle {
    margin-top: 12px;
    font-family: "Helvetica";
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

.main-banner__form {
    margin-top: 30px;
}

select.form-contact-us__field {
    margin-top: 15px;
}

@media only screen and (max-width: 576px) {
    .main-banner__form {
        margin-top: 25px;
    }
}

.main-banner__list {
    margin-top: 10px;
}

.main-banner__item {
    font-family: "Helvetica";
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
    position: relative;
    padding-left: 14px;
}

.main-banner__item:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d32f2f;
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
}

.reviews {
    margin-top: 90px;
    margin-bottom: 100px;
}

.reviews__review {
    margin-top: 30px;
}

.reviews__btn-more {
    display: block;
    margin-top: 45px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #d32f2f;
    padding: 0 25px;
    position: relative;
}

.reviews__btn-more::after {
    position: absolute;
    top: 53%;
    right: 3px;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 12px;
    background: url(/images/arrow-down2.svg) no-repeat center / 100% auto;
}

.form-forgot-password__btn {
    margin-top: 44px;
    max-width: 262px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .form-forgot-password__btn {
        margin-top: 30px;
    }
}

.form-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-login__form-field {
    margin-top: 20px;
}

.form-login__form-field:first-child {
    margin-top: 0;
}

.form-login__forgot-pas {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #d32f2f;
    margin-top: 18px;
}

.form-login__forgot-pas:hover {
    text-decoration: underline;
}

.form-login__checkbox {
    cursor: pointer;
    margin-top: 28px;
}

@media only screen and (max-width: 576px) {
    .form-login__checkbox {
        margin-top: 12px;
    }
}

.form-login__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.form-login__checkbox
    input[type="checkbox"]:checked
    + .form-login__checkbox-txt:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.form-login__checkbox
    input[type="checkbox"]:checked
    + .form-login__checkbox-txt:before {
    border-color: #d32f2f;
}

.form-login__checkbox .form-login__checkbox-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #000000;
}

.form-login__checkbox .form-login__checkbox-txt:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #212121;
    border-radius: 50%;
    margin-right: 12px;
}

.form-login__checkbox .form-login__checkbox-txt:after {
    content: url(/images/check.svg);
    width: 12px;
    position: absolute;
    top: 0;
    left: 4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
}

.form-login__btn {
    margin-top: 18px;
    max-width: 154px;
}

.form-login__become-partner {
    margin-top: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
}

.form-login__become-partner a {
    color: #d32f2f;
    font-weight: 600;
}

.form-login__become-partner a:hover {
    text-decoration: underline;
}

.account {
    padding-top: 112px;
    padding-bottom: 216px;
}

@media only screen and (max-width: 1200px) {
    .account {
        padding-top: 80px;
        padding-bottom: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .account {
        padding-bottom: 110px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .account {
        padding-top: 11px;
        padding-bottom: 70px;
    }
}

.account__top-line {
    margin-bottom: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .account__top-line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.account__section-title {
    text-align: left;
}

.account__balance {
    padding: 7px 12px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -0.005em;
    color: #d32f2f;
    background: #f9f9f9;
    border-radius: 16px;
    margin-left: 75%;
    position: absolute;
    margin-top: -12%;
    margin-left: 52%;
    margin-left: 36%;
}

@media only screen and (max-width: 576px) {
    .account__balance {
        position: absolute;
        margin-top: 11%;

        margin-left: 65%;
        font-size: 100%;
        background-color: #d32f2f;
        color: white;
        display: none;
    }
}

.my_profile_account__balance {
    padding: 7px 12px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -0.005em;
    color: #d32f2f;
    background: #f9f9f9;
    border-radius: 16px;
    margin-left: 75%;
    position: absolute;
    margin-top: -12%;
    margin-left: 52%;
    margin-left: 36%;
}

@media only screen and (max-width: 576px) {
    .my_profile_account__balance {
        position: absolute;
        margin-top: 11%;

        margin-left: 65%;
        font-size: 100%;
        /* background-color: #D32F2F;
        color: white; */
        /* display: none; */
    }
}

.blog__section-title {
    text-align: left;
}

.blog__cards > div {
    margin-top: 48px;
}

@media only screen and (max-width: 768px) {
    .blog__cards > div {
        margin-top: 30px;
    }
}

.company-info__container {
    position: relative;
}

.company-info__section-title {
    text-align: left;
}

.company-info__logo {
    max-width: 270px;
    height: auto;
    position: absolute;
    right: 15px;
    top: 40px;
}

@media only screen and (max-width: 992px) {
    .company-info__logo {
        position: static;
        max-width: 200px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .company-info__logo {
        margin-top: 15px;
    }
}

.company-info__contact {
    margin-top: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.company-info__contact-item {
    margin-top: 16px;
    padding-left: 44px;
    position: relative;
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .company-info__contact-item {
        padding-left: 0;
        font-size: 18px;
        line-height: normal;
    }
}

.company-info__contact-item:first-child {
    margin-top: 0;
}

.company-info__contact-item:before {
    width: 30px;
    position: absolute;
    top: calc(50% + 5px);
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 576px) {
    .company-info__contact-item:before {
        display: none;
    }
}

.company-info__contact-item_tel:before {
    content: url(/images/call_red.svg);
}

@media only screen and (max-width: 576px) {
    .company-info__contact-item_tel:before {
        content: "";
    }
}

.company-info__contact-item_email:before {
    content: url(/images/msg_red.svg);
}

@media only screen and (max-width: 576px) {
    .company-info__contact-item_email:before {
        content: "";
    }
}

.company-info__block {
    margin-top: 49px;
}

@media only screen and (max-width: 768px) {
    .company-info__block {
        margin-top: 30px;
    }
}

.company-info__block-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #d32f2f;
}

.company-info__items > div {
    margin-top: 24px;
}

@media only screen and (max-width: 768px) {
    .company-info__items > div {
        margin-top: 20px;
    }
}

.company-info__item {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #000000;
    padding-left: 32px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .company-info__item {
        font-size: 16px;
        line-height: normal;
    }
}

.company-info__item:before {
    content: url(/images/checked-icon.svg);
    width: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}

.company-info__reviews {
    margin-top: 25px;
    padding-right: 30px;
    max-height: 682px;
}

.company-info__reviews .simplebar-track.simplebar-vertical {
    width: 4px;
    border-radius: 4px;
}

.company-info__reviews .simplebar-scrollbar:before {
    left: 0;
    right: 0;
    opacity: 1;
    background-color: #d32f2f;
}

.company-info__reviews
    .simplebar-track.simplebar-vertical
    .simplebar-scrollbar:before {
    top: 0;
    bottom: 0;
}

.company-info__review {
    margin-top: 40px;
}

.company-info__review:first-child {
    margin-top: 0;
}

.company-info__feedback-form {
    margin-top: 30px;
}

.congratulations {
    padding-top: 300px;
    padding-bottom: 300px;
    background: url(/images/congratulations-decor.webp) no-repeat center;
}

@media only screen and (max-width: 1200px) {
    .congratulations {
        margin-top: 130px;
        padding-top: 45px;
        padding-bottom: 45px;
        background: none;
    }
}

.congratulations__container {
    position: relative;
}

.congratulations__container .section-title {
    position: relative;
    z-index: 2;
}

.congratulations__container .congratulations__subtitle {
    margin-top: 22px;
}

@media only screen and (max-width: 992px) {
    .congratulations__container .congratulations__subtitle {
        margin-top: 0;
    }
}

.contact__section-title {
    text-align: left;
}

.contact__subtitle {
    margin-top: 18px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .contact__subtitle {
        margin-top: 16px;
    }
}

.contact__txts {
    margin-top: 24px;
}

@media only screen and (max-width: 768px) {
    .contact__txts {
        margin-top: 16px;
    }
}

.contact__txt,
.contact__txt a {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
}

.contact__txt {
    margin-top: 3px;
}

.contact__txt:first-child {
    margin-top: 0;
}

.contact__txt strong {
    font-weight: 500;
}

.contact__txt a:hover {
    text-decoration: underline;
}

.contact__form-contact {
    margin-top: 48px;
}

@media only screen and (max-width: 992px) {
    .contact__form-contact {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .contact__form-contact {
        margin-top: 30px;
    }
}

.faq__section-title {
    text-align: left;
    margin-top: 48px;
}

@media only screen and (max-width: 768px) {
    .faq__section-title {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .faq__section-title {
        margin-top: 25px;
    }
}

.faq__inner {
    margin-top: 20px;
}

.faq__txt {
    margin-top: 48px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .faq__txt {
        margin-top: 30px;
        font-size: 16px;
        line-height: normal;
    }
}

.faq__form-faq {
    margin-top: 30px;
    max-width: 600px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .faq__form-faq {
        margin-top: 20px;
    }
}

.give-feedback__section-title {
    text-align: left;
}

.give-feedback__logo-company {
    margin-top: 45px;
    max-width: 200px;
    height: auto;
    display: block;
}

.give-feedback__title-company {
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    color: #212121;
    margin-top: 20px;
}

.give-feedback__contact {
    margin-top: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.give-feedback__contact-item {
    margin-top: 16px;
    padding-left: 44px;
    position: relative;
    font-family: "Helvetica";
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 576px) {
    .give-feedback__contact-item {
        padding-left: 0;
        font-size: 18px;
        line-height: normal;
    }
}

.give-feedback__contact-item:first-child {
    margin-top: 0;
}

.give-feedback__contact-item:before {
    width: 30px;
    position: absolute;
    top: calc(50% + 5px);
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 576px) {
    .give-feedback__contact-item:before {
        display: none;
    }
}

.give-feedback__contact-item_tel:before {
    content: url(/images/call_red.svg);
}

@media only screen and (max-width: 576px) {
    .give-feedback__contact-item_tel:before {
        content: "";
    }
}

.give-feedback__contact-item_email:before {
    content: url(/images/msg_red.svg);
}

@media only screen and (max-width: 576px) {
    .give-feedback__contact-item_email:before {
        content: "";
    }
}

.give-feedback__feedback-form {
    margin-top: 48px;
}

@media only screen and (max-width: 576px) {
    .give-feedback__feedback-form {
        margin-top: 27px;
    }
}

.p-how-it-works__inner {
    margin-top: 40px;
}

.p-how-it-works__subtitle,
.p-how-it-works__subsubtitle {
    color: #212121;
}

.p-how-it-works__subtitle {
    font-size: 30px;
}

@media only screen and (max-width: 576px) {
    .p-how-it-works__subtitle {
        font-size: 23px;
    }
}

.p-how-it-works__subsubtitle {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
}

@media only screen and (max-width: 576px) {
    .p-how-it-works__subsubtitle {
        font-size: 18px;
    }
}

.p-how-it-works__inner__step-by-step {
    margin-top: 30px;
}

.p-how-it-works__content {
    margin-top: 60px;
}

@media only screen and (max-width: 576px) {
    .p-how-it-works__content {
        margin-top: 40px;
    }
}

.p-how-it-works__content h4 {
    font-weight: 500;
    font-size: 20px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-top: 30px;
}

.p-how-it-works__content h4:first-child {
    margin-top: 0;
}

.p-how-it-works__content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
}

.p-how-it-works__content p:first-child {
    margin-top: 0;
}

.login {
    margin-top: calc(var(--headerHeight) + 24px);
    margin-bottom: 120px;
    overflow: hidden;
}

@media only screen and (max-width: 1200px) {
    .login {
        margin-top: calc(var(--headerHeight) + 50px);
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .login {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 576px) {
    .login {
        margin-bottom: 50px;
    }
}

.login__container {
    position: relative;
    min-height: 696px;
}

@media only screen and (max-width: 1200px) {
    .login__container {
        min-height: auto;
    }
}

.login__container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transform: translateX(-395px);
    -ms-transform: translateX(-395px);
    transform: translateX(-395px);
    height: 100%;
    width: 50vw;
    background: #d32f2f;
    border-radius: 10px 0 0 10px;
}

@media only screen and (max-width: 1200px) {
    .login__container:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .payment {
        display: none;
    }
}

.payment {
    padding-right: 18px;
    padding-right: 18px;
    position: absolute;
    bottom: 39px;
    margin-left: 534px;
}

.login__container:after {
    position: absolute;
    content: url(/images/login-decor.webp);
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {
    .login__container:after {
        content: "";
        display: none;
    }
}

.login__section-title {
    text-align: left;
}

.login__inner {
    padding-top: 83px;
}

@media only screen and (max-width: 1200px) {
    .login__inner {
        padding-top: 0;
    }
}

.login__go-back {
    width: 48px;
    display: block;
    margin-bottom: 48px;
}

@media only screen and (max-width: 768px) {
    .login__go-back {
        margin-bottom: 30px;
    }
}

.login__go-back:before {
    content: url(/images/arrow-left.svg);
    width: 100%;
    opacity: 0.9;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity;
}

.login__go-back:hover:before {
    opacity: 1;
}

.login__txt {
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

.login__form-login {
    margin-top: 45px;
}

@media only screen and (max-width: 576px) {
    .login__form-login {
        margin-top: 20px;
    }
}

.login__form-forgot-password {
    margin-top: 18px;
}

.steps-forms__offers-for-moving_1 .steps-forms__block,
.steps-forms__offers-for-moving_2 .steps-forms__block,
.steps-forms__offers-for-moving_3 .steps-forms__block {
    margin-top: 35px;
}

.steps-forms__offers-for-moving_1 .steps-forms__block:first-child,
.steps-forms__offers-for-moving_2 .steps-forms__block:first-child,
.steps-forms__offers-for-moving_3 .steps-forms__block:first-child {
    margin-top: 0;
}

.steps-forms__offers-for-moving_1 .steps-forms__wrap,
.steps-forms__offers-for-moving_2 .steps-forms__wrap,
.steps-forms__offers-for-moving_3 .steps-forms__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 820px;
    width: 100%;
}

@media only screen and (max-width: 576px) {
    .steps-forms__offers-for-moving_1 .steps-forms__wrap,
    .steps-forms__offers-for-moving_2 .steps-forms__wrap,
    .steps-forms__offers-for-moving_3 .steps-forms__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.steps-forms__offers-for-moving_1 .form-field,
.steps-forms__offers-for-moving_2 .form-field,
.steps-forms__offers-for-moving_3 .form-field {
    width: calc(50% - 40px);
    margin-top: 40px;
}

@media only screen and (max-width: 992px) {
    .steps-forms__offers-for-moving_1 .form-field,
    .steps-forms__offers-for-moving_2 .form-field,
    .steps-forms__offers-for-moving_3 .form-field {
        width: calc(50% - 15px);
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .steps-forms__offers-for-moving_1 .form-field,
    .steps-forms__offers-for-moving_2 .form-field,
    .steps-forms__offers-for-moving_3 .form-field {
        width: 100%;
    }
}

@media only screen and (min-width: 577px) {
    .steps-forms__offers-for-moving_1 .form-field:nth-child(-n + 2),
    .steps-forms__offers-for-moving_2 .form-field:nth-child(-n + 2),
    .steps-forms__offers-for-moving_3 .form-field:nth-child(-n + 2) {
        margin-top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .steps-forms__offers-for-moving_1 .form-field:first-child,
    .steps-forms__offers-for-moving_2 .form-field:first-child,
    .steps-forms__offers-for-moving_3 .form-field:first-child {
        margin-top: 0;
    }
}

.steps-forms__offers-for-moving_1 .steps-form__checkboxes .row > div,
.steps-forms__offers-for-moving_2 .steps-form__checkboxes .row > div,
.steps-forms__offers-for-moving_3 .steps-form__checkboxes .row > div {
    margin-top: 18px;
}

.article__go-back {
    width: 48px;
    display: block;
}

.article__go-back:before {
    content: url(/images/arrow-left.svg);
    width: 100%;
    opacity: 0.9;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity;
}

.article__go-back:hover:before {
    opacity: 1;
}

.article__section-title {
    text-align: left;
    margin-top: 52px;
}

@media only screen and (max-width: 992px) {
    .article__section-title {
        margin-top: 20px;
    }
}

.article__img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
}

.article__inner {
    margin-top: 45px;
}

.article__inner * + * {
    margin-top: 24px;
}

.article__inner ul li {
    padding-left: 18px;
    position: relative;
}

.article__inner ol {
    list-style-position: inside;
}

.article__inner li::before {
    position: absolute;
    left: 0;
}

.article__inner ul li::before {
    content: "";
    top: 12px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: #d32f2f;
}

@media only screen and (max-width: 768px) {
    .article__inner * + * {
        margin-top: 18px;
    }
}

.article__inner p,
.article__inner li {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #212121;
}

@media only screen and (max-width: 768px) {
    .article__inner p,
    .article__inner li {
        font-size: 16px;
        line-height: normal;
    }

    .article__inner ul li::before {
        top: 7px;
    }
}

.article__inner h3,
.article__inner h4,
.article__inner h5,
.article__inner h6,
.article__inner h2,
.article__inner h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.005em;
    color: #d32f2f;
}

@media only screen and (max-width: 768px) {
    .article__inner h3,
    .article__inner h4,
    .article__inner h5,
    .article__inner h6,
    .article__inner h2,
    .article__inner h1 {
        font-size: 21px;
        line-height: normal;
    }
}

.pagination {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.pagination__inner {
    display: flex;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
}

.pagination__item {
    width: 46px;
    height: 46px;
    background: #efefef;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Helvetica";
    font-weight: normal;
    font-size: 15px;
    line-height: 42px;
    color: #121212;
    margin-left: 12px;
}

.pagination__item:first-child {
    margin-left: 0;
}

.pagination__item:hover {
    text-decoration: none;
}

.pagination__item_next,
.pagination__item_prev {
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.pagination__item_next::before,
.pagination__item_prev::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45% auto;
}

.pagination__item_prev {
    transform: rotate(180deg);
}

.pagination__item_next {
    margin-left: 12px;
}

.pagination__item_current {
    color: #121212;
    font-weight: bold;
}

.pagination__item_disabled::before {
    opacity: 0.5;
}

.partner-prices {
    width: 100%;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 20px;
    font-family: "Helvetica";
}

.partner-prices__item {
    margin-top: 10px;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.005em;
    color: #212121;
}

.partner-prices__item:first-child {
    margin-top: 0;
}

.partner-prices__item span {
    color: #d32f2f;
    font-weight: 600;
}

.info {
    min-height: 340px;
    padding: 85px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info__title {
    font-weight: bold;
    margin-bottom: 32px;
}

.info__title_white {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(67, 47, 40, 0.6);
}

.info__btn {
    width: max-content;
    max-width: 100%;
    padding-left: 36px;
    padding-right: 36px;
}

@media only screen and (max-width: 768px) {
    .info {
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: unset;
    }
}

.section-txt button {
    display: none;
    margin-top: 5px;
    color: #d32f2f;
    text-decoration: underline;
}

@media only screen and (max-width: 576px) {
    .section-txt .steps-desc__txt {
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .section-txt .steps-desc__txt.show-full {
        line-clamp: unset;
        -webkit-line-clamp: unset;
    }

    .section-txt button {
        display: block;
    }
}

.page404 {
    margin-top: calc(var(--headerHeight) + 24px);
    margin-bottom: 120px;
    overflow: hidden;
}

@media only screen and (max-width: 1200px) {
    .page404 {
        margin-top: calc(var(--headerHeight) + 50px);
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .page404 {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 576px) {
    .page404 {
        margin-bottom: 50px;
    }
}

.page404__container {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 696px;
}

@media only screen and (max-width: 1200px) {
    .page404__container {
        min-height: auto;
    }
}

.page404__container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transform: translateX(-395px);
    -ms-transform: translateX(-395px);
    transform: translateX(-395px);
    height: 100%;
    width: 50vw;
    background: #d32f2f;
    border-radius: 10px 0 0 10px;
}

@media only screen and (max-width: 1200px) {
    .page404__container:before {
        display: none;
    }
}

.page404__container:after {
    position: absolute;
    content: url(/images/login-decor.webp);
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {
    .page404__container:after {
        content: "";
        display: none;
    }
}

.page404__section-title {
    text-align: left;
}

.page404__inner {
    padding-top: 83px;
    width: 100%;
}

@media only screen and (max-width: 1200px) {
    .page404__inner {
        padding-top: 0;
    }
}

.page404__404 {
    font-size: 80px;
    color: #d32f2f;
}

.page404__btn {
    margin-top: 20px;
    max-width: 220px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap__subtitle {
    font-weight: bold;
    font-size: 19px;
}

.sitemap__link {
    color: #d32f2f;
    font-size: 18px;
}

.sitemap__link:hover {
    text-decoration: underline;
}

.form-field .wrap-range {
    display: flex;
    align-items: center;
    height: 52px;
}

.form-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #efefef;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.form-field input[type="range"]:hover {
    opacity: 1;
}

.form-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #d32f2f;
    cursor: pointer;
}

.form-field input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #d32f2f;
    cursor: pointer;
}

.progress-bar__wrap {
    display: flex;
    align-items: center;
}

.progress-bar__scale {
    margin-right: 10px;
    background-color: #efefef;
    border-radius: 5px;
    height: 30px;
    width: 200px;
    overflow: hidden;
}

.progress-bar__fullnely {
    width: 0;
    height: 100%;
    background-color: #d32f2f;
    transition: 0.3s;
}

.ac-table,
.ac-table2 {
    width: 100%;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 20px;
    border-spacing: 0;
}

.ac-table th {
    text-align: center;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
}

.ac-table td {
    height: 54px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ac-table2 tr:first-child td {
    font-weight: 700;
    text-align: left;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
}

.ac-table2 tr:first-child td:not(:first-child) {
    text-align: center;
}

.ac-table2 tr:not(:first-child) td {
    height: 54px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-save {
    width: 48px;
    height: 40px;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
}

.btn-save_state_paid {
    background-color: #30ab45;
}

.btn-save_state_nopaid {
    background-color: #d32f2f;
}

.btn-save_state_sended {
    background-color: #e0d24b;
}

.btn-save svg {
    filter: invert(1);
    transition: 0.3s;
}

.btn-save:hover {
    box-shadow: none;
}

.btn-save:hover svg {
    filter: invert(0);
}

@media only screen and (max-width: 768px) {
    .ac-table,
    .ac-table2 {
        padding: 10px;
    }
}

.w-ac-table {
    overflow-x: auto;
    width: 100%;
}

.w-ac-table .ac-table,
.w-ac-table .ac-table2 {
    width: 100%;
}

.w-ac-table {
    border: none;
    border-collapse: collapse;
    /* margin: 20px; */
    font-size: 18px;
    overflow: hidden;
    /* width: 92%; */
    width: 100%;
    background: #f8f8f8;
    padding: 13px;
    border-radius: 8px;
}

/* Bilal's Code Start for table design */
.w-ac-table table {
    table-layout: auto;
    border-collapse: collapse;
    width: 100%;
    border: none;
    outline: 0;
}

.w-ac-table > .price-table2 > tr > td {
    text-align: left;
}
/* Bilal's Code end for table design */

.account-sidebar__sublink_selected {
    color: #d32f2f;
}

@media only screen and (max-width: 768px) {
    .w-ac-table {
        font-size: 12px;
    }
}

/* html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-size: 200% 200%;
    background-image: radial-gradient(circle, #f64f59, #f64f59, #12c2e9, #f64f59);
    animation: gradient 5s ease-in-out infinite;
    font-family: Arial, sans-serif;
  }

  @keyframes gradient {
    0% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
   */

.w-ac-table th,
.w-ac-table td {
    /* border: 1px solid #ddd; */
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.w-ac-table th {
    color: black;
    cursor: pointer;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* .w-ac-table th:hover {
    background-color: #8b0000;
} */

.w-ac-table tr:nth-child(even) {
    background-color: #ffffff;
}

.w-ac-table tr:nth-child(odd) {
    background-color: #efefef;
}

/* Top-left corner of the first th */
.w-ac-table tr:first-child th:first-child {
    border-radius: 8px 0 0 0;
}

.w-ac-table tr:first-child th:not(:first-child) {
    font-weight: 600 !important;
    color: #111111;
}

/* Top-right corner of the last th */
.w-ac-table tr:first-child th:last-child {
    border-radius: 0 8px 0 0;
}

/* Bottom-left corner of the first td in the last row */
.w-ac-table tr:last-child th:first-child {
    border-radius: 0 0 0 8px;
}

/* Bottom-right corner of the last td in the last row */
.w-ac-table tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.w-ac-table tr th:first-child {
    text-align: left;
}

.w-ac-table td:first-child {
    color: black;
    font-weight: bold;
    position: sticky;
    left: 0;
    z-index: 1;
}

.w-ac-table td:hover {
    /* background-color: #f5f5f5; */
    cursor: pointer;
}

.w-ac-table td.active {
    background-color: #8b0000;
    color: #fff;
    font-weight: bold;
}

.replenishment-item {
    background-color: #ffffff;
    box-shadow: 3px 3px 25px rgba(201, 201, 201, 0.25);
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    font-family: "Helvetica";
}

.replenishment-item:hover {
    box-shadow: 3px 3px 25px rgba(201, 201, 201, 0.85);
}

.replenishment-item__header {
    background: #d32f2f;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 16px 0 12px 0;
}

.replenishment-item__body {
    padding: 25px 0;
}

.replenishment-item__price,
.replenishment-item__text {
    text-align: center;
    text-transform: uppercase;
}

.replenishment-item__price {
    font-weight: 600;
    font-size: 18px;
    color: #d32f2f;
}

.replenishment-item__text {
    font-weight: 400;
    font-size: 16px;
    margin-top: 4px;
    font-weight: bold;
    color: #000;
}

.replenishment-item__middle {
    padding: 20px 0;
    text-align: center;
    position: relative;
    font-weight: 400;
    font-size: 19px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    color: #000;
}

.replenishment-item__middle::after {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    right: 10px;
    /* left: calc(50% + 53px); */
    width: 34px;
    height: 40px;
    background: url(/images/arrow_pack.svg) no-repeat center / 100% 100%;
}

.replenishment-item__middle::before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 10px;
    right: calc(50% + 53px);
    width: 34px;
    height: 40px;
    transform: rotate(180deg);
    background: url(/images/arrow_pack.svg) no-repeat center / 100% 100%;
}

.modal-title {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .modal-title {
        font-size: 18px;
    }
}

#modal-success-proposal {
    max-width: 380px;
}

#modal-success-proposal p {
    font-weight: 700;
}

.btn-more-details {
    color: #c62929;
    font-weight: 400;
    font-size: 14px;
}

.show-details {
    display: none; /* Hide the extra content by default */
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.show-more-btn {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}

.details-label {
    color: #656565;
    font-weight: 400;
    font-size: 16px;
}
.details-values {
    color: #4a4543;
    font-weight: 500;
    font-size: 16px;
    margin-top: 4px;
}

.btn-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    width: 100%;

    @media (max-width: 767px) {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 10px;
        /* border-top: 1px solid #0000002c; */
    }
}
.res-border {
    border-bottom:none; 
    margin-bottom:4px;
    @media (max-width: 767px) {
        border-bottom: 1px solid #0000002c;
    }
}
.no-border {
    border-bottom:none; 
    margin-bottom:4px;
}
.action-buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    width: 100%;

    @media (max-width: 767px) {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 10px;
        padding-top: 4px;
    }
}
.vat-text {
    color: #111111;
    font-size: 10px;
    text-align: right;
    @media (max-width: 767px) {
        text-align: left;
        padding-left: 4px;
    }
}

.general-ratings-section {
    background: #f8f8f8;
    padding: 20px 20px;
    margin-top: 30px;
    margin-left: 0 !important;
    margin-right: 0px !important;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    @media(max-width:767px){
        background : #FFFFFF;
    }
}

.general-ratings-section .numeric-rating {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.general-ratings-section .numeric-rating h6 {
    color: #111111;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.general-ratings-section .numeric-rating .total-reviews {
    color: #111111;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.general-ratings-section .numeric-rating .rating-stars p {
    color: #858585;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
}

.general-ratings-section .numeric-rating .rating-stars {
    font-size: 16px;
    color: #e7b66b;
}

.all-ratings-section {
    background: #ffffff;
    margin: 16px 0 2px 0;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.all-ratings-section .single-rating-card {
    background: #f8f8f8;
    width: 100%;
    padding: 30px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.all-ratings-section .single-rating-card .rating-stars {
    font-size: 16px;
    color: #e7b66b;
}

.all-ratings-section .single-rating-card .rating-date p {
    color: #858585;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.all-ratings-section .single-rating-card .rating-user-details {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}

.all-ratings-section .single-rating-card .rating-user-details .profile-image {
    padding: 5px;
    background: #0d0d0d;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.all-ratings-section
    .single-rating-card
    .rating-user-details
    .profile-image
    img {
    border-radius: 999px;
}

.all-ratings-section
    .single-rating-card
    .rating-user-details
    .user-name
    .rating-stars {
    display: none;
}

.all-ratings-section .single-rating-card .rating-user-details .user-name p {
    color: #111111;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.all-ratings-section .single-rating-card .rating-content p {
    color: #0d0c22;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.all-ratings-section .single-rating-card .rating-content .rating-date {
    display: none;
}

.all-ratings-section .single-rating-card .rating-content .rating-date p {
    color: #858585;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.qr-code-section {
    background: #f8f8f8;
    padding: 0 0 20px 0;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.qr-code-section .section-heading {
    background: #efefef;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
}

.qr-code-section .section-heading h6 {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
}

.qr-code-section .section-content {
    padding: 20px;
}

.qr-code-section .section-content p {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
}

.qr-code-section .section-qr {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px;
}

.pricing-table-section {
    background: #f8f8f8;
    padding: 0 0 20px 0;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.pricing-table-section .section-heading {
    background: #efefef;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
}

.pricing-table-section .section-content {
    padding: 20px;
}

.pricing-table-section .section-content p {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
}

.pricing-table-section .section-plans {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.bank-payments-section {
    background: #f8f8f8;
    padding: 0 0 20px 0;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.bank-payments-section .section-heading {
    background: #efefef;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
}

.bank-payments-section .section-heading h6 {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
}

.bank-payments-section .section-content {
    padding: 20px;
}

.bank-payments-section .section-content p {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
}

@media only screen and (max-width: 576px) {
    .general-ratings-section {
        background: #FFFFFF;
        padding: 20px 20px;
        margin-top: 30px;
        margin-left: 0 !important;
        margin-right: 0px !important;
        border-radius: 8px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .general-ratings-section .numeric-rating {
        display: flex;
        flex-direction: row;
        column-gap: 10px;
        align-items: center;
    }

    .general-ratings-section .numeric-rating h6 {
        display: none;
    }

    .general-ratings-section .numeric-rating .rating-stars p {
        margin-top: 5px;
        color: #616161;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .general-ratings-section .numeric-rating .total-reviews {
        color: #272727;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .graphical-rating {
        margin-top: 20px;
        padding: 0 !important;
    }

    .all-ratings-section {
        background: #ffffff;
        margin: 10px 0; 
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }

    .all-ratings-section .single-rating-card {
        background: #ffffff;
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        row-gap: 12px;
    }

    .all-ratings-section .single-rating-card .rating-date {
        display: none;
    }

    .all-ratings-section .single-rating-card .rating-stars {
        display: none;
    }

    .all-ratings-section
        .single-rating-card
        .rating-user-details
        .user-name
        .rating-stars {
        display: block;
        margin-top: 5px;
    }

    .all-ratings-section .single-rating-card .rating-content .rating-date {
        display: block;
    }

    .all-ratings-section .single-rating-card .rating-content .rating-date p {
        color: #616161;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 16px;
    }

    .all-ratings-section .single-rating-card .rating-content p {
        color: #616161;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .qr-code-section {
        margin: 30px 0 30px 0;
    }

    .pricing-table-section {
        margin: 30px 0 30px 0;
    }

    .bank-payments-section {
        margin: 30px 0 30px 0;
    }

    .modal-content {
        border-radius: 25px !important;
        padding: 8px !important;
    }

    .modal-content .modal-body {
        padding: 5px !important;
        border: none !important;
    }

    .modal-content .modal-body img {
        width: 160px !important;
        height: auto;
    }

    .modal-content .modal-footer {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .modal-content .modal-footer a {
        border-radius: 7.5px;
        border: 1px solid #c62929;
        background: #c62929;
        display: flex;
        width: 100% !important;
        padding: 15px 18px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
    }

    .modal-content .modal-footer button {
        border-radius: 7.5px;
        border: 1px solid #cacaca;
        background: #cacaca;
        display: flex;
        width: 100% !important;
        height: 44px;
        padding: 15px 18px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        color: #0d0d0d;
    }
}

.section-heading {
    font-size: 24px;
    color: #333333;

    @media (max-width: 767px) {
        font-size: 16px;
        font-weight: 600;
        color: #212121;
    }
}

.btn-pay {
    border: 1px solid #c62929;
    background: #c6292914;
    color: #c62929;
    padding: 7px 10px !important;
    height: 38px;
    border-radius: 7.5px;
    font-weight: 600;
    @media (max-width: 767px) {
        background: #BF2E2E;
        color: #FFFFFF;
        font-size: 12px;
        padding: 11px 9px !important;
    }
}

.btn-pay-icon {
    display: block;
    @media (max-width: 767px) {
        display: none;
    }
}

.row-details {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    @media (max-width: 767px) {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}
.row-details-id {
    display: none;
    @media (max-width: 767px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.right-section-content {
    background-color: transparent;
    border-radius: 12px;
    @media (max-width: 767px) {
        background: #f9f9f9;
    }
}
.right-section-head {
    background-color: #f8f8f8;
    padding: 22px;
    border-radius: 12px;
    @media (max-width: 767px) {
        padding: 10px;
        background-color: transparent;
    }
}

.right-section-rows-head {
    height: 47px;
    background-color: #f8f8f8;
    padding: 13px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (max-width: 767px) {
        background-color: #efefef;
        border-radius: 6px 6px 0 0;
    }
}

.right-section-rows-head,
h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 42px;
    color: #333333;
    letter-spacing: -0.005em;
    font-weight: bold;

    @media (max-width: 767px) {
        font-size: 16px;
        color: #111111;
    }
}
.card-section-row-content {
    display: block;
    padding: 13px;
    border-radius: 0 0 12px 12px;
    @media (max-width: 767px) {
        border-radius: 0 0 6px 6px;
        padding: 13px;
        background-color: #ffffff;
    }
}
.right-section-rows {
    border-radius: 12px;
    @media (max-width: 767px) {
        background-color: #f8f8f8;
        /* padding: 0 10px !important; */
    }
}
.modal-content {
    border-radius: 25px !important;
    padding: 20px !important;
}

.modal-content .modal-header {
    padding: 0 !important;
    border: none !important;
}

.modal-content .modal-body {
    padding: 50px 60px 20px 50px;
    border: none !important;
}

.modal-content .modal-body img {
    width: 318px;
    height: auto;
}

.modal-content .modal-footer {
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.modal-content .modal-footer a {
    border-radius: 7.5px;
    border: 1px solid #c62929;
    background: #c62929;
    display: flex;
    width: 155px;
    height: 44px;
    max-width: 340px;
    padding: 15px 18px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.modal-content .modal-footer button {
    border-radius: 7.5px;
    border: 1px solid #cacaca;
    background: #cacaca;
    display: flex;
    width: 155px;
    height: 44px;
    max-width: 340px;
    padding: 15px 18px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #0d0d0d;
}

.btn-close {
    font-size: 12px !important;
    outline: 0 !important;
    border: none !important;
}

.btn-close:active,
.btn-close:focus {
    outline: 0 !important;
    border: none !important;
}

.sub-heading-section {
     display: flex; 
     align-items:center; 
     justify-content:space-between;
     padding-top: 20px
}

.sub-heading-section-id {
    display: flex; 
    flex-direction:column; 
     align-items:start; 
     justify-content:center"
}

.back-icon-box {
    display: flex; 
    justify-content:center; 
    align-items:center; 
    background:#F9F9F9; 
    border-radius:50%;
    height: 24px;
    width: 24px;
    margin-right: 4px;
}

.right-section-sub-heading {
        font-size: 16px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 5px;
        @media(max-width:757px) {
            font-size: 14px
        }
}
.custom-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);  
    gap: 8px;  
  }
  
  .custom-cols-6-3 {
    grid-column:span 3;
    @media(max-width:767px){
        grid-column: span 6; /* Spans 6 columns */
    }
  }