@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.contact-info-section {
  padding: 80px 0;
}
.contact-info-section .col-lg-7 {
  position: relative;
}
.contact-info-section .col-lg-7::before {
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  background: #0f8cbf;
  position: absolute;
  right: -50px;
}
@media screen and (max-width: 768px) {
  .contact-info-section .col-lg-7::before {
    display: none;
  }
}
.contact-info-section .contact-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.contact-info-section .contact-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0e5c99;
  display: none;
}
.contact-info-section .contact-content .lead {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contact-info-section .contact-content .lead {
    margin-top: 0px;
  }
}
.contact-info-section .info-card {
  background: #c3f5fe;
  padding: 10px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #0f8cbf;
  border-top: 4px solid #0f8cbf;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-section .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-info-section .info-card:hover .icon-box {
  background: #0e5c99;
  color: #fff;
}
.contact-info-section .info-card:hover .icon-box i {
  color: #fff;
}
.contact-info-section .info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.contact-info-section .info-card .icon-box i {
  font-size: 24px;
  color: rgb(30, 221, 255);
}
.contact-info-section .info-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0e5c99;
  font-weight: 600;
}
.contact-info-section .info-card p {
  margin: 0;
  color: #0e5c99;
  font-size: 16px;
}
.contact-info-section .info-card p a {
  color: #0e5c99;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-info-section .info-card p a:hover {
  color: #0e5c99;
}
.contact-info-section .info-card .social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.contact-info-section .info-card .social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-info-section .info-card .social-links a.facebook {
  background: #3b5998;
  color: #fff;
}
.contact-info-section .info-card .social-links a.facebook:hover {
  background: #2d4373;
}
.contact-info-section .info-card .social-links a.instagram {
  background: #e4405f;
  color: #fff;
}
.contact-info-section .info-card .social-links a.instagram:hover {
  background: #d31e40;
}
.contact-info-section .info-card .social-links a.linkedin {
  background: #0077b5;
  color: #fff;
}
.contact-info-section .info-card .social-links a.linkedin:hover {
  background: #005582;
}
.contact-info-section .info-card .social-links a.youtube {
  background: #ff0000;
  color: #fff;
}
.contact-info-section .info-card .social-links a.youtube:hover {
  background: #cc0000;
}
.contact-info-section .info-card .social-links a.whatsapp {
  background: #25d366;
  color: #fff;
}
.contact-info-section .info-card .social-links a.whatsapp:hover {
  background: #1da851;
}
.contact-info-section .info-card .social-links a i {
  font-size: 16px;
}
.contact-info-section .info-card .social-links a:hover {
  transform: translateY(-3px);
}

.contact-form-section {
  padding: 30px 0;
}
.contact-form-section .contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.contact-form-section .contact-form-wrapper h2 {
  color: #333333;
  margin-bottom: 30px;
}
.contact-form-section .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.contact-form-section .contact-form-wrapper .form-group label {
  color: #333333;
  margin-bottom: 8px;
}
.contact-form-section .contact-form-wrapper .form-group .form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(96, 96, 96, 0.2);
  padding: 10px 15px;
}
.contact-form-section .contact-form-wrapper .form-group .form-control:focus {
  box-shadow: none;
  border-color: #0e5c99;
}
.contact-form-section .contact-form-wrapper .btn-primary {
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background-color: #0e5c99;
}
.contact-form-section .contact-form-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 92, 153, 0.3);
}

@media (max-width: 991px) {
  .col-lg-4 .row .col-md-12 {
    margin-top: 0px !important;
  }
  .contact-info-section {
    padding: 60px 0;
  }
  .contact-info-section .contact-content {
    margin-bottom: 40px;
  }
  .contact-info-section .contact-content h2 {
    font-size: 24px;
    font-weight: 600;
  }
  .contact-form-section {
    padding: 0px 0 60px;
  }
}
@media (max-width: 768px) {
  .contact-info-section .info-card {
    margin-bottom: 20px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}
.get-in-touch {
  text-align: center;
  background-color: rgb(30, 221, 255);
  color: black;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  width: 65%;
  margin: 0 auto;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .get-in-touch {
    margin-bottom: 25px;
  }
}/*# sourceMappingURL=contact.css.map */