:root {
  --primary-color: #4cc2f8;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.text-color-primary {
  color: var(--primary-color);
}

/* NAVIGATION START */

.navbar-simple .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.nav-line .navbar-nav .nav-link:before {
  background: var(--primary-color);
}

.custom-logo {
  max-width: 200px;
}
/* NAVIGATION END */

/* FAQ START */

.faq {
  padding-block: 4rem;
}

.faq-container {
  background-color: white;
  border: none;
  box-shadow: 0px 0px 87px 5px rgba(220, 230, 237, 0.75);
  border-bottom: 1px solid #e8eaec;

  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 500ms;
}

.faq-container .initial {
  font-weight: bold;
  margin: 0px;
  color: #4ce4f6;
}

.faq-container .question-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  padding-right: 2rem;
}

.faq-container .arrow-icon i {
  padding: 0.7rem;
  border: none;
  border-radius: 100px;
  background-color: #ecf1f5;
  color: #7f8d99;

  transition: background-color 500ms, color 500ms;
}

.faq-container .question-container:hover .arrow-icon i {
  background-color: #1690f0;
  color: white;
}

.faq-container.active .question-container:hover .arrow-icon i {
  background-color: #1690f0;
  color: white;
}

.faq-container .question-container .question {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-container .question-container .question p {
  padding-right: 2rem;
  color: #1690f0;
  margin: 0px;
  font-weight: bold;
}

.faq-container .answer-container {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  padding-right: 4rem;
}

.faq-container .answer-container p:not(.initial) {
  color: #7f8d99;
  font-size: 14px;
}

.faq-container > .answer-wrapper {
  overflow: hidden;
}

.faq-container.active {
  grid-template-rows: auto 1fr;
}

.faq-container.active .question-container .arrow-icon i {
  background-color: var(--primary-color);
  transform: rotate(180deg);
  color: white;
}

/* FAQ END */

/* PROOF START */
.proof {
  background-image: url("/assets/img/proof.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}

.proof::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 0;
}

.proof > div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.proof > * {
  position: relative;
  z-index: 1;
}

.proof h4 {
  color: #fff;
  font-size: 52px;
  font-weight: 600;
}

.proof p {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.proof .info-title {
  color: #50ecff;
  font-size: 16px;
}

@media (max-width: 768px) {
  .proof .info-title {
    font-size: 14px;
  }

  .proof h4 {
    font-size: 32px;
  }

  .proof p {
    font-size: 14px;
  }
}

.proof .divider {
  width: 150px;
  height: 1px;
  margin-inline: auto;
  background-color: #50ecff;
  margin-block: 2rem;
}
/* PROOF END */

/* SERVICES START */
.custom-standalone-row .stand-img-des {
  padding-left: 0;
  padding-right: 30px;
}

/* SERVICES END */

/* TESTIMONIAL START */
.testimonial-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #2d2d2d;
  font-size: 19px;
  margin-bottom: 1rem;
}
/* TESTIMONIAL END */

/* PRODUCTS START */

.product-listing .product-filter-nav .product-category ul li.active a {
  color: #03a9f5;
}
.product-listing .product-filter-nav .product-category ul li.active span {
  color: #03a9f5;
}
/* PRODUCTS END */

/* ABOUT US START */
.why-us-standalone-row .stand-img-des {
  padding-left: 0;
  padding-right: 30px;
}
/* ABOUT US END */

/* PRODUCT-LISTING START */
.product-listing nav ul li a.active {
  color: white;
  background-color: var(--primary-color);
}
/* PRODUCT-LISTING END */

.sub-heading {
  font-size: 18px !important;
}

/* Breadcrumb Start */

.crumbs .breadcrumb li a {
  color: #f4f4f4;
}

/* Breadcrumb End */
