/**
 * Theme Variables
 */
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap';
.section-padding {
  padding: 5%;
}
.section-padding.topPad {
  padding-top: 0;
}

.landingContent.content-area::after {
  top: 500px;
  opacity: 0.5;
}

.colorBlue {
  color: #0C4CA3;
}

.colorGreen {
  color: #9BC455;
}

.landingHero {
  margin-top: 163px;
  position: relative;
  min-height: 29.0625rem;
}
.landingHero .bannerImg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.landingHero .bannecontent {
  display: grid;
  grid-template-columns: 60% 30%;
  justify-content: space-between;
  align-items: flex-end;
}
.landingHero .bannecontent .BannerCopy h1 {
  color: #ffffff;
}
.landingHero .bannecontent .BannerCopy p {
  color: #ffffff;
  font-size: 18px;
}
.landingHero .bannecontent .hoursSec .open {
  border-radius: 5px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 20px;
}
.landingHero .bannecontent .hoursSec .open .head {
  font-family: "Futura PT", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #0C4CA3;
  display: flex;
  align-items: center;
  gap: 15px;
}
.landingHero .bannecontent .hoursSec .open .head span {
  background-color: #3B7CF7;
  padding: 10px;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landingHero .bannecontent .hoursSec .open .head span img {
  width: 100%;
}
.landingHero .bannecontent .hoursSec .open .hours {
  padding: 10px 50px;
  position: relative;
}
.landingHero .bannecontent .hoursSec .open .hours::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: rgba(12, 76, 163, 0.2);
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
}
.landingHero .bannecontent .hoursSec .open .hours .iner {
  display: grid;
  align-items: center;
  grid-template-columns: 45% 45%;
  justify-content: space-between;
}
.landingHero .bannecontent .hoursSec .open .hours .iner > div p {
  color: #0C4CA3;
  margin-bottom: 0px;
  font-size: 20px;
}
@media all and (max-width: 992px) {
  .landingHero {
    margin-top: 83px;
  }
  .landingHero .bannecontent {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .landingHero .bannecontent .hoursSec .open .hours {
    padding: 10px;
  }
}

.expectSec .two-col {
  display: grid;
  grid-template-columns: 46% 46%;
  justify-content: space-between;
  align-items: center;
}
.expectSec .two-col h2 {
  color: #0C4CA3;
}
@media all and (max-width: 992px) {
  .expectSec .two-col {
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.abtCont h3 {
  max-width: 900px;
  width: 100%;
}

.treatmentSec {
  position: relative;
}
.treatmentSec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #9BC455;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 85.875rem;
}
.treatmentSec h3 {
  width: 600px;
  max-width: 100%;
}
.treatmentSec .treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 5%;
}
.treatmentSec .treatments .treatment {
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 30px;
  display: flex;
  gap: 30px;
}
.treatmentSec .treatments .treatment .icon {
  width: 50px;
}
.treatmentSec .treatments .treatment .icon img {
  width: 100%;
}
.treatmentSec .treatments .treatment .textBox {
  width: calc(100% - 80px);
}
.treatmentSec .treatments .treatment .textBox h4 {
  font-size: 28px;
}
@media all and (max-width: 992px) {
  .treatmentSec .treatments {
    grid-template-columns: 100%;
  }
}

.conditionSec {
  background-color: #9BC455;
  position: relative;
  overflow: hidden;
}
.conditionSec .circleTop {
  position: absolute;
  top: 0;
  right: 0;
}
.conditionSec .circleBtm {
  position: absolute;
  bottom: 0;
  left: 0;
}
.conditionSec h3 {
  color: #ffffff;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.conditionSec .copyTop {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}
.conditionSec p {
  color: #ffffff;
}
.conditionSec .copyBtm {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.conditionSec .conditionsBox {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}
.conditionSec .conditionsBox .condition {
  align-items: center;
  border: 1.5px solid #ffffff;
  border-radius: 5px;
  padding: 10px 20px;
}
.conditionSec .conditionsBox .condition p {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.conditionSec .conditionsBox .condition p img {
  width: 25px;
}
@media all and (max-width: 992px) {
  .conditionSec .conditionsBox {
    margin: 30px 0;
  }
}

.whyUsSec {
  background-color: rgba(155, 196, 85, 0.1);
}
.whyUsSec h3 {
  color: #9BC455;
}
.whyUsSec .whyUs {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.whyUsSec .whyUs .point .imgbox {
  padding-top: 120%;
  position: relative;
}
.whyUsSec .whyUs .point .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
.whyUsSec .whyUs .point .imgbox .textBox {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
}
.whyUsSec .whyUs .point .imgbox .textBox h4 {
  font-weight: 600;
  color: #ffffff;
  font-family: "adobe-garamond-pro", sans-serif;
  line-height: 1;
}
.whyUsSec .whyUs .point .imgbox .textBox p {
  color: #ffffff;
  margin-bottom: 0;
}
@media all and (max-width: 1280px) {
  .whyUsSec .whyUs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 992px) {
  .whyUsSec .whyUs {
    margin-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .whyUsSec .whyUs {
    grid-template-columns: 100%;
  }
}

.testiSec {
  overflow: hidden;
}
.testiSec .cell {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.testiSec .cell .arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0 30px;
}
.testiSec .cell .arrows > div {
  padding: 10px;
  height: 40px;
  width: 40px;
  border: 1px solid #0C4CA3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.testiSec .cell .arrows > div img {
  width: 100%;
}
.testiSec .cell .arrows > div.next img {
  transform: rotate(180deg);
}
.testiSec .cell .testimonial-sliderN {
  overflow: visible;
}
.testiSec .cell .testimonial-sliderN .slick-list {
  overflow: visible;
}
.testiSec .cell .testimonial-sliderN .slick-list .slick-slide {
  margin: 0 40px;
  opacity: 0.4;
  text-align: center;
}
.testiSec .cell .testimonial-sliderN .slick-list .slick-slide.slick-active {
  opacity: 1;
}
.testiSec .cell .testimonial-sliderN .slick-list .slick-slide .stars svg {
  width: 30px;
}
.testiSec .cell .testimonial-sliderN .slick-dots {
  position: relative;
  margin: 30px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.testiSec .cell .testimonial-sliderN .slick-dots li.slick-active button {
  background-color: #0C4CA3;
}

.faqSec {
  background-color: #0C4CA3;
}
.faqSec .icon {
  margin-bottom: 20px;
}
.faqSec h3 {
  color: #ffffff;
}
.faqSec h4 {
  font-weight: 600;
  color: #ffffff;
  font-family: "adobe-garamond-pro", sans-serif;
  line-height: 1;
}
.faqSec p {
  color: #ffffff;
}
.faqSec .accordionSec {
  max-width: 1100px;
  width: 100%;
  margin: 5% auto 0;
}
.faqSec .accordionSec .faq {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.faqSec .accordionSec .faq:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.faqSec .accordionSec .faq .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
}
.faqSec .accordionSec .faq .question.active .arrowF {
  transform: rotate(-90deg);
}
.faqSec .accordionSec .faq .question .arrowF {
  transition: all 0.3s ease 0.1s;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.faqSec .accordionSec .faq .question .arrowF img {
  width: 100%;
}
.faqSec .accordionSec .faq .question h4 {
  margin-bottom: 0;
}
.faqSec .accordionSec .faq .answer {
  max-width: 1100px;
  width: 100%;
  margin-top: 30px;
  display: none;
}

.relatedContent .relatedSec {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.relatedContent .relatedSec .related a {
  display: block;
  border: 1px solid rgba(12, 76, 163, 0.25);
  border-radius: 5px;
  display: flex;
  padding: 10px 20px;
  gap: 10px;
  color: #0C4CA3;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
@media all and (max-width: 992px) {
  .relatedContent .relatedSec {
    margin-top: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
