.contactSec {
  padding: 90px 0 125px;
}
.contactSec h1 {
  font-size: 35px;
  line-height: 150%;
  font-weight: 400;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.leftCol {
  width: 100%;
  max-width: 743px;
}
.rightCol {
  width: 366px;
}
.contactSec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 15px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #6b6e98;
}
.textWrapper {
  width: 100%;
  margin: 10px 0px 25px;
}
.formWrapper{
  max-width: 630px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.formWrapper .inputGroup:nth-child(1), .formWrapper .inputGroup:nth-child(2) {
  width: 298px;
  display: inline-block;
}
.formWrapper .inputGroup:nth-child(1){
  margin-right: 30px;
}
.inputGroup {
  width: 100%;
  margin: 0px 0px 15px;
}

.inputGroup label {
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0e145f;
  margin-bottom: 5px;
  display: block;
}
.inputGroup label span {
  color: #cb0233;
}
.inputGroup input,
.inputGroup textarea {
  width: 100%;
  padding: 10px 12px;
  background: #f0faf9;
  border: 1px solid #f9d9cf;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: left;
}
.inputGroup textarea{
  height: 115px;
}
.inputGroup input:hover,
.inputGroup textarea:hover{
  border-color: #52bab0
}
.inputGroup input:focus,
.inputGroup textarea:focus{
  border-color: #52bab0
}
.inputGroup input::placeholder,
.inputGroup textarea::placeholder {
  color: #acaecc;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.contact-btn {
  max-width: max-content;
  width: 100%;
  margin-top: 20px;
  display: block;
  padding: 13px 51px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.3px;
  text-align: center;
  background: #52bab0;
  color: white;
  border-radius: 100px;
  border-bottom: 5px solid #45a49b;
  box-shadow: 0px 6px 7.3px 2px #52bab040;
  position: relative;
  transition: all 0.5s ease;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.contact-btn:hover {
  box-shadow: 0px 3px 4px 1px #52bab040;
  transform: translateY(3px);
}
.error {
  color: red;
  font-size: 13px;
}
.form-control.error-border{
  border-color: red;
}
#success_msg {
  max-width: 630px;
  width: 100%;
  font-size: 14px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  margin-bottom: 25px;
  padding: 10px 15px;
  border-radius: 8px;
}
.textWrapper ul {
    list-style: none;
    margin: 5px 0 35px;
}
.textWrapper ul li{
   margin-bottom: 17px;
}
.textWrapper ul li span{
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #6B6E98;
  margin-left: 10px;
  display: inline-block;
}
.textWrapper ul li img {
    
    margin-bottom: -3px;
}
@media (max-width: 767px){
  .contactSec {
    padding: 95px 0 50px;
}
  .rightCol{
    display: none;
  }
  .contactSec h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .contactSec p {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 575px){
  .formWrapper .inputGroup:nth-child(1), .formWrapper .inputGroup:nth-child(2){
    width: 100%;
    display: block;
  }
  .formWrapper .inputGroup:nth-child(1) {
    margin-right: 0px;
  }
  .textWrapper {
    width: 100%;
    margin: 10px 0px 15px;
  }
  .contact-btn{
    margin: 35px auto 0;
  }
  .textWrapper ul li span {
      max-width: 300px;
      width: 100%;
  }
  .textWrapper ul li:first-child img{
     margin-bottom: 15px;
  }
}
