#home-header {
  width: 100%;
  position: relative;
  height: 800px;
}
#home-header img,
#home-header video {
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-header .carousel-item {
  height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  animation: zoomInEffect 13s ease-in-out infinite;
}
@keyframes zoomInEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  #home-header .carousel-item {
    background-attachment: scroll !important;
  }
}
#home-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 12, 21, 0.5);
  z-index: 9;
}
#home-header .header-content {
  position: absolute;
  inset: 0px !important;
  height: 100%;
  width: 100%;
  z-index: 10;
}
#home-header .header-content .content {
  display: none;
}
#home-header .header-content .content .title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: clamp(1.25rem, 0.7658rem + 1.5493vw, 2.625rem);
}
#home-header .header-content .content .title,
#home-header .header-content .content p {
  color: #fff;
}
#home-header .header-content .content p {
  font-size: clamp(0.9375rem, 0.7394rem + 0.6338vw, 1.5rem);
  color: #e3e3e3 !important;
}
#home-header .header-content .active {
  display: block;
}
#home-header .header-content .animation-up {
  animation: slideInUp 1s ease-in-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-left {
  animation: slideLeft 1s ease-in-out;
}
@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-right {
  animation: slideRight 1s ease-in-out;
}
@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .title-two {
  font-size: 46px;
}
#home-header .title-three {
  font-size: 46px;
}

#services {
  padding: 90px 0px 100px 0px;
  background-color: var(--fifth-color);
}
#services h2 {
  margin-bottom: 40px;
}
#services .service-box {
  background-color: #ffffff;
  padding: 15px 10px;
  border-radius: var(--border-radius);
}
#services .service-box .image {
  height: 64px;
  width: 64px;
  transition: all 0.1s linear;
  margin-bottom: 15px;
}
#services .service-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#categories {
  padding: 80px 0px;
}
#categories .link-to-category:hover .category-bg {
  transform: scale(0.97);
}
#categories .link-to-category:hover .category-bg::before {
  top: 100px;
}
#categories .category-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.1s linear;
}
#categories .category-bg::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #000000 100%);
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  transition: all 0.3s ease;
}
#categories .category-bg .category-content {
  padding: 30px;
  position: absolute;
  bottom: 0px;
  color: #fff;
}
#categories .category-bg .category-content h3 {
  font-size: clamp(1.125rem, 0.9489rem + 0.5634vw, 1.625rem);
  margin-bottom: 0px;
}
#categories .category-bg .category-content svg {
  width: clamp(1.125rem, 0.9489rem + 0.5634vw, 1.625rem);
}
#categories .box {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

#products {
  padding: 80px 0px;
  background-color: var(--fifth-color);
}

#why-choose-us {
  padding: 80px 0px;
  background-color: var(--fifth-color);
}
#why-choose-us .feature-item {
  border-bottom: 1px solid #d4d4d4;
  padding: 15px 0px;
}
#why-choose-us .feature-item h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0px;
}
#why-choose-us .feature-item p {
  font-size: 15px;
  color: #666;
}
#why-choose-us .feature-item img {
  width: 45px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

#ready-contact {
  padding-top: 100px;
  background-color: #ffffff;
}
#ready-contact .title {
  font-weight: 700;
  font-size: clamp(1.625rem, 1.0088rem + 1.9718vw, 3.375rem);
  margin-bottom: 0px;
}
#ready-contact p {
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 10px;
}
#ready-contact img {
  width: 100%;
}
#ready-contact .contact-image-ar {
  text-align: left !important;
}
#ready-contact .contact-image-ar img {
  transform: scaleX(-1);
}

@media (max-width: 991px) {
  #home-header {
    height: 580px;
  }
  #home-header img,
  #home-header video {
    height: 580px !important;
  }
  #home-header .carousel-item {
    height: 580px !important;
  }
  #home-header h1 {
    font-size: 36px;
  }
  #home-header .sub-title {
    margin-top: 0px;
  }
  #home-header .image {
    display: none;
  }
}
@media (max-width: 500px) {
  header h1 {
    margin-bottom: 5px !important;
  }
  header .title-one {
    font-size: 36px !important;
  }
  header .title-two {
    font-size: 26px !important;
  }
  header .title-three {
    font-size: 32px !important;
  }
  header p {
    font-size: 16px !important;
  }
  #partners {
    padding: 40px 0px;
  }
  #partners h2 {
    font-size: 28px;
  }
  #services .service-box .title {
    font-size: 15px !important;
  }
}
.owl-nav {
  display: none;
}

.owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border: 0;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #d3d3d3 !important;
  transition: all 0.2s ease-in-out;
}
.owl-dots .active {
  background-color: var(--main-color) !important;
  width: 30px;
  border-radius: 5px;
}/*# sourceMappingURL=home-v2.css.map */