:root {
  --body-font-size: 18px;

  --body-font-weight: 400;

  --body-font-color: #000;

  --body-line-height: 1.5;

  --heading-font-weight: 500;

  --white-color: #fff;

  --primary-color: #d259ff;

  --pale-blue: #ccd6ff;
}

/*!

 *	Common

 * ----------------------------------------------- */




*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}
html * {
  font-family: inherit;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;

  background: #fff;

  color: #111;
        
    font-family: "Urbanist", sans-serif;

  font-size: var(--body-font-size);
}

.container * {
  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;
}

.container {
  max-width: 1220px;

  padding: 0 50px;

  margin: 0 auto;
}

img {
  width: 100%;

  max-width: 100%;

  object-fit: cover;
}

ul {
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--body-font-color);
  margin: 0;

  transition: all 0.3s;
}
a:hover {
  color: var(--primary-color);
}
p {
  margin-top: 0;

  margin-bottom: 24px;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: var(--heading-font-weight);

  margin-top: 0;

  margin-bottom: 22px;

  line-height: 1.1;
}

h1,
.h1 {
  font-size: 96px;
}

h2,
.h2 {
  font-size: 70px;
}

h3,
.h3 {
  font-size: 66px;
}

h4,
.h4 {
  font-size: 30px;
}

h5,
.h5 {
  font-size: 24px;
}

h6,
.h6 {
  font-size: 20px;
}

.g-10 {
  margin-right: 10px;

  margin-left: 10px;
}

.g-10 > [class*="col-"] {
  padding-right: 10px;

  padding-left: 10px;
}

.row {
  margin-left: -24px;

  margin-right: -24px;

  display: -webkit-flex;

  display: -moz-flex;

  display: -ms-flex;

  display: -o-flex;

  display: flex;

  flex-wrap: wrap;
}

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

[class*="col-"] {
  min-height: 1px;

  padding-left: 24px;

  padding-right: 24px;
}

.clearfix:after {
  content: "";

  display: table;

  clear: both;
}

.col-1 {
  max-width: 8.33333333%;

  flex: 0 0 8.33333333%;
}

.col-2 {
  max-width: 16.66666667%;

  flex: 0 0 16.66666667%;
}

.col-3 {
  max-width: 25%;

  flex: 0 0 25%;
}

.col-4 {
  max-width: 33.33333333%;

  flex: 0 0 33.33333333%;
}

.col-5 {
  max-width: 41.66666667%;

  flex: 0 0 41.66666667%;
}

.col-6 {
  max-width: 50%;

  flex: 0 0 50%;
}

.col-7 {
  max-width: 58.33333333%;

  flex: 0 0 58.33333333%;
}

.col-8 {
  max-width: 66.66666667%;

  flex: 0 0 66.66666667%;
}

.col-9 {
  max-width: 75%;

  flex: 0 0 75%;
}

.col-10 {
  max-width: 83.33333333%;

  flex: 0 0 83.33333333%;
}

.col-11 {
  max-width: 91.66666667%;

  flex: 0 0 91.66666667%;
}

.col-12 {
  max-width: 100%;

  flex: 0 0 100%;
}

.bg-blue {
  background-color: var(--pale-blue);
}

.btn {
  display: inline-flex;

  align-items: center;
  text-align: center;
  justify-content: center;

  background: var(--primary-color);
  border: 1px solid transparent !important;
  padding: 13px 34px;

  border-radius: 50px;

  color: var(--white-color);

  font-size: 22px;

  font-weight: var(--heading-font-weight);

  -webkit-appearance: none;

  -moz-appearance: none;

  cursor: pointer;

  -webkit-transition: all 0.3s;

  text-align: center;
}

.btn:hover {
  background: var(--body-font-color);
  color: var(--white-color);
}

.link {
  font-size: 24px;

  text-decoration: underline;

  color: var(--body-font-color);

  font-weight: var(--heading-font-weight);
}
.link:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.btn.icon {
  gap: 40px;

  min-width: 318px;
}

.btn.icon::after {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background: url("./assets/images/long-arrow.svg") no-repeat;
  background-position: center;
  transition: inherit;
  transform: rotate(-90deg);
}

.btn.icon:hover::after {
  transform: translateX(10px) rotate(-90deg);
}

.d-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

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

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

section {
  padding-top: 100px;

  padding-bottom: 100px;
}

.mx-auto {
  margin-left: auto;

  margin-right: auto;
}

.text-white {
  color: var(--white-color);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-68 {
  margin-bottom: 68px;
}

.fs-22 {
  font-size: 22px;
}

/* Site Header */

.site-header {
  position: relative;
}

.site-logo img {
  margin-top: 54px;

  max-width: 298px;
}

.navbar {
  background-color: var(--white-color);

  padding: 44px 40px 44px;

  border-radius: 0 0 30px 30px;

  display: flex;

  align-items: end;
}

.navbar ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.navbar ul li + li {
  margin-left: 38px;
}

.navbar ul a {
  color: var(--body-font-color);

  font-weight: var(--heading-font-weight);

  padding: 4px 0;
}

.navbar ul a:hover {
  color: var(--primary-color);

  text-decoration: underline;
}

.menu-toggle {
  display: flex;

  flex-wrap: wrap;

  width: 40px;

  height: 26px !important;

  z-index: 9;

  position: relative;

  top: 0;

  margin-left: auto;

  display: none;
}

.menu-toggle span {
  width: 30px;

  height: 4px;

  background: var(--body-font-color);

  margin: 0px auto;

  transition: all 0.3s;

  backface-visibility: hidden;
}

.menu-toggle.on .bar1 {
  transform: rotate(45deg) translate(0px, 5px);
}

.menu-toggle.on .bar2 {
  opacity: 0;
}

.menu-toggle.on .bar3 {
  transform: rotate(-45deg) translate(7px, -13px);
}

/* Homa Page */

/* Banner Section */

.banner-section {
  position: relative;
}

.badge {
  font-weight: var(--heading-font-weight);

  background-color: var(--white-color);

  border-radius: 20px;

  padding: 6px 20px;

  display: inline-block;
}

.main-title p {
  font-size: 28px;
}

.banner-img > img {
  position: absolute;

  right: 0;

  bottom: -16px;

  border-radius: 100px 0 0 100px;

  max-width: 30%;

  height: 100%;

  object-fit: cover;
}

.banner-img .mobile-img img {
  max-width: 340px;

  position: relative;

  z-index: 1;
}

/* Features Section */

.features-section {
  padding-top: 150px;
}

.features-section .card > img {
  border-radius: 20px;

  min-height: 380px;

  max-height: 380px;
  object-position: top center;
}

.features-section .card p,
.weight-loss-block .weight-loss-content p {
  color: #706f6f;
}

.features-section .card .card-content {
  max-width: 330px;
}

/* Pricing Section */

.pricing-card {
  border-radius: 20px;

  background-color: var(--white-color);
}

.pricing-card .card-title {
  background: var(--body-font-color);

  border-radius: 20px 20px 0 0;

  padding: 12px 24px;

  font-weight: var(--body-font-weight);
}

.pricing-card > div {
  padding: 30px 24px 48px 24px;
}

.pricing-card .price {
  font-size: 28px;
  margin-top: 12px;
  margin-bottom: 32px;
}
.pricing-card p:not(.price) {
  font-size: 16px;
}
.app-section {
  background-color: rgba(244, 244, 244, 1);
}

.app-section .main-title h2 {
  max-width: 362px;
}

/* .app-section .app-img {

  min-width: 50vw;

} */

.app-section .app-img .logo {
  margin-top: -60px;

  margin-bottom: -102px;
}

.app-link {
  max-width: 330px;
}

.app-link > img {
  max-width: 300px;
}

.app-link .link-block img {
  max-height: 60px;

  object-fit: contain;
}

/* .Weight Loss Section */

.weight-loss-item .weight-loss-img img {
  border-radius: 30px;
}

.weight-loss-block {
  max-width: 1054px;
}

.weight-loss-content {
  padding: 24px;

  max-width: 470px;
}

.weight-loss-block .weight-loss-item:nth-child(2) {
  margin: -60px 0;

  position: relative;

  z-index: 1;
}

.weight-loss-block .weight-loss-item:nth-child(2) .weight-loss-img img {
  margin-left: -18px;
}

/* Contact Section */

.contact-section {
  padding-bottom: 60px;
}

.form-container {
  max-width: 1064px;
}

.site-footer {
  padding-bottom: 50px;
}

.site-footer .footer-content {
  max-width: 1064px;
  font-size: 24px;
  line-height: 1.8;
}
.form-group {
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 20px;
}
input,
textarea {
  width: 100%;
  padding: 6px 24px 24px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 0 0 20px 20px;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}
label {
  display: block;
  margin-top: 0;
  font-weight: 500;
  padding: 20px 24px 2px;
  font-size: 18px;
}
.required {
  color: var(--primary-color);
}
form .btn {
  width: 100%;
  margin-top: 30px;
}
.footer-content span {
  display: block;
}
@media only screen and (max-width: 1600px) {
  .banner-section .mobile-img {
    text-align: left;
    margin-left: -64px;
  }
  .banner-img > img {
    max-width: 33%;
  }
}

@media only screen and (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .bar1,
  .bar2,
  .bar3 {
    display: block;

    margin: 5px;
  }

  .container {
    padding: 0 30px;
  }
  body.menu-open .site-header {
    background-color: var(--white-color);
  }
  .navbar {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    z-index: 99;

    width: 100%;

    padding: 40px 30px;
  }

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

  .site-header {
    padding: 20px 0;
  }

  .site-logo img {
    margin-top: 0;
  }

  .navbar ul {
    flex-direction: column;
  }

  .navbar ul li + li {
    margin-left: 0;

    margin-top: 20px;
  }

  section {
    padding-top: 60px !important;

    padding-bottom: 60px !important;
  }

  h1,
  .h1 {
    font-size: 56px;
  }

  h2,
  .h2 {
    font-size: 48px;
  }

  h3,
  .h3 {
    font-size: 40px;
  }

  h4,
  .h4 {
    font-size: 26px;
  }

  .fs-22 {
    font-size: 18px;
  }

  .mb-md-48 {
    margin-bottom: 48px;
  }

  .mb-md-28 {
    margin-bottom: 28px !important;
  }

  .row {
    margin-left: -15px !important;

    margin-right: -15px !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .justify-md-center {
    justify-content: center;
  }
  [class*="col-"] {
    padding-left: 15px !important;

    padding-right: 15px !important;
  }

  .col-md-6 {
    max-width: 50%;

    flex: 0 0 50%;
  }

  .col-md-12 {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .main-title p,
  .pricing-card .price {
    font-size: 20px;
  }
  .app-section .app-img {
    text-align: center;
  }
  .app-section .app-img .logo {
    margin-top: -24px;
    max-width: 500px;
  }

  .app-section .main-title h2 {
    max-width: 100%;
  }

  .weight-loss-block .weight-loss-item:nth-child(2) {
    margin: -28px 0;
  }
  .banner-img .mobile-img img {
    margin-left: -38px;
  }
  .banner-section .mobile-img {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .btn {
    padding: 12px 34px;

    font-size: 18px;
  }

  .link {
    font-size: 18px;
  }
  h2,
  .h2 {
    font-size: 38px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  h4,
  .h4 {
    font-size: 22px;
  }
  [class*="col-"] {
    width: 100%;
  }

  .col-sm-6 {
    max-width: 50%;

    flex: 0 0 50%;
  }

  .col-sm-12 {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .mb-sm-18 {
    margin-bottom: 18px !important;
  }

  .mb-sm-28 {
    margin-bottom: 28px !important;
  }

  .mb-sm-48 {
    margin-bottom: 48px !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }

  .banner-section {
    padding-top: 40px !important;
    padding-bottom: 0 !important;

    overflow: hidden;
  }

  .banner-section .main-title h1 {
    max-width: 370px;
  }

  .banner-img {
    position: relative;
    margin-top: 14px;
  }
  .banner-img .mobile-img img {
    max-width: 340px;
    position: relative;
    z-index: 1;
    margin-left: 0;
    object-position: left center;
  }
  .banner-img > img {
    max-width: 80%;

    min-width: 50vw;

    right: -30px;

    min-height: 48vh;
  }

  .banner-img .mobile-img img {
    max-height: 400px;

    object-fit: contain;
  }

  .app-section .app-img .logo {
    margin-bottom: -58px;
  }

  .weight-loss-item .weight-loss-img img {
    margin-left: 0 !important;

    max-height: 340px;

    object-fit: cover;
  }

  .weight-loss-block .weight-loss-item:nth-child(2) {
    margin: 0 0;
  }

  .weight-loss-content {
    padding: 20px 0 0 0;

    max-width: 100%;
  }

  .site-footer .footer-content {
    font-size: 16px;

    line-height: 1.5;
  }
  .site-footer .footer-content p span {
    display: block;
  }

  .site-footer {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .banner-img > img {
    min-height: 53vh;
  }
}
