/* ============================================================== 
     # Reset Browsers
=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font_poppins);
}
*:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font_poppins);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  color: var(--primary-color);
}

::-moz-selection {
  color: #fff;
  background-color: var(--primary-color);
}

::selection {
  color: #fff;
  background-color: var(--primary-color);
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: none;
  /* Safari */
  transition: 1s;
}

/* ============================================================== 
    #  Default Styles
=================================================================== */
img {
  max-width: 100%;
}

.custom-row {
  display: flex;
  width: 100%;
}

.flex-1 {
  flex: 1;
}

.w-full {
  width: 100%;
}

.gap-24 {
  gap: 24px;
}

.logo {
  max-width: 80px;
}

.theme-btn,
input[type=submit] {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.theme-btn:hover {
  color: #fff !important;
}

.contact-us-hero-section .elementskit-infobox {
  border-left: 8px solid transparent !important;
}
.contact-us-hero-section .elementskit-infobox:hover {
  border-color: var(--primary-color) !important;
}
.contact-us-hero-section .elementskit-infobox h3 {
  color: var(--primary-color) !important;
}

.contact-us-form .elementor-widget-google_maps .elementor-custom-embed,
.contact-us-form .elementor-widget-google_maps iframe {
  height: 100%;
}

.clients-carousal .single-client {
  border-color: var(--primary-color) !important;
}
.clients-carousal .single-client::before {
  background-color: var(--primary-color) !important;
}
.clients-carousal .ekit-heading--title {
  color: var(--primary-color);
  font-weight: 700 !important;
}

.our-vision-section .vision-section, .our-vision-section:hover .ceo-profile img {
  border-color: var(--primary-color);
}
.our-vision-section .ceo-profile img {
  transition: all 0.3s ease-in;
  border-color: transparent;
}

/* ============================================================== 
    # Template Animation
=================================================================== */
/*slide-left Animation */
.slide-left {
  animation: slideLeft 1s;
}

/*slide-right Animation */
.slide-right {
  animation: slideRight 1s;
}

/*fade-in Animation */
.fade-in {
  animation: fadeIn 0.5s cubic-bezier(0.97, 0.01, 0.92, 1);
}

/*bounce-in Animation */
.bounce-in {
  animation: bounceIn 0.5s ease;
  animation-delay: 1s;
  visibility: hidden;
  animation-fill-mode: forwards;
}

/*pop-in Animation */
.pop-in {
  animation: popIn 1.5s ease;
}

/*delay-2 Animation */
.delay-2 {
  animation-delay: 1.5s;
}

/*delay-3 Animation */
.delay-3 {
  animation-delay: 2s;
}

/*fadeIn Effects */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*bounceIn Effects */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    visibility: visible;
  }
}
/*popIn Effects */
@keyframes popIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*slideLeft Effects */
@keyframes slideLeft {
  0% {
    transform: translateX(-900px) rotate(-90deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}
/*slideRight Effects */
@keyframes slideRight {
  0% {
    transform: translateX(900px) rotate(90deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}
/*Animations End*/
.sticky.header-blur {
  background-color: rgba(255, 255, 255, 0.2) !important;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transform: translateY(100%);
  animation: slideInFromTop 0.5s ease-out forwards;
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* Client Section */
.client-area {
  overflow: hidden;
}
.client-area .clients {
  gap: 30px;
  padding-right: 20px;
  margin-right: 20px;
}

.client-area .clients .client-logo h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.client-area .clients .client-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-hero-section {
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-bottom: 30px;
}
.review-card-hero-section .bdt-ep-review-card-item {
  max-height: 32px;
}
.review-card-hero-section .bdt-ep-review-card-content {
  display: flex;
  align-items: center;
}
.review-card-hero-section .bdt-ep-review-card-rating {
  display: none;
}
.review-card-hero-section .bdt-ep-review-card-text p {
  margin: 0;
}

.mu-carousal .swiper-slide {
  border-radius: 12px;
}
.mu-carousal .swiper-slide span.bdt-panel-slide-title {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 12px;
}
.mu-carousal .swiper-slide .bdt-panel-slide-desc {
  padding: 16px;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}/*# sourceMappingURL=style.css.map */