:root {
    --after-left: 50%;
    --translateX: -50%;
    --afer-translateX: -50%;
}

.popup-selection {
    position: fixed;
    z-index: 11;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.popup-selection.active {
    opacity: 1;
    pointer-events:all;
}

.popup-selection .fon {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}

.popup-selection .main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 47.86vw;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 3.75vw;
    z-index: 11;
}

.popup-selection .main .top-text-wrapper .title {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.popup-selection .main .top-text-wrapper .title span {
    font-weight: 600;
}

.popup-selection .main .top-text-wrapper .subtitle {
    margin-top: 0.625vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
}

.popup-selection .main .main-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 3.125vw;
}

.main-container .l-container {
    width: 53vw;
}

.main-container .l-container .progress-wrapper {
    background-color: #F9F9F9;
    border-radius: 0px 0px 5px 5px;
    padding: 0.3125vw;
    height: 2.8125vw;
    width: 100%;
}

.main-container .l-container .progress-wrapper .progress-bar {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.main-container .l-container .progress-wrapper .progress-fill {
    height: 100%;
    width: 100%;
    background: repeating-linear-gradient(
      -50deg,
      #EF7403 0px,
      #EF7403 10px,
      #ef903f 10px,
      #ef903f 28px
    );
    clip-path: inset(0 83.4% 0 0 round 5px);
    position: relative;
    display: flex;
    align-items: center;
    transform-origin: left;
    transition: clip-path 300ms ease;
}

.main-container .l-container .progress-wrapper .progress-text {
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 600;
    margin-left: 1.25vw;
    z-index: 1;
    position: relative;
}

.main-container .l-container .progress-wrapper .progress-text.mobile {
    display: none;
}

.main-container .l-container .progress-wrapper .progress-text span {
    font-size: 0.625vw;
}

.main-container .l-container .form-wrapper {
    margin-top: 1.875vw;
    position: relative;
    transition: height 300ms ease;
}

.main-container .l-container .form-wrapper .title {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 500;
}

.main-container .l-container .form-wrapper .choice-elements {
    margin-top: 1.25vw;
    display: grid;
    align-items: center;
    gap: 1.25vw;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.main-container .l-container .form-wrapper .choice-elements .item {
    position: relative;
    border-radius: 5px;
    border: 1px solid #C7D0DA;
    background-color: #EDF0F2;
}

.main-container .l-container .form-wrapper .choice-elements .item.year .selecting {
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    left: 0 !important;
    bottom: 0 !important;
}

.main-container .l-container .form-wrapper .choice-elements .item.year {
    border: none;
}

.main-container .l-container .form-wrapper .choice-elements .item .img-wrapper {
    position: relative;
    height: 8.125vw;
}

.main-container .l-container .form-wrapper .choice-elements .item img {
    position: absolute;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease-in-out;
}

.main-container .l-container .form-wrapper .choice-elements .item .checkbox-container:hover,
.main-container .l-container .form-wrapper .bottom-elements .not-option .checkbox-container:hover {
    cursor: pointer;
}

.main-container .l-container .form-wrapper .choice-elements .item .checkbox-container:hover img {
    transform: scale(1.1);
}

.main-container .l-container .form-wrapper .choice-elements .item .checkbox-container:hover .custom-checkbox::after,
.main-container .l-container .form-wrapper .bottom-elements .not-option .checkbox-container:hover .custom-checkbox::after {
    content: '';
    width: 0.2vw;
    height: 0.4vw;
    border: solid #989899;
    border-width: 0 2px 2px 0;
    margin-bottom: 2px;
    transform: rotate(45deg);
    position: absolute;
}

.main-container .l-container .form-wrapper .choice-elements .item .selecting {
    position: absolute;
    background-color: rgba(242, 246, 250, 0.7);
    border-radius: 5px;
    padding: 0.83vw;
    left: 12px;
    bottom: 12px;
    display: flex;
    backdrop-filter: blur(10px);
}

.main-container .l-container .form-wrapper .choice-elements .item .selecting input,
.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting input {
    display: none;
}

.main-container .l-container .form-wrapper .choice-elements .item .selecting .custom-checkbox,
.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting .custom-checkbox {
    width: 1.04vw;
    height: 1.04vw;
    border-radius: 5px;
    background-color: #C7D0DA;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.main-container .l-container .form-wrapper .choice-elements .item .selecting input[type="checkbox"]:checked + .custom-checkbox,
.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #42A5F5;
}
  
.main-container .l-container .form-wrapper .choice-elements .item .selecting input[type="checkbox"]:checked + .custom-checkbox::after,
.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    width: 0.2vw;
    height: 0.4vw;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin-bottom: 2px;
    transform: rotate(45deg);
    position: absolute;
}

.main-container .l-container .form-wrapper .choice-elements .item .selecting .value,
.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting .value {
    color: #444651;
    margin-left: 0.625vw;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    transition: color 300ms ease;
}

.main-container .l-container .form-wrapper .choice-elements .item .checkbox-container:hover .value,
.main-container .l-container .form-wrapper .bottom-elements .not-option .checkbox-container:hover .value {
    color: #42A5F5;
}

.main-container .l-container .form-wrapper .bottom-elements {
    margin-top: 1.25vw;
}

.main-container .l-container .form-wrapper .bottom-elements .not-option {
    border-radius: 5px;
    background-color: #EDF0F2;
    width: calc((100% - 2.5vw ) / 3);
}

.main-container .l-container .form-wrapper .bottom-elements .not-option .selecting {
    display: flex;
    padding: 1.041vw 1.25vw;
}

.main-container .l-container .form-wrapper .btns-switch {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    display: flex;
}

.main-container .l-container .form-wrapper .btns-switch .button-prev {
    z-index: 0;
    border-radius: 5px;
    border: 1px solid #C7D0DA;
    background-color: #FFFFFF;
    color: #444651;
    padding: 1.041vw 1.25vw;
    align-items: center;
    gap: 0.625vw;
    white-space: nowrap;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 300ms, opacity 300ms, color 300ms ease, background-color 300ms ease, border 300ms ease;
}

.main-container .l-container .form-wrapper .btns-switch .button-prev.show-prev {
    pointer-events: all;
    opacity: 1;
    transform: translateX(-1.041vw);
}

.main-container .l-container .form-wrapper .btns-switch .button-prev svg path {
    stroke: #444651;
    transition: stroke 300ms ease;
}

.main-container .l-container .form-wrapper .btns-switch .button-prev:hover {
    cursor: pointer;
    background-color: #1976D2;
    color: #FFFFFF;
}

.main-container .l-container .form-wrapper .btns-switch .button-prev:hover svg path {
    stroke: #FFFFFF;
}

.main-container .l-container .form-wrapper .btns-switch .button-next {
    z-index: 2;
    border-radius: 5px;
    background-color: #EDF0F2;
    border: 1px solid #EDF0F2;
    color: #444651;
    padding: 1.041vw 1.25vw;
    display: flex;
    align-items: center;
    gap: 0.625vw;
    opacity: 1;
    transform: translateX(0%);
    pointer-events: all;
    transition: background-color 300ms ease, color 300ms ease, border 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.main-container .l-container .form-wrapper .btns-switch .button-next svg path {
    stroke: #444651;
    transition: stroke 300ms ease;
}

.main-container .l-container .form-wrapper .btns-switch .button-next:hover {
    cursor: pointer;
    background-color: #1976D2;
    border: 1px solid #1976D2;
    color: #FFFFFF;
}

.main-container .l-container .form-wrapper .btns-switch .button-next:hover svg path {
    stroke: #FFFFFF;
}


.main-container .l-container .form-wrapper .btns-switch svg {
    width: 1.041vw;
    height: 1.041vw;
}

.main-container .l-container .form-wrapper .form-step-2,
.main-container .l-container .form-wrapper .form-step-3,
.main-container .l-container .form-wrapper .form-step-4,
.main-container .l-container .form-wrapper .form-step-5,
.main-container .l-container .form-wrapper .form-step-6 {
    display: none;
}

.main-container .l-container .form-wrapper .form-step-5 .choice-elements,
.main-container .l-container .form-wrapper .form-step-6 .choice-elements {
    grid-template-columns: repeat(1, 1fr);
}


.main-container .l-container .form-wrapper .range-wrapper {
    width: 100%;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value,
.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value {
    background-color: #F9F9F9;
    color: #444651;
    text-align: center;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    padding: 0.52vw 0.625vw;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value {
    border-radius: 5px 5px 5px 0px;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value {
    border-radius: 5px 5px 0px 5px;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value::after,
.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom: none;
    margin-bottom: -6px;
    border-top-color: #F9F9F9;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value::after {
    left: -2px;
}

.main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value::after {
    right: -2px;
}

.main-container .l-container .form-wrapper .range-wrapper .current-value {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(var(--translateX));
    border-radius: 5px;
    text-align: center;
    background-color: #EF7403;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    height: 100%;
    text-align: center;
}

.main-container .l-container .form-wrapper .range-wrapper .current-value .flip-container {
    position: relative;
    height: 2vw;
    overflow: hidden;
}

.main-container .l-container .form-wrapper .range-wrapper .current-value .flip-text {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(calc(-10*2vw));
    transition: transform 300ms ease-in-out;
}

.main-container .l-container .form-wrapper .range-wrapper .current-value .flip-text div {
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container .l-container .form-wrapper .range-wrapper .current-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom: none;
    margin-bottom: -6px;
    border-top-color: #EF7403;
    left: var(--after-left);
    transform: translateX(var(--afer-translateX));
}

.main-container .l-container .form-wrapper .range-wrapper .price-slider {
    -webkit-appearance: none;
    margin-top: 26px;
    width: 100%;
    height: 0.625vw;
    background-color: #EDF0F2;
    border-radius: 45px;
    background: linear-gradient(to right, #EF7403 50%, #EDF0F2 50%);
}

.main-container .l-container .form-wrapper .range-wrapper .price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.041vw;
    height: 1.041vw;
    background-color: #EF7403;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(249, 249, 249, 0.2);
}

.main-container .l-container .form-wrapper .range-wrapper .instruction {
    margin-top: 1.25vw;
    display: flex;
    justify-content: center;
    gap: 0.625vw;
    color: #828689;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements {
    gap: 0 !important;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .subtitle {
    margin-top: 0 !important;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.25vw;
    font-weight: 700;
    color: #444651;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .description {
    margin-top: 0.625vw;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    color: #444651;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .inputs {
    margin-top: 1.25vw;
    display: flex;
    gap: 1.25vw;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input {
    border-radius: 5px;
    outline: none;
    border: 1px solid #EDF0F2;
    background-color: #F9F9F9 !important;
    background: url('../img/Phone.webp') no-repeat 1vw center;
    background-size: 1.041vw 1.041vw;
    padding: 1.041vw 2.91vw;
    width: calc(50% - 0.625vw);
    transition: border 300ms ease;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input:hover {
    border: 1px solid #828689;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input:last-child {
    background: url('../img/User.webp') no-repeat 1vw center;
    background-size: 1.041vw 1.041vw;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input::placeholder {
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .send-application {
    margin-top: 1.25vw;
    width: 100%;
    background-color: #EF7403;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 1.041vw 1.25vw;
    text-align: center;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .send-application:hover {
    cursor: pointer;
    background-color: #2074d4;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .note {
    margin-top: 1.25vw;
    color: #828689;
    font-size: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
}

.main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .note a {
    color: #828689;
    font-weight: 800;
}

.main-container .l-container .form-wrapper .form-step-6 .bottom-elements {
    opacity: 1;
    pointer-events: all;
    transition: opacity 300ms ease;
}

.main-container .l-container .form-wrapper .form-step-6 .bottom-elements.non-events {
    opacity: 0;
    pointer-events: none;
}

.main-container .l-container .form-wrapper .btns-switch.show-btn .button-next {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}

.main-container .l-container .form-wrapper .btns-switch.show-btn .button-prev {
    transform: translateX(100%);
}

.main-container .r-container {
    width: 16.56vw;
}

.main-container .r-container .title {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.25vw;
    font-weight: 400;
}

.main-container .r-container .items {
    margin-top: 0.93vw;
    display: flex;
    flex-direction: column;
    gap: 0.93vw;
}

.main-container .r-container .items .item {
    display: flex;
    align-items: center;
    gap: 0.625vw;
}

.main-container .r-container .items .item img {
    width: 1.45vw;
    height: 1.45vw;
}

.main-container .r-container .items .item .description {
    color: #444651;
    font-size: 0.83vw;
    font-family: "Inter Tight", serif;
    font-weight: 500;
}

.main-container .r-container .info-manager {
    margin-top: 1.875vw;
    width: 100%;
}

.main-container .r-container .info-manager img {
    width: 100%;
    border-radius: 5px;
}

.main-container .r-container .info-manager .description {
    margin-top: 0.625vw;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.main-container .r-container .info-manager .description .name {
    color: #444651;
    font-size: 0.83vw;
    font-family: "Inter Tight", serif;
    font-weight: 600;
}

.main-container .r-container .info-manager .description .text-anim {
    display: flex;
    align-items: center;
    gap: 0.625vw;
    color: #42A5F5;
    font-size: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: 600;
}

.main-container .r-container .info-manager .profession {
    margin-top: 6px;
    color: #828689;
    font-size: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
}


.popup-selection .exit {
    position: absolute;
    top: 1.25vw;
    right: 1.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125vw;
    height: 3.125vw;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #C7D0DA;
    transition: background-color 300ms ease, border 300ms ease;
}

.popup-selection .exit svg {
    width: 1.041vw;
    height: 1.041vw;
}

.popup-selection .exit svg path {
    stroke: #444651;
    transition: stroke 300ms ease;
}

.popup-selection .exit:hover {
    cursor: pointer;
    background-color: #1976D2;
    border: 1px solid #1976D2;
}

.popup-selection .exit:hover svg path {
    stroke: #FFFFFF;
}

.main-container .l-container .form-wrapper .btns-switch.mobile {
    display: none;
}

@media (max-width: 768px) {
    .popup-selection .main {
        width: 97.69vw;
        padding: 5.12vw;
        height: calc(100vh - 12.3vw);
    }

    .popup-selection .exit {
        top: 3.07vw;
        right: 3.07vw;
        width: 12.3vw;
        height: 12.3vw;
    }

    .popup-selection .exit svg {
        width: 5.12vw;
        height: 5.12vw;
    }

    .popup-selection .main .top-text-wrapper {
        display: none;
    }

    .popup-selection .main .top-text-wrapper .title {
        font-size: 7.17vw;
    }

    .popup-selection .main .top-text-wrapper .subtitle {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .popup-selection .main .main-container {
        margin-top: 6.15vw;
    }

    .main-container .r-container {
        display: none;
    }

    .main-container .l-container {
        margin-top: 6.15vw;
        width: 100%;
    }

    .main-container .l-container .progress-wrapper {
        width: 100%;
        padding: 2px;
        height: 9.23vw;
    }

    .main-container .l-container .progress-wrapper .progress-text {
        font-size: 3.07vw;
        margin-left: 4.61vw;
        display: none;
    }

    .main-container .l-container .progress-wrapper .progress-text.mobile {
        display: block;
    }

    .main-container .l-container .progress-wrapper .progress-text span {
        font-size: 2.0vw;
    }

    .main-container .l-container .form-wrapper {
        margin-top: 3.07vw;
    }












    .main-container .l-container .form-wrapper .title {
        font-size: 5.64vw;
    }

    .main-container .l-container .form-wrapper .choice-elements {
        margin-top: 3.07vw;
        gap: 3.07vw;
        grid-template-columns: repeat(2, 1fr);
    }

    .main-container .l-container .form-wrapper .choice-elements .item .img-wrapper {
        height: 25.64vw;
    }

    .main-container .l-container .form-wrapper .choice-elements .item .selecting {
        padding: 1.53vw;
        left: 1.53vw;
        bottom: 1.53vw;
    }

    .main-container .l-container .form-wrapper .choice-elements .item .selecting .custom-checkbox,
    .main-container .l-container .form-wrapper .bottom-elements .not-option .selecting .custom-checkbox {
        width: 5.12vw;
        height: 5.12vw;
    }

    .main-container .l-container .form-wrapper .choice-elements .item .selecting input[type="checkbox"]:checked + .custom-checkbox::after,
    .main-container .l-container .form-wrapper .bottom-elements .not-option .selecting input[type="checkbox"]:checked + .custom-checkbox::after {
        width: 0.98vw;
        height: 1.96vw;
    }

    .main-container .l-container .form-wrapper .choice-elements .item .checkbox-container:hover .custom-checkbox::after {
        width: 0.98vw;
        height: 1.96vw;
    }

    .main-container .l-container .form-wrapper .choice-elements .item .selecting .value,
    .main-container .l-container .form-wrapper .bottom-elements .not-option .selecting .value {
        margin-left: 3.07vw;
        font-size: 4.1vw;
    }

    .main-container .l-container .form-wrapper .bottom-elements {
        margin-top: 3.07vw;
    }

    .main-container .l-container .form-wrapper .bottom-elements .not-option {
        width: 100%;
    }

    .main-container .l-container .form-wrapper .bottom-elements .not-option .selecting {
        padding: 3.07vw 6.15vw;
    }

    .main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value,
    .main-container .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value {
        font-size: 4.1vw;
        padding: 2.56vw 3.07vw;
    }

    .main-container .l-container .form-wrapper .range-wrapper .current-value {
        font-size: 4.1vw;
    }

    .main-container .l-container .form-wrapper .range-wrapper .current-value .flip-container {
        height: 10.25vw;
    }

    .main-container .l-container .form-wrapper .range-wrapper .current-value .flip-text {
        transform: translateY(calc(-10 * 10.25vw));
    }

    .main-container .l-container .form-wrapper .range-wrapper .current-value .flip-text div {
        height: 10.25vw;
    }

    .main-container .l-container .form-wrapper .range-wrapper .price-slider {
        margin-top: 5.12vw;
        height: 3.07vw;
    }
    
    .main-container .l-container .form-wrapper .range-wrapper .price-slider::-webkit-slider-thumb {
        width: 5.12vw;
        height: 5.12vw;
    }
    
    .main-container .l-container .form-wrapper .range-wrapper .instruction {
        margin-top: 3.07vw;
        gap: 3.07vw;
        font-size: 4.1vw;
        align-items: start;
    }

    .main-container .l-container .form-wrapper .range-wrapper .instruction img {
        width: 5.12vw;
        height: 5.12vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .subtitle {
        font-size: 6.15vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .description {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .inputs {
        margin-top: 3.07vw;
        gap: 3.07vw;
        flex-direction: column;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input {
        width: 100%;
        padding: 5.12vw 14.86vw;
        background: url('../img/User.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input:last-child {
        background: url('../img/Phone.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts input::placeholder {
        font-size: 4.1vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .send-application {
        margin-top: 3.07vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
    }

    .main-container .l-container .form-wrapper .form-step-6 .choice-elements .form-contacts .note {
        margin-top: 3.07vw;
        font-size: 3.07vw;
    }

    .main-container .l-container .form-wrapper .btns-switch {
        display: none;
    }

    .main-container .l-container .form-wrapper .btns-switch.mobile {
        display: flex;
        margin-top: 3.07vw;
        position: relative;
        font-size: 4.1vw;
        gap: 3.07vw;
    }

    .main-container .l-container .form-wrapper .btns-switch .button-prev,
    .main-container .l-container .form-wrapper .btns-switch .button-next {
        justify-content: center;
        padding: 5.12vw 6.15vw;
        gap: 3.07vw;
        width: 100%;
    }

    .main-container .l-container .form-wrapper .btns-switch svg {
        width: 5.12vw;
        height: 5.12vw;
    }

    .main-container .l-container .form-wrapper .btns-switch .button-prev.show-prev {
        transform: translateX(0vw);
    }

    .main-container .l-container .form-wrapper .form-step-6 .bottom-elements.non-events {
        display: none;
    }















}