/* footer banner stars */
.footer_banner {
  width: 100%;
  height: 19.5rem;
  background-image: url(../../../images/footer_banner.webp);
  background-repeat: no-repeat;
  /*background-position: 0 -21.9375rem !important;*/
  background-position: center center;
  background-size: cover;
  background-color: #FFFFFF;
  filter: grayscale(100%);
  transition: "1s ease-in-out";
  position: relative;
  z-index: 900;
}

.footer_banner_container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.footer_banner_head {
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.32;
  text-align: center;
  color: var(--wl-white-color);
  margin-bottom: 1.5rem;
}


.footer_banner_btn {
  padding: 0.58rem 1.53rem;
  background: var(--wl-white-color);
  border: 1px solid var(--wl-white-color);
  display: flex;
  text-decoration: none;
  gap: 0.375rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.footer_banner_btn_text {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--wl-secondary-color);
  transition: 0.3s ease-in-out;
}

.footer_banner_btn:hover {
  background: var(--wl-black-color);
  gap: 0.75rem;
  transition: 0.3s ease-in-out;
}

.footer_banner_btn:hover .footer_banner_btn_text {
  color: var(--wl-white-color);
  transition: 0.3s ease-in-out;
}

.footer_banner_btn:hover .footer_banner_btn_svg path {
  fill: var(--wl-white-color);
  transition: 0.3s ease-in-out;
}

.footer_banner_btn_svg {
  width: 0.625rem;
  height: auto;
}

@media all and (max-width: 768px) {
  .footer_banner_container {
    background: none !important;
  }

  .footer_banner_head {
    font-size: 1.5rem;
  }

  .footer_banner {
    width: 100%;
    height: 25.375rem;
    background-image: url(../../../images/footer_banner-mobile.png);
  }
  .footer_banner {
	  /*background-position: 0 -21.9375rem !important;*/
	  background-position: top;
	}
}

/* footer banner ends */

/* Modal section starts */

.modal-open {
  overflow: hidden;
}

.modal_section #modal_container .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999999;
  overflow-y: auto;
  opacity: 0;
  border: 0;
  outline: none;
  transition: all 0.5s ease;
}

.modal_section #modal_container .modal.open {
  opacity: 1;
  transition: all 0.5s ease;
}

.modal_section #modal_container .modal .modal_area {
  height: 100%;
  transform: translateY(0%);
  transition: all 0.5s ease;
  position: relative;
}

.modal_section #modal_container .modal.hidden .modal_area {
  transform: translateY(100%);
  transition: all 0.5s ease;
}

#modal_container .modal_content {
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}

#modal_container .modal_content .modal_block {
  border-radius: 0.5rem;
  width: 60%;
  height: 100vh;
  margin: 2rem auto;
  position: relative;
}

.modal_section .modal .modal-close {
  border: 0;
  min-width: 1rem;
  min-height: 1rem;
  color: var(--wl-white-color);
  cursor: pointer;
  border-radius: 50%;
  font-weight: 700;
  z-index: 9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  padding-bottom: 2px;
  line-height: 1.5;
  margin-right: 2rem;
}

.modal_section .modal .modal-close svg {
  width: 2rem;
  height: 2rem;
}

.modal_section .modal_body {
  background-color: var(--wl-white-color);
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 4rem;
}

.modal_section .modal_body .form_container {
  width: 100%;
  height: auto;
}

.closing .close_button {
  position: absolute;
  right: 0;
  top: 2.5rem;
}

.modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.modalHeading {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.email_section {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.email_section .int_head {
  margin-bottom: 0.375rem;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.4;
}

.email_section input {
  border: 1px solid #8b8b8b80;
  padding: 0.625rem 0.875rem;
  outline: none;
  font-weight: 300;
  line-height: 1.4;
  font-size: 1.125rem;
  margin-top: 0.2rem;
  width: 100%;
}

.email_section input::placeholder {
  color: #8b8b8b80;
}

.modal_para {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.32;
  margin-bottom: 2rem;
}

.modal_para a {
  color: var(--wl-secondary-color);
}

.modal_checkBox_contain label {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.32;
}

.modal_checkBox {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.checkbox_div {
  position: relative;
}


.modal_checkBox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.2rem;
  border: 1px solid var(--wl-secondary-color);
  cursor: pointer;
  background: var(--wl-white-color);
  z-index: 1;
  transition: all 0.5s ease;
  position: relative;
  align-items: center;
  text-align: center;
  margin-right: 0.9375rem;
}

.wpcf7 form .wpcf7-response-output {
  color: #dc3232;
}

.modal_checkBox .wpcf7-list-item {
    margin: 0;
}

.modal_checkBox input:after {
  content: "\2713";
  color: var(--wl-white-color);
  opacity: 0;
}

.modal_checkBox input:checked {
  transition: all 0.5s ease;
  border: 1px solid #e1eff2;
  background: var(--wl-secondary-color);
}

.modal_checkBox input:checked:after {
  opacity: 1;
}

.modal_capcha {
  margin-bottom: 2rem;
}

.modal_capcha img {
  width: 18rem;
}

.modal_btn_section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.modal_btn {
  background: var(--wl-secondary-color);
  cursor: pointer;
  border: 0.063rem solid var(--wl-secondary-color);
}

.modal_btn:hover {
  background: var(--wl-white-color);
  border: 0.063rem solid var(--wl-secondary-color);
}

.footer_banner_btn:hover .footer_banner_btn_text {
  color: var(--wl-secondary-color);
}

.footer_banner_btn:hover .footer_banner_btn_svg path {
  fill: var(--wl-secondary-color);
}

.modal_btn .footer_banner_btn_text {
  color: var(--wl-white-color);
}

.error_span {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
  color: #ba1a1a;
  margin-top: 0.5rem;
  display: none;
}

.modal_checkBox_contain {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.thank_card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 2.75rem);
}

.thank_card img {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 2.5rem;
}

.thank_heading {
  font-weight: 500;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.thankText {
  font-weight: 300;
  font-size: 1.125rem;
  text-align: center;
}

@media screen and (max-width: 1032px) {
  #modal_container .modal_content .modal_block {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .modal_section .modal_body {
    flex-direction: column;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    padding: 1rem 1rem 2.75rem;
    height: calc(100% - 2rem);
  }

  .modalHeading {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .email_section {
    margin-bottom: 1.5rem;
  }

  .modal_para {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .second_para {
    margin-bottom: 1rem;
  }

  .modal_checkBox {
    margin-bottom: 1rem;
  }

  .modal_capcha {
    margin-bottom: 1rem;
  }

  .modal_checkBox_contain label {
    font-size: 1rem;
  }

  .email_section .int_head {
    font-size: 1rem;
  }

  .modal_section .modal .modal-close {
    margin-right: 1rem;
    min-width: 0.625rem;
    min-height: 0.625rem;
    top: 4rem;
  }

  .modal_btn {
    display: block;
    width: 100%;
  }

  .mob_handler {
    width: 4rem;
    height: 3px;
    background-color: #B3B3B3;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }

  .modal_section .modal .modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media(min-width:1025px) {
	.footer_banner {
	   background-position: top;
	}
}

/* Modal Section Ends */