

#contact-form-container {
    width: 100%;
    padding: 100px 60px 40px 60px !important;
    height: auto;
    background-color: #004f99;
    padding: 20px;
    box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease-out;
}



.location-section{
    background-color:#f2f4f6;

}
.location-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-radius: 8px;
}
.location-item{
  flex: 1 1 calc(33.333% - 20px);
  display:flex;
  gap:25px;
  align-items:center;

  box-sizing: border-box;

}
.location-name{
  font-size: 16px;
}
.icon-blue{
  color:#004f99;
}
.error-message{
    color:#000 !important;
}
 @media (max-width: 425px){
 .location-item{
      flex: 1 1 calc(50% - 20px);
 }
 }