::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ddd;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c2c2c2;
}

#enquiryPopupForm label.error {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

.fixed-btn {
  position: fixed;
  right: 15px;
  bottom: 90px;
  z-index: 9999;
}

label.error {
  color: white;
  margin-top: 10px;
  font-size: 14px;
}

#popupSuccessMessage,
#successMessage {
  display: none;
  text-align: center;
  background: #0ed016;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  border-radius: 150px;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
a,
li,
ul,
ol,
select,
input,
textarea,
button {
  font-family: "Roboto", sans-serif;
}

.font-math {
  font-family: math !important;
}

select:focus,
input:focus,
textarea:focus,
button:focus {
  box-shadow: 0px 0px 0px 0px transparent !important;
}

.rounded-25px {
  border-radius: 25px;
}

.rounded-15px {
  border-radius: 15px;
}

a {
  text-decoration: none !important;
}

.background-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fs-7 {
  font-size: 14px;
}

.social-link {
  background-color: #ddd;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.z-9 {
  z-index: 9;
}

.fs-40px {
  font-size: 40px;
}

.fs-50px {
  font-size: 50px;
}

.text-justify {
  text-align: justify;
}

.scroll-margin-top {
  scroll-margin-top: 100px;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 15px;
  background-color: #202327;
  color: #fff;
  font-size: 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
}

.fs-lg-5 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1080px) {
  .fs-lg-5 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 991px) {
  .section-space {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .fs-50px {
    font-size: 40px;
  }

  .w-lg-15 {
    width: 50% !important;
  }

  .w-lg-75 {
    width: 100% !important;
  }
}

.w-lg-15 {
  width: 15%;
}

.w-lg-75 {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .banner-top {
    margin-top: 115px;
  }

  .banner-subtext {
    font-size: 20px !important;
    line-height: 32px;
  }

  .banner-text {
    font-size: 36px !important;
  }

  .banner-img {
    height: auto !important;
    padding: 75px 0px;
  }

  .w-lg-15 {
    width: 75% !important;
  }

  .fs-50px {
    font-size: 30px;
  }
}

.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}

.banner-overlay {
  position: relative;
}

.banner-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.5);
}

.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(360deg, black 0%, transparent 60%);
  border-radius: 6px;
}

.footer-image {
  width: 120px;
  height: 140px;
  object-fit: contain;
}

.video-img {
  height: 350px;
  width: 100%;
  transition: ease-in-out 0.3s all;
}

.video-img:hover {
  transform: scale(1.05);
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #000000;
  display: inline-block;
  background: #ffffff;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.product-img {
  height: 500px;
  width: 100%;
  transition: ease-in-out 0.3s all;
  background-color: #fff;
  background-size: contain !important;
}

.product-img:hover {
  transform: scale(1.05);
}

.product-img .product-text {
  transition: ease-in-out 0.3s all;
}

.product-img:hover .product-text {
  transform: translateY(-20px);
}

.logo-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90px;
  height: 90px;
}

.header-border {
  position: relative;
}

.header-border:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 5px;
  left: 50%;
  border-radius: 10px;
  background: #a4cb4d;
  transform: translate(-50%, 40px);
  transition: ease-in-out .3s all;
}

.header-border:hover:before {
  width: 70px;
  height: 5px;
}


.header-border.active {
  color: #27b1e5 !important;
  position: relative;
}

.header-border.active:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 70px;
  height: 5px;
  border-radius: 10px;
  background: #a4cb4d;
  transform: translate(-50%, 40px);
  transition: ease-in-out .3s all;
}

.banner-img {
  height: 80vh;
  width: 100%;
}

.banner-top {
  margin-top: 107px;
}

.bg-theme-blue {
  background-color: #27b1e5;
}

.text-theme-blue {
  color: #27b1e5;
}

.bg-theme-green {
  background-color: #a4cb4d;
}

.text-theme-green {
  color: #a4cb4d;
}

.banner-text {
  font-size: 50px;
  font-weight: 600;
}

.banner-subtext {
  font-size: 25px;
  font-weight: 500;
}

.product-overlay-1 {
  position: relative;
}

.product-overlay-1:before {
  content: "";
  background-color: #c5e1d4;
  position: absolute;
  left: -25px;
  top: 25px;
  bottom: 25px;
  width: 44%;
  display: block;
  border-radius: 20px;
}

.product-overlay-2 {
  position: relative;
}

.product-overlay-2:before {
  content: "";
  background-color: #f6ccd0;
  position: absolute;
  right: -25px;
  top: 25px;
  bottom: 25px;
  width: 44%;
  display: block;
  border-radius: 20px;
}

.product-overlay-3 {
  position: relative;
}

.product-overlay-3:before {
  content: "";
  background-color: #ffefc1;
  position: absolute;
  left: -25px;
  top: 25px;
  bottom: 25px;
  width: 44%;
  display: block;
  border-radius: 20px;
}

.product-overlay-4 {
  position: relative;
}

.product-overlay-4:before {
  content: "";
  background-color: #c2f2fb;
  position: absolute;
  right: -25px;
  top: 25px;
  bottom: 25px;
  width: 44%;
  display: block;
  border-radius: 20px;
}

.icon-style {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80px;
  height: 80px;
}

.testimonial-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}