@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
}
.contact-container{
  display: flex;
  width: 100%;
  height: min(500px,90%);
  padding: 40px;
  flex-direction: row;
  align-items: center;
  /* background-color:#f1f1f1; */
  justify-content: center;
  gap: 20px;
}

.info{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 500px;
  padding: 40px;
  background-color: #f1f1f1;
  gap: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
h4{
  color: #004a3d;
}

.info p{
  font-size: 18px;
}

.info-text i{

}
.info-text a{
  text-decoration: none;
  color: black;
}
.info-text a:hover {
  color:#ffc000 ;
}


.map{
  height:500px;
  width: min(800px,100%);
}

.map iframe{
  height: 100%;
  background-color: #f1f1f1;
  width: 100%;
}


@media(max-width: 555px){
  .contact-container{
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    gap: 10px;
    padding: 10px!important;
    
  }
  .info{
    /* padding: 10px; */
    text-align: center;
  }
  h4{
    font-size: 20px;
  }
  .info-text p{
    font-size: 16px;
    
  }
  .map-container{
    height: auto;
  }
}