html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #fff;
  color: #1D1D1B;
  text-decoration: none;
}

mark {
  background-color: #fff;
  color: #1D1D1B;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

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

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s all;
}

a:focus,
a:hover {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1900px) {
  html {
    font-size: 21px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #ffffff;
  font-size: 16px;
  font-family: kyrial-display-pro, sans-serif;
  font-weight: normal;
  color: #1D1D1B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  clear: both;
  display: block;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  line-height: 1.35;
}

.container {
  width: 95%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
}

input:hover, input:focus, input:active, input:visited,
textarea:hover,
textarea:focus,
textarea:active,
textarea:visited,
button:hover,
button:focus,
button:active,
button:visited {
  outline: none;
  box-shadow: none;
}

.section__name {
  color: #46ac33;
  margin: 3rem auto;
  font-size: 2rem;
  text-align: center;
}

.section__title {
  color: #46ac33;
  margin: 1rem auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
}

.amino-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.amino-nav .nav-topbar {
  padding: 1.5rem 0;
}
.amino-nav .nav-topbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amino-nav .nav-topbar-logo-wrapper {
  display: flex;
  align-items: center;
}
.amino-nav .nav-topbar-logo-wrapper img {
  width: 10rem;
  height: auto;
  display: block;
  margin-right: 2rem;
}
.amino-nav .nav-topbar-logo-wrapper img:nth-child(2) {
  width: 13rem;
  transform: translateY(0.5rem);
}
@media (max-width: 768px) {
  .amino-nav .nav-topbar-logo-wrapper img:nth-child(2) {
    display: none;
  }
}
.amino-nav .nav-items-list {
  display: flex;
  justify-content: flex-end;
}
.amino-nav .nav-items {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .amino-nav .nav-items {
    display: none;
  }
}
.amino-nav .nav-items a {
  display: block;
  text-decoration: none;
  margin-left: 3rem;
  color: #1D1D1B;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s;
}
.amino-nav .nav-items a.active {
  color: #71BF44;
}
.amino-nav .nav-topbar-link {
  color: #71BF44 !important;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  margin: 0;
  width: 8rem;
  text-align: right;
}
@media (max-width: 768px) {
  .amino-nav .nav-topbar-link {
    display: none;
  }
}
.amino-nav .nav-topbar-link img {
  height: 1.5rem;
  width: auto;
  display: block;
}
.amino-nav .nav-burger-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .amino-nav .nav-burger-wrapper {
    display: block;
  }
}
.amino-nav .nav-burger {
  width: 1.75rem;
  height: 1.5rem;
  opacity: 0.6;
  margin-left: auto;
  background-size: cover;
  background-position: center;
  background-image: url("images/open-menu.svg");
}
.amino-nav .nav-burger.active {
  background-image: url("images/close.svg");
  width: 1.5rem;
  padding: 0 0.25rem;
}
.amino-nav .nav-mobile-menu {
  display: none;
  position: fixed;
  z-index: 98;
  top: 3rem;
  left: 0;
  height: calc(100vh - 3rem);
  width: 100vw;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}
.amino-nav .nav-mobile-menu.active {
  display: flex;
}
.amino-nav .nav-mobile-menu ul {
  padding: 0;
  margin: 0;
  text-align: center;
}
.amino-nav .nav-mobile-menu li {
  padding: 0;
  margin: 3rem 0;
  list-style-type: none;
}
.amino-nav .nav-mobile-menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  color: #1D1D1B;
  text-transform: uppercase;
}
.amino-nav .nav-mobile-menu a img {
  height: 2rem;
  width: auto;
  display: block;
  margin: 0 auto;
}

.amino__hero {
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .amino__hero {
    margin-top: 7rem;
  }
}
.amino__hero .hero__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 3.5rem 0 0;
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper {
    flex-direction: column;
    padding: 0;
  }
}
.amino__hero .hero__wrapper-img {
  width: 50%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-img {
    padding-right: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .amino__hero .hero__wrapper-img {
    width: 100%;
  }
}
.amino__hero .hero__wrapper-img img {
  width: 100%;
  height: auto;
}
.amino__hero .hero__wrapper-text {
  width: 45%;
  min-width: 300px;
  padding-left: 3rem;
  display: flex;
  font-size: 1.2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-text {
    margin: 0;
    padding-left: 0;
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 576px) {
  .amino__hero .hero__wrapper-text {
    width: 100%;
  }
}
.amino__hero .hero__wrapper-text .hero__wrapper-button {
  text-align: center;
}
@media (max-width: 1024px) {
  .amino__hero .hero__wrapper-text .hero__wrapper-button {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-text .hero__wrapper-button {
    margin-bottom: 3rem;
  }
}
.amino__hero .hero__wrapper-text .hero__button {
  padding: 0.75rem 1.1rem;
  background-color: #71bf44;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.2rem;
}
.amino__hero .hero__wrapper-text .hero__button:hover {
  text-shadow: #fff 1px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (max-width: 1024px) {
  .amino__hero .hero__wrapper-text .hero__button {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-text .hero__button {
    padding: 0.5rem 1rem;
  }
}
.amino__hero .hero__wrapper-text .hero__logo {
  width: auto;
  height: 10rem;
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-text .hero__logo {
    margin: 0 auto;
    display: block;
  }
}
.amino__hero .hero__wrapper-text .hero__title {
  color: #1d1d1b;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .amino__hero .hero__wrapper-text .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.amino__hero .hero__wrapper-text .hero__title span {
  font-size: 4.7rem;
  font-weight: 800;
  color: #71bf44;
}
@media (max-width: 1024px) {
  .amino__hero .hero__wrapper-text .hero__title span {
    font-size: 2.5rem;
  }
}
.amino__hero .hero__wrapper-text .hero__text {
  margin: 1.5rem 0 3rem 0;
  line-height: 1.5;
  color: #1d1d1b;
  font-size: 1.2rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .amino__hero .hero__wrapper-text .hero__text {
    text-align: left;
    line-height: 1.35;
  }
}
.amino__hero .hero__wrapper-text .hero__text span {
  font-weight: 900;
}

.amino__about {
  padding: 2rem 0 0;
}

.amino__about-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
}
.amino__about-title b {
  font-weight: 700;
  color: #71BF44;
}
@media (max-width: 768px) {
  .amino__about-title {
    font-size: 1.75rem;
  }
}

.amino__about-text {
  line-height: 1.5;
  color: #1D1D1B;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 90%;
  text-align: center;
  margin: 3rem auto;
}
@media (max-width: 768px) {
  .amino__about-text {
    max-width: 100%;
    line-height: 1.35;
    margin: 1.5rem auto 3rem;
  }
}

.amino__about-img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0.5rem auto 5rem;
  height: auto;
}
.amino__about-img.smaller {
  max-width: 900px;
}

.amino__symptom {
  margin: 3rem auto;
  background: #fff;
}
.amino__symptom .section__title {
  color: #46ac33;
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .amino__symptom .section__title {
    text-align: center;
  }
}
.amino__symptom .symptom__text {
  width: 50%;
  color: #808080;
  margin: 1rem 0 5rem 0;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .amino__symptom .symptom__text {
    margin: 1rem auto 3.5rem;
    text-align: justify;
    width: 60%;
  }
}
@media (max-width: 576px) {
  .amino__symptom .symptom__text {
    width: 100%;
  }
}
.amino__symptom .symptom__table {
  width: 100%;
  text-align: center;
  display: block;
}
@media (max-width: 576px) {
  .amino__symptom .symptom__table {
    max-width: 100vw;
    overflow: auto;
  }
}
.amino__symptom .symptom__table td, .amino__symptom .symptom__table th {
  border: 1px solid lightgray;
  padding: 0.5rem;
  color: #114179;
  font-weight: 600;
}
.amino__symptom .symptom__table td.blue, .amino__symptom .symptom__table th.blue {
  background-color: #114179;
  color: white;
}
.amino__symptom .symptom__table td.brown, .amino__symptom .symptom__table th.brown {
  background-color: #6d3629;
  color: white;
}
.amino__symptom .symptom__table td.pink, .amino__symptom .symptom__table th.pink {
  background-color: #8d1658;
  color: white;
}
.amino__symptom .symptom__table td.green, .amino__symptom .symptom__table th.green {
  background-color: #007279;
  color: white;
}
.amino__symptom .symptom__table th {
  border-top: none;
  font-weight: 900;
}
.amino__symptom .symptom__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 14rem;
}
@media (max-width: 576px) {
  .amino__symptom .symptom__items {
    margin-top: 10rem;
  }
}
.amino__symptom .symptom__items .symptom__item {
  width: 20%;
  border-radius: 20px;
  color: #fff;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 37px -1px rgba(32, 172, 0, 0.15);
  position: relative;
}
.amino__symptom .symptom__items .symptom__item.blue {
  color: #114179;
}
.amino__symptom .symptom__items .symptom__item.brown {
  color: #6d3629;
}
.amino__symptom .symptom__items .symptom__item.pink {
  color: #8d1658;
}
.amino__symptom .symptom__items .symptom__item.green {
  color: #007279;
}
@media (max-width: 768px) {
  .amino__symptom .symptom__items .symptom__item {
    margin-bottom: 10rem;
  }
  .amino__symptom .symptom__items .symptom__item:last-of-type {
    margin-bottom: 0;
  }
}
.amino__symptom .symptom__items .symptom__item-content {
  position: relative;
  padding-top: 10rem;
}
@media (max-width: 576px) {
  .amino__symptom .symptom__items .symptom__item-content {
    padding-bottom: 2rem;
  }
}
.amino__symptom .symptom__items .symprom__item-link {
  cursor: pointer;
  margin-top: 2.5rem;
}
@media (max-width: 576px) {
  .amino__symptom .symptom__items .symprom__item-link {
    display: none;
  }
}
.amino__symptom .symptom__items .symptom__item-name {
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  position: relative;
}
.amino__symptom .symptom__items .symptom__item-text {
  text-align: center;
  margin: 1rem 2rem;
  position: relative;
}
.amino__symptom .symptom__items .symptom__item-img {
  height: 15rem;
  width: auto;
  display: block;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  top: -5rem;
  left: -1.75rem;
}
.amino__symptom .symptom__items .symprom__item-link {
  width: 100%;
  padding: 1.5rem;
  background-color: #fff;
  text-align: center;
  color: #46ac33;
  font-weight: 600;
  border-radius: 0 0 20px 20px;
  transition: all 0.4s;
  z-index: 9;
}
.amino__symptom .symptom__items .symprom__item-link:hover {
  background-color: rgba(70, 172, 51, 0.1);
}

.symptom__modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
}
.symptom__modal.active {
  display: flex;
}

.symptom__modal-wrapper {
  width: 60%;
  height: auto;
  max-height: 80vh;
  min-height: 30vh;
  max-width: 1000px;
  position: relative;
  padding: 2rem;
}
@media (max-width: 768px) {
  .symptom__modal-wrapper {
    width: 100%;
    max-height: 100vh;
  }
}

.symptom__modal-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .symptom__modal-close {
    right: 0.5rem;
  }
}

.symptom__modal-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #808080;
  text-align: center;
  max-height: 80vh;
  overflow: auto;
  position: relative;
  box-shadow: 0 2px 37px -1px rgba(29, 59, 139, 0.4);
  background: white;
  padding: 2rem;
}
.symptom__modal-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 2rem;
}

.symptom__modal-title {
  color: #46ac33;
  font-size: 1.35rem;
  margin: 1rem 0;
  font-weight: 600;
}
.symptom__modal-title.blue {
  color: #114179;
}
.symptom__modal-title.brown {
  color: #6d3629;
}
.symptom__modal-title.pink {
  color: #8d1658;
}
.symptom__modal-title.green {
  color: #007279;
}

.symptom__modal-text {
  color: #808080;
  margin-bottom: 2rem;
}

.symptom__modal-list {
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
  padding: 0;
}
.symptom__modal-list li {
  padding: 0;
  color: #808080;
  margin: 0.5rem 0;
}
.symptom__modal-list ul {
  padding-left: 2rem;
}

.amino__benefits {
  position: relative;
  padding: 3rem 0 1rem;
  max-width: 100vw;
  overflow: hidden;
}
.amino__benefits .benefits__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1d1d1b;
  max-width: 800px;
  margin: 0 auto;
}
.amino__benefits .benefits__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__benefits .benefits__title {
    font-size: 1.75rem;
  }
}
.amino__benefits .benefits__text {
  width: 75%;
  font-size: 1.2rem;
  color: #808080;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .amino__benefits .benefits__text {
    width: 100%;
  }
}
.amino__benefits .benefits__text span {
  color: #46ac33;
  font-weight: 600;
}
.amino__benefits .benefits__table {
  text-align: center;
  margin: 3.5rem auto 2rem;
}
@media (max-width: 576px) {
  .amino__benefits .benefits__table {
    max-width: 100vw;
    overflow: auto;
    display: block;
  }
}
.amino__benefits .benefits__table caption {
  padding-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.amino__benefits .benefits__table caption span {
  font-weight: 300;
}
.amino__benefits .benefits__table td,
.amino__benefits .benefits__table th {
  border-bottom: 1px solid lightgray;
  padding: 0.25rem 0.5rem;
  color: #1d1d1b;
  font-weight: 600;
  min-width: 8rem;
}
@media (max-width: 1440px) {
  .amino__benefits .benefits__table td,
  .amino__benefits .benefits__table th {
    min-width: 9.5rem;
  }
}
@media (max-width: 576px) {
  .amino__benefits .benefits__table td,
  .amino__benefits .benefits__table th {
    min-width: 5rem;
  }
}
.amino__benefits .benefits__table td.row-header,
.amino__benefits .benefits__table th.row-header {
  color: white;
  border-radius: 0.75rem;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  text-align: start;
  padding: 0.25rem 1rem;
}
.amino__benefits .benefits__table td.orange-yellow,
.amino__benefits .benefits__table th.orange-yellow {
  background-image: linear-gradient(90deg, rgb(241, 86, 36), rgb(252, 191, 13));
}
.amino__benefits .benefits__table td.yellow-green,
.amino__benefits .benefits__table th.yellow-green {
  background-image: linear-gradient(90deg, rgb(255, 213, 1), rgb(113, 191, 68));
}
.amino__benefits .benefits__table td.green-orange,
.amino__benefits .benefits__table th.green-orange {
  background-image: linear-gradient(90deg, rgb(114, 191, 68), rgb(248, 158, 41));
}
.amino__benefits .benefits__table td.red-green,
.amino__benefits .benefits__table th.red-green {
  background-image: linear-gradient(90deg, rgb(206, 22, 29), rgb(113, 191, 68));
}
.amino__benefits .benefits__table td.lightblue,
.amino__benefits .benefits__table th.lightblue {
  background-image: linear-gradient(90deg, rgb(0, 157, 214), rgb(109, 208, 246));
}
.amino__benefits .benefits__table td.darkblue,
.amino__benefits .benefits__table th.darkblue {
  background-image: linear-gradient(90deg, rgb(0, 76, 152), rgb(28, 177, 231));
}
.amino__benefits .benefits__table td.brown,
.amino__benefits .benefits__table th.brown {
  background-image: linear-gradient(90deg, rgb(140, 47, 28), rgb(248, 160, 132));
}
.amino__benefits .benefits__table td.pink,
.amino__benefits .benefits__table th.pink {
  background-image: linear-gradient(90deg, rgb(236, 0, 141), rgb(246, 152, 178));
}
.amino__benefits .benefits__table td.turquoise,
.amino__benefits .benefits__table th.turquoise {
  background-image: linear-gradient(90deg, rgb(0, 174, 150), rgb(146, 214, 228));
}
.amino__benefits .benefits__table td.red,
.amino__benefits .benefits__table th.red {
  background-color: rgb(206, 22, 29);
}
.amino__benefits .benefits__table td.lightblue,
.amino__benefits .benefits__table th.lightblue {
  background-color: rgb(109, 208, 246);
}
.amino__benefits .benefits__table td.blue,
.amino__benefits .benefits__table td .amino__benefits .benefits__table th.blue,
.amino__benefits .benefits__table th.blue,
.amino__benefits .benefits__table th .amino__benefits .benefits__table th.blue {
  background-color: #114179;
}
.amino__benefits .benefits__table td.brown,
.amino__benefits .benefits__table td .amino__benefits .benefits__table th.brown,
.amino__benefits .benefits__table th.brown,
.amino__benefits .benefits__table th .amino__benefits .benefits__table th.brown {
  background-color: #6d3629;
}
.amino__benefits .benefits__table td.pink,
.amino__benefits .benefits__table td .amino__benefits .benefits__table th.pink,
.amino__benefits .benefits__table th.pink,
.amino__benefits .benefits__table th .amino__benefits .benefits__table th.pink {
  background-color: #8d1658;
}
.amino__benefits .benefits__table td.green,
.amino__benefits .benefits__table td .amino__benefits .benefits__table th.green,
.amino__benefits .benefits__table th.green,
.amino__benefits .benefits__table th .amino__benefits .benefits__table th.green {
  background-color: #007279;
}
.amino__benefits .benefits__table th {
  border-top: none;
  font-weight: 900;
}
.amino__benefits .benefits__table td {
  white-space: nowrap;
}
.amino__benefits .benefits__footnote-row td {
  text-align: start;
  padding-top: 1rem;
  border-bottom: 0;
}

.amino__recommendation {
  position: relative;
  padding: 3rem 0 1rem;
  max-width: 100vw;
  overflow: hidden;
}
.amino__recommendation .recommendation__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1d1d1b;
  margin: 0 auto;
}
.amino__recommendation .recommendation__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__recommendation .recommendation__title {
    font-size: 1.75rem;
  }
}

.amino__recommendation .recommendation__text {
  width: 75%;
  font-size: 1.2rem;
  color: #808080;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .amino__recommendation .recommendation__text {
    width: 100%;
  }
}
.amino__recommendation .recommendation__text span {
  color: #46ac33;
  font-weight: 600;
}

.amino__recommendation .recommendation__table {
  text-align: center;
  margin: 3.5rem auto 2rem;
}

@media (max-width: 576px) {
  .amino__recommendation .recommendation__table {
    max-width: 100vw;
    overflow: auto;
    display: block;
  }
}
.amino__recommendation .recommendation__table .table-wrapper {
  width: auto;
}

.amino__recommendation .recommendation__table td,
.amino__recommendation .recommendation__table th {
  border-bottom: 1px solid lightgray;
  padding: 0.25rem 0.5rem;
  color: #1d1d1b;
  font-weight: 600;
}

.amino__recommendation .recommendation__table .table__icon-header {
  text-align: center;
  vertical-align: middle;
}

.amino__recommendation .recommendation__table .table__icon-header-img {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-110%, -50%);
  max-height: 3rem;
}

.amino__recommendation .recommendation__table .table__icon-header-text {
  text-align: center;
  display: inline-block;
  position: relative;
}

.amino__recommendation .recommendation__table .table__icon-header-text--light {
  font-weight: 300;
}

.amino__recommendation .recommendation__table td:not(:first-child),
.amino__recommendation .recommendation__table th:not(:first-child) {
  width: 16rem;
}

@media (max-width: 1440px) {
  .amino__recommendation .recommendation__table td,
  .amino__recommendation .recommendation__table th {
    width: 9.5rem;
  }
}
@media (max-width: 576px) {
  .amino__recommendation .recommendation__table td,
  .amino__recommendation .recommendation__table th {
    width: 5rem;
  }
}
.amino__recommendation .recommendation__table th.row-header,
.amino__recommendation .recommendation__table td.row-header {
  color: white;
  border-radius: 0.75rem;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  text-align: start;
  padding: 0.25rem 1rem;
}

.amino__recommendation .recommendation__table td.orange-yellow {
  background-image: linear-gradient(90deg, rgb(241, 86, 36), rgb(252, 191, 13));
}

.amino__recommendation .recommendation__table td.yellow-green {
  background-image: linear-gradient(90deg, rgb(255, 213, 1), rgb(113, 191, 68));
}

.amino__recommendation .recommendation__table td.green-orange {
  background-image: linear-gradient(90deg, rgb(114, 191, 68), rgb(248, 158, 41));
}

.amino__recommendation .recommendation__table td.red-green {
  background-image: linear-gradient(90deg, rgb(206, 22, 29), rgb(113, 191, 68));
}

.amino__recommendation .recommendation__table td.lightblue {
  background-image: linear-gradient(90deg, rgb(0, 157, 214), rgb(109, 208, 246));
}

.amino__recommendation .recommendation__table td.darkblue {
  background-image: linear-gradient(90deg, rgb(0, 76, 152), rgb(28, 177, 231));
}

.amino__recommendation .recommendation__table td.brown {
  background-image: linear-gradient(90deg, rgb(140, 47, 28), rgb(248, 160, 132));
}

.amino__recommendation .recommendation__table td.pink {
  background-image: linear-gradient(90deg, rgb(236, 0, 141), rgb(246, 152, 178));
}

.amino__recommendation .recommendation__table td.turquoise {
  background-image: linear-gradient(90deg, rgb(0, 174, 150), rgb(146, 214, 228));
}

.amino__recommendation .recommendation__table td.red {
  background-color: rgb(206, 22, 29);
}

.amino__recommendation .recommendation__table td.lightblue {
  background-color: rgb(109, 208, 246);
}

.amino__recommendation .recommendation__table td.blue,
.amino__recommendation .recommendation__table th.blue {
  background-color: #114179;
}

.amino__recommendation .recommendation__table td.brown,
.amino__recommendation .recommendation__table th.brown {
  background-color: #6d3629;
}

.amino__recommendation .recommendation__table td.pink,
.amino__recommendation .recommendation__table th.pink {
  background-color: #8d1658;
}

.amino__recommendation .recommendation__table td.green,
.amino__recommendation .recommendation__table th.green {
  background-color: #007279;
}

.amino__recommendation .recommendation__table th {
  border-top: none;
  font-weight: 900;
}

.amino__recommendation .recommendation__table td {
  white-space: nowrap;
}

.amino__recommendation .recommendation__footnote-row td {
  text-align: start;
  padding-top: 1rem;
  border-bottom: 0;
}

.amino__list {
  padding: 2rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .amino__list {
    padding: 2rem 0 0;
  }
}

.amino__list-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .amino__list-title {
    margin-bottom: 3rem;
  }
}

.amino__list-title b {
  font-weight: 700;
  color: #71bf44;
}
@media (max-width: 768px) {
  .amino__list-title {
    font-size: 1.75rem;
  }
}

.amino__list-list {
  display: inline-block;
  margin-bottom: 2rem;
  max-width: 1650px;
}

.amino__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.amino__list-item-img {
  display: block;
  max-width: 300px;
  margin-right: 2.5rem;
}

.amino__list-item-text {
  font-style: italic;
  text-align: start;
  font-size: 1.5rem;
}

@media (max-width: 1900px) {
  .amino__list-list {
    max-width: 1400px;
  }
  .amino__list-item-img {
    max-width: 250px;
  }
}
@media (max-width: 1440px) {
  .amino__list-list {
    max-width: 1100px;
  }
  .amino__list-item-img {
    max-width: 200px;
  }
  .amino__list-item-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .amino__list-list {
    max-width: 750px;
  }
  .amino__list-item-img {
    max-width: 150px;
  }
  .amino__list-item-text {
    font-size: 1rem;
  }
}
.amino__effective {
  position: relative;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .amino__effective {
    padding: 0;
  }
}
.amino__effective .effective__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1D1D1B;
  max-width: 1200px;
  margin: 0 auto;
}
.amino__effective .effective__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__effective .effective__title {
    font-size: 1.75rem;
  }
}
.amino__effective .effective__rows {
  margin-top: 3rem;
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .amino__effective .effective__rows {
    padding: 0;
  }
}
.amino__effective .effective__row {
  display: flex;
  align-items: center;
  margin: -6rem auto;
}
@media (max-width: 768px) {
  .amino__effective .effective__row {
    flex-direction: column;
    margin: 3rem auto;
  }
}
.amino__effective .effective__row:nth-child(2n+2) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .amino__effective .effective__row:nth-child(2n+2) {
    flex-direction: column;
  }
}
.amino__effective .effective__row:nth-child(2n+2) p {
  margin-right: 5%;
  margin-left: 0;
}
@media (max-width: 768px) {
  .amino__effective .effective__row:nth-child(2n+2) p {
    margin: 1rem 0 0;
  }
}
.amino__effective .effective__row img {
  width: 25%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .amino__effective .effective__row img {
    width: 80%;
    margin: 0 auto;
  }
}
.amino__effective .effective__row p {
  margin-left: 5%;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 400;
  color: #1D1D1B;
  font-style: italic;
  width: 40%;
}
@media (max-width: 768px) {
  .amino__effective .effective__row p {
    margin: 1rem 0 0;
    width: 100%;
  }
}

.amino__bottom {
  position: relative;
  padding: 3rem 0 5rem;
}
@media (max-width: 768px) {
  .amino__bottom {
    padding: 3rem 0;
  }
}
.amino__bottom .bottom__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1D1D1B;
  max-width: 800px;
  margin: 0 auto;
}
.amino__bottom .bottom__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__title {
    font-size: 1.75rem;
  }
}
.amino__bottom .bottom__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1D1D1B;
  max-width: 900px;
  margin: 3rem auto;
}
.amino__bottom .bottom__text b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__text {
    font-size: 1.2rem;
  }
}
.amino__bottom .bottom__images {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__images {
    flex-direction: column;
    margin-top: 1.5rem;
  }
}
.amino__bottom .bottom__image {
  max-width: 850px;
  margin: 0 auto;
}
.amino__bottom .bottom__image img {
  display: block;
  width: 100%;
}
.amino__bottom .bottom__image:nth-child(1) {
  width: 55%;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__image:nth-child(1) {
    width: 100%;
  }
}
.amino__bottom .bottom__image:nth-child(2) {
  width: 40%;
  margin-top: 1rem;
  margin-left: 5%;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__image:nth-child(2) {
    width: 100%;
    margin: 3rem auto 1rem;
  }
}
.amino__bottom .bottom__sub {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .amino__bottom .bottom__sub {
    font-size: 1rem;
  }
}

.amino__bottom2 {
  position: relative;
  padding: 0 0 3rem;
}
.amino__bottom2 .bottom2__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1D1D1B;
  max-width: 800px;
  margin: 0 auto;
}
.amino__bottom2 .bottom2__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__title {
    font-size: 1.75rem;
  }
}
.amino__bottom2 .bottom2__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1D1D1B;
  max-width: 900px;
  margin: 3rem auto;
}
.amino__bottom2 .bottom2__text b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__text {
    font-size: 1.2rem;
  }
}
.amino__bottom2 .bottom2__images {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__images {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}
.amino__bottom2 .bottom2__image {
  max-width: 850px;
  margin: 0 auto;
}
.amino__bottom2 .bottom2__image img {
  display: block;
  width: 100%;
}
.amino__bottom2 .bottom2__image:nth-child(1) {
  width: 55%;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__image:nth-child(1) {
    width: 100%;
  }
}
.amino__bottom2 .bottom2__image:nth-child(2) {
  width: 30%;
  margin-top: 1rem;
  margin-left: 5%;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__image:nth-child(2) {
    width: 100%;
    margin: 3rem auto 1rem;
  }
}
.amino__bottom2 .bottom2__sub {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .amino__bottom2 .bottom2__sub {
    font-size: 1rem;
  }
}

.amino__boxes {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .amino__boxes {
    padding: 2rem 0 0;
  }
}

.amino__boxes-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .amino__boxes-title {
    margin-bottom: 3rem;
  }
}
.amino__boxes-title b {
  font-weight: 700;
  color: #71BF44;
}
@media (max-width: 768px) {
  .amino__boxes-title {
    font-size: 1.75rem;
  }
}

.amino__boxes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.amino__boxes-box {
  width: 33%;
  margin: 1rem 0;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .amino__boxes-box {
    width: 100%;
  }
}
.amino__boxes-box img {
  display: block;
  height: 110px;
  width: auto;
  margin: 0 auto 1.5rem;
}
.amino__boxes-box p {
  line-height: 1.35;
  color: #1D1D1B;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 90%;
  text-align: center;
  margin: 3rem auto;
}
@media (max-width: 768px) {
  .amino__boxes-box p {
    max-width: 100%;
    line-height: 1.35;
    margin: 1.5rem auto 3rem;
  }
}

.amino__products {
  padding: 0 0 4rem;
}
@media (max-width: 768px) {
  .amino__products {
    padding: 0 0 2.5rem;
  }
}

.amino__products-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.amino__products-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amino__products-group:first-child {
  margin-bottom: 3rem;
}

.amino__products-card {
  width: 68%;
}

.amino__products-title {
  color: rgb(113, 191, 68);
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

.amino__products-img {
  display: block;
  width: 100%;
}

.amino__products-desc {
  width: 28%;
}
.amino__products-desc .amino__products-text {
  margin-bottom: 1rem;
}
.amino__products-desc .amino__products-list {
  list-style-type: none;
  padding: 0.5rem 0;
}

@media (max-width: 1024px) {
  .amino__products-group {
    display: block;
  }
  .amino__products-card {
    width: 100%;
    margin-bottom: 1rem;
  }
  .amino__products-desc {
    width: 100%;
    text-align: center;
    display: block;
  }
  .amino__products-desc .amino__products-list {
    display: inline-block;
  }
  .amino__products-desc .amino__products-list-item {
    display: flex;
  }
}
.amino__gcaa {
  padding: 1rem 0 0;
}
@media (max-width: 768px) {
  .amino__gcaa {
    padding: 1rem 0 0;
  }
}

.amino__gcaa-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.amino__gcaa-title b {
  font-weight: 700;
  color: #71BF44;
}
@media (max-width: 768px) {
  .amino__gcaa-title {
    font-size: 1.75rem;
  }
}

.amino__gcaa-img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0.5rem auto 5rem;
  height: auto;
}
.amino__gcaa-img.smaller {
  max-width: 900px;
}

.amino__howitworks {
  position: relative;
  padding: 5rem 0 5rem;
}
@media (max-width: 768px) {
  .amino__howitworks {
    padding: 3rem 0 3rem;
  }
}
.amino__howitworks .howitworks__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1d1d1b;
  max-width: 70rem;
  margin: 0 auto;
}
.amino__howitworks .howitworks__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__howitworks .howitworks__title {
    font-size: 1.75rem;
  }
}
.amino__howitworks .howitworks__text {
  width: 75%;
  font-size: 1.2rem;
  color: #808080;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .amino__howitworks .howitworks__text {
    width: 100%;
  }
}
.amino__howitworks .howitworks__text span {
  color: #46ac33;
  font-weight: 600;
}
.amino__howitworks .howitworks__images {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amino__howitworks .howitworks__image {
  width: 53%;
}
.amino__howitworks .howitworks__image img {
  display: block;
  width: 100%;
}
.amino__howitworks .howitworks__image:nth-child(2) {
  width: 43%;
}

.amino__images {
  padding: 3.5rem 0 1rem;
}
@media (max-width: 576px) {
  .amino__images {
    padding: 2rem 0 1rem;
  }
}
.amino__images .images__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1d1d1b;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.amino__images .images__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__images .images__title {
    font-size: 1.75rem;
  }
}
.amino__images .images__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1d1d1b;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.amino__images .images__text b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__images .images__text {
    font-size: 1.2rem;
  }
}
.amino__images .images__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.amino__images .images__row .image__wrapper {
  width: 45%;
}
@media (max-width: 768px) {
  .amino__images .images__row .image__wrapper {
    width: 100%;
  }
}
.amino__images .images__row img {
  width: 100%;
  height: auto;
}
.amino__images .images__legend {
  margin-left: 9rem;
}
@media (max-width: 768px) {
  .amino__images .images__legend {
    margin: 0 auto;
  }
}
.amino__images .images__legend img {
  display: block;
  height: 1.75rem;
  width: auto;
}
@media (max-width: 768px) {
  .amino__images .images__legend img {
    width: 100%;
    height: auto;
  }
}

.amino__aminotabs {
  background-color: #46ac33;
  padding: 3.5rem 0;
  position: relative;
  color: #fff;
}
.amino__aminotabs .aminotabs-arrow {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
}
@media (max-width: 768px) {
  .amino__aminotabs .aminotabs-arrow {
    display: none;
  }
}
.amino__aminotabs .aminotabs-arrow.left {
  left: 0;
}
.amino__aminotabs .aminotabs-arrow.right {
  right: 0;
}
.amino__aminotabs .aminotabs__wrapper {
  max-width: 70%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 576px) {
  .amino__aminotabs .aminotabs__wrapper {
    max-width: 100%;
  }
}
.amino__aminotabs .accordion__items {
  margin-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .amino__aminotabs .accordion__items {
    margin: 0;
  }
}
.amino__aminotabs .accordion__item {
  width: 45%;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .amino__aminotabs .accordion__item {
    width: 100%;
    margin: 1rem 0;
  }
}
.amino__aminotabs .accordion {
  color: #fff;
  cursor: pointer;
  padding: 1rem 0.5rem;
  width: 100%;
  border-bottom: 2px solid #fff;
  font-weight: 600;
  text-align: left;
  font-size: 20px;
  transition: 0.4s;
  position: relative;
}
@media (max-width: 768px) {
  .amino__aminotabs .accordion {
    padding-right: 2.5rem;
  }
}
.amino__aminotabs .accordion span {
  font-size: 1rem;
  font-weight: 600;
}
.amino__aminotabs .active,
.amino__aminotabs .accordion:hover {
  background-color: #409e2f;
}
.amino__aminotabs .panel {
  padding: 0 1.1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.amino__aminotabs .panel p, .amino__aminotabs .panel li {
  margin: 1rem 0;
  color: white;
}
.amino__aminotabs .accordion:after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("images/accordion-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 1.25rem;
  margin: 0 0.5rem;
  transition: all 0.3s;
  transform-origin: center;
}
.amino__aminotabs .active:after {
  transform: rotate(-90deg);
}

.amino__awards {
  padding: 1.5rem 0 0;
}

.amino__awards-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.amino__awards-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
}
.amino__awards-title b {
  font-weight: 700;
  color: #71BF44;
}
@media (max-width: 768px) {
  .amino__awards-title {
    font-size: 1.75rem;
  }
}

.amino__awards-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.amino__awards-box {
  width: 38%;
  margin: 1rem 0;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .amino__awards-box {
    width: 90%;
    margin: 1rem auto;
  }
}
.amino__awards-box:nth-child(2) {
  width: 37%;
}
@media (max-width: 768px) {
  .amino__awards-box:nth-child(2) {
    width: 90%;
    margin: 1rem auto;
  }
}
.amino__awards-box img {
  display: block;
  height: auto;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.amino__charts {
  padding: 3.5rem 0;
}
@media (max-width: 576px) {
  .amino__charts {
    padding: 2rem 0 0;
  }
}
.amino__charts .charts__wrapper {
  margin: 2rem 0;
}
.amino__charts .charts__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1d1d1b;
  margin: 0 auto 4rem;
}
@media (max-width: 1440px) {
  .amino__charts .charts__title {
    max-width: 800px;
  }
}
@media (max-width: 576px) {
  .amino__charts .charts__title {
    margin: 0 auto 2rem;
  }
}
.amino__charts .charts__title b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .amino__charts .charts__title {
    font-size: 1.75rem;
  }
}
.amino__charts .charts__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.amino__charts .charts__row:nth-child(1) {
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .amino__charts .charts__row:nth-child(1) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .amino__charts .charts__row {
    flex-direction: column;
  }
}
.amino__charts .charts__row .image__wrapper {
  width: 45%;
  height: auto;
}
@media (max-width: 768px) {
  .amino__charts .charts__row .image__wrapper {
    width: 100%;
    margin: 2rem auto;
  }
}
.amino__charts .charts__row .image__wrapper.three {
  width: 30%;
  height: auto;
}
@media (max-width: 768px) {
  .amino__charts .charts__row .image__wrapper.three {
    width: 100%;
    margin: 2rem auto;
  }
}
.amino__charts .charts__row .image__wrapper.three:nth-child(2) img {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .amino__charts .charts__row .image__wrapper.three:nth-child(2) img {
    margin-top: 0;
  }
}
.amino__charts .charts__row .image__title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 5rem;
}
@media (max-width: 768px) {
  .amino__charts .charts__row .image__title {
    margin-bottom: 2rem;
    min-height: unset;
  }
}
.amino__charts .charts__row .image__title span {
  font-weight: bold;
}
.amino__charts .charts__row img {
  width: 100%;
  display: block;
}
.amino__charts .charts__sub {
  font-size: 1.1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .amino__charts .charts__sub {
    margin-top: 0.5rem;
  }
}

.amino-contact {
  margin-top: 5rem;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .amino-contact {
    margin: 2.5rem 0 0;
  }
}
.amino-contact .contact-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
}
.amino-contact .contact-title b {
  font-weight: 700;
  color: #71bf44;
}
@media (max-width: 768px) {
  .amino-contact .contact-title {
    font-size: 1.75rem;
  }
}
.amino-contact p {
  margin: 0;
}

@media (max-width: 768px) {
  .amino-contact {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}
.amino-contact .amino__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
  color: #d9a41e;
  margin: 0 auto 3rem;
  text-align: center;
}

.amino-contact .amino__subtitle {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: #d9a41e;
}

.amino-contact .section__title {
  margin: 4rem 0 2rem 0;
}

.amino-contact .accordion__items {
  margin-left: 1rem;
  border-bottom: 1px solid #b3b2b2;
}

@media (max-width: 768px) {
  .amino-contact .accordion__items {
    margin: 0;
  }
}
.amino-contact .accordion {
  color: #1d1d1b;
  cursor: pointer;
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  transition: 0.4s;
  position: relative;
  border: 1px solid #b3b2b2;
  border-bottom: none;
  font-weight: 300;
}

@media (max-width: 768px) {
  .amino-contact .accordion {
    padding-right: 2.5rem;
    font-size: 1.1rem;
  }
}
.amino-contact .accordion span {
  font-weight: 600;
}

.amino-contact .accordion1 {
  background-color: #d9a41e;
  color: #fff;
}

.amino-contact .accordion2 {
  background-color: #71bf44;
  color: #fff;
}

.amino-contact .accordion3 {
  background-color: #706f6f;
  color: #fff;
}

.amino-contact .accordion4 {
  color: #d9a41e;
  border: none;
  cursor: auto;
  margin: 2rem 0 1rem;
  padding: 0.5rem 1rem 0.5rem 0;
  width: 100%;
  font-weight: 600;
  text-align: left;
  font-size: 1.3rem;
  transition: 0.4s;
  position: relative;
  border-bottom: none;
  font-weight: 300;
}

@media (max-width: 768px) {
  .amino-contact .accordion4 {
    padding-right: 2.5rem;
    font-size: 1.1rem;
  }
}
.amino-contact .accordion4 span {
  font-weight: 600;
}

.amino-contact .accordion:after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 30%;
  margin: 0 0.5rem;
  transition: all 0.3s;
  transform-origin: center;
}

.amino-contact .active:after {
  transform: rotate(-90deg);
}

.amino-contact .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #706f6f;
  font-weight: 300;
}

.amino-contact .panel .panel__title {
  display: block;
  width: 25%;
  padding: 1rem;
  font-size: 1rem;
  background-color: #ececec;
}

@media (max-width: 768px) {
  .amino-contact .panel .panel__title {
    width: 100%;
    font-size: 0.9rem;
  }
}
.amino-contact .panel .panel__title span {
  font-weight: 600;
}

.amino-contact .panel .panel__text {
  width: 75%;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .amino-contact .panel .panel__text {
    width: 100%;
    font-size: 0.8em;
  }
}
.amino-contact .panel .panel__text span {
  font-weight: 600;
}

.amino-contact .panel__row {
  max-height: -moz-max-content;
  max-height: max-content;
  display: flex;
  border: 1px solid #b3b2b2;
  border-bottom: none;
}

@media (max-width: 768px) {
  .amino-contact .panel__row {
    flex-direction: column;
  }
}
.amino-contact .panel__row-bottom {
  border-bottom: 1px solid #b3b2b2;
}

.amino__footer {
  margin: 5rem 0 1rem;
}
@media (max-width: 768px) {
  .amino__footer {
    margin: 3rem 0 1rem;
  }
}
.amino__footer .footer__img {
  display: block;
  width: 10rem;
  height: auto;
  margin: 1rem auto;
}
.amino__footer .footer__text {
  color: #808080;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.euro-footer-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.euro-footer-image {
  width: 100%;
  height: auto;
}

.euro-footer-container p {
  text-align: center;
}

.video__poster {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
}

.video__poster:hover .play {
  background: #71bf44;
  cursor: pointer;
  opacity: 1;
}

.video__poster:hover .play span {
  border-left: 30px solid white;
}

@media (max-width: 768px) {
  .video__poster:hover .play span {
    border-left: 15px solid white;
  }
}
.video__poster .poster {
  display: block;
  width: 100%;
  cursor: pointer;
}

.video__poster .play {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15%;
  margin: auto;
  width: 100px;
  height: 100px;
  border: solid 3px #71bf44;
  border-radius: 100%;
  box-shadow: 0 0 0 0 black;
  transition: background 0.25s ease-in-out;
  animation: pulse 2s infinite;
  transform: scale(1) translateZ(20px);
}

@media (max-width: 768px) {
  .video__poster .play {
    border: solid 3px #71bf44;
    width: 50px;
    height: 50px;
  }
}
.video__poster .play span {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 30px solid #71bf44;
  border-bottom: 20px solid transparent;
  position: absolute;
  top: 30%;
  left: 38%;
}

@media (max-width: 768px) {
  .video__poster .play span {
    border-top: 10px solid transparent;
    border-left: 15px solid #71bf44;
    border-bottom: 10px solid transparent;
  }
}
.video__modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ededed;
  z-index: 1;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.35s ease-in-out forwards;
}

.video__modal.active {
  display: flex;
}

.video__close {
  cursor: pointer;
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 1.5rem;
  height: auto;
}

.video__wrapper {
  width: 60%;
}

@media (max-width: 576px) {
  .video__wrapper {
    width: 100%;
  }
}
.video__player {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(23, 205, 41, 0.275);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 112, 131, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 112, 131, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button {
  display: table;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  text-align: center;
  padding: 0.75rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 1rem auto;
  transition: background-color 0.3s;
}
@media (max-width: 576px) {
  .button {
    padding: 1.1rem;
    margin: 2rem auto;
    width: 100%;
  }
}
.button.blue {
  background-color: #114179;
  color: white;
}
.button.brown {
  background-color: #6d3629;
  color: white;
}
.button.pink {
  background-color: #8d1658;
  color: white;
}
.button.green {
  background-color: #007279;
  color: white;
}

sup,
sub {
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.4em;
}

sub {
  top: 0.4em;
}/*# sourceMappingURL=style.css.map */