.fixedContentOverlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0,0,0,0.8);
}

.closeButton {
  background: none;
  cursor: pointer;
  border: none;
}

.eqFormHead {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.closeButton i {
  font-size: 20px;
}

.enquiryFormSection {
  background-color: white;
  position: fixed;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 40px;
  z-index: 5000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.enquiryFormSection::before {
    content: "";
    position: absolute;
    height: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #002766, #0066ff, #00ccff, #002766);
    background-size: 400% 400%;
    z-index: 200;
    animation: gradient-border 3s infinite linear;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.enquiryFormSection.show-border::before {
    opacity: 1;
}



@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.enquiryFormSection .imageSection {
  background-color: red;
  height: 100%;
  display: none;
}

.contactDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.contactDiv button:hover {
  opacity: 85%;
  cursor: pointer;
}

.contactDiv i {
  font-size: 14px;
  color: #172A46;
}

.contactDiv a {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  color: #172A46;
  font-family: mm;
  background: none;
  border: none;
  text-align: left;
}

.contactDiv a.phone {
  border-right: 2px solid #172A46;
  padding: 20px 20px 20px 0;
}

.contactDiv a.email {
  padding: 20px 0 20px 20px;
}



.enquiryForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 400px;
}

.enquiryForm .formRow {
  display: flex;
  gap: 10px;
  width: 100%;
}

.enquiryForm p {
  font-family: mm;
  margin-bottom: -10px;
  font-size: 13px;
}

.enquiryForm input {
  font-size: 14px;
  padding: 12px 20px 12px 20px;
  font-family: mm;
  background: none;
  border: 2px solid #0b0034;
  width: 100%;
  outline: none;
}

.enquiryForm .formRow input {
  width: 100%;
}


.enquiryForm .heading {
  font-size: 30px;
  font-family: mm;
  font-weight: normal;
}

.sxMessage {
  font-family: mm;
  font-weight: normal;
  font-size: 14px;
}



.iti {
    font-family: "Arial", sans-serif !important;
    font-size: 16px !important;
}


.iti__country-list {
    font-family: "Arial", sans-serif !important;
    font-size: 14px !important;
}


.iti__selected-flag {
    font-family: "Arial", sans-serif !important;
    font-size: 16px !important;
}

.iti input {
    font-family: "Arial", sans-serif !important;
    font-size: 16px !important;
}


.iti__country-list .iti__search-input {
    font-family: "Arial", sans-serif !important;
    font-size: 14px !important;
}



@media (max-width: 992px) {

}

@media (max-width: 786px) {
  .enquiryForm {
    width: 300px;
  }

  .contactDiv {
    flex-direction: column;
  }

  .contactDiv a {
    font-size: 16px;
  }

  .contactDiv a.phone {
    border: none;
    border-bottom: 2px solid #172A46;
    padding: 20px 0 20px 0;
  }

  .contactDiv a.email {
    padding: 20px 0 20px 0;
  }

}

@media (max-width: 576px) {
  .enquiryForm .heading{
    font-size: 20px;
  }
  .closeButton i {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .enquiryForm {
    width: 250px;
  }

}
