*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  scroll-behavior: smooth;
}

body {
  background: #F3F3F3;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #070F21;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4px 8px 0;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  main {
    padding-top: 8px;
  }
}

h1 {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 64px;
  line-height: 60px;
  letter-spacing: 2px;
  color: #374A2F;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 72px;
    line-height: 68px;
  }
}
@media only screen and (min-width: 1440px) {
  h1 {
    margin-bottom: 12px;
    font-size: 76px;
    line-height: 70px;
    letter-spacing: 0;
  }
}

h2 {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.3px;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.1px;
  }
}
@media only screen and (min-width: 1440px) {
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
h2 span {
  color: #7FCD73;
}

h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -1px;
}
@media only screen and (min-width: 1024px) {
  h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border-radius: 1200px;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .btn {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .btn {
    font-size: 18px;
    line-height: 24px;
  }
}
.btn.btn-primary {
  margin: 0 auto;
  background: #DEF6CE;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.18);
  color: #688C61;
}
@media only screen and (min-width: 1440px) {
  .btn.btn-primary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), #DEF6CE;
    box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);
  }
  .btn.btn-primary:focus {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)), #DEF6CE;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.18);
  }
  .btn.btn-primary:active {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #DEF6CE;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 1px 3px 1px rgba(0, 0, 0, 0.18);
  }
}
.btn.btn-primary:disabled, .btn.btn-primary[disabled] {
  background: #FFFFFF;
  opacity: 0.38;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.18);
  color: #1A1A1A;
}
.btn.btn-primary:disabled svg path, .btn.btn-primary[disabled] svg path {
  stroke: #1A1A1A;
}
.btn.btn-inverse {
  padding: 8px 20px;
  background: #000000;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .btn.btn-inverse {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .btn.btn-inverse:hover {
    background: #333333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px 1px rgba(0, 0, 0, 0.18);
  }
  .btn.btn-inverse:focus, .btn.btn-inverse:active {
    background: #4D4D4D;
  }
}
.btn.btn-inverse.disabled {
  background: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.18);
}
.btn.btn-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #AED99F;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #FFFFFF;
}
.btn .btn-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  gap: 3px;
}
.btn .btn-nav span {
  position: relative;
  top: 0;
  width: 19px;
  height: 1.5px;
  background: #FFFFFF;
  border-radius: 9px;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.3s ease;
}
.btn .btn-nav.open span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.btn .btn-nav.open span:nth-child(2) {
  opacity: 0;
}
.btn .btn-nav.open span:nth-child(3) {
  top: -4px;
  transform: rotate(-45deg);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  padding: 8px 16px 0 20px;
  z-index: 3;
}
@media only screen and (min-width: 744px) {
  header {
    padding: 18px 20px 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  header {
    top: 8px;
    padding: 8px 30px;
  }
}
@media only screen and (min-width: 1440px) {
  header {
    max-width: 1440px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}
header .logo {
  display: flex;
}
@media only screen and (min-width: 744px) {
  header .logo {
    transform: translate(4px, 2px);
  }
  header .logo svg {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  header .logo {
    transform: translateY(16px);
  }
  header .logo svg {
    width: 64px;
    height: 64px;
  }
}
header .nav {
  display: flex;
  gap: 8px;
}
header .nav .menu {
  position: relative;
}
@media only screen and (min-width: 744px) {
  header .nav .menu .btn {
    height: 48px;
  }
}
header .nav .menu .dropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 100%;
  right: 0;
  width: 140px;
  padding: 16px 16px 16px 32px;
  gap: 8px;
  background: #FCFCFC;
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}
header .nav .menu .dropdown a {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #1A1A1A;
  transition: 0.3s ease;
}
header .nav .menu .dropdown a:hover {
  color: #688C61;
}
header .nav .menu .dropdown a.active {
  color: #7FCD73;
}
header .nav .menu .dropdown.active {
  top: calc(100% + 8px);
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  margin-bottom: 140px;
  padding: 80px 8px 298px;
  background: #C0EBAE;
  border-radius: 24px;
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: 806px;
    margin-bottom: 92px;
    padding: 121px 24px 24px;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero {
    margin-bottom: 201px;
    padding-top: 152px;
  }
}
.hero .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1440px) {
  .hero .content {
    padding-left: 12px;
  }
}
.hero .slogan {
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .hero .slogan {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero .slogan {
    font-size: 18px;
    line-height: 24px;
  }
}
.hero .btn-inverse {
  gap: 8px;
  padding: 12px 24px;
}
@media only screen and (min-width: 1440px) {
  .hero .btn-inverse {
    padding: 12px 34px;
  }
}
.hero .stats {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .hero .stats {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 24px;
    bottom: 28px;
    width: 352px;
    height: 494px;
    padding: 22px 16px 16px;
    background: rgba(245, 245, 245, 0.7);
    border: 1px solid #FCFFFC;
    backdrop-filter: blur(32px);
    border-radius: 28px;
    z-index: 2;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1440px) {
  .hero .stats {
    height: 498px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .stats .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -2px;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1440px) {
  .hero .stats .heading {
    margin-bottom: 24px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .stats .heading span {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.15px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .stats .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .hero .stats .list .item {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #FCFFFC;
    border-radius: 16px;
  }
  .hero .stats .list .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: rgba(222, 246, 206, 0.8);
    border-radius: 50%;
  }
  .hero .stats .list .item .caption {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #1A1A1A;
  }
  .hero .stats .list .item .caption span {
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.15px;
    color: #808080;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .stats .chart {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 12px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
  }
  .hero .stats .chart .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1440px) {
  .hero .stats .chart .title {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .stats .chart img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .hero .stats {
    bottom: 24px;
  }
}
.hero .joined {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .hero .joined {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 62px;
    left: 24px;
    padding: 16px;
    gap: 54px;
    background: #FFFFFF;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    z-index: 2;
  }
  .hero .joined .caption {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #1A1A1A;
  }
  .hero .joined .caption span {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #808080;
  }
  .hero .joined .img {
    display: flex;
    align-items: center;
  }
  .hero .joined .img img {
    width: 58px;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
  }
  .hero .joined .img img + img {
    margin-left: -16px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero .joined {
    bottom: 24px;
    gap: 34px;
  }
  .hero .joined .caption {
    font-size: 28px;
    line-height: 32px;
  }
}
.hero:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: url(../img/logo-bg-xs.jpg) center center/100% no-repeat;
  content: "";
}
@media only screen and (min-width: 1024px) {
  .hero:before {
    width: 139px;
    height: 129px;
    background-image: url(../img/logo-bg-tb.jpg);
  }
}
.hero:after {
  position: absolute;
  top: -48px;
  right: -8px;
  width: calc(100% + 16px);
  height: 1237px;
  background: url(../img/hero-backdrop-xs.png) center center/100% no-repeat;
  content: "";
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .hero:after {
    top: -254px;
    left: 0;
    width: 100%;
    height: 1691px;
    background-image: url(../img/hero-backdrop-tb.png);
  }
}
.hero > picture {
  position: absolute;
  top: 27px;
  right: -8px;
  width: calc(100% + 16px);
  height: 1224px;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .hero > picture {
    top: 0;
    right: 0;
    height: 1237px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero > picture {
    top: -8px;
  }
}
.hero > picture img {
  width: 100%;
}

.reasons {
  position: relative;
  margin-bottom: 64px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .reasons {
    margin-bottom: 92px;
  }
  .reasons h2 {
    width: 514px;
    margin: 0 24px 32px auto;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons {
    margin-bottom: 96px;
  }
  .reasons h2 {
    width: 606px;
  }
}
.reasons .reasons-slider {
  position: relative;
  height: 521px;
  background: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider {
    width: 514px;
    height: 460px;
    margin: 0 24px 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons .reasons-slider {
    width: 606px;
  }
}
.reasons .reasons-slider .reasons-slider-wrapper {
  height: 100%;
  overflow: hidden;
}
.reasons .reasons-slider .reasons-slider-wrapper .slide {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 16px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide {
    padding: 24px 24px 24px 32px;
  }
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content {
  display: flex;
  gap: 16px;
  margin-bottom: auto;
  padding-right: 60px;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content {
    padding-right: 75px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content {
    padding-right: 130px;
  }
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: #E6E6E6;
  border-radius: 50%;
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption span {
  font-weight: 600;
  letter-spacing: -0.5px;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption span {
    font-size: 18px;
    line-height: 24px;
  }
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption p {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.5px;
  color: #000000;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .slide-content .caption p {
    font-size: 14px;
    line-height: 22px;
  }
}
.reasons .reasons-slider .reasons-slider-wrapper .slide .btn {
  padding: 12px 16px;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider .reasons-slider-wrapper .slide .btn {
    margin-left: auto;
    padding: 12px 25px;
  }
}
.reasons .reasons-slider .reasons-slider-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  gap: 16px;
  z-index: 1;
}
.reasons .reasons-slider .reasons-slider-pagination span {
  width: 16px;
  height: 3px;
  background: #D7D7D7;
  border-radius: 5px;
  transition: 0.3s ease;
}
.reasons .reasons-slider .reasons-slider-pagination span.active {
  width: 32px;
  height: 7px;
  background: #7FCD73;
}
.reasons .reasons-slider:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 121px;
  height: 150px;
  background: url(../img/slider-bg-xs.jpg) center center/100% no-repeat;
  content: "";
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .reasons .reasons-slider:before {
    width: 125px;
    height: 160px;
    background-image: url(../img/slider-bg-tb.jpg);
  }
}
.reasons .reasons-slider:after {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 130px;
  height: 160px;
  background: #F3F3F3;
  content: "";
}

.science {
  position: relative;
  margin-bottom: 64px;
  padding: 24px 8px 8px;
  background: #FFFFFF;
  border-radius: 32px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .science {
    display: flex;
    margin-bottom: 72px;
    padding: 64px 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .science {
    margin-bottom: 64px;
    padding: 128px 24px 74px;
    border-radius: 60px;
  }
}
.science h2 {
  margin-bottom: 10px;
  padding-right: 6px;
}
@media only screen and (min-width: 1024px) {
  .science h2 {
    width: 316px;
    padding: 0 0 0 8px;
  }
}
@media only screen and (min-width: 1440px) {
  .science h2 {
    width: 340px;
    padding: 0 0 0 24px;
    letter-spacing: -2px;
  }
}
.science .science-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .science .science-content {
    width: 470px;
    margin-left: auto;
    padding: 24px 16px;
  }
  .science .science-content:before {
    position: absolute;
    width: 470px;
    height: 488px;
    top: 64px;
    right: 16px;
    border-radius: 24px;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(240deg, rgb(217, 217, 217) 73.17%, rgba(115, 115, 115, 0) 90%) border-box;
    border: 1px solid transparent;
    content: "";
  }
}
@media only screen and (min-width: 1440px) {
  .science .science-content {
    width: 648px;
    padding: 32px;
  }
  .science .science-content:before {
    width: 648px;
    top: 128px;
    right: 24px;
  }
}
.science .science-content > p {
  font-weight: 600;
  letter-spacing: -0.5px;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .science .science-content > p {
    position: relative;
    padding: 0 24px;
    font-size: 16px;
    line-height: 24px;
  }
  .science .science-content > p:before {
    position: absolute;
    top: 0;
    left: -15px;
    width: 5px;
    height: 72px;
    background: #7FCD73;
    content: "";
  }
}
@media only screen and (min-width: 1440px) {
  .science .science-content > p {
    padding: 0 64px;
    letter-spacing: 1px;
  }
  .science .science-content > p:before {
    left: -31px;
    height: 96px;
  }
}
.science .science-content .human {
  display: flex;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .human {
    position: absolute;
    height: 544px;
    bottom: 20px;
    left: 16%;
  }
}
@media only screen and (min-width: 1440px) {
  .science .science-content .human {
    height: 745px;
    bottom: 0;
    left: 17.4%;
  }
}
.science .science-content .human img {
  max-width: 100%;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .human img {
    width: 100%;
  }
}
.science .science-content .science-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -48px;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .science-list {
    margin-top: 24px;
    gap: 24px;
  }
}
.science .science-content .science-list .science-item {
  padding: 4px 4px 12px;
  background: rgba(245, 245, 245, 0.7);
  backdrop-filter: blur(32px);
  border-radius: 24px;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .science-list .science-item {
    border-radius: 15px;
  }
}
.science .science-content .science-list .science-item .heading {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  padding: 7px 11px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.5px;
  color: #1A1A1A;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .science-list .science-item .heading {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 24px;
    background: rgba(245, 245, 245, 0.7);
    border-radius: 13px;
  }
}
.science .science-content .science-list .science-item .heading span {
  margin-left: auto;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: -0.15px;
}
.science .science-content .science-list .science-item .caption {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .science-list .science-item .caption {
    gap: 32px;
    padding: 0 12px 0 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .science .science-content .science-list .science-item .caption {
    gap: 64px;
    padding: 0 110px 0 16px;
  }
}
.science .science-content .science-list .science-item .caption .icon .hidden-xs {
  display: none;
}
.science .science-content .science-list .science-item .caption .icon .hidden-lg {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .science .science-content .science-list .science-item .caption .icon .hidden-tb {
    display: none;
  }
  .science .science-content .science-list .science-item .caption .icon .hidden-xs {
    display: flex;
  }
}
@media only screen and (min-width: 1440px) {
  .science .science-content .science-list .science-item .caption .icon .hidden-xs {
    display: none;
  }
  .science .science-content .science-list .science-item .caption .icon .hidden-lg {
    display: flex;
  }
}

.future {
  margin-bottom: 64px;
}
@media only screen and (min-width: 1024px) {
  .future {
    margin-bottom: 92px;
  }
}
@media only screen and (min-width: 1440px) {
  .future {
    margin-bottom: 64px;
  }
}
.future h2 {
  padding: 0 8px;
}
@media only screen and (min-width: 1024px) {
  .future h2 {
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .future h2 {
    padding: 0 24px;
  }
}
.future .future-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .future .future-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.future .future-list .future-item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 240px;
  padding: 8px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .future .future-list .future-item {
    height: 477px;
    padding: 12px 24px;
    border-radius: 32px;
  }
}
.future .future-list .future-item h4 {
  margin-bottom: 12px;
}
@media only screen and (min-width: 1440px) {
  .future .future-list .future-item h4 {
    max-width: 204px;
  }
}
.future .future-list .future-item h4:first-child {
  margin-bottom: 8px;
  color: #7FCD73;
}
@media only screen and (min-width: 1024px) {
  .future .future-list .future-item h4:first-child {
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 1440px) {
  .future .future-list .future-item h4:first-child {
    font-size: 20px;
    line-height: 28px;
  }
}
.future .future-list .future-item p {
  max-width: 343px;
  opacity: 0.5;
  letter-spacing: -0.38px;
}
@media only screen and (min-width: 1024px) {
  .future .future-list .future-item p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .future .future-list .future-item p {
    max-width: none;
    font-size: 18px;
    line-height: 24px;
  }
}
.future .future-list .future-item img {
  position: absolute;
  width: 100%;
  max-width: 360px;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .future .future-list .future-item img {
    max-width: none;
  }
}

.health {
  position: relative;
  margin-bottom: 138px;
}
@media only screen and (min-width: 1024px) {
  .health {
    margin-bottom: 200px;
    padding: 0 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .health {
    margin-bottom: 120px;
  }
}
.health .title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0.3px;
  color: #1A1D1A;
}
@media only screen and (min-width: 1024px) {
  .health .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    font-size: 120px;
    line-height: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .health .title {
    padding-top: 130px;
    font-size: 170px;
    line-height: 100%;
  }
  .health .title span {
    background: linear-gradient(90deg, #1A1D1A 0%, rgba(26, 29, 26, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.health .subtitle {
  margin-bottom: 36px;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.1px;
  color: #93C27E;
}
@media only screen and (min-width: 1024px) {
  .health .subtitle {
    position: absolute;
    top: 149px;
    right: 24px;
    width: 310px;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.6px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .subtitle {
    top: 317px;
    width: 446px;
    font-size: 64px;
    line-height: 64px;
  }
}
.health .account,
.health .dashboard {
  display: flex;
  flex-direction: column;
  max-width: 167px;
  gap: 16px;
  margin-left: 8px;
}
@media only screen and (min-width: 1024px) {
  .health .account,
  .health .dashboard {
    gap: 24px;
  }
}
.health .account h4,
.health .dashboard h4 {
  color: #1A1A1A;
}
.health .account p,
.health .dashboard p {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.5px;
  color: #1A1A1A;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .health .account p,
  .health .dashboard p {
    font-size: 15px;
    line-height: 24px;
  }
}
.health .account {
  margin-bottom: 44px;
}
@media only screen and (min-width: 1024px) {
  .health .account {
    position: absolute;
    top: 196px;
    left: 24px;
    max-width: 300px;
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .health .account {
    top: 346px;
  }
}
@media only screen and (min-width: 1024px) {
  .health .dashboard {
    position: absolute;
    top: 420px;
    right: 52px;
    max-width: 281px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .dashboard {
    top: 486px;
    right: 187px;
  }
}
.health .dashboard h4 {
  color: #808080;
}
.health .health-wrapper {
  margin: 236px -8px 0;
  padding: 8px 8px 128px;
  background: linear-gradient(180deg, #C1EBAF 8.77%, #E8F7E2 100%);
  border-radius: 32px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper {
    margin: 423px -24px 0;
    padding: 16px;
    background: linear-gradient(180deg, #C1EBAF 0%, #E8F7E2 100%);
    border-radius: 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper {
    margin-top: 447px;
    padding: 24px;
  }
}
.health .health-wrapper .health-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 64px;
  }
}
.health .health-wrapper .health-list .health-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: #FFFFFF;
  border-radius: 16px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item {
    height: 190px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item {
    height: 320px;
    padding: 32px;
  }
}
.health .health-wrapper .health-list .health-item h4 {
  color: #1A1A1A;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item h4 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item h4 {
    font-size: 28px;
    line-height: 28px;
  }
}
.health .health-wrapper .health-list .health-item p {
  font-size: 18px;
  line-height: 140%;
  color: #808080;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item p {
    margin-top: auto;
    letter-spacing: 0.1px;
  }
}
.health .health-wrapper .health-list .health-item:first-child {
  border-radius: 32px 32px 16px 16px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item:first-child {
    border-radius: 60px 24px 24px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item:first-child {
    border-radius: 60px 24px 24px 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item:nth-child(2) {
    border-radius: 24px 60px 24px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item:nth-child(2) {
    border-radius: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item:nth-child(3) {
    border-radius: 24px 24px 24px 60px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item:nth-child(3) {
    border-radius: 24px;
  }
}
.health .health-wrapper .health-list .health-item:last-child {
  border-radius: 16px 16px 24px 24px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-list .health-item:last-child {
    border-radius: 24px 24px 60px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-list .health-item:last-child {
    border-radius: 24px 60px 60px 24px;
  }
}
.health .health-wrapper .health-truth {
  position: relative;
}
.health .health-wrapper .health-truth h2 {
  max-width: 250px;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #374A2F;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth h2 {
    max-width: 435px;
    margin-bottom: 16px;
    padding: 0 32px;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.3px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-truth h2 {
    max-width: 480px;
    margin-bottom: 32px;
    font-size: 40px;
    line-height: 44px;
  }
}
.health .health-wrapper .health-truth .health-truth-list {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 32px;
  padding: 16px 8px;
  background: #FFFFFF;
  box-shadow: 0 4px 70px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(25px);
  border-radius: 24px 24px 24px 32px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth .health-truth-list {
    padding: 24px 16px;
    width: 475px;
    border-radius: 24px 24px 24px 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-truth .health-truth-list {
    padding: 32px 16px;
  }
}
.health .health-wrapper .health-truth .health-truth-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 4px 8px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth .health-truth-item {
    padding: 4px 16px;
  }
}
.health .health-wrapper .health-truth .health-truth-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: rgba(222, 246, 206, 0.8);
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth .health-truth-item .icon {
    min-width: 72px;
    height: 72px;
  }
  .health .health-wrapper .health-truth .health-truth-item .icon svg {
    width: 40px;
    height: 40px;
  }
}
.health .health-wrapper .health-truth .health-truth-item p {
  letter-spacing: -0.5px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth .health-truth-item p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-truth .health-truth-item p {
    font-size: 18px;
    line-height: 24px;
  }
}
.health .health-wrapper .health-truth img {
  position: absolute;
  top: 57%;
  right: -145px;
}
@media only screen and (min-width: 1024px) {
  .health .health-wrapper .health-truth img {
    top: -16%;
    right: -300px;
  }
}
@media only screen and (min-width: 1440px) {
  .health .health-wrapper .health-truth img {
    top: -11%;
    right: 0;
  }
}
.health > img {
  position: absolute;
  width: 455px;
  top: 132px;
  right: -212px;
}
@media only screen and (min-width: 1024px) {
  .health > img {
    top: 0;
    right: unset;
    left: 45%;
    transform: translateX(-50%);
    width: 451px;
  }
}
@media only screen and (min-width: 1440px) {
  .health > img {
    left: 48%;
    width: auto;
  }
}

.expert {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
@media only screen and (min-width: 1024px) {
  .expert {
    margin-bottom: 92px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert {
    margin-bottom: 64px;
  }
}
.expert .title {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .expert .title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 125px;
    padding: 0 64px;
    font-weight: 500;
    font-size: 98px;
    line-height: 90%;
    letter-spacing: 0.6px;
  }
  .expert .title span {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.4px;
    opacity: 0.5;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .title {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 127px;
    margin-bottom: 160px;
    padding: 0 58px;
    font-size: 118px;
    line-height: 90%;
  }
  .expert .title span {
    font-size: 40px;
    line-height: 44px;
  }
}
.expert .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 32px 8px 8px;
  background: #FFFFFF;
  border-radius: 32px;
}
@media only screen and (min-width: 1024px) {
  .expert .content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    height: 537px;
    padding: 24px 24px 24px 56px;
    border-radius: 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .content {
    height: 615px;
  }
}
.expert .content .heading {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .expert .content .heading {
    width: 287px;
    height: 100%;
  }
}
.expert .content .heading h2 {
  margin-bottom: 11px;
}
.expert .content .heading span {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -1px;
  color: #000000;
  opacity: 0.34;
}
@media only screen and (min-width: 1024px) {
  .expert .content .heading span {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .content .heading span {
    font-size: 20px;
    line-height: 28px;
  }
}
.expert .content .heading p {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.5px;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .expert .content .heading p {
    width: 236px;
    margin-top: auto;
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .content .heading p {
    width: 267px;
  }
}
.expert .content .expert-wrapper {
  position: relative;
  padding: 16px;
  background: rgba(245, 245, 245, 0.7);
  box-shadow: 0 4px 70px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(32px);
  border-radius: 24px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .expert .content .expert-wrapper {
    display: flex;
    flex-direction: column;
    width: 353px;
    height: 100%;
    border-radius: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .content .expert-wrapper {
    width: 453px;
    padding: 32px;
  }
}
.expert .content .expert-wrapper .title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -1px;
}
@media only screen and (min-width: 1024px) {
  .expert .content .expert-wrapper .title {
    margin-bottom: auto;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
  }
}
.expert .content .expert-wrapper .expert-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.expert .content .expert-wrapper .expert-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .expert .content .expert-wrapper .expert-item {
    align-items: flex-start;
  }
}
.expert .content .expert-wrapper .expert-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: rgba(222, 246, 206, 0.8);
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .expert .content .expert-wrapper .expert-item .icon {
    min-width: 64px;
    height: 64px;
  }
  .expert .content .expert-wrapper .expert-item .icon svg {
    width: 32px;
    height: 32px;
  }
}
.expert .content .expert-wrapper .expert-item p {
  letter-spacing: -0.5px;
}
@media only screen and (min-width: 1024px) {
  .expert .content .expert-wrapper .expert-item p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .expert .content .expert-wrapper .expert-item p {
    font-size: 18px;
    line-height: 24px;
  }
}
.expert .content img {
  margin: -8px 0 -59px;
}
@media only screen and (min-width: 1024px) {
  .expert .content img {
    position: absolute;
    bottom: 0;
    left: 27%;
    margin: 0;
  }
}

.roadmap {
  margin: 0 -8px 90px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .roadmap {
    margin-bottom: 254px;
  }
}
@media only screen and (min-width: 1440px) {
  .roadmap {
    margin-bottom: 315px;
  }
}
.roadmap .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-left: 8px;
}
@media only screen and (min-width: 1024px) {
  .roadmap .heading {
    padding-left: 64px;
  }
}
.roadmap .heading h2 {
  margin-bottom: 0;
}
.roadmap .heading .slider-nav {
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .roadmap .heading .slider-nav {
    padding-right: 24px;
  }
}
.roadmap .heading .slider-nav .nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s ease;
}
@media only screen and (min-width: 1440px) {
  .roadmap .heading .slider-nav .nav-btn:hover {
    background: #E6E6E6;
  }
  .roadmap .heading .slider-nav .nav-btn:active {
    background: #CCCCCC;
  }
  .roadmap .heading .slider-nav .nav-btn.disabled {
    pointer-events: none;
  }
  .roadmap .heading .slider-nav .nav-btn.disabled svg path {
    stroke: rgba(0, 0, 0, 0.18);
  }
}
.roadmap .slider {
  display: flex;
  gap: 16px;
  padding-left: 8px;
}
.roadmap .slider .slide {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 70px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(26px);
  border-radius: 32px;
}
@media only screen and (min-width: 1024px) {
  .roadmap .slider .slide {
    min-width: 464px;
    height: 320px;
    padding: 24px;
  }
}
.roadmap .slider .slide .title {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #7FCD73;
}
@media only screen and (min-width: 1024px) {
  .roadmap .slider .slide .title {
    margin-bottom: 64px;
    font-size: 22px;
    line-height: 120%;
  }
}
.roadmap .slider .slide .name {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -1px;
}
@media only screen and (min-width: 1024px) {
  .roadmap .slider .slide .name {
    font-size: 22px;
    line-height: 120%;
  }
}
.roadmap .slider .slide .description {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.5px;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .roadmap .slider .slide .description {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .roadmap .slider .slide .description {
    font-size: 18px;
    line-height: 140%;
  }
}

footer {
  position: relative;
}
footer .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 32px 8px;
  background: rgba(245, 245, 245, 0.7);
  border-radius: 24px 24px 0 0;
  backdrop-filter: blur(32px);
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  footer .content {
    padding: 64px 32px 12px;
  }
}
@media only screen and (min-width: 1440px) {
  footer .content {
    max-width: 1440px;
    margin: 0 auto;
  }
}
footer .top {
  margin-bottom: 64px;
}
@media only screen and (min-width: 1024px) {
  footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  footer .top {
    margin-bottom: 32px;
  }
}
footer .top .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  footer .top .logo {
    margin: 0;
  }
}
footer .top .list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .top .list {
    flex-direction: row;
    gap: 32px;
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  footer .top .list {
    gap: 48px;
  }
}
footer .top .list li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #1C1C1C;
}
@media only screen and (min-width: 1024px) {
  footer .top .list li a {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  footer .top .list li a {
    font-size: 18px;
  }
}
footer .top .btn.btn-inverse {
  padding: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.18);
}
@media only screen and (min-width: 1024px) {
  footer .top .btn.btn-inverse {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  footer .top .btn.btn-inverse {
    font-size: 18px;
  }
}
footer .bot {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .bot {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4px;
  }
}
footer .bot .copyright {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.15px;
  color: #1C1C1C;
  opacity: 0.3;
}
@media only screen and (min-width: 1024px) {
  footer .bot .copyright {
    font-size: 13px;
    line-height: 20px;
  }
}
footer .bot .links {
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  footer .bot .links {
    margin-right: 24px;
  }
}
footer .bot .links a {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.15px;
  color: #1C1C1C;
}
@media only screen and (min-width: 1024px) {
  footer .bot .links a {
    font-size: 13px;
    line-height: 20px;
  }
}
footer .address {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.15px;
  color: #1C1C1C;
}
@media only screen and (min-width: 1024px) {
  footer .address {
    margin-right: auto;
    font-size: 13px;
    line-height: 20px;
  }
}
footer img {
  position: absolute;
  top: -133px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  footer img {
    top: unset;
    bottom: 105px;
  }
}
@media only screen and (min-width: 1440px) {
  footer img {
    bottom: 0;
  }
}

/*# sourceMappingURL=main.css.map */
