@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #e9782f;
  --secondary-color: #b14b08;
}

.jumbotron .swiper-pagination-bullet-active {
  background-color: white;
}

.product-slider {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.product-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: center;
  margin-top: 1rem;
}

.product-slider .swiper-slide {
  position: relative;
}

.product-slider .swiper-pagination-bullet {
  margin: 0 4px;
}

.text-primary {
  color: var(--primary-color);
}
.border-primary {
  border-color: var(--primary-color);
}
.bg-primary,
.hover-bg-primary:hover {
  background-color: var(--primary-color);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: var(--primary-color);
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

.custom-hover {
  display: block;
  padding: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
.owl-stage {
  display: flex;
  align-items: stretch;
}
.product-slider .item,
.product-slider .item a {
  height: 100%;
}

.product-slider .owl-stage,
.testimonial .owl-stage {
  padding-bottom: 10px;
}

.jumbotron .owl-dots {
  transform: translateY(-40px);
}

.content-image {
  border-radius: 8px;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .content-image {
    height: 600px;
    margin-right: 2rem !important;
    float: left;
  }
}
@media all and (max-width: 768px) {
  .content-image {
    height: 450px;
    margin-bottom: 1rem !important;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.testimonial .swiper-button-prev:after,
.testimonial .swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.testimonial .swiper-button-next svg,
.testimonial .swiper-button-prev svg {
  width: 24px !important;
  height: 24px !important;
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  position: relative !important;
}

.testimonial .swiper-slide.swiper-slide-active {
  border-color: var(--primary-color) !important;
}

.testimonial
  .swiper-slide.swiper-slide-active
  > .swiper-slide-active\:text-primary {
  color: var(--primary-color);
}

.testimonial
  .swiper-slide.swiper-slide-active
  > .flex
  .grid
  .swiper-slide-active\:text-primary {
  color: var(--primary-color);
}


.stat-card {
  background-color: #f4f8fb;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.stat-card:hover {
  background-color: var(--primary-color);
  color: white;
}

.stat-card:hover .stat-heading {
  color: black;
}

.stat-heading {
  transition: color 0.3s ease;
}



.map-container {
  padding: 3.2rem 0.8rem;
  position: relative;
  display: inline-block;
}
.map-container img {
  width: 100%;
}
.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgba(0, 172, 193, 0.4);
  animation: pulse 3s infinite;
}
.map-container .point:hover {
  animation: none;
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.map-container .south-america {
  top: 68%;
  left: 26%;
}
.map-container .north-america {
  top: 26%;
  left: 15%;
}
.map-container .africa {
  top: 50%;
  left: 51%;
}
.map-container .europe {
  top: 25%;
  left: 51%;
}
.map-container .asia {
  top: 28%;
  left: 69%;
}
.map-container .australia {
  top: 74%;
  left: 87%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 4, 0.74);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}
.description * {
  margin-bottom: 15px;
}
