﻿@font-face {
    font-family: "erica";
    src: url("./fonts/EricaSansBold.woff") format("woff");
    /* src: url("./fonts/ericaBlack.ttf") format("ttf"); */
    font-weight: bold;
    /* unicode-range: U+05D0-05EA; */
}

@font-face {
    font-family: "erica";
    src: url("./fonts/EricaSansLight.otf") format("otf");

    font-weight: lighter;
    /* unicode-range: U+05D0-05EA; */
}

@font-face {
    font-family: "erica";
    src: url("./fonts/EricaSansRegular.woff") format("woff");
    /* src: url("./fonts/erica.ttf") format("ttf"); */
    font-weight: normal;
    /* unicode-range: U+05D0-05EA; */
}



.safety-container,
.pollution-container {
    /* display: inline-flex !important; */
    direction: ltr !important;
    cursor: pointer;
}

* {
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    scroll-behavior: smooth;
    outline: none;
}

html {
    direction: rtl;
    --pollution-1: #1a582c;
    --pollution-2: #146634;
    --pollution-3: #0e7d3e;
    --pollution-4: #129346;
    --pollution-5: #23a348;
    --pollution-6: #3eaf49;
    --pollution-7: #98c93c;
    --pollution-8: #f9d324;
    --pollution-9: #fdbd3c;
    --pollution-10: #f89938;
    --pollution-11: #e67524;
    --pollution-12: #dc5f26;
    --pollution-13: #e02225;
    --pollution-14: #c52026;
    --pollution-15: #a41d20;
    --safety-0: #c00000;
    --safety-1: #e46c0b;
    --safety-2: #ffc000;
    --safety-3: #33af8a;
    --safety-4: #31859d;
    --safety-5: #268cca;
    --safety-6: #0170c1;
    --safety-7: #0373fb;
    --safety-8: #124aff;
}

.privacyLink {
    color: #000;
}

.pollution_1 {
    background-color: var(--pollution-1);
}

.pollution_2 {
    background-color: var(--pollution-2);
}

.pollution_3 {
    background-color: var(--pollution-3);
}

.pollution_4 {
    background-color: var(--pollution-4);
}

.pollution_5 {
    background-color: var(--pollution-5);
}

.pollution_6 {
    background-color: var(--pollution-6);
}

.pollution_7 {
    background-color: var(--pollution-7);
}

.pollution_8 {
    background-color: var(--pollution-8);
}

.pollution_9 {
    background-color: var(--pollution-9);
}

.pollution_10 {
    background-color: var(--pollution-10);
}

.pollution_11 {
    background-color: var(--pollution-11);
}

.pollution_12 {
    background-color: var(--pollution-12);
}

.pollution_13 {
    background-color: var(--pollution-13);
}

.pollution_14 {
    background-color: var(--pollution-14);
}

.pollution_15 {
    background-color: var(--pollution-15);
}

.safety_0 {
    background-color: var(--safety-0);
}

.safety_1 {
    background-color: var(--safety-1);
}

.safety_2 {
    background-color: var(--safety-2);
}

.safety_3 {
    background-color: var(--safety-3);
}

.safety_4 {
    background-color: var(--safety-4);
}

.safety_5 {
    background-color: var(--safety-5);
}

.safety_6 {
    background-color: var(--safety-6);
}

.safety_7 {
    background-color: var(--safety-7);
}

.safety_8 {
    background-color: var(--safety-8);
}

.pollution,
.safety {
    display: inline-block;
    padding: 3px 0;
    width: 20px;
    text-align: center;
    margin: 1px;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 100vw;
    display: block !important;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #00d6d1;
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
    border-radius: 100vw;
}

.no-desktop {
    display: none !important;
}

.mobile .no-mobile {
    display: none !important;
}

.only_desktop {
    display: inline-block !important;
}

.mobile .only_desktop {
    display: none !important;
}

.only_mobile {
    display: none !important;
}

.mobile .only_mobile {
    display: block !important;
}

.mobile .no-desktop {
    display: block !important;
}

body {
    font-family: "erica-eng", "erica", sans-serif;
}

body.mobile {
    overflow-x: hidden;
}

img {
    object-fit: contain;
}

.shadow {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 19;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;

}

.shadow.active {
    display: block;
}

.topBG {
    position: absolute;
    top: 0;
    right: 0;
    width: 80vw;
    height: auto;
    object-fit: contain;

}

.mobile .topBG {
    width: 220vw;
    right: 0;
}

.grecaptcha-badge {
    visibility: hidden;
}

.mobile.openMobileMenu .burger p {
    display: none;
}

.mobile.openMobileMenu {
    overflow: hidden;
}

.mobile .form__pre__title_mob {
    width: 85vw;
}

.form {
    position: fixed;
    top: 0;
    left: 0;
    width: 24.5vw;
    height: 100%;
    background-color: black;
    color: white;
    box-sizing: border-box;
    z-index: 2;
}

.wrapper_text_form {
    padding: 1.55vw 0;
}

.input-after-active {
    animation: SlideDown 0.5s both;
}

@keyframes SlideDown {
    0% {
        transform: translateY(-1vw) scale(0.8) translateX(2.5vw);
    }

    100% {
        transform: translateY(0) scale(1) translateX(0);
    }
}

.field-placeholder.active {
    animation: SlideUp 0.5s both;
}

@keyframes SlideUp {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-1.6vw) scale(0.8) translateX(2.5vw);
    }
}

.mobile .field-placeholder.active {
    animation: SlideUpM 0.5s both;
}

.mobile .input-after-active {
    animation: SlideDownM 0.5s both;
}

@keyframes SlideDownM {
    0% {
        transform: translateY(-5.5vw) scale(0.8) translateX(12vw);
    }

    100% {
        transform: translateY(0) scale(1) translateX(0);
    }
}

@keyframes SlideUpM {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-5.5vw) scale(0.8) translateX(12vw);
    }
}

.top_bunner {
    background: #00d6d1;
    width: 100%;
    height: 3.5vw;
    display: none;
    justify-content: center;
}

.gray-flach {
    position: absolute;
    z-index: 1;
    display: flex;
    padding: 1.04vw;
    justify-content: flex-end;
    align-items: flex-end;
    background: linear-gradient(90deg, #9D9D9D 0%, rgba(175, 175, 175, 0.00) 100%);
    color: #fff;
    font-family: "erica-eng", sans-serif;
    gap: 3vw;
    inset-inline-start: 2vw;
    bottom: 2vw;

}

.mobile .gray-flach {
    top: 42vw;
    padding: 2vw;
    gap: 5vw;
    left: 5vw;
    bottom: unset;
}

.gray-flach::before {
    content: "";
    position: absolute;
    width: 0.1vw;
    height: 65%;
    background-color: #fff;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
}

.mobile .gray-flach::before {
    left: 37.5%;
}

.gray-flach h2, .main-title h1 {
    font-size: 2.5vw;
    font-style: normal;
    font-weight: 100;
    line-height: 2.5vw;
    color: #000;
}

.main-title h1 span {
    font-weight: 900;
}

.mobile .gray-flach h2, .mobile .main-title h1 {
    font-size: 7.1vw;
    font-style: normal;
    font-weight: 100;
    line-height: 7.5vw;
    text-align: start;


}

.mobile .gray-flach h2 {
    font-size: 14vw;
    font-style: normal;
    font-weight: 600;
    line-height: 14.7vw;

}

.gray-flach p, .main-title h2 {
    font-family: "erica";
    font-size: 2.7vw;
    color: #000;
    font-weight: 100;
    font-size: 1.8vw;


}

.subTitle {
    display: flex;
    align-items: flex-start;
    padding: 0.5vw 0 0.1vw;
    border-bottom: 1px solid;
    border-top: 1px solid;
    align-items: end;


}

.mobile .subTitle {
    padding: 1.5vw 0 0vw;
    flex-direction: column;
    align-items: flex-start;
    width: 73%;

}

.mobile .gray-flach p {
    font-family: "erica";
    font-size: 8vw;
    color: #fff;
    font-weight: 100;
    line-height: 7.6vw;
}

.mobile .main-title h2 {
    font-size: 5.4vw;
    width: unset;
    line-height: 5.4vw;
    text-align: start;
}

.main-title h2 {
    line-height: 1;
    display: flex;
    align-items: flex-start;
    margin-left: 0.3vw;
}

.gray-flach span, .main-title h2 span {
    font-family: "erica-eng";
    line-height: 1;
    font-weight: 100;

}

.mobile .gray-flach span {
    font-family: "erica-eng";
    line-height: 0;
    font-weight: 100;
}

.testimony {
    position: absolute;
    width: 19.9vw;
    height: auto;
    top: 1vw;
}

.mobile .testimony {
    width: 65.9vw;
    left: 32vw;

}

.main-title {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1vw;
}

.mobile .main-title {
    gap: 4vw;
    align-items: flex-start;
}

.info {
    position: absolute;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 2vw;
    top: 35vw;
    gap: 1vw;
}

.info img {
    width: 6.24vw;
    height: auto;
}

.mobile .info img {
    width: 23vw;
    height: auto;
}

.info p {
    font-size: 1.8vw;
    text-align: center;
    line-height: 1;
    font-weight: bold;

}

.mobile .info p {
    font-weight: 100;
    font-size: 5.8vw;
}

.mobile .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    left: 31vw;
    top: 171.4vw;
    gap: 5vw;
}

button.taknon-btn {
    all: unset;
    background: none;
    line-height: 1;
    cursor: pointer;
    font-size: 1.3vw;
    font-weight: 100;
    position: absolute;
    z-index: 1;
    color: #1B358F;
    padding: 1.06vw;
    background: #fff;
    top: 5.3vw;
    right: 2.2vw;
    display: flex;
    justify-content: center;
    gap: 0.5vw;
    align-items: center;
    border: 2px solid #1B358F;
}

.mobile button.taknon-btn {
    padding: 2.4vw;
    font-size: 4vw;
    top: 78vw;
    right: 3vw;
    gap: 1vw;
}

button.taknon-btn svg {
    position: relative;
    top: 0.18vw;
}

.mobile button.taknon-btn svg {
    width: 4.8vw;
    height: 4.8vw;
}

.tak-wrapper {
    justify-content: center;
    align-items: center;
    height: 63vh;
    width: 60vw;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    left: 63%;
    top: 50%;
    z-index: 20;
    padding: 2.5vw;
    background-color: #fff;
    display: none;
}

.mobile .tak-wrapper {
    height: 68vh;
    width: 90vw;
    left: 50%;
    z-index: 9999999;
    overflow-y: scroll;
}

.tak-wrapper.active {
    display: block;
}

.tak {
    width: 100%;
    height: 100%;
    border: none;
}

.mobile .tak {
    width: 100%;
    height: auto;
    border: none;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
}

.mobile embed.tak {
    display: block !important;
    position: relative;
    z-index: 20;
}


.close-tak {
    position: absolute;
    right: 1vw;
    top: 0;
    font-size: 2vw;
    cursor: pointer;
}

.mobile .close-tak {
    position: absolute;
    right: 2vw;
    top: 0;
    font-size: 7vw;
    z-index: 9999;
}

.form .top_bunner {
    display: flex;
    padding: 0;
}

.mobile .top_bunner {
    display: flex;
}

.mobile .top_bunner {
    height: 11.5vw;
}

.mobile .form .top_bunner {
    display: none;
}

.logoElayal {
    position: relative;
    z-index: 1;
    width: 30vw;
    height: 8.56vw;
    display: block;
    margin-inline: auto;

}

.mobile .logosEl {
    position: relative;
    z-index: 1;
    width: 93%;
    padding: 5vw 0 9.4vw;
}

.mobile .pic-1 {
    width: 38vw;
    object-fit: cover;

}

.mobile .pic-2 {
    width: 29.56vw;

    object-fit: cover;
}

.mobile .logo_container {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}


.mobile .freesbe_logo {
    width: 19vw;
    height: auto;
    position: relative;
    object-fit: contain;
}

.mobile .close_form {
    position: relative;
    top: 4vw;
    right: -1vw;
}

.mobile .form.active .logo {
    position: absolute;
    left: 41vw;
    top: 4vw;
    width: 18.5vw;
    object-fit: contain;
    display: none;
}

.form.active .mobile-logo {
    display: none;
}

.carasso_layer_whatsapp_icon {
    display: none;
}

.mobile .carasso_layer_whatsapp_icon {
    z-index: 1 !important;
}

.carasso_layer_whatsapp_icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 70vw !important;
    background-color: transparent !important;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: unset !important;
    z-index: 99999;
    transition: all 0.3s;
}

.mobile .carasso_layer_whatsapp_icon {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 150px;
    background-color: transparent;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: unset;
    z-index: 99999;
    transition: all 0.3s;
    bottom: 86px !important;
    right: 79vw !important;
}

.carasso_layer_whatsapp_icon svg {
    width: 50px !important;
    height: 50px !important;
    fill: #fff;
    margin: 12px;
}

.carasso_layer_whatsapp_icon:hover {
    background-color: unset !important;
}

.form__pre__title {
    font-size: 2.3vw;
    direction: rtl;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    width: 100%;
}

.form__pre__title span {
    font-size: 1.6vw;
    font-family: "erica", "erica", sans-serif;
}

.mobile .form__pre__title span {
    font-size: 6.6vw;
}

.form .logo {
    width: 6vw;
    display: block;
    margin: 4vw auto 2vw;
}

.form__must {
    font-size: 0.9vw;
    margin-top: 4vw;
}

.field label {
    display: block;
    padding: 0;
    margin: 0.5vw 0;
    border-bottom: 1px solid #000;
}

.mobile .field label {
    border-bottom: 1px solid #000;
}


.field-checkbox label {
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    border: none;
    margin: 0;
}

.mobile .field-checkbox label {
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    border: none;
    margin: 0;
    height: 24vw;
}

.field-checkbox label .checkbox-title {
    color: white;
    margin-right: 0.5vw;
    line-height: 1.2;
    font-size: 0.9vw;
    top: 0;
}

.field label div {
    color: #fff;
    font-size: 0.9vw;
    position: relative;
    top: 1vw;
}

.field input {
    display: block;
    border: 0;
    font-size: 1.2vw;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

.form__pre_description {
    font-size: 1.05vw;
    line-height: 1.2;
    margin: 1vw 0 1vw;
    text-align: center;
}

.form__pre_description span {
    font-size: 0.85vw;
}

.mobile .form__pre_description span {
    font-size: 4.8vw;
}

.field.field-checkbox {
    margin-top: 1vw;

}

.field input[type="checkbox"] {
    display: none;
}

.field label .checkbox-v {
    width: 1.4vw;
    height: 1.4vw;
    background-color: white;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    top: 0.3vw;
}

.field input[type="checkbox"] + .checkbox-v::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: none;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    width: 0.9vw;
    height: 0.3vw;
    transform: translate(-50%, -80%) rotate(135deg);
    font-size: 1.4vw;
    transition: all 0.2s ease-in-out;
}

.mobile .field input[type="checkbox"] + .checkbox-v::before {
    width: 3.5vw;
    height: 1.5vw;
}

.field input[type="checkbox"]:checked + .checkbox-v::before {
    border-right: 2px solid #000;
    border-top: 2px solid #000;
}

.main {
    position: relative;
}

.main .logo {
    width: 12.7vw;
    position: absolute;
    top: -1.2vw;
    right: 0vw;
}

.safety_,
.pollution_ {
    display: none;
}

.mlogo {
    display: none;
}

.mobile .mlogo {
    display: block;
    width: 20vw;
    height: 20vw;
    object-fit: contain;
    position: absolute;
    top: 27vw;
    right: 40vw;
    z-index: 2;
}

.form .tnx {
    text-align: center;
    padding: 0;
    display: none;
    z-index: 100;
    position: relative;
    top: 2vw;
    color: #000;
}

.tnk__icons {
    text-align: center;
    margin-top: 2vw;
}

.tnk__icons a img {
    width: 4vw;
    margin: 1vw 0.4vw;
    border: 1px solid #000;
    border-radius: 50%;
}

.tnx__title {
    font-size: 1.8vw;
    line-height: 1;
    margin-bottom: 2vw;
    margin-top: 8vw;
}
.tnx__title .txt-bold{font-weight: 700;}
.tnx__tips {
    display: flex;
    color: white;
    text-decoration: none;
    padding: 0.6vw;
    background-color: #c4092f;
    font-size: 1.3vw;
    line-height: 1.1;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: none;

}

.safety-container {
    color: white;
}

.ranks a {
    color: black;
    text-decoration: underline;
}

.accessibility {
    display: flex;
    z-index: 9;
    justify-content: space-between;
    align-items: center;
}

.accessibility div > div {
    display: inline-block;
}

.mobile .accessibility div > div {
    display: block;
}

.mobile .accessibility {
    display: flex;
    z-index: 9;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.accessibility img {
    height: 2vw;
    background: #fff;
    border-radius: 50%;
    border: 1px solid white;
    position: relative;
    top: 1vw;
}

.mobile .accessibility img {
    top: 3.5vw;
}

.accessibility-form-acc img {
    height: 2vw;
    background: #fff;
    border-radius: 50%;
    border: 1px solid white;
}

.mobile .accessibility img {
    height: 8vw;
}

.mobile .accessibility-form-acc img {
    height: 8vw;
}

.accessibility a {
    color: #000;
    padding: 0 0.5vw;
    font-size: 0.9vw;
    position: relative;
    z-index: 999;
}

.mobile .accessibility a {
    color: #000;
    padding: 0;
    font-size: 3.3vw;
}

.mobile .accessibility-form-acc a {
    color: #fff;
    padding: 0 4.8vw 0 0.8vw;
    font-size: 3.3vw;
}

.mobile .form .tnx {
    min-height: 100vh;
    color: #000;
    top: 20vw;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 999999;
}

.mobile .tnx__title {
    font-size: 7.5vw;
    margin-bottom: 10vw;
    margin-top: 20vw;
}

.mobile .tnx__tips {
    font-size: 6vw;
}

.mobile .tnk__icons {
    margin-top: 11vw;
}

.mobile .tnx .no-desktop {
    margin-left: 3vw;
    position: absolute;
    bottom: 5vw;
    right: 2vw;
}

.mobile .tnk__icons a img {
    width: 16vw;
    margin: 1vw 1.5vw;
    border: 1px solid #000;
    border-radius: 50%;
}

.mobile .form {
    display: none;
}

.mobile .main {
    width: 100%;
}

.popUp {
    display: none;
    position: absolute;
    right: 3vw;
    overflow-y: scroll;
    z-index: 1;
    width: 35vw;
    height: 21vw;
    background: #fff;
    box-shadow: 5px 6px 9px 4px rgba(0, 0, 0, 0.73);
    padding: 2vw;
    box-sizing: border-box;
    top: -22vw;

}

.popUp img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.popUpPic {
    width: 50vw;
}

.closePopup {
    position: absolute;
    right: 0.5vw;
    top: -0.5vw;
    font-size: 2vw;
    cursor: pointer;
}

.btn-disabled {
    cursor: pointer;
    height: 2.5vw;
    width: 28vw;
    background: transparent;
    z-index: 1;
    top: 1vw;
    right: 0;
    position: absolute;
}

.mobile .btn-disabled {
    height: 17.5vw;
    width: 71vw;
    top: 0;
}

.mobile .popUp {
    height: 78vw;
    right: 2vw;
    background: #fff;
    padding: 3vw;
    width: 92vw;
    top: -82vw;
    overflow-x: hidden;
}

.mobile .closePopup {
    position: absolute;
    right: 2vw;
    top: -0.5vw;
    font-size: 5vw;
    cursor: pointer;
}

.mobile .main .logo {
    width: 35vw;
    right: 0;
    object-fit: contain;
    top: 21vw;
}

.mobile .testDrive {
    position: fixed;
    display: flex !important;
    bottom: 0;
    width: 100%;
    height: 16.7vw;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 5.5vw;
    font-weight: bold;
}

@keyframes moveFromTop {
    100% {
        transform: translateY(0);
    }
}

.bg {
    width: 74vw;
    position: absolute;
    top: 0;
    right: 0;
}

.mobile .bg {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.cars {
    position: absolute;
    top: 9vw;
    right: 9.22vw;
    width: 57.45vw;
    height: 50.36vw;
    transform: translateY(30vw);
    animation: 1s moveFromBottom linear forwards;
}

.mobile .cars {
    top: 58vw;
    right: 0;
    width: 100vw;
    height: 126.05vw;
    transform: translateY(30vw);
    animation: 1s moveFromBottom linear forwards;
}

@keyframes moveFromBottom {
    100% {
        transform: translateY(0);
    }
}

.containerTopN {
    width: 29.58vw;
    height: 3.18vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile .containerTopN {
    width: 89.07vw;
    height: 10vw;
}

.containerTopN img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.containerTopN p {
    font-size: 2.4vw;
    color: #000;
    position: absolute;
    top: -0.2vw;
}

.mobile .containerTopN p {
    font-size: 7.21vw;
    top: -0.2vw;
}

.mainTxtN {
    font-size: 5.21vw;
    line-height: 0.9;
}

.mobile .mainTxtN {
    font-size: 13.95vw;
}

.dataN {
    font-size: 2.34vw;
    line-height: 1;
    letter-spacing: -0.05vw;
    font-weight: 400;
    margin-top: 0.6vw;
}

.mobile .dataN {
    font-size: 6.98vw;
    margin-top: 2.6vw;
}

.lottie {
    position: absolute;
    top: -1vw;
    right: 21vw;
    width: 32vw;
    height: auto;
}

.mobile .lottie {
    top: -13vw;
    right: 0;
    width: 100vw;
    height: auto;
}

.form_h2 {

    text-align: center;
    line-height: 0.8;
    font-weight: lighter;
    font-size: 2.35vw;
}

.mobile .form_h2 {
    font-size: 7.91vw;
    margin-top: 7vw;

}

.form_h2 span {
    font-size: 2.55vw;
}

.mobile .form_h2 span {
    font-size: 9.77vw;
}

.accessibility-form-acc {
    display: none;
}

.mobile .cta a {
    text-decoration: none;
    flex: 1;
    font-size: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.slick-list {
    position: relative;
    z-index: 1;
}

.mobile .cta .testDrive {
    color: #000;
    background: #fff;
    margin: 1.5vw;
    border-radius: 10px;
    border: 2px solid #00d6d1;
}

.mobile .testDrive {


    color: #fff;
    background: transparent;
    margin: 0vw;
    border-radius: 0px;
    background: #1B358F;
}

.mobile .cta .callUs {
    position: fixed;
    z-index: 99999;
    left: 6.1vw;
    top: 134vw;

}

.mobile .cta span {
    position: relative;
    bottom: 0.5vw;
}

footer {
    width: 69vw;
    padding: 0 2vw;
    padding-bottom: 4vw;
    position: relative;
}

.mobile footer {
    padding-bottom: 25vw;
    margin: 2vw;
    margin-top: 0;
    width: unset;
}

.mobile footer p {
    margin-top: 1vw;
}

.mobile .ranks {
    font-size: 3.5vw;
}

.mobile .terms_main {
    font-size: 3.5vw;
}

.pollution.ao {
    display: none;
}

body.AO .pollution.ao {
    display: inline-block;
}

.safety.ao {
    display: none;
}

body.AO .safety.ao {
    display: inline-block;
}

.mobile .pollution,
.mobile .safety {
    padding: 1vw 0;
    margin: 1px;
}

.mobile .form.active {
    display: block;
    -webkit-animation: fade-in-from-bottom 0.4s ease-in-out both;
    animation: fade-in-from-bottom 0.4s ease-in-out both;
    overflow-y: scroll;

}

.mobile .form {
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow-x: hidden;
}

.mobile .form .logo {
    position: absolute;
    left: 0;
    top: 2vw;
    width: 18.5vw;
    object-fit: contain;
}

.mobile .mobile-logo {
    width: 34vw;
    position: absolute;
    top: -0.5vw;
    right: -5.5vw;
}

.mobile form {
    margin-bottom: 16vw;
}

.mobile .field label div {
    font-size: 4vw;
}

.mobile .checkbox-v {
    width: 7vw;
    height: 7vw;
    position: relative;
    top: -1vw;
}

.mobile .field-checkbox label .checkbox-title {
    margin-right: 2.5vw;
    font-size: 3.2vw;
}

.mobile .field input[type="checkbox"] + .checkbox-v::before {
    font-size: 6vw;
}

.mobile .field input[type="submit"] {
    font-size: 6.5vw;
    padding: 0 0 1.1vw 0;
    width: 100%;
    -webkit-appearance: none;
    height: 14.7vw;
    margin-top: 3vw;
}

.mobile .field label {
    margin: 3.5vw 0;
}

.mobile .field label div {
    font-size: 4.3vw;
    padding: 1vw 1vw 0 0;
    top: 6vw;
}

.mobile .field label .checkbox-v {
    padding: 0;
    width: 6vw;
    height: 6vw;
    top: 7vw;
}

.mobile .field label .checkbox-title {
    padding: 0;
    width: 85vw;
    font-size: 3.5vw;
}

.mobile .form__pre__title {
    font-size: 9vw;
    direction: rtl;
    text-align: center;
    margin-top: 15vw;
    margin-right: 7vw;
    font-weight: 100;
}

.mobile .form__pre_description {
    font-size: 5.3vw;
    text-align: right;
    margin: 2vw 0 2vw;
    line-height: 1.1;
    font-weight: 100;
}

.icon_alert {
    position: absolute;
    width: auto;
    left: 14.1vw;
    top: 4.1vw;
}

.mobile .icon_alert {
    position: absolute;
    left: 59vw;
    top: 22vw;
}

.form2 {
    padding: 0 2.5vw 0 1vw;
}

.form__fields_2 {
    position: relative;
    z-index: 15;
    right: 2vw;
    top: 4vw;
}

.mobile .form__fields_2 {
    position: relative;
    z-index: 199;
    width: 85vw;
    right: 6vw;
    top: 55vw;
}

.form .logo {
    display: block;
    width: 21.24vw;
    margin: 5.5vw auto 0vw auto;
}

.form__title span {
    font-size: 1vw;
}

.mobile .form__title span {
    font-size: 6.4vw;
    font-family: "DaciaBlock-Bold";
}

.form_details {
    text-align: right;
    margin-bottom: 0;
    margin-top: 0.8vw;
    font-size: 0.938vw;
}

.mobile .form_details {
    padding: 2vw 0 0 0;
    font-size: 4.3vw;
    margin-bottom: -0.5vw;
    width: 100vw;
    font-family: "DaciaBlock-Regular";
}

.form__must {
    /* margin-top: 1.5vw; */
    font-size: 0.85vw;
}

.field-placeholder.active {
    animation: SlideUp 0.5s both;
    transition: 0.6s ease;
}

.mobile .field-placeholder.active {
    animation: SlideUpm 0.5s both;
    transition: 0.6s ease;
}

@keyframes SlideUp {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-1.5vw) scale(0.8) translateX(0.5vw);
        color: #000;
    }
}

@keyframes SlideUpm {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-5.5vw) scale(0.8) translateX(0.5vw);
    }
}

.input-after-active {
    animation: SlideDown 0.5s ease;
    transition: 0.6s ease;
}

.mobile .input-after-active {
    animation: SlideDownm 0.5s ease;
    transition: 0.6s ease;
}

@keyframes SkideDown {
    0% {
        transform: translateY(-1.5vw) scale(0.8) translateX(0.5vw);
    }

    100% {
        transform: translateY(0) scale(1) translateX(0);
    }
}

@keyframes SkideDownm {
    0% {
        transform: translateY(-1.5vw) scale(0.8) translateX(0.5vw);
    }

    100% {
        transform: translateY(0) scale(1) translateX(0);
    }
}

.field label {
    width: 0;
    height: 0;
    opacity: 0;
    display: block;
}

.error {
    display: none;
}

.error.active {
    width: 4vw;
    color: rgb(235, 101, 40);
    display: inline;
    position: relative;
    top: -2vw;
    left: 2vw;
}

span.error.checkbox {
    width: 6vw;
    position: relative;
    top: 3vw;
    color: rgb(235, 101, 40);
}

.error-m {
    font-size: 0.85vw;
    position: absolute;
    left: 1.5vw;
    top: 1.5vw;
    color: red !important;

}

.error-m {
    display: none;
}

.success.email {
    top: 1.5vw;
}

.mobile .success.email {
    top: 0;
}

.mobile .error-m {
    font-size: 4.3vw;
    position: absolute;
    left: 0;
    top: 4vw;
}

.success {
    display: none;
    position: absolute;
    left: 2vw;
    font-size: 1vw;
    color: #000;
    top: 1vw;
}

.mobile .success {
    top: 3vw;
    font-size: 5vw;
}

.field-placeholder {
    font-size: 1vw;
    position: absolute;
    z-index: -1;
    margin-top: 0.75vw;
    color: #000;
}

.mobile .field-placeholder {
    font-size: 4.3vw;
    position: absolute;
    z-index: -1;
    margin-top: -1.5vw;
}

.field {
    margin-top: 1vw;
    position: relative;
}

.mobile .field {
    margin-top: 2.5vw;
}

.field-checkbox label {
    width: 100%;
    height: 2vw;
    opacity: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: unset;
}

.mobile .field-checkbox label {
    height: 7vw;
}

.field-checkbox label .checkbox-title {
    color: white;
    padding: 0;
    line-height: 1.2;
    position: relative;
    opacity: 1;
    font-size: 0.83vw;
    top: 0;
    margin-right: 0.8vw;
    width: 18vw;
    position: relative;
}

.field-checkbox label .checkbox-title a {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.mobile .field-checkbox label .checkbox-title {
    width: 71vw;
}

.field label div {
    padding: 0.3vw 0.3vw 0 0;
    color: #fff;
    position: relative;
    top: 1vw;
    z-index: -1;
    opacity: 0.5;
    font-size: 0.73vw;
}

.field input {
    margin-top: -1vw;
    display: block;
    border: 0;
    font-size: 1vw;
    width: 20.5vw;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding: 1vw 0.5vw 0 0;
    background-color: transparent;
    color: #000;
    border-bottom: 1.5px solid #000;
    height: 2.4vw;
    font-family: "erica-eng", "erica", sans-serif;
    text-align: right;
}

@keyframes SlideUp {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-1.5vw) scale(0.8) translateX(3vw);
    }
}

.form {
    position: fixed;
    top: 0;
    left: 0;
    width: 26.05vw;
    height: 111.47vh;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 15;
    overflow-y: scroll;
    color: #000;
}

.form::-webkit-scrollbar {
    display: none !important;
}

.form .logo {
    display: block;
    margin: 1.45vw auto 1.3vw;
    width: 6.24vw;
    padding-top: 0.5vw;
    padding-bottom: 0;
    display: none;
}

.form .logo2 {
    width: 13.5vw;
    display: block;
    margin: 3.45vw auto;
}

.form .logo2 {
    width: 18.5vw;
    margin: 4.45vw auto 0;
}

.mobile .form .logo2 {
    width: 53.5vw;
    margin: 17.45vw auto 0;
}

.form__title_trade {
    width: 100%;
    height: auto;
    font-size: 1.9vw;
    color: #fff;
    background-color: #c30c29;
    text-align: center;
    padding: 1.1vw 0 0.7vw 0;
    margin-bottom: 2.3vw;
}

.form__title.form__title {
    text-align: center;
    font-size: 1.56vw;
    margin-bottom: 1vw;
    line-height: 1;
    font-weight: 100;
    display: block;
    margin-top: 0.7vw;
}

h2.top {
    font-size: 1.57vw;
    color: white;
    font-family: "DaciaBlock-Regular";
}

.mobile h2.top {
    font-size: 7.2vw;
    width: 100vw;
    /* padding: 0 10.5vw; */
}

.form__title span {
    font-size: 1vw;
}

.mobile .form__title span {
    padding: 5vw 10.5vw 2vw 3vw;
    box-sizing: border-box;
    font-size: 3.2vw;
    margin-bottom: -0.5vw;
    width: 100vw;
    font-family: "DaciaBlock-Regular";
    padding-right: 0;
}

.form_details {
    padding: 0 2.5vw 0 3.5vw;
    text-align: right;
    margin-bottom: 0;
    margin-top: 0.8vw;
    font-size: 0.7vw;
}

.form__must {
    color: #000;
    margin-top: 0;
}

.field-checkbox label {
    background-color: transparent;
    display: flex;
    border: none;
    height: 3vw;
}

.field-checkbox label .checkbox-title {
    line-height: 1.2;
    padding: 0;
    position: relative;
    opacity: 1;
    top: 1.5vw;
    margin-right: 0.8vw;
    width: 18vw;
    color: #000;
    font-size: 0.9vw;
    z-index: 10;
}

.mobile .field-checkbox label .checkbox-title {
    width: 71vw;
}

.field label div {
    padding: 0.3vw 0.3vw 0 0;
    color: #fff;
    position: relative;
    top: 1vw;
    z-index: -1;
    opacity: 0.5;
    font-size: 0.73vw;
}

.mobile .field input {
    font-size: 4.2vw;
    width: 83.7vw;
    height: 6vw;
    padding: 0vw 2vw 1vw 0;

}

.field input[type="submit"] {
    background-color: #1B358F;
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: 5vw;
    padding: 0 0 0.2vw 0;
    font-weight: 600;
    height: 3.5vw;
    font-size: 1.3vw;
    font-family: "erica-eng", "erica", sans-serif;
    border-bottom: 0;
    text-align: center;
    border-radius: inherit;

}

.field input[type="checkbox"] {
    display: none;
}

.field label .checkbox-v {
    background-color: white;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    padding: 0;
    width: 1vw;
    height: 1vw;
    color: #fff;
    opacity: 1;
    top: -0.3vw;
    border: 1px solid #000;
}

.mobile .field label .checkbox-v {
    width: 4.3vw;
    height: 4.3vw;
    position: absolute;
    top: 6vw !important;
    border: 1px solid #000;
}

.mobile .field input[type="checkbox"] + .checkbox-v::before {
    font-size: 5.4vw;
    color: #000;
}

.field input[type="checkbox"]:checked + .checkbox-v::before {
    color: black;
}

.select-element {
    font-size: 1vw;
    color: #d7d3c5;
}

.arrow-select {
    margin-right: 1vw;
}

.mobile select.choose-place {
    margin-bottom: 9vw;
    margin-top: 14vw;
}

select.choose-place {
    margin-bottom: 2vw;
    margin-top: 3vw;
}

.choose-place,
.choose-time {
    width: 86%;
    height: 2vw;
    background: transparent;
    border: 1px solid;
    font-size: 1vw;
    color: #d7d3c5;
}

.mobile .choose-place,
.mobile .choose-time {
    width: 100%;
    height: 13vw;
    background: transparent;
    border: 1px solid;
    font-size: 4vw;
    color: #d7d3c5;
}

.item-time:nth-child(odd) {
    color: black;
    background: white;
}

.item-time:nth-child(even) {
    color: black;
    background: #cde2e2;
}

.mobile .item-time:nth-child(odd) {
    color: black;
    background: white;
}

.mobile .item-time:nth-child(even) {
    color: black;
    background: #cde2e2;
}

.item:nth-child(odd) {
    color: black;
    background: white;
}

.item:nth-child(even) {
    color: black;
    background: #cde2e2;
}

.mobile .item:nth-child(odd) {
    color: black;
    background: white;
}

.mobile .item:nth-child(even) {
    color: black;
    background: #cde2e2;
}

.mobile .form .logo {
    width: 61vw;
    height: auto;
    display: block;
    margin: 5vw auto;
    position: absolute;
    top: 8vw;
    left: 23vw;
}

.mobile .form__title {
    font-size: 5.81vw;
    margin-right: 0;
    margin-top: 3vw;
    text-align: center;
}

.mobile .form__must {
    font-size: 3.72vw;
    margin-top: 5vw;
}

.mobile form {
    overflow: hidden;
    padding: 0 7vw 0;
    padding-bottom: 12vw;
}

.mobile .form__fields {
    padding: 0;
}

.mobile .form__fields .field label div {
    position: relative;
    top: 5.4vw;
    font-size: 3.2vw;
    margin-bottom: 13vw;
}

.mobile .form__fields .field label .checkbox-title {
    padding: 0;
    z-index: 10;
}

.mobile .field label {
    margin: 4.5vw 0;
    font-size: 4.2vw;
    width: 83.7vw;
    height: 0;
    padding: 0 2vw 0 0;

}

.mobile .field-checkbox label .checkbox-title {
    font-size: 4.2vw;
    margin-right: 2.5vw;
    width: 100vw;
}

.mobile .field-checkbox label {
    height: 12vw !important;
}

.mobile .checkbox-v {
    width: 5.8vw;
    height: 5.8vw;
}

.mobile .field input[type="submit"] {
    height: 14.7vw;
    font-size: 4.9vw;
    width: 85.9vw;
    padding: 0 0 1vw 0;
    margin-top: 16vw;

}

.close_form {
    display: none;
}

.mobile .close_form {
    display: block;
    color: #000;
    font-size: 8vw;
    position: absolute;
    right: 92vw;
    top: 1.5vw;
}

.mobile .close_form p:first-child {
    font-size: 7vw;
    line-height: 0.8;
}

@keyframes SlideUp {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-1.7vw) scale(0.8) translateX(0.5vw);
    }
}

@keyframes SlideUp2 {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(0vw) scale(0.8) translateX(11vw);
    }
}

.freesbe_top_bunner {
    width: 100%;
    background: #00d6d1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.1vw;

}

.mobile .freesbe_top_bunner {
    height: 15vw;
    justify-content: flex-start;
    padding: 0 4vw;
}

.freesbe_logo {
    width: 5vw;
    height: auto;
}

.mobile .freesbe_logo {
    width: 26vw;
    right: 0;
    top: 0.5vw;
}

.meeting_selection_container {
    padding-top: 2vw;
    display: flex;
    justify-content: center;
    display: none;
}

.mobile .meeting_selection_container {
    padding-top: 5vw;
    padding-bottom: 1vw;
}

.meeting_selection_container p {
    display: inline-block;
    color: #d7d3c5;
    font-size: 0.9vw;
    cursor: pointer;
}

.mobile .meeting_selection_container p {
    font-size: 3.5vw;
}

.priceMain {
    display: block;
}

#cities {
    width: 21vw;
    font-size: 1vw;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #000;
    outline: none;
    margin-top: 2.8vw;
    border-bottom: 1px solid #000;
    margin-bottom: 0.5vw;
    font-family: "erica-eng", "erica", sans-serif;
}

#cities option {
    background-color: #fff;
    color: #333;
    font-family: "erica-eng", "erica", sans-serif;
}

.error-m.branch {
    left: 1.5vw;
    top: 4.5vw;
}

.mobile .error-m.branch {
    left: 0vw;
    top: 15vw;

}

div.branch {
    position: relative;
}

.mobile #cities {
    width: 85.5vw;
    font-size: 4.2vw;
    background-color: transparent;
    outline: none;
    margin-block: 9vw;
}

.containerMain {
    width: 100%;
    position: relative;
    height: 45vw;
    overflow: hidden;
    padding: 3.1vw;
    padding-top: 1.5vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile .containerMain {
    height: 150vw;
    width: 100%;
}

.mainContainer {
    width: 73.68vw;
}

.mobile .mainContainer {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.mobile .freesbeHeader {
    background: #00d6d1;
    width: 100vw;
    display: flex !important;
    gap: 52vw;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
    justify-content: end;
}

.subTitle img.freesbeLogo {
    margin: 0 0.5vw;
}

.mobile .freesbeLogo {
    width: 17vw;
    padding-left: 8vw;
    padding-bottom: 1.5vw;
    padding-top: 1.5vw;
}

.mobile .subTitle img.freesbeLogo {
    padding-left: 0;
    padding-bottom: unset;
    padding-top: unset;

}

.mobile .nissanLogo {
    width: 12vw;
    display: none;
}

.iconArrow {
    position: relative;
    top: 0.15vw;
    width: 0.5vw;
}

.mobile .iconArrow {
    width: 1.8vw;
}

.emailLabel {
    position: static;
}

.mobile .emailLabel {
    position: absolute;
}

.error-m.email {
    top: 1.5vw;

}

.mobile .error-m.email {
    top: 0.6vw;
}

.taknonNew {
    color: black;
}

.freesbe_sale {
    width: 18vw;
    position: relative;
    top: 0.7vw;
}

.mobile .freesbe_sale {
    width: 88vw;
    top: 2vw;
}

.terms a {
    color: black;
}

.ranks {
    padding-top: 0.5vw;
    padding-bottom: 0;
    padding-right: 0;
    min-width: 100%;
}

.mobile .ranks {
    padding-right: 0;
    padding-bottom: 3vw;
    padding-top: 1vw;
    order: 2;
}

.mishpatiot {
    margin: 0.5vw 0;
}

.mobile .mishpatiot {
    margin: 0 0 3.5vw;
    font-size: 3.5vw;
    width: 65vw;
}

@supports (-webkit-touch-callout: none) {
    /* CSS for other than iOS devices */
    .mobile .cta .callUs {
        top: 123vw;
        left: 5.1vw;
    }

    .mobile .carasso_layer_whatsapp_icon {
        position: fixed;
        width: 50px;
        height: 50px;
        background-color: transparent;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: unset;
        z-index: 99999;
        transition: all 0.3s;
        bottom: unset !important;
        right: 79vw !important;
        top: 135vw !important;
    }
}