
.contact-wrapper {
  background: var(--color-white);
  border-radius: 10px;
  border-right: 5px solid var(--theme-color);
  box-shadow: var(--box-shadow);
}

.contact-img img{
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.contact-form{
  padding: 25px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 35px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background: #fff;
  /* box-shadow: var(--box-shadow); */
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  /* transition: var(--transition); */
  transition: all .5s ease-in-out;
}

.contact-info::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -5px;
  background: #459492;
  border-radius: 10px;
  height: 20px;
  z-index: -1;
}

.contact-info-icon{
  font-size: 35px;
  color: #fff;
  width: 146px;
  height: 70px;
  line-height: 70px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  background: #459492;
}

.contact-info-icon::before{
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: -12px;
  bottom: -12px;
  border: 3px solid #459492;
  border-radius: 50px;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color:  var(--color-dark);
}

.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}

.contact-area.py-120 {
    padding: 54px 0px;
}
button.theme-btn {
    font-size: 14px;
    color: #fff;
    padding: 14px 20px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #459492;
    /* box-shadow: var(--box-shadow); */
    z-index: 1;
}
label.labs {
    font-size: 20px;
    margin-bottom: 11px;
    color: #459492;
    margin-left: 9px;
}
