/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #106eea;
  --anchor-link: #2175e2;
  --white: #ffffff;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--anchor-color);
  text-decoration: none;
}

a:hover {
  color: var(--anchor-link);
  text-decoration: none;
}
.container {
  overflow: hidden !important;
}

/* --------------   Heading  ------------*/
.heading h3 {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.heading p {
  text-align: center;
  color: #333;
}

.heading h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 38px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 20px);
}

.heading h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: grey;
  bottom: 1px;
  left: calc(50% - 60px);
}

/* ------------------ Preloader --------------------- */
/* #lds-dual-ring {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  background: var(--primary-color);
}

#lds-dual-ring:before {
  content: "";
  position: fixed;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 60px;
  height: 60px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

/* ----------- Navbar ---------- */
.navbar {
  background: #fff;
  transition: all 0.5s;
  z-index: 999;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.navigation-logo {
  width: 75px;
}
a.nav-logo {
  display: flex;
  align-items: center;
}
span.nav-company-name {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--primary-color);
}
.navbar-nav a {
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar-light .navbar-brand {
  color: #000;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}
.navbar-brand span {
  color: green;
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #000;
}
.navbar-light .navbar-nav .nav-link {
  color: #000;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}
.navbar-toggler {
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
  background: #fff;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
a.nav-link.active {
  color: var(--primary-color) !important;
}
.navbar li {
  position: relative;
}

.navbar li a,
.navbar li a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px !important;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}
.book-now-btn {
  background: var(--primary-color);
  margin-left: 40px;
  color: #fff;
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.book-now-btn:hover {
  background: #000;
  color: #fff;
}

.contact-modal {
  width: 600px;
  padding: 50px;
  margin: 30px auto;
}
.contact-modal h4 {
  font-size: 26px;
  display: inline-block;
}
.contact-modal .form-control,
.contact-modal .btn {
  min-height: 38px;
  border-radius: 1px;
  outline: none;
}
.contact-modal .btn-primary {
  min-width: 100px;
  background: var(--primary-color);
  border: none;
}
.contact-modal .btn-primary:hover {
  background: var(--primary-color);
}
.contact-modal .btn-primary:focus {
  box-shadow: 0 0 8px var(--primary-color);
}
.contact-modal .btn-link {
  color: var(--primary-color);
}
.contact-modal label {
  opacity: 0.9;
  font-weight: normal;
  font-size: 95%;
}
.contact-modal textarea {
  resize: vertical;
}
.contact-modal.modal-dialog {
  width: 480px;
}
.contact-modal .modal-header {
  padding: 20px 35px 14px;
}
.contact-modal .modal-content {
  border-radius: 1px;
}
.contact-modal .close {
  position: absolute;
  right: 35px;
  top: 25px;
}
.contact-modal .modal-body {
  padding: 20px 35px 35px;
}
.hint-text {
  opacity: 0.8;
}
.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

@media (max-width: 992px) {
  .book-now-btn {
    margin-right: 20px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
/* ------------ Background Overlay with Text -------------- */
.bg-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/breadcrumb.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: #fff;
  height: 450px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-no-overlay {
  background: url("../img/breadcrumb.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  height: 350px;
  padding-top: 50px;
}
h3.b-heading-h1 {
  color: #fff !important;
}
p.b-heading-p {
  color: #fff !important;
}
.breadcrumb-section {
  background-color: var(--primary-color);  
  padding: 13px 20px 1px;
  color: #fff;
  display: flex;
  align-items: center;
}
li.breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}
/*--------- Home-section Section -----------------*/
.home-section {
  position: relative;
  background: url("../img/home-section.svg") no-repeat top center;
  background-size: cover;
  height: 100vh;
  padding-top: 100px;
  text-align: left;
}

.home-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.home-section h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-section h2 {
  color: #fff;
  font-size: 20px;
}

.home-section .call-now-btn {
  font-size: 18px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  transition: 0.8s;
  margin-top: 20px;
  color: #fff;
  background: var(--primary-color);
}

.home-section .call-now-btn:hover {
  background: white;
  color: #000;
}

@media (max-width: 1250px) {
  .home-section {
    background: url("../img/home-section-2.svg") no-repeat center center !important;
  }
  .home-section:before {
    background: rgba(0, 0, 0, 0.7) !important;
  }
}

@media (max-width: 768px) {
  .home-section {
    text-align: center;
    padding-top: 55px;
  }

  .home-section h1 {
    font-size: 30px;
  }

  .home-section h2 {
    font-size: 18px;
  }
}

@media (max-height: 500px) {
  .home-section {
    height: 120vh;
  }
}

/*--------------- About Us -------------------*/
.about .container {
  padding-bottom: 15px;
}

.about .about-us-text {
  font-size: 15px;
}

.about .about-us-text h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .about-us-text ul {
  list-style: none;
  padding: 0;
}

.about .about-us-text ul li {
  padding-bottom: 8px;
  padding-left: 32px;
  position: relative;
}

.about .about-us-text ul i {
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: -1px;
}

.about .about-img {
  margin-top: 30px;
}

/* ----------------------  Our Services  --------------------- */

.service {
  background-color: #f6f6f6;
}

.service .service-box {
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
  border-radius: 12px;
}

.service .service-box:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.service .service-box .circle {
  width: 62px;
  height: 62px;
  position: relative;
  margin-bottom: 45px;
  left: calc(50% - 55px);
}

.service .service-box .circle img {
  z-index: 999;
  position: relative;
  width: 75px;
  height: 75px;
}

.service .service-box .circle:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.service .service-box h4 {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 5px;
  font-size: 22px;
  position: relative;
  transition: 0.3s;
  text-align: center;
}

.service .service-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.service .service-box:hover .circle:before {
  background: var(--primary-color);
}

.service .service-box:hover h4 {
  border-color: var(--color-primary);
}

/* --------------- Why Choose us ------------------- */

.rounded-circle {
  border-radius: 50% !important;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.sub-info {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #004975;
}

.display-30 {
  font-size: 0.9rem;
}

/*----------- Counter ---------------*/
.counter-section {
  padding: 80px 0 60px 0;
}

.counter-section .title {
  position: relative;
  color: #0f394c;
  margin-bottom: 40px;
}

.counter-section .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counter-section .counters span {
  font-size: 44px;
  font-weight: 700;
  display: block;
  color: var(--primary-color);
  font-family: "Dosis", sans-serif;
}

.counter-section .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: #444444;
}

/* ----------------------- Testimonials--------------- */
.testimonial-area {
  padding: 40px 0;
  background: url(1.jpg);
  background-size: cover;
  background-position: center;
}
.content p {
  color: gray;
  width: 60%;
  margin: auto;
}
.person {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  margin-top: 10px;
  margin-bottom: 20px;
}
.person img {
  width: 100%;
}
.content h5 {
  font-weight: 900;
  margin-top: 15px;
}
.carousel-indicators {
  bottom: 0px;
  margin-bottom: 0px;
}
.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.carousel-item {
  margin-bottom: 50px;
}
.hero-img {
  display: none;
}

@media (max-width: 767px) {
  .testimonial-area {
    padding: 30px 0;
  }
  .content p {
    width: 100%;
  }
  .hero-img {
    display: block;
  }
  .home-section {
    padding: 50px 0px !important;
    height: auto;
  }
  .home-section:before {
    background: linear-gradient(45deg, #002575, #0060c9, #4698fe) !important;
  }
  .home-section h2 {
    line-height: 1.4;
  }
  .home-section h1 {
    margin-bottom: 20px;
  }
  /* #lds-dual-ring:before { top: 46%;  left: 40%;} */
  .contact-modal.modal-dialog {
    width: 100%;
    padding: 0px 15px;
  }
}

.carousel-control-prev-icon {
  background-image: url("../img/Arrow/1.svg");
}

.carousel-control-next-icon {
  background-image: url("../img/Arrow/2.svg");
}

/* ------------ FAQ Section ----------------- */
@media (max-width: 991px) {
  .faq-section {
    padding: 0;
  }
}

.faq-section .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
}

.faq-section .accordion-collapse {
  border: 0;
}

.faq-section .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: black;
  text-align: left;
  background: white;
  box-shadow: none;
  border-radius: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  border-bottom: 0;
  box-shadow: none;
}

.faq-section .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--primary-color);
}

.faq-section .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: white;
  box-shadow: none;
}

/*------------------------- Contact  --------------------------*/
.contact .contact-info-box {
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.7);
  padding: 25px 0 32px 0;
}

.contact-info-box .contact-address {
  font-size: 32px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 6px 13px;
  border: 2px dotted var(--anchor-link);
}

.contact-info-box .contact-email {
  font-size: 28px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 7px 9px;
  border: 2px dotted var(--anchor-link);
}

.contact-info-box .contact-phone {
  font-size: 28px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 7px 10px;
  border: 2px dotted var(--anchor-link);
}

.contact .contact-info-box h3 {
  font-size: 22px;
  color: gray;
  font-weight: 700;
  margin: 10px 0;
}

.contact .contact-info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contact-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.7);
  padding: 30px;
}

.contact .contact-form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 14px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--primary-color);
}

.contact .contact-form input,
.contact .contact-form textarea {
  padding: 9px 18px;
}

.contact .contact-form button[type="submit"] {
  background: var(--primary-color);
  border: 0 !important;
  padding: 12px 30px;
  color: #fff;
  border-radius: 5px;
}

/* ---------------- Footer ---------------- */
.footer {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 60px 0;
  color: white;
}

.footer .footer-company-info .logo {
  margin-bottom: 15px;
}

.footer .footer-company-info .logo img {
  max-height: 100px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  width: 40px;
  height: 40px;
  color: white;
  margin-right: 10px;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}
.footer .footer-links ul a:hover {
  color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  line-height: 1;
}
/* ---------- Whatsapp-icon ------- */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  background-color: #40c351;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 0px 12px #fffff6;
  z-index: 100;
  left: 45px;
}
i.fa.fa-whatsapp.my-float {
  margin-top: 15px;
}
