/* Root CSS */
:root {
  --primary: #035bbe;
  --secondary: #15ace1;
}
/* Body */
body {
  font-family: poppins, sans-serif;
  src: url("assets/vendor/font/poppins.regular.ttf");
}
/* Heading */
h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
}
h4,
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}
/* Spinner */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 9999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Header page */
.header-page {
  background-color: var(--primary);
}

/* Navbar */
.sticky-top {
  top: -150px;
  transition: 0.5s;
  background-color: var(--primary);
}
.navbar {
  padding: 11px 0 !important;
  height: 75px;
  background-color: var(--primary);
}
.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 0;
  color: rgb(235, 226, 226);
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: white;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  vertical-align: middle;
  margin-left: 8px;
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    padding: 0 15px;
    background-color: var(--primary);
  }
  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
    margin-right: 0;
    color: rgb(223, 211, 211);
    transition: 0.5s;
  }
  .navbar .container {
    background-color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/* Hero Header */
.hero-header {
  background-color: var(--primary);
  /*background-repeat: no-repeat;*/
  /*background-size: 100%;*/
}

/* Section Title */
.section-title.text-center::before {
  left: 25%;
  margin-left: -25px;
}
.section-title.text-center::after {
  left: 25%;
  margin-left: 25px;
}
.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;
  background-color: var(--primary);
}

.section-title h6::after {
  top: 5px;
  left: 3px;
}
.section-title {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}
.section-title span:first-child,
.section-title span:last-child {
  position: relative;
  display: inline-block;
  margin-right: 25px;
  width: 25px;
  height: 2px;
}
.section-title span:last-child {
  margin-right: 0;
  margin-left: 30px;
}
.section-title span:last-child::after {
  right: auto;
  left: -20px;
}
.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
  background-color: var(--primary);
}
/* Featured */
.feature-item {
  transition: 0.5s;
}
.feature-item:hover {
  box-shadow: 2px 2px 5px 5px #e9e9e9;
  box-shadow: inset;
}
.feature-item i {
  color: var(--primary);
}

/* Services */

.service-item {
  background-color: white;
  position: relative;
  padding: 40px 30px;
  transition: 0.5s;
}
.service-item:hover {
  background-color: var(--primary);
}
.service-item .service-icon {
  margin: 0 auto 20px auto;
  color: white;
  transition: 0.5s;
  padding: 20px;
  width: 90px;
  height: 90px;
  background-color: var(--secondary);
}
.service-item:hover .service-icon {
  background-color: white;
  color: var(--primary);
}
.service-item h5,
.service-item p {
  transition: 0.5s;
}
.service-item:hover h5,
.service-item:hover p {
  color: white;
}
.service-item a.btn {
  display: flex;
  position: relative;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}
.service-item:hover a.btn {
  color: var(--primary);
}
.service-item a.btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background-color: white;
  transition: 0.5s;
  border-radius: 35px;
  top: 0;
  left: 0;
  z-index: -1;
}
.service-item:hover a.btn::before {
  width: 100%;
  background-color: white;
  color: white;
}
/* FAQS */
.accordion .accordion-button {
  background-color: white;
}

.accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: white;
}
/* Cardbox */
.cardbox {
  height: 300px;
  background-color: white;
}
.cardbox-img {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 180px;
}
.cardbox img {
  transition: 0.5s;
}
.cardbox:hover img {
  transform: scale(1.2);
}
.cardbox-overlay {
  padding: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  top: 0;
  left: 0;
}
/* Cardbox End */

/* Owl Carousel */
.clients-carousel .box {
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in;
}
.services-carousel .box {
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in;
}

/* Whatsapp Button */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 38px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}