html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
button,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

* {
  scroll-behavior: smooth;
}

body {
  background-color: #171717;
  position: relative;
}
body.ovh {
  overflow: hidden;
}

header {
  display: none;
}
@media (max-width: 767px) {
  header {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    background-color: transparent;
  }
  header.open {
    background-color: #242424;
    width: 100%;
  }
  header > img.menu-logo {
    width: 180px;
    position: absolute;
    top: 21px;
    left: 30px;
    display: none;
  }
  header.open > img.menu-logo {
    display: block;
  }
  header > .menu-container {
    padding-top: 28px;
    padding-right: 28px;
    text-align: right;
    height: 26px;
  }
  header.open > .menu-container {
    height: 100vh;
  }
  header div.menu-icon {
    width: 26px;
    height: 16px;
    background-image: url(../img/icon-menu-open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-top: 8px;
  }
  header.open div.menu-icon {
    background-image: url(../img/icon-menu-close.svg);
  }
  header div.menu-content {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding-right: 0;
    padding-left: 28px;
    margin-top: 90px;
  }
  header.open div.menu-content {
    display: flex;
  }
  header div.menu-content > a {
    color: #f4f4f4;
    font-size: 24px;
    line-height: 70px;
    text-decoration: none;
    border-bottom: 1px solid #707070;
    width: 100%;
    text-align: right;
  }
  header div.menu-content > a:last-of-type {
    border-bottom-color: transparent;
  }
  header div.menu-content > div.menu-social-links {
    margin-top: 104px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;
  }
  header div.menu-content > div.menu-social-links > a {
    color: #f4f4f4;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
  }
}
section {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 767px) {
  section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
section#home-section {
  padding-top: 32px;
  background: url(../img/bg-home.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  section#home-section {
    background-image: url(../img/bg-home-mobile.jpg);
    background-size: cover;
    padding-top: 21px;
  }
}
section#home-section > nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
section#home-section > nav > img {
  width: 203px;
}
@media (max-width: 767px) {
  section#home-section > nav > img {
    width: 180px;
  }
}
section#home-section > nav > ul.nav-links {
  width: 50%;
  min-width: 620px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 767px) {
  section#home-section > nav > ul.nav-links {
    display: none;
  }
}
section#home-section > nav > ul.nav-links a {
  display: contents;
}

section#home-section > nav > ul.nav-links li,
section#home-section > nav > ul.nav-links li a {
  color: #f4f4f4;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
button {
  width: 189px;
  height: 38px;
  border-radius: 19px;
  border-color: transparent;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-size: 200px 38px;
  background-position: -4px;
  transition: all 256ms ease-in;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background-size: 272px 38px;
}

section#home-section {
  position: relative;
  overflow-x: hidden;
}
section#home-section > div.home-top {
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  align-items: center;
  margin-top: 160px;
  position: relative;
}
@media (max-width: 767px) {
  section#home-section > div.home-top {
    grid-template-columns: auto;
  }
}

section#home-section > div.home-top > div.home-top-left {
  grid-column: 1 / span 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 16px;
  transform: rotate(-90deg);
  column-gap: 64px;
}
@media (max-width: 767px) {
  section#home-section > div.home-top > div.home-top-left {
    display: none;
  }
}
section#home-section > div.home-top > div.home-top-left > a {
  color: #f4f4f4;
  font-size: 15px;
  line-height: 15px;
  text-decoration: none;
}

section#home-section > div.home-top > div.home-top-center {
  grid-column: 2 / span 1;
  margin-left: 224px;
}
@media (max-width: 767px) {
  section#home-section > div.home-top > div.home-top-center {
    margin-left: 0;
    grid-column: 1 / span 1;
  }
}
section#home-section > div.home-top > div.home-top-center > span {
  color: #f4f4f4;
  font-size: 98px;
  line-height: 96px;
  font-weight: 600;
}
@media (max-width: 767px) {
  section#home-section > div.home-top > div.home-top-center > span {
    font-size: 58px;
    line-height: 54px;
  }
}
section#home-section > div.home-top > div.home-top-center > p {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 34px;
  margin-top: 15px;
  max-width: 512px;
}
@media (max-width: 767px) {
  section#home-section > div.home-top > div.home-top-center > p {
    color: #f4f4f4;
    font-size: 20px;
    line-height: 28px;
    max-width: 300px;
  }
}

section#home-section > div.home-top > div.home-top-right {
  grid-column: 3 / span 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
  position: fixed;
  top: 50vh;
  right: 24px;
  z-index: 9;
}
@media (max-width: 767px) {
  section#home-section > div.home-top > div.home-top-right {
    display: none;
  }
}
section#home-section > div.home-top > div.home-top-right > a {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: 240 ms all ease-in;
}
section#home-section > div.home-top > div.home-top-right > a.active {
  border-color: white;
}

section#home-section > div.home-deco {
  position: absolute;
  top: 7vw;
  right: -10vw;
  width: 54vw;
}
@media (max-width: 767px) {
  section#home-section > div.home-deco {
    top: 8vw;
    right: -28vw;
    width: 80vw;
  }
}
section#home-section > div.home-deco > img {
  width: 100%;
}

section#home-section > div.text-grey-one {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  column-gap: 30px;
  margin-left: auto;
  margin-right: -80px;
  margin-top: 190px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#home-section > div.text-grey-one {
    display: none;
  }
}
section#home-section > div.text-grey-one > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  font-weight: 200;
  letter-spacing: 15;
}
@media (max-width: 767px) {
  section#home-section > div.text-grey-one > p {
    font-size: 12px;
    letter-spacing: 8;
  }
}
section#home-section > div.text-grey-one > span {
  width: 400px;
  border: 1px solid #f4f4f4;
}

section#home-section > div.home-center {
  width: 100%;
  max-width: 1464px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
}
@media (max-width: 767px) {
  section#home-section > div.home-center {
    margin-top: 48px;
  }
}
section#home-section > div.home-center > div.home-video {
  height: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 2;
}
section#home-section > div.home-center > div.home-video object,
section#home-section > div.home-center > div.home-video iframe,
section#home-section > div.home-center > div.home-video embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

section#home-section > div.home-center > div.home-center-core {
  margin-top: 48px;
}
section#home-section > div.home-center > div.home-center-core > h1 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 74px;
  line-height: 80px;
  font-weight: 300;
  color: #f4f4f4;
}
@media (max-width: 767px) {
  section#home-section > div.home-center > div.home-center-core > h1 {
    font-size: 42px;
    line-height: 40px;
    margin-top: 47px;
  }
}
section#home-section > div.home-center > div.home-center-core > h1 > span {
  font-size: 32px;
  line-height: 32px;
  margin-top: -20px;
}
section#home-section > div.home-center > div.home-center-core > h4 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  font-size: 28px;
  line-height: 36px;
  color: #f4f4f4;
  text-align: center;
}
@media (max-width: 767px) {
  section#home-section > div.home-center > div.home-center-core > h4 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 22px;
  }
}
section#home-section > div.home-center > div.home-center-core > h4 > span {
  font-size: 14px;
  line-height: 14px;
}

section#home-section > div.home-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 8px;
  column-gap: 20px;
  width: 100%;
  max-width: 1464px;
  margin: 112px auto 0;
}
section#home-section > div.home-bottom.home-bottom-mobile {
  display: none;
}
@media (max-width: 767px) {
  section#home-section > div.home-bottom.home-bottom-desktop {
    display: none;
  }
  section#home-section > div.home-bottom.home-bottom-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
    width: 100%;
    max-width: 1464px;
    margin: 52px auto;
  }
}

section#home-section > div.home-bottom > div.home-bottom-item {
  display: grid;
  grid-column-gap: 8px;
}
section#home-section > div.home-bottom > div.home-bottom-item > img {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
  width: 81.45px;
  height: 81.45px;
}
@media (max-width: 767px) {
  section#home-section > div.home-bottom > div.home-bottom-item > img {
    width: 60px;
    height: 60px;
  }
}
section#home-section > div.home-bottom > div.home-bottom-item > h5 {
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  color: #f4f4f4;
  font-size: 30px;
  line-height: 32px;
  font-weight: bold;
  align-self: flex-end;
}
@media (max-width: 767px) {
  section#home-section > div.home-bottom > div.home-bottom-item > h5 {
    font-size: 26px;
    line-height: 27px;
  }
}
section#home-section > div.home-bottom > div.home-bottom-item > p {
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
  color: #f4f4f4;
  font-size: 22px;
  line-height: 24px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  section#home-section > div.home-bottom > div.home-bottom-item > p {
    font-size: 20px;
    line-height: 26px;
  }
}

section#home-section > div.text-grey-two {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-left: -80px;
  margin-right: auto;
  margin-top: 134px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#home-section > div.text-grey-two {
    margin-top: 32px;
    column-gap: 15px;
    margin-left: -30px;
  }
}
section#home-section > div.text-grey-two > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  font-weight: 200;
  letter-spacing: 15;
}
@media (max-width: 767px) {
  section#home-section > div.text-grey-two > p {
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 8;
    text-align: left;
  }
}
section#home-section > div.text-grey-two > span {
  width: 282px;
  border: 1px solid #f4f4f4;
}
@media (max-width: 767px) {
  section#home-section > div.text-grey-two > span {
    width: 57px;
  }
}

section#home-section > img.home-bottom-image {
  display: block;
  width: 100vw;
  margin: 0 -80px 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  section#home-section > img.home-bottom-image {
    margin-top: 0;
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 0;
  }
}

section#about-section {
  background: url(../img/bg-about.jpg);
  background-size: cover;
}
@media (max-width: 767px) {
  section#about-section {
    background-position-x: 100%;
    background-size: 200%;
    background-repeat: no-repeat;
  }
}

section#about-section > div.text-grey-three {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-right: -80px;
  margin-left: auto;
  padding-top: 134px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#about-section > div.text-grey-three {
    column-gap: 15px;
    margin-right: -30px;
    margin-left: auto;
    padding-top: 37px;
  }
}
section#about-section > div.text-grey-three.text-grey-three-mobile {
  display: none;
}
@media (max-width: 767px) {
  section#about-section > div.text-grey-three.text-grey-three-mobile {
    display: flex;
    column-gap: 15px;
    margin-right: -30px;
    margin-left: auto;
    padding-top: 32px;
  }
}
section#about-section > div.text-grey-three > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  font-weight: 200;
  letter-spacing: 15px;
}
@media (max-width: 767px) {
  section#about-section > div.text-grey-three > p {
    font-size: 12px;
    max-width: 224px;
    letter-spacing: 4px;
    font-weight: 200;
    letter-spacing: 8;
    text-align: right;
  }
}
section#about-section > div.text-grey-three > span {
  width: 144px;
  border: 1px solid #f4f4f4;
}
@media (max-width: 767px) {
  section#about-section > div.text-grey-three > span {
    width: 64px;
  }
}
section#about-section > div.about-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  padding-bottom: 166px;
  column-gap: 20px;
}
@media (max-width: 767px) {
  section#about-section > div.about-core {
    grid-template-columns: 1fr;
    margin-top: 48px;
    padding-bottom: 36px;
  }
}

section#about-section > div.about-core > div.about-core-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/about-deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  section#about-section > div.about-core > div.about-core-left {
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
    margin-top: 42px;
    height: 330px;
  }
}
section#about-section > div.about-core > div.about-core-left > img {
  width: 620px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  section#about-section > div.about-core > div.about-core-left > img {
    width: 300px;
  }
}

section#about-section > div.about-core > div.about-core-right {
}
@media (max-width: 767px) {
  section#about-section > div.about-core > div.about-core-right {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
  }
}
section#about-section > div.about-core > div.about-core-right > h1 {
  font-size: 74px;
  line-height: 80px;
  color: #f4f4f4;
  font-weight: 300;
}
@media (max-width: 767px) {
  section#about-section > div.about-core > div.about-core-right > h1 {
    font-size: 42px;
    line-height: 42px;
  }
}
section#about-section
  > div.about-core
  > div.about-core-right
  > h1:nth-of-type(2) {
  font-weight: 600;
  margin-bottom: 50px;
}

section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 8px;
  margin-bottom: 54px;
  max-width: 706px;
}
section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-item
  > p.about-right-item-title {
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}
@media (max-width: 767px) {
  section#about-section
    > div.about-core
    > div.about-core-right
    > div.about-right-item
    > p.about-right-item-title {
    font-size: 18px;
    line-height: 26px;
  }
}
section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-item
  > p.about-right-item-text {
  font-size: 22px;
  line-height: 30px;
  color: #f4f4f4;
}
@media (max-width: 767px) {
  section#about-section
    > div.about-core
    > div.about-core-right
    > div.about-right-item
    > p.about-right-item-text {
    font-size: 16px;
    line-height: 24px;
  }
}

section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-list
  > div.about-right-list-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
}
section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-list
  img {
  width: 20px;
}
section#about-section
  > div.about-core
  > div.about-core-right
  > div.about-right-list
  h5 {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 50px;
}
@media (max-width: 767px) {
  section#about-section
    > div.about-core
    > div.about-core-right
    > div.about-right-list
    h5 {
    font-size: 18px;
    line-height: 35px;
  }
}

section#health-section {
  background: url(../img/bg-health.jpg);
  position: relative;
}
@media (max-width: 767px) {
  section#health-section {
    background-size: cover;
  }
}
section#health-section > div.vert-line {
  position: absolute;
  top: -185px;
  left: 11vw;
  width: 1px;
  height: 370px;
  background-color: #707070;
}
@media (max-width: 767px) {
  section#health-section > div.vert-line {
    display: none;
  }
}

section#health-section > h3.health-section-title {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 42px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 82px;
  width: fit-content;
  font-weight: 200;
}
@media (max-width: 767px) {
  section#health-section > h3.health-section-title {
    color: #f4f4f4;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding-top: 48px;
  }
}

section#health-section > div.health-section-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 78px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  section#health-section > div.health-section-core {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 32px;
    max-width: 100%;
  }
}

section#health-section
  > div.health-section-core
  > div.health-section-core-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-left {
    align-items: center;
  }
}
section#health-section
  > div.health-section-core
  > div.health-section-core-left
  > h1 {
  font-size: 70px;
  line-height: 76px;
  color: #f4f4f4;
  font-weight: 300;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-left
    > h1 {
    font-size: 42px;
    line-height: 44px;
  }
}
section#health-section
  > div.health-section-core
  > div.health-section-core-left
  > h1:nth-of-type(2) {
  font-weight: 600;
}
section#health-section
  > div.health-section-core
  > div.health-section-core-left
  > a
  > button {
  margin-top: 42px;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-left
    > a
    > button {
    margin-top: 16px;
  }
}

section#health-section
  > div.health-section-core
  > div.health-section-core-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 96px;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-right {
    row-gap: 32px;
    margin-top: 54px;
  }
}

section#health-section
  > div.health-section-core
  > div.health-section-core-right
  > div.health-section-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 20px;
  max-width: 640px;
}
section#health-section
  > div.health-section-core
  > div.health-section-core-right
  > div.health-section-item
  > p.health-section-item-number {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-right
    > div.health-section-item
    > p.health-section-item-number {
    font-size: 16px;
    line-height: 24px;
  }
}
section#health-section
  > div.health-section-core
  > div.health-section-core-right
  > div.health-section-item
  > p.health-section-item-text {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-core
    > div.health-section-core-right
    > div.health-section-item
    > p.health-section-item-text {
    font-size: 16px;
    line-height: 24px;
  }
}

section#health-section > div.health-section-bottom {
  margin-top: 128px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1132px;
}
@media (max-width: 767px) {
  section#health-section > div.health-section-bottom {
    margin-top: 64px;
    max-width: 100%;
  }
}
section#health-section > div.health-section-bottom div.health-section-carousel {
  padding-bottom: 102px;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-bottom
    div.health-section-carousel {
    padding-bottom: 48px;
  }
}
section#health-section
  > div.health-section-bottom
  div.health-section-carousel
  div.health-section-carousel-item {
  margin-left: 24px;
  margin-right: 24px;
}
@media (max-width: 767px) {
  section#health-section
    > div.health-section-bottom
    div.health-section-carousel
    div.health-section-carousel-item {
    margin-left: 14px;
    margin-right: 14px;
  }
}
section#health-section
  > div.health-section-bottom
  div.health-section-carousel
  div.health-section-carousel-item
  > img {
  width: 113px;
  pointer-events: none;
  user-select: none;
}
section#health-section
  > div.health-section-bottom
  div.health-section-carousel
  div.health-section-carousel-item
  > p {
  color: #f4f4f4;
  font-size: 12px;
  line-height: 12px;
  margin-top: 18px;
  user-select: none;
}

section#experience-section {
  background-color: #1c1c1c;
}

section#experience-section > div.experience-section-top {
}

section#experience-section > div.experience-section-top > div.text-grey-four {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-left: -80px;
  margin-right: auto;
  padding-top: 92px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#experience-section > div.experience-section-top > div.text-grey-four {
    column-gap: 15px;
    margin-left: -30px;
    margin-right: auto;
    padding-top: 40px;
  }
}
section#experience-section
  > div.experience-section-top
  > div.text-grey-four
  > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 15;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-top
    > div.text-grey-four
    > p {
    font-size: 12px;
    letter-spacing: 8;
  }
}
section#experience-section
  > div.experience-section-top
  > div.text-grey-four
  > span {
  width: 172px;
  border: 1px solid #f4f4f4;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-top
    > div.text-grey-four
    > span {
    width: 120px;
  }
}
section#experience-section
  > div.experience-section-top
  > h3.experience-section-top-title {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  margin: 30px auto 0;
  width: fit-content;
  font-weight: 200;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-top
    > h3.experience-section-top-title {
    font-size: 20px;
    line-height: 22px;
  }
}
section#experience-section
  > div.experience-section-top
  > p.experience-section-top-text {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 36px;
  margin: 20px auto 0;
  width: fit-content;
  max-width: 1048px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-top
    > p.experience-section-top-text {
    font-size: 20px;
    line-height: 28px;
  }
}
section#experience-section div.experience-section-top-core {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 690px;
  background-color: #242424;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  /* background-image: url("../img/home-deco.svg"); */
  /* background-position: -180px 400%; */
  background-repeat: no-repeat;
  /* background-size: 640px auto; */
}
@media (max-width: 767px) {
  section#experience-section div.experience-section-top-core {
    max-width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    column-gap: unset;
    margin-top: 70px;
    padding-bottom: 36px;
    /* background-position: -78% -18%; */
    background-size: 250px auto;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-left {
    padding: 84px 64px 0;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-left
  > img {
  width: 518px;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-left
    > img {
    width: 100%;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 460px;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-right {
    max-width: 100%;
    padding: 18px 32px;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-right
  > h2 {
  color: #f4f4f4;
  font-size: 44px;
  line-height: 48px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-right
    > h2 {
    font-size: 25px;
    line-height: 28px;
    padding-top: 8px;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-right
  > h5 {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 32px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-right
    > h5 {
    font-size: 19px;
    line-height: 24px;
  }
}
section#experience-section
  div.experience-section-top-core
  > div.experience-section-top-core-right
  > p {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-style: italic;
  margin-top: 24px;
}
@media (max-width: 767px) {
  section#experience-section
    div.experience-section-top-core
    > div.experience-section-top-core-right
    > p {
    font-size: 16px;
    line-height: 20px;
    height: 160px;
  }
  section#experience-section
    div.experience-section-top-core
    .experience-section-center-carousel-item
    div.experience-section-top-core-right
    > p {
    height: 100px;
  }
}
section#experience-section div.experience-section-top-core > img {
  position: absolute;
  top: 32px;
  right: 54px;
  width: 89px;
}
@media (max-width: 767px) {
  section#experience-section div.experience-section-top-core > img {
    top: 13px;
    right: 17px;
    width: 42px;
  }
}
section#experience-section div.experience-section-top-core > a {
  position: absolute;
  bottom: 54px;
  right: 54px;
}
@media (max-width: 767px) {
  section#experience-section div.experience-section-top-core > a {
    position: relative;
    bottom: unset;
    right: unset;
    margin-left: auto;
    margin-right: 18px;
  }
}
section#experience-section
  > div.experience-section-center
  > div.text-grey-five {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-right: -80px;
  margin-left: auto;
  padding-top: 102px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    > div.text-grey-five {
    display: none;
  }
}
section#experience-section
  > div.experience-section-center
  > div.text-grey-five
  > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 15;
}
section#experience-section
  > div.experience-section-center
  > div.text-grey-five
  > span {
  width: 356px;
  border: 1px solid #f4f4f4;
}

section#experience-section
  > div.experience-section-center
  > h3.experience-section-center-title {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 104px;
  width: fit-content;
  font-weight: 200;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    > h3.experience-section-center-title {
    font-size: 20px;
    line-height: 24px;
    margin-top: 40px;
    text-align: center;
    max-width: 260px;
  }
}
section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel-outer {
  width: calc(100% + 160px);
  margin-left: -80px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel-outer {
    width: 100%;
    margin-left: 0;
  }
}
section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel {
  margin-top: 0;
}

section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel
  div.experience-section-center-carousel-item {
  display: inline-grid;
  display: -moz-inline-grid;
  display: -ms-inline-grid;
  margin-right: 40px;
  box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel
    div.experience-section-center-carousel-item {
    margin-top: 40px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel
    div.experience-section-center-carousel-item
    > .experience-section-top-core-left {
    padding: 36px 84px 0;
  }
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel
    > div.flickity-viewport {
    min-height: 530px;
  }
}
section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel
  .flickity-page-dots {
  position: relative;
  bottom: unset;
  margin-top: 60px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel
    .flickity-page-dots {
    margin-top: 16px;
  }
}
section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel
  .flickity-page-dots
  > .dot {
  width: 64px;
  height: 2px;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 2px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-center
    div.experience-section-center-carousel
    .flickity-page-dots
    > .dot {
    width: 50px;
  }
}
section#experience-section
  > div.experience-section-center
  div.experience-section-center-carousel
  .flickity-page-dots
  > .dot.is-selected {
  height: 4px;
  border-radius: 4px;
}

section#experience-section > .experience-section-bottom > h1 {
  margin: 96px auto 0;
  width: fit-content;
  text-align: center;
  color: #f4f4f4;
  font-size: 74px;
  line-height: 80px;
  font-weight: 200;
}
@media (max-width: 767px) {
  section#experience-section > .experience-section-bottom > h1 {
    margin: 50px auto 0;
    font-size: 42px;
    line-height: 44px;
  }
}
section#experience-section > .experience-section-bottom > h5 {
  margin: 24px auto 0;
  width: fit-content;
  text-align: center;
  color: #f4f4f4;
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 767px) {
  section#experience-section > .experience-section-bottom > h5 {
    font-size: 20px;
    line-height: 28px;
  }
}
section#experience-section > .experience-section-bottom > a {
  margin: 52px auto 0;
  width: fit-content;
  display: block;
}
@media (max-width: 767px) {
  section#experience-section > .experience-section-bottom > a {
    margin-top: 18px;
  }
}
section#experience-section > div.experience-section-bottom > div.text-grey-six {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-left: -80px;
  margin-right: auto;
  padding-top: 132px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    > div.text-grey-six {
    display: none;
  }
}
section#experience-section
  > div.experience-section-bottom
  > div.text-grey-six
  > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 15;
}
section#experience-section
  > div.experience-section-bottom
  > div.text-grey-six
  > span {
  width: 224px;
  border: 1px solid #f4f4f4;
}

section#experience-section
  > div.experience-section-bottom
  > .experience-section-bottom-carousel-outer {
  width: calc(100% + 160px);
  margin-left: -80px;
  background: url(../img/home-deco.svg);
  background-repeat: no-repeat;
  background-position-x: 60vw;
  background-position-y: 0;
  background-size: 54%;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    > .experience-section-bottom-carousel-outer {
    width: calc(100% + 60px);
    margin-left: -30px;
    background-image: none;
  }
}
section#experience-section
  > div.experience-section-bottom
  > .experience-section-bottom-carousel-outer
  > h3 {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  width: fit-content;
  margin: 0 auto;
  padding-top: 92px;
  font-weight: 200;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    > .experience-section-bottom-carousel-outer
    > h3 {
    font-size: 20px;
    line-height: 22px;
    padding-top: 58px;
  }
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel {
  margin-top: 110px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel {
    margin-top: 35px;
    padding-bottom: 52px;
  }
}

section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item {
  display: grid;
  padding: 32px;
  background-color: #242424;
  margin: 0 15px;
  width: 420px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .experience-section-bottom-carousel-item {
    padding: 32px 20px;
    width: 90vw;
  }
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item
  > img {
  grid-row: 1 / span 1;
  grid-column: 1 / span 2;
  height: 408px;
  align-self: center;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .experience-section-bottom-carousel-item
    > img {
    height: 336px;
  }
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item
  > label {
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .experience-section-bottom-carousel-item
    > label {
    font-size: 18px;
    line-height: 25px;
  }
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item
  > label.before {
  grid-row: 2 / span 1;
  grid-column: 1 / span 1;
  margin-top: 18px;
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item
  > label.after {
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
  margin-top: 18px;
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .experience-section-bottom-carousel-item
  > p {
  grid-row: 3 / span 1;
  grid-column: 1 / span 2;
  margin-top: 16px;
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  height: 90px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .experience-section-bottom-carousel-item
    > p {
    font-size: 16px;
    line-height: 24px;
    height: 54px;
  }
}

section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .flickity-page-dots {
  position: relative;
  bottom: unset;
  margin-top: 60px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .flickity-page-dots {
    margin-top: 16px;
  }
}
section#experience-section
  > div.experience-section-bottom
  .experience-section-bottom-carousel
  .flickity-page-dots
  > .dot {
  width: 64px;
  height: 2px;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 2px;
}
@media (max-width: 767px) {
  section#experience-section
    > div.experience-section-bottom
    .experience-section-bottom-carousel
    .flickity-page-dots
    > .dot {
    width: 24px;
  }
}
.flickity-page-dots > .dot.is-selected {
  height: 4px;
  border-radius: 4px;
}

section#science-section {
  background-color: #1c1c1c;
  position: relative;
}

section#science-section > div.text-grey-seven {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-right: -80px;
  margin-left: auto;
  padding-top: 128px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#science-section > div.text-grey-seven {
    column-gap: 15px;
    margin-right: -30px;
    padding-top: 0;
  }
}
section#science-section > div.text-grey-seven > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 15;
}
@media (max-width: 767px) {
  section#science-section > div.text-grey-seven > p {
    font-size: 12px;
    letter-spacing: 8;
    text-align: right;
  }
}
section#science-section > div.text-grey-seven > span {
  width: 378px;
  border: 1px solid #f4f4f4;
}
@media (max-width: 767px) {
  section#science-section > div.text-grey-seven > span {
    width: 108px;
  }
}
section#science-section > div.science-section-content {
  display: grid;
  width: 100%;
  max-width: 1440px;
  margin: 64px auto 0;
  column-gap: 110px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  section#science-section > div.science-section-content {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 32px auto 0;
    column-gap: unset;
    padding-bottom: 54px;
  }
}

section#science-section
  > div.science-section-content
  > h1.science-section-title {
  position: relative;
  color: #f4f4f4;
  font-size: 74px;
  line-height: 80px;
  width: fit-content;
  grid-row: 1 / span 1;
  grid-column: 1 / span 2;
}
@media (max-width: 767px) {
  section#science-section
    > div.science-section-content
    > h1.science-section-title {
    font-size: 42px;
    line-height: 44px;
  }
}

section#science-section
  > div.science-section-content
  > h1.science-section-title
  > div.vert-line {
  position: absolute;
  top: -224px;
  left: -48px;
  width: 1px;
  height: 334px;
  background-color: #707070;
}
@media (max-width: 767px) {
  section#science-section
    > div.science-section-content
    > h1.science-section-title
    > div.vert-line {
    display: none;
  }
}

section#science-section > div.science-section-content > a {
  grid-row: 2 / span 1;
  margin-top: 20px;
}

section#science-section > div.science-section-content > img {
  grid-row: 3 / span 1;
  grid-column: 1 / span 1;
  margin-top: 120px;
  width: 100%;
  max-width: 620px;
}
@media (max-width: 767px) {
  section#science-section > div.science-section-content > img {
    grid-row: 3 / span 1;
    grid-column: 1 / span 1;
    margin-top: 36px;
  }
}
section#science-section
  > div.science-section-content
  > div.science-section-content-list {
  grid-row: 3 / span 1;
  grid-column: 2 / span 1;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 70px;
}
@media (max-width: 767px) {
  section#science-section
    > div.science-section-content
    > div.science-section-content-list {
    grid-row: 4 / span 1;
    grid-column: 1 / span 1;
    margin-top: 36px;
    row-gap: 42px;
  }
}
section#science-section
  > div.science-section-content
  > div.science-section-content-list
  > div.science-section-content-list-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 20px;
  max-width: 688px;
}
section#science-section
  > div.science-section-content
  > div.science-section-content-list
  > div.science-section-content-list-item
  > img {
  width: 20px;
  margin-top: 6px;
}

section#science-section
  > div.science-section-content
  > div.science-section-content-list
  > div.science-section-content-list-item
  > p {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 767px) {
  section#science-section
    > div.science-section-content
    > div.science-section-content-list
    > div.science-section-content-list-item
    > p {
    font-size: 16px;
    line-height: 24px;
  }
}
section#ensoo-section {
  background: url(../img/bg-ensoo.jpg);
  background-repeat: no-repeat;
  background-position: 60% 60%;
  background-size: 150%;
  position: relative;
}
@media (max-width: 767px) {
  section#ensoo-section {
    background: url(../img/bg-ensoo-mobile.jpg);
    background-color: #060606;
    background-repeat: no-repeat;
    background-position: 48% -48vw;
    position: relative;
    background-size: cover;
  }
}
section#ensoo-section > div.vert-line {
  position: absolute;
  top: -56px;
  left: 11vw;
  width: 1px;
  height: 334px;
  background-color: #707070;
}
@media (max-width: 767px) {
  section#ensoo-section > div.vert-line {
    display: none;
  }
}
section#ensoo-section > div.text-grey-eight {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin-right: -80px;
  margin-left: auto;
  padding-top: 128px;
  width: fit-content;
  opacity: 0.356;
}
@media (max-width: 767px) {
  section#ensoo-section > div.text-grey-eight {
    display: none;
  }
}
section#ensoo-section > div.text-grey-eight > p {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 15;
}
section#ensoo-section > div.text-grey-eight > span {
  width: 378px;
  border: 1px solid #f4f4f4;
}

section#ensoo-section > div.ensoo-section-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  width: 100%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 174px;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding-bottom: 54px;
  }
}

section#ensoo-section > div.ensoo-section-content > picture {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  width: 515px;
  margin-top: 180px;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > picture {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    width: 248px;
    margin: 54px auto 0;
  }
}
section#ensoo-section > div.ensoo-section-content > h1 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
  color: #f4f4f4;
  font-size: 74px;
  line-height: 80px;
  font-weight: 200;
  margin-top: 180px;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > h1 {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    font-size: 42px;
    line-height: 44px;
    padding-top: 48px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
section#ensoo-section > div.ensoo-section-content > h3 {
  grid-column: 1 / span 2;
  grid-row: 2 / span 1;
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  margin-top: 94px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > h3 {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
    font-size: 20px;
    line-height: 28px;
    margin-top: 54px;
    text-align: center;
  }
}
section#ensoo-section > div.ensoo-section-content > p {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  margin-top: 56px;
  max-width: 624px;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 56px;
    max-width: 100%;
  }
}
section#ensoo-section > div.ensoo-section-content > p:nth-of-type(1) {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > p:nth-of-type(1) {
    grid-column: 1 / span 1;
    grid-row: 4 / span 1;
  }
}
section#ensoo-section > div.ensoo-section-content > p:nth-of-type(2) {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
  margin-left: auto;
}
@media (max-width: 767px) {
  section#ensoo-section > div.ensoo-section-content > p:nth-of-type(2) {
    grid-column: 1 / span 1;
    grid-row: 5 / span 1;
    margin-left: unset;
  }
}
section#contact-section {
  background-color: #171717;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  section#contact-section {
    background-color: #171717;
    padding-bottom: 50px;
  }
}
section#contact-section > h1 {
  color: #f4f4f4;
  font-size: 74px;
  line-height: 74px;
  width: fit-content;
  margin: 0 auto;
  padding-top: 112px;
}
@media (max-width: 767px) {
  section#contact-section > h1 {
    font-size: 44px;
    line-height: 56px;
    width: fit-content;
    margin: 0 auto;
    padding-top: 35px;
  }
}
section#contact-section > h3 {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section#contact-section > h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
section#contact-section > a {
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
  margin: 52px auto 0;
}
@media (max-width: 767px) {
  section#contact-section > a {
    font-size: 15px;
    line-height: 15px;
  }
}
footer {
  margin: 0 80px;
  padding: 36px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #171717;
  border-top: 1px solid #707070;
}
@media (max-width: 767px) {
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
    padding: 45px 0 70px;
  }
}
footer > div.footer-left {
  display: grid;
  column-gap: 12px;
}
@media (max-width: 767px) {
  footer > div.footer-left {
    row-gap: 0;
  }
}
footer > div.footer-left > img {
  width: 56px;
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
}
@media (max-width: 767px) {
  footer > div.footer-left > img {
    width: 56px;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer span {
  color: #f4f4f4;
  font-size: 16px;
  line-height: 28px;
}
footer > div.footer-left > span:nth-of-type(1) {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
@media (max-width: 767px) {
  footer > div.footer-left > span:nth-of-type(1) {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    width: 100%;
    text-align: center;
  }
}
footer > div.footer-left > span:nth-of-type(2) {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
@media (max-width: 767px) {
  footer > div.footer-left > span:nth-of-type(2) {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
    width: 100%;
    text-align: center;
  }
}
footer > div.footer-right {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 256px;
}
@media (max-width: 767px) {
  footer > div.footer-right {
    margin-top: 12px;
  }
}

footer > div.footer-right > a {
  text-decoration: none;
}

/* product */

section.product-top-section {
  background: unset !important;
  overflow: visible !important;
}

section.product-top-section > div.home-top {
  grid-template-rows: auto !important;
  margin-top: 96px !important;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top {
    margin-top: 48px !important;
  }
}

section.product-top-section > div.home-top > div.home-top-center {
  position: relative;
  background: url(../img/bg-product-top.svg) !important;
  background-repeat: no-repeat;
  background-size: cover !important;
  margin: 0 72px !important;
  min-height: 600px;
  display: grid;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.home-top-center {
    margin: 0 !important;
    min-height: unset;
  }
}

section.product-top-section > div.home-top > div.home-top-center > label {
  position: absolute;
  top: 42px;
  left: 57px;
  color: #f4f4f4;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.home-top-center > label {
    font-size: 15px;
    line-height: 15px;
    left: 12px;
    top: 20px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > img.product-top-icon {
  position: absolute;
  top: 42px;
  right: 60px;
  width: 85px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > img.product-top-icon {
    top: 8px;
    right: 8px;
    width: 36px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > img.product-top-low-img {
  position: absolute;
  bottom: -122px;
  right: 142px;
  width: 244px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > img.product-top-low-img {
    bottom: -32px;
    right: 24px;
    width: 64px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 172px;
  margin-top: 244px;
  padding-bottom: 138px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1349px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content {
    column-gap: 128px;
  }
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content {
    grid-template-columns: 1fr;
    column-gap: unset;
    margin-top: 42px;
    padding-bottom: 48px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > img.product-top-deco {
  position: absolute;
  bottom: -17vw;
  left: -10vw;
  width: 44vw;
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-left {
    padding: 18px 18px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-left
  > img {
  width: 570px;
  margin-left: auto;
  z-index: 2;
  max-width: 40vw;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-left
    > img {
    width: 100%;
    max-width: unset;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 444px;
  padding-right: 42px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-right {
    align-items: center;
    max-width: 100%;
    padding-right: 0;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-right
  > h2 {
  color: #f4f4f4;
  font-size: 44px;
  line-height: 48px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-right
    > h2 {
    font-size: 28px;
    line-height: 32px;
    padding: 0 18px;
  }
}

section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-right
  > h5 {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-right
    > h5 {
    font-size: 20px;
    line-height: 24px;
    padding: 0 18px;
  }
}
section.product-top-section
  > div.home-top
  > div.home-top-center
  > div.product-top-content
  > div.product-top-content-right
  > p {
  margin-top: 36px;
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.home-top-center
    > div.product-top-content
    > div.product-top-content-right
    > p {
    font-size: 16px;
    line-height: 20px;
    padding: 0 18px;
    margin-top: 16px;
    text-align: justify;
  }
}

section.product-top-section > div.home-top > div.product-fasi {
  grid-column: 2 / span 1;
  margin: 0 72px;
  padding-top: 72px;
  padding-left: 64px;
  padding-right: 64px;
  background: #242424;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-fasi {
    grid-column: 1 / span 1;
    margin: 0 0;
    padding-top: 32px;
    padding-left: 18px;
    padding-right: 18px;
    align-items: center;
  }
}

section.product-top-section > div.home-top > div.product-fasi > h3 {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  width: fit-content;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-fasi > h3 {
    margin-top: 32px;
    font-size: 24px;
    line-height: 28px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  width: 100%;
}
section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content.product-fasi-content-2222 {
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-content {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content
  > div.product-fasi-content-item {
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: min-content 1fr 1.5fr;
  row-gap: 20px;
  column-gap: 16px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-content
    > div.product-fasi-content-item {
    grid-template-rows: min-content auto auto;
    column-gap: 14px;
    row-gap: 10px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content
  > div.product-fasi-content-item
  > p.product-fasi-content-item-number {
  grid-column: 1 / span 1;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-content
    > div.product-fasi-content-item
    > p.product-fasi-content-item-number {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 18px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content
  > div.product-fasi-content-item
  > h5 {
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  color: #f4f4f4;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-content
    > div.product-fasi-content-item
    > h5 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 18px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-content
  > div.product-fasi-content-item
  > p.product-fasi-content-item-text {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  grid-column: 2 / span 1;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-content
    > div.product-fasi-content-item
    > p.product-fasi-content-item-text {
    font-size: 16px;
    line-height: 19px;
  }
}

section.product-top-section > div.home-top > div.product-fasi > div.hori-line {
  width: 100%;
  height: 1px;
  border-top: 1px solid #707070;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.hori-line:last-of-type {
    margin-bottom: 16px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.hori-line.mt {
  margin-top: 54px;
}

section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-instructions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 22px;
  padding: 27px 0;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-instructions {
    flex-direction: column;
    column-gap: 14px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-instructions
  > img {
  width: 20px;
  padding-top: 6px;
}

section.product-top-section
  > div.home-top
  > div.product-fasi
  > div.product-fasi-instructions
  > p {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
  width: fit-content;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-fasi
    > div.product-fasi-instructions
    > p {
    font-size: 16px;
    line-height: 20px;
    padding: 16px 0;
  }
}

section.product-top-section > div.home-top > div.product-free-outer {
  background-color: #242424;
  grid-column: 2 / span 1;
  margin: 0 72px;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-free-outer {
    grid-column: 1 / span 1;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-free-outer
  > div.product-free {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  row-gap: 52px;
  column-gap: 12px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-free-outer
    > div.product-free {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    row-gap: 32px;
    padding-bottom: 32px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-free-outer
  > div.product-free
  > div.product-free-item {
  width: 89px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-free-outer
    > div.product-free
    > div.product-free-item {
    width: 72px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-free-outer
  > div.product-free
  > div.product-free-item
  > img {
  width: 100%;
}

section.product-top-section > div.home-top > div.product-ingredients {
  background-color: #242424;
  grid-column: 2 / span 1;
  margin: 0 72px;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-ingredients {
    background-color: #242424;
    grid-column: 1 / span 1;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.hori-line {
  width: 100%;
  height: 1px;
  border-top: 1px solid #707070;
}
@media (max-width: 767px) {
}
section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.hori-line.mt {
  margin-top: 54px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-ingredients
    > div.hori-line.mt {
    margin-bottom: 32px;
  }
}
section.product-top-section > div.home-top > div.product-ingredients > h3 {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  width: fit-content;
  margin-top: 48px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-ingredients > h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.product-ingredients-item {
  display: grid;
  grid-template-columns: min-content 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-ingredients
    > div.product-ingredients-item {
    column-gap: 14;
    margin-top: 40px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.product-ingredients-item
  > h6 {
  grid-row: 1 / span 1;
  grid-column: 1 / span 2;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  background: linear-gradient(90deg, #cea43f 0%, #d6ae4d 48%, #fce18b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-ingredients
    > div.product-ingredients-item
    > h6 {
    font-size: 22px;
    line-height: 26px;
  }
}
section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.product-ingredients-item
  > img {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
  width: 20px;
  margin-top: 6px;
}

section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.product-ingredients-item
  > div.product-ingredients-item-text {
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
}

section.product-top-section
  > div.home-top
  > div.product-ingredients
  > div.product-ingredients-item
  > div.product-ingredients-item-text
  > p {
  color: #f4f4f4;
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 767px) {
  section.product-top-section
    > div.home-top
    > div.product-ingredients
    > div.product-ingredients-item
    > div.product-ingredients-item-text
    > p {
    font-size: 16px;
    line-height: 20px;
  }
}
section.product-top-section > div.home-top > div.product-table {
  background-color: #242424;
  grid-column: 2 / span 1;
  margin: 0 72px;
  padding-left: 64px;
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 102px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-table {
    background-color: #242424;
    grid-column: 1 / span 1;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

section.product-top-section > div.home-top > div.product-table > h3 {
  color: #f4f4f4;
  font-size: 33px;
  line-height: 43px;
  width: fit-content;
  margin-top: 70px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-table > h3 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 42px;
  }
}

section.product-top-section > div.home-top > div.product-table > img {
  margin-top: 42px;
  width: 100%;
  max-width: 460px;
}
@media (max-width: 767px) {
  section.product-top-section > div.home-top > div.product-table > img {
    margin-top: 42px;
    max-width: 100%;
  }
}

/*css per immagine nuova vicino a tabella nutrizionale*/
.product-table-images {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: end;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.product-img-wrapper {
  text-align: center;
}

.product-img-wrapper img {
  width: 400px;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-table-img.product-table-logo {
  max-width: 70%;
}

/* Mobile: colonne una sotto l'altra */
@media (max-width: 768px) {
  .product-table-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-img-wrapper {
    max-width: 100%;
  }
  .product-table-img.product-table-logo {
    width: 55%;
  }

  .product-img-wrapper img {
    width: 100%;
  }
}
