/* Header Css start here */
.eq-header {
  width: 100%;
  background-color: var(--color-primary);
  padding: 28px 0;
}
.eq-header__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.eq-header__main-logo {
  max-width: 244px;
  width: 100%;
}
.eq-header__action {
  max-width: calc(100% - 274px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.eq-header__nav {
}
.eq-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.eq-header__nav-list li {
  margin-right: 36px;
}
.eq-header__nav-list li:last-child {
  margin-right: 0;
}
.eq-header__nav-list li a {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: var(--color-light);
}
.eq-header__nav-list li a:hover {
  color: var(--color-primary-200);
}
.eq-header__action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.eq-header__action-button .btn.btn-find-supplier {
  background-color: var(--color-primary-200);
  color: var(--color-light);
  letter-spacing: 2px;
  padding: 12px 18px;
}
.eq-header__action-button .btn.btn-find-supplier:hover {
  background-color: var(--color-primary-100);
}
.eq-header__action-button .btn.btn-find-dentists {
  background-color: var(--color-secondary);
  color: var(--color-light);
  letter-spacing: 2px;
  padding: 12px 19px;
}
.eq-header__action-button .btn.btn-find-dentists:hover {
  background-color: rgba(94, 75, 154, 0.75);
}
.eq-header__action-button .btn.btn-find-order,
.eq-header__action-button .btn.btn-find-order-now {
  background-color: var(--color-primary-100);
  color: var(--color-light);
  letter-spacing: 2px;
  padding: 12px;
}
.eq-header__action-button .btn.btn-find-order:hover,
.eq-header__action-button .btn.btn-find-order-now:hover {
  background-color: var(--color-primary-200);
}
.eq-header__btn-hamburger-menu {
  display: none;
}

.eq-header__btn-hamburger-menu svg line {
  transition: var(--transition-primary);
}
.eq-header__btn-hamburger-menu.active svg line:first-child {
  transform: rotate(-45deg) translate(-15px, 20px)  ;
}
.eq-header__btn-hamburger-menu.active svg line:nth-child(2) {
  transform: rotate(44deg) translate(4px, -15px);
}
.eq-header__btn-hamburger-menu.active svg line:last-child {
  display: none;
}


body.browser-safari .eq-header__action-button .btn.btn-find-supplier{
  padding: 14px 18px 10px;
}
body.browser-safari .eq-header__action-button .btn.btn-find-dentists{
  padding: 14px 19px 10px;
}
body.browser-safari .eq-header__action-button .btn.btn-find-order, 
body.browser-safari .eq-header__action-button .btn.btn-find-order-now{
  padding: 14px 12px 10px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-header {
    padding: 1.609vw 0;
  }
  .eq-header__wrap {
    gap: 1.724vw;
  }
  .eq-header__main-logo {
    max-width: 14.023vw;
  }
  .eq-header__action {
    max-width: calc(100% - 15.747vw);
    gap: 1.724vw;
  }
  .eq-header__nav-list li {
    margin-right: 2.069vw;
  }
  .eq-header__nav-list li a {
    font-size: 1.149vw;
  }
  .eq-header__action-button {
    gap: 0.805vw;
  }
  .eq-header__action-button .btn.btn-find-supplier {
    letter-spacing: 0.115vw;
    padding: 0.69vw 1.034vw;
  }
  .eq-header__action-button .btn.btn-find-dentists {
    letter-spacing: 0.115vw;
    padding: 0.69vw 1.092vw;
  }
  .eq-header__action-button .btn.btn-find-order,
  .eq-header__action-button .btn.btn-find-order-now {
    letter-spacing: 0.115vw;
    padding: 0.69vw;
  }
  body.browser-safari .eq-header__action-button .btn.btn-find-supplier{
    padding: 0.922vw 1.186vw 0.659vw;
  }
  body.browser-safari .eq-header__action-button .btn.btn-find-dentists{
    padding: 0.922vw 1.252vw 0.659vw;
  }
  body.browser-safari .eq-header__action-button .btn.btn-find-order, 
  body.browser-safari .eq-header__action-button .btn.btn-find-order-now{
    padding: 0.922vw 0.791vw 0.659vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-product-detail__card {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .eq-header__action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80%;
    max-width: 100%;
    height: calc(100dvh - 119px);
    padding: 38px 20px;
    opacity: 0;
    transform: translate(-100%);
    pointer-events: none;
    z-index: 1111;
    transition: var(--transition-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-primary);
    gap: 0;
  }
  body.open-menu .eq-header__action {
    opacity: 1;
    transform: translate(0);
    pointer-events: all;
  }
  .eq-header__nav {
    flex-grow: 1;
    overflow: auto;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid var(--color-light);
  }
  .eq-header__nav-list {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .eq-header__nav-list li {
    margin: 0 0 38px 0;
  }
  .eq-header__nav-list li a {
    font-size: 48px;
    font-weight: 700;
  }
  .eq-header__btn-hamburger-menu {
    max-width: 34px;
    width: 100%;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .eq-header {
    padding: 25px 0;
  }
  .eq-header__action {
    width: 100%;
    height: calc(100dvh - 94px);
  }
  .eq-header__action-button {
    flex-wrap: wrap;
  }
  .eq-header__main-logo {
    max-width: 37px;
  }
  .eq-header__action-button .btn.btn-find-order,
  .eq-header__action-button .btn.btn-find-order-now {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 575px) {
  .eq-header__action-button .btn.btn-find-order,
  .eq-header__action-button .btn.btn-find-order-now {
    width: 100%;
  }
  .eq-header__action-button .btn.btn-find-supplier {
    width: 56%;
  }
  .eq-header__action-button .btn.btn-find-dentists {
    width: 40%;
  }
}
@media only screen and (max-width: 400px) {
  .eq-header__action-button .btn.btn-find-supplier {
    width: 55%;
    padding: 12px 14px;
  }
  .eq-header__action-button .btn {
    font-size: 18px;
  }
  .eq-header__action-button .btn.btn-find-dentists {
    width: 38%;
  }
}
/* Header Css end here */

/* eq-uspa css start here */
.eq-uspa {
  width: 100%;
  background-color: rgba(94, 75, 154, 0.75);
  padding: 9px 0;
  position: absolute;
  top: 0;
  z-index: 123;
}
.eq-uspa__wrap {
  height: 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.eq-uspa__wrap.slick-initialized {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.eq-uspa__wrap .slick-list {
  margin: 0 -8px;
}
.eq-uspa__wrap .slide {
  padding: 0 8px;
}
.eq-uspa__box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eq-uspa__box img {
  max-width: 19px;
  width: 100%;
}
.eq-uspa__box p {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--color-light);
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-uspa {
    padding: 0.517vw 0;
  }
  .eq-uspa__wrap .slick-list {
    margin: 0 -0.46vw;
  }
  .eq-uspa__wrap .slide {
    padding: 0 0.46vw;
  }
  .eq-uspa__box {
    gap: 0.46vw;
  }
  .eq-uspa__box img {
    max-width: 1.092vw;
  }
  .eq-uspa__box p {
    font-size: 0.92vw;
  }
}
/* eq-uspa css end here */

/* eq-hero-banner css start here */
.eq-hero-banner {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.eq-hero-banner__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-hero-banner__bg img,
.eq-hero-banner__bg video,
.eq-hero-banner__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-hero-banner > .cus-container-sm {
  position: relative;
  z-index: 11;
}
.eq-hero-banner__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-hero-banner__content {
  max-width: 410px;
  width: 100%;
  /* padding: 146px 0 120px; */
  padding: 142px 0 115px;
}
.eq-hero-banner__content h1 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
  color: var(--color-primary-100);
}
.eq-hero-banner__content h1 span {
  font-family: var(--font-tertiary);
  font-weight: 400;
}
.eq-hero-banner__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary-100);
  margin-top: 32px;
}
.eq-hero-banner__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 26px;
}
.eq-hero-banner__review-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 24px;
}
.eq-hero-banner__review-logo .trustpilot-logo {
  max-width: 213px;
  width: 100%;
}
.eq-hero-banner__review-logo .google-logo {
  max-width: 172px;
  width: 100%;
}
.eq-hero-banner__media {
  max-width: 822px;
  width: 100%;
}
.eq-hero-banner__media figure img {
  margin: 0% 0% 0%;
  max-width: 123%;
  width: 123%;
  z-index: -1;
  position: relative;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-hero-banner__content {
    max-width: 23.563vw;
    /* padding: 8.391vw 0 6.897vw; */
    padding: 8.161vw 0 6.609vw;
  }
  .eq-hero-banner__content h1 {
    font-size: 4.598vw;
  }
  .eq-hero-banner__content .text-desc {
    font-size: 1.034vw;
    margin-top: 1.839vw;
  }
  .eq-hero-banner__button {
    gap: 0.805vw;
    margin-top: 1.494vw;
  }
  .eq-hero-banner__review-logo {
    gap: 1.437vw;
    margin-top: 1.379vw;
  }
  .eq-hero-banner__review-logo .trustpilot-logo {
    max-width: 12.241vw;
  }
  .eq-hero-banner__review-logo .google-logo {
    max-width: 9.885vw;
  }
  .eq-hero-banner__media {
    max-width: 47.241vw;
  }
  .eq-hero-banner__media figure img {
    margin: -18% -10% -3%;
    max-width: 150%;
    width: 150%;
  }
  .eq-hero-banner.about-us .eq-hero-banner__media figure img {
    margin: 0 40% -1%;
    max-width: 76.2%;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .eq-hero-banner__bg img,
  .eq-hero-banner__bg video,
  .eq-hero-banner__bg iframe {
    object-position: bottom right;
  }
  .eq-hero-banner__wrap {
    justify-content: flex-start;
  }
  .eq-hero-banner__content {
    padding: 140px 0 230px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-hero-banner__bg::after {
    content: "";
    width: 470px;
    height: 100%;
    position: absolute;
    left: -294px;
    top: 0;
    bottom: 0;
    background: linear-gradient(
      272.04deg,
      rgba(255, 255, 255, 0) 1.76%,
      #ffffff 70.35%
    );
  }
  .eq-hero-banner__content h1 {
    font-size: 48px;
  }
  .eq-hero-banner__content {
    max-width: 220px;
    padding: 72px 0 220px;
  }
  .eq-hero-banner__content .text-desc {
    font-size: 16px;
    padding-right: 20px;
    margin-top: 26px;
  }
  .eq-hero-banner__button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .eq-hero-banner__review-logo {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-hero-banner__bg::after {
    left: -214px;
  }
  .eq-hero-banner__content .text-desc {
    padding-right: 80px;
  }
}
/* eq-hero-banner css end here */

/* eq-image-content css start here */
.eq-image-content {
  width: 100%;
}
.eq-image-content__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-image-content__left {
  max-width: 50%;
  width: 100%;
}
.eq-image-content__left figure {
  position: relative;
  padding-bottom: 89.771%;
  width: 100%;
}
.eq-image-content__left figure img,
.eq-image-content__left figure video,
.eq-image-content__left figure iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-image-content__right {
  max-width: 50%;
  width: 100%;
  padding: 100px 117px;
}
.eq-image-content__content {
  max-width: 565px;
  width: 100%;
}
.eq-image-content__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--color-primary-100);
  margin-bottom: 20px;
}
.eq-image-content__content h2 span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
}
.eq-image-content__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary-100);
  padding-right: 10px;
  margin-bottom: 28px;
}
.eq-image-content__trusted-by {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 42px;
}
.eq-image-content__trusted-by p {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary-100);
}
.eq-image-content__trusted-by-logo {
  max-width: 462px;
  width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-image-content__right {
    padding: 5.747vw 6.724vw;
  }
  .eq-image-content__content {
    max-width: 32.471vw;
  }
  .eq-image-content__content h2 {
    font-size: 2.874vw;
    line-height: 3.161vw;
    margin-bottom: 1.149vw;
  }
  .eq-image-content__content .text-desc {
    font-size: 0.92vw;
    padding-right: 0.575vw;
    margin-bottom: 1.609vw;
  }
  .eq-image-content__trusted-by {
    gap: 1.149vw;
    margin-top: 2.414vw;
  }
  .eq-image-content__trusted-by p {
    font-size: 0.805vw;
  }
  .eq-image-content__trusted-by-logo {
    max-width: 26.552vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-image-content__wrap {
    flex-direction: column-reverse;
  }
  .eq-image-content__left {
    max-width: 100%;
  }
  .eq-image-content__right {
    max-width: 730px;
    padding: 60px 20px;
  }
  .eq-image-content__content .text-desc {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-image-content__right {
    max-width: 540px;
    padding: 42px 20px;
  }
  .eq-image-content__trusted-by p {
    display: none;
  }
  .eq-image-content__trusted-by {
    margin-top: 52px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-image-content__content h2 {
    font-size: 46px;
  }
}
/* eq-image-content css end here */

/* eq-gallery-media css start here */
.eq-gallery-media {
  width: 100%;
}
.eq-gallery-media__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-gallery-media__wrap figure {
  max-width: 16.66%;
  width: 100%;
  position: relative;
  padding-bottom: 16.6%;
}
.eq-gallery-media__wrap figure img,
.eq-gallery-media__wrap figure video,
.eq-gallery-media__wrap figure iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .eq-gallery-media__wrap figure:nth-child(n + 5) {
    display: none;
  }
  .eq-gallery-media__wrap figure {
    max-width: 25%;
    padding-bottom: 25%;
  }
}
/* eq-gallery-media css end here */

/* eq-brightening-smiles css start here */
.eq-brightening-smiles {
  width: 100%;
  padding: 144px 0 134px;
  overflow: hidden;
  position: relative;
}
.eq-brightening-smiles:before {
  content: "";
  position: absolute;
  width: 34%;
  height: 100%;
  background-color: var(--color-light);
  z-index: 2;
  top: 0;
  left: 0;
}
.eq-brightening-smiles__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.eq-brightening-smiles__content {
  max-width: 485px;
  width: 100%;
  padding-top: 48px;
  z-index: 3;
  padding-right: 127px;
  background-color: var(--color-light);
}
.eq-brightening-smiles__content-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.eq-brightening-smiles__content figure {
  max-width: 69px;
  width: 100%;
  margin-bottom: 52px;
}
.eq-brightening-smiles__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-primary-100);
}
.eq-brightening-smiles__content h2 > span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 2.5px;
}
.eq-brightening-smiles__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary-100);
  margin-top: 22px;
}
.eq-brightening-smiles__content-wrap > span {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary-200);
  display: block;
  margin-top: 22px;
}
.eq-brightening-smiles__slider {
  max-width: 984px;
  width: 100%;
  z-index: 1;
}
.eq-brightening-smiles__slider-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: absolute;
  right: 30px;
}
.eq-brightening-smiles__slider-action .slick-arrow {
  max-width: 32px;
  width: 100%;
}
.eq-brightening-smiles__slider-action .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.eq-brightening-smiles__slider-wrap {
  width: 100%;
  height: 610px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin-top: 48px;
}
.eq-brightening-smiles__slider-wrap.slick-initialized {
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: all;
}
.eq-brightening-smiles__slider-wrap .slick-list {
  margin: 0 -6px;
  overflow: visible;
}
.eq-brightening-smiles__slider-wrap .slide {
  padding: 0 6px;
}
.eq-brightening-smiles__box {
  width: 100%;
}
.eq-brightening-smiles__box figure {
  width: 100%;
  position: relative;
  padding-bottom: 132.704%;
  border-radius: 15px;
  overflow: hidden;
}
.eq-brightening-smiles__box figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-brightening-smiles__box p {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(59, 101, 92, 0.61);
  margin-top: 18px;
}
.eq-brightening-smiles__box p b {
  color: var(--color-primary-200);
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 2;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-brightening-smiles {
    padding: 8.276vw 0 7.701vw;
  }
  .eq-brightening-smiles__content {
    max-width: 27.874vw;
    padding-top: 2.759vw;
    padding-right: 7.299vw;
  }
  .eq-brightening-smiles__content figure {
    max-width: 3.966vw;
    margin-bottom: 2.989vw;
  }
  .eq-brightening-smiles__content h2 {
    font-size: 2.874vw;
  }
  .eq-brightening-smiles__content h2 > span {
    letter-spacing: 0.144vw;
  }
  .eq-brightening-smiles__content .text-desc {
    font-size: 0.92vw;
    margin-top: 1.264vw;
  }
  .eq-brightening-smiles__content-wrap > span {
    font-size: 0.805vw;
    margin-top: 1.264vw;
  }
  .eq-brightening-smiles__slider {
    max-width: 56.552vw;
  }
  .eq-brightening-smiles__slider-action {
    gap: 0.46vw;
  }
  .eq-brightening-smiles__slider-action .slick-arrow {
    max-width: 1.839vw;
  }
  .eq-brightening-smiles__slider-wrap {
    margin-top: 2.759vw;
  }
  .eq-brightening-smiles__slider-wrap .slick-list {
    margin: 0 -0.345vw;
  }
  .eq-brightening-smiles__slider-wrap .slide {
    padding: 0 0.345vw;
  }
  .eq-brightening-smiles__box figure {
    border-radius: 0.862vw;
  }
  .eq-brightening-smiles__box p {
    font-size: 0.92vw;
    margin-top: 1.034vw;
  }
  .eq-brightening-smiles__box p b {
    font-size: 0.69vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-brightening-smiles:before {
    display: none;
  }
  .eq-brightening-smiles__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .eq-brightening-smiles {
    padding: 60px 0;
  }
  .eq-brightening-smiles__content {
    max-width: 100%;
    padding-top: 0;
    padding-right: 0;
  }
  .eq-brightening-smiles__slider {
    margin-top: 40px;
    max-width: 100%;
  }
  .eq-brightening-smiles__slider-wrap {
    margin-top: 0;
  }
  .eq-brightening-smiles__slider-action {
    margin-bottom: 16px;
    position: unset;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-brightening-smiles {
    padding: 64px 0 46px;
  }
  .eq-brightening-smiles__slider-wrap .slick-list {
    overflow: hidden;
    margin: 0;
  }
  .eq-brightening-smiles__slider-wrap .slide {
    padding: 0;
  }
  .eq-brightening-smiles__slider {
    margin-top: 34px;
  }
  .eq-brightening-smiles__box figure {
    padding-bottom: 133.6%;
  }
  .eq-brightening-smiles__slider-action {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-brightening-smiles__content h2 {
    font-size: 46px;
  }
}
/* eq-brightening-smiles css end here */

/* eq-how-the-process css start here */
.eq-how-the-process {
  width: 100%;
  padding: 77px 0 62px;
  overflow: hidden;
  position: relative;
}
.eq-how-the-process:before {
  content: "";
  position: absolute;
  width: 34%;
  height: 100%;
  background-color: var(--color-light);
  z-index: 2;
  top: 0;
  left: 0;
}
.eq-how-the-process__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.eq-how-the-process__content {
  max-width: 485px;
  width: 100%;
  padding-top: 42px;
  z-index: 3;
  padding-right: 75px;
  background-color: var(--color-light);
}
.eq-how-the-process__content-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.eq-how-the-process__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-primary-100);
  padding-right: 30px;
}
.eq-how-the-process__content h2 > span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 2.5px;
}
.eq-how-the-process__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary-100);
  margin: 22px 0;
  padding-right: 50px;
}
.eq-how-the-process__review-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 50px;
}
.eq-how-the-process__review-logo .trustpilot-logo {
  max-width: 213px;
  width: 100%;
}
.eq-how-the-process__review-logo .google-logo {
  max-width: 172px;
  width: 100%;
}

.eq-how-the-process__slider {
  max-width: 984px;
  width: 100%;
  z-index: 1;
}
.eq-how-the-process__slider-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  /* margin-bottom: 16px; */
  position: absolute;
  right: 30px;
}
.eq-how-the-process__slider-action .slick-arrow {
  max-width: 32px;
  width: 100%;
}
.eq-how-the-process__slider-action .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.eq-how-the-process__slider-wrap {
  width: 100%;
  height: 558px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: 48px;
}
.eq-how-the-process__slider-wrap.slick-initialized {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.eq-how-the-process__slider-wrap .slick-list {
  margin: 0 -6px;
  overflow: visible;
}
.eq-how-the-process__slider-wrap .slide {
  padding: 0 6px;
}
.eq-how-the-process__box {
  width: 100%;
}
.eq-how-the-process__box figure {
  width: 100%;
  position: relative;
  padding-bottom: 132.704%;
  border-radius: 15px;
  overflow: hidden;
}
.eq-how-the-process__box figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-how-the-process__box h3 {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--color-primary);
  margin-top: 22px;
}
.eq-how-the-process__box p,
.eq-how-the-process__box p a {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--color-primary-200) !important;
  margin-top: 12px;
}

.eq-how-the-process__box p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-how-the-process {
    padding: 4.425vw 0 3.563vw;
  }
  .eq-how-the-process__content {
    max-width: 27.874vw;
    padding-top: 2.414vw;
    padding-right: 4.31vw;
  }
  .eq-how-the-process__content h2 {
    font-size: 2.874vw;
    padding-right: 1.724vw;
  }
  .eq-how-the-process__content h2 > span {
    letter-spacing: 0.144vw;
  }
  .eq-how-the-process__content .text-desc {
    font-size: 0.92vw;
    margin: 1.264vw 0;
    padding-right: 2.874vw;
  }
  .eq-how-the-process__review-logo {
    gap: 1.437vw;
    margin-top: 2.874vw;
  }
  .eq-how-the-process__review-logo .trustpilot-logo {
    max-width: 12.241vw;
  }
  .eq-how-the-process__review-logo .google-logo {
    max-width: 9.885vw;
  }
  .eq-how-the-process__slider {
    max-width: 56.552vw;
  }
  .eq-how-the-process__slider-wrap {
    margin-top: 2.759vw;
  }
  .eq-how-the-process__slider-action {
    gap: 0.46vw;
    margin-bottom: 0.92vw;
  }
  .eq-how-the-process__slider-action .slick-arrow {
    max-width: 1.839vw;
  }
  .eq-how-the-process__slider-wrap .slick-list {
    margin: 0 -0.345vw;
  }
  .eq-how-the-process__slider-wrap .slide {
    padding: 0 0.345vw;
  }
  .eq-how-the-process__box figure {
    border-radius: 0.862vw;
  }
  .eq-how-the-process__box h3 {
    font-size: 0.92vw;
    margin-top: 1.264vw;
  }
  .eq-how-the-process__box p {
    font-size: 0.69vw;
    margin-top: 0.69vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-how-the-process:before {
    display: none;
  }
  .eq-how-the-process__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .eq-how-the-process {
    padding: 60px 0;
  }
  .eq-how-the-process__content {
    max-width: 100%;
    padding-top: 0;
    padding-right: 0;
  }
  .eq-how-the-process__slider {
    max-width: 100%;
    margin-top: 40px;
  }
  .eq-how-the-process__content .text-desc {
    padding: 0;
  }
  .eq-how-the-process__content h2 {
    padding: 0;
  }
  .eq-how-the-process__slider-action {
    margin-bottom: 20px;
    position: unset;
    right: 0;
  }
  .eq-how-the-process__slider-wrap {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-how-the-process {
    padding: 60px 0 46px;
  }
  .eq-how-the-process__slider-wrap .slick-list {
    overflow: hidden;
    margin: 0;
  }
  .eq-how-the-process__slider-wrap .slide {
    padding: 0;
  }
  .eq-how-the-process__slider {
    margin-top: 34px;
  }
  .eq-how-the-process__box figure {
    padding-bottom: 133.6%;
  }
  .eq-how-the-process__review-logo {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
  }
  .eq-how-the-process__content .text-desc {
    margin: 22px 0 35px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-how-the-process__content h2 {
    font-size: 46px;
  }
}
/* eq-how-the-process css end here */

/* eq-two-col css start here */
.eq-two-col {
  width: 100%;
}
.eq-two-col__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.eq-two-col__product-box {
  max-width: 50%;
  width: 100%;
  position: relative;
}
.eq-two-col__box-bg {
  width: 100%;
  position: relative;
  padding-bottom: 100.3%;
}
.eq-two-col__box-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(59, 101, 92, 0) 38.46%,
    #004c40 79.81%
  );
}
.eq-two-col__location-box .eq-two-col__box-bg::after {
  background: linear-gradient(180deg, rgba(59, 101, 92, 0) 0%, #004c40 100%);
}
.eq-two-col__box-bg img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-two-col__location-box {
  max-width: 50%;
  width: 100%;
  position: relative;
}
.eq-two-col__box-content {
  position: absolute;
  bottom: 90px;
  left: 80px;
}
.eq-two-col__box-content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  color: var(--color-light);
  margin-bottom: 26px;
}
.eq-two-col__box-content h2 span {
  font-family: var(--font-primary);
  font-style: Italic;
  font-weight: 400;
  letter-spacing: 2.5px;
}
.eq-two-col__box-content .btn img {
  max-width: 32px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-two-col__box-content {
    bottom: 5.172vw;
    left: 4.598vw;
  }
  .eq-two-col__box-content h2 {
    font-size: 2.874vw;
    margin-bottom: 1.494vw;
  }
  .eq-two-col__box-content h2 span {
    letter-spacing: 0.144vw;
  }
  .eq-two-col__box-content .btn img {
    max-width: 1.839vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-two-col__box-content {
    bottom: 40px;
    left: 30px;
  }
  .eq-two-col__box-content h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-two-col__wrap {
    flex-direction: column-reverse;
  }
  .eq-two-col__product-box,
  .eq-two-col__location-box {
    max-width: 100%;
  }
  .eq-two-col__box-bg {
    padding-bottom: 100%;
  }
  .eq-two-col__box-content {
    bottom: 38px;
    left: 25px;
    right: 20px;
  }
  .eq-two-col__box-content h2 {
    font-size: 50px;
  }
  .eq-two-col__box-content .btn {
    padding: 8px 19px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-two-col__box-content h2 {
    font-size: 42px;
  }
}
/* eq-two-col css end here */

/* eq-helped-people css start here */
.eq-helped-people {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.eq-helped-people__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.eq-helped-people__bg img,
.eq-helped-people__bg video,
.eq-helped-people__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-helped-people__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-helped-people__media {
  max-width: 53.5%;
  width: 100%;
  margin: -18px 0;
}
.eq-helped-people__media figure {
  position: relative;
  /* padding-bottom: 107.64%; */
  padding-bottom: 99%;
  width: 100%;
}
.eq-helped-people__media figure img,
.eq-helped-people__media figure video,
.eq-helped-people__media figure iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-helped-people__content-wrap {
  max-width: 46.5%;
  width: 100%;
  padding: 100px 134px;
}
.eq-helped-people__content {
  max-width: 452px;
  width: 100%;
}
.eq-helped-people__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--color-light);
  margin-bottom: 20px;
}
.eq-helped-people__content h2 span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
}
.eq-helped-people__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-light);
  margin-bottom: 26px;
}
.eq-helped-people__content > span {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-primary-200);
  display: block;
  margin-bottom: 46px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-helped-people__content-wrap {
    padding: 5.747vw 7.701vw;
  }
  .eq-helped-people__content {
    max-width: 25.977vw;
  }
  .eq-helped-people__content h2 {
    font-size: 2.874vw;
    line-height: 3.161vw;
    margin-bottom: 1.149vw;
  }
  .eq-helped-people__content .text-desc {
    font-size: 0.92vw;
    margin-bottom: 1.494vw;
  }
  .eq-helped-people__content > span {
    font-size: 0.805vw;
    margin-bottom: 2.644vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-helped-people__wrap {
    flex-direction: column-reverse;
  }
  .eq-helped-people__media {
    display: none;
  }
  .eq-helped-people__content-wrap {
    max-width: 730px;
    padding: 66px 20px;
  }
  .eq-helped-people__content {
    max-width: 100%;
  }
  .eq-helped-people__content .text-desc {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-helped-people__content-wrap {
    max-width: 540px;
  }
  .eq-helped-people__content > span {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-helped-people__content h2 {
    font-size: 46px;
  }
}
/* eq-helped-people css end here */

/* eq-why-choose css start here */
.eq-why-choose {
  width: 100%;
  padding: 54px 0 72px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-primary-400);
}
.eq-why-choose:before {
  content: "";
  position: absolute;
  width: 34%;
  height: 100%;
  background-color: var(--color-primary-400);
  z-index: 2;
  top: 0;
  left: 0;
}
.eq-why-choose__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.eq-why-choose__content {
  max-width: 485px;
  width: 100%;
  padding-top: 12px;
  z-index: 3;
  padding-right: 75px;
  background-color: var(--color-primary-400);
}
.eq-why-choose__content-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.eq-why-choose__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: #084f44;
  padding-right: 30px;
}
.eq-why-choose__content h2 > span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 2.5px;
}
.eq-why-choose__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-primary-100);
  margin: 22px 0;
  padding-right: 32px;
}
.eq-why-choose__review-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 50px;
}
.eq-why-choose__review-logo .trustpilot-logo {
  max-width: 213px;
  width: 100%;
}
.eq-why-choose__review-logo .google-logo {
  max-width: 172px;
  width: 100%;
}

.eq-why-choose__slider {
  max-width: 984px;
  width: 100%;
  z-index: 1;
}
.eq-why-choose__slider-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: absolute;
  right: 30px;
}
.eq-why-choose__slider-action .slick-arrow {
  max-width: 32px;
  width: 100%;
}
.eq-why-choose__slider-action .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.eq-why-choose__slider-wrap {
  width: 100%;
  height: 523px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: 74px;
}
.eq-why-choose__slider-wrap.slick-initialized {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.eq-why-choose__slider-wrap .slick-list {
  margin: 0 -37px;
  overflow: visible;
}
.eq-why-choose__slider-wrap .slide {
  padding: 0 37px;
}
.eq-why-choose__box {
  width: 100%;
}
.eq-why-choose__box figure {
  width: 100%;
  position: relative;
  padding-bottom: 250px;
  overflow: hidden;
  max-width: 255px;
  border-radius: 50%;
}
.eq-why-choose__box figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-why-choose__box .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary);
  margin-top: 24px;
}
.eq-why-choose__box span {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--color-primary-200);
  display: block;
  margin-top: 6px;
}
.eq-why-choose__google-widget {
  width: 100%;
  z-index: 111;
  position: relative;
  border-top: 1px solid rgba(118, 157, 144, 0.57);
  padding-top: 46px;
  margin-top: 70px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-why-choose {
    padding: 3.103vw 0 4.138vw;
  }
  .eq-why-choose__content {
    max-width: 27.874vw;
    padding-top: 0.69vw;
    padding-right: 4.31vw;
  }
  .eq-why-choose__content h2 {
    font-size: 2.874vw;
    padding-right: 1.724vw;
  }
  .eq-why-choose__content h2 > span {
    letter-spacing: 0.144vw;
  }
  .eq-why-choose__content .text-desc {
    font-size: 0.862vw;
    margin: 1.264vw 0;
    padding-right: 1.839vw;
  }
  .eq-why-choose__review-logo {
    gap: 1.437vw;
    margin-top: 2.874vw;
  }
  .eq-why-choose__review-logo .trustpilot-logo {
    max-width: 12.241vw;
  }
  .eq-why-choose__review-logo .google-logo {
    max-width: 9.885vw;
  }
  .eq-why-choose__slider {
    max-width: 56.552vw;
  }
  .eq-why-choose__slider-wrap {
    margin-top: 4.253vw;
  }
  .eq-why-choose__slider-action {
    gap: 0.46vw;
    right: 1.724vw;
  }
  .eq-why-choose__slider-action .slick-arrow {
    max-width: 1.839vw;
  }
  .eq-why-choose__slider-wrap .slick-list {
    margin: 0 -2.126vw;
  }
  .eq-why-choose__slider-wrap .slide {
    padding: 0 2.126vw;
  }
  .eq-why-choose__box figure {
    max-width: 14.655vw;
    padding-bottom: 14.368vw;
  }
  .eq-why-choose__box .text-desc {
    font-size: 0.92vw;
    margin-top: 1.379vw;
  }
  .eq-why-choose__box span {
    font-size: 0.69vw;
    margin-top: 0.345vw;
  }
  .eq-why-choose__google-widget {
    border-top: 0.057vw solid rgba(118, 157, 144, 0.57);
    padding-top: 2.644vw;
    margin-top: 4.023vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-why-choose:before {
    display: none;
  }
  .eq-why-choose__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .eq-why-choose {
    padding: 60px 0;
  }
  .eq-why-choose__content {
    max-width: 100%;
    padding-top: 0;
    padding-right: 0;
  }
  .eq-why-choose__slider {
    max-width: 100%;
    margin-top: 38px;
  }
  .eq-why-choose__content h2 {
    padding: 0;
  }
  .eq-why-choose__slider-wrap {
    margin-top: 0;
  }
  .eq-why-choose__slider-action {
    position: unset;
    right: 0;
    margin-bottom: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-why-choose {
    padding: 56px 0 18px;
  }
  .eq-why-choose__slider-wrap .slick-list {
    margin: 0 -17px;
  }
  .eq-why-choose__slider-wrap .slide {
    padding: 0 17px;
  }
  .eq-why-choose__slider-action {
    justify-content: flex-start;
  }
  .eq-why-choose__review-logo {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
  }
  .eq-why-choose__content .text-desc {
    margin: 18px 0 24px;
    font-size: 15px;
    line-height: 1.7;
    padding-right: 0;
  }
  .eq-why-choose__google-widget {
    padding-top: 25px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-why-choose__content h2 {
    font-size: 46px;
  }
}
/* eq-why-choose css end here */

/* eq-find-supplier css start here */
.eq-find-supplier {
  width: 100%;
  padding: 90px 0;
  position: relative;
  min-height: 936px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.eq-find-supplier .cus-container {
  position: relative;
  z-index: 1;
}
.eq-find-supplier__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.eq-find-supplier__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(39, 39, 39, 0.066) 0%,
    rgba(39, 39, 39, 0.6) 100%
  );
}
.eq-find-supplier__bg img,
.eq-find-supplier__bg video,
.eq-find-supplier__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-find-supplier__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.eq-find-supplier__wrap h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-light);
  margin-bottom: 26px;
  text-align: center;
}
.eq-find-supplier__wrap h2 span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
}
.eq-find-supplier__wrap p {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--color-light);
  margin-bottom: 28px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-find-supplier {
    padding: 5.172vw 0;
    min-height: 53.793vw;
  }
  .eq-find-supplier__wrap h2 {
    font-size: 2.874vw;
    margin-bottom: 1.494vw;
  }
  .eq-find-supplier__wrap p {
    font-size: 0.92vw;
    margin-bottom: 1.609vw;
  }
}
/* @media only screen and (max-width: 767px) {
  .eq-find-supplier__wrap .btn {
    display: none;
  }
} */
@media only screen and (max-width: 400px) {
  .eq-find-supplier__wrap h2 {
    font-size: 46px;
  }
}
/* eq-find-supplier css end here */

/* eq-latest-news css start here */
.eq-latest-news {
  width: 100%;
  padding: 106px 0 60px;
  overflow: hidden;
}
.eq-latest-news__wrap {
  width: 100%;
}
.eq-latest-news__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.eq-latest-news__title-content {
  max-width: 1396px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  position: relative;
}
.eq-latest-news__title-content::after {
  content: "";
  width: 76%;
  height: 1px;
  background-color: var(--color-primary-200);
  position: absolute;
  right: 0;
  bottom: 28px;
}
.eq-latest-news__title-content figure {
  max-width: 56px;
  width: 100%;
}
.eq-latest-news__title-content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--color-primary-100);
}
.eq-latest-news__slider-action {
  max-width: 71px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
.eq-latest-news__slider-action .slick-arrow {
  max-width: 32px;
  width: 100%;
}
.eq-latest-news__slider-action .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: auto;
}
.eq-latest-news__content {
  width: 100%;
}
.eq-latest-news__slider {
  width: 100%;
  height: 650px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.eq-latest-news__slider.slick-initialized {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.eq-latest-news__slider .slick-list {
  overflow: visible;
  margin: 0 -6px;
}
.eq-latest-news__slider .slide {
  padding: 0 6px;
}
.eq-latest-news__box {
  width: 100%;
  display: block;
}
.eq-latest-news__box figure {
  width: 100%;
  position: relative;
  padding-bottom: 133.07%;
  border-radius: 15px;
  overflow: hidden;
}
.eq-latest-news__box figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-latest-news__box h3 {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-primary);
  margin-top: 16px;
}
.eq-latest-news__box span {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--color-primary-200);
  display: block;
  margin-top: 12px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-latest-news {
    padding: 6.092vw 0 3.448vw;
  }
  .eq-latest-news__title {
    gap: 1.149vw;
    margin-bottom: 1.839vw;
  }
  .eq-latest-news__title-content {
    max-width: 80.23vw;
    gap: 1.494vw;
  }
  .eq-latest-news__title-content::after {
    height: 0.057vw;
    bottom: 1.609vw;
  }
  .eq-latest-news__title-content figure {
    max-width: 3.218vw;
  }
  .eq-latest-news__title-content h2 {
    font-size: 1.724vw;
  }
  .eq-latest-news__slider-action {
    max-width: 4.08vw;
    gap: 0.402vw;
  }
  .eq-latest-news__slider-action .slick-arrow {
    max-width: 1.839vw;
  }
  .eq-latest-news__slider .slick-list {
    margin: 0 -0.345vw;
  }
  .eq-latest-news__slider .slide {
    padding: 0 0.345vw;
  }
  .eq-latest-news__box figure {
    border-radius: 0.862vw;
  }
  .eq-latest-news__box h3 {
    font-size: 1.494vw;
    margin-top: 0.92vw;
  }
  .eq-latest-news__box span {
    font-size: 0.69vw;
    margin-top: 0.69vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-latest-news {
    padding: 60px 0;
  }
  .eq-latest-news__title-content::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .eq-latest-news {
    padding: 50px 0 60px;
  }
  .eq-latest-news__title-content {
    flex-wrap: wrap;
  }
  .eq-latest-news__title {
    align-items: flex-end;
  }
  .eq-latest-news__slider .slick-list {
    overflow: hidden;
  }
}
/* eq-latest-news css end here */

/* eq-our-journey css start here */
.eq-our-journey {
  width: 100%;
  padding: 70px 0;
  background-color: var(--color-primary-200);
}
.eq-our-journey__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  margin-bottom: 22px;
}
.eq-our-journey__title figure {
  max-width: 56px;
  width: 100%;
}
.eq-our-journey__title h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--color-light);
}
.eq-our-journey__title h2 span {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--color-light);
}
.eq-our-journey__content {
  width: 100%;
}
.eq-our-journey__bottom {
  width: 100%;
  margin-top: 36px;
}
.eq-our-journey__bottom h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 35px;
  line-height: 1.1;
  color: var(--color-light);
  text-transform: uppercase;
}
.eq-our-journey__bottom h2 span {
  font-family: var(--font-tertiary);
  font-weight: 400;
  font-style: Italic;
  font-size: 35px;
  line-height: 1.1;
  color: var(--color-light);
}
.eq-our-journey__bottom p {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-primary-300);
  margin-top: 8px;
}
.eq-our-journey__bottom form {
  width: 100%;
}
.eq-our-journey__form-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 22px;
}
.eq-our-journey__form-wrap .c-form-group .c-form-control {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: capitalize;
  color: var(--color-primary);
  border: none;
  outline: none;
  background-color: var(--color-light);
  border-radius: 30px;
  padding: 14px 25px;
  max-width: 243px;
  width: 100%;
}
.eq-our-journey__form-wrap .c-form-group .c-form-control[type="email"] {
  max-width: 330px;
  min-width: 330px;
}
.eq-our-journey__form-wrap
  .c-form-group
  .c-form-control::-webkit-input-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-our-journey__form-wrap .c-form-group .c-form-control::-moz-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-our-journey__form-wrap .c-form-group .c-form-control:-ms-input-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-our-journey__form-wrap .c-form-group .c-form-control:-moz-placeholder {
  color: var(--color-primary);
  opacity: 1;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-our-journey {
    padding: 4.023vw 0;
  }
  .eq-our-journey__title {
    gap: 1.494vw;
    margin-bottom: 1.264vw;
  }
  .eq-our-journey__title figure {
    max-width: 3.218vw;
  }
  .eq-our-journey__title h2 {
    font-size: 1.724vw;
  }
  .eq-our-journey__title h2 span {
    font-size: 1.149vw;
  }
  .eq-our-journey__bottom {
    margin-top: 2.069vw;
  }
  .eq-our-journey__bottom h2 {
    font-size: 2.011vw;
  }
  .eq-our-journey__bottom h2 span {
    font-size: 2.011vw;
  }
  .eq-our-journey__bottom p {
    font-size: 0.862vw;
    margin-top: 0.46vw;
  }
  .eq-our-journey__form-wrap {
    gap: 0.46vw;
    margin-top: 1.264vw;
  }
  .eq-our-journey__form-wrap .c-form-group .c-form-control {
    font-size: 1.149vw;
    letter-spacing: 0.08vw;
    border-radius: 1.724vw;
    padding: 0.805vw 1.437vw;
    max-width: 13.966vw;
  }
  .eq-our-journey__form-wrap .c-form-group .c-form-control[type="email"] {
    max-width: 18.966vw;
    min-width: 18.966vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-our-journey {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-our-journey__title figure {
    display: none;
  }
  .eq-our-journey__title h2 {
    line-height: 1.3;
  }
  .eq-our-journey__form-wrap .c-form-group {
    width: 100%;
  }
  .eq-our-journey__form-wrap .c-form-group .c-form-control {
    max-width: 100%;
  }
  .eq-our-journey__form-wrap .c-form-group .c-form-control[type="email"] {
    min-width: 100%;
    max-width: 100%;
  }
  .eq-our-journey__form-wrap {
    gap: 13px;
    margin-top: 40px;
  }
  .eq-our-journey__form-wrap .c-form-group:last-child {
    margin-top: 20px;
  }
  .eq-our-journey__bottom {
    margin-top: 40px;
  }
  .eq-our-journey__title {
    margin-bottom: 40px;
  }
}
/* eq-our-journey css end here */

/* eq-footer css start here */
.eq-footer {
  width: 100%;
  padding: 100px 0 78px;
  position: relative;
  z-index: 1;
}
.eq-footer__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.eq-footer__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #003029 0%, rgba(8, 79, 68, 0) 100%);
}
.eq-footer__bg img,
.eq-footer__bg video,
.eq-footer__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-footer > .cus-container {
  position: relative;
  z-index: 1;
}
.eq-footer__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.eq-footer__logo-wrap {
  max-width: 632px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.eq-footer__logo {
  max-width: 410px;
  width: 100%;
}
.eq-footer__social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.eq-footer__social-list li a {
  max-width: 38px;
  width: 100%;
  display: inline-block;
}
.eq-footer__social-list li a:hover {
  opacity: 0.5;
}
.eq-footer__review-logo {
  max-width: 292px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.eq-footer__trustpilot-logo {
  max-width: 120px;
  width: 100%;
}
.eq-footer__google-logo {
  max-width: 130px;
  width: 100%;
}
.eq-footer__nav {
  max-width: 370px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  top: 20px;
}
.eq-footer__nav-list li {
  display: flex;
  margin-bottom: 12px;
}
.eq-footer__nav-list li a {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-light);
}
.eq-footer__nav-list li a:hover {
  color: var(--color-primary-200);
}
.eq-footer__bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(59, 101, 92, 0.61);
  margin-top: 82px;
}
.eq-footer__bottom p {
  font-family: var(--font-theme-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-primary-100);
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-footer {
    padding: 5.747vw 0 4.483vw;
  }
  .eq-footer__top {
    gap: 2.299vw;
  }
  .eq-footer__logo-wrap {
    max-width: 36.322vw;
    gap: 1.149vw;
  }
  .eq-footer__logo {
    max-width: 23.563vw;
  }
  .eq-footer__social-list {
    gap: 0.23vw;
  }
  .eq-footer__social-list li a {
    max-width: 2.184vw;
  }
  .eq-footer__review-logo {
    max-width: 16.782vw;
    gap: 1.149vw;
  }
  .eq-footer__trustpilot-logo {
    max-width: 6.897vw;
  }
  .eq-footer__google-logo {
    max-width: 7.471vw;
  }
  .eq-footer__nav {
    max-width: 21.264vw;
    top: 1.149vw;
  }
  .eq-footer__nav-list li {
    margin-bottom: 0.69vw;
  }
  .eq-footer__nav-list li a {
    font-size: 0.862vw;
  }
  .eq-footer__bottom {
    padding-top: 1.379vw;
    border-top: 0.057vw solid rgba(59, 101, 92, 0.61);
    margin-top: 4.713vw;
  }
  .eq-footer__bottom p {
    font-size: 0.92vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-footer__top {
    flex-wrap: wrap;
  }
  .eq-footer__nav {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .eq-footer {
    padding: 50px 0;
  }
  .eq-footer__logo {
    max-width: 87px;
  }
  .eq-footer__review-logo {
    max-width: 100%;
  }
  .eq-footer__trustpilot-logo {
    max-width: 150px;
  }
  .eq-footer__google-logo {
    max-width: 160px;
  }
  .eq-footer__nav {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 44px;
  }
  .eq-footer__nav-list {
    width: 100%;
  }
  .eq-footer__bottom {
    padding-top: 30px;
    margin-top: 42px;
  }
  .eq-footer__bg img,
  .eq-footer__bg video,
  .eq-footer__bg iframe {
    object-position: left;
  }
  .eq-footer__top {
    gap: 62px;
  }
}
/* eq-footer css end here */

/* Dentists banner page css start here */
.eq-hero-banner.dentists {
  padding: 240px 0 210px;
}
.eq-hero-banner.dentists .eq-hero-banner__wrap {
  justify-content: flex-start;
}
.eq-hero-banner.dentists .eq-hero-banner__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(94, 75, 154, 0.6) 0%, #5e4b9a 100%);
}
.eq-hero-banner.dentists .eq-hero-banner__content {
  max-width: 694px;
  padding: 0;
}
.eq-hero-banner.dentists .eq-hero-banner__content h1 {
  color: var(--color-light);
  font-size: 90px;
}
.eq-hero-banner.dentists .eq-hero-banner__content h1 span {
  font-size: 100px;
}
.eq-hero-banner.dentists .eq-hero-banner__content .text-desc {
  color: var(--color-light);
  max-width: 526px;
  width: 100%;
}
.eq-hero-banner.dentists .eq-hero-banner__review-logo .trustpilot-logo {
  max-width: 279px;
}
.eq-hero-banner.dentists .eq-hero-banner__review-logo .google-logo {
  max-width: 130px;
}
.eq-hero-banner.dentists .eq-hero-banner__review-logo {
  gap: 16px;
  margin-top: 28px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-hero-banner.dentists {
    padding: 13.793vw 0 12.069vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content {
    max-width: 39.885vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content h1 {
    font-size: 5.172vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content h1 span {
    font-size: 5.747vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content .text-desc {
    max-width: 30.23vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__review-logo .trustpilot-logo {
    max-width: 16.034vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__review-logo .google-logo {
    max-width: 7.471vw;
  }
  .eq-hero-banner.dentists .eq-hero-banner__review-logo {
    gap: 0.92vw;
    margin-top: 1.609vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-hero-banner.dentists {
    padding: 100px 0 120px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-hero-banner.dentists {
    padding: 73px 0 50px;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content h1 {
    font-size: 48px;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content h1 span {
    font-size: 55px;
  }
  .eq-hero-banner.dentists .eq-hero-banner__wrap {
    padding-right: 47px;
  }
  .eq-hero-banner.dentists .eq-hero-banner__review-logo {
    gap: 30px;
    margin-top: 32px;
  }
  .eq-hero-banner.dentists .eq-hero-banner__content .text-desc {
    margin-top: 36px;
    padding-right: 0;
  }
}
/* Dentists banner page css end here */

/* eq-teeth-whitening-brand css start here */
.eq-teeth-whitening-brand {
  width: 100%;
  background-color: var(--color-primary-200);
}
.eq-teeth-whitening-brand__main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-teeth-whitening-brand__media {
  max-width: 52.7%;
  width: 100%;
}
.eq-teeth-whitening-brand__media figure {
  position: relative;
  padding-bottom: 94.83%;
  width: 100%;
}
.eq-teeth-whitening-brand__media figure img,
.eq-teeth-whitening-brand__media figure video,
.eq-teeth-whitening-brand__media figure iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-teeth-whitening-brand__content {
  max-width: 47.3%;
  width: 100%;
  padding: 90px 90px 90px 245px;
}
.eq-teeth-whitening-brand__wrap {
  max-width: 565px;
  width: 100%;
}
.eq-teeth-whitening-brand__wrap h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
  color: var(--color-light);
  margin-bottom: 18px;
}
.eq-teeth-whitening-brand__wrap h2 span {
  font-family: var(--font-tertiary);
  font-weight: 400;
  font-style: italic;
}
.eq-teeth-whitening-brand__wrap .text-desc {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-light);
  margin-bottom: 36px;
}
.eq-teeth-whitening-brand__list {
  width: 100%;
}
.eq-teeth-whitening-brand__list li {
  width: 100%;
  margin-bottom: 5px;
  gap: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.eq-teeth-whitening-brand__list li img {
  max-width: 27px;
  width: 100%;
}
.eq-teeth-whitening-brand__list li p {
  font-size: 20px;
  font-family: var(--font-theme-primary);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-light);
}
.eq-teeth-whitening-brand__list li:last-child {
  margin-bottom: 0;
}
.eq-teeth-whitening-brand__trusted-list {
  width: 100%;
  max-width: 332px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  margin-top: 50px;
}
.eq-teeth-whitening-brand__trusted-list li figure {
  max-width: 143px;
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
}
.eq-teeth-whitening-brand__trusted-list li figure img {
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-teeth-whitening-brand__content {
    padding: 5.172vw 5.172vw 5.172vw 14.08vw;
  }
  .eq-teeth-whitening-brand__wrap {
    max-width: 32.471vw;
  }
  .eq-teeth-whitening-brand__wrap h2 {
    font-size: 2.874vw;
    line-height: 3.161vw;
    margin-bottom: 1.034vw;
  }
  .eq-teeth-whitening-brand__wrap .text-desc {
    font-size: 1.034vw;
    margin-bottom: 2.069vw;
  }
  .eq-teeth-whitening-brand__list li {
    margin-bottom: 0.287vw;
    gap: 0.632vw;
  }
  .eq-teeth-whitening-brand__list li img {
    max-width: 1.552vw;
  }
  .eq-teeth-whitening-brand__list li p {
    font-size: 1.149vw;
  }
  .eq-teeth-whitening-brand__trusted-list {
    max-width: 25vw;
    gap: 1.724vw;
    margin-top: 2.874vw;
  }
  .eq-teeth-whitening-brand__trusted-list li figure {
    max-width: 8.218vw;
    height: 3.793vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-teeth-whitening-brand__main {
    flex-direction: column;
  }
  .eq-teeth-whitening-brand__media {
    max-width: 100%;
  }
  .eq-teeth-whitening-brand__content {
    max-width: 730px;
    padding: 60px 20px;
  }
  .eq-teeth-whitening-brand__wrap .text-desc {
    padding-right: 0;
  }
  .eq-teeth-whitening-brand__wrap {
    max-width: 100%;
  }
  .eq-teeth-whitening-brand__trusted-list {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .eq-teeth-whitening-brand__content {
    max-width: 540px;
    padding: 53px 20px 60px;
  }
  .eq-teeth-whitening-brand__wrap h2 {
    text-transform: capitalize;
    margin-bottom: 28px;
  }
  .eq-teeth-whitening-brand__trusted-by p {
    display: none;
  }
  .eq-teeth-whitening-brand__trusted-by {
    margin-top: 52px;
  }
  .eq-teeth-whitening-brand__wrap .text-desc {
    margin-bottom: 54px;
  }
  .eq-teeth-whitening-brand__list li p {
    font-size: 17px;
  }
  .eq-teeth-whitening-brand__trusted-list {
    max-width: 100%;
    gap: 25px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-teeth-whitening-brand__wrap h2 {
    font-size: 46px;
  }
}
/* eq-teeth-whitening-brand css end here */

/* eq-newsletter css start here */
.eq-newsletter {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 128px 0;
}
.eq-newsletter__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.eq-newsletter__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(118, 157, 144, 0.81) 0%,
    rgba(0, 76, 64, 0.82) 100%
  );
}
.eq-newsletter__bg img,
.eq-newsletter__bg video,
.eq-newsletter__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-newsletter > .cus-container {
  position: relative;
  z-index: 1;
}
.eq-newsletter__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 83px;
}
.eq-newsletter__content {
  max-width: 554px;
  width: 100%;
}
.eq-newsletter__content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  color: var(--color-light);
}
.eq-newsletter__content h2 span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: Italic;
  font-size: 55px;
}
.eq-newsletter__content p {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-light);
  margin-top: 28px;
}
.eq-newsletter__form {
  max-width: 528px;
  width: 100%;
}
.eq-newsletter__form form {
  width: 100%;
}
.eq-newsletter__form-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}
.eq-newsletter__form-wrap .c-form-group {
  max-width: calc(50% - 9px);
  width: 100%;
}
.eq-newsletter__form-wrap .c-form-group .c-form-control {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: capitalize;
  color: var(--color-primary);
  border: none;
  outline: none;
  background-color: var(--color-light);
  border-radius: 15px;
  padding: 21px 25px;
  width: 100%;
}
.eq-newsletter__form-wrap .c-form-group:nth-child(3) {
  max-width: 432px;
}
.eq-newsletter__form-wrap .c-form-group:last-child {
  max-width: 78px;
}
.eq-newsletter__form-wrap .c-form-group .btn.btn-submit {
  padding: 12px 12px;
  width: 100%;
  height: 66px;
}
.eq-newsletter__form-wrap .c-form-group .btn.btn-submit:hover img {
  transform: none;
}
.eq-newsletter__form-wrap .c-form-group .btn.btn-submit:hover {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-200);
}
.eq-newsletter__form-wrap .c-form-group .btn.btn-submit img {
  max-width: 37px;
  margin: 0;
}
.eq-newsletter__form-wrap
  .c-form-group
  .c-form-control::-webkit-input-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-newsletter__form-wrap .c-form-group .c-form-control::-moz-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-newsletter__form-wrap .c-form-group .c-form-control:-ms-input-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
.eq-newsletter__form-wrap .c-form-group .c-form-control:-moz-placeholder {
  color: var(--color-primary);
  opacity: 1;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-newsletter {
    padding: 7.356vw 0;
  }
  .eq-newsletter__wrap {
    gap: 4.77vw;
  }
  .eq-newsletter__content {
    max-width: 31.839vw;
  }
  .eq-newsletter__content h2 {
    font-size: 2.874vw;
  }
  .eq-newsletter__content h2 span {
    font-size: 3.161vw;
  }
  .eq-newsletter__content p {
    font-size: 0.92vw;
    margin-top: 1.609vw;
  }
  .eq-newsletter__form {
    max-width: 30.345vw;
  }
  .eq-newsletter__form-wrap {
    gap: 1.034vw;
  }
  .eq-newsletter__form-wrap .c-form-group {
    max-width: calc(50% - 0.517vw);
  }
  .eq-newsletter__form-wrap .c-form-group .c-form-control {
    font-size: 1.149vw;
    letter-spacing: 0.08vw;
    border-radius: 0.862vw;
    padding: 1.207vw 1.437vw;
  }
  .eq-newsletter__form-wrap .c-form-group:nth-child(3) {
    max-width: 24.828vw;
  }
  .eq-newsletter__form-wrap .c-form-group:last-child {
    max-width: 4.483vw;
  }
  .eq-newsletter__form-wrap .c-form-group .btn.btn-submit {
    padding: 0.69vw 0.69vw;
    height: 3.793vw;
  }
  .eq-newsletter__form-wrap .c-form-group .btn.btn-submit img {
    max-width: 2.126vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-newsletter__wrap {
    flex-wrap: wrap;
  }
  .eq-newsletter__content {
    max-width: 100%;
  }
  .eq-newsletter__form {
    max-width: 100%;
  }
  .eq-newsletter__form-wrap .c-form-group:nth-child(3) {
    max-width: 593px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-newsletter {
    padding: 60px 0;
  }
  .eq-newsletter__form-wrap .c-form-group,
  .eq-newsletter__form-wrap .c-form-group:nth-child(3) {
    max-width: 100%;
  }
  .eq-newsletter__form-wrap .c-form-group .c-form-control {
    padding: 16px 25px;
  }
  .eq-newsletter__wrap {
    gap: 60px;
  }
}
/* eq-newsletter css end here */

/* eq-sign-up-form css start here */
.eq-sign-up-form {
  width: 100%;
  padding: 150px 0 80px;
}
.eq-sign-up-form__wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
.eq-sign-up-form__text-details {
  max-width: 350px;
  width: 100%;
}
.eq-sign-up-form__text-details figure {
  max-width: 304px;
  width: 100%;
}
.eq-sign-up-form__text-details h4 {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  margin-top: 52px;
}
.eq-sign-up-form__list {
  width: 100%;
  padding-left: 17px;
  margin-top: 34px;
}
.eq-sign-up-form__list li {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  padding-left: 16px;
  position: relative;
}
.eq-sign-up-form__list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background-color: var(--color-grey);
  border-radius: 20px;
}
.eq-sign-up-form__form form {
  width: 100%;
}
.eq-sign-up-form__form {
  max-width: 740px;
  width: 100%;
  /* background-color: rgba(94, 75, 154, 0.22); */
  border-radius: 15px;
  /* padding: 43px 58px 56px; */
}
.eq-sign-up-form__form-title {
  width: 100%;
}
.eq-sign-up-form__form-title h3 {
  font-family: var(--font-theme-primary);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.8;
  color: var(--color-grey);
}
.eq-sign-up-form__form-title p {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  margin-top: 30px;
}
.eq-sign-up-form__form-wrap {
  width: 100%;
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.eq-sign-up-form__form-wrap .c-form-group {
  width: 100%;
}
.eq-sign-up-form__form-wrap .c-form-control {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  padding: 20px 33px;
  border-radius: 15px;
  background-color: var(--color-light);
  border: 0;
  outline: none;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  min-height: 74px;
}
.eq-sign-up-form__form-wrap select.c-form-control {
  background-image: url(../images/shop-dropdown-arrow.png);
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.eq-sign-up-form__form-wrap .c-form-control::-webkit-input-placeholder {
  color: var(--color-grey);
  opacity: 1;
}
.eq-sign-up-form__form-wrap .c-form-control::-moz-placeholder {
  color: var(--color-grey);
  opacity: 1;
}
.eq-sign-up-form__form-wrap .c-form-control:-ms-input-placeholder {
  color: var(--color-grey);
  opacity: 1;
}
.eq-sign-up-form__form-wrap .c-form-control:-moz-placeholder {
  color: var(--color-grey);
  opacity: 1;
}
.eq-sign-up-form__form-wrap .sub-title {
  display: block;
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  margin-top: 12px;
  margin-bottom: 8px;
}
.eq-sign-up-form__form-wrap .c-form-group .btn-submit {
  margin-top: 16px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-sign-up-form {
    padding: 8.621vw 0 4.598vw;
  }
  .eq-sign-up-form__wrap {
    max-width: 71.264vw;
    gap: 5.747vw;
  }
  .eq-sign-up-form__text-details {
    max-width: 20.115vw;
  }
  .eq-sign-up-form__text-details figure {
    max-width: 17.471vw;
  }
  .eq-sign-up-form__text-details h4 {
    font-size: 1.034vw;
    margin-top: 2.989vw;
  }
  .eq-sign-up-form__list {
    padding-left: 0.977vw;
    margin-top: 1.954vw;
  }
  .eq-sign-up-form__list li {
    font-size: 1.034vw;
    padding-left: 0.92vw;
  }
  .eq-sign-up-form__list li::after {
    top: 0.747vw;
    width: 0.345vw;
    height: 0.345vw;
    border-radius: 1.149vw;
  }
  .eq-sign-up-form__form {
    max-width: 42.529vw;
    border-radius: 0.862vw;
    /* padding: 2.471vw 3.333vw 3.218vw; */
  }
  .eq-sign-up-form__form-title h3 {
    font-size: 1.437vw;
  }
  .eq-sign-up-form__form-title p {
    font-size: 1.034vw;
    margin-top: 1.724vw;
  }
  .eq-sign-up-form__form-wrap {
    gap: 0.805vw;
    margin-top: 1.724vw;
  }
  .eq-sign-up-form__form-wrap .c-form-control {
    font-size: 1.034vw;
    padding: 1.149vw 1.897vw;
    border-radius: 0.862vw;
    min-height: 4.253vw;
  }
  .eq-sign-up-form__form-wrap .sub-title {
    font-size: 1.034vw;
    margin-top: 0.69vw;
    margin-bottom: 0.46vw;
  }
  .eq-sign-up-form__form-wrap .c-form-group .btn-submit {
    margin-top: 0.92vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-sign-up-form {
    padding: 80px 0;
  }
  .eq-sign-up-form__wrap {
    flex-wrap: wrap;
    gap: 60px;
  }
  .eq-sign-up-form__text-details {
    max-width: 100%;
  }
  .eq-sign-up-form__form {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .eq-sign-up-form {
    padding: 48px 0;
  }
  .eq-sign-up-form__text-details figure {
    max-width: 160px;
  }
  /* .eq-sign-up-form__form {
    padding: 43px 30px 56px;
  } */
  .eq-sign-up-form__form-wrap .c-form-control {
    padding: 20px 16px;
  }
  .eq-sign-up-form__text-details h4 {
    margin-top: 38px;
  }
  .eq-sign-up-form__list {
    margin-top: 34px;
  }
  .eq-sign-up-form__wrap {
    gap: 42px;
  }
  .eq-sign-up-form__form-title p {
    margin-top: 30px;
  }
  .eq-sign-up-form__form-wrap {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .eq-sign-up-form__form-wrap .c-form-control {
    padding: 10px 16px;
    min-height: 56px;
    font-size: 16px;
  }
  /* .eq-sign-up-form__form {
    padding: 40px 15px;
  } */
}
/* eq-sign-up-form css end here */

/* About Us page Banner css start here */
.eq-hero-banner.about-us {
  background-color: var(--color-primary-500);
}
.eq-hero-banner.about-us .eq-hero-banner__media figure img {
  margin: 0 40% -4%;
  max-width: 76.2%;
  width: 100%;
}
.eq-helped-people.reverse .eq-helped-people__wrap {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 991px) {
  .eq-helped-people.reverse .eq-helped-people__media {
    display: block;
    max-width: 100%;
  }
  .eq-helped-people.reverse .eq-helped-people__wrap {
    flex-direction: column-reverse;
  }
  .eq-hero-banner.about-us .eq-hero-banner__bg img,
  .eq-hero-banner.about-us .eq-hero-banner__bg video,
  .eq-hero-banner.about-us .eq-hero-banner__bg iframe {
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .eq-helped-people .eq-helped-people__media,
  .eq-helped-people.reverse .eq-helped-people__media {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .eq-hero-banner.about-us .eq-hero-banner__content {
    max-width: 100%;
    padding: 67px 0 30px;
  }
  .eq-hero-banner.about-us .eq-hero-banner__content .text-desc {
    padding-right: 156px;
    margin-top: 18px;
  }
  .eq-hero-banner.about-us .eq-hero-banner__button {
    margin-top: 52px;
  }
  .eq-helped-people.reverse .eq-helped-people__media figure {
    padding-bottom: 78.4%;
  }
}
/* About Us page Banner css end here */

/* eq-labyrinth-group css start here */
.eq-labyrinth-group {
  width: 100%;
  padding: 60px 0 90px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.eq-labyrinth-group__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.eq-labyrinth-group__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(118, 157, 144, 0.648) 0%,
    rgba(0, 76, 64, 0.656) 100%
  );
}
.eq-labyrinth-group__bg img,
.eq-labyrinth-group__bg video,
.eq-labyrinth-group__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-labyrinth-group .cus-container {
  position: relative;
  z-index: 1;
  max-width: 1277px;
}
.eq-labyrinth-group__wrap {
  width: 100%;
}
.eq-labyrinth-group__wrap h2 {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--color-light);
}
.eq-labyrinth-group__wrap h2 b {
  font-weight: bold;
  font-family: var(--font--secondary);
}
.eq-labyrinth-group__logo-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 100px;
  margin-top: 72px;
  row-gap: 118px;
  margin-bottom: 60px;
}
.eq-labyrinth-group__logo-wrap figure {
  max-width: 277px;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-labyrinth-group__box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--color-primary-200);
  overflow: hidden;
}
.eq-labyrinth-group__box-content {
  max-width: 642px;
  width: 100%;
  padding: 49px 34px 40px;
}
.eq-labyrinth-group__box-content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-light);
  margin-bottom: 46px;
}
.eq-labyrinth-group__box-content .text-desc p {
  margin-top: 28px;
}
.eq-labyrinth-group__box-content .text-desc p:first-child {
  margin-top: 0;
}
.eq-labyrinth-group__box-media {
  max-width: 595px;
  width: 100%;
}
.eq-labyrinth-group__box-media figure {
  width: 100%;
  position: relative;
  padding-bottom: 65.8%;
}
.eq-labyrinth-group__box-media figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-labyrinth-group__trusted {
  width: 100%;
  margin-top: 52px;
}
.eq-labyrinth-group__trusted-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.eq-labyrinth-group__trusted-title h2 {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--color-light);
}
.eq-labyrinth-group__trusted-title h2 b {
  font-weight: bold;
  font-family: var(--font--secondary);
}
.eq-labyrinth-group__trusted-action {
  max-width: 71px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
.eq-labyrinth-group__trusted-action .slick-arrow {
  max-width: 32px;
  width: 100%;
}
.eq-labyrinth-group__trusted-slider {
  width: 100%;
  margin-top: 40px;
}
.eq-labyrinth-group__trusted-slider .slick-list {
  margin: 0 -44px;
}
.eq-labyrinth-group__trusted-slider .slide {
  padding: 0 44px;
}
.eq-labyrinth-group__trusted-slider .slick-track {
  display: flex;
  align-items: center;
}
.eq-labyrinth-group__trusted-slider figure {
  width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-labyrinth-group {
    padding: 3.448vw 0 5.172vw;
  }
  .eq-labyrinth-group .cus-container {
    max-width: 73.391vw;
  }
  .eq-labyrinth-group__wrap h2 {
    font-size: 1.379vw;
  }
  .eq-labyrinth-group__logo-wrap {
    column-gap: 5.747vw;
    margin-top: 4.138vw;
    row-gap: 6.782vw;
    margin-bottom: 3.448vw;
  }
  .eq-labyrinth-group__logo-wrap figure {
    max-width: 12.92vw;
    height: 7.644vw;
    width: 100%;
  }
  .eq-labyrinth-group__logo-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .eq-labyrinth-group__box {
    border-radius: 0.862vw;
  }
  .eq-labyrinth-group__box-content {
    max-width: 36.897vw;
    padding: 2.816vw 1.954vw 2.299vw;
  }
  .eq-labyrinth-group__box-content .text-desc {
    font-size: 0.92vw;
    margin-bottom: 2.644vw;
  }
  .eq-labyrinth-group__box-content .text-desc p {
    margin-top: 1.609vw;
  }
  .eq-labyrinth-group__box-media {
    max-width: 34.195vw;
  }
  .eq-labyrinth-group__trusted {
    margin-top: 2.989vw;
  }
  .eq-labyrinth-group__trusted-title h2 {
    font-size: 1.379vw;
  }
  .eq-labyrinth-group__trusted-action {
    max-width: 4.08vw;
    gap: 0.402vw;
  }
  .eq-labyrinth-group__trusted-action .slick-arrow {
    max-width: 1.839vw;
  }
  .eq-labyrinth-group__trusted-slider {
    margin-top: 2.299vw;
  }
  .eq-labyrinth-group__trusted-slider .slick-list {
    margin: 0 -2.529vw;
  }
  .eq-labyrinth-group__trusted-slider .slide {
    padding: 0 2.529vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-labyrinth-group .cus-container {
    max-width: 730px;
  }
  .eq-labyrinth-group__box {
    flex-direction: column-reverse;
  }
  .eq-labyrinth-group__box-media {
    max-width: 100%;
  }
  .eq-labyrinth-group__box-content {
    max-width: 100%;
  }
  .eq-labyrinth-group__logo-wrap figure {
    max-width: 120px;
    height: auto;
  }
  .eq-labyrinth-group__logo-wrap {
    margin-top: 60px;
    column-gap: 40px;
    row-gap: 40px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-labyrinth-group__trusted-slider .slick-list {
    margin: 0 -31px;
  }
  .eq-labyrinth-group__trusted-slider .slide {
    padding: 0 31px;
  }
  .eq-labyrinth-group__logo-wrap figure:nth-child(n + 7) {
    display: none;
  }
  .eq-labyrinth-group__logo-wrap {
    column-gap: 38px;
    margin-top: 34px;
    row-gap: 38px;
    margin-bottom: 60px;
  }
  .eq-labyrinth-group__logo-wrap figure {
    max-width: calc(50% - 38px);
    height: auto;
    width: 100%;
  }
  .eq-labyrinth-group__wrap h2 {
    line-height: 1.3;
  }
  .eq-labyrinth-group__wrap h2 b {
    display: block;
  }
  .eq-labyrinth-group {
    padding: 30px 0 50px;
  }
  .eq-labyrinth-group__trusted-title {
    align-items: flex-end;
  }
  .eq-labyrinth-group__trusted-title h2 {
    line-height: 1.3;
  }
  .eq-labyrinth-group__box-media {
    display: none;
  }
  .eq-labyrinth-group__box-content {
    padding: 23px 23px 28px;
  }
  .eq-labyrinth-group__box-content .text-desc p {
    margin-top: 29px;
  }
  .eq-labyrinth-group__box-content .text-desc {
    margin-bottom: 28px;
  }
  .eq-labyrinth-group__trusted {
    margin-top: 70px;
  }
  .eq-labyrinth-group__trusted-slider {
    margin-top: 22px;
  }
}
/* eq-labyrinth-group css end here */

/* eq-award-winning css start here */
.eq-award-winning {
  width: 100%;
  padding: 189px 0 160px;
  position: relative;
  z-index: 1;
  min-height: 781px;
}
.eq-award-winning__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.eq-award-winning__bg img,
.eq-award-winning__bg video,
.eq-award-winning__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-award-winning > .cus-container {
  position: relative;
  z-index: 1;
}
.eq-award-winning__content {
  max-width: 554px;
  width: 100%;
  margin-left: auto;
  margin-right: 70px;
}
.eq-award-winning__content h2 {
  font-family: var(--font--secondary);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-light);
}
.eq-award-winning__content h2 span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: Italic;
  letter-spacing: 2.5px;
  color: var(--color-primary-200);
}
.eq-award-winning__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-light);
  margin-top: 20px;
}
.eq-award-winning__card-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 32px;
}
.eq-award-winning__card-review {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 36px;
}
.eq-award-winning__card-review .trustpilot-logo {
  max-width: 279px;
  width: 100%;
}
.eq-award-winning__card-review .google-logo {
  max-width: 129px;
  width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-award-winning {
    padding: 10.862vw 0 9.195vw;
    min-height: 44.885vw;
  }
  .eq-award-winning__content {
    max-width: 31.839vw;
    margin-right: 4.023vw;
  }
  .eq-award-winning__content h2 {
    font-size: 2.874vw;
  }
  .eq-award-winning__content h2 span {
    letter-spacing: 0.144vw;
  }
  .eq-award-winning__content .text-desc {
    font-size: 0.92vw;
    margin-top: 1.149vw;
  }
  .eq-award-winning__card-button {
    gap: 0.805vw;
    margin-top: 1.839vw;
  }
  .eq-award-winning__card-review {
    gap: 1.437vw;
    margin-top: 2.069vw;
  }
  .eq-award-winning__card-review .trustpilot-logo {
    max-width: 16.034vw;
  }
  .eq-award-winning__card-review .google-logo {
    max-width: 7.414vw;
  }
}

@media only screen and (max-width: 767px) {
  .eq-award-winning {
    padding: 38px 0 67px;
    min-height: auto;
  }
  .eq-award-winning__card-button {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }
  .eq-award-winning__card-review {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 26px;
  }
  .eq-award-winning__card-review .trustpilot-logo {
    max-width: 213px;
    width: 100%;
  }
  .eq-award-winning__card-review .google-logo {
    max-width: 170px;
    width: 100%;
  }
}
/* eq-award-winning css end here */

/* eq-product-detail css start here */
.eq-product-detail {
  width: 100%;
  padding: 16px 0 46px;
}
.eq-product-detail__wrap {
  max-width: 1215px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.eq-product-detail__card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
.eq-product-detail__card-media {
  max-width: 619px;
  width: 100%;
  position: relative;
  padding-bottom: 50.947%;
  border-radius: 15px;
  overflow: hidden;
}
.eq-product-detail__card-media img,
.eq-product-detail__card-media video,
.eq-product-detail__card-media iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-product-detail__card-content {
  max-width: 554px;
  width: 100%;
}
.eq-product-detail__card-content h2 {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-primary-100);
}
.eq-product-detail__card-content h6 {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-primary-100);
  margin-top: 30px;
}
.eq-product-detail__card-content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-primary-100);
  margin-top: 35px;
}
.eq-product-detail__card-list {
  width: 100%;
  margin-top: 34px;
}
.eq-product-detail__card-list li {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0%;
  color: var(--color-primary-100);
  margin-bottom: 4px;
}
.eq-product-detail__card-list li:last-child {
  margin-bottom: 0;
}
.eq-product-detail__card-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
}
.eq-product-detail__card-review {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  margin-top: 27px;
}
.eq-product-detail__card-review .trustpilot-logo {
  max-width: 213px;
  width: 100%;
}
.eq-product-detail__card-review .google-logo {
  max-width: 170px;
  width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-product-detail {
    padding: 0.92vw 0 2.644vw;
  }
  .eq-product-detail__wrap {
    max-width: 69.828vw;
    gap: 2.299vw;
  }
  .eq-product-detail__card {
    gap: 2.414vw;
  }
  .eq-product-detail__card-media {
    max-width: 35.575vw;
    border-radius: 0.862vw;
  }
  .eq-product-detail__card-content {
    max-width: 31.839vw;
  }
  .eq-product-detail__card-content h2 {
    font-size: 2.874vw;
  }
  .eq-product-detail__card-content h6 {
    font-size: 1.034vw;
    margin-top: 1.724vw;
  }
  .eq-product-detail__card-content .text-desc {
    font-size: 1.034vw;
    margin-top: 2.011vw;
  }
  .eq-product-detail__card-list {
    margin-top: 1.954vw;
  }
  .eq-product-detail__card-list li {
    font-size: 1.034vw;
    margin-bottom: 0.23vw;
  }
  .eq-product-detail__card-button {
    gap: 0.805vw;
    margin-top: 1.724vw;
  }
  .eq-product-detail__card-review {
    gap: 1.494vw;
    margin-top: 1.552vw;
  }
  .eq-product-detail__card-review .trustpilot-logo {
    max-width: 12.241vw;
  }
  .eq-product-detail__card-review .google-logo {
    max-width: 9.77vw;
  }
}

@media only screen and (max-width: 991px) {
  .eq-product-detail__wrap {
    gap: 75px;
  }
  .eq-product-detail__card {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .eq-product-detail__card-media {
    max-width: 100%;
    padding-bottom: 80%;
  }
  .eq-product-detail__card-content {
    max-width: 100%;
  }
  .eq-product-detail {
    padding: 80px 0 28px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-product-detail {
    padding: 82px 0 28px;
  }
  .eq-product-detail__card-button {
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .eq-product-detail__wrap {
    gap: 52px;
  }
  .eq-product-detail__card-review .trustpilot-logo {
    max-width: 187px;
  }
  .eq-product-detail__card-review .google-logo {
    max-width: 150px;
  }
  .eq-product-detail__card-review {
    gap: 25px;
    margin-top: 30px;
  }
  .eq-product-detail__card-media {
    padding-bottom: 100%;
  }
  .eq-product-detail__card-list li {
    margin-bottom: 0;
  }
}
/* eq-product-detail css end here */

/* eq-product-breadcrumb css start here */
.eq-product-breadcrumb {
  padding: 60px 0 0 0;
}
.breadcrumb-wrapper {
  padding: 16px 20px;
  background: #ffffff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary-300);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 8px;
  color: var(--color-primary-300);
  font-size: 18px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--color-primary-300);
  transition: color 0.2s ease;
  font-family: var(--font-theme-primary);
  font-size: 18px;
}

.breadcrumb-item a:hover {
  color: var(--color-primary-200);
}

.breadcrumb-item.active {
  color: var(--color-primary-300);
  font-weight: 600;
  font-family: var(--font-theme-primary);
  font-size: 18px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-product-breadcrumb {
    padding: 3.448vw 0 0 0;
  }
  .breadcrumb-wrapper {
    padding: 0.92vw 1.149vw;
  }
  .breadcrumb {
    font-size: 1.034vw;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0.46vw;
    font-size: 1.034vw;
  }
  .breadcrumb-item a {
    font-size: 1.034vw;
  }
  .breadcrumb-item.active {
    font-size: 1.034vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-product-breadcrumb {
    display: none;
  }
  .breadcrumb,
  .breadcrumb-item a,
  .breadcrumb-item.active {
    font-size: 16px;
  }

  .breadcrumb-wrapper {
    padding: 12px 16px;
  }
}
/* eq-product-breadcrumb css end here */

/* eq-product-info css start here */
.eq-product-info {
  width: 100%;
  padding: 0 0 113px;
}
.eq-product-info__wrap {
  max-width: 1215px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-300);
  border-radius: 15px;
  overflow: hidden;
}
.eq-product-info__media {
  max-width: 628px;
  width: 100%;
  position: relative;
  padding-bottom: 49.5%;
}
.eq-product-info__media img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-product-info__content {
  max-width: 587px;
  width: 100%;
  padding: 72px 40px 72px 50px;
}
.eq-product-info__content h3 {
  font-family: var(--font-theme-primary);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.8;
  color: #003029;
  margin-bottom: 26px;
}
.eq-product-info__content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #003029;
  margin-bottom: 38px;
}
.eq-product-info__content .text-desc:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-product-info {
    padding: 0 0 6.494vw;
  }
  .eq-product-info__wrap {
    max-width: 69.828vw;
    border-radius: 0.862vw;
  }
  .eq-product-info__media {
    max-width: 36.092vw;
  }
  .eq-product-info__content {
    max-width: 33.736vw;
    padding: 4.138vw 2.299vw 4.138vw 2.874vw;
  }
  .eq-product-info__content h3 {
    font-size: 1.264vw;
    margin-bottom: 1.494vw;
  }
  .eq-product-info__content .text-desc {
    font-size: 0.92vw;
    margin-bottom: 2.184vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-product-info__wrap {
    max-width: 100%;
  }
  .eq-product-info__media {
    display: none;
  }
  .eq-product-info__content {
    max-width: 100%;
  }
  .eq-product-info {
    width: 100%;
    padding: 0 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-product-info__content {
    padding: 31px 16px;
  }
  .eq-product-info {
    width: 100%;
    padding: 0 0 58px;
  }
}
/* eq-product-info css end here */

/* eq-shop css start here */
.eq-shop {
  width: 100%;
  padding: 73px 0 99px;
  overflow: hidden;
}
.eq-shop .cus-container-sm {
  max-width: 1265px;
}
.eq-shop__action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background-color: var(--color-primary-200);
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 44px;
  overflow-x: auto;
}
.eq-shop__button {
  font-family: var(--font--secondary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-light);
  padding: 14px 27px;
  border-radius: 30px;
  background-color: var(--color-primary-300);
  transition: var(--transition-primary);
  white-space: nowrap;
}
body.browser-safari .eq-shop__button{
  padding: 16px 27px 12px;
}
.eq-shop__button.active,
.eq-shop__button:hover {
  background-color: var(--color-primary);
}
.eq-shop__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 52px;
  row-gap: 55px;
}
.eq-shop__card {
  max-width: calc(50% - 26px);
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-primary-200);
}
.eq-shop__card-media {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 100%;
}
.eq-shop__card-media img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-shop__card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
}
.eq-shop__card-title {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 30px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-primary-100);
  display: block;
}
.eq-shop__card-content .text-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary-100);
  margin-top: 4px;
}
.eq-shop__card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.eq-shop__card-action .c-form-group.product {
  max-width: 273px;
  width: 100%;
}
.eq-shop__card-action .c-form-group.quantity {
  max-width: 170px;
  width: 100%;
}
.eq-shop__card-action .c-form-group .c-form-control {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-grey);
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  width: 100%;
  padding: 13px 36px 13px 18px;
  appearance: none;
  background-image: url("../images/shop-dropdown-arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
body.browser-safari .eq-shop__card-action .c-form-group .c-form-control{
  padding: 15px 36px 11px 18px;
}
.eq-shop__add-product-button {
  font-family: var(--font--secondary);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-light);
  padding: 14px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: var(--color-primary-100);
}
body.browser-safari .eq-shop__add-product-button{
  padding: 16px 18px 12px;
}
body.browser-safari .eq-shop__add-product-button img{
  position: relative;
  top: -2px;
}
.eq-shop__add-product-button img {
  max-width: 22px;
  width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-shop {
    padding: 4.195vw 0 5.69vw;
  }
  .eq-shop .cus-container-sm {
    max-width: 72.701vw;
  }
  .eq-shop__action {
    gap: 1.149vw;
    border-radius: 0.862vw;
    padding: 1.379vw;
    margin-bottom: 2.529vw;
  }
  .eq-shop__button {
    font-size: 1.149vw;
    padding: 0.805vw 1.552vw;
    border-radius: 1.724vw;
  }
  body.browser-safari .eq-shop__button{
    padding: 0.920vw 1.552vw 0.690vw;
  }
  body.browser-safari .eq-shop__add-product-button{
    padding: 0.920vw 1.034vw 0.690vw;
  }
  body.browser-safari .eq-shop__add-product-button img{
    position: relative;
    top: -0.115vw;
  }
  .eq-shop__content {
    column-gap: 2.989vw;
    row-gap: 3.161vw;
  }
  .eq-shop__card {
    max-width: calc(50% - 1.494vw);
    padding-bottom: 1.609vw;
    border-bottom: 0.057vw solid var(--color-primary-200);
  }
  .eq-shop__card-media {
    border-radius: 0.862vw;
  }
  .eq-shop__card-content {
    margin-top: 1.724vw;
  }
  .eq-shop__card-title {
    font-size: 1.724vw;
  }
  .eq-shop__card-content .text-desc {
    font-size: 0.92vw;
    margin-top: 0.23vw;
  }
  .eq-shop__card-action {
    gap: 0.575vw;
    margin-top: 1.149vw;
  }
  .eq-shop__card-action .c-form-group.product {
    max-width: 15.69vw;
  }
  .eq-shop__card-action .c-form-group.quantity {
    max-width: 9.77vw;
  }
  .eq-shop__card-action .c-form-group .c-form-control {
    font-size: 1.149vw;
    letter-spacing: 0.115vw;
    border: 0.057vw solid var(--color-primary);
    border-radius: 2.874vw;
    padding: 0.747vw 2.069vw 0.747vw 1.034vw;
    background-position: right 0.69vw center;
    background-size: 1.379vw;
  }
  body.browser-safari .eq-shop__card-action .c-form-group .c-form-control{
    padding: 0.862vw 2.069vw 0.632vw 1.034vw;
  }
  .eq-shop__add-product-button {
    font-size: 1.149vw;
    letter-spacing: 0.115vw;
    padding: 0.805vw 1.034vw;
    border-radius: 1.724vw;
    gap: 0.805vw;
  }
  .eq-shop__add-product-button img {
    max-width: 1.264vw;
  }
}
@media only screen and (max-width: 991px) {
  .eq-shop .cus-container-sm {
    max-width: 730px;
  }
  .eq-shop__card {
    max-width: 100%;
  }
  .eq-shop__card-action .c-form-group.product {
    max-width: 190px;
  }
}
@media only screen and (max-width: 767px) {
  .eq-shop {
    padding: 60px 0 42px;
  }
  .eq-shop__action {
    gap: 14px;
    padding: 16px;
    margin-bottom: 38px;
  }
  .eq-shop__button {
    font-size: 14px;
    padding: 9px 14px;
  }
  .eq-shop .cus-container-sm {
    max-width: 540px;
  }
  .eq-shop__card-media {
    padding-bottom: 99.45%;
  }
  .eq-shop__card-action {
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 14px;
    margin-top: 16px;
  }
  .eq-shop__card-action .c-form-group.product,
  .eq-shop__card-action .c-form-group.quantity {
    max-width: calc(50% - 12px);
  }
  .eq-shop__add-product-button {
    width: 100%;
    justify-content: space-between;
    padding: 15px 18px;
  }
  .eq-shop__card-action .c-form-group .c-form-control {
    padding: 14px 36px 14px 14px;
  }
  .eq-shop__card-content {
    margin-top: 12px;
  }
  .eq-shop__card {
    padding-bottom: 30px;
  }
  .eq-shop__content {
    column-gap: 30px;
    row-gap: 30px;
  }
  .eq-shop__card:last-child {
    padding-bottom: 0;
    border: 0;
  }
}
@media only screen and (max-width: 400px) {
  .eq-shop__card-action .c-form-group.product,
  .eq-shop__card-action .c-form-group.quantity {
    max-width: 100%;
  }
}
/* eq-shop css end here */

/* eq-video css start here */
.eq-helped-people__media .media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.eq-helped-people__media .left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eq-helped-people__media .right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eq-helped-people__media .right-col .grid-item {
  flex: 1;
}

.eq-helped-people__media .small {
  height: 170px;
}

.eq-helped-people__media .main {
  height: 650px;
}

.eq-helped-people__media .grid-item {
  border-radius: 24px;
  overflow: hidden;
}

.eq-helped-people__media .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eq-helped-people__media .grid-item .video-sound-btn img {
  width: 43px;
  height: 30px;
}

.eq-helped-people__media .video-card {
  position: relative;
}

.eq-helped-people__media .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  cursor: pointer;
}

.eq-helped-people__media .video-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.eq-helped-people__media .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-helped-people__media .video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  cursor: pointer;
}

.eq-helped-people__media .video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: none;
  background: url(../images/play-icon.svg) no-repeat;
  cursor: pointer;
}

.eq-helped-people__media .video-play-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 18px solid #111;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.eq-helped-people__media .video-sound-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 194px;
  height: 55px;
  border-radius: 999px;
  border: none;
  background: #fff;
  font-size: 18px;
  display: none;
  cursor: pointer;
  color: #769d90;
  font-weight: 600;
  font-family: var(--font-theme-primary);
}

.eq-helped-people__media .video-card.playing .video-thumb,
.eq-helped-people__media .video-card.playing .video-play-btn {
  display: none;
}

.eq-helped-people__media .video-card.playing .video-element,
.eq-helped-people__media .video-card.playing .video-sound-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* eq-video end here */

/* DEV CSS */
.eq-shop__card-action form.eq-add-to-cart-form {
  display: contents;
}
.eq-image-content__trusted-by-logo {
  display: flex;
}
.cart-table .product a.remove {
  color: #084f44 !important;
  border: 1px solid #084f44;
  font-size: 14px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.cart-table .product a.remove:hover {
  background: none;
}

.woocommerce-cart header.entry-header,
.page-id-1752 header.entry-header {
  display: none;
}

.field-error {
  border: 2px solid #e10600 !important;
  background: #fff5f5;
}

section.eq-product-banner
  .eq-product-banner__content
  .text-desc.inner-banner-desc {
  font-family: var(--font-theme-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  margin-top: 32px;
  max-width: 450px;
}

.eq-gallery__wrap .gallery__cards .text-center.mt-4,
.eq-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.eq-faq__content {
  display: none;
}

.eq-faq__item.active .eq-faq__content {
  display: block;
}

.eq-helped-people.reverse .eq-helped-people__media .media-grid {
  direction: rtl;
}

.eq-helped-people.reverse .eq-helped-people__media .left-col,
.eq-helped-people.reverse .eq-helped-people__media .right-col {
  direction: ltr;
}

.eq-footer__bottom p > a {
  color: var(--color-primary-100);
}

.eq-footer__bottom p > a:hover {
  text-decoration: underline;
}

.quantity__wrap {
  position: relative;
}

.quantity__wrap.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.quantity__wrap.is-loading::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Hide on all devices */
.eq-hide-all {
  display: none !important;
}

@media (max-width: 767px) {
  .eq-helped-people__media .media-grid {
    grid-template-columns: 1fr;
  }

  .eq-helped-people__media .right-col,
  .eq-helped-people__media .left-col {
    gap: 16px;
  }

  .eq-helped-people__media .main {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
/* Hide on desktop only */
@media (min-width: 768px) {
  .eq-hide-desktop {
    display: none !important;
  }
}

/* Hide on mobile only */
@media (max-width: 767px) {
  .eq-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .eq-product-banner.find-supplier .eq-product-banner__bg::before {
    content: "";
    position: absolute;
    background: linear-gradient(
      272.04deg,
      rgba(28, 28, 28, 0) 1.76%,
      #272727 90.93%
    );
    left: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    mix-blend-mode: multiply;
  }
}

/* Disable mobile overlay for Find Supplier */
@media only screen and (max-width: 991px) {
  .eq-product-banner.find-supplier .eq-product-banner__bg::after {
    content: none;
  }
}

/* 13-02-2026 css start here */
.eq-why-choose__content .btn {
  padding: 12px 20px;
}
.eq-footer__logo img {
  width: 100%;
}
/* .eq-products-listing__card-button .btn:last-child {
  padding: 12px 24px;
} */
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-why-choose__content .btn {
    padding: 0.69vw 1.149vw;
  }
  /* .eq-products-listing__card-button .btn:last-child {
    padding: 0.69vw 1.379vw;
  } */
}
@media only screen and (max-width: 767px) {
  .eq-helped-people__content .watch-video-btn {
    padding: 14px 19px;
  }
  .eq-helped-people__content .watch-video-btn img {
    display: none;
  }
  .eq-find-supplier__wrap p {
    margin-bottom: 20px;
  }
  .eq-footer__nav-list li a {
    font-size: 15px;
  }
  .eq-product-banner.find-supplier {
    padding: 72px 0 54px;
  }
  .eq-product-banner.find-supplier
    .eq-hero-banner__review-logo
    .trustpilot-logo {
    max-width: 264px;
    width: 100%;
  }
  .eq-product-banner.find-supplier .eq-hero-banner__review-logo .google-logo {
    max-width: 140px;
    width: 100%;
  }
  .eq-product-banner.find-supplier .eq-hero-banner__review-logo {
    flex-wrap: wrap;
    gap: 32px;
  }
}
/* 13-02-2026 css end here */

/* 16-02-2026 css start here */
.eq-product-detail__card-button .btn {
  padding: 12px 27px;
}
body.product-template-default .eq-how-the-process {
  padding: 98px 0 110px;
}
.eq-hero-banner__content h1 span {
  font-size: 90px;
}
body.page-id-581 .eq-latest-news {
  padding: 83px 0 70px;
}
body.page-id-1278 .eq-teeth-whitening-brand__media figure {
  padding-bottom: 103.83%;
}
.eq-product-banner.contact {
  padding: 244px 0 200px;
}
.eq-labyrinth-group__box-content .btn {
  padding: 12px 27px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .eq-product-detail__card-button .btn {
    padding: 0.69vw 1.552vw;
  }
  body.product-template-default .eq-how-the-process {
    padding: 5.632vw 0 6.322vw;
  }
  .eq-hero-banner__content h1 span {
    font-size: 5.172vw;
  }
  body.page-id-581 .eq-latest-news {
    padding: 4.77vw 0 4.023vw;
  }
  .eq-product-banner.contact {
    padding: 14.023vw 0 11.494vw;
  }
  .eq-labyrinth-group__box-content .btn {
    padding: 0.69vw 1.552vw;
  }
}
@media only screen and (max-width: 767px) {
  body.product-template-default .eq-how-the-process {
    padding: 60px 0 46px;
  }
  .eq-hero-banner__content h1 span {
    font-size: 48px;
  }
  body.page-id-581 .eq-latest-news {
    padding: 36px 0 46px;
  }
  body.page-id-581 .eq-helped-people__content .watch-video-btn img {
    display: block;
  }
  body.page-id-581 .eq-helped-people__content .watch-video-btn {
    padding: 12px 22px;
  }
  body.page-id-1278 .eq-teeth-whitening-brand__media figure {
    padding-bottom: 104.7%;
  }
  .eq-product-banner.contact {
    padding: 74px 0 170px;
  }
  .eq-product-banner.contact .eq-product-banner__content h1 {
    padding-right: 130px;
  }
  .eq-product-banner.contact
    .eq-product-banner__content
    .text-desc.inner-banner-desc {
    font-size: 16px;
    max-width: 264px;
  }
}
/* 16-02-2026 css end here */

/* 02-03-2026 css change start here */
body.page-id-1235 .eq-newsletter__bg::after {
    background: linear-gradient(180deg, rgba(8, 79, 68, 0.76) 0%, #003029 100%);
}
body.page-id-1235 .eq-product-banner.find-supplier{
  padding: 214px 0 131px;
}
.eq-header__action-button .btn.btn-find-order-now{
  white-space: nowrap;
}
.empty-cart {
    width: 100%;
    padding: 140px 0 60px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
  body.page-id-1235 .eq-product-banner.find-supplier{
    padding: 12.299vw 0 7.529vw;
  }
  .empty-cart {
    padding: 8.046vw 0 3.448vw;
  }
}
/* 02-03-2026 css change end here */

/* 12-03-2026 css start here */
.woocommerce-notices-wrapper {
    padding-top: 37px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
  .woocommerce-notices-wrapper {
    padding-top: 2.126vw;
  }
}
/* 12-03-2026 css end here */