*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --black: #121212;
  --deep-black: #121212;
  --white: #FFFFFF;
  --offwhite: #F0F0F0;
  --red: #FF5252;
  --deep-red: #EF4437;
  --grey: #717171;
  --light-grey: #F6F6F6;
  --red-gradient: linear-gradient(90deg, #DE2D2D, #A91717);
  --w-600: 600;
  --w-800: 800;
  --w-400: 400;
  --w-300: 300;
  --s: 14px;
  --m: 16px;
  --l: 20px;
  --xl: 32px;
  --xxl: 38px;
  --xxxl: 40px;
}

body {
  font-family: "proxima-nova", sans-serif;
  box-sizing: border-box;
  cursor: default;
  padding-bottom: 6%;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

.main-container{
  max-width: 1280px;
}

@media only screen and (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}

a {
  text-decoration: none;
  color: var(--black);
}

::-moz-selection {
  background-color: var(--deep-red);
  color: var(--white);
}

::selection {
  background-color: var(--deep-red);
  color: var(--white);
}

hr {
  border: 0;
  height: 1px;
  background: 0 0;
  background-image: linear-gradient(to right, #444, #444, #444);
}

@media only screen and (min-width: 768px) {
  img.desktop-img {
    display: block;
  }

  img.mobile-img {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  img.desktop-img {
    display: none;
  }

  img.mobile-img {
    display: block;
  }
}

.heading-primary--center {
  text-align: center;
}

.head {
  display: block;
  font-size: var(--xxxl);
  font-weight: var(--w-800);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: all 0.2s;
  max-width: 80%;
}

@media only screen and (max-width: 768px) {
  .head {
    font-size: var(--xl);
    margin-bottom: 12px;
  }
}

.title {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--w-600);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: all 0.2s;
}

@media only screen and (max-width: 768px) {
  .title {
    font-size: var(--xl);
    margin-bottom: 12px;
  }
}

.subtitle {
  display: block;
  font-weight: var(--w-300);
  line-height: 1.2;
  font-size: var(--m);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.subtitle-large{
  font-size: var(--l);
}

@media only screen and (max-width: 768px) {
  .subtitle {
    font-size: var(--s);
    letter-spacing: 0px;
  }
}

.description {
  font-size: var(--m);
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .description {
    font-size: var(--s);
  }
}

.btn-container--center {
  text-align: center;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: var(--s);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  box-shadow: 1px 2px 5px 0 rgba(46, 61, 73, 0.3);
}

.btn--white {
  font-weight: 700 !important;
  background-color: var(--white);
  color: var(--deep-black);
}

.btn--app-apple {
  background-image: url(https://assets.healthifyme.com/healthifyme-public/static/images/landing-website/images/appstore_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20rem;
  height: 5rem;
}

.btn--app-android {
  background-image: url(https://assets.healthifyme.com/healthifyme-public/static/images/landing-website/images/googleplay_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20rem;
  height: 5rem;
}

.btn--transparent {
  color: var(--deep-black);
  background-color: none;
}

.btn--black {
  font-weight: 700;
  background: var(--black);
  color: var(--white);
}

.btn--red-gradient {
  font-weight: 700;
  background: var(--red-gradient);
  color: var(--white);
}

.btn--fullWidth {
  width: 100%;
}

.copyright {
  text-align: center;
  font-size: var(--s);
  color: var(--grey);
  opacity: 0.75;
  font-weight: 300;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 768px) {
  .copyright{
    font-size: 12px;
  }
}

.section-wrapper {
  display: flex;
  width: 100%;
  padding: 6.25rem 10%;
}

@media only screen and (max-width: 768px) {
  .section-wrapper {
    flex-direction: column-reverse;
    padding: 2.5rem 7%;
  }
}

.content-col-left {
  flex-direction: column;
  flex-basis: 50%;
}

.content-col-right {
  flex-direction: column;
  flex-basis: 50%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

@media only screen and (max-width: 768px) {
  .w-sm-90 {
    width: 90%;
  }

  .w-sm-100 {
    width: 100%;
  }

  .w-sm-auto {
    width: auto;
  }
}

.weight-400 {
  font-weight: var(--w-400);
}

.weight-600 {
  font-weight: var(--w-600);
}

.weight-800 {
  font-weight: var(--w-800);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 5rem;
}

@media only screen and (max-width: 768px) {
  .mt-sm-0 {
    margin-top: 0;
  }

  .mt-sm-3 {
    margin-top: 1.5rem;
  }
}

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

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

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

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 3rem;
}

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

@media only screen and (max-width: 768px) {
  .pt-sm-0 {
    padding-top: 0;
  }

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

.dir-column {
  flex-direction: column;
}

.d-flex {
  display: flex;
}

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

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

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

@media only screen and (max-width: 768px) {
  .align-sm-left {
    align-items: baseline;
  }

  .text-sm-left {
    text-align: left;
  }
}

/* ====== HEADER  ====== */
.header__logo{
  height: 40px;
  display: inline-block;
  height: 40px;
  width: 125px;
  object-fit: contain;
  object-position: center bottom;
}
.header__logo-box {
  position: relative;
}

.header__text-box {
  position: relative;
  text-align: left;
}

.header__nav {
  width: 100%;
  position: fixed;
  top: 0px;
  background-color: var(--white);
  z-index: 9999;
  border-bottom: 1px solid #dfdfdf;
  height: 65px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.header__nav-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin:auto;
}

@media only screen and (max-width: 992px) {
  .header__nav {
    padding: 1rem 1.5rem;
  }

  .header__nav__menu_on_left {
    padding-left: 7rem;
    padding-right: 2rem;
  }
}

.header__card {
  max-width: 40rem;
  border-radius: 10px;
  background-color: var(--white);
  text-align: center;
  padding: 3rem;
}

@media only screen and (max-width: 992px) {

  .header-content,
  .header-content-v3 {
    max-width: 100vw;
    margin-top: 10rem;
    padding: 24px;
  }
}

.header-download-app-cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-download-app-cta-container>div {
  margin-right: .50rem;
  margin-left: .50rem;
}
.desktop-header-cta{
  min-width: 140px;
}
.mobile-header-cta,.desktop-header-cta {
  min-height: 36px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--m);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-header-cta{
  display: none;
  min-width: 120px;
}

.mobile-header-cta>a,.desktop-header-cta>a {
  color: var(--primary-color);
  text-decoration: none;
}
.mobile-header-cta,.desktop-header-cta{
  transition: 0.3s ease-in-out 0s;
}
.mobile-header-cta:hover,.desktop-header-cta:hover{
  border-radius: 20px;
}
.desktop-header-cta>a > img{
  margin-right: 12px;
}

.mobile-header-cta>a.black ,.desktop-header-cta>a.black{
  color: var(--black);
}

@media only screen and (max-width: 992px) {
  .mobile-header-cta {
    display: flex;
  }
  .desktop-header-cta {
    display: none;
  }
}

.desktop-header-cta-container {
  color: var(--deep-black);
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .desktop-header-cta-container {
    display: none;
  }
}

.header-download-app-cta-container a {
  display: flex;
}


/* ====== HERO SECTION  ====== */
.hero-section {
  min-height: 90vh;
  margin: 0px auto;
  background-size: cover;
  position: relative;
  background-position-x: center;
  background-repeat: no-repeat;
  background-image: var(--red-gradient);
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-section .hero-cta:hover{
  border-radius: 30px;
}

@media only screen and (max-width: 1200px) {
  .hero-section {
    min-height: 60vh;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 576px) {
  .hero-section {
    min-height: auto;
  }
}

.hero-content-container {
  display: flex;
}

.hero-content-col-left {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-basis: 50%;
}

.header-content__left {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
}

.hero-content-col-right {
  flex-basis: 50%;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 992px) {
  .hero-content-col-right {
    padding-top: 0%;
  }
  .hero-content-col-left {
    margin-top: 1rem;
    padding-left: 7%;
    padding-right: 7%;
  }
}

.hero-heading-container {
  color: var(--white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* margin-bottom: var(--xxxl); */
}

@media screen and (max-width: 992px) {
  .hero-heading-container {
    margin-bottom: 3rem;
  }
}

.hero-desktop-img {
  margin: auto;
  display: block;
}
.hero-mobile-img {
  width: 100%;
  height: auto;
  display: none;
}

.header-download-app-cta-container a {
  display: flex;
}

.header-content__left .btn {
  margin-top: 1.5rem;
}

@media screen and (max-width: 992px) {
  .hero-desktop-img {
    display: none;
  }

  .hero-mobile-img {
    display: block;
  }

  .header-download-app-cta-container>div {
    margin-right: .75rem;
    margin-left: .75rem;
  }

  .hero-content-container {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 768px) {
  .main-container-spacing {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ====== ABOUTUS SECTION  ====== */
.section-about-us-wrapper{
  background-color: var(--light-grey);
}
.section-about-us {
  background-color: var(--light-grey);
  padding-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}

.section-about-us>.content-col-left {
  display: flex;
  align-items: center;
}

.section-about-us>.content-col-right {
  display: flex;
  align-items: center;
}

.content-col-left>.about-section-img {
  height: 100%;
  max-height: 460px;
}

@media only screen and (max-width: 768px) {
  .content-col-left>.about-section-img {
    max-height: 340px;
    width: auto;
  }
}
/*  ======  OFFERING SECTION  ======  */
.section-offering-wrapper > .section-wrapper{
  margin: auto;
}

/*  ======  FEATURES SECTION  ======  */

.offerings-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2rem;
  width: 85%;
}

@media only screen and (min-width: 2500px) {
  .offerings-card-wrapper {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .offerings-card-wrapper {
    width: auto;
    grid-gap: 2rem;
  }
}

.vertical-card {
  background-color: var(--light-grey);
  padding: 3rem;
  min-height: 360px;
  border-radius: 16px;
}
.vertical-card-title{
  font-size: 18px;
  font-weight:bold;
}

@media only screen and (max-width: 768px) {
  .vertical-card {
    margin: auto;
    max-width: 100%;
    min-height: auto;
    padding: 2rem;
  }
  .vertical-card-title{
    font-size: 16px;
  }
}

.vertical-card>.card-icon {
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .vertical-card>.subtitle {
    font-size: var(--m);
  }

  .vertical-card>.card-icon {
    margin-bottom: 1rem;
  }
}

/*  ======= PLAN FEATURES SECTION ======= */

.features-card-wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  row-gap: 36px;
  justify-content: space-between;
  padding: 1em;
}

.plan-features-card {
  padding: 0.5rem;
  min-height: 48px;
  min-width: 380px;
  justify-self: center;
}

.plan-features-card .subtitle {
  font-size: var(--m);
}

.plan-features-card>.card-icon {
  margin-right: 2em;
}

@media only screen and (max-width: 768px) {
  .features-card-wrapper {
    grid-template-columns: auto;
    padding: 0px;
  }

  .plan-features-card {
    justify-self: left;
    min-width: 100%;
    width: 100%;
    padding: 0px;
  }

  .plan-features-card>.card-icon {
    margin-right: 1em;
  }
}

/*  ======= DEMOGRAPHICS & TESTIMONIALS SECTION ========= */

.testimonials-section-wrapper{
  background-color: var(--deep-black);
}
.testimonials-section {
  color: var(--white);
  margin:auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonials-wrapper {
  width: 70%;
  min-height: 300px;
}

.testimonials-card {
  padding: 3rem;
  display: flex;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.06);
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
}

.testimonials-card>.image-container {
  flex-basis: 40%;
}

.testimonials-card>.testimonial-details-container {
  flex-basis: 55%;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}

.testimonial-details-container>.subtitle {
  margin-bottom: 1rem;
  color: var(--white);
}

.testimonial-details-container>.subtitle.white {
  margin-bottom: 1rem;
  color: var(--white);
}

.testimonial-details-container>.description {
  margin-top: 0px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: var(--s);
}

@media only screen and (max-width: 768px) {
  .testimonials-wrapper {
    width: 100%;
  }

  .testimonials-card {
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
  }

  .testimonials-card>.image-container {
    margin-bottom: 2rem;
  }

  .testimonials-card>.testimonial-details-container {
    padding-right: 0px;
    width: 85%;
  }
  .testimonial-details-container>.subtitle ,.testimonial-details-container>.subtitle.white ,.testimonial-details-container>.description{
    margin-bottom: .5rem;
  }
}
/** ==========  Plan features ========== **/
.section-plan-features{
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .section-plan-features .subtitle{
    width: 100%;
  }
}

/*  ==========  SLIDER  ======== */

.slider-wrapper {
  position: relative;
  padding: 1rem;
}

@media only screen and (max-width: 768px) {
  .slider-wrapper {
    padding: 0px;
  }
}

.slider-prev-btn,
.slider-next-btn {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  outline: 0;
  background-color: transparent;
  border: solid 1px rgba(255, 255, 255, 0.16);
  cursor: pointer;
  color: var(--white);
  font-size: var(--l);
}
.slider-prev-btn:hover,
.slider-next-btn:hover{
  background: #333333;
  transition: background;
}

.slider-prev-btn {
  left: -7rem;
}

.slider-next-btn {
  right: -7rem;
}
.testimonial-slider-dots{
  display: none;
  margin-top: 24px;
}
.testimonial-slider-dots button{
  border:none;
  outline: none;
  background: none;
  cursor: pointer;
}
.testimonial-slider-dots span.active{
  background: white;
}
.testimonial-slider-dots span {
  height: 2px;
  width: 14px;
  background: #9D9D9D;
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .slider-prev-btn,.slider-next-btn{
    display: none;
  }
  .testimonial-slider-dots{
    display: flex;
    justify-content: center;
  }
}

/*  ======  FAQ SECTION ====== */
.section-faq-wrapper{
  background: var(--light-grey);
}
.section-faq{
  margin-left:auto;
  margin-right:auto;
}
.faq-question-container {
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--offwhite);
}
.section-faq .faq-question-container:last-of-type{
  border-bottom: none;
}

.faq-question-container>summary::-webkit-details-marker {
  display: none;
}
.faqs-container{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@keyframes details-show {
  from {
    opacity: 0;
    transform: var(--details-translate, translateY(-0.5em));
  }
}

details[open]>*:not(summary) {
  animation: details-show 150ms ease-in-out;
}
@media only screen and (min-width: 768px) {
  .faqs-container{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .faq-question-container {
    border-bottom: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .faqs-container{
    padding-left: 0px;
    padding-right: 0rem;
  }
}

.faq-question-container>summary {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-question-container .accordion-icon {
  display: inline-block;
  font-size: 14px;
  margin-right: 4rem;
  background-color: var(--deep-red);
  background-image: none;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  height: 20px;
  width: 16px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion-icon > span{
  padding: 4px;
}

@media only screen and (max-width: 768px) {
  .faq-question-container .accordion-icon {
    margin-right: 1.5rem;
  }
}

.faq-question-container .description {
  margin-left: 6rem;
  font-size: var(--l);
}

@media only screen and (max-width: 768px) {
  .faq-question-container .description {
    margin-left: var(--xxl);
  }
}

.footer-section {
  border-top: solid 1px rgb(177, 177, 177, 0.50);
  border-bottom: solid 1px rgb(177, 177, 177, 0.50);
  padding: 2rem 10%;
}

.copyright-section {
  padding: 2rem 10%;
}

.highlight {
  color: var(--red);
}

.sticky-footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: auto;
  z-index: 1;
  width: 100%;
  min-height: 7%;
  background-color: var(--white);
  outline: #dfdfdf solid 1px;
  outline-offset: 0;
  padding: 1rem;
}

.sticky-footer > .main-container{
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  margin:auto;
  width: 100%;
}
.sticky-footer .footer-cta-container .footer-cta{
  padding: 12px 32px;
}

@media only screen and (max-width: 768px) {
  .sticky-footer .description {
    display: none;
  }
  .sticky-footer .footer-cta-container {
    width: 100%;
  }
  .sticky-footer .footer-cta-container .footer-cta{
    width: 100%;
    text-align:center;
  }
}