:root {
  --primary_color: #10625E;
  --gradient: linear-gradient(85.16deg, #00645F -10.21%, #289489 105.05%);
  --radius: 12px;
}

a {
  text-decoration: none !important;
}

.footer-wrap .footer-ref {
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
  font-size: 14px;
  font-weight: 400;
  color: #323232;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #32323240;
}

.home-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 40px 0;
  background-size: cover;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.home-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.8)), color-stop(35%, rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-intro .intro-box .intro-content .intro-title {
  font-size: 42px;
  color: #323232;
  font-weight: 700;
}

.home-intro .intro-box .intro-content .intro-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  margin-top: 20px;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-intro .intro-box .intro-content .intro-link {
  gap: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 6px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100px;
  text-decoration: none;
  background: var(--gradient);
}

.home-intro .intro-box .intro-content .intro-link img {
  padding: 12px 10px;
  background: #fff;
  border-radius: 100%;
}

.home_video .title {
  font-size: 28px;
  font-weight: 700;
}

.home_video .content {
  line-height: 32px;
  text-align: justify;
}

.home_video .btn-box {
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home_video .btn-box .first-btn, .home_video .btn-box .second-btn {
  font-weight: 700;
  padding: 10px 35px;
  border-radius: 12px;
}

.home_video .btn-box .first-btn {
  color: #fff;
  background: var(--gradient);
}

.home_video .btn-box .second-btn {
  color: var(--primary_color);
  border: 1px solid var(--primary_color);
}

.home_video .video-box .video-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.home_video .video-box .video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.home_video .video-box .video-wrapper .custom-play-icon {
  top: 50%;
  left: 50%;
  width: 200px;
  height: auto;
  cursor: pointer;
  position: absolute;
  pointer-events: none;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.consultation_forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/Background.svg") no-repeat center/cover, var(--gradient);
}

.consultation_forms .steps-progress {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consultation_forms .steps-progress .step-dot {
  height: 7px;
  width: 100px;
  border-radius: 4px;
  background: #FFFFFF40;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.consultation_forms .steps-progress .step-dot.active {
  background: #ffffff;
}

.consultation_forms .consultation_steps {
  width: 50%;
  border-radius: 35px;
  background: #10625E33;
  border: 1px solid #FFFFFF40;
}

.consultation_forms .consultation_steps .progress-items {
  height: 50px;
}

.consultation_forms .consultation_steps .form-content .form-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-top: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consultation_forms .consultation_steps .form-content .form-desc {
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 14px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consultation_forms .consultation_steps .step {
  margin-top: 45px;
}

.consultation_forms .consultation_steps .step .step-question {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.consultation_forms .consultation_steps .step .step-row {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.consultation_forms .consultation_steps .step .step-row .input-box {
  margin-bottom: 15px;
}

.consultation_forms .consultation_steps .step .step-row .input-box label {
  opacity: 0.7;
  margin: 10px 0;
  color: #FFFFFF;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap {
  position: relative;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input {
  width: 100%;
  color: #fff;
  direction: ltr;
  text-align: left;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #E9E9E9;
  padding: 12px 45px 12px 12px;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input::-webkit-input-placeholder {
  opacity: 0.7;
  color: #FFFFFF;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input:-ms-input-placeholder {
  opacity: 0.7;
  color: #FFFFFF;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input::-ms-input-placeholder {
  opacity: 0.7;
  color: #FFFFFF;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input::placeholder {
  opacity: 0.7;
  color: #FFFFFF;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap input.has-error {
  border-color: #ff4d4d !important;
}

.consultation_forms .consultation_steps .step .step-row .input-box .field-wrap img {
  top: 50%;
  right: 10px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.consultation_forms .consultation_steps .step .step-row .option-item {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  text-align: right;
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 8px);
  background: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid #E9E9E9;
}

.consultation_forms .consultation_steps .step .step-row .option-item.option-full {
  width: 100%;
}

.consultation_forms .consultation_steps .step .step-row .option-item .option-radio {
  left: 10px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #E9E9E9;
}

.consultation_forms .consultation_steps .step .step-row .option-item .option-radio .option-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
}

.consultation_forms .consultation_steps .step .step-row .option-item.active {
  background: rgba(255, 255, 255, 0.1);
}

.consultation_forms .consultation_steps .step .step-row .option-item.active .option-dot {
  background: #E9E9E9;
}

.consultation_forms .consultation_steps .step .next-step {
  width: 85%;
  border: unset;
  padding: 15px;
  font-weight: 600;
  color: var(--primary_color);
  border-radius: var(--radius);
}

.consultation_forms .consultation_steps .step .next-step#next-step-1 {
  width: 100%;
}

.consultation_forms .consultation_steps .step .prev-step {
  width: 65px;
  background: unset;
  border: 1px solid #E9E9E9;
  border-radius: var(--radius);
}

.consultation_forms .consultation_steps .step .correct-wrap {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  margin: 25px auto;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consultation_forms .consultation_steps #step-5 .input-box .field-wrap #name {
  direction: rtl;
  text-align: right;
  padding: 12px 12px 12px 45px;
}

.consultation_forms .consultation_steps #step-5 .input-box .field-wrap #name::-webkit-input-placeholder {
  text-align: right;
}

.consultation_forms .consultation_steps #step-5 .input-box .field-wrap #name:-ms-input-placeholder {
  text-align: right;
}

.consultation_forms .consultation_steps #step-5 .input-box .field-wrap #name::-ms-input-placeholder {
  text-align: right;
}

.consultation_forms .consultation_steps #step-5 .input-box .field-wrap #name::placeholder {
  text-align: right;
}

.consultation_forms .consultation_steps #step-6 {
  margin-top: 0;
}

.consultation_forms .consultation_steps #step-6 .constant-final .form-desc {
  font-size: 14px;
}

.consultation_forms .consultation_steps #step-6 .constant-final .calc-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 15px;
  font-weight: 700;
  margin-top: 50px;
  border-radius: 15px;
  margin-bottom: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
}

.home-faq .content-box .title {
  font-size: 26px;
  color: #323232;
  font-weight: 700;
}

.home-faq .content-box .desc {
  font-size: 14px;
  color: #323232CC;
}

.home-faq .faq-wrapper {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-faq .faq-wrapper .faq-item {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 10px);
  -webkit-box-shadow: 0px 0px 50px 0px #A5A5A51A;
          box-shadow: 0px 0px 50px 0px #A5A5A51A;
}

.home-faq .faq-wrapper .faq-item .faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #323232;
  font-weight: 600;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-faq .faq-wrapper .faq-item .faq-question img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.home-faq .faq-wrapper .faq-item.is-open .faq-question img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home-faq .faq-wrapper .faq-item .faq-answer {
  font-size: 14px;
  margin-top: 20px;
  text-align: justify;
}

.emergency-call {
  left: 50px;
  bottom: 20px;
  position: fixed;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  border: 5px solid #4B9289;
  background: var(--primary_color);
}

.emergency-call #open-emergency-modal {
  color: #fff;
  border: unset;
  background: unset;
}

.emergency-modal {
  inset: 0;
  display: none;
  z-index: 9999;
  position: fixed;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.emergency-modal .emergency-modal-content {
  overflow-y: auto;
  max-width: 500px;
  max-height: 720px;
  margin: 50px auto;
  background: #fff;
  border-radius: 8px;
  position: relative;
  padding: 50px 20px 20px 20px;
}

.emergency-modal .emergency-modal-content .emergency-close {
  top: 0;
  left: 20px;
  color: red;
  font-size: 36px;
  cursor: pointer;
  position: absolute;
}

.emergency-modal .emergency-modal-content form .gform_footer input {
  background-color: var(--primary_color) !important;
}

@media (max-width: 768px) {
  .home-intro {
    padding: 85px 0 40px 0;
  }
  .home-intro::after {
    content: none;
  }
  .home-intro .intro-box .intro-logo img {
    height: auto;
    max-width: 300px;
  }
  .home-intro .intro-box .intro-content .intro-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 50px;
    font-size: 28px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home-intro .intro-box .intro-content .intro-subtitle {
    font-size: 28px;
  }
  .home_video .content-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 25px;
  }
  .home_video .content-box .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home_video .content-box .btn-box .first-btn {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home_video .content-box .btn-box .second-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home_video .content-box .btn-box .first-btn, .home_video .content-box .btn-box .second-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    padding: 15px 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home_video .video-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .consultation_forms {
    background: url("../images/Background-mobile.svg") no-repeat center/cover, var(--gradient);
  }
  .consultation_forms .consultation_steps {
    width: 90%;
  }
  .consultation_forms .consultation_steps .steps-progress {
    gap: 15px;
  }
  .consultation_forms .consultation_steps .steps-progress .step-dot {
    height: 6px;
    width: 70px;
  }
  .consultation_forms .consultation_steps .form-content .form-title {
    font-size: 24px;
    margin-top: 30px;
  }
  .consultation_forms .consultation_steps #step-1 .step-row {
    gap: 12px;
    margin-top: 25px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .consultation_forms .consultation_steps #step-2 .step-row, .consultation_forms .consultation_steps #step-3 .step-row, .consultation_forms .consultation_steps #step-4 .step-row {
    display: unset;
  }
  .consultation_forms .consultation_steps #step-2 .step-row .option-item, .consultation_forms .consultation_steps #step-3 .step-row .option-item, .consultation_forms .consultation_steps #step-4 .step-row .option-item {
    width: 100%;
    margin-top: 20px;
  }
  .consultation_forms .consultation_steps #step-5 {
    margin-top: 30px;
  }
  .consultation_forms .consultation_steps #step-5 .step-row {
    display: block;
  }
  .consultation_forms .consultation_steps #step-6 .correct-wrap {
    width: 60px;
    height: 60px;
    margin: 0px auto;
  }
  .consultation_forms .consultation_steps .step .next-step {
    width: 80%;
  }
  .home-faq .home-faq .faq-item {
    width: 100%;
    margin-bottom: 0;
  }
  .emergency-call {
    left: 20px;
  }
  .emergency-modal .emergency-modal-content {
    max-width: 350px;
  }
}

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

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

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

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

@font-face {
  font-family: 'Vazirmatn';
  src: url("../../fonts/Vazirmatn-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url("../fonts/Vazirmatn-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

input,
textarea,
select {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

body {
  background-color: #fafafa !important;
  font-family: 'Vazirmatn', sans-serif !important;
}
/*# sourceMappingURL=style.css.map */