@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

address {
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.heading-1 {
  font-family: "Montserrat", sans-serif;
  color: #002C48;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .heading-1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .heading-1 {
    font-size: 30px;
  }
}

.heading-2 {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .heading-2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 28px;
  }
}

.heading-3 {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .heading-3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .heading-3 {
    font-size: 24px;
  }
}

.heading-4 {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  color: var(--heading-color, #002C48);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .heading-4 {
    font-size: 20px;
  }
}

.para {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.sm-para {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.primary-btn {
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 18px 32px;
  border-radius: 4px;
  background: #3ECFF0;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}
.primary-btn span {
  font-size: 24px;
}
.primary-btn:hover {
  background-color: #002C48;
}
@media screen and (max-width: 767px) {
  .primary-btn {
    width: 100%;
    padding: 16px 0;
  }
  .primary-btn span {
    font-size: 22px;
  }
}

.secondary-btn {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 4px;
  background: #002C48;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}
.secondary-btn span {
  font-size: 24px;
}
.secondary-btn:hover {
  background-color: #3ECFF0;
}
@media screen and (max-width: 767px) {
  .secondary-btn {
    width: 100%;
    padding: 16px 0;
  }
  .secondary-btn span {
    font-size: 22px;
  }
}

.m-80 {
  margin: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.p-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pe-80 {
  padding-right: 80px !important;
}

.ps-80 {
  padding-left: 80px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.px-80 {
  padding-right: 80px !important;
  padding-left: 80px !important;
}

.m-50 {
  margin: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pe-50 {
  padding-right: 50px !important;
}

.ps-50 {
  padding-left: 50px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.px-50 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

.m-30 {
  margin: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pe-30 {
  padding-right: 30px !important;
}

.ps-30 {
  padding-left: 30px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.px-30 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pe-24 {
  padding-right: 24px !important;
}

.ps-24 {
  padding-left: 24px !important;
}

.py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.px-24 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.m-18 {
  margin: 18px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.my-18 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.p-18 {
  padding: 18px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pe-18 {
  padding-right: 18px !important;
}

.ps-18 {
  padding-left: 18px !important;
}

.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.px-18 {
  padding-right: 18px !important;
  padding-left: 18px !important;
}

.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pe-16 {
  padding-right: 16px !important;
}

.ps-16 {
  padding-left: 16px !important;
}

.py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.px-16 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

@media (min-width: 768px) {
  .m-md-80 {
    margin: 80px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pe-md-80 {
    padding-right: 80px !important;
  }
  .ps-md-80 {
    padding-left: 80px !important;
  }
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-md-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pe-md-50 {
    padding-right: 50px !important;
  }
  .ps-md-50 {
    padding-left: 50px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-md-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pe-md-30 {
    padding-right: 30px !important;
  }
  .ps-md-30 {
    padding-left: 30px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-md-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .m-md-24 {
    margin: 24px !important;
  }
  .mt-md-24 {
    margin-top: 24px !important;
  }
  .mb-md-24 {
    margin-bottom: 24px !important;
  }
  .my-md-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-md-24 {
    padding: 24px !important;
  }
  .pt-md-24 {
    padding-top: 24px !important;
  }
  .pb-md-24 {
    padding-bottom: 24px !important;
  }
  .pe-md-24 {
    padding-right: 24px !important;
  }
  .ps-md-24 {
    padding-left: 24px !important;
  }
  .py-md-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-md-24 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-md-18 {
    margin: 18px !important;
  }
  .mt-md-18 {
    margin-top: 18px !important;
  }
  .mb-md-18 {
    margin-bottom: 18px !important;
  }
  .my-md-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .p-md-18 {
    padding: 18px !important;
  }
  .pt-md-18 {
    padding-top: 18px !important;
  }
  .pb-md-18 {
    padding-bottom: 18px !important;
  }
  .pe-md-18 {
    padding-right: 18px !important;
  }
  .ps-md-18 {
    padding-left: 18px !important;
  }
  .py-md-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-md-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }
  .m-md-16 {
    margin: 16px !important;
  }
  .mt-md-16 {
    margin-top: 16px !important;
  }
  .mb-md-16 {
    margin-bottom: 16px !important;
  }
  .my-md-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-md-16 {
    padding: 16px !important;
  }
  .pt-md-16 {
    padding-top: 16px !important;
  }
  .pb-md-16 {
    padding-bottom: 16px !important;
  }
  .pe-md-16 {
    padding-right: 16px !important;
  }
  .ps-md-16 {
    padding-left: 16px !important;
  }
  .py-md-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-md-16 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 992px) {
  .m-lg-80 {
    margin: 80px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .pe-lg-80 {
    padding-right: 80px !important;
  }
  .ps-lg-80 {
    padding-left: 80px !important;
  }
  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-lg-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pe-lg-50 {
    padding-right: 50px !important;
  }
  .ps-lg-50 {
    padding-left: 50px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-lg-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pe-lg-30 {
    padding-right: 30px !important;
  }
  .ps-lg-30 {
    padding-left: 30px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-lg-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .m-lg-24 {
    margin: 24px !important;
  }
  .mt-lg-24 {
    margin-top: 24px !important;
  }
  .mb-lg-24 {
    margin-bottom: 24px !important;
  }
  .my-lg-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-lg-24 {
    padding: 24px !important;
  }
  .pt-lg-24 {
    padding-top: 24px !important;
  }
  .pb-lg-24 {
    padding-bottom: 24px !important;
  }
  .pe-lg-24 {
    padding-right: 24px !important;
  }
  .ps-lg-24 {
    padding-left: 24px !important;
  }
  .py-lg-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-lg-24 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-lg-18 {
    margin: 18px !important;
  }
  .mt-lg-18 {
    margin-top: 18px !important;
  }
  .mb-lg-18 {
    margin-bottom: 18px !important;
  }
  .my-lg-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .p-lg-18 {
    padding: 18px !important;
  }
  .pt-lg-18 {
    padding-top: 18px !important;
  }
  .pb-lg-18 {
    padding-bottom: 18px !important;
  }
  .pe-lg-18 {
    padding-right: 18px !important;
  }
  .ps-lg-18 {
    padding-left: 18px !important;
  }
  .py-lg-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-lg-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }
  .m-lg-16 {
    margin: 16px !important;
  }
  .mt-lg-16 {
    margin-top: 16px !important;
  }
  .mb-lg-16 {
    margin-bottom: 16px !important;
  }
  .my-lg-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-lg-16 {
    padding: 16px !important;
  }
  .pt-lg-16 {
    padding-top: 16px !important;
  }
  .pb-lg-16 {
    padding-bottom: 16px !important;
  }
  .pe-lg-16 {
    padding-right: 16px !important;
  }
  .ps-lg-16 {
    padding-left: 16px !important;
  }
  .py-lg-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-lg-16 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
.common-form .form-control {
  height: 58px;
  padding: 8px 24px;
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: 777474;
  border-radius: 4px;
  background: #FFF;
  border: 1px solid #F3F3F3;
  width: 100%;
}
.common-form textarea.form-control {
  height: 178px;
}
.common-form .primary-btn {
  border: 0;
  text-transform: capitalize;
  font-variant: normal;
  font-weight: 400;
}

.light-bg {
  background: #EFFCFF;
}

.text-center {
  text-align: center;
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 4px 48.4px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #ECECEC;
  padding: 16px;
  text-align: center;
}
.product-card .product-image {
  width: 100%;
  border-radius: 8px;
}
.product-card .star-wrapper {
  display: flex;
  justify-content: center;
}
.product-card .product-heading {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product-card .product-price {
  color: #F4B400;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.product-card .primary-btn {
  width: 100%;
}

.testimonials-section {
  text-align: center;
}
.testimonials-section .review-card {
  background: #fff;
  border-radius: 24px;
  background: #FFF;
}
.testimonials-section .review-card .stars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.testimonials-section .owl-carousel .owl-item img {
  width: unset;
}
.testimonials-section .owl-dots {
  margin-top: 25px;
}
.testimonials-section .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}
.testimonials-section .owl-dots .active {
  background: #3ECFF0;
  width: 12px;
  height: 12px;
}

.blog-section .top-heading {
  max-width: 542px;
  margin: auto;
}

.blog-card {
  border-radius: 18px;
  background: #FFF;
}
.blog-card .img-fluid {
  width: 100%;
}
.blog-card .blog-heading {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.blog-card .primary-btn {
  width: 100%;
}

.welcome-secondary-section {
  min-height: 345px;
  background: url(../images/welcome-secondary-image.jpg) no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: start;
}
.welcome-secondary-section .heading-1 {
  color: white;
}

.pagination-sec {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.pagination-sec a {
  color: #484848;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  transition: all 0.2s ease-in-out;
}
.pagination-sec a.active, .pagination-sec a:hover {
  color: #3ECFF0;
}

.faq-section .faq-item {
  border-radius: 4px;
  background: #FFF;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  padding: 16px 24px;
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #002C48;
  font-weight: 600;
}
.faq-section .faq-item .faq-question .icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-section .faq-item .faq-question:hover, .faq-section .faq-item .faq-question.active {
  color: #3ECFF0;
}
.faq-section .faq-item .faq-question.active .icon {
  transform: rotate(-180deg);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s ease;
}
.faq-section .faq-item .faq-answer p {
  padding: 0 24px 24px 24px;
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.faq-section .faq-item.is-open .faq-answer {
  max-height: 400px;
}

.columns-2-grid .testimonials-section {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991px) {
  .columns-2-grid .testimonials-section {
    grid-template-columns: repeat(1, 1fr);
  }
}

.reviewtabinfo {
  display: flex;
  gap: 30px;
}
.reviewtabinfo .el-all-reviews {
  width: 80%;
}
.reviewtabinfo .el-all-reviews .el-review-list .el-review {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #dedede;
  list-style: none;
  display: grid;
  gap: 10px;
}
.reviewtabinfo .el-all-reviews .el-review-list .el-review .el-head {
  font-weight: 600;
}
.reviewtabinfo .el-all-reviews .el-review-list .el-review .el-product a {
  font-size: 18px !important;
}
.reviewtabinfo .el-all-reviews .el-review-list .el-review .el-content p:last-child {
  margin-bottom: 0px;
}
.reviewtabinfo .el-all-reviews .el-pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.reviewtabinfo .el-all-reviews .el-pagination .page-numbers li {
  list-style: none;
}
.reviewtabinfo .el-all-reviews .el-pagination .page-numbers li .current {
  font-weight: 600;
}
.reviewtabinfo .woocommerce-Reviews #comments {
  display: none;
}
.reviewtabinfo .woocommerce-Reviews #comments .woocommerce-Reviews-title {
  display: none;
}
.reviewtabinfo .woocommerce-Reviews #review_form_wrapper #review_form #reply-title {
  display: none !important;
}

.main-header {
  background: #FFF;
  box-shadow: 0 4px 65.8px 0 rgba(0, 0, 0, 0.07);
  padding: 24px 0;
  position: relative;
  z-index: 9999;
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-header .nav-links .nav-link-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-header .nav-links .nav-link-list li {
  position: relative;
}
.main-header .nav-links .nav-link-list li a {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}
.main-header .nav-links .nav-link-list li a:hover {
  color: #3ECFF0;
}
.main-header .nav-links .nav-link-list li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .nav-links .nav-link-list li .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  box-shadow: 0 4px 65.8px 0 rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.main-header .nav-links .nav-link-list li .dropdown-menu li {
  padding: 8px 18px;
}
.main-header .nav-links .nav-link-list li .dropdown-menu li a {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}
.main-header .nav-links .nav-link-list li .dropdown-menu li a:hover {
  color: #3ECFF0;
}
.main-header .cart {
  position: relative;
}
.main-header .cart .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffc107;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.main-header .hamburger {
  display: none;
  cursor: pointer;
}
.main-header .hamburger.active .active {
  display: none;
}
.main-header .hamburger.active .cross {
  display: block;
}
.main-header .hamburger .cross {
  display: none;
}

.footer {
  background: #0D0D0D;
  color: #fff;
}
.footer .footer-flex {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: start;
}
.footer .footer-col .heading-4 {
  color: #fff;
}
.footer .footer-col ul {
  list-style: none;
}
.footer .footer-col ul li {
  margin-bottom: 16px;
}
.footer .footer-col ul li a {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: white;
  transition: 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #3ECFF0;
}
.footer .footer-col.company-info {
  max-width: 238px;
  width: 100%;
}
.footer .footer-col.company-info .contact-info a {
  margin-bottom: 16px;
  font-size: 15px;
  display: flex;
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: white;
  gap: 16px;
}
.footer .footer-col.company-info .social-icons {
  display: flex;
  gap: 18px;
}
.footer .footer-col .useful-links-flex {
  display: flex;
  gap: 0 24px;
}
.footer .footer-col.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-bottom {
  text-align: center;
  background: #000;
}
.footer .footer-bottom p {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.welcome-section {
  position: relative;
}
.welcome-section .image-bg {
  display: block;
  width: 100%;
}
.welcome-section .image-bg-sm {
  width: 100%;
  display: none;
}
.welcome-section .welcome-section-content {
  max-width: 935px;
  width: 100%;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.welcome-section .welcome-section-content .heading-1 {
  text-transform: capitalize;
  max-width: 795px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.welcome-section .welcome-section-content .heading-1,
.welcome-section .welcome-section-content .para {
  color: white;
}

.welcome-energy-section .welcome-energy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.welcome-energy-section .image-area {
  max-width: 436px;
  width: 100%;
  position: relative;
}
.welcome-energy-section .image-area::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 178.844px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  filter: blur(100.8499984741px);
  background: #3ECFF0;
  z-index: -1;
}
.welcome-energy-section .text-area {
  max-width: 834px;
  width: 100%;
}
.welcome-energy-section .text-area .heading-2 span {
  color: #3ECFF0;
}
.welcome-energy-section .text-area .btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.categories-section {
  text-align: center;
}
.categories-section .categories-flex-sec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.categories-section .categories-flex-sec .categories-card {
  padding: 24px;
  border-radius: 18px;
  background: #FFF;
}

.services-section .top-heading {
  max-width: 870px;
  margin: auto;
}

.meet-healer-section .meet-healer-wrapper {
  display: flex;
  align-items: stretch;
  gap: 50px;
}
.meet-healer-section .meet-healer-wrapper .healer-image {
  min-width: 536px;
  width: 100%;
}
.meet-healer-section .meet-healer-wrapper .healer-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.meet-healer-section .meet-healer-wrapper .healer-content {
  flex-grow: 1;
  align-self: center;
}
.meet-healer-section .meet-healer-wrapper .healer-content .heading-2 span {
  color: #3ECFF0;
}
.meet-healer-section .meet-healer-wrapper .healer-content .para a {
  color: #3ECFF0;
  font-weight: 500;
}

.contact-info-flex {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.contact-info-flex .info-card {
  background-color: #EFFCFF;
  border-radius: 18px;
  text-align: center;
  width: 100%;
}
.contact-info-flex .info-card .icon {
  width: 50px;
  height: 50px;
  margin: auto auto 10px auto;
  background-color: #3ECFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-contact-section {
  background: url(../images/get-in-touch-bg-texture.svg) no-repeat center left -24px;
  background-color: #EFFCFF;
}
.main-contact-section .main-contact-flex {
  display: flex;
  gap: 50px;
}
.main-contact-section .main-contact-flex .main-contact-image img {
  border-radius: 24px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-contact-section .main-contact-flex .main-contact-form {
  max-width: 695px;
  width: 100%;
}
.main-contact-section .main-contact-flex .main-contact-form .common-form {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 4px 49.3px 0 rgba(0, 0, 0, 0.1);
}
.main-contact-section .main-contact-flex .main-contact-form .common-form .primary-btn {
  width: 100%;
}

.clear-energy-section {
  background-color: #ffffff;
  overflow: hidden;
}
.clear-energy-section .clear-energy-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.clear-energy-section .text-content {
  flex-grow: 1;
}
.clear-energy-section .text-content .para a {
  text-decoration: underline;
  color: #3ECFF0;
}
.clear-energy-section .image-area {
  min-width: 545px;
  text-align: center;
  position: relative;
}
.clear-energy-section .image-area::before {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  width: 420px;
  height: auto;
  background: #3ECFF0;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  filter: blur(68.3499984741px);
}
.clear-energy-section .image-area img {
  position: relative;
}

.blog-detail-sec .blog-detail-image img {
  border-radius: 24px;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-sec .blog-detail-date {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #002C48;
}
.blog-detail-sec .blog-detail-date a {
  color: #3ECFF0;
}
.blog-detail-sec ul.para {
  list-style: disc;
}

.para h1 {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .para h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .para h1 {
    font-size: 28px;
  }
}
.para h2 {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
.para p {
  margin-bottom: 24px;
}
.para ul {
  margin-bottom: 24px;
}
.para ul li {
  list-style: disc;
}
.para ul li p {
  margin-bottom: 5px;
}

/* ===== Related Posts Grid ===== */
.related-posts-sec .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.related-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.related-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-content {
  padding: 14px 16px 16px;
}

.related-title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.related-title a {
  text-decoration: none;
}

.related-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 10px 0;
  color: #444;
}

.related-readmore {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

/* 4 columns on desktop, 2 on tablets, 1 on mobile */
@media (min-width: 768px) {
  .related-posts-sec .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .related-posts-sec .related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}
#respond .comment-form p {
  display: grid;
  gap: 5px;
  margin-bottom: 20px;
}
#respond .comment-form p input {
  padding: 10px;
}
#respond .comment-form input#submit {
  background: #0ea5e9;
  border: none;
  color: #fff;
  padding: 15px 10px;
  max-width: 150px;
}
#respond .comment-form .logged-in-as {
  display: flex;
  gap: 10px;
}

.product-section {
  font-family: "Montserrat", sans-serif;
}
.product-section .product-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}
.product-section .product-flex .product-image {
  width: 100%;
  max-width: 528px;
  border-radius: 24px;
  border: 1px solid #DEDEDE;
  box-shadow: 0 0 74.2px 0 rgba(0, 0, 0, 0.11);
}
.product-section .product-flex .product-image img {
  width: 100%;
}
.product-section .product-flex .product-info {
  max-width: 742px;
  width: 100%;
}
.product-section .product-flex .product-info .product-title {
  color: #002C48;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 28px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-section .product-flex .product-info .product-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .product-section .product-flex .product-info .product-title {
    font-size: 28px;
  }
}
.product-section .product-flex .product-info .rating {
  display: flex;
}
.product-section .product-flex .product-info .price {
  font-weight: 600;
  color: #002C48;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.product-section .product-flex .product-info .price span {
  color: #00F408;
}
.product-section .product-flex .product-info .afterpay {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.product-section .product-flex .product-info .description {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.product-section .product-flex .product-info .option-card {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px;
  background: #F7F7F7;
  border-radius: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.product-section .product-flex .product-info .option-card:has(input[type=radio]:checked) {
  background: #E7FBFF;
}
.product-section .product-flex .product-info .option-card label span {
  font-weight: 700;
  color: #002C48;
}
.product-section .product-flex .product-info .option-card label small {
  color: #484848;
}
.product-section .product-flex .product-info .option-card label small span {
  color: #00bfa6;
  font-weight: 600;
}
.product-section .product-flex .product-info .option-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.product-section .product-flex .product-info .option-card .radio-mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #3ECFF0;
  background-color: white;
  display: inline-block;
  transition: all 0.3s ease;
}
.product-section .product-flex .product-info .option-card input:checked + .radio-mark {
  outline: 5px solid #3ECFF0;
}
.product-section .product-flex .product-info .primary-btn {
  display: flex;
  gap: 18px;
  line-height: 22px;
  height: 60px;
}
.product-section .product-flex .product-info .primary-btn .cart-icon {
  width: 24px;
}

.tabs .tab-buttons {
  display: flex;
  border-bottom: 1px solid #DCDCDC;
  justify-content: start;
  gap: 24px;
}
.tabs .tab-buttons .tab-btn {
  padding: 18px 24px;
  border: none;
  font-family: "Montserrat", sans-serif;
  background: white;
  color: #484848;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tabs .tab-buttons .tab-btn.active, .tabs .tab-buttons .tab-btn:hover {
  background: #3ECFF0;
  color: #fff;
}
.tabs .tab-content {
  display: none;
}
.tabs .tab-content.active {
  display: block;
}

.product-review-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.product-review-flex .reviews-card {
  background: white;
  border-radius: 24px;
}
.product-review-flex .reviews-card .stars {
  display: flex;
}
.product-review-flex .reviews-card .user-info {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #002C48;
  margin: 10px 0;
}
.product-review-flex .reviews-card .user-info span {
  color: #3ECFF0;
}
.product-review-flex .common-form {
  background: white;
  border-radius: 24px;
}
.product-review-flex .common-form .recaptcha-text {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: red;
}
.product-review-flex .common-form .your-rating-flex {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.product-review-flex .common-form .your-rating-flex .stars {
  display: flex;
}
.product-review-flex .common-form .primary-btn {
  width: 100%;
}

.product-details-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
}
.product-details-table th,
.product-details-table td {
  padding: 12px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  border-bottom: 1px solid #e9e9e9;
}
.product-details-table th {
  text-align: left;
  font-weight: 600;
  color: #002C48;
  width: 25%;
}
.product-details-table td {
  color: #484848;
  font-style: italic;
}
.product-details-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.product-details-table tr:last-child th,
.product-details-table tr:last-child td {
  border-bottom: none;
}

.awakening-sec .btn-flex {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.awakening-sec .btn-flex .btn-amazon,
.awakening-sec .btn-flex .btn-barnes,
.awakening-sec .btn-flex .btn-walmart {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
  border-radius: 4px;
}
.awakening-sec .btn-flex .btn-amazon {
  background: #F90;
}
.awakening-sec .btn-flex .btn-barnes {
  background: #2E8B57;
}
.awakening-sec .btn-flex .btn-walmart {
  background: #0071CE;
}

.logo-slider .logo-item {
  background: white;
  padding: 24px;
  border-radius: 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 90px;
  border: 1px solid #eaf4fa;
}
.logo-slider .logo-item img {
  max-width: 120px;
  display: block;
}/*# sourceMappingURL=energy.css.map */