
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.About-Section .hr-animation {
  width: 100px;
  border: none;
  border-top: 2px solid #6e6e6e;
  animation: fade-in 2s ease-in-out infinite;
}

/* animation to hr */
@keyframes fade-in {
  0% {
    opacity: 0;
    width: 80px;
  }

  100% {
    opacity: 1;
    width: 150px;
  }
}

.About-Section h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# founder
--------------------------------------------------------------*/

.founder-section {
  background-color: #dfdfdf;
}

.founder .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  background: #eeeeee;
  border-radius: 8px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

.founder .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.founder .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.founder .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.founder .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #191919;
}

.founder .member .social {
  margin-top: 15px;
}

.founder .member .social a {
  color: #191919;
  transition: 0.3s;
}

.founder .member .social a:hover {
  color: #2087ba;
}

.founder .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Vision Section
--------------------------------------------------------------*/

.vision .vision-text {
  padding: 50px;
  background-color: #0c0c0c;
  color: #fff;
  font-weight: 100;
  width: 90%;
}

/*--------------------------------------------------------------
# About-2 Section
--------------------------------------------------------------*/

.about-2 {
  background-color: #dfdfdf;
}

/*--------------------------------------------------------------
# Chat With US Section
--------------------------------------------------------------*/

.chat-with-us h3 {
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.image-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.image-contact img {
  margin: 0 auto;
  height: 400px;
  width: 400px;
}

.chat-with-us .btn-contact {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: all 0.5s ease;
  background-color: transparent;
  border: 2px solid #2087ba;
  color: #2087ba;
  width: fit-content;
  border-radius: 20px;
}

.chat-with-us .btn-contact:hover {
  background: #2087ba;
  border-color: #2087ba;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .chat-with-us .order-lg-1,
  .chat-with-us .order-lg-2 {
    order: 1;
  }

  .chat-with-us .content {
    margin-top: 30px;
    text-align: center;
  }

  .chat-with-us .content h3 {
    margin-top: 0;
    font-size: 30px;
  }

  .chat-with-us .image-contact img {
    height: 300px;
    width: 300px;
  }

  .chat-with-us .btn-contact {
    margin: 0 auto;
  }
}