@font-face {
  font-family: hebrew_light;
  src: url(./fonts/BMWTypeNextProHebrew-Light.otf);
}

@font-face {
  font-family: hebrew_regular;
  src: url(./fonts/BMWTypeNextProHebrew-Regular.otf);
}

@font-face {
  font-family: "hebrew_bold";
  src: url("./fonts/BMWTypeNextProHebrew-Bold.otf");
}

@font-face {
  font-family: "hebrew_medium";
  src: url("./fonts/BMWTypeNextProHebrew-Medium.otf");
}

@font-face {
  font-family: light;
  src: url(./fonts/BMWTypeNext-Light.otf);
}

@font-face {
  font-family: regular;
  src: url(./fonts/BMWTypeNext-Regular.otf);
}

* {
  padding: 0;
  margin: 0;
  direction: rtl;
  font-family: hebrew_light;
  box-sizing: border-box;
}

select.error {
  outline: 1px solid tomato !important;
  color: tomato !important;
}

button:disabled {
  background-color: #ccc;
}

input.error {
  outline: 1px solid tomato !important;
}

input.error::placeholder {
  color: tomato !important;
}

label.error {
  color: tomato;
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

video,
img {
  object-fit: contain;
}

.main_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.video_section {
  background-image: url('../assets/mobile-bg.jpg?r=2');
  width: 100%;
  height: calc(100vw * 960/959);
  background-size: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video_play_btn {
  display: none;
  position: absolute;
  width: 20vw;
  z-index: 1;
  cursor: pointer;
}

.video_play_btn:hover {
  border: 3px solid rgba(59, 59, 232, 0.6);
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform 0.5s;
}

.video {
  width: 100%;
  /* cursor: pointer; */
  border: none;
  z-index: 3;
}

.video_logos {
  object-fit: contain;
  position: absolute;
  top: 2vw;
  left: 3vw;
  width: 15vw;
}

.video_title {
  color: white;
  text-align: center;
  position: absolute;
  font-size: 7vw;
  top: 12vw;
  line-height: 0.85;
}

.video_title b {
  font-weight: bold;
  font-family: regular;
  font-size: 5.7vw;
}

.video_title span {
  font-size: 4.5vw;
  font-weight: 300;
  line-height: 1.8;
}

.video_footer {
  color: white;
  text-align: center;
  position: absolute;
  font-size: 4.5vw;
  font-weight: bold;
  bottom: 5vw;
  line-height: 1;
}

.video_footer span {
  font-weight: 300;
}
.video-title {
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  height: 100vw;
  display: flex;
  flex-direction: column;
  text-shadow: 1px 0px 1vw black, 0px 1px 1vw BLACK;
}
.logos {
  direction: ltr;
  display: flex;
  justify-content: center;
  height: 10vw;
  width: fit-content;
  padding: 2vw 0;

}
.logos img {
  height: 100%;
  width: 27vw;
  filter: drop-shadow(1px 0px 0.5vw #0000006e) drop-shadow(0px 1px 0.5vw #0000007a);
}
.logos img + img {
  border-left: 1px solid white;
}
.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  line-height: 1.1;
  height: 100%;
  gap: 2vw;
}
.title1{
  font-size: 8.1vw;
  font-family: "hebrew_medium";
  letter-spacing: 0.05vw;
}
.title2 {
  font-size: 5vw;
  letter-spacing: 0.1vw;
}
.title3 {
  font-size: 7.2vw;
  letter-spacing: 0.1vw;
}

.form_section {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
  padding: 2vw 0;
  width: 100vw;
}

.form {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
  width: 75vw;
}

.form_title {
  font-family: hebrew_regular;
  color: black;
  font-size: 3.3vw;
  margin-bottom: 2vw;
  text-align: center;
}

.input {
  width: 100%;
  padding: 2vw 4vw 2vw 4vw;
  font-size: 4vw;
}

.dropdown select {
  width: 100%;
  font-size: 4vw;
  padding: 2vw 3vw;
  background-position: 3vw center;
  background-size: 4.5vw;
  border: none;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Add a custom arrow icon */
  background-image: url(../assets/arrow_down.png); /* Replace with the URL of your custom arrow icon */
  background-repeat: no-repeat;
  /* Add padding to provide space for the arrow icon */
  color: #767676;
}

.dropdown select.error {
  background-image: url(../assets/arrow_down_error.png);
}

.dropdown {
  width: 100%;
  border: 1px solid #767676;
}

.checkbox_container {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 3vw;
  cursor: pointer;
}

.checkbox_container * {
  cursor: pointer;
}

.checkbox_label {
  font-size: 3vw;
  color: #828282;
  line-height: 1;
}

.checkbox {
  width: 5vw;
  height: 5vw;
}

.submit_btn {
  background-color: #1c69d4;
  color: white;
  font-family: hebrew_regular;
  border: none;
  width: 100%;
  padding: 2vw 4vw 2vw 4vw;
  font-size: 5vw;
  cursor: pointer;
}

.terms {
  color: #828282;
  font-size: 2.8vw;
  text-align: center;
}

.terms_link {
  color: #828282;
}
.links-3 {
  font-size: 3vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
  
}
.links-3 a {
  color: #828282;
}
.icons_container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 3vw 0;
}

.inner-icon-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

.icon_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  cursor: pointer;
  /* transition: 0.5s scale; */
}

/* .icon_container:hover {
  scale: 0.9;
} */

.inner-icon-container {
  /* height: 2vw; */
  /* height: 1vw; */
  height: 7vw;
  gap: 1vw;
}


.icon-bmw{
  display: inline-block;
  mask: url('../assets/Info_icons/logo1.svg');
  height: inherit;
  width: 6vw;
  mask-size: contain;
  /* background: #70706e; */
  background: #006fba;
  mask-repeat: no-repeat;
  mask-position: center center;


}
.icon-bmw_m{
  display: inline-block;
  mask: url('../assets/Info_icons/logo3.svg');
  height: inherit;
  width: 10vw;
  mask-size: contain;
  /* background: #70706e; */
  background: #006fba;
  mask-repeat: no-repeat;
  mask-position: center center;

}
.icon-mini{
  display: inline-block;
  mask: url('../assets/Info_icons/logo2.svg');
  height: inherit;
  width: 10vw;
  mask-size: contain;
  /* background: #70706e; */
  background: #006fba;
  mask-repeat: no-repeat;
  mask-position: center center;


}

/* .icon-left:hover{
background: #70706e;
} */

.icon {
  object-fit: contain;
  width: 20vw;
}

.icon_text {
  font-size: 2.5vw;
  color: #1c69d4;
}

.strip {
  width: 90vw;
  cursor: pointer;
  margin: 3vw 0 1vw 0;
}

.thanks_message {
  font-size: 4.5vw;
  font-family: hebrew_regular;
  color: black;
  text-align: center;
  padding: 10vw;
}

.media_container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4vw;
}

.icon {
  width: 7vw;
  cursor: pointer;
}

.licenseNotFound {
  text-align: center;
  font-size: 4vw;
  padding: 5vw 0;
}

.wrong_license_number_dialog,
.over_500_dialog {
  border: none;
  padding: 4vw;
  top: 45%;
  transform: translate(-32%, -50%);
}

.wrong_license_number_dialog p,
.over_500_dialog p {
  text-align: center;
  font-size: 4vw;
}

#wrong_license_number_close_btn,
#dialog_close_btn,
#over_500_close_btn {
  border: none;
  background-color: transparent;
}

#pollutionDialog {
  flex-direction: column;
  position: fixed;
  margin: auto;
  border: 0;
  border-radius: 12px;
}

#dialog_close_btn {
  user-select: none;
  width: fit-content;
  border: 0;
  cursor: pointer;
  padding: 3vw;
}

#pollutionDialog img {
  width: 90vw;
}

@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: inline-block;
  }

  .main_container {
    flex-direction: row;
    /* height: 45.2vw; */
    position: relative;
    width: 100%;
  }

  .video_section {
    /* background-image: url('../assets/desktop-bg.jpg?r=2'); */
    background: none;
    width: 75vw;
    height: calc(75vw * 676/1200);
    /* background-repeat: no-repeat; */
    align-self: flex-start;
  }

  .video_play_btn {
    width: 10vw;
  }

  .video {
    height: 100%;
    object-fit: cover;
  }

  .video_logos {
    object-fit: contain;
    position: absolute;
    top: unset;
    bottom: 1vw;
    left: 1vw;
    width: 8vw;
  }

  .video_title {
    font-size: 3.5vw;
    top: 4vw;

  }

  .video_title b {
    font-weight: bold;
    font-family: regular;
    font-size: 2.9vw;
  }

  .video_title span {
    font-size: 2.3vw;
    line-height: 1.5;
  }

  .video_footer {
    font-size: 1.5vw;
    bottom: 1vw;
    right: 1vw;
  }

  .video-title {
    width: 75vw;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
  }
  .logos {
    display: flex;
    justify-content: flex-end;
    padding: 0vw;
    height: 3vw;
  }
  .logos img {
    height: 100%;
    width: 15vw;
  }
  .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    height: 100%;
    gap: 1.5vw;
  }
  .title1{
    font-size: 5.2vw;
    font-family: "hebrew_medium";
    letter-spacing: 0.1vw;
  }
  .title2 {
    font-size: 3vw;
    letter-spacing: 0.1vw;
  }
  .title3 {
    font-size: 4.5vw;
  }

  .form_section {
    width: 25vw;
    padding: 1vw 0;
    gap: 1vw;
    height: 100%;
  }

  .form {
    gap: 0.5vw;
    padding: 1vw 2vw 5vw 2vw;
    width: initial;
    position: relative;
    height: 100%;
    justify-content: center;
  }

  .form_title {
    font-family: hebrew_regular;
    font-size: 0.8vw;
    margin-bottom: 1vw;
  }

  .input {
    width: 100%;
    padding: 0.5vw 1vw 0.5vw 1vw;
    font-size: 1vw;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown select {
    width: 100%;
    font-size: 1vw;
    padding: 0.75vw 1.5vw;
    background-position: 1vw center;
    background-size: 1vw;
  }

  .checkbox_container {
    gap: 1vw;
  }

  .checkbox_label {
    font-size: 0.7vw;
    line-height: 1.1;
  }

  .checkbox {
    width: 4vw;
    height: 1.5vw;
  }

  .submit_btn {
    padding: 0.5vw 1vw 0.5vw 1vw;
    font-size: 1.5vw;
  }

  .terms {
    font-size: 0.6vw;
  }
  .links-3 {
    font-size: 0.8vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 4vw);
  }
  .links-3 a {
    color: #828282;
  }
  .icons_container {
    position: absolute;
    bottom: 0;
    width: 80%;
    margin: 0;
  }

  .icon_container {
    /* gap: 1vw; */
    gap: unset;
  }

  .icon {
    width: 10vw;
  }

  .icon_text {
    font-size: 0.6vw;
  }

  .strip {
    width: 50vw;
    position: absolute;
    right: 0.5vw;
    bottom: 0vw;
    margin: 0;
  }

  .thanks_message {
    font-size: 1.5vw;
    color: black;
    text-align: center;
    padding: 0;
  }

  .media_container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1vw;
  }

  .icon {
    /* width: 2vw; */
    width: unset;
    /* height: inherit; */
    height: 1.5vw;
    cursor: pointer;
  }
  /* .icon-bmw{
    background-image: url('../assets/Info_icons/logo1.svg');
    height: 3vw;
    width: 3vw;
    background-size: contain;
    background-repeat: no-repeat;
  } */

  .inner-icon-container {
    /* height: 2vw; */
    /* height: 1vw; */
    height: 1.6vw;
    gap: 0.1vw;
    /* gap: unset; */
  }


  .icon-bmw{
    display: inline-block;
    mask: url('../assets/Info_icons/logo1.svg');
    height: inherit;
    width: 1.5vw;
    mask-size: contain;
    background: #006fba;
    mask-repeat: no-repeat;
    mask-position: center center;


  }
  .icon-bmw_m{
    display: inline-block;
    mask: url('../assets/Info_icons/logo3.svg');
    height: inherit;
    width: 3vw;
    mask-size: contain;
    background: #006fba;
    mask-repeat: no-repeat;
    mask-position: center center;

  }
  .icon-mini{
    display: inline-block;
    mask: url('../assets/Info_icons/logo2.svg');
    height: inherit;
    width: 3vw;
    mask-size: contain;
    background: #006fba;
    mask-repeat: no-repeat;
    mask-position: center center;


  }
/* 
.icon-left:hover{
  background: #006fba;
} */


  



  .licenseNotFound {
    font-size: 1.2vw;
    padding: 0;
  }

  .wrong_license_number_dialog {
    padding: 2vw;
    top: 35%;
    transform: translate(-396%, -50%);
  }

  .over_500_dialog {
    padding: 2vw;
    top: 35%;
    transform: translate(-433%, -50%);
  }

  .wrong_license_number_dialog p,
  .over_500_dialog p {
    font-size: 1.2vw;
  }

  #pollutionDialog img {
    width:85svh;
    content: url("../assets/popup.png?r=2");
  }

  #dialog_close_btn {
    padding: 1vw;
  }

}


.remove_poiner_in_icon_container{
  cursor: unset;
}
