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

:root {
  --black: #121212;
  --deep-black: #000000;
  --white: #ffffff;
  --red: #ff5252;
  --deep-red: #ef4437;
  --w-600: 600;
  --w-800: 800;
  --w-400: 400;
  --w-300: 300;
  --s: 14px;
  --m: 16px;
  --l: 20px;
  --xl: 32px;
  --xxl: 38px;
  --xxxl: 48px;
}

body {
  font-family: 'proxima-nova', sans-serif;
  box-sizing: border-box;
  cursor: default;
  padding-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--deep-black);
}

.pre-line{
  white-space: pre-line;
}

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

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

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

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

::selection {
  background-color: var(--deep-black);
  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;
  }
}

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

@media only screen and (max-width: 768px) {
  .head {
    font-size: 28px;
    margin-bottom: 12px;
    margin-right: 0px;
    max-width: 100%;
    text-align: center;
  }
}

.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;
  width: 90%;
}
.subtitle-large {
  font-size: var(--l);
}

@media only screen and (max-width: 768px) {
  .subtitle {
    font-size: var(--s);
    letter-spacing: 0px;
    margin-right: 0px;
    width: 100%;
    text-align: center;
  }
}

.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: none;
  text-decoration: none;
  padding: 0.75rem 3rem;
  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(--white);
}

.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;
}

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


.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(--deep-black);
  z-index: 9999;
  border-bottom: 1px solid #222;
  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: 0.5rem;
  margin-left: 0.5rem;
}
.desktop-header-cta {
  min-width: 140px;
}
.mobile-header-cta,
.desktop-header-cta {
  min-height: 36px;
  font-weight: 600;
  font-size: 14px;
  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,
.desktop-header-cta > a{
  color: var(--black);
  background: white;
  border-radius: 4px;
  padding: 8px 20px;
}
.mobile-header-cta > a{
  font-size: 12px;
}

@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-color: var(--deep-black);
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-ctas{
  display: flex;
}
.hero-ctas .hero-cta {
  border-radius: 4px;
  margin-right: 8px;
  border: 1px solid var(--white);
  padding: 0.75rem 3rem;
}
.hero-ctas .hero-cta a{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ctas .hero-cta:hover {
  border-radius: 30px;
}
.hero-ctas .hero-cta:nth-child(2){
  font-weight: 700 !important;
  background-color: #333333;
  border-color: #333333;
}
.hero-ctas .hero-cta:nth-child(2) a{
  color: var(--white);
}
.hero-ctas .hero-cta img{
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

@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 screen and (max-width: 767px) {
  .hero-ctas{
    display: block;
  }
  .hero-ctas .hero-cta:nth-child(2){
    margin-top: 1rem;
  }
}

@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 {
  background-color: var(--deep-black);
  color: var(--white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.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;
    margin-top: 40px;
  }

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

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

@media screen and (max-width: 767px) {
  .hero-content-col-right{
    padding-bottom: 0rem;
    margin-top: 100px;
  }
  .hero-mobile-img{
    margin-top: 0px;
  }
}


@media only screen and (min-width: 768px) {
  .main-container-spacing {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* hero video section */
.video-sec {
  padding-bottom: 100px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.video-sec .container {
  width: 100%;
}
.video-box {
  position: relative;
  width: 100%;
}
.video-box iframe {
  min-height: 500px;
  height: calc(100vh - 120px);
  border: 1px solid #333;
  border-radius: 16px;
}
@media screen and (max-width: 991px) {
  .video-box iframe {
    min-height: 250px;
    height: 100%;
  }
  .video-sec {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .video-sec {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 479px) {
  .video-sec {
    margin-top: 0px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/*  experience healthifypro */
.healthifypro-experience-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 72px;
  padding-bottom: 72px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.title-container {
  margin-bottom: 24px;
}
.mini-title {
  margin-top: 0px;
  margin-bottom: 24px;
  font-family: 'Proxima nova', sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}
.hero-description {
  margin-bottom: 24px;
  font-family: 'Proxima nova', sans-serif;
  color: #fff;
  font-weight: 400;
}
.hero-description.centre {
  color: #fff;
  text-align: center;
}
.experience-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
}
.experience-grid img{
  width: 100%;
}
.experience-healthifypro-title{
  display: none;
}

@media screen and (max-width: 767px) {
  .healthifypro-experience-container {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .title-container{
    padding: 0rem 1rem;
  }
  .mini-title {
    margin-top: 0px;
    margin-bottom: 12px;
    font-size: 1.5rem;
    text-align: center;
  }
  .hero-description {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
  }
  .hero-description.centre {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .experience-grid{
    padding: 16px;
    padding-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  .experience-healthifypro-card{
    border: 2px solid #333;
    padding: 8px;
    width: calc(50% - 16px);
    margin: 8px;
    border-radius: 16px;
  }
  .experience-healthifypro-card.d-none-mobile{
    display: none;
  }
  .experience-healthifypro-title{
    display: block;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .mini-title {
    margin-top: 0px;
    margin-bottom: 8px;
    font-size: 2em;
  }
  .hero-description {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
/* plans  */
.plans-grid {
  display: -ms-grid;
  max-width: 900px;
  width: 100%;
}

.plan-container{
  padding: 24px 40px;
  position: relative;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  background: linear-gradient(180deg, #333333, #010101);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 100px;
}
.plan-container:last-of-type{
  margin-bottom: 16px;
}
.plan-container .plan-title{
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan-container .plan-price{
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #b4b4b4;
  font-weight: 400;
}
.plan-container .plan-description{
  font-size: 16px;
  margin-bottom: 16px;
}
.plan-container ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: 24px;
}
.plan-container ul li{
  font-size: 18px;
  margin-bottom: 16px;
  margin-left: 16px;
}
.plan-cta-container .plan-cta > a{
  width: 90%;
  background: #dadada;
  color: var(--deep-black);
  text-align: center;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .plans-grid{
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
  .plan-container{
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .plan-container:last-of-type{
    margin-bottom: 0px;
  }
  .plan-container ul{
    margin-left: 16px;
    margin-top: 0px;
  }
  .plan-container .plan-description{
    font-size: 12px;
  }
  .plan-container ul li{
    font-size: 12px;
    margin-bottom: 16px;
    margin-left: 0px;
  }
  .plan-cta-container .plan-cta > a{
    width: 100%;
  }
  .plan-container .plan-price{
    font-size: 12px;
    margin-bottom: 4px;
  }
}
/* how it works */
.how-it-works-card{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  color: white;
  border: 1px solid #333333;
  padding-top: 48px;
  padding-left: 20px;
  padding-bottom: 48px;
  padding-right: 56px;
  border-radius: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 600px;
}
.how-it-works-card > div:first-child{
  width: 50%;
}
.how-it-works-card > div:nth-child(2){
  width: 50%;
}
.how-it-works-card img{
  display: block;
  margin: auto;
  width: 75%;
}
.how-it-works-card  ul{
  margin-left: 16px;
}
.how-it-works-card  li{
  font-size: 14px;
  color: #FFFFFFDE;
  margin-top: 16px;
}
.how-it-works-card .divider{
  border-bottom: 1px solid #333;
  margin-top: 20px;
  margin-bottom: 20px;
}
.how-it-works-card .how-it-works-card-title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.how-it-works-card .how-it-works-card-description{
  font-size: 14px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .how-it-works-cards-container{
    padding: 16px;
    padding-bottom: 0px;
  }
  .how-it-works-card-title{
    margin-top: 20px;
  }
  .how-it-works-card{
    flex-direction: column; 
    padding: 20px;
  }
  .how-it-works-card > div{
      width: 100% !important;
  }
  .how-it-works-card:last-of-type{
    margin-bottom: 0px;
  }
}
/* perks */
.perk-items-container{
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(4,1fr);
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  color: white;
}
.perk-item{
  display: flex;
  align-items: center;
}
.perk-item div:first-of-type{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  height: 40px;
  width: 40px;
  margin-right: 16px;
  background: #333333;
}
.perk-item img{
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .perk-items-container{
    display: flex;
    flex-direction: column;
    padding: 4px 24px;
  }
}
/** testimonials */
.testimonials-container{
  color: white;
}
.testimony{
  padding: 24px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #121212;
  border-radius: 16px;
  margin-left: 24px;
  margin-right: 24px;
  max-width: 400px;
  height: 100%;
}
.testimony img{
  width: 50%;
  margin-bottom: 24px;
}
.testimony .testimonial-title{
  font-size: 20px;
  margin-bottom: 8px;
  font-weight:  bold;
}
.testimony .testimonial-summary{
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
.testimony .testimonial-description{
  font-size: 14px;
  margin-bottom: 20px;
}
.healthifypro-testimonials-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 72px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial-controls{
    margin-top: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-controls .glider-dot{
  height: .5rem;
  width: .5rem;
}
.testimonial-controls .glider-next img, .glider-prev img{
  height: 40px;
  width: 40px;
}
.testimonial-controls .glider-next, .glider-prev{
    position: static !important;
    height: 50px;
    width: 50px;
    margin: 0px 16px;
}
.testimonials-slider-container{
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .testimonials-slider-container{
    padding-bottom: 16px;
  }
  .healthifypro-testimonials-container {
    display: block;
    padding-top: 16px;
    margin-top: 12px;
  }
  .healthifypro-testimonials-container .hero-description{
    padding-left: 24px;
    padding-right: 24px;
  }
  .testimonial-controls .glider-dots{
    display: none;
  }
  .testimony .testimonial-summary, .testimony .testimonial-description{
    font-size: 12px;
    font-weight: 400;
  }
}
/* footer */
.footer{
  color: white;
  margin: auto;
  display: flex;
  justify-items: flex-start;
  border-top: 2px solid #333333;
  padding-top: 40px;
}
.footer .copyright{
  margin-left: auto;
  color: var(--white);
}
.footer .social-media-links > span{
  font-size: 12px;
  text-transform: capitalize;
  opacity: 60%;
}
.footer .social-media-links{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social-media-cta{
  filter: invert(100%);
  display: inline-block;
  padding-left: 1em;
}
.footer-social-media-cta > img{
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
  }
  .footer .copyright{
    margin-left: 0px;
    margin-top: 12px;
  }
}