.contact-location-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.contact-location-container .contact-location {
  height: 68px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact-location-container .contact-location .contact-location-icon {
  height: 68px;
  width: 68px;
  background-color: #f7f7fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-location-container .contact-location .contact-location-mobile {
  height: 48px;
}

.contact-location-container .contact-location .contact-location-mobile p {
  margin: 0;
  color: #7d7d7d;
  font: 400 16px/135.2% Inter-Regular;
}
.contact-location-container .contact-location .contact-location-mobile h4 {
  margin: 0;
  color: #37393f;
  font: 600 18px/100% Inter-SemiBold;
}

.location-font {
  font: 400 18px/100% Inter-Regular !important;
}

.contact-form-section {
  margin-bottom: 50px;
  /* background-color: #f7f7fb; */
}
.contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 0;
}
.contact-form p {
  margin: 0;
  color: #5d5fef;
  font: 600 16px/20px Inter-SemiBold;
}
.contact-form h4 {
  margin: 0;
  color: #08110c;
  font: 700 32px/50px Inter-Bold;
}

.contact-form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.contact-form-wrapper input {
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  height: 50px;
  border-radius: 4px;
  outline: none;
  padding: 10px 20px;
  color: #000000;
  font: 400 16px/18px Inter-Regular;
}
.contact-form-wrapper input::placeholder,
textarea::placeholder {
  color: #303a42;
  font: 400 16px/18px Inter-Regular;
}

/* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 10%), 0 3px 6px 0 rgba(0, 0, 0, 5%); */

.contact-form-wrapper textarea {
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  height: 85px;
  border-radius: 4px;
  outline: none;
  padding: 10px 20px;
  color: #000000;
  font: 400 16px/18px Inter-Regular;
}
.contact-form-wrapper button {
  background: linear-gradient(135deg, #ffa229 0%, #a06519 100%);
  border: none;
  height: 54px;
  border-radius: 4px;
  outline: none;
  padding: 10px 20px;
  color: #ffffff;
  font: 600 18px/100% Inter-SemiBold;
  margin-top: 20px;
}

.contact-form-wrapper .contact-form-select {
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  outline: none;
  padding: 0px 20px;
  color: #303a42;
  font: 400 16px/18px Inter-Regular;
  background-image: url('../images/contact_dropdown_icon.svg');
  background-size: unset;
}
.form-select:focus{
    box-shadow: none;
}


.contact-form-select option {
  padding-bottom: 10px !important; /* Set your desired margin-bottom value */
}

.contact-map{
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 200px;
  padding-right: 100px;
}
.contact-map iframe{
  width: 100%;
  height: 562px;
  z-index: 11;

}



/* extra css  */
.posRelative{
  position: relative;
  
}
.backGrayBefore::before{
  position: absolute;
  right: 0;
  background-color: #f7f7fb;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -9;
}
.backblue::after{
  position: absolute;
  right: 0;
  background-color: #5d5fef;
  content: '';
  width: 30%;
  height: 100%;
  top: 0;
  z-index: -9;
}

.contact-error p {
  color: #f00 !important;
  padding-right: 20px;
}

#contact-map{
  max-width: 750px;
  width: 100%;
  min-height: 600px;
}


@media (max-width: 1230px){
  .contact-map{
    padding-left: 150px;
  }
}
@media (max-width: 975px){
  .contact-map{
    padding-left: 50px;
  }
}
@media (max-width: 767px){
  .contact-map{
    padding: 0;
  }

  .backblue::after{
    background-color: #f7f7fb;
  }
}
@media (max-width: 462px){
  .contact-map iframe{
    height: 500px;
  }
}
@media (max-width: 372px){
  .contact-map iframe{
    height: 300px;
  }
}






