.form-start {
    padding-bottom: 96px;
}
.form-conditions {
    background: var(--gray);
    padding: 64px 0 96px 0;
}
.form-conditions blockquote {
    margin-top: auto;
}
.form-fill {
    background: #06065f;
    padding: 64px 0;
}
.form-fill label,
.form-fill .h3 {
    color: #fbfbfb;
}
.form-fill ol li {
    color: #fff;
    font-size: 16px !important;
    line-height: 24px !important;
    max-width: 450px;
}
.form-fill ol li:before {
    color: #fff !important;
}
.block-circles {
    display: flex;
    gap: 24px;
    position: absolute;
    bottom: -125px;
}
.circle {
    display: flex;
    width: 100px;
    height: 100px;
    border: 1.5px solid #fff;
    border-radius: 100%;
}
.block-lines {
    display: flex;
    gap: 24px;
    position: absolute;
    bottom: -53px;
}
.line {
    display: flex;
    width: 100px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 0;
    transform: skew(0deg, 24deg);
}
section.form-why {
    padding: 64px 0 96px 0;
}
section.brand-etap {
    background: #06065f;
    padding: 64px 0;
}
.brand-etap * {
    color: #fbfbfb;
}
.numb-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 27px;
}
.numb-box {
    display: flex;
    width: calc(50% - 13.5px);
    flex-direction: row;
    gap: 24px;
}
.numb-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    width: 72px;
    height: 72px;
    border: 1px solid #0000ef;
    border-radius: 100%;
}
.numb-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.numb-box.box-2 .numb-text {
    justify-content: flex-start;
}
.numb-text-head.h4 {
    padding: 15px 0;
}
.numb-box.box-4 .numb-text-head.h4 {
    padding: 0px 0;
}
section.brand-advantages {
    padding: 64px 0 96px 0;
}
section.brand-prices {
    padding: 64px 0 96px 0;
    gap: 32px;
    background: var(--gray);
}
.price-block {
    position: relative;
    display: flex;
    width: calc(33.33% - 16px);
    flex-direction: column;
    background: #fbfbfb;
    border-radius: 12px;
    padding: 104px 32px 32px 32px;
}
.price-block-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: #06065f;
    color: #fbfbfb;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-block *:not(.h2) {
    font-size: 16px;
    line-height: 20px;
}
.brand-prices .h2 {
    text-align: center;
}
section.brand-faq {
    padding: 64px 0 96px 0;
}
/* FORM - START */
form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 24px;
}
form label:not(.consent) {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 12px);
}
form label.consent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    width: calc(50% - 12px);
    margin-right: calc(50% - 12px);
    margin-top: 26px;
}
form input#consent {
    opacity: 0;
    margin: 0;
    padding: 0;
    height: 1px;
    width: 1px;
    position: absolute;
    left: 20px;
}
form label:not(.consent) span {
    font-size: 14px;
    line-height: 18px;
}
form label.consent span a {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
form label.consent span a:hover {
    color: var(--gray);
}
form input:not(#consent) {
    font-family: "Noto Sans";
    font-weight: 400;
    height: 38px;
    padding: 0 16px;
    border: 1px solid var(--gray);
    outline: none;
    border-radius: 8px;
}
form select {
    font-family: "Noto Sans";
    font-weight: 400;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--gray);
    outline: none;
    border-radius: 8px;
}
form textarea {
    font-family: "Noto Sans";
    font-weight: 400;
    height: 80px;
    padding: 16px;
    border: 1px solid var(--gray);
    outline: none;
    border-radius: 8px;
}
form span.checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 38px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    background: var(--white);
}
form label.consent input + .checkbox:before {
    content: "";
    background: url(/wp-content/themes/gosta/img/check-form.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
form label.consent input:checked + .checkbox:before {
    opacity: 1;
}
form span.radio {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    background: var(--white);
}
form .budget-form input + .radio:before {
    content: "";
    background: url(/wp-content/themes/gosta/img/check-form.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
form .budget-form input:checked + .radio:before {
    opacity: 1;
}
form .budget-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    width: calc(50% - 12px);
}
form .budget-form > span {
    display: flex;
    width: 100%;
    color: #fbfbfb;
    font-size: 14px;
    line-height: 18px;
}
form .budget-form label {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    width: fit-content;
}
.merged-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 12px);
}
form .merged-field label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 0px);
}
form .add-file {
    display: flex;
    gap: 8px;
    width: 100%;
}
form .custom-file-name {
    display: none;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 205px;
    width: 205px;
    background: #fff;
    color: #000;
    padding: 0px;
    border-radius: 8px;
}
form .custom-add-file {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    background: var(--gray);
    padding: 0px 25px;
    border-radius: 8px;
    font-family: "e-Ukraine";
    color: #595965;
    font-weight: 700;
    overflow: hidden;
    text-wrap: nowrap;
    transition: all 0.3s ease-in-out;
}
main form .btn {
    margin-top: 12px;
}
.budget-form + .btn {
    margin-left: auto;
}
/* FORM - END */

/* LIGHTBOX - START */
.lightbox-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 30%);
    z-index: -10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}
.lightbox-wrapper.active {
    z-index: 99999;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.lightbox {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 30px);
    width: 700px;
    height: 500px;
    background: #fbfbfb;
    border-radius: 12px;
}
.lightbox .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
.lightbox .close img {
    width: 14px;
    height: 14px;
}
.lightbox-wrapper .lightbox.form-box {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    display: none;
}
.lightbox-wrapper.active-form,
.lightbox-wrapper.active-success {
    z-index: 99999;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.lightbox-wrapper.active-form .lightbox.success {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    display: none;
}
.lightbox-wrapper .lightbox.success {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    display: none;
}
.lightbox-wrapper.active-form .lightbox.form-box {
    display: flex;
    z-index: 99999;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    padding: 0 24px;
    height: 460px;
}
.lightbox-wrapper.active-success .lightbox.success {
    display: flex;
    z-index: 99999;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.lightbox.form-box form label:not(.consent) {
    align-items: flex-start;
}
.lightbox.form-box form input:not(#consent),
.lightbox.form-box form textarea {
    width: calc(100% - 32px);
}
.lightbox.form-box form select {
    width: calc(100%);
}
.lightbox.form-box form .budget-form > span {
    color: #06065f;
}
.lightbox.form-box .content-block {
    gap: 32px;
}
.content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox:not(.form-box) .content-block * {
    text-align: center;
}
/* LIGHTBOX - END */
@media (max-width: 1400px) {
    form .custom-file-name {
        display: none;
    }
    form label.consent {
        align-items: center;
    }
    form label.consent span {
        font-size: 12px;
        line-height: 16px;
    }
    .form-fill .col-left {
        width: 500px;
    }
    .form-fill .col-right {
        width: calc(100% - 500px - 24px);
    }
}
@media (max-width: 1279px) {
    main .h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .form-fill .col-left {
        width: 100%;
    }
    .form-fill .col-right {
        width: 100%;
    }
    section.form-start {
        padding-bottom: 56px;
    }
    section.form-conditions {
        padding: 56px 0 56px 0;
    }
    section.form-fill {
        padding: 56px 0;
    }
    section.form-why {
        padding: 56px 0 56px 0;
    }
    .form-fill .h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    .form-fill ol li {
        font-size: 14px !important;
        line-height: 18px !important;
    }
    section.brand-start {
        padding-bottom: 56px;
    }
    section.brand-prices {
        padding: 56px 0 56px 0;
    }
    section.brand-advantages {
        padding: 56px 0 56px 0;
    }
    section.brand-faq {
        padding: 56px 0 56px 0;
    }
    .numb-box {
        width: calc(100% - 0px);
    }
    .numb-box:not(.box-1) {
        align-items: center;
    }
    .numb-box:not(.box-1) .numb-text-head.h4 {
        padding: 0px 0;
    }
    .block-lines {
        gap: 16px;
        bottom: -70px;
    }
    .line {
        border: 1px solid #fff;
    }
    .price-block {
        width: calc(100% - 0px);
    }
    .merged-field {
        width: 100%;
    }
    /* FORM - START */
    form {
        row-gap: 24px;
    }
    form label:not(.consent) {
        flex-direction: column;
        width: calc(100% - 0px);
    }
    form label.consent {
        width: calc(100% - 0px);
        margin-top: 0;
        margin-right: 0;
        align-items: center;
    }
    form label.consent span {
        font-size: 12px;
        line-height: 16px;
    }
    form .budget-form {
        width: calc(100% - 0px);
    }
    form .budget-form label {
        width: fit-content;
        flex-direction: row;
    }
    form button.btn {
        width: 100%;
        margin-top: 0;
    }
    /* FORM - END */
    .lightbox {
        height: fit-content;
        padding: 48px 15px 36px 15px;
        max-width: calc(100vw - 30px - 30px);
        width: calc(100vw - 30px - 30px);
    }
    .lightbox .btn {
        margin-top: 18px;
    }
    .another-pay {
        font-size: 16px;
        line-height: 28px;
    }
}
@media (max-width: 374px) {
    .another-pay:not(:last-child) {
        margin-bottom: 15px;
    }
}