@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
body .contact-content {
  display: flex;
  width: 100%;
}
body .contact-content .left-panel {
  display: flex;
  flex-direction: column;
}
body .contact-content .left-panel .location-map {
  width: 100%;
}
body .contact-content .left-panel .location-map .g-map-loc {
  width: 100%;
  border-radius: 10px;
}
body .contact-content .left-panel .contact-details .contact-details-group {
  display: flex;
  flex-direction: column;
}
body .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
  display: flex;
}
body .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
  aspect-ratio: 1/1;
}
body .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
  font-family: "DM Sans", sans-serif;
  color: rgba(37, 37, 37, 0.8);
}
body .contact-content .left-panel .contact-details .follow-link {
  display: flex;
  flex-direction: column;
}
body .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
  color: #004b93;
  font-family: "Sunflower";
  font-weight: 500;
}
body .contact-content .left-panel .contact-details .follow-link .soc-med-container {
  display: flex;
}
body .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #004b93;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: white;
  border: 0;
  transition: 0.2s;
  width: fit-content;
  text-decoration: none;
}
body .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn .contact-link-icon {
  aspect-ratio: 1/1;
}
body .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn:hover {
  transform: scale(1.05);
  background-color: #00396e;
}
body .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn:active {
  transform: scale(0.95);
  background-color: #00396e;
}
body .contact-content .contact-form {
  display: flex;
  flex-direction: column;
}
body .contact-content .contact-form .form {
  display: flex;
  flex-direction: column;
  align-items: end;
  height: 100%;
}
body .contact-content .contact-form .form .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
body .contact-content .contact-form .form .form-group .form-label {
  color: #004b93;
  font-family: "Sunflower";
  font-weight: 500;
}
body .contact-content .contact-form .form .form-group .input-field {
  width: 100%;
  transition: 0.3s;
  border-radius: 8px;
}
body .contact-content .contact-form .form .form-group .input-field.error {
  border: 2px solid rgba(254, 0, 0, 0.8);
}
body .contact-content .contact-form .form .form-group .error-message {
  color: rgba(254, 0, 0, 0.8);
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-family: "DM Sans", sans-serif;
}
body .contact-content .contact-form .form .form-group #trigger-submit {
  height: 100%;
}
body .contact-content .contact-form .form #text-area-group {
  height: 100%;
}
body .contact-content .contact-form .form #text-area-group #text-area {
  height: 100%;
}
body .contact-content .contact-form .form .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #004b93;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: white;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
body .contact-content .contact-form .form .submit-btn:hover {
  transform: scale(1.05);
  background-color: #00396e;
}
body .contact-content .contact-form .form .submit-btn:active {
  transform: scale(0.95);
  background-color: #00396e;
}

#success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#success-modal .modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

#success-modal .modal-content.modal-appear {
  transform: scale(1);
  opacity: 1;
}

#success-modal .modal-content.modal-disappear {
  transform: scale(0.9);
  opacity: 0;
}

#success-modal .modal-title-container {
  width: 100%;
}
#success-modal .modal-title-container .modal-title {
  margin: 0px 0px 0px 0px;
  width: fit-content;
}
#success-modal .modal-title-container .modal-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  user-select: none;
}
#success-modal .modal-title-container .modal-title .title-underline-container {
  box-sizing: border-box;
}
#success-modal .modal-title-container .modal-title .title-underline-container .title-underline {
  background-color: #fe0000;
  border-radius: 2px;
  width: 0;
  height: 3px;
  transition: width 1s ease-out;
}
#success-modal .modal-title-container .modal-title .title-underline-container .title-underline.underline-grow {
  width: 100%;
}

#success-modal p {
  font-family: "DM Sans", sans-serif;
  color: rgba(37, 37, 37, 0.8);
  margin: 10px 0;
  text-align: left;
}

#success-modal .modal-content p:first-child {
  font-family: "Sunflower";
  font-size: 20px;
  font-weight: 500;
  color: #004b93;
}

#success-modal button {
  margin-top: 15px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background-color: #004b93;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

#success-modal button:hover {
  background-color: #00396e;
  transform: scale(1.05);
}

#success-modal button:active {
  transform: scale(0.95);
}

@media only screen and (min-width: 1440px) {
  .contact-content {
    padding: 150px 170px 60px 170px;
    gap: 140px;
  }
  .contact-content .left-panel {
    width: 60%;
    gap: 30px;
  }
  .contact-content .left-panel .location-map .g-map-loc {
    height: 250px;
  }
  .contact-content .left-panel .contact-details .contact-details-group {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
    height: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
    font-size: 16px;
  }
  .contact-content .left-panel .contact-details .follow-link {
    margin: 20px 0 0 0;
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
    font-size: 24px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .contact-content .contact-form {
    width: 40%;
    border-radius: 20px;
  }
  .contact-content .contact-form .form {
    gap: 10px;
    margin: 20px 0 0 0;
  }
  .contact-content .contact-form .form .form-group .form-label {
    font-size: 16px;
  }
  .contact-content .contact-form .form .form-group .input-field {
    height: 36px;
  }
  .contact-content .contact-form .form .submit-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .contact-content {
    padding: 180px 120px 60px 120px;
    gap: 60px;
  }
  .contact-content .left-panel {
    width: 60%;
    gap: 30px;
  }
  .contact-content .left-panel .location-map .g-map-loc {
    height: 250px;
  }
  .contact-content .left-panel .contact-details .contact-details-group {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
    height: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
    font-size: 14px;
  }
  .contact-content .left-panel .contact-details .follow-link {
    margin: 20px 0 0 0;
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
    font-size: 24px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .contact-content .contact-form {
    width: 40%;
    border-radius: 20px;
  }
  .contact-content .contact-form .form {
    gap: 10px;
    margin: 20px 0 0 0;
  }
  .contact-content .contact-form .form .form-group .form-label {
    font-size: 16px;
  }
  .contact-content .contact-form .form .form-group .input-field {
    height: 36px;
  }
  .contact-content .contact-form .form .submit-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-content {
    padding: 110px 80px 40px 80px;
    gap: 20px;
  }
  .contact-content .left-panel {
    width: 100%;
    gap: 30px;
  }
  .contact-content .left-panel .location-map .g-map-loc {
    height: 250px;
  }
  .contact-content .left-panel .contact-details .contact-details-group {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
    height: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
    font-size: 12px;
  }
  .contact-content .left-panel .contact-details .follow-link {
    margin: 20px 0 0 0;
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
    font-size: 14px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .contact-content .contact-form {
    width: 100%;
    border-radius: 20px;
  }
  .contact-content .contact-form .form {
    gap: 10px;
    margin: 20px 0 0 0;
  }
  .contact-content .contact-form .form .form-group .form-label {
    font-size: 16px;
  }
  .contact-content .contact-form .form .form-group .input-field {
    height: 36px;
  }
  .contact-content .contact-form .form .submit-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .contact-content {
    padding: 110px 80px 40px 80px;
    gap: 60px;
    flex-direction: column;
  }
  .contact-content .left-panel {
    width: 100%;
    gap: 30px;
  }
  .contact-content .left-panel .location-map .g-map-loc {
    height: 250px;
  }
  .contact-content .left-panel .contact-details .contact-details-group {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
    height: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
    font-size: 12px;
  }
  .contact-content .left-panel .contact-details .follow-link {
    margin: 20px 0 0 0;
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
    font-size: 14px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container {
    gap: 10px;
    flex-direction: column;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 6px;
  }
  .contact-content .contact-form {
    width: 100%;
    border-radius: 20px;
  }
  .contact-content .contact-form .form {
    gap: 10px;
    margin: 20px 0 0 0;
  }
  .contact-content .contact-form .form .form-group .form-label {
    font-size: 16px;
  }
  .contact-content .contact-form .form .form-group .input-field {
    height: 36px;
  }
  .contact-content .contact-form .form .submit-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-content {
    padding: 70px 40px 40px 40px;
    flex-direction: column;
    gap: 60px;
  }
  .contact-content .left-panel {
    width: 100%;
    gap: 30px;
  }
  .contact-content .left-panel .location-map .g-map-loc {
    height: 250px;
  }
  .contact-content .left-panel .contact-details .contact-details-group {
    gap: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail {
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-icon {
    height: 20px;
  }
  .contact-content .left-panel .contact-details .contact-details-group .contact-detail .contact-detail-text {
    font-size: 12px;
  }
  .contact-content .left-panel .contact-details .follow-link {
    margin: 20px 0 0 0;
    gap: 10px;
  }
  .contact-content .left-panel .contact-details .follow-link .panel-subtitle {
    font-size: 12px;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container {
    gap: 10px;
    flex-direction: column;
  }
  .contact-content .left-panel .contact-details .follow-link .soc-med-container .soc-med-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 6px;
  }
  .contact-content .contact-form {
    width: 100%;
    border-radius: 20px;
  }
  .contact-content .contact-form .form {
    gap: 10px;
    margin: 20px 0 0 0;
  }
  .contact-content .contact-form .form .form-group .form-label {
    font-size: 16px;
  }
  .contact-content .contact-form .form .form-group .input-field {
    height: 36px;
  }
  .contact-content .contact-form .form .submit-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
  }
}/*# sourceMappingURL=contact-us.css.map */