:root {
  --color-primary: #ff6600;
  --color-primary-dark: #e55b00;
  --color-background: #f4f4f4;
  --color-text: #353434;
  --color-white: #fff;
}
/* JokerShort Font Family */
@font-face {
    font-family: 'JokerShort';
    src: url('../fonts/JokerShort-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'JokerShort';
    src: url('../fonts/JokerShort-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'JokerShort';
    src: url('../fonts/JokerShort-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'JokerShort';
    src: url('../fonts/JokerShort-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'JokerShort', sans-serif;

  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: unset;
  margin: 0 auto;
  padding: 0 1vw;
  height: 100%;
}

.main-content {
  flex: 1 0 auto;
  min-height: 83vh;
  display: flex;
  flex-direction: column;
  background-image: unset;
  background-size: cover;
  background-position: bottom;
  padding: 2rem 0;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: unset;
  height: 100%;
}

.text-content {
  flex: 0 65%;
  /* min-width: 404px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background: #f5821f;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.form-container {
  flex: 0 0 35%;
  /* min-width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* margin-left: 2rem; */
  background: #e2e2e2;
  border-radius: border-top-left-radius: 4px 2px;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.form-container-inner {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 2rem;
  /* box-shadow: 0 0 50px rgba(0,0,0,0.1); */
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.form-container-inner h2 {
  font-size: 1.675rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #ff6600;
}

.text-content h1 {
  font-weight: bolder;
  font-size: 5vw;
  margin-bottom: 1rem;
  text-align: right;
  line-height: 1.1;
  color: var(--color-text);
}
.text-content h1 b{
  color: var(--color-primary);
  font-size:     font-weight: 800;
  font-size: 6vw;
  font-weight: initial;
}
.text-content p {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  text-align: right;
  font-weight: bold;
  line-height: 1;
  margin-top: 7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  position: relative;
  margin-bottom: unset;
}

.form-input input,
.form-input select {
  width: 100%;
  padding: 0.65rem;
  border: unset;
  border-radius: 9px;
  font-size: 1rem;
  background-color: #ececec;
  text-align: right;


}

.form-input input::placeholder,
.form-input select::placeholder {
  color: #999;
}

.form-input select {
  appearance: none;
  background-image: url('path/to/dropdown-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
}

.form-input > label {
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 0.5rem;
  font-weight: 400;
  display: flex;
  align-items: start;
}

.error-message {
  display: none;
  color: red;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  position: absolute;
  bottom: -1.25rem;
  right: 0;
}

.form-input.error input,
.form-input.error select {
  border-color: red;
}

.form-input.error .error-message {
  display: block;
}

.contact-form button {
  background-color: #323232;
  color: var(--color-white);
  border: none;
  padding: 0.5rem;
  font-size: 2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
  font-family: 'MZTF-Sans', sans-serif;
}

.contact-form button:hover {
  background-color: var(--color-primary-dark);
}

.site-footer {
  flex-shrink: 0;
  min-height: 9vh;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 1rem; */
  /* box-shadow: 0 0 38px rgba(0, 0, 0, 0.1); */
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer .container img {
  width: auto;
  height: 7.5rem;
  margin-top: -3rem;
}

.site-footer .container > p {
        font-size: 0.8rem;
        font-weight: 300;
        width: 60%;
        line-height: 1;
        margin-bottom: 1rem;
        color: #323232;
}

.text-content-end {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}

.text-content-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: unset;
  font-size: 2.9vw;
  color: white;
  text-align: right;
  margin-top: 1rem;
  display: flex !important;!i;!;
  align-items: center;
  flex-direction: column;
}

.text-end-content h2 {
  font-size: 2.5vw;
  justify-content: center;
  align-items: end;
  line-height: 1;
}

.text-end-content h2 img {
  width: auto;
  height: 6rem;
  margin-bottom: -1.7rem;
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    /* margin-bottom: 2rem; */
  }

  .text-content, .form-container {
    flex: none;
    width: 100%;
  }

  .form-container-inner {
    max-width: 100%;
    padding: 3.5rem 2rem 2.5rem 2rem;
  }

  .text-content h1 {
    font-size: 6rem;
  }

  .text-content p {
    font-size: 4rem;
  }

  .text-end-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .text-end-content h2 img{
    margin-bottom:unset !important;
  }
  .main-content {
    padding: unset;
  }
  .text-content-inner {
    margin-bottom: unset;
    position: relative;
  }
  .text-content h1 {
    font-size: 11vw;
    text-align: center;
    line-height: 1;
  }

  .text-content p {
    font-size: 9vw;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 0.5rem;
    margin-right: 1rem;
  }

  .text-end-content h2 {
    font-size: 1.8rem;
  }

  .form-container-inner h2 {
    font-size:1.5rem;
  }

  .contact-form button {
    font-size: 2rem;
  }
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%);
}

.select2-container .select2-selection--single {
  width: 100%;
  border: unset;
  border-radius: 14px;
  font-size: 1rem !important;
    background-color: #ececec;
  height:2.5rem;

}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
  padding-left: 10px;
  height: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 1rem !important;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: rgb(0 0 0 / 81%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease-in-out;
}



#spinner {
    position: absolute; /* Center the spinner */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #ff6600; /* Orange color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading-container {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.loading-image {
  width: 15rem;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
  margin-top: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 0.3s ease-in-out forwards;
}
.error {
  color: #d32f2f;
  font-size: 1.1rem !important;
  margin-top: 0.4rem;
  margin-bottom: -0.3rem;
  display: block;
  text-align: right;
  font-weight: 400;
  transition: all 0.3s ease;
  animation: errorShake 0.3s ease-in-out;
}
@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

input.error,
select.error {
  border-color: #d32f2f;
  background-color: #ffeaea;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;

}

.thanks-content {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 3.8rem 2rem;
  max-width: 90%;
  width: 33rem;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2.4rem;
  cursor: pointer;
  background: none;
  border: none;
}

.thanks-content h2 {
  font-size: 3rem;
  color: var(--color-primary);
  /* margin-bottom: 1rem; */
  line-height: 1;
}

.thanks-content p {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 0.8;
  font-weight: 400;
}

.calc-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.55rem 2rem;
  font-size: 2rem;
  border-radius: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.calc-btn img {
  width: 1.5rem;
  height: auto;
  margin-left: 0.5rem;
}

.close-btn{
  color:black;
}
@media (max-width: 768px) {
  .text-content{
    min-width: unset !important;
  }
  .main-content {
    min-height: 73vh;
}
  .content-wrapper {
      gap: unset !important;

  }
.form-container{
          margin-bottom: unset;
}
  .text-content p {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-align: right;
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-top: unset;
    text-align: center;
    font-size: 1.8rem !important;
}

  .form-icon img {
    width: 38vw !important;
    height: auto;
    margin-bottom: 1vh;
}
  .select2-container .select2-selection--single {
    height:3rem;

  }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    height: 3rem;
  }
  .form-container-inner {
    min-height: 65vh; /* Adjust this value as needed */
    max-height: 85vh; /* Prevents the form from being taller than the viewport */
    overflow-y: auto; /* Enables vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS devices */
    padding: 4rem 1.5rem; /* Slightly reduced padding for mobile */
    border-radius: 1rem; /* Smaller border radius for mobile */
  }
  /* #open-form-btn{
    display:  none !important;
  } */
  /* Customize the scrollbar for webkit browsers */
  .form-container-inner::-webkit-scrollbar {
    width: 8px;
  }

  .form-container-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .form-container-inner::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .form-container-inner::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .site-footer .container > p {
    font-size: 0.8rem;
font-weight: 300;
    color: #353434;
    text-align: center;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 100%;
  }
  .site-footer .container {
    flex-direction: column-reverse;
  }
  .site-footer .container img {
    margin-top: -1.5rem;
  }
  #open-form-btn {
    display: block;
    width: max-content;
    padding: 0.7rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 1rem;
    font-size: 2rem;
    cursor: pointer;
    margin: auto;
    font-weight: 500;
  }
  .form-container-inner h2 {
    font-size: 2rem;
}
  .desktop{
    display: none !important;
  }
  .mobile{
    display: block !important;
  }
  .main-content {
    background-image: unset;
    background: #ff6600;
  }

  /* .form-container {
    display: none;
  } */

  #open-form-btn {
    font-family: 'MZTF-Sans', sans-serif !important;

    display: block;
  }

  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }

  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #fff; */
    padding: 1rem unset;
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
  }
  .close-btn-mobile-form {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 100;
  }

  .overlay {
    z-index: 10000000 !important;
  }
  .calc-btn {
    font-size: 1.7rem;
  }
  .locations_container {
      position: absolute;
      width: 100%;
      height: 100%;
  }
  .location1 {
      position: absolute;
      top: 0;
      width: 3rem;
      height: auto;
  }
  .location2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.8rem;
    height: auto;
  }
  .location3 {
      position: absolute;
      bottom: -9rem;
      left: 50%;
      width: 5rem;
      height: auto;
      transform: translate(-50%, -50%);
  }
  .text-content p img {
    height: 2.8rem;
    width: auto;
}
}

@media (min-width: 769px) {
  .big_title {
    color: white;
    font-size: 3vw;
    line-height: 0.9;
    /* margin-top: 2rem; */
    font-weight: bolder;
    width: 55%;
    text-align: center;
}

  .new_h.mobile-only{
    display: none;
  }
  .site-footer .container > p{
    font-size: 1rem !important;
  }
  img.icon66 {
    width: 20vw !important;
    height: auto;
}
span.big_title_3 {
    font-size: 5.26vw;
    font-weight: bold;
    line-height: 0.9;
    margin-top: 3vw;
}
  span.small_title {
      font-size: 1.7vw;
      color: #39464d;
      font-weight: 900;
      line-height: 0.9;
      margin-top: 3vw;
  }
  .form-container-inner {

  margin-top: 3rem;
}


  .locde4{
    width: auto;
    height: 7rem;
  }
  img.desktop.locde3 {
      width: auto;
      height: 5rem;
      margin-top: -3rem;
  }
  .text-content p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

  .coint_da {
      display: flex;
      gap: 0 6rem;
  }
.coint_da .locde5 {
    width: auto;
    height: 6rem;
            margin-top: -1rem;
}
.coint_da .locde6 {
    width: auto;
    height: 4rem;
    margin-top: -2rem;
}
  .text-end-content h2 img {
    width: auto;
    height: 5rem;
    margin-bottom: -2.6rem;
  }
  img.locde2.desktop {
    margin: auto;
    width: 8rem;
    height: auto;
    margin-top: 3rem;
}
  .locations_container {
      position: absolute;
      width: 100%;
      height: 100%;
  }
  .locations_container .location1 {
      position: absolute;
      top: 0;
      right: 0;
  }
  .desktop{
    /* display: block !important; */
  }
  .mobile{
    display: none !important;
  }
  #open-form-btn {
    display: none;
  }
}
.close-btn-mobile-form{
  color:black;
}
.select2-container {

    width: 100% !important;
}
.text-content-inner p b {
    font-size: 1.9vw;
    font-weight: lighter;
}
.form-icon img {
    width: 15vw;
    height: auto;
    margin-bottom: 1vh;
}


.form-input label small {
    line-height: 1;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
.form-container-inner{
  overflow: hidden;
    height:auto !important;
    min-height: unset !important;
    max-height: unset !important;
}
  .form-icon.desktop{
    display: none !important;
  }
  .text-content-inner p b {
    font-size: 5.5vw;
    font-weight: lighter;
}
  .desktop-a{
    display: none !important;
  }
  .mobile-b{
    display: block !important;
  }

  .form-icon.mobile{
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .form-icon.desktop {
      display: flex !important;
      align-items: center;
      justify-content: center;
  }
  .desktop-a{
    display: block !important;
  }
  .mobile-b{
    display: none !important;
  }
}

.onlyAR{
      font-size: 1.4rem !important;
      font-weight: bolder !important;
}
img.icon1 {
    margin-bottom: 2rem;
}
img.icon2 {
    margin-bottom: 1rem;
}
img.icon3 {
    position: absolute;
    top: 0;
    height: 11rem;
}
img.icon5 {
    width: 12rem;
    height: auto;
    margin: auto;
    margin-bottom: 2rem;
    margin-top: -4rem;
}
.text-content-inner img{
  width: 86%;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  img.icon66 {
      width: 27vw !important;
      height: auto;
      margin-bottom: 0.5rem;
  }
  span.small_title {
    color: #ff6600;
    font-size:8.938vw;
    font-weight: 700;
    margin-top: unset !important;
}

.big_title {
        color: #353434 !important;
        font-size: 8.333vw !important;
        line-height: 0.9;
        /* margin-top: 2rem; */
        font-weight: bold;
    }
  .content-wrapper {

    justify-content: unset;

}
  .text-content-inner {
    gap: unset;
}
  .text-content-inner.mobile span{
width: 100%;
    margin:auto;
    margin-top: 0.5rem;
  }
  .form-container-inner h2 {

    margin-bottom:unset;
}
  .text-content-inner .icon1 {
    width: 68% !important;
    margin-bottom: unset;
}
.form-container-inner {
        min-height: 53vh;
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1.5rem;
    }
.text-content-inner.mobile {
    font-size: 6vw;
    line-height: 1;
    display: flex !important;
    justify-content: center;
    margin-top: unset;
    text-align: center;
}
img.icon3 {
    position: absolute;
    top: 0;
    height: 30vw;
}
.text-content-inner .icon1{
  width: 80%;
}

.img_foo .icon6 {
    width: 100%;
    /* margin-bottom: 16rem; */
}
footer.site-footer {
    flex-direction: column;
}

.img_foo .icon6 {
        width: 100%;
        /* margin-bottom: 16rem; */
        margin-top: -1rem;
    }
}
.big_title{
  color: white;
  font-size: 3vw;
  line-height: 0.9;
  /* margin-top: 2rem; */
  font-weight: bolder;
}
.big_title_2{
    font-size: 2.813vw;
    font-weight: 500;
    line-height: 0.9;
    width: 81%;
    margin-top: 1rem;
    color: #353434;
    margin-bottom: 3rem;
}
p.meduim_size {
  text-align: center;
        line-height: 1;
}

@media (max-width: 768px) {

  .container {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    padding: 0 3vw;
    height: 100%;
}


.form-container{
  display: none;
}
  span.big_size {
    color: #ff6b01;
    font-size: 13vw !important;
}
p.meduim_size {
    font-size: 5vw !important;
    margin: unset;
    padding: unset;
    font-weight: normal;
    text-align: center;
        line-height: 1;
}


  span.big_title_2{
    margin-bottom: 3rem;
  }
  .form-container {
        margin-bottom: unset;
        padding-bottom: 3rem;
    }
    .text-content-inner.mobile {

    margin-top: 2rem;
}
  footer.site-footer{
    /* padding-top:5rem; */
  }
  .site-footer .container{
      padding:unset;
  }
  .site-footer .container img {
    /* margin-top: -1.5rem; */
    width: 100%;
    height: auto !important;
}
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem !important;
}

  span.big_title_3 {
    margin-bottom: 1rem !important;
}
  .contact-form {
      display: flex
  ;
      flex-direction: column;
      gap: 0.8rem;
  }
  .big_title{
    color:#e96b05;
font-size: 10.188vw;
 line-height: 0.9;
    /* margin-top: 2rem; */
    font-weight: bold;
  }
  .text-content-inner img {
    width: 86%;
    height: auto;
    margin-top: 1rem;
}
  span.big_title_2 {
      font-size: 5.5vw;
      width: 100% !important;
      margin-bottom: 1rem !important;!i;!;
  }
img.icon2{
  margin-bottom: unset;
}
  .main-content {

    display: flex;
    flex-direction: column;
    background-image: url('../img/main_mobile.png?V1.1');
    background-size: cover;
    background-position: center;

  }

  .new_h.mobile-only {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem 0;
}

.new_h.mobile-only span {
    font-size: 12vw;
    text-align: center;
    color: white;
    font0w: bold;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    display: flex;
}
#open-form-btn{
  background:#323232;
}

}

.id-type-selector {
  margin-bottom: 0.2rem;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  direction: rtl;
}

.radio-label {
  grid-gap: 0 0.3rem;
  font-size: 1.5rem;
  line-height: 1;
  gap
  margin-left: 0.5rem;
  font-weight: 400;
  display: flex
;
  align-items: start;
}

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.radio-label input[type="radio"]:checked {
  background-color: #ff6600;
  border-color: #ff6600;
}



.radio-text {
  grid-gap: 0 0.3rem;
  font-size: 1.5rem;
  line-height: 1;
  gap
  margin-left: 0.5rem;
  font-weight: 400;
  display: flex
;
  align-items: start;
}
button.acc {
    background: transparent;
    border: none;
    display: flex
;
    align-items: center;
}
.acc svg{
  width: 2rem;
  height: auto;
}
.link_new {
	font-size: 1.4rem;
	color: white;
	/* padding-top: 2rem; */
	text-decoration: underline;
	width: 100%;
	display: block;
	text-align: right;
	padding-right: 1vw;
}


span.big_size {
	color: #ff6b01;
	font-size: 4vw;

}
p.meduim_size {
	font-size: 1.3vw;
	margin: unset;
	padding: unset;
	font-weight: normal
}
.orange_line {
	width: 63%;
	margin: auto;
	height: 1px;
	background: #ff6b01;
	margin: 1rem auto 1rem auto;
}
.meduim_size.bold{
	font-weight: 500;

}
.thanks_form_here{
  display: none;
}

.contact-form.thanks .thanks_form_here{
  display: flex
;
  min-height: 25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-form.thanks  .fo{
  display: none;
}
.contact-form .fo{
  display: flex
;
flex-direction: column;
  gap:1.5rem;
}
#phone-email{
  display: none;
}
.site-footer .container > p {
    font-weight: 500;
}


@media (min-width: 768px) {
  .site-footer .container > p {
      font-weight: 400;
      text-align: justify;
  }
.main-content {
    padding: 2rem 0 0.5rem 0;
    background: white;
}

  .form-container-inner h2 {
      font-size: 3rem;
      line-height: 1;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 900;
      color: #f18327;
  }

  .form-container-inner {
    background-color: unset;
    box-shadow: unset;
    max-width:unset;
}
.form-input {
    position: relative;
    margin-bottom: unset;
    display: flex
;
    align-items: center;
    gap: 0 1.5rem;
}
.form-input > label {
    font-size: 2.2rem;
    line-height: 1;
    margin-right: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: start;
    /* width: max-content; */
    flex: 0 0 auto;
    font-weight: 500;
}
.contact-form {
    display: flex
;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 4rem;
}
.contact-form .fo {
    display: flex
;
    flex-direction: column;
    gap: 2rem;
}
.contact-form button {
    background-color: #323232;
    color: var(--color-white);
    border: none;
    padding: 1rem;
    font-size: 2rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 900;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
    font-family: 'MZTF-Sans', sans-serif;
    /* color: #f5821f; */
    background: #f5821f;
}
/* .form-input {
    flex-wrap: wrap;
} */

#first_name-error,
#last_name-error,
#phone-error,
#tz-error,
#email-error {
    position: absolute;
    bottom: -1.1rem;
}
}


.box_new_item img {
    width: auto;
    height: auto;
    margin-bottom: unset;
}

.box_new_group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 91%;
}

.box_new_item span {
    font-size: 1vw;
    color: #2b3941;
    font-weight: 900;
}

.box_new_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 20%;
    position: relative;
}

.box_new_item p {
    font-size: 0.9vw;
    margin-top: unset;
    text-align: center;
    color: #2b3941;
    font-weight: 500;
    line-height: 0.8;
}

.box_new_item:not(:last-child)::after {

    width: 2px;
    height: 41%;
    background: white;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    top: 75%;  /* position the top  edge of the element at the middle of the parent */
    /* left: 50%; */ /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%); /* This is a shorthand of
                                         translateX(-50%) and translateY(-50%) */
}


@media (max-width: 768px) {
  .main-content {
        height: 64vh;
                padding-top: 1rem;
    }
    .container {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    padding: 0 2vw;
    height: 100%;
}
.text-content {
    border-radius: 1rem;
}
    .site-footer .container {
    display: flex
;
    align-items: unset;
    justify-content: space-between;
}
    .site-footer .container img {
        /* margin-top: -1.5rem; */
        width: 11rem;
        height: auto !important;
        /* margin: unset; */
    }
    .text-content {
        border-radius: 1rem;
        align-items: unset;
        justify-content: unset;
    }
    .big_title {
    color: #e96b05;
    font-size: 10.188vw;
    line-height: 0.9;
    /* margin-top: 2rem; */
    font-weight: bold;
    color: white !important;
    font-size: 10vw !important;
    font-weight: 900;
}
.box_new_group {
    flex-wrap: wrap;
    width:100%;
}
.box_new_item {

    flex: 0 0 33%;
}
.box_new_item:nth-child(3)::after{
  content: unset !important;
}
.text-content-inner.mobile .new-dax{
  background: #e2e2e2;
}
.box_new_item p {
    font-size: 3vw !important;
    margin-top: unset;
    text-align: center;
    color: #2b3941;
    font-weight: 500;
    line-height: 0.8;
}
.box_new_item img {
    width: 6vw;
    height: auto;
    margin-bottom: unset;
}
.box_new_item:not(:last-child)::after {
  width: 2px;
  height: 46%;
  background: #39464d;
  content: '';
  left: 0;
  position: absolute;
  top: 0;
  top: 73%;
  /* left: 50%; */
  transform: translate(-50%, -50%);
}
.text-content-inner.mobile {

    height: 100%;
}

.text-content-inner.mobile .new-dax {
    background: #e2e2e2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.new-dax .small_title {
    color: #39464d;
    font-weight: 900;
    font-size: 7vw;
    line-height: 0.8;
}
.site-footer .container img {
    z-index: 10;
}
.box_new_item p {
        font-size: 3vw !important;
        margin-top: unset;
        text-align: center;
        color: #2b3941;
        font-weight: 500;
        line-height: 0.8;
        margin-right: unset;
        margin-bottom: unset;
    }
    .box_new_item img {
    width: 6vw;
    height: 6vw;
    margin-bottom: unset;
    object-fit: contain;
}
.text-content-inner.mobile .new-dax {
    background: #e2e2e2;
    padding-top: 2rem;
        padding-bottom: 4rem;
    /* border-radius: 1rem; */
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
#open-form-btn {
    background: #f5821f;
    padding: \; padding: 0.7rem 2rem;
    padding: 0.4rem 2rem;
    position: absolute;
    left: 2rem;
    font-weight: 900;
    bottom: -1.1rem;
    font-size: 1.5rem !important;
}
.site-footer .container > p {
    font-size: 0.8rem;
    font-weight: 300;
    color: #353434;
    text-align: center;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 87%;
    צשרעןמ: שואם;
    margin: auto;
    margin-top: 1rem;
}
.main-content{
  height: unset;
  min-height: unset;
}
.site-footer .container {
    display: flex
;
    align-items: unset;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.form-container-inner h2 {
    margin-bottom: unset;
    font-weight: 900;
    margin-top: 2rem;
    font-size: 10vw;
    color: #f18327;
}
.contact-form button{
  background: #f5821f;
}
.box_new_item span {
font-size: 4.5vw;
    color: #2b3941;
    font-weight: 900;
}
img.icon66 {
    width: 63vw !important;
    height: auto;
    margin-bottom: 2rem;
}
  .content-wrapper{
    flex-direction: unset
  }
  .main-content {
    background-image:unset;
        background: white;
}
}
