/* Анімація початок */
.dot-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.625vw;
    height: 0.625vw;
}

.dot-animation .ellipse-static {
    position: absolute;
    width: 0.625vw;
    height: 0.625vw;
    border-radius: 100%;
    background-color: #42A5F5;
    z-index: 2;
}

.dot-animation .ellipse-dynamic {
    position: absolute;
    width: 0.625vw;
    height: 0.625vw;
    border-radius: 100%;
    background-color: #42A5F5;
    opacity: 0.5;
    z-index: 1;
    animation: grow-and-fade 1.5s infinite;
}

@keyframes grow-and-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}
/* Анімація кінець */

/* Головний екран початок */
.main-background {
    width: 100vw;
    position: relative;
}

.main-background::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 19.21vw;
    background: linear-gradient(to top, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
    pointer-events: none;
}

.main-background .bg-img {
    width: 100vw;
}

.main-background .info-wrapper {
    user-select: none;
    padding: 0vw 10vw;
    position: absolute;
    left: 0;
    top: 7.5vw;
    width: 100%;
}

.main-background .big-title {
    font-family: "Wix Madefor Display", serif;
    font-size: 2.813vw;
    font-weight: 600;
    word-spacing: -2px;
    color: #444651;
}

.main-background .big-text span {
    font-size: 2.5vw;
}

.main-background .big-title .second-string {
    word-spacing: -2.5px;
}

.main-background .flags {
    width: 1.875vw;
    height: 1.875vw;
    vertical-align: baseline;
}

.main-background .subtitle {
    margin-top: 1.041vw;
}

.main-background .subtitle .main-text-wrapper {
    display: flex;
    align-items: center;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: bold;
}

.main-background .subtitle .main-text-wrapper img {
    width: 1.45vw;
    height: 1.45vw;
}

.main-background .subtitle .main-text {
    margin-left: 0.625vw;
    color: #EF7403;
    display: flex;
    align-items: center;
}

.main-background .subtitle .cont-text {
    color: #444651;
}

.main-background .subtitle .subtext {
    margin-top: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: normal;
    font-size: 0.833vw;
    color: #444651;
}

.main-background .form-miscalculation {
    margin-top: 2.86vw;
    display: flex;
    align-items: flex-start;
    width: 25.83vw;
    font-family: "Inter Tight", serif;
}

.main-background .form-miscalculation .top-text {
    line-height: 1.2;
    margin-top: -0.26vw;
    margin-left: 0.625vw;
    font-weight: normal;
    font-size: 0.833vw;
    color: #444651;
}

.main-background .form-miscalculation input {
    margin-top: 1.35vw;
    margin-left: -0.625vw;
    height: 3.125vw;
    padding: 1.04vw 2.91vw;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: #fff !important;
    background: url('../img/Phone.webp') no-repeat 1.25vw center;
    background-size: 1.041vw 1.041vw;
    width: 25.83vw;
}

.main-background .form-miscalculation input::placeholder {
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.main-background .form-miscalculation .send-application {
    margin-top: 0.625vw;
    padding: 1.041vw 1.25vw;
    border-radius: 5px;
    background-color: #42A5F5;
    margin-left: -0.625vw;
    text-align: center;
    font-weight: 400;
    font-size: 0.833vw;
    color: white;
    letter-spacing: 0.2px;
    transition: background-color 300ms ease;
}

.main-background .form-miscalculation .send-application:hover {
    cursor: pointer;
    background-color: #2074d4;
}

.main-background .form-miscalculation .note {
    margin-top: 0.625vw;
    margin-left: -0.625vw;
    color: #828689;
    font-size: 0.625vw;
}

.main-background .form-miscalculation .note a {
    color: #828689;
}

.main-background .CarServiceAdvantages {
    margin-top: 3.17vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25vw;
}

.main-background .CarServiceAdvantages .item {
    width: 25%;
}

.main-background .CarServiceAdvantages .item .main-container {
    display: flex;
    align-items: center;
}

.main-background .CarServiceAdvantages .item .main-container .title {
    margin-left: 0.93vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 600;
    font-size: 0.833vw;
    transition: color 300ms ease;
}

.main-background .CarServiceAdvantages .item .info-container {
    margin-top: 0.93vw;
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    line-height: 0.989vw;
}

.main-background .CarServiceAdvantages .item .main-container svg {
    width: 1.56vw;
    height: 1.56vw;
}

.main-background .CarServiceAdvantages .item .main-container .img path {
    transition: fill 300ms ease;
}

.main-background .CarServiceAdvantages .item:hover .main-container .title {
    color: #42A5F5;
}

.main-background .CarServiceAdvantages .item:hover .main-container .img path {
    fill: #42A5F5;
}


hover-300 {
    transition: color 300ms ease;
}

hover-300:hover {
    color: #42A5F5;
}
/* Головний екран кінець */

/* Каталог початок */
.catalog-section {
    margin: 6.82vw 10vw 0vw 10vw;
}

.catalog-section .category-info {
    display: flex;
    align-items: center;
}

.catalog-section .category-name {
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 600;
    margin-left: 0.625vw;
}

.catalog-section .catalog-cap {
    display: flex;
    align-items: flex-end;
}

.catalog-section .title-section {
    width: 46.145vw;
    margin-top: 0.625vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.catalog-section .filter-country {
    margin-left: 10.2vw;
}

.catalog-section .filter-country .text {
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 600;
}

.catalog-section .filter-country .buttons-wrapper {
    margin-top: 0.93vw;
    background-color: #F9F9F9;
    border-radius: 7px;
    padding: 0.31vw;
    display: flex;
    position: relative;
    overflow: hidden;
}

.catalog-section .filter-country .buttons-wrapper .active-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    background-color: #42A5F5;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 0;
    width: auto;
}

.catalog-section .filter-country .buttons-wrapper .item {
    border-radius: 5px;
    padding: 0.625vw 0.937vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 300ms ease;
    white-space: nowrap;
    z-index: 1;
    cursor: default;
}

.catalog-section .filter-country .buttons-wrapper .item.active {
    color: white;
}

.catalog-section .filter-country .buttons-wrapper .item:not(.active):hover {
    cursor: pointer;
    background-color: #C7D0DA;
}

.catalog-section .filter-country .buttons-wrapper .item .country-name {
    margin-left: 0.41vw;
}

.catalog-section .filter-country .buttons-wrapper .item img {
    width: 0.83vw;
    height: 0.88vw;
}

.catalog-section .catalog-auto {
    margin-top: 3.8vw;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25vw;
}

.catalog-section .catalog-auto .blank-card {
    background-color: #42A5F5;
    border-radius: 5px;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 400;
}

.catalog-section .catalog-auto .blank-card .subtext {
    margin: 9.42vw 2.29vw 2.18vw 2.29vw;
}

.catalog-section .catalog-auto .blank-card .open-catalog {
    display: inline-block;
    margin: 0vw auto;
    width: fit-content;
    border-radius: 5px;
    border: 1px solid white;
    padding: 1.041vw 1.25vw;
    color: #FFFFFF;
    transition: border 300ms ease, background-color 300ms ease;
}

.catalog-section .catalog-auto .blank-card .open-catalog:hover {
    border: 1px solid #1976D2;
    background-color: #1976D2;
}

.catalog-section .catalog-auto .item {
    border: 1px solid #EDF0F2;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.catalog-section .catalog-auto .item .img-container {
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
}

.catalog-section .catalog-auto .item .main-img {
    width: 100%;
    display: block;
    height: 10.72vw;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-section .catalog-auto .item .info-wrapper {
    padding: 1.25vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.catalog-section .catalog-auto .item .info-wrapper .title {
    display: block;
}

.catalog-section .catalog-auto .item .info-wrapper .title .country {
    display: flex;
    align-items: center;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
}

.catalog-section .catalog-auto .item .info-wrapper .title .country img {
    margin: 0vw 0.31vw;
    width: 0.83vw;
    height: 0.88vw;
}

.catalog-section .catalog-auto .item .info-wrapper .title .model {
    margin: 0.31vw 0vw 0.93vw 0vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 500;
    transition: color 300ms ease;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics {
    margin-top: auto;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics .first-line,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .second-line {
    gap: 0.625vw;
    display: flex;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics .second-line {
    margin-top: 0.625vw;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics .year-info,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .engine-info,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .fuel-info,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .mileage-info,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .transmission-info {
    display: flex;
    align-items: center;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics .year-info img,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .engine-info img,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .fuel-info img,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .mileage-info img,
.catalog-section .catalog-auto .item .info-wrapper .characteristics .transmission-info img {
    width: 0.729vw;
    height: 0.781vw;
}

.catalog-section .catalog-auto .item .info-wrapper .characteristics .value {
    margin-left: 0.31vw;
    color: #828689;
    font-family: "Inter Tight", serif;
    font-size: 0.625vw;
    font-weight: 500;
}

.catalog-section .catalog-auto .item .info-wrapper .price {
    margin: 0.93vw 0vw 0.47vw 0vw;
    color: #42A5F5;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 500;
}

.catalog-section .catalog-auto .item .info-wrapper .rescheduling {
    margin: 0vw 0vw 0.93vw 0vw;
    color: #828689;
    font-family: "Wix Madefor Display", serif;
    font-size: 0.93vw;
    font-weight: 500;
}

.catalog-section .catalog-auto .item .info-wrapper .send-application {
    background-color: #42A5F5;
    color: #fff;
    border-radius: 5px;
    padding: 1.041vw 1.25vw;
    text-align: center;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    transition: background-color 300ms ease;
}

.catalog-section .catalog-auto .item .info-wrapper .send-application:hover {
    background-color: #1976D2;
    cursor: pointer;
}

.catalog-section .catalog-auto .item .info-wrapper .more-info {
    display: flex;
    align-items: center;
    margin-top: 0.625vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
    cursor: pointer;
    transition: color 300ms ease;
}

.catalog-section .catalog-auto .item .info-wrapper .more-info svg {
    margin-left: 0.31vw;
    width: 0.83vw;
    height: 0.88vw;
}

.catalog-section .catalog-auto .item .info-wrapper .more-info svg path {
    transition: stroke 300ms ease;
}

.catalog-section .catalog-auto .item .info-wrapper .more-info:hover {
    color: #42A5F5;
}

.catalog-section .catalog-auto .item .info-wrapper .more-info:hover svg path {
    stroke: #42A5F5;
}

.catalog-section .catalog-auto .item:hover .info-wrapper .model {
    color: #42A5F5;
}

.catalog-section .catalog-auto .item:hover .img-container .main-img {
    transform: scale(1.15);
}
/* Каталог кінець */

/* Конкретні побажання початок */
.wish-section {
    margin-top: 6.4vw;
}

.wish-section .top-text-wrapper {
    margin: 0vw 10vw;
}

.wish-section .title {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.wish-section .title span {
    font-weight: 600;
}

.wish-section .subtitle {
    margin-top: 0.93vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 500;
}

.wish-section .wish-wrapper {
    background-color: #42A5F5;
    margin-top: 3.8vw;
    padding: 0vw 10vw;
    padding-bottom: 3.125vw;
}

.wish-section .wish-wrapper .progress-wrapper {
    width: 53.02vw;
    background-color: #FFFFFF;
    border-radius: 0px 0px 5px 5px;
    padding: 0.3125vw;
    height: 2.8125vw;
}

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

.wish-section .wish-wrapper .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;
}

.wish-section .wish-wrapper .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;
}

.wish-section .wish-wrapper .progress-wrapper .progress-text span {
    font-size: 0.625vw;
}

.wish-section .wish-wrapper .container-wrapper {
    margin-top: 3.125vw;
    width: 100%;
    display: flex;
    align-content: start;
    justify-content: space-between;
}

.wish-section .wish-wrapper .container-wrapper .l-container {
    width: 53.02vw;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper {
    position: relative;
    transition: height 300ms ease;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .title {
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.25vw;
    font-weight: 500;
}

.wish-section .wish-wrapper .container-wrapper .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;
}

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

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

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

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

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

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .choice-elements .item .checkbox-container:hover .custom-checkbox::after,
.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .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);
}

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

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .choice-elements .item .selecting .custom-checkbox,
.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .choice-elements .item .selecting input[type="checkbox"]:checked + .custom-checkbox,
.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .bottom-elements .not-option .selecting input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #42A5F5;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .choice-elements .item .selecting input[type="checkbox"]:checked + .custom-checkbox::after,
.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .choice-elements .item .selecting .value,
.wish-section .wish-wrapper .container-wrapper .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;
}

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

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

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

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

.wish-section .wish-wrapper .container-wrapper .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;
}

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

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .btns-switch .button-prev {
    z-index: 0;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    background-color: #42A5F5;
    color: #FFFFFF;
    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;
}

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

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

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


.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .btns-switch .button-next {
    z-index: 2;
    border-radius: 5px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    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;
}

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

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

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

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

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



.wish-section .wish-wrapper .container-wrapper .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;
}

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

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

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

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

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value,
.wish-section .wish-wrapper .container-wrapper .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;
}

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

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

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value::after,
.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .range-wrapper .range-info-wrapper .min-value::after {
    left: 0px;
}

.wish-section .wish-wrapper .container-wrapper .l-container .form-wrapper .range-wrapper .range-info-wrapper .max-value::after {
    right: 0px;
}

.wish-section .wish-wrapper .container-wrapper .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;
}

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

.wish-section .wish-wrapper .container-wrapper .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;
}

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

.wish-section .wish-wrapper .container-wrapper .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));
}

.wish-section .wish-wrapper .container-wrapper .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%);
}

.wish-section .wish-wrapper .container-wrapper .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);
}

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

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

.wish-section .wish-wrapper .container-wrapper .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: #FFFFFF;
}

.wish-section .wish-wrapper .container-wrapper .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: 400;
    color: #FFFFFF;
}

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

.wish-section .wish-wrapper .container-wrapper .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;
}

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

.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .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;
}

.wish-section .wish-wrapper .container-wrapper .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;
}

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

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

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

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

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

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

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

.wish-section .wish-wrapper .container-wrapper .r-container {
    width: 19.06vw;
}

.wish-section .wish-wrapper .container-wrapper .r-container .title {
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.25vw;
    font-weight: 500;
}

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

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

.wish-section .wish-wrapper .container-wrapper .r-container .items .item img {
    width: 1.45vw;
    height: 1.45vw;
}

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

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

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

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

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

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

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

.wish-section .uncertainty-wrapper {
    padding-top: 3.17vw;
    background-color: #42A5F5;
    padding-bottom: 4.0625vw;
}

.wish-section .uncertainty-wrapper .line {
    border-top: 1px solid #D9D9D9;
}

.wish-section .uncertainty-wrapper .appl-wrapper {
    padding: 0vw 10vw;
    margin-top: 3.125vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wish-section .uncertainty-wrapper .appl-wrapper .text-container {
    width: 48.95%;
}

.wish-section .uncertainty-wrapper .appl-wrapper .text-container .title {
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 600;
}

.wish-section .uncertainty-wrapper .appl-wrapper .text-container .subtitle {
    margin-top: 0.625vw;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 400;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container {
    width: 31.3%;
    display: block;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container input {
    height: 3.125vw;
    padding: 1.041vw 2.91vw;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100% !important;
    background-color: #fff !important;
    background: url('../img/Phone.webp') no-repeat 1.25vw center;
    background-size: 1.041vw 1.041vw;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container input::placeholder {
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application {
    margin-top: 0.625vw;
    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: 500;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application:hover {
    background-color: #1976D2;
    cursor: pointer;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container .note {
    margin-top: 0.625vw;
    color: #EDF0F2;
    font-size: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
}

.wish-section .uncertainty-wrapper .appl-wrapper .appl-container .note a {
    color: #EDF0F2;
    font-weight: 800;
}
/* Конкретні побажання кінець */

/*6 Етапів початок */
.steps-section {
    padding: 5.36vw 10vw 0vw 10vw;
    display: flex;
    justify-content: space-between;
    align-items: stretch !important;
}

.steps-section .big-img-wrapper {
    width: 32.6vw;
}

.steps-section .big-img-wrapper img {
    width: 100%;
}

.steps-section .steps-info {
    width: 49.21%;
    display: flex;
    flex-direction: column;
}

.steps-section .steps-info .small-title {
    display: flex;
    gap: 0.625vw;
    align-items: center;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 600;
    font-size: 0.833vw;
}

.steps-section .steps-info .big-title {
    margin-top: 0.93vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 600;
}

.steps-section .steps-info .switch-wrapper {
    margin-top: 3.8vw;
    display: inline-block;
}

.steps-section .steps-info .switch-wrapper .switch-main {
    background-color: #F9F9F9;
    padding: 0.3125vw;
    border-radius: 7px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.steps-section .steps-info .switch-wrapper .sw-item {
    padding: 0.625vw 0.93vw;
    border-radius: 5px;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 600;
    font-size: 0.833vw;
    transition: color 300ms ease;
    z-index: 1;
    cursor: default;
}

.steps-section .steps-info .switch-wrapper .active-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    background-color: #42A5F5;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 0;
    width: auto;
}

.steps-section .steps-info .switch-wrapper .sw-item.active {
    color: white;
}

.steps-section .steps-info .switch-wrapper .sw-item:not(.active):hover {
    cursor: pointer;
    background-color: #C7D0DA;
}

.steps-section .steps-info .description-wrapper {
    margin-top: 2.08vw;
    display: flex;
    justify-content: space-between;
    flex: 1 0 auto;
}

.steps-section .steps-info .description-wrapper .info-wrapper {
    width: 12.29vw;
    position: relative;
}

.steps-section .steps-info .description-wrapper .info-wrapper .step-name {
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 500;
    height: 100%;
}

.steps-section .steps-info .description-wrapper .info-wrapper .step-name step-color {
    color: #42A5F5;
    display: block;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 0.625vw;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper div {
    width: 3.125vw;
    height: 3.125vw;
    border-radius: 5px;
    border: 1px solid #C7D0DA;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 300ms ease, border 300ms ease, opacity 300ms ease;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper div svg {
    width: 1.041vw;
    height: 1.041vw;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper div.disabled {
    opacity: 30%;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper div:not(.disabled):hover {
    cursor: pointer;
    background-color: #1976D2;
    border: 1px solid #1976D2;
}

.steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper div:not(.disabled):hover svg path {
    stroke: #FFFFFF;
}

.steps-section .steps-info .description-wrapper .text-wrapper {
    width: 25.83vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.steps-section .steps-info .description-wrapper .text-wrapper step-color {
    color: #42A5F5;
}
/* 6 етапів кінець */

/* GPS трекер початок */
.gps-tracker-section {
    margin: 3.75vw 10vw 0vw 10vw;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 9.375vw;
    border-radius: 5px;
}

.gps-tracker-section .gps-info {
    width: 83%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
}

.gps-tracker-section .gps-info .main {
    margin-left: 3.125vw;
    display: flex;
    align-items: start;
    gap: 0.625vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 700;
}

.gps-tracker-section .gps-info .main img {
    width: 1.25vw;
    height: 1.25vw;
}

.gps-tracker-section .gps-info .secondary {
    margin-left: 3.75vw;
    width: 20.2vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
}

.gps-tracker-section .gps-info .tracker {
    position: relative;
    height: 100%;
}

.gps-tracker-section .gps-info .tracker img {
    position: absolute;
    bottom: 0;
    left: 6%;
    transform: translateX(-6%);
    z-index: 1;

    width: 23.85vw;
}

.gps-tracker-section .gps-info .tracker .heading {
    color: #444651;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.625vw;
    padding: 0.52vw 0.625vw;
    white-space: nowrap;
    position: absolute;
    top: 30%;
    transform: translateX(90%);
    z-index: 2;
}

.gps-tracker-section .gps-info .tracker .heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    left: calc(50% - 6px);
    border: 6px solid transparent;
    border-bottom: none;
    margin-bottom: -6px;
    border-top-color: #FFFFFF;
}

.gps-tracker-section .gps-info .dot-animation {
    position: absolute;
    top: 58%;
    z-index: 2;
    transform: translateX(8.07vw);
}

.gps-tracker-section .buyers-info {
    width: 15.36%;
    border-radius: 5px;
    padding: 1.25vw;
    background-color: #42A5F5;
}

.gps-tracker-section .buyers-info img {
    width: 1.25vw;
    height: 1.25vw;
}

.gps-tracker-section .buyers-info .col-buyers {
    margin-top: 6px;
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 700;
}

.gps-tracker-section .buyers-info .description {
    margin-top: 0.625vw;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-weight: 300;
    font-size: 0.833vw;
}
/* GPS трекер кінець */

/* Кредитування початок */
.credit-section {
    margin-top: 6.25vw;
    background-color: #444651;
    width: 100%;
    position: relative;
    padding: 3.75vw 10vw;
}

.credit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      33deg,
      #444651 0%,
      #444651 44%,
      #33353E 44%,
      #33353E 80.5%
    );
    z-index: 0;
}

.credit-section .background-img {
    position: absolute;
    z-index: 2;
    right: 0%;
    top: 4%;
    width: 55.41vw;
}

.credit-section .wrapper {
    position: relative;
    z-index: 1;
}

.credit-section .category-name {
    display: flex;
    align-items: center;
}

.credit-section .category-name .name {
    margin-left: 0.625vw;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.credit-section .big-text {
    margin-top: 0.93vw;
    width: 42.39vw;
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.credit-section .tile-wrappers {
    margin-top: 1.875vw;
    gap: 0.625vw;
    display: flex;
}

.credit-section .tile-wrappers .item {
    width: 16.3vw;
    display: inline-block;
    background-color: #42A5F5;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 1.25vw 1.875vw;
    white-space: nowrap;
    cursor: default;
}

.credit-section .tile-wrappers .item .value {
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 600;
}

.credit-section .tile-wrappers .item .description {
    margin-top: 6px;
    font-family: "Inter Tight", serif;
    font-weight: 300;
    font-size: 0.833vw;
}

.credit-section .conditions {
    margin-top: 1.25vw;
    gap: 0.93vw;
}

.credit-section .conditions .item {
    margin-top: 0.93vw;
    display: flex;
    align-items: center;
    gap: 0.625vw;
}

.credit-section .conditions .item img {
    width: 1.458vw;
    height: 1.458vw;
}

.credit-section .conditions .item .text {
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
}

.credit-section .send-application {
    margin-top: 1.25vw;
    border-radius: 5px;
    background-color: #EF7403;
    color: #FFFFFF;
    padding: 1.041vw 1.25vw;
    display: inline-block;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.credit-section .send-application:hover {
    background-color: #1976D2;
    cursor: pointer;
}
/* Кредитування кінець */

/* Заявка з побажаннями початок */
.wish-application-section {
    margin-top: 6.25vw;
    width: 100%;
    background-color: #42A5F5;
    padding: 3.125vw 10vw 3.95vw 10vw;
    display: flex;
    justify-content: space-between;
}

.wish-application-section .l-container {
    width: 40.75%;
    color: #FFFFFF;
}

.wish-application-section .l-container .title {
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.wish-application-section .l-container .subtitle {
    margin-top: 2.18vw;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 400;
}

.wish-application-section .l-container .content {
    margin-top: 8px;
    font-family: "Inter Tight", serif;
    font-weight: 300;
    font-size: 0.833vw;
}

.wish-application-section .c-container {
    width: 23.82%;
    display: grid;
    gap: 0.625vw;
}

.wish-application-section .c-container input,
.wish-application-section .c-container textarea {
    height: 3.125vw;
    padding: 1.041vw 2.91vw;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background-color: #fff !important;
    background: url('../img/User.webp') no-repeat 1.25vw center;
    background-size: 1.041vw 1.041vw;
}

.wish-application-section .c-container input:nth-child(2n) {
    background: url('../img/Phone.webp') no-repeat 1.25vw center;
    background-size: 1.041vw 1.041vw;
}

.wish-application-section .c-container textarea {
    height: 5vw;
    background: url('../img/info.webp') no-repeat 1.25vw 1.041vw;
    background-size: 1.041vw 1.041vw;
    resize: none;
}

.wish-application-section .c-container input::placeholder,
.wish-application-section .c-container textarea::placeholder {
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.wish-application-section .c-container .send-application {
    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: 500;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.wish-application-section .c-container .send-application:hover {
    background-color: #1976D2;
    cursor: pointer;
}

.wish-application-section .c-container .note {
    font-family: "Inter Tight", serif;
    font-weight: 300;
    color: #EDF0F2;
    font-size: 0.625vw;
}

.wish-application-section .c-container .note a {
    color: #EDF0F2;
}

.wish-application-section .r-container {
    width: 15.36%;
}

.wish-application-section .r-container img {
    border-radius: 5px;
    width: 100%;
}

.wish-application-section .r-container .name {
    margin-top: 0.625vw;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
}

.wish-application-section .r-container .profession {
    margin-top: 0.625vw;
    color: #EDF0F2;
    font-family: "Inter Tight", serif;
    font-weight: 300;
    font-size: 0.625vw;
}

.wish-application-section .r-container .text-anim {
    margin-top: 0.625vw;
    display: flex;
    align-items: center;
    gap: 0.625vw;
    color: #EDF0F2;
    font-family: "Inter Tight", serif;
    font-weight: 600;
    font-size: 0.625vw;
}
/* Заявка з побажаннями кінець */

/* Про нас початок */
.abuot-us-section {
    margin: 6.25vw 10vw 0vw 10vw;
}

.abuot-us-section .info-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.abuot-us-section .info-container .l-container {
    display: flex;
    width: calc(39.19% + 1.25vw);
}

.abuot-us-section .info-container .l-container .main-img {
    width: 79.23%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.abuot-us-section .info-container .l-container .main-img .clarification-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2.1875vw;
    z-index: 2;
    width: 100%;
}

.abuot-us-section .info-container .l-container .main-img .clarification-wrapper .box {
    padding: 0.9375vw 1.875vw;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(19.7px);
    border-radius: 5px;
}

.abuot-us-section .info-container .l-container .main-img img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.abuot-us-section .info-container .l-container .sidebar-img {
    margin-left: 1.25vw;
    width: 5.52vw;
    display: flex;
    flex-direction: column;
    gap: 0.625vw;
}

.abuot-us-section .info-container .l-container .sidebar-img .img-wrapper {
    height: calc(100% / 4);
    overflow: hidden;
}

.abuot-us-section .info-container .l-container .sidebar-img img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.abuot-us-section .info-container .r-container {
    width: 49.54%;
} 

.abuot-us-section .info-container .category-name {
    display: flex;
    align-items: center;
}

.abuot-us-section .info-container .category-name .name {
    margin-left: 0.625vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.abuot-us-section .info-container .title {
    margin-top: 0.93vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
}

.abuot-us-section .info-container .subtitle {
    margin-top: 2.239vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
}

.abuot-us-section .info-container .btn-more-info {
    margin-top: 2.86vw;
    display: inline-block;
    background-color: #42A5F5;
    border-radius: 5px;
    padding: 1.041vw 1.25vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.abuot-us-section .info-container .btn-more-info:hover {
    background-color: #1976D2;
    cursor: pointer;
}

.abuot-us-section .info-container .btn-more-info a {
    color: #FFFFFF;
}

.abuot-us-section .CarServiceAdvantages {
    margin-top: 3.125vw;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1.25vw;
}

.abuot-us-section .CarServiceAdvantages .item {
    width: 25%;
}

.abuot-us-section .CarServiceAdvantages .item .main-container {
    display: flex;
    align-items: center;
}

.abuot-us-section .CarServiceAdvantages .item .main-container .title {
    margin-left: 0.93vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 600;
    font-size: 0.833vw;
    transition: color 300ms ease;
}

.abuot-us-section .CarServiceAdvantages .item .info-container {
    margin-top: 0.93vw;
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    line-height: 19px;
}

.abuot-us-section .CarServiceAdvantages .item .main-container .img path {
    transition: fill 300ms ease;
}

.abuot-us-section .CarServiceAdvantages .item .main-container svg {
    width: 1.56vw;
    height: 1.56vw;
}

.abuot-us-section .CarServiceAdvantages .item:hover .main-container .title {
    color: #42A5F5;
}

.abuot-us-section .CarServiceAdvantages .item:hover .main-container .img path {
    fill: #42A5F5;
}
/* Про нас кінець */

/* Популярні питання початок */
.questions-section {
    margin: 6.4vw 10vw 0vw 10vw;
}

.questions-section .category-name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.questions-section .category-name .name {
    margin-left: 0.625vw;
    color: #444651;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.questions-section .title {
    margin-top: 0.93vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 2.5vw;
    font-weight: 400;
    text-align: center;
}

.questions-section .qusetions-wrapper {
    margin-top: 3.8vw;
    display: flex;
    flex-direction: column;
    gap: 0.625vw;
}

.questions-section .faq-item .question {
    cursor: pointer;
    background-color: #F9F9F9;
    border-radius: 5px;
    padding: 1.25vw 1.875vw;
    color: #444651;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 300ms ease, color 300ms ease;
}

.questions-section .faq-item .answer {
    background-color: #F9F9F9;
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 400;
    font-size: 0.833vw;
    border-radius: 0px 0px 5px 5px;
    max-height: 0px;
    padding: 0vw 1.875vw;
    overflow: hidden;
    transition: max-height 300ms ease-in-out, padding 300ms ease-in-out;
}

.questions-section .faq-item.active .answer {
    max-height: 500px;
    padding: 1.25vw 1.875vw;
    border-top: 1px solid rgba(130, 134, 137, 0.1);
}

.questions-section .faq-item:not(.active) .question svg path {
    transition: stroke 900ms ease;
}

.questions-section .faq-item:not(.active) .question:hover {
    background-color: #42A5F5;
    color: #FFFFFF;
}

.questions-section .faq-item:not(.active) .question:hover svg path {
    stroke: #FFFFFF;
}

.questions-section .faq-item svg.plus,
.questions-section .faq-item.active svg.minus {
    display: block;
    width: 1.25vw;
    height: 1.25vw;
}

.questions-section .faq-item svg.minus,
.questions-section .faq-item.active svg.plus {
    display: none;
    width: 1.25vw;
    height: 1.25vw;
}
/* Популярні питання кінець */

/* Заявка перед футером початок */
.uncertainty-section .uncertainty-wrapper {
    margin-top: 2.7vw;
    padding: 2.7vw 0vw;
    background-color: #42A5F5;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper {
    padding: 0vw 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container {
    width: 48.95%;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container .title {
    color: #FFFFFF;
    font-family: "Wix Madefor Display", serif;
    font-size: 1.250vw;
    font-weight: 600;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container .subtitle {
    margin-top: 0.625vw;
    color: #FFFFFF;
    font-family: "Inter Tight", serif;
    font-size: 0.833vw;
    font-weight: 400;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container {
    width: 31.3%;
    display: block;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container input {
    height: 3.125vw;
    padding: 1.041vw 2.91vw;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background-color: #fff !important;
    background: url('../img/Phone.webp') no-repeat 1.25vw center;
    background-size: 1.041vw 1.041vw;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container input::placeholder {
    color: #828689;
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 0.833vw;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application {
    margin-top: 0.625vw;
    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: 500;
    font-size: 0.833vw;
    transition: background-color 300ms ease;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application:hover {
    background-color: #1976D2;
    cursor: pointer;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .note {
    margin-top: 0.625vw;
    color: #EDF0F2;
    font-size: 0.625vw;
    font-family: "Inter Tight", serif;
    font-weight: 400;
}

.uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .note a {
    color: #EDF0F2;
    font-weight: 800;
}
/* Заявка перед футером кінець */







.main-background .bg-img-mobile {
    display: none;
}

.main-background .big-title.mobile {
    display: none;
}

.CarServiceAdvantages-mobile {
    display: none;
}

.wish-section .wish-wrapper .progress-wrapper .progress-text.mobile {
    display: none;
}

.steps-section .big-img-wrapper.mobile {
    display: none;
}

.steps-section .switchPanel-mobile {
    display: none;
}

.credit-section .background-img.mobile {
    display: none;
}

.wish-application-section .r-container.mobile {
    display: none;
}

.abuot-us-section .info-container .l-container.mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }

    .dot-animation {
        width: 3.07vw;
        height: 3.07vw;
    }
    
    .dot-animation .ellipse-static {
        width: 3.07vw;
        height: 3.07vw;
    }
    
    .dot-animation .ellipse-dynamic {
        width: 3.07vw;
        height: 3.07vw;
    }

    .main-background .img-container .bg-img {
        display: none;
    }

    .main-background .img-container .bg-img-mobile {
        display: block;
        width: 100vw;
    }

    .main-background::before {
        z-index: 2;
        height: 60.51vw;
    }

    .main-background .info-wrapper {
        top: 0;
        padding: 24.61vw 6.15vw 0vw 6.15vw;
    }

    .main-background .big-title {
        font-size: 7.69vw;
        word-spacing: 5px;
        display: none;
    }

    .main-background .big-title.mobile {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .main-background .big-title.mobile div {
        display: flex;
        flex-wrap: wrap;
    }

    .main-background .big-title.mobile hover-300 {
        display: flex;
        align-items: center;
        gap: 1.53vw;
    }

    .main-background .big-title.mobile .second-string hover-300:last-child {
        margin: 0vw 1.53vw;
    }

    .main-background .flags {
        width: 7.69vw;
        height: 7.69vw;
    }

    .main-background .subtitle {
        margin-top: 3.07vw;
    }

    .main-background .subtitle .main-text-wrapper {
        font-size: 6.15vw;
        width: 100%;
        align-items: baseline;
    }

    .main-background .subtitle .main-text-wrapper img {
        width: 5.12vw;
        height: 5.12vw;
    }

    .main-background .subtitle .main-text-wrapper .main-text {
        margin-left: 1.53vw;
        display: block;
    }

    .main-background .subtitle .subtext {
        margin-top: 1.53vw;
        font-size: 4.1vw;
    }

    .main-background .info-wrapper {
        height: 100%;
    }

    .main-background .form-miscalculation {
        width: 87.7vw;
        position: absolute;
        bottom: 9.23vw;
        z-index: 7;
    }

    .main-background .form-miscalculation .dot-animation,
    .main-background .form-miscalculation .top-text {
        display: none;
    }

    .main-background .form-miscalculation form {
        width: 100%;
    }

    .main-background .form-miscalculation input {
        margin: 0;
        width: 100%;
        height: 15.38vw;
        padding: 5.12vw 14.86vw;
        background: url('../img/Phone.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .main-background .form-miscalculation input::placeholder {
        font-size: 4.1vw;
    }

    .main-background .form-miscalculation .send-application {
        margin-top: 1.53vw;
        margin-left: 0vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
        letter-spacing: 0px;
    }

    .main-background .form-miscalculation .note {
        margin-top: 1.53vw;
        margin-left: 0vw;
        font-size: 3.07vw;
    }

    .main-background .CarServiceAdvantages {
        display: none;
    }

    .CarServiceAdvantages-mobile {
        margin: 6.15vw 6.15vw 0vw 6.15vw;
        width: 87.7vw;
        display: flex;
        align-items: start;
        gap: 6.15vw;
        overflow-x: scroll;
    }

    .CarServiceAdvantages-mobile::-webkit-scrollbar {
        display: none;
    }

    .CarServiceAdvantages-mobile .item {
        min-width: 68.97vw;
    }
    
    .CarServiceAdvantages-mobile .item .main-container {
        display: flex;
        align-items: center;
    }
    
    .CarServiceAdvantages-mobile .item .main-container .title {
        margin-left: 3.07vw;
        color: #444651;
        font-family: "Inter Tight", serif;
        font-weight: 600;
        font-size: 4.1vw;
        transition: color 300ms ease;
    }
    

    .CarServiceAdvantages-mobile .item .info-container {
        margin-top: 3.07vw;
        color: #828689;
        font-family: "Inter Tight", serif;
        font-weight: 400;
        font-size: 4.1vw;
    }

    .CarServiceAdvantages-mobile .item .main-container svg {
        width: 7.69vw;
        height: 7.69vw;
    }
    
    .CarServiceAdvantages-mobile .item .main-container .img path {
        transition: fill 300ms ease;
    }
    
    .CarServiceAdvantages-mobile .item:hover .main-container .title {
        color: #42A5F5;
    }
    
    .CarServiceAdvantages-mobile .item:hover .main-container .img path {
        fill: #42A5F5;
    }

    .catalog-section {
        margin: 18.46vw 6.15vw 0vw 6.15vw;
    }

    .catalog-section .category-name {
        font-size: 3.07vw;
        margin-left: 4.1vw;
    }

    .catalog-section .catalog-cap {
        flex-direction: column;
    }

    .catalog-section .title-section {
        width: 100%;
        margin-top: 3.07vw;
        font-size: 7.17vw;
    }

    .catalog-section .filter-country {
        margin: 6.15vw auto 0vw 0vw;
        display: inline-block;
    }

    .catalog-section .filter-country .text {
        font-size: 4.1vw;
    }

    .catalog-section .filter-country .buttons-wrapper {
        margin: 3.07vw 0vw 0vw 0vw;
        padding: 2px;
    }

    .catalog-section .filter-country .buttons-wrapper .item {
        padding: 1.53vw 3.07vw;
        font-size: 3.07vw;
    }

    .catalog-section .filter-country .buttons-wrapper .item img {
        width: 4.1vw;
        height: 4.1vw;
    }

    .catalog-section .filter-country .buttons-wrapper .active-bg {
        top: 2px;
        bottom: 2px;
    }

    .catalog-section .filter-country .buttons-wrapper .item .country-name {
        margin-left: 2vw;
    }

    .catalog-section .catalog-auto {
        margin-top: 10.76vw;
        grid-template-columns: repeat(2, 1fr);
        grid: 3.07vw;
    }

    .catalog-section .catalog-auto .item .main-img {
        height: 33.3vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper {
        padding: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .title .country {
        font-size: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .title .country img {
        margin: 0 1.53vw;
        width: 4.1vw;
        height: 4.1vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .title .model {
        margin: 1.53vw 0vw 3.07vw 0vw;
        font-size: 5.64vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .characteristics .first-line,
    .catalog-section .catalog-auto .item .info-wrapper .characteristics .second-line {
        gap: 1.53vw;
        flex-direction: column;
    }

    .catalog-section .catalog-auto .characteristics .second-line {
        margin-top: 1.53vw !important;
    }

    .catalog-section .catalog-auto .item .info-wrapper .characteristics div img {
        width: 3.58vw !important;
        height: 3.58vw !important;
    }

    .catalog-section .catalog-auto .item .info-wrapper .characteristics .value {
        margin-left: 1.53vw;
        font-size: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .price {
        margin: 3.07vw 0vw 1vw 0vw;
        font-size: 5.64vw;
    }
    
    .catalog-section .catalog-auto .item .info-wrapper .rescheduling {
        margin: 0vw 0vw 3.07vw 0vw;
        font-size: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .send-application {
        padding: 4.1vw 0vw;
        font-size: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .more-info {
        margin-top: 3.07vw;
        font-size: 3.07vw;
    }

    .catalog-section .catalog-auto .item .info-wrapper .more-info svg {
        margin-left: 1.53vw;
        width: 4.1vw;
        height: 4.1vw;
    }

    .catalog-section .catalog-auto .blank-card {
        font-size: 4.1vw;
    }

    .catalog-section .catalog-auto .blank-card .subtext {
        margin: 23.84vw 4.1vw 0vw 4.1vw;
    }

    .catalog-section .catalog-auto .blank-card .open-catalog {
        margin: 10.76vw auto 0vw auto;
        padding: 5.12vw 6.15vw;
    }

    .wish-section {
        margin-top: 18.46vw;
    }

    .wish-section .top-text-wrapper {
        margin: 0vw 6.15vw;
    }

    .wish-section .title {
        font-size: 7.17vw;
    }

    .wish-section .title br {
        display: none;
    }

    .wish-section .subtitle {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .wish-section .wish-wrapper {
        margin-top: 10.76vw;
        padding: 0vw 6.15vw 6.15vw 6.15vw;
    }

    .wish-section .wish-wrapper .progress-wrapper {
        width: 100%;
        padding: 2px;
        height: 9.23vw;
    }

    .wish-section .wish-wrapper .progress-wrapper .progress-text {
        font-size: 3.07vw;
        margin-left: 4.61vw;
        display: none;
    }

    .wish-section .wish-wrapper .progress-wrapper .progress-text.mobile {
        display: block;
    }

    .wish-section .wish-wrapper .progress-wrapper .progress-text span {
        font-size: 2.0vw;
    }

    .wish-section .wish-wrapper .container-wrapper {
        margin-top: 6.15vw;
        flex-direction: column;
    }

    .wish-section .wish-wrapper .container-wrapper .l-container {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .wish-section .wish-wrapper .container-wrapper .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;
    }

    .wish-section .wish-wrapper .container-wrapper .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;
    }

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

    .wish-section .wish-wrapper .container-wrapper .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;
    }

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

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

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

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

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

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

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

    .wish-section .wish-wrapper .container-wrapper .r-container {
        margin-top: 12.3vw;
        width: 100%;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .title {
        font-size: 5.64vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .items {
        margin-top: 6.15vw;
        gap: 3.07vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .items .item {
        gap: 1.53vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .items .item img {
        width: 7.17vw;
        height: 7.17vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .items .item .description {
        font-size: 4.1vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .info-manager {
        margin-top: 6.15vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .info-manager .description {
        margin-top: 3.07vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .info-manager .description .name {
        font-size: 4.1vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .info-manager .description .text-anim {
        gap: 3.07vw;
        font-size: 3.07vw;
    }

    .wish-section .wish-wrapper .container-wrapper .r-container .info-manager .profession {
        margin-top: 1.53vw;
        font-size: 3.07vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper {
        margin-top: 6.15vw;
        padding: 0vw 6.15vw;
        flex-direction: column;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .text-container {
        width: 100%;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .text-container .title {
        font-size: 5.64vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .text-container .subtitle {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .appl-container {
        margin-top: 6.15vw;
        width: 100%;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .appl-container input {
        height: 15.38vw;
        padding: 5.12vw 14.86vw;
        background: url('../img/Phone.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .appl-container input::placeholder {
        font-size: 4.1vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application {
        margin-top: 3.07vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
    }

    .wish-section .uncertainty-wrapper .appl-wrapper .appl-container .note {
        margin-top: 3.07vw;
        font-size: 3.07vw;
    }

    .steps-section {
        padding: 18.46vw 6.15vw 0vw 6.15vw;
        flex-direction: column-reverse;
    }

    .steps-section .steps-info {
        width: 100%;
    }

    .steps-section .steps-info .small-title {
        gap: 3.07vw;
        font-size: 4.1vw;
    }

    .steps-section .steps-info .big-title {
        margin-top: 3.07vw;
        font-size: 7.17vw;
    }

    .steps-section .steps-info .big-title br {
        display: none;
    }

    .steps-section .big-img-wrapper {
        display: none;
    }

    .steps-section .big-img-wrapper.mobile {
        margin-top: 12.82vw;
        display: block;
        width: 100%;
    }

    .steps-section .big-img-wrapper.mobile img {
        width: 100%;
        display: block;
    }

    .steps-section .steps-info .switch-wrapper {
        display: none;
    }

    .steps-section .steps-info .description-wrapper {
        margin-top: 6.15vw;
        flex-direction: column;
    }

    .steps-section .steps-info .description-wrapper .info-wrapper {
        width: 100%;
    }

    .steps-section .steps-info .description-wrapper .info-wrapper .step-name {
        font-size: 5.64vw;
    }

    .steps-section .steps-info .description-wrapper .info-wrapper .btn-wrapper {
        display: none;
    }

    .steps-section .steps-info .description-wrapper .text-wrapper {
        margin-top: 4.61vw;
        font-size: 4.1vw;
        width: 100%;
        gap: 4.1vw;
    }

    .steps-section .switchPanel-mobile {
        margin-top: 6.15vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .steps-section .switchPanel-mobile .switchWrapper {
        display: flex;
        align-items: center;
        gap: 1.53vw;
    }

    .steps-section .switchPanel-mobile .switchWrapper .item {
        width: 3.07vw;
        height: 3.07vw;
        border-radius: 100%;
        background-color: #EDF0F2;
        transition: background-color 300ms ease;
    }

    .steps-section .switchPanel-mobile .switchWrapper .item.active {
        background-color: #42A5F5;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper {
        display: flex;
        align-items: center;
        gap: 3.07vw;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper div {
        width: 12.3vw;
        height: 12.3vw;
        border-radius: 5px;
        border: 1px solid #C7D0DA;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 300ms ease, border 300ms ease, opacity 300ms ease;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper div svg {
        width: 5.12vw;
        height: 5.12vw;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper div.disabled {
        opacity: 30%;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper div:not(.disabled):hover {
        cursor: pointer;
        background-color: #1976D2;
        border: 1px solid #1976D2;
    }

    .steps-section .switchPanel-mobile .buttonsWrapper div:not(.disabled):hover svg path {
        stroke: #FFFFFF;
    }

    .gps-tracker-section {
        margin: 18.46vw 6.15vw 0vw 6.15vw;
        height: auto;
        flex-direction: column;
    }

    .gps-tracker-section .gps-info {
        width: 100%;
        flex-direction: column;
        align-items: start;
    }

    .gps-tracker-section .gps-info .main {
        margin: 9.23vw 9.23vw 0vw 9.23vw;
        gap: 3.07vw;
        font-size: 6.15vw;
        flex-direction: column;
    }

    .gps-tracker-section .gps-info .main img {
        width: 6.15vw;
        height: 6.15vw;
    }

    .gps-tracker-section .gps-info .secondary {
        display: block;
        margin: 1.53vw 9.23vw 0vw 9.23vw;
        width: calc(100% - 18.46vw);
        font-size: 4.1vw;
    }

    .gps-tracker-section .gps-info .tracker {
        margin-top: 6.15vw;
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
    }

    .gps-tracker-section .gps-info .tracker img {
        position: relative;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        width: 117.43vw;
        object-fit: cover;
    }

    .gps-tracker-section .gps-info .tracker .heading {
        font-size: 3.07vw;
        padding: 2.56vw 3.07vw;
        top: 18%;
        transform: translateX(65%);
    }

    .gps-tracker-section .gps-info .dot-animation {
        top: 50%;
        transform: translateX(32.5vw);
    }

    .gps-tracker-section .buyers-info {
        margin-top: 3.07vw;
        width: 100%;
        padding: 6.15vw;
    }

    .gps-tracker-section .buyers-info img {
        width: 6.15vw;
        height: 6.15vw;
    }

    .gps-tracker-section .buyers-info .col-buyers {
        margin-top: 1.53vw;
        font-size: 6.15vw;
    }

    .gps-tracker-section .buyers-info .description {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .credit-section {
        overflow: hidden;
        margin-top: 18.46vw;
        padding: 9.23vw 6.15vw;
    }

    .credit-section .category-name .name {
        margin-left: 3.07vw;
        font-size: 4.1vw;
    }

    .credit-section .big-text {
        margin-top: 3.07vw;
        width: 100%;
        font-size: 7.17vw;
    }

    .credit-section .tile-wrappers {
        margin-top: 9.23vw;
        gap: 3.07vw;
        flex-direction: column;
    }

    .credit-section .tile-wrappers .item {
        width: auto;
        padding: 6.15vw;
    }

    .credit-section .tile-wrappers .item .value {
        font-size: 6.15vw;
    }

    .credit-section .tile-wrappers .item .description {
        margin-top: 1.53vw;
        font-size: 4.1vw;
    }

    .credit-section .conditions {
        margin-top: 6.15vw;
        display: flex;
        gap: 4.61vw;
        flex-direction: column;
    }

    .credit-section .conditions .item {
        margin-top: 0vw;
        gap: 3.07vw;
    }

    .credit-section .conditions .item img {
        width: 7.17vw;
        height: 7.17vw;
    }

    .credit-section .conditions .item .text {
        font-size: 4.1vw;
    }

    .credit-section .send-application {
        margin-top: 6.15vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
    }

    .credit-section .background-img {
        display: none;
    }

    .credit-section .background-img.mobile {
        margin-top: 10.76vw;
        display: block;
        position: relative;
        width: 107.69vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .credit-section::before {
        content: '';
        position: absolute;
        top: auto;
        left: auto;
        bottom: -65%;
        right: 0%;
        width: 110%;
        height: 110%;
        background: repeating-linear-gradient(
          33deg,
          #33353E 0%,
          #33353E 24%,
          #444651 24%,
          #444651 57%
        );
        z-index: 0;
    }


    .wish-application-section {
        margin-top: 18.46vw;
        padding: 9.23vw 6.15vw 9.23vw 6.15vw;
        flex-direction: column;
    }

    .wish-application-section .l-container {
        width: 100%;
    }

    .wish-application-section .l-container .title {
        font-size: 7.17vw;
    }

    .wish-application-section .l-container .subtitle {
        margin-top: 9.23vw;
        font-size: 5.64vw;
    }

    .wish-application-section .l-container .content {
        margin-top: 2vw;
        font-size: 4.1vw;
    }

    .wish-application-section .c-container {
        margin-top: 6.15vw;
        width: 100%;
        gap: 3.07vw;
    }

    .wish-application-section .c-container input {
        height: 15.38vw;
        padding: 5.12vw 14.86vw;
        background: url('../img/User.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }
    
    .wish-application-section .c-container input:nth-child(2n) {
        background: url('../img/Phone.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .wish-application-section .c-container textarea {
        padding: 5.12vw 14.86vw;
        height: 24.61vw;
        background: url('../img/info.webp') no-repeat 6.15vw 5.12vw;
        background-size: 5.12vw 5.12vw;
    }
    
    .wish-application-section .c-container input::placeholder,
    .wish-application-section .c-container textarea::placeholder {
        font-size: 4.1vw;
        white-space: nowrap;
    }

    .wish-application-section .c-container .send-application {
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
    }
    
    .wish-application-section .c-container .note {
        font-size: 3.07vw;
    }

    .wish-application-section .r-container {
        display: none;
        margin-top: 9.23vw;
        width: 100%;
    }

    .wish-application-section .r-container.mobile {
        display: block;
    }

    .wish-application-section .r-container.mobile img {
        width: 100%;
        display: block;
    }

    .wish-application-section .r-container.mobile .top-flex {
        margin-top: 3.07vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wish-application-section .r-container .description {
        margin-top: 3.07vw;
    }

    .wish-application-section .r-container .name {
        font-size: 4.1vw;
    }

    .wish-application-section .r-container .text-anim {
        gap: 1.53vw;
        font-size: 3.07vw;
    }

    .wish-application-section .r-container .profession {
        margin-top: 1.53vw;
        font-size: 3.07vw;
    }

    .abuot-us-section {
        margin: 18.46vw 6.15vw 0vw 6.15vw;
    }

    .abuot-us-section .info-container {
        flex-direction: column-reverse;
    }

    .abuot-us-section .info-container .r-container {
        width: 100%;
    }

    .abuot-us-section .info-container .category-name .name {
        margin-left: 3.07vw;
        font-size: 4.1vw;
    }

    .abuot-us-section .info-container .title {
        margin-top: 3.07vw;
        font-size: 7.17vw;
    }

    .abuot-us-section .info-container .l-container {
        display: none;
    }

    .abuot-us-section .info-container .l-container.mobile {
        margin-top: 10.76vw;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .abuot-us-section .info-container .l-container .main-img {
        width: 100%;
    }

    .abuot-us-section .info-container .l-container .main-img .clarification-wrapper {
        padding: 1.53vw;
    }

    .abuot-us-section .info-container .l-container .main-img .clarification-wrapper .box {
        padding: 3.07vw 4.61vw;
    }

    .abuot-us-section .info-container .l-container .sidebar-img {
        margin-top: 4.61vw;
        margin-left: 0vw;
        width: 100%;
        flex-direction: row;
        gap: 3.07vw;
        overflow: auto;
    }

    .abuot-us-section .info-container .l-container .sidebar-img::-webkit-scrollbar {
        display: none;
    }

    .abuot-us-section .info-container .subtitle {
        margin-top: 6.15vw;
        font-size: 4.1vw;
    }

    .abuot-us-section .info-container .btn-more-info {
        margin-top: 6.15vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
        width: 100%;
        text-align: center;
    }

    .abuot-us-section .CarServiceAdvantages {
        width: 100%;
        margin-top: 9.23vw;
        gap: 6.15vw;
        justify-content: start;
        overflow-x: scroll;
    }

    .abuot-us-section .CarServiceAdvantages::-webkit-scrollbar {
        display: none;
    }

    .abuot-us-section .CarServiceAdvantages .item {
        min-width: 68.97vw;
    }

    .abuot-us-section .CarServiceAdvantages .item .main-container svg {
        width: 7.69vw;
        height: 7.69vw;
    }

    .abuot-us-section .CarServiceAdvantages .item .main-container .title {
        margin-left: 3.07vw;
        font-size: 4.1vw;
    }

    .abuot-us-section .CarServiceAdvantages .item .info-container {
        margin-top: 3.07vw;
        font-size: 4.1vw;
    }

    .questions-section {
        margin: 18.46vw 6.15vw 0vw 6.15vw;
    }

    .questions-section .category-name {
        justify-content: start;
    }

    .questions-section .category-name .name {
        margin-left: 3.07vw;
        font-size: 4.1vw;
    }

    .questions-section .title {
        margin-top: 3.07vw;
        font-size: 7.17vw;
        text-align: left;
    }

    .questions-section .title br {
        display: none;
    }

    .questions-section .qusetions-wrapper {
        margin-top: 10.76vw;
        gap: 3.07vw;
    }

    .questions-section .faq-item .question {
        padding: 3.07vw 4.61vw;
        font-size: 5.64vw;
    }

    .questions-section .faq-item svg {
        width: 6.15vw !important;
        height: 6.15vw !important;
    }

    .questions-section .faq-item .answer {
        padding: 0vw 4.61vw;
        font-size: 4.1vw;
    }

    .questions-section .faq-item.active .answer {
        padding: 3.07vw 4.61vw;
    }

    .uncertainty-section .uncertainty-wrapper {
        margin-top: 18.46vw;
        padding: 9.23vw 6.15vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper {
        padding: 0;
        flex-direction: column;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container {
        width: 100%;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container .title {
        font-size: 5.64vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .text-container .subtitle {
        margin-top: 2vw;
        font-size: 4.1vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container {
        margin-top: 6.15vw;
        width: 100%;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container input {
        height: 15.38vw;
        padding: 5.12vw 14.86vw;
        background: url('../img/Phone.webp') no-repeat 6.15vw center;
        background-size: 5.12vw 5.12vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container input::placeholder {
        font-size: 4.1vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .send-application {
        margin-top: 3.07vw;
        padding: 5.12vw 6.15vw;
        font-size: 4.1vw;
    }

    .uncertainty-section .uncertainty-wrapper .appl-wrapper .appl-container .note {
        margin-top: 3.07vw;
        font-size: 3.07vw;
    }

}