/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.About-Section {
  padding-bottom: 50px;
  background-color: #f2f2f2;
}

.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;
}

.About-Section .logo-about {
  filter: drop-shadow(4px 4px 8px gray);
  padding: 50px;
}

@media (max-width: 575px) {
  .About-Section {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote-one {
  background: linear-gradient(rgba(2, 2, 8, 0.6), rgba(0, 0, 0, 0.2)),
    url("/assets/img/Landing/quote-bg.png") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.quote-two {
  background: linear-gradient(rgba(2, 2, 8, 0.4), rgba(0, 0, 0, 0.6)),
    url("/assets/img/Landing/quote-bg.png") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.quote-text {
  font-family: "Times New Roman", Times, serif;
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .quote-text {
    font-size: 30px;
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# Second About 
--------------------------------------------------------------*/
.second-about {
  padding: 60px 0;
}

.second-about .content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.second-about .img-fluid {
  filter: drop-shadow(2px 2px 2px gray);
}

/* Arrow animation */

@media (max-width: 575px) {
  .second-about {
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# Vision Section
--------------------------------------------------------------*/
.vision {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.vision .section-title span {
  color: #dfdfdf;
}

.vision .vision-text {
  padding: 50px;
  background-color: #0c0c0c;
  color: #fff;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Chat With US Section
--------------------------------------------------------------*/

.chat-with-us {
  padding: 60px 0;
}

.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 #67b5b8;
  color: #67b5b8;
  width: fit-content;
  border-radius: 20px;
}

.chat-with-us .btn-contact:hover {
  background: #67b5b8;
  border-color: #67b5b8;
  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;
  }
}
