.contact-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.contact-section .row {
  row-gap: 24px;
}
@media (max-width: 767px) {
  .contact-section .row {
    row-gap: 20px;
  }
}
.contact-section .form-container {
  background: transparent;
  position: relative;
  z-index: 2;
}
.contact-section .form-container .contact-form {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .contact-section .form-container .contact-form {
    margin-top: 30px;
  }
}
.contact-section .form-container .form-area {
  padding: 0;
}
.contact-section .form-container .form-area .title {
  font-family: "second";
  color: var(--main-light);
}
@media (max-width: 576px) {
  .contact-section .form-container .form-area input {
    height: 35px;
  }
}
.contact-section .contact-boxes {
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .contact-section .contact-boxes {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-boxes {
    margin-top: 40px;
  }
}
.contact-section .contact-boxes .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--white-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 42px 80px;
  border-radius: 20px;
  gap: 60px;
}
@media (max-width: 1199px) {
  .contact-section .contact-boxes .wrap {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  .contact-section .contact-boxes .wrap {
    padding: 30px 20px;
  }
}
@media (max-width: 991px) {
  .contact-section .contact-boxes .wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.contact-section .contact-boxes .wrap .box {
  width: 100%;
  max-width: calc(33.3333333333% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
@media (max-width: 991px) {
  .contact-section .contact-boxes .wrap .box {
    max-width: 100%;
    justify-content: left;
  }
}
.contact-section .contact-boxes .wrap .box a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact-section .contact-boxes .wrap .box:not(:last-child):before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 1px;
  height: 55px;
  background: var(--gray-200);
  translate: 0 -50%;
}
@media (max-width: 991px) {
  .contact-section .contact-boxes .wrap .box:not(:last-child):before {
    display: none;
  }
}
.contact-section .contact-boxes .wrap .box .icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-light);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 23px;
}
@media (max-width: 576px) {
  .contact-section .contact-boxes .wrap .box .icon-box {
    width: 40px;
    height: 40px;
  }
  .contact-section .contact-boxes .wrap .box .icon-box i {
    font-size: 16px;
  }
}
.contact-section .contact-boxes .wrap .box .left {
  width: 100%;
  max-width: calc(100% - 65px);
}
.contact-section .contact-boxes .wrap .box .left h4 {
  font-size: 14px;
  font-family: "main-sb";
  line-height: 25px;
  color: var(--gray-700);
}
.contact-section .contact-boxes .wrap .box .left a,
.contact-section .contact-boxes .wrap .box .left p {
  font-family: "main-b";
  font-size: 14px;
  line-height: 24px;
  color: var(--dark-200);
}
.contact-section .contact-boxes .wrap .box .left a:hover {
  color: var(--main-light);
}
