:root {
  --primary: #a6baf1;
  --grey-1: #eee;
  --grey-2: #8f8d8d;
  --primary-dark: #2e31ffb9;
  --font-color: #374151;
  --white: #ffffff;
}

a,
a:hover,
a:visited,
a:focus {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--font-color);
  font-size: 18px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

.container-wrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.c-w { color: var(--white);}
.bg-c-p {
  background-color: var(--primary);
}

.p-r {
  position: relative;
}
.bg-c-pd {
  background-color: var(--primary-dark);
}

.bg-c-g-1 {
  background-color: var(--grey-1);
}

.bg-c-g-2 {
  background-color: var(--grey-2);
}

.fd-c {
  flex-direction: column;
}

.m-t-8 {
  margin-top: 8px;
}

.m-t-16 {
  margin-top: 16px;
}

.m-t-24 {
  margin-top: 24px;
}

.m-t-32 {
  margin-top: 32px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-48 {
  margin-top: 48px;
}

.m-t-56 {
  margin-top: 56px;
}

.m-t-64 {
  margin-top: 64px;
}

.p-t-8 {
  padding-top: 8px;
}

.p-t-16 {
  padding-top: 16px;
}

.p-t-24 {
  padding-top: 24px;
}

.p-t-32 {
  padding-top: 32px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-48 {
  padding-top: 48px;
}

.p-t-56 {
  padding-top: 56px;
}

.p-t-64 {
  padding-top: 64px;
}

.m-b-8 {
  margin-bottom: 8px;
}

.m-b-16 {
  margin-bottom: 16px;
}

.m-b-24 {
  margin-bottom: 24px;
}

.m-b-32 {
  margin-bottom: 32px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-48 {
  margin-bottom: 48px;
}

.m-b-56 {
  margin-bottom: 56px;
}

.m-b-64 {
  margin-bottom: 64px;
}

.p-b-8 {
  padding-bottom: 8px;
}

.p-b-16 {
  padding-bottom: 16px;
}

.p-b-24 {
  padding-bottom: 24px;
}

.p-b-32 {
  padding-bottom: 32px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-b-48 {
  padding-bottom: 48px;
}

.p-b-56 {
  padding-bottom: 56px;
}

.p-b-64 {
  padding-bottom: 64px;
}
.g-4 {
  gap: 4px;
}

.g-8 {
  gap: 8px;
}

.g-12 {
  gap: 12px;
}

.g-16 {
  gap: 16px;
}

.g-24 {
  gap: 24px;
}

.g-32 {
  gap: 32px;
}

.g-40 {
  gap: 40px;
}

.ai-c {
  align-items: center;
}

.ai-s {
  align-items: stretch;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.ta-c {
  text-align: center;
}

.text {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}

.h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.h2 {
  font-size: 35px;
  line-height: 35px;
}

.h3 {
  font-size: 18px;
  line-height: 18px;
}

.f-w-500 {
  font-weight: 500;
}

.f-w-600 {
  font-weight: 600;
}

.f-w-700 {
  font-weight: 700;
}

.f-w-800 {
  font-weight: 800;
}

.like-button {
  display: flex;
  align-items: center;
  border: 1px solid var(--font-color);
  border-radius: 12px;
}

.bold-button {
  border-style: solid;
  border-width: 2px;
}

.primary-dark-button {
  color: #ffffff;
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.primary-negative-button {
  color: var(--font-color);
  background-color: #ffffff;
  border-color: var(--font-color);
}

.primary-negative-button:hover {
  color: #ffffff;
  background-color: var(--font-color);
  border-color: var(--font-color);
}

header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
header li {
  padding: 8px 16px;
  border-bottom: 1px solid transparent;
}

header img {
  max-width: 169px;
}

header li:hover {
  border-bottom: 1px solid var(--font-color);
}

header .like-button {
  padding: 8px 16px;
}

.b-welcome {
  position: relative;
  padding: 150px 16px 120px;
  border-bottom: 4px solid var(--primary-dark);
}

.like-button-p {
  padding: 15px 30px 15px 30px;
}

.b-welcome__info {
  max-width: 50%;
  padding-right: 16px;
}

.welcome-image {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 50%;
}

.b-card-section {
  text-align: center;
}

.b-card-section header {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.b-card {
  flex-basis: 100%;
  margin-top: 44px;
  position: relative;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  padding: 55px 40px;
}

.b-card img {
  position: absolute;
  display: block;
  width: 88px;
  height: 88px;
  top: -44px;
  left: calc(50% - 44px);
}

.b-card-section .like-button {
  display: inline-block;
  margin: 0 auto;
}

.b-two-head__item {
  flex-basis: 100%;
  padding: 0 15px;
}

.b-two-head__image-container {
  border-radius: 20px;
  display: flex;
  overflow: hidden;
}
.b-two-head__image-container img {
  display: block;
  max-width: 100%;
}

.b-info-with-bg-img-section .like-button {
  display: inline-block;
  align-self: flex-start;
}

.b-info-with-bg-img-section {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}

.b-info-with-bg-img__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.b-info-with-bg-img__text {
  max-width: 75%;
}

.b-blured-text-section {
  padding-left: 16px;
  padding-right: 16px;
}

.b-blured-text-section__info-box {
  max-width: 850px;
}

.b-two-head .b-card {
  color: var(--primary-dark);
}

.b-footer__contact {
  position: relative;
  background-color: var(--white);
  margin: 0 auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
}

.b-footer__line {
  position: absolute;
  background-color: var(--primary-dark);
  left: -100vw;
  right: -100vw;
  bottom: -10%;
  height: 119px;
}

.d-f {
  display: flex;
}

.d-ib {
  display: inline-block;
}

.o-h {
  overflow: hidden;
}

.b-bmi {
  padding: 60px 16px 120px;
  border-bottom: 4px solid var(--primary-dark);
}

.page-bmi footer {
  background-color: var(--grey-1);
}

.b-bmi__form input {
  border: 1px solid #666;
  border-radius: 8px;
  padding: 12px 24px;
}

.b-bmi__form .result {
  width: 100%;
  max-width: 470px;
  padding-top: 15px;
}

.b-bmi__form {
  background-color: white;
  border-radius: 12px;
  padding: 30px 45px;
}

.b-faq {
  padding-top: 60px;
  padding-bottom: 120px;
  background-image: url("../images/faq-gg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 4px solid var(--primary-dark);
}

.b-faq > div {
  padding: 0 16px;
}

.b-privacy {
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 4px solid var(--primary-dark);
}

.b-sources-list a {
  color: var(--primary-dark);
  word-break: break-all;
}

footer > div {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 600px) {
  .b-welcome__info > div {
    flex-direction: column;
  }
  .b-two-head .b-two-head__item:not(.b-two-head__image-container) > div {
    flex-direction: column;
  }
}
@media (max-width: 950px) {
  header .container-wrap > div {
    flex-direction: column;
  }
  header img {
    height: 60px;
  }
  .b-card-section .container-wrap > div {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .b-info-with-bg-img-section .b-info-with-bg-img__text {
    max-width: 100%;
  }

  body {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .h1 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
  }

  .h2 {
    font-size: 22px;
    line-height: 22px;
  }

  .h3 {
    font-size: 15px;
    line-height: 15px;
  }
}

@media (max-width: 1250px) {
  .b-welcome-1250 {
    padding-top: 20px;
  }
  .b-welcome-1250 img {
    display: none;
  }
  .b-welcome-1250 .b-welcome__info {
    max-width: 100%;
  }
  
  .b-info-with-bg-img__image {
    background: #f7f7f7!important;
  }
}

@media (max-width: 1024px) {
 .b-two-head > div {
    flex-direction: column;
 }

 .b-welcome__info {
    padding: 16px;
    max-width: 100%;
    margin: 0 auto;
 }

 .b-two-head__image-container {
    flex-basis: 260px;
 }

 footer .container-wrap {
  flex-wrap:  wrap;
 }
}
