/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# About Company Sections
--------------------------------------------------------------*/

.about-company {
  background-color: #dfdfdf;
}

.about-company-2 {
  background-color: #dfdfdf;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #2087ba;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #2087ba;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}