.banner_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner_section .banner_slide {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.banner_section .banner_slide::after {
  position: absolute;
  content: "";
  background-color: #00000082;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner_section .banner_slide .banner_content {
  color: #fff;
  width: 100%;
  /* margin: 100px 0 0 100px; */
  position: relative;
  z-index: 5;
}

.banner_section .banner_slide .banner_content .slide_title {
  font-size: 40px;
  font-weight: 800;
  font-family: Calibri;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.banner_section .banner_slide .banner_content .title_span {
  color: #f16625;
}

.banner_section .banner_slide .banner_content .slide_city {
  font-size: 50px;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.banner_section .banner_slide .banner_content .slide_desc {
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.45px;
}

.banner_section .banner_slide .banner_content .desc_span {
  color: #f16625;
}

.banner_section .banner_slide .banner_content .bottom_text {
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  font-family: Roboto;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.banner_section .banner_form_holder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 80px;
  /* left: 0; */
  z-index: 2;
}

.banner_section .banner_form_holder .banner_form {
  width: 420px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  transition: 0.3s ease;
}

.banner_section .banner_form_holder .banner_form .form_title {
  font-size: 26px;
  font-weight: 600;
  color: #153b89;
  margin-bottom: 25px;
  text-align: center;
}

.banner_section .banner_form_holder .banner_form .react_select .react-select__control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}

.banner_section .banner_form_holder .banner_form .react-tel-input .form-control {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: unset;
  padding-left: 50px;
}

/* INPUT FIELDS */
.banner_section .banner_form_holder .banner_form input,
.banner_section .banner_form_holder .banner_form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background: #fafafa !important;
  font-size: 14px;
  transition: all 0.25s ease;
}

.banner_section .banner_form_holder .banner_form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background: #fafafa !important;
  font-size: 14px;
  transition: all 0.25s ease;
  height: 60px;
}

.banner_section .banner_form_holder .banner_form .form-control:focus {
  box-shadow: none !important;
  /* border-bottom: 1px solid #ccc; */
}


/* FOCUS EFFECT */
.banner_section .banner_form_holder .banner_form input:focus,
.banner_section .banner_form_holder .banner_form select:focus,
.banner_section .banner_form_holder .banner_form textarea:focus {
  border-color: #153b89;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(21, 59, 137, 0.1);
}

/* REACT SELECT */
.react_select__control {
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  background: #fafafa !important;
  box-shadow: none !important;
  min-height: 44px !important;
  transition: all 0.25s ease;
}

.react_select__control--is-focused {
  border-color: #153b89 !important;
  box-shadow: 0 0 0 2px rgba(21, 59, 137, 0.1) !important;
  background: #fff !important;
}

/* VALUE */
.react_select__single-value {
  color: #000 !important;
  font-size: 14px !important;
}

/* PLACEHOLDER */
.react_select__placeholder {
  color: #999 !important;
}

/* DROPDOWN */
.react_select__menu {
  border-radius: 8px !important;
  overflow: hidden;
  font-size: 14px;
}

/* OPTION */
.react_select__option--is-focused {
  background: #f0f4ff !important;
}

/* PHONE INPUT */
.banner_section .banner_form_holder .banner_form .react-tel-input .form-control {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding-left: 50px;
  height: 44px;
  background: #fafafa;
}

/* BUTTON */
.banner_section .banner_form .submit_btn {
  border: none;
  background: linear-gradient(135deg, #153b89, #1f5bd8);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 10px 20px;
  display: block;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* BUTTON HOVER */
.banner_section .banner_form .submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(21, 59, 137, 0.3);
}

.banner_section .swiper-pagination {
  position: unset;
}

.banner_section .swiper-pagination-bullet-active {
  background: #f16625 !important;
  width: 30px !important;
  height: 4px !important;
  border-radius: 5px !important;
  opacity: 1 !important;
}

.banner_section .swiper-pagination-bullet {
  background: #f16625;
  width: 15px;
  height: 3px !important;
  border-radius: 5px !important;
}


/* Owl Dots Container */
.banner_section .owl-dots {
  margin-top: 20px;
  text-align: center;
}

/* Each Dot */
.banner_section .owl-dot span {
  width: 10px;
  height: 2px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s;
}

/* Active Dot */
.banner_section .owl-dot.active span {
  background: #F16625;
  width: 28px;
  height: 3px;
  border-radius: 10px;
}



/* ===================== Media Queries ===================== */

@media (min-width: 0px) and (max-width: 574px) {
  .banner_section .banner_slide {
    width: 100%;
    height: 265px;
  }

  .banner_section .banner_slide .banner_content .slide_title {
    font-size: 25px;
  }

  .banner_section .banner_slide .banner_content .slide_city {
    font-size: 28px;
  }

  .banner_section .banner_slide .banner_content .bottom_text {
    font-size: 18px;
  }

  .banner_section .banner_slide .banner_content .slide_desc {
    font-size: 14px;
  }

  .banner_section .banner_form_holder {
    position: unset;
  }

  .banner_section .banner_form_holder .banner_form {
    margin: 20px auto;
    width: 100%;
  }

  .banner_section .banner_slide .banner_content {
    /* margin: 35px 15px; */
    width: 100%;
  }

  .banner_section .banner_form .form_title {
    font-size: 25px;
    margin-bottom: 45px;
  }

  .banner_section .swiper-pagination {
    position: absolute;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .banner_section .banner_slide {
    width: 100%;
    height: 265px;
  }

  .banner_section .banner_slide .banner_content .slide_title {
    font-size: 32px;
  }

  .banner_section .banner_slide .banner_content .slide_city {
    font-size: 35px;
  }

  .banner_section .banner_slide .banner_content .bottom_text {
    font-size: 22px;
  }

  .banner_section .banner_form_holder {
    position: unset;
  }

  .banner_section .banner_form_holder .banner_form {
    margin: 20px auto;
    width: 100%;
  }

  /* .banner_section .banner_slide .banner_content {
    margin: 90px 30px;
  } */

  .banner_section .swiper-pagination {
    position: absolute;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner_section .banner_slide {
    width: 100%;
    height: 100%;
  }

  .banner_section .banner_slide .banner_content .slide_title {
    font-size: 32px;
  }

  .banner_section .banner_slide .banner_content .slide_city {
    font-size: 36px;
  }

  .banner_section .banner_slide .banner_content .bottom_text {
    font-size: 22px;
  }

  .banner_section .banner_form_holder {
    position: unset;
  }

  .banner_section .banner_form_holder .banner_form {
    margin: 20px auto;
    width: 100%;
  }

  /* .banner_section .banner_slide .banner_content {
    margin: 90px 30px;
  } */

  .banner_section .swiper-pagination {
    position: absolute;
  }

  .banner_section .banner_slide {
    height: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .banner_section .banner_slide {
    height: 500px;
  }

  .banner_section .banner_slide .banner_content .slide_title {
    font-size: 38px;
  }

  .banner_section .banner_slide .banner_content .slide_city {
    font-size: 45px;
  }

  .banner_section .banner_slide .banner_content .bottom_text {
    font-size: 25px;
  }

  .banner_section .banner_form_holder {
    right: 20px;
  }

  /* .banner_section .banner_slide .banner_content {
    margin: 90px 30px;
  } */
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .banner_section .banner_slide .banner_content .slide_title {
    font-size: 38px;
  }

  .banner_section .banner_slide .banner_content .bottom_text {
    font-size: 25px;
  }
}