/* Custom CSS */

.pl-0 {
  padding-left: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pr-0 {
  padding-right: 0;
}

.grg-15 {
  grid-row-gap: 15px !important;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-5 {
  padding-top: 5rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.ml-8px {
  margin-left: 8px;
}

.mt-6px {
  margin-top: 6px;
}

.mt-30 {
  margin-top: 30px;
}

.fs-28 {
  font-size: 28px;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.nowrap {
  white-space: nowrap;
}

.list-style-none {
  list-style: none;
}

.text-dark {
  color: #000;
}

/* Start: Header */
.nav-link.active {
  color: var(--color--primary);
}

.nav-logo {
  width: 125px;
}

.button-default.header-button {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* End: Header */

.service-detail-main-wrapper {
  display: unset;
}

/* Start: Footer */
.footer-logo {
  width: 160px;
}

.footer-widget:first-child {
  max-width: 320px;
}

.footer-widget-summary {
  text-align: justify;
  font-size: 16px;
  max-width: 100%;
}

.footer-widget-title {
  margin-bottom: 15px;
}

.footer-widget-office-hour {
  margin-top: 15px;
}

.footer-widget-reach-out-link.gap-bottom-25 {
  margin-bottom: 10px;
}

.new-product-list.w-list-unstyled {
  grid-row-gap: 10px;
}

.footer-bottom-block {
  justify-content: center;
}

.footer-contact-a {
  display: flex;
  gap: 16px;
}

.footer-contact-a i {
  padding-top: 5px;
  font-size: 16px;
  width: 10px;
}

.footer-contact-a svg {
  padding-top: 5px;
  overflow: visible !important;
}

/* End: Footer */

/* Contact Page */
.contact-form-wrapper.for-map {
  margin-bottom: 90px !important;
}

.contact-map-section {
  margin-bottom: 90px !important;
}

/* WhatsApp Pulse Button */

.whatsapp-info,
.pulse {
  font-family: "Lato", sans-serif;
  display: inline-block;
  color: #fff;
  background: #1ab744;
  position: fixed;
  bottom: 95px;
  right: 31px;
  font-size: 20px;
  text-align: center;
  z-index: 99;
  border-radius: 90%;
  height: 45px;
  width: 45px;
  line-height: 45px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

.pulse:nth-child(1) {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.pulse:nth-child(2) {
  -webkit-animation: pulse 2s infinite 0.3s;
  animation: pulse 2s infinite 0.3s;
}

.pulse:nth-child(3) {
  -webkit-animation: pulse 2s infinite 0.6s;
  animation: pulse 2s infinite 0.6s;
}

.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
}

.fa-whatsapp::before {
  content: "\f234";
}

.whatsapp-svg {
  width: 25px;
  margin-top: 9px;
  margin-left: 1px;
}

/* /WhatsApp Pulse Button */

/* About Us Page */
.about-group-block-two {
  grid-template-columns: 1fr;
}

.funfact-single-block.first-child,
.funfact-single-block.last-child {
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-left: none;
}

.about-funfact-section.gap-for-video-section {
  padding-bottom: 285px;
}

.funfact-wrapper.for-about {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex !important;
}

.about-secondary-block img.global-image {
  max-height: 280px;
}

/* /About Us Page */

/* Service Page */
.service-image {
  height: 325px;
}

.service-detail-image {
  height: 450px;
}

/* /Service Page */

/* Testimonial  */
.testimonial-block.for-slide-two-items,
.testimonial-block.for-single-slide-item {
  /* transform: unset !important; */
}

/* /Testimonial  */

.error {
  color: red;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* /Loading Spinner */

.navbar-brand.w-nav-brand,
.footer-logo-block a[href="index.html"] {
  display: flex;
}

.w-icon-nav-menu:before {
  content: unset !important;
}

.contact-us-button {
  display: flex;
  justify-content: center;
}

.contact-us-text {
  display: flex;
  gap: 20px;
  align-items: center;
}

.content-link {
  text-decoration: none;
  color: #000;
}

.content-link:hover {
  color: var(--color--primary);
}

.breadcrumb-title {
  max-width: 100% !important;
}

.blog-detail-main-wrapper .bottom-call-to-action,
.contact-us-button .bottom-call-to-action {
  padding-left: 50px !important;
  padding-right: 50px !important;
  height: 60px !important;
}

.bottom-call-to-action .button-text,
.contact-us-button .bottom-call-to-action .button-text {
  font-size: 20px;
}

/* Media Queries Start */

@media screen and (min-width: 992px) and (max-width: 1400px) {
  .blog-detail-container {
    max-width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial-banner-block {
    display: none;
  }

  .hero-image-wrapper-two {
    justify-content: center;
  }

  .about-image-block-two img {
    height: 350px;
  }

  .footer-widget-summary {
    text-align: left;
  }

  .about-funfact-section.gap-for-video-section {
    padding-bottom: 119px;
  }

  p {
    text-align: justify;
  }

}