h1 {
  font-size: 3rem;
  font-weight: bold;
}

.required {
  color: red;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  margin-top: 0;
}

.iti__selected-flag {
  padding: 0 10px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.form-control {
  border-radius: 25px;
  border: 2px solid #1f4d49;
}

.contact-info {
  max-width: 500px;
}

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 28px;
  margin-right: 20px;
  flex-shrink: 0;
  color: #fff;
}

.info-text {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.info-text a {
  color: #fff;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}

#contact-us {
  margin-top: 50px;
  margin-bottom: 50px;
}

#contact-us-form {
  padding-left: 80px;
  padding-right: 80px;
}

#Background-column {
  height: 100%;
  width: 40%;
  background-color: #c2e0de;
  border-bottom-left-radius: 25px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

#Background-column :nth-child(1) {
  display: flex;
  gap: 5px;
}

#Background-column :nth-child(1) img {
  width: 100%;
  max-width: 35px;
  height: auto;
}

#green-col {
  height: 80%;
  width: 100%;
  background-color: #6e6e6e;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  position: relative;
  z-index: 1;
}



/*CSS for Mobile*/

@media only screen and (max-width: 600px) {
  
 #contact-us-form {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  #contact-us {
    padding-left: 10px;
    padding-right: 10px;
  }

  #green-col {
    height: 90%;
  }

   #Background-column {
    width: 60%;        /* increase width */
    height: 105%;      /* full height */
  }


}