@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap);
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ========================================
   TIPOGRAFÍAS
   ========================================

   Uso: @include type('nombre', sizes, line-height, letter-spacing)

   Parámetros:
   - sizes: 3 valores separados por espacios (desktop, tablet, mobile)
   - Ejemplos:
     '24px 18px 14px'  → Desktop 24px, Tablet 18px, Mobile 14px

   Acceso en HTML: <element class="type-nombre">

   PLANTILLA PARA AGREGAR NUEVAS:
   @include type('mi-tipo', 20px 16px 12px, 1.5, 0.5px);
   ======================================== */
.type-S {
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 36px;
}
@media (max-width: 767.98px) {
  .type-S {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .type-S {
    font-size: 24px;
  }
}

.type-XS {
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .type-XS {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .type-XS {
    font-size: 20px;
  }
}

.type-XL {
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .type-XL {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .type-XL {
    font-size: 20px;
  }
}

.type-L {
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .type-L {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .type-L {
    font-size: 16px;
  }
}

.type-M {
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .type-M {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .type-M {
    font-size: 14px;
  }
}

.type-Subtitles {
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .type-Subtitles {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .type-Subtitles {
    font-size: 20px;
  }
}

.type-inter {
  font-family: "Inter Tight", sans-serif;
}

.type-dm {
  font-family: "DM Sans", sans-serif !important;
}

* {
  padding: 0;
  margin: 0;
}

*, div {
  box-sizing: border-box;
}

html {
  /* 1rem = 10px */
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  background-color: #F2F0F0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.container {
  max-width: 164rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container__bx {
  padding: 0 2rem;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .container__bx {
    flex-flow: column;
  }
}

button {
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

ul, ol {
  padding-left: 2rem;
}

ul li {
  list-style: disc;
}

ol li {
  list-style: decimal;
}

strong, b {
  font-weight: 700;
}

em {
  font-style: italic;
}

a {
  color: #3C3C3B;
  text-decoration: none;
}

code {
  background-color: #fff;
  padding: 2rem;
  font-family: monospace;
  border-radius: 1rem;
  margin-bottom: 2rem;
  display: block;
}

mark {
  background-color: #000;
  color: #fff;
}

pre {
  background-color: #fff;
  padding: 2rem;
  overflow-x: auto;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

blockquote {
  color: #000;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 4rem;
}
@media (width <= 767.98px) {
  blockquote {
    padding: 2rem;
  }
}

h1 {
  font-size: 4.2rem;
  line-height: 5rem;
  margin-bottom: 5.5rem;
}
@media (width <= 767.98px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

h2 {
  font-size: 3.6rem;
  line-height: 4.6rem;
  margin-bottom: 4.6rem;
}

h3 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 4.2rem;
}

h4 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  margin-bottom: 3.8rem;
}

h5 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 3.4rem;
}

h6 {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 3rem;
}

.mdl-content {
  padding: 8rem 0;
}
@media (width <= 767.98px) {
  .mdl-content {
    padding: 5rem 0;
  }
}
.mdl-content a {
  color: #B31983;
}
.mdl-content a.hover {
  opacity: 0.6;
}
.mdl-content h1 {
  text-align: center;
  color: #B31983;
}
.mdl-content h2 {
  margin-bottom: 2rem;
}
.mdl-content h1, .mdl-content h2, .mdl-content h3, .mdl-content h4, .mdl-content h5, .mdl-content h6 {
  color: #B31983;
}
.mdl-content ul, .mdl-content ol {
  margin-bottom: 1rem;
}
.mdl-content ul li, .mdl-content ol li {
  margin-bottom: 1rem;
}

.normal {
  align-items: center;
  height: 30rem;
}

.normal::after {
  content: "";
  background-color: #000;
  opacity: 0.34;
  z-index: 8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mdl-hero-sm {
  height: 60rem;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  background-position: left;
  background-size: cover;
}
@media (width <= 767.98px) {
  .mdl-hero-sm {
    height: 60rem;
  }
}
.mdl-hero-sm::after {
  content: "";
  z-index: 8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mdl-hero-sm .container {
  position: relative;
  z-index: 9;
}
.mdl-hero-sm h1 {
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  line-height: 5rem;
  text-align: center;
  margin: 0;
}
@media (width <= 767.98px) {
  .mdl-hero-sm h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
.mdl-hero-sm a {
  color: white;
}
.mdl-hero-sm .header-left {
  position: relative;
  background-color: #fff;
  max-width: 50%;
  margin-left: calc(-50vw + 50%);
  padding: 6rem;
  justify-items: left;
}
@media (width <= 1399.98px) {
  .mdl-hero-sm .header-left {
    max-width: 45%;
    padding-left: 4rem;
  }
}
@media (width <= 991.98px) {
  .mdl-hero-sm .header-left {
    max-width: 80%;
  }
}
@media (width <= 767.98px) {
  .mdl-hero-sm .header-left {
    max-width: 95%;
  }
}
@media (width <= 575.98px) {
  .mdl-hero-sm .header-left {
    max-width: 100%;
    padding-left: 2rem;
  }
}
.mdl-hero-sm .header-left .header-bt {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99rem;
  max-width: 150px;
  font-size: 1.6rem;
  line-height: 3.3srem;
  background-color: #B31983;
  margin: 2rem 2rem 3rem;
  padding: 6px 3rem 6px 3rem;
  white-space: nowrap;
}
.mdl-hero-sm .header-left .header-hero-txt {
  text-align: left;
  color: #000;
  margin-left: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media (width <= 767.98px) {
  .mdl-hero-sm .header-left .header-hero-txt {
    margin-left: 1rem;
  }
}
.mdl-hero-sm .header-left .header-hero-txt h2 {
  max-width: 70%;
  color: #B31983;
  font-size: 5.2rem;
  margin-bottom: 1rem;
}
@media (width <= 767.98px) {
  .mdl-hero-sm .header-left .header-hero-txt h2 {
    font-size: 4.2rem;
  }
}
.mdl-hero-sm .header-left .header-hero-txt p {
  color: #272727;
  width: 100%;
  text-align: justify;
  line-height: 2.5rem;
  font-size: 2rem;
}
@media (width <= 767.98px) {
  .mdl-hero-sm .header-left .header-hero-txt p {
    line-height: 2.2rem;
    font-size: 1.8rem;
  }
}

.mdl-newsletter {
  padding: 10rem 0 15rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media (width <= 767.98px) {
  .mdl-newsletter {
    padding: 6rem 0;
  }
}
.mdl-newsletter .container {
  max-width: 67rem;
}
.mdl-newsletter .container__bx {
  align-items: center;
}
.mdl-newsletter h2 {
  color: #fff;
  font-weight: 400;
  font-size: 45px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 8.5rem;
}
.mdl-newsletter form {
  width: 100%;
}
.mdl-newsletter form .form-control {
  max-width: 57.6rem;
}
.mdl-newsletter form .form-group {
  margin-bottom: 4rem;
}
.mdl-newsletter form textarea {
  width: 100%;
  background-color: transparent;
  display: flex;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 3px solid #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 3.9rem;
  text-align: center;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2rem;
}
.mdl-newsletter form textarea::-moz-placeholder {
  color: #fff;
}
.mdl-newsletter form textarea::placeholder {
  color: #fff;
}
.mdl-newsletter form .form-check {
  font-weight: 700;
  font-size: 18px;
  line-height: 2.2rem;
  text-align: left;
  color: #fff;
}
.mdl-newsletter form .form-check a {
  color: #fff;
  text-decoration: underline;
}

.form-control {
  display: flex;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 3px solid #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 3.9rem;
  text-align: center;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2rem;
}
.form-control::-moz-placeholder {
  color: #fff;
}
.form-control::placeholder {
  color: #fff;
}

.js-feedback {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 1rem;
}

.form-group--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 767.98px) {
  .form-group--inline {
    flex-flow: column;
    gap: 3rem;
  }
}

.mdl-video {
  height: 80rem;
  position: relative;
  overflow: hidden;
}
@media (width <= 991.98px) {
  .mdl-video {
    height: 54rem;
  }
}
.mdl-video video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.mdl-video__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 0 2rem;
}
.mdl-video__txt h1 {
  color: #fff;
  font-weight: 400;
  font-size: 6.5rem;
  line-height: 7.5rem;
  text-align: center;
  color: #fff;
  max-width: 129.4rem;
  margin: 0 auto;
}
@media (width <= 767.98px) {
  .mdl-video__txt h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
}
.mdl-video__bg {
  background: #000;
  opacity: 0.26;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.mdl-video__actions {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  z-index: 15;
}
@media (width <= 767.98px) {
  .mdl-video__actions {
    bottom: 2rem;
  }
}
.mdl-video__actions button {
  width: 8.5rem;
  height: 8.5rem;
  position: relative;
}
@media (width <= 767.98px) {
  .mdl-video__actions button {
    width: 5rem;
    height: 5rem;
  }
}
.mdl-video__actions button img {
  max-width: 8.5rem;
  position: relative;
  z-index: 9;
}
@media (width <= 767.98px) {
  .mdl-video__actions button img {
    max-width: 5rem;
  }
}
.mdl-video__actions button::after {
  content: "";
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width <= 767.98px) {
  .mdl-video__actions button::after {
    width: 5rem;
    height: 5rem;
  }
}
.mdl-video--services h1 {
  text-align: left;
  max-width: 144rem;
  width: 100%;
  color: #B31983;
  font-weight: 700;
}
.mdl-video--services h1 strong {
  color: #fff;
}

.mdl-areas {
  padding: 8rem 0;
  background-color: #E9E8E8;
}
.mdl-areas h2 {
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: center;
  color: #4A4A49;
  max-width: 76rem;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (width <= 767.98px) {
  .mdl-areas h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-areas__bx {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (width <= 767.98px) {
  .mdl-areas__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-areas__it {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}
@media (width <= 1199.98px) {
  .mdl-areas__it img {
    height: 25rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.mdl-areas__it h3 {
  font-weight: 700;
  font-size: 5rem;
  line-height: 5rem;
  color: #B31983;
  position: absolute;
  top: 2.7rem;
  left: 2.7rem;
}
.mdl-areas__it .btn {
  position: absolute;
  bottom: 2.7rem;
  right: 2.7rem;
}

.mdl-home-distribution {
  padding: 8rem 0;
}
.mdl-home-distribution__intro {
  text-align: center;
  padding-bottom: 8rem;
}
.mdl-home-distribution__intro h2 {
  font-weight: bold;
  font-size: 45px;
  line-height: 38px;
  text-align: center;
  color: #4A4A49;
  margin-bottom: 1rem;
}
.mdl-home-distribution__intro p {
  font-size: 2.8rem;
  line-height: 3.8rem;
  color: #4A4A49;
}
.mdl-home-distribution__it {
  margin-bottom: 1.4rem;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 62.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}
.mdl-home-distribution__it h2 {
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 5.5rem;
}
.mdl-home-distribution__it p {
  text-align: center;
  font-size: 2.8rem;
  line-height: 3.3rem;
  margin: 0 auto;
  margin-bottom: 5rem;
  max-width: 96rem;
}
.mdl-home-distribution__it img {
  margin-bottom: 5rem;
}
.mdl-home-distribution__it.fedefarma img {
  max-width: 30rem;
}
.mdl-home-distribution__it.fedefarma p {
  color: #fff;
  max-width: 96rem;
}
.mdl-home-distribution__it.actibios img {
  max-width: 25rem;
}
.mdl-home-distribution__it.actibios h2 {
  color: #202d5b;
}
.mdl-home-distribution__it.actibios p {
  color: #fff;
}
.mdl-home-distribution__it.actibios .btn {
  background: linear-gradient(90deg, #212c5b 0%, #3bc06f 100%);
  color: #fff;
}
.mdl-home-distribution__it.acofarma img {
  max-width: 35rem;
}
.mdl-home-distribution__it.acofarma h2 {
  color: #fff;
}
.mdl-home-distribution__it.acofarma p {
  color: #fff;
}
.mdl-home-distribution__it.acofarma .btn {
  background: linear-gradient(90deg, #6a2c3e 0%, #d50032 100%);
  color: #fff;
}

.mdl-home-training {
  padding: 10rem 0;
  margin-bottom: 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  height: 74.5rem;
}
.mdl-home-training h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 43px;
  color: #4A4A49;
  margin-bottom: 0.86rem;
  text-align: center;
}
.mdl-home-training p {
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 3.2rem;
  text-align: center;
  color: #4A4A49;
}
.mdl-home-training img {
  max-width: 55rem;
  margin: 0 auto;
  margin-bottom: 3rem;
  margin-top: 8rem;
}
.mdl-home-training h3 {
  font-weight: bold;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: #e7004c;
  margin-bottom: 3rem;
}
.mdl-home-training .btn {
  color: #fff;
  background: #e7004c;
  margin: 0 auto;
}

.mdl-home-solutions {
  padding: 8rem 0;
  background-image: url("../imgs/home/bg-solutions.jpg");
}
.mdl-home-solutions__intro {
  margin-bottom: 8rem;
  text-align: center;
}
.mdl-home-solutions__intro h2 {
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -0.02em;
  line-height: 40px;
  color: #4A4A49;
  margin: 0;
}
.mdl-home-solutions__intro p {
  font-size: 2.8rem;
  line-height: 4rem;
  color: #4A4A49;
  max-width: 43.6rem;
  margin: 0 auto;
}
.mdl-home-solutions__bx {
  display: flex;
  flex-flow: wrap;
  gap: 2.9rem 1.6rem;
}
.mdl-home-solutions__it {
  width: calc(33.3334% - 1.1rem);
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2rem;
  display: flex;
  align-items: flex-end;
}
@media (width <= 767.98px) {
  .mdl-home-solutions__it {
    width: 100%;
  }
}
.mdl-home-solutions__it img {
  position: absolute;
  height: 100%;
  z-index: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mdl-home-solutions__it--dob {
  width: calc(50% - 0.8rem);
  aspect-ratio: 1.5;
}
@media (width <= 767.98px) {
  .mdl-home-solutions__it--dob {
    width: 100%;
  }
}
.mdl-home-solutions__txt {
  position: relative;
  z-index: 9;
  padding: 2rem 2rem 4rem 2rem;
  color: #fff;
  width: 100%;
}
.mdl-home-solutions__txt h3 {
  color: #fff;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 47px;
  margin-bottom: 1.7rem;
}
.mdl-home-solutions__txt p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}

.mdl-home-laboratory {
  padding: 8rem 0;
}
.mdl-home-laboratory__intro {
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.mdl-home-laboratory__intro h2 {
  font-size: 2.8rem;
  line-height: 4rem;
  color: #4A4A49;
  font-weight: 300;
  max-width: 54rem;
  margin-bottom: 5rem;
}
.mdl-home-laboratory__intro h2 strong {
  font-size: 4.5rem;
  font-weight: 700;
}
.mdl-home-laboratory__intro img {
  max-width: 38.3rem;
  margin-bottom: 5rem;
}
.mdl-home-laboratory__intro p {
  max-width: 135.3rem;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  color: #4A4A49;
}
.mdl-home-laboratory__bx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.4rem;
}
@media (width <= 767.98px) {
  .mdl-home-laboratory__bx {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 767.98px) {
  .mdl-home-laboratory__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-home-laboratory__it img {
  border-radius: 2rem;
  margin-bottom: 2.6rem;
}
.mdl-home-laboratory__it p {
  font-weight: 300;
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 29px;
  text-align: left;
  color: #4A4A49;
  margin-bottom: 8.6rem;
}
.mdl-home-laboratory__it .btn {
  margin: 0 auto;
}

.mdl-advice {
  padding-top: 8rem;
}
.mdl-advice__txt {
  max-width: 108.8rem;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  color: #4A4A49;
  margin: 0 auto;
}
.mdl-advice__bx .mdl-advice__it:nth-child(2n) {
  background-color: #E9E8E8;
}
.mdl-advice__bx .mdl-advice__it:nth-child(2n) .container__bx {
  flex-flow: row-reverse;
}
@media (width <= 767.98px) {
  .mdl-advice__bx .mdl-advice__it:nth-child(2n) .container__bx {
    flex-flow: column;
  }
}
.mdl-advice__it {
  padding: 6rem 0;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: left;
  color: #4A4A49;
}
.mdl-advice__it .photo {
  border-radius: 3.8rem;
}
.mdl-advice__it .logo {
  max-width: 24rem;
  margin-bottom: 4rem;
}
.mdl-advice__it .btn {
  margin-top: 4rem;
}
.mdl-advice__it .container__bx {
  display: flex;
  flex-flow: row;
}
@media (width <= 767.98px) {
  .mdl-advice__it .container__bx {
    flex-flow: column;
  }
}
.mdl-advice__cl {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-advice__cl {
    width: 100%;
  }
}
.mdl-advice__cl--rg {
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  flex-flow: column;
}
@media (width <= 767.98px) {
  .mdl-advice__cl--rg {
    padding: 4rem 0;
  }
}

.fancy-bx {
  position: relative;
}
.fancy-bx a {
  background-image: url("../imgs/icons/icon-play.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11.5rem;
}

#contact_form .form-check .form-check-input {
  width: 30px;
  height: 30px;
}
#contact_form .form-check .form-check-label {
  margin-left: 10px;
  font-size: 23px;
  padding-bottom: 5px;
}
#contact_form .form-group .form-control, #contact_form .form-group textarea {
  max-width: 100% !important;
  border-bottom: 3px solid white !important;
  outline: none !important;
  box-shadow: none !important;
}
#contact_form .form-group .form-control:focus, #contact_form .form-group .form-control:active, #contact_form .form-group .form-control:hover, #contact_form .form-group .form-control:focus-within, #contact_form .form-group textarea:focus, #contact_form .form-group textarea:active, #contact_form .form-group textarea:hover, #contact_form .form-group textarea:focus-within {
  background-color: transparent !important;
  border-color: #ccc !important;
  outline: none !important;
  box-shadow: none !important;
}
#contact_form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  /* Style for the dropdown options container */
  /* Style for individual options */
  /* Firefox fallback */
}
#contact_form .form-group select::-webkit-scrollbar {
  width: 8px;
}
#contact_form .form-group select::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.3);
  border-radius: 0 15px 15px 0;
}
#contact_form .form-group select::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.5);
  border-radius: 15px;
}
#contact_form .form-group select option {
  background-color: rgba(128, 128, 128, 0.7);
  color: white;
  font-size: 0.9em;
  padding: 12px 20px;
  margin: 2px 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#contact_form .form-group select option:hover, #contact_form .form-group select option:focus {
  background-color: rgba(100, 100, 100, 0.7);
}
@-moz-document url-prefix() {
  #contact_form .form-group select option {
    background-color: rgba(128, 128, 128, 0.9);
  }
}
#contact_form .form-group input[type=text],
#contact_form .form-group input[type=email],
#contact_form .form-group textarea {
  padding: 12px 20px;
  transition: border-color 0.3s ease;
}
#contact_form .form-group input[type=text]:focus,
#contact_form .form-group input[type=email]:focus,
#contact_form .form-group textarea:focus {
  border-color: #aaa !important;
}
#contact_form .form-group .form-check-input:focus {
  box-shadow: none !important;
  border-color: #ccc !important;
}

.header {
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #F5F5F7;
  z-index: 999;
}
@media (width <= 767.98px) {
  .header {
    height: 8rem;
  }
}
.header .container__bx {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 1199.98px) {
  .header .container__bx {
    align-items: flex-start;
  }
}
.header__col {
  display: flex;
  flex-flow: row;
  padding-left: 1.8rem;
}
@media (width <= 1199.98px) {
  .header__menu {
    display: none;
  }
}
.header .logo {
  max-width: 22.2rem;
}
@media (width <= 1199.98px) {
  .header .logo {
    padding: 2rem 0;
  }
}
@media (width <= 767.98px) {
  .header .logo {
    max-width: 16rem;
  }
}
.header__it--sup {
  background-color: #fff;
  border-radius: 0 0 1.6rem 1.6rem;
  padding: 3.7rem 5rem 2.2rem;
}
.header__it--inf {
  padding: 3.7rem 5rem 2.2rem;
  font-weight: 700;
}
.header__info {
  margin-left: 1.8rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media (width <= 1199.98px) {
  .header__info {
    flex-flow: row;
    margin: 0;
  }
}
@media (width <= 1199.98px) {
  .header__info .lang-sel {
    display: none;
  }
}

.btn-cloud {
  width: 13.5rem;
  height: 8.2rem;
  border-radius: 0 0 1.5rem 1.5rem;
  background: #B31983;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 13px;
  text-align: left;
  color: #fff;
  background-image: url("../imgs/icons/icon-cloud.png");
  background-size: 3.6rem;
  background-repeat: no-repeat;
  background-position: center bottom 37px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  box-sizing: border-box;
}
@media (width <= 1199.98px) {
  .btn-cloud {
    width: 10rem;
    height: 6rem;
    background-size: 2rem;
  }
}

.menu ul {
  display: flex;
  flex-flow: row;
  padding: 0;
  justify-content: flex-end;
  gap: 4rem;
  text-align: center;
}
@media (width <= 767.98px) {
  .menu ul {
    gap: 2rem;
  }
}
.menu ul li {
  padding: 0 1rem;
  position: relative;
  list-style: none;
}
.menu ul li.has-child > a:after {
  content: "";
  background-image: url("../imgs/chevron-down-solid.svg");
  background-repeat: no-repeat;
  background-size: 1.4rem;
  background-position: right center;
  display: inline-block;
  width: 20px;
  height: 11px;
}
.menu ul li.has-child:hover > .submenu {
  display: flex;
}
> a .menu ul li.has-child:hover:after {
  transform: rotate(180deg);
  transition: 0.4s ease;
}
.menu ul li.selected a {
  font-weight: 700;
  color: #B31983;
}
.menu ul li a {
  text-decoration: none;
  display: block;
  color: #4A4A49;
}
.menu ul li ul.submenu {
  flex-flow: column;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  padding: 0 1rem;
  width: 100%;
  transform: translateX(-2rem);
  padding-top: 4rem;
  z-index: 9;
  padding-bottom: 1rem;
  gap: 1rem;
  width: 32rem;
}
.menu ul li ul.submenu li {
  padding: 0 2rem 1rem;
  width: 100%;
  display: block;
  text-align: left;
}
.menu ul li ul.submenu li a {
  font-weight: 400;
  color: #4A4A49;
}
.menu ul li ul.submenu li.selected > a {
  font-weight: 700;
  color: #B31983;
}
.menu ul li ul.submenu li.has-child > a:after {
  content: "";
  background-image: url("../imgs/chevron-right-solid.svg");
  background-repeat: no-repeat;
  background-size: 0.8rem;
  background-position: right center;
  display: inline-block;
  width: 20px;
  height: 11px;
}

.m-hamb {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 99;
  position: fixed;
  background-color: #F5F5F7;
  top: 0;
  padding-top: 8.8rem;
  flex-flow: row wrap;
}
@media (max-width: 1199.98px) {
  .m-hamb.js-open {
    display: flex;
  }
}
.m-hamb .header__it {
  width: 50%;
  padding: 4rem 2rem;
  height: calc(100% - 8rem);
}
.m-hamb .header__it--sup {
  border-radius: 0 1.6rem 1.6rem 0;
}
.m-hamb .menu {
  text-align: left;
}
.m-hamb .menu ul {
  flex-flow: column;
}
.m-hamb .menu ul li {
  padding: 0;
}
.m-hamb .menu ul li a {
  text-align: left;
}
.m-hamb .menu ul li ul.submenu {
  position: relative;
  left: auto;
  top: auto;
  padding: 1rem 0 0 2rem;
  width: auto;
}
.m-hamb .menu ul li ul.submenu li ul.submenu {
  position: relative;
  left: auto;
  top: auto;
}

.lang-sel {
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  color: #B31983;
  padding-top: 3.5rem;
}
@media (width <= 1199.98px) {
  .lang-sel {
    padding-top: 0;
    margin-left: 1.8rem;
    height: 8rem;
  }
}
.lang-sel img {
  max-width: 1.8rem;
  margin-right: 1rem;
}
.lang-sel__current {
  padding-right: 1rem;
  pointer-events: none;
  font-weight: 700;
}
.lang-sel__item {
  color: #B31983;
}

.m-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: 1.8rem;
}
@media (max-width: 1199.98px) {
  .m-toggle {
    display: block;
  }
}
.m-toggle span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: #000;
  border-radius: 0;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.m-toggle span:nth-child(1) {
  top: 0;
}
.m-toggle span:nth-child(2) {
  top: 1rem;
}
.m-toggle span:nth-child(3) {
  top: 1rem;
}
.m-toggle span:nth-child(4) {
  top: 2rem;
}
.m-toggle.js-open span:nth-child(1) {
  top: 1rem;
  width: 0%;
  left: 50%;
}
.m-toggle.js-open span:nth-child(2) {
  transform: rotate(45deg);
}
.m-toggle.js-open span:nth-child(3) {
  transform: rotate(-45deg);
}
.m-toggle.js-open span:nth-child(4) {
  top: 1rem;
  width: 0%;
  left: 50%;
}

.footer {
  padding: 7rem 0 0 0;
  background-color: #3C3935;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.footer .logo {
  max-width: 22rem;
  margin-bottom: 2rem;
}
.footer .container__bx {
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4rem;
}
@media (width <= 767.98px) {
  .footer .container__bx {
    flex-flow: column;
  }
}
.footer__legal {
  background-color: #B12886;
  padding: 1.2rem 2rem;
  font-family: "Inter Tight", sans-serif;
}
.footer__legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 767.98px) {
  .footer__legal-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer__legal-copy {
  font-size: 1.4rem;
  color: #fff;
  margin-right: 10px;
}
@media (width <= 575.98px) {
  .footer__legal-copy {
    font-size: 1.2rem;
  }
}
.footer__legal-links {
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__legal-links li {
  margin: 0;
  list-style: none;
}
@media (width <= 575.98px) {
  .footer__legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.footer__legal-links li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 5%;
}
@media (width <= 575.98px) {
  .footer__legal-links li a {
    font-size: 11px;
  }
}
.footer__legal-links li a:hover {
  text-decoration: underline;
}
@media (width <= 1199.98px) {
  .footer__it {
    width: calc(30% - 2rem);
  }
}
@media (width <= 991.98px) {
  .footer__it {
    width: calc(50% - 2rem);
  }
}
@media (width <= 767.98px) {
  .footer__it {
    width: 100%;
  }
}
.footer__it h3 {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}
.footer__it ul {
  padding: 0;
}
.footer__it ul li {
  list-style: none;
  margin-bottom: 1.5rem;
}
.footer__it ul li a {
  color: #fff;
}

.btn {
  border: 0;
  width: 100%;
  max-width: 23.2rem;
  height: 5.8rem;
  border-radius: 2.9rem;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 2.6rem;
  text-align: center;
  color: #B31983;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn--color {
  background-color: #B31983;
  color: #fff;
}
.btn--grey {
  background: #4A4A49;
  color: #fff;
}

.btn-info {
  max-width: 5.4rem;
  background-image: url("../imgs/icons/plus.png");
  height: 5.4rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 5.4rem;
}
.btn-info.js-show {
  max-width: 5.4rem;
  background-image: url("../imgs/icons/minus.png");
}

.btn-fede {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
  padding: 1.2rem 3.2rem;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #B12886;
  color: #fff;
  border-radius: 32px;
}
.btn-fede:hover {
  opacity: 0.9;
}

.mdl-distribution--intro {
  background-color: #F2F0F0;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.mdl-distribution--intro .dist-tit h1, .mdl-distribution--intro .dist-tit h2, .mdl-distribution--intro .dist-tit h3, .mdl-distribution--intro .dist-tit h4, .mdl-distribution--intro .dist-tit h5, .mdl-distribution--intro .dist-tit h6 {
  color: #B31983;
  font-weight: 300;
}
.mdl-distribution .dist-tit {
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 300;
  color: #4A4A49;
}
.mdl-distribution .dist-txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #4A4A49;
}
.mdl-distribution .video-bx {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3.7rem;
  width: 100%;
  height: 100%;
}
@media (width <= 767.98px) {
  .mdl-distribution .video-bx {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-top: 2rem;
  }
}
.mdl-distribution .video-bx--hg {
  min-height: 90rem;
}
@media (width <= 767.98px) {
  .mdl-distribution .video-bx--hg {
    min-height: 60rem;
  }
}
.mdl-distribution .video-bx .video-ic {
  width: 11.5rem;
}
@media (width <= 767.98px) {
  .mdl-distribution .video-bx .video-ic {
    width: 9.5rem;
  }
}
.mdl-distribution .container__bx {
  display: flex;
  flex-flow: row wrap;
}
.mdl-distribution .dist-imgbx {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3.7rem;
  height: 100%;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-imgbx {
    padding-top: 56%;
  }
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-imgbx--nobg {
    padding-top: 0;
    margin-bottom: 5rem;
  }
}
.mdl-distribution .dist-cl {
  margin-bottom: 1rem;
}
.mdl-distribution .dist-cl--50 {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-cl--50 {
    width: 100%;
  }
}
.mdl-distribution .dist-cl--100 {
  width: 100%;
}
.mdl-distribution .dist-cl--pd {
  padding: 5rem 14rem;
}
@media (width <= 1399.98px) {
  .mdl-distribution .dist-cl--pd {
    padding: 5rem;
  }
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-cl--pd {
    padding: 0;
  }
}
.mdl-distribution .dist-cl--ct {
  text-align: center;
}
.mdl-distribution .dist-cl--int {
  padding: 15rem 6rem 15rem 0;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-cl--int {
    padding: 5rem 0 5rem 0;
  }
}
.mdl-distribution--cnt {
  background-color: #E9E8E8;
}
@media (width <= 767.98px) {
  .mdl-distribution--cnt .dist-cl--pd {
    padding: 0;
    order: 2;
  }
}
.mdl-distribution .dist-logo {
  margin-bottom: 6rem;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-logo {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.mdl-distribution .dist-bt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  border-radius: 99rem;
  font-size: 2.5rem;
  line-height: 3.3srem;
  height: 5.8rem;
}
.mdl-distribution--fedefarma {
  padding-top: 8rem;
}
.mdl-distribution--fedefarma .dist-tit {
  color: #B31983;
}
.mdl-distribution--fedefarma .dist-bt {
  background-image: linear-gradient(to right, rgba(179, 25, 131, 0.32), #B31983);
}
.mdl-distribution--actibios .dist-tit {
  color: #212C5B;
}
.mdl-distribution--actibios .dist-bt {
  background-image: linear-gradient(to right, #212C5B, #3BC06F);
}
.mdl-distribution--acofarma {
  padding-bottom: 8rem;
}
.mdl-distribution--acofarma .dist-tit {
  color: #D50032;
}
.mdl-distribution--acofarma .dist-bt {
  background-image: linear-gradient(to right, #6A2C3E, #D50032);
}
.mdl-distribution .imgbx {
  border-radius: 3.7rem;
  overflow: hidden;
}
.mdl-distribution--int {
  padding: 13rem 0 0 0;
}
@media (width <= 767.98px) {
  .mdl-distribution--int {
    padding: 5rem 0 0 0;
  }
}
.mdl-distribution--int .dist-cl--rt .dist-tit {
  color: #B31983;
}
.mdl-distribution--acofarma-int {
  padding: 7.4rem 0;
  background-color: rgba(213, 0, 50, 0.03);
}
.mdl-distribution--acofarma-int .dist-logo {
  margin: 0 auto 6.2rem;
  max-width: 51rem;
}
.mdl-distribution--acofarma-int .dist-tit {
  color: #B31983;
}
.mdl-distribution--acofarma-int .dist-bt {
  background-color: #D50032;
}
.mdl-distribution .dist-cls {
  width: 100%;
  max-width: 138rem;
  margin: 4.5rem auto 0;
  padding-bottom: 2.1rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.mdl-distribution .dist-it {
  width: 50%;
  padding: 0 0.8rem;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-it {
    width: 100%;
  }
}
.mdl-distribution .dist-it-tit {
  font-size: 4.5rem;
  line-height: 3.5rem;
  font-weight: 800;
  color: #E7004C;
}
.mdl-distribution .dist-grad {
  margin-top: 2rem;
  padding: 1.8rem;
  background-image: linear-gradient(to right, #D50032, #6B0019);
  text-align: center;
  border-radius: 3.7rem;
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #fff;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-grad {
    margin-bottom: 4rem;
  }
}
.mdl-distribution .dist-grad strong, .mdl-distribution .dist-grad b {
  font-size: 12rem;
  line-height: 12rem;
}
.mdl-distribution .dist-map {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 10rem;
  margin-bottom: 18.7rem;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-map {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.mdl-distribution .dist-map__lt {
  width: 70%;
  border-radius: 3.7rem;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-map__lt {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.mdl-distribution .dist-map__rt {
  padding: 0 7.2rem;
  width: 30%;
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #B31983;
}
@media (width <= 767.98px) {
  .mdl-distribution .dist-map__rt {
    width: 100%;
    padding: 0;
  }
}
.mdl-distribution .dist-map hr {
  content: "";
  border-bottom: 1px solid #B31983;
  margin: 5.2rem 0;
}
.mdl-distribution--not {
  padding: 7.5rem 0 0 0;
  margin-bottom: 6rem;
}
.mdl-distribution--not .dist-tit {
  color: #B31983;
}
.mdl-distribution--not .dist-txt {
  max-width: 73rem;
  margin: 0 auto;
}
.mdl-distribution--not .dist-not {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (width <= 767.98px) {
  .mdl-distribution--not .dist-not {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-distribution--not .dist-not__cl {
  margin-bottom: 3rem;
}
.mdl-distribution--not .dist-not__img {
  padding-bottom: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3.7rem;
}
.mdl-distribution--not .dist-not__tit {
  margin-top: 4rem;
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #4A4A49;
}
.mdl-distribution__video {
  width: 100%;
  height: 60rem;
}
.mdl-distribution__video video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.mdl-distribution-list {
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: #4A4A49;
  padding: 12rem 0 8rem;
}
.mdl-distribution-list__bx {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (width <= 767.98px) {
  .mdl-distribution-list__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-distribution-list__tit {
  border-radius: 52px;
  background: #aa187b;
  min-height: 8rem;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.5rem;
}
.mdl-distribution-list__tit h2 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  text-align: center;
  color: #fff;
  margin: 0;
}
.mdl-distribution-list__txt {
  padding: 0 4rem;
}
.mdl-distribution-list__txt p,
.mdl-distribution-list__txt li {
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: #4A4A49;
}
.mdl-distribution-list__txt ul {
  padding: 0;
}
.mdl-distribution-list__txt ul li {
  list-style: none;
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
}
.mdl-distribution-list__txt ul li::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: block;
  background-color: #B31983;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.mdl-government--intro {
  padding: 12.9rem 0 7rem;
}
.mdl-government .gov-tit {
  font-size: 4.2rem;
  line-height: 5rem;
  color: #4A4A49;
}
@media (width <= 767.98px) {
  .mdl-government .gov-tit {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-government .gov-txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #4A4A49;
}
.mdl-government .container__bx {
  display: flex;
  flex-flow: row wrap;
}
.mdl-government .gov-cl {
  margin-bottom: 3.8rem;
}
.mdl-government .gov-cl--50 {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-government .gov-cl--50 {
    width: 100%;
  }
}
.mdl-government .gov-cl--pd {
  padding: 5rem 7.4rem;
}
@media (width <= 767.98px) {
  .mdl-government .gov-cl--pd {
    padding: 1rem 0;
    order: 1;
  }
}
.mdl-government .gov-cl--ct {
  text-align: center;
}
.mdl-government--cnt {
  background-color: #E9E8E8;
}
.mdl-government .gov-imgbx {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3.7rem;
  height: 100%;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .mdl-government .gov-imgbx {
    padding-top: 70%;
  }
}
.mdl-government .gov-h2 {
  width: 100%;
  text-align: center;
  font-size: 4.2rem;
  line-height: 5rem;
  color: #4A4A49;
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (width <= 767.98px) {
  .mdl-government .gov-h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-government .gov-grd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem 14%;
  margin-bottom: 7rem;
  width: 100%;
}
@media (width <= 767.98px) {
  .mdl-government .gov-grd {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem 0;
  }
}
.mdl-government .gov-grd__it {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  min-width: 18rem;
  max-width: 35rem;
}
.mdl-government .gov-grd__img {
  width: 100%;
  padding-top: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3.7rem;
  overflow: hidden;
  margin-bottom: 3.5rem;
}
.mdl-government .gov-grd__name {
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: #B31983;
  font-weight: 300;
  margin-bottom: 0;
}
.mdl-government .gov-grd__tit {
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: #4A4A49;
  font-weight: 700;
  margin-bottom: 0;
}
.mdl-government .gov-grd__txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: #4A4A49;
  font-weight: 300;
}

.mdl-group-commit {
  padding: 8rem 0;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: left;
  color: #4A4A49;
  gap: 6rem;
  display: flex;
  flex-flow: column;
}
.mdl-group-commit .container__bx {
  gap: 8rem;
  flex-flow: row;
}
@media (width <= 767.98px) {
  .mdl-group-commit .container__bx {
    gap: 5rem;
    flex-flow: column;
    flex-wrap: nowrap;
  }
}
.mdl-group-commit__it:nth-child(2n) .container__bx {
  flex-flow: row-reverse;
}
@media (width <= 767.98px) {
  .mdl-group-commit__it:nth-child(2n) .container__bx {
    flex-flow: column;
  }
}
.mdl-group-commit__cl {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-group-commit__cl {
    width: 100%;
  }
}
.mdl-group-commit__cl p img {
  border-radius: 0;
  width: auto !important;
}
.mdl-group-commit h1, .mdl-group-commit h2, .mdl-group-commit h3, .mdl-group-commit h4, .mdl-group-commit h5, .mdl-group-commit h6 {
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: left;
  color: #4A4A49;
}
@media (width <= 767.98px) {
  .mdl-group-commit h1, .mdl-group-commit h2, .mdl-group-commit h3, .mdl-group-commit h4, .mdl-group-commit h5, .mdl-group-commit h6 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-group-commit img {
  border-radius: 2.4rem;
  overflow: hidden;
}

.mdl-group-actions {
  padding: 8rem 0;
  background-color: #E6E6E6;
  text-align: center;
}
.mdl-group-actions h2 {
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 5rem;
  color: #4A4A49;
  margin-bottom: 6rem;
}
@media (width <= 767.98px) {
  .mdl-group-actions h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-group-actions .container__bx {
  flex-wrap: nowrap;
}
.mdl-group-actions__bx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 5rem;
}
@media (width <= 767.98px) {
  .mdl-group-actions__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-group-actions__it {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
}
.mdl-group-actions__it img {
  max-width: 27.5rem;
}
.mdl-group-actions__it p {
  font-weight: 300;
  font-size: 35px;
  line-height: 45px;
  color: #4A4A49;
  margin: 0;
}
.mdl-group-actions__it p span {
  font-weight: 900;
  font-size: 8rem;
  line-height: 8rem;
  color: #4A4A49;
}
.mdl-group-actions__desc {
  max-width: 40.4rem;
  width: 100%;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  color: #4A4A49;
  margin: 0 auto;
  display: none;
}
.mdl-group-actions__desc.js-show {
  display: block;
}
.mdl-group-actions__car {
  position: relative;
  margin-top: 5rem;
}
.mdl-group-actions__car-img {
  position: relative;
}
.mdl-group-actions__car-img img {
  border-radius: 3.7rem;
}
.mdl-group-actions__car-img h3 {
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 3.5rem;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 3.5rem;
}
@media (width <= 767.98px) {
  .mdl-group-actions__car-img h3 {
    font-size: 2.9rem;
    line-height: 3.2rem;
    margin-bottom: 0;
  }
}
.mdl-group-actions__car-it {
  max-width: 53.6rem;
}
@media (width <= 1199.98px) {
  .mdl-group-actions__car-it {
    max-width: 40rem;
  }
}
@media (width <= 767.98px) {
  .mdl-group-actions__car-it {
    max-width: 100%;
  }
}
.mdl-group-actions__car-txt {
  max-width: 485px;
  width: 100%;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  color: #4A4A49;
  margin: 0 auto;
  margin-top: 3.8rem;
}
.mdl-group-actions .swiper-car1,
.mdl-group-actions .swiper-car2 {
  width: calc(100% - 14rem);
}
@media (width <= 767.98px) {
  .mdl-group-actions .swiper-car1,
  .mdl-group-actions .swiper-car2 {
    width: calc(100% - 9rem);
  }
}
.mdl-group-actions .swiper-button-next,
.mdl-group-actions .swiper-button-prev {
  width: 5rem;
  height: 5rem;
  background-image: url("../imgs/icons/arrow-left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 767.98px) {
  .mdl-group-actions .swiper-button-next,
  .mdl-group-actions .swiper-button-prev {
    width: 3rem;
    height: 3rem;
  }
}
.mdl-group-actions .swiper-button-next::after,
.mdl-group-actions .swiper-button-prev::after {
  display: none;
}
.mdl-group-actions .swiper-button-next {
  right: 0;
  background-image: url("../imgs/icons/arrow-right.png");
}
.mdl-group-actions .swiper-button-prev {
  left: 0;
}

.mdl-group-install {
  padding: 8rem 0;
  background-color: #F2F0F0;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  color: #4A4A49;
}
.mdl-group-install .container__bx {
  gap: 5rem;
  flex-flow: row;
}
@media (width <= 767.98px) {
  .mdl-group-install .container__bx {
    flex-flow: column;
  }
}
.mdl-group-install .container .middle-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.mdl-group-install__cl {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-group-install__cl {
    width: 100%;
  }
}
.mdl-group-install__cl--rg img {
  border-radius: 2rem;
  margin-bottom: 1.6rem;
}
.mdl-group-install h2, .mdl-group-install h3, .mdl-group-install h4, .mdl-group-install h5, .mdl-group-install h6 {
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: left;
  color: #4A4A49;
}
@media (width <= 767.98px) {
  .mdl-group-install h2, .mdl-group-install h3, .mdl-group-install h4, .mdl-group-install h5, .mdl-group-install h6 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

.mdl-group-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 2.1rem 0 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: left;
  color: #000;
}
.mdl-group-banner__bx {
  padding: 16rem 2rem 16rem 8rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(112, 112, 112, 0);
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-group-banner__bx {
    width: 100%;
    padding: 10rem 2rem;
  }
}

.mdl-group-social {
  padding: 8rem 0;
  text-align: center;
  background-color: #fff;
}
.mdl-group-social h2 {
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 5rem;
  color: #4A4A49;
  margin-bottom: 6rem;
}
@media (width <= 767.98px) {
  .mdl-group-social h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-group-social .container__bx {
  flex-wrap: nowrap;
}
.mdl-group-social__bx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media (width <= 767.98px) {
  .mdl-group-social__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-group-social__it {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
}
.mdl-group-social__it img {
  max-width: 27.5rem;
}
.mdl-group-social__it p {
  font-weight: 300;
  font-size: 35px;
  line-height: 45px;
  color: #4A4A49;
  margin: 0;
}
.mdl-group-social__it p span {
  font-weight: 900;
  font-size: 8rem;
  line-height: 8rem;
  color: #4A4A49;
}

.mdl-group-solidarity {
  padding: 8rem 0;
  background-color: #fff;
  text-align: center;
}
.mdl-group-solidarity .container__bx {
  flex-wrap: nowrap;
}
.mdl-group-solidarity h2, .mdl-group-solidarity h3, .mdl-group-solidarity h4, .mdl-group-solidarity h5, .mdl-group-solidarity h6 {
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 5rem;
  color: #4A4A49;
  margin-bottom: 6rem;
}
@media (width <= 767.98px) {
  .mdl-group-solidarity h2, .mdl-group-solidarity h3, .mdl-group-solidarity h4, .mdl-group-solidarity h5, .mdl-group-solidarity h6 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

.mdl-group-clarity {
  padding: 8rem 0;
  background-color: #E6E6E6;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  color: #4A4A49;
}
.mdl-group-clarity__intro {
  text-align: center;
}
.mdl-group-clarity__intro h1, .mdl-group-clarity__intro h2, .mdl-group-clarity__intro h3, .mdl-group-clarity__intro h4, .mdl-group-clarity__intro h5, .mdl-group-clarity__intro h6 {
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: center;
  color: #4A4A49;
  margin-bottom: 4rem;
}
@media (width <= 767.98px) {
  .mdl-group-clarity__intro h1, .mdl-group-clarity__intro h2, .mdl-group-clarity__intro h3, .mdl-group-clarity__intro h4, .mdl-group-clarity__intro h5, .mdl-group-clarity__intro h6 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-group-clarity__txt {
  max-width: 108.8rem;
  margin: 0 auto;
}
.mdl-group-clarity__bx {
  margin-top: 5rem;
  gap: 1.3rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 767.98px) {
  .mdl-group-clarity__bx {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-group-clarity__it {
  border-radius: 3.6rem;
  padding: 6rem;
  display: flex;
  gap: 2rem;
  text-align: left;
  font-size: 2.8rem;
  line-height: 3.5rem;
  text-align: left;
  color: #4A4A49;
  align-items: center;
}
@media (width <= 767.98px) {
  .mdl-group-clarity__it {
    padding: 3rem;
    flex-flow: column;
  }
}
.mdl-group-clarity__it h1, .mdl-group-clarity__it h2, .mdl-group-clarity__it h3, .mdl-group-clarity__it h4, .mdl-group-clarity__it h5, .mdl-group-clarity__it h6 {
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: #4A4A49;
  margin: 0;
}
.mdl-group-clarity__it .btn {
  width: 20rem;
  font-size: 2.2rem;
}
@media (width <= 767.98px) {
  .mdl-group-clarity__it .mdl-group-clarity__cl {
    width: 100%;
    gap: 2rem;
  }
}
.mdl-group-clarity__it .mdl-group-clarity__cl--rg {
  background-image: url("../imgs/icons/icon-download.png");
  background-size: 2.3rem 4.2rem;
  padding-top: 6rem;
  background-position: top center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  justify-content: center;
}

.mdl-group--intro {
  background-color: #E9E8E8;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.mdl-group--intro .dist-tit {
  color: #B31983;
}
.mdl-group--intro .group-txt {
  max-width: 100rem;
  margin: 0 auto;
}
.mdl-group .group-tit {
  color: #4A4A49;
}
.mdl-group .group-txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #4A4A49;
}
.mdl-group .group-grd-cl {
  margin-bottom: 4rem;
  position: relative;
}
.mdl-group .group-grd-it {
  height: 48.9rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mdl-group .group-grd-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48.9rem;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 3.7rem;
  z-index: 2;
}
.mdl-group .group-grd-tit {
  font-size: 4.7rem;
  line-height: 5.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.7rem;
  z-index: 3;
  text-align: center;
  padding-right: 2rem;
  padding-left: 2rem;
}
.mdl-group .btn-info {
  position: absolute;
  left: 50%;
  margin-left: -2.7rem;
  bottom: -2.7rem;
  z-index: 4;
}
.mdl-group__dropdown {
  position: absolute;
  left: 0;
  top: 3.7rem;
  width: 100%;
  max-height: 45.2rem;
  background-color: #fff;
  border-bottom-right-radius: 3.7rem;
  border-bottom-left-radius: 3.7rem;
  padding: 7rem 3em 4rem;
  z-index: 1;
  transition: top 0.3s ease-in-out;
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #4A4A49;
  text-align: center;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .mdl-group__dropdown {
    position: relative;
    left: 0;
    top: -3.7rem;
    display: none;
  }
}
.mdl-group__dropdown.js-show {
  top: 46rem;
  max-height: inherit;
}
@media (width <= 767.98px) {
  .mdl-group__dropdown.js-show {
    top: -3.7rem;
    display: block;
  }
}
.mdl-group .container__bx {
  display: flex;
  flex-flow: row wrap;
}
.mdl-group .group-cl--50 {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-group .group-cl--50 {
    width: 100%;
  }
}
.mdl-group .group-cl--65 {
  width: 65%;
}
@media (width <= 767.98px) {
  .mdl-group .group-cl--65 {
    width: 100%;
  }
}
.mdl-group .group-cl--35 {
  width: 35%;
}
@media (width <= 767.98px) {
  .mdl-group .group-cl--35 {
    width: 100%;
  }
}
.mdl-group .group-cl--100 {
  width: 100%;
}
.mdl-group .group-cl--pd {
  padding: 5rem 14rem;
}
@media (width <= 1199.98px) {
  .mdl-group .group-cl--pd {
    padding: 5rem 2rem;
    order: 1;
  }
}
@media (width <= 767.98px) {
  .mdl-group .group-cl--pd {
    padding: 5rem 0;
    order: 1;
  }
}
.mdl-group .group-cl--ct {
  text-align: center;
}
.mdl-group .group-cl--int {
  padding: 15rem 6rem 15rem 0;
}
.mdl-group .group-cl--grd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 7rem;
  margin-bottom: 5rem;
}
@media (width <= 767.98px) {
  .mdl-group .group-cl--grd {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-group .group-cl--valuesgrd {
  gap: 4rem 13rem;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.mdl-group .group-cl--lt .group-imgbx {
  background-position: center right;
  border-radius: 0 3.7rem 3.7rem 0;
}
.mdl-group .group-cl--rt .group-imgbx {
  background-position: center left;
  border-radius: 3.7rem 0 0 3.7rem;
}
.mdl-group .group-cl--py {
  padding-top: 10rem;
  padding-bottom: 9rem;
}
.mdl-group--cnt {
  background-color: #E9E8E8;
  padding: 2rem 0;
}
.mdl-group--cnt .group-cl--35 .group-tit {
  color: #B31983;
  width: 100%;
  max-width: 42rem;
  text-align: center;
}
.mdl-group--cnt .group-cl--35 .group-txt {
  width: 100%;
  max-width: 42rem;
  text-align: center;
}
.mdl-group--cnt .group-cl--lt .group-tit {
  float: right;
}
.mdl-group--cnt .group-cl--lt .group-txt {
  float: right;
}
.mdl-group--cnt .group-cl--rt .group-tit {
  float: left;
}
.mdl-group--cnt .group-cl--rt .group-txt {
  float: left;
}
.mdl-group--np .container__bx {
  padding: 0;
}
.mdl-group .group-logo {
  margin-top: 11rem;
}
.mdl-group .group-logo img {
  max-width: 47.8rem;
  margin: 0 auto 8rem;
}
.mdl-group .group-imgbx {
  height: 100%;
  min-height: 45.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.mdl-group--values {
  padding: 11rem 0 8rem;
  background-image: url("../imgs/demo/group/bg-values.png");
  background-size: 3rem 2rem;
}
.mdl-group .group-valuesgrd-cl {
  width: calc(33.333% - 13rem);
  text-align: center;
  margin-bottom: 2rem;
}
@media (width <= 767.98px) {
  .mdl-group .group-valuesgrd-cl {
    width: calc(100% - 13rem);
  }
}
.mdl-group .group-valuesgrd-cl img {
  max-width: 17.8rem;
  margin-bottom: 3.5rem;
  display: inline;
}
.mdl-group .group-valuesgrd-img {
  text-align: center;
}
.mdl-group .group-valuesgrd-tit {
  font-size: 6.5rem;
  line-height: 4.5rem;
  font-weight: 700;
  color: #4A4A49;
  margin-bottom: 3.5rem;
}
@media (width <= 767.98px) {
  .mdl-group .group-valuesgrd-tit {
    font-size: 4.5rem;
  }
}
.mdl-group .group-valuesgrd-txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: #4A4A49;
}

.mdl-group-history {
  padding: 8rem 0;
  background-color: #F2F0F0;
}
.mdl-group-history h2 {
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: center;
  color: #4A4A49;
}
@media (width <= 767.98px) {
  .mdl-group-history h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-group-history__year {
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 5rem;
  text-align: center;
  color: #b31983;
  margin: 1rem 0;
  padding-right: 1.5rem;
}
.mdl-group-history__bt {
  margin: 1rem auto;
  padding-right: 1.5rem;
}
.mdl-group-history__bt img {
  max-width: 4rem;
}
.mdl-group-history__bx {
  height: 58rem;
  overflow-x: auto;
  max-width: 120rem;
  margin: 2rem auto;
  width: 100%;
  padding-bottom: 4rem;
  position: relative;
}
.mdl-group-history__it {
  width: 100%;
  height: 28rem;
  position: relative;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it {
    height: auto;
  }
}
.mdl-group-history__it:nth-child(1) {
  padding-top: 3rem;
}
.mdl-group-history__it:nth-child(1)::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: #B31983;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(1)::after {
    left: 0;
    transform: none;
  }
}
.mdl-group-history__it:nth-child(1) .mdl-group-history__cl {
  padding-top: 13rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(1) .mdl-group-history__cl {
    padding-top: 8rem;
  }
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(1) .mdl-group-history__date {
    top: 0;
  }
}
.mdl-group-history__it:last-child {
  padding-bottom: 25rem;
  height: auto;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:last-child {
    padding-bottom: 10rem;
  }
}
.mdl-group-history__it:last-child::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: #B31983;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:last-child::after {
    left: 0;
    transform: none;
  }
}
.mdl-group-history__it:last-child::before {
  content: "";
  width: 1rem;
  height: 25rem;
  background-color: #B7B7B7;
  display: block;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:last-child::before {
    left: 1rem;
    transform: none;
    height: 10rem;
  }
}
.mdl-group-history__it:nth-child(2n) .mdl-group-history__cl::after {
  background-color: #4A4A49;
  right: auto;
  left: -0.5rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(2n) .mdl-group-history__cl::after {
    left: 1rem;
  }
}
.mdl-group-history__it:nth-child(2n) .mdl-group-history__date {
  left: 0;
  right: auto;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(2n) .mdl-group-history__date {
    left: 1rem;
    top: -2rem;
    bottom: auto;
  }
}
.mdl-group-history__it:nth-child(2n) .mdl-group-history__date::after, .mdl-group-history__it:nth-child(2n) .mdl-group-history__date::before {
  background-color: #4A4A49;
}
.mdl-group-history__it:nth-child(2n) .mdl-group-history__date::after {
  left: auto;
  right: -0.1rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it:nth-child(2n) .mdl-group-history__date::after {
    left: auto;
  }
}
.mdl-group-history__it:nth-child(2n) .mdl-group-history__date span::after, .mdl-group-history__it:nth-child(2n) .mdl-group-history__date span::before {
  background-color: #4A4A49;
}
.mdl-group-history__it--r {
  display: flex;
  justify-content: flex-end;
}
.mdl-group-history__it--r .mdl-group-history__cl {
  padding-left: 20rem;
  padding-right: 0;
}
@media (width <= 1199.98px) {
  .mdl-group-history__it--r .mdl-group-history__cl {
    padding-left: 5rem;
  }
}
.mdl-group-history__it img {
  max-width: 40rem;
  border: 0.1rem solid #B31983;
  border-radius: 1.2rem;
  aspect-ratio: 1.75;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}
.mdl-group-history__it p {
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 3.2rem;
  text-align: center;
  color: #4A4A49;
  max-width: 40rem;
  padding: 0 1.2rem;
}
@media (width <= 767.98px) {
  .mdl-group-history__it p {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.mdl-group-history__cn {
  max-width: 40rem;
  position: relative;
}
.mdl-group-history__cl {
  width: 50%;
  padding-right: 20rem;
  position: relative;
  height: 100%;
  padding-top: 16rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__cl {
    width: 100%;
    padding-right: 0;
    padding-left: 5rem;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
.mdl-group-history__cl::after {
  content: "";
  width: 1rem;
  height: 100%;
  display: block;
  position: absolute;
  background: #B31983;
  top: -1px;
  right: -0.5rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__cl::after {
    left: 1rem;
    right: auto;
  }
}
.mdl-group-history__date {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 4rem;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.2rem;
  text-align: center;
  color: #4A4A49;
  bottom: -2.2rem;
}
@media (width <= 1199.98px) {
  .mdl-group-history__date {
    left: 1rem;
    right: auto;
    bottom: auto;
    top: 0;
  }
}
.mdl-group-history__date::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background-color: #B31983;
  display: block;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  top: 50%;
  bottom: 50%;
}
@media (width <= 1199.98px) {
  .mdl-group-history__date::after {
    left: auto;
    right: 0;
  }
}
.mdl-group-history__date::before {
  content: "";
  height: 0.3rem;
  background-color: #B31983;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  right: 0;
}
.mdl-group-history__date span {
  position: relative;
  padding: 0.5rem 1rem;
  background-color: #f2f0f0;
  text-align: center;
  display: block;
  white-space: pre-line;
  min-width: 8rem;
}
.mdl-group-history__date span::after, .mdl-group-history__date span::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background-color: #B31983;
  display: block;
  position: absolute;
  top: 0;
}
.mdl-group-history__date span::after {
  left: 0;
}
.mdl-group-history__date span::before {
  right: 0;
}
.mdl-group-history .btn {
  border: 0.1rem solid #B31983;
  background-color: transparent;
  align-self: flex-end;
  margin-top: -6rem;
}
@media (width <= 991.98px) {
  .mdl-group-history .btn {
    align-self: center;
    margin-top: 4rem;
  }
}

.mdl-learning .container--full {
  max-width: inherit;
}
.mdl-learning .container__bx {
  display: flex;
  flex-flow: row wrap;
}
.mdl-learning--hero .container__bx {
  padding: 0 0;
}
.mdl-learning--py {
  padding: 3.8rem 0;
}
.mdl-learning .learning-hero-bg {
  width: 100%;
  padding-top: 16rem;
  padding-bottom: 37rem;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
}
@media (width <= 767.98px) {
  .mdl-learning .learning-hero-bg {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.mdl-learning .learning-hero-logo {
  max-width: 54.3rem;
  margin: 0 auto 4rem;
}
.mdl-learning .learning-hero-txt {
  text-align: center;
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #E7004C;
  margin-bottom: 4rem;
}
.mdl-learning .learning-cl--50 {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-learning .learning-cl--50 {
    width: 100%;
  }
}
.mdl-learning .learning-cl--100 {
  width: 100%;
}
.mdl-learning .learning-cl--pd {
  padding: 5rem 14rem;
}
@media (width <= 767.98px) {
  .mdl-learning .learning-cl--pd {
    padding: 5rem 0;
    order: 1;
  }
}
.mdl-learning .learning-cl--ct {
  text-align: center;
}
.mdl-learning .learning-cl--int {
  padding: 15rem 6rem 15rem 0;
}
.mdl-learning .learning-cl--bt {
  padding-bottom: 9.2rem;
}
.mdl-learning .learning-cl--py {
  padding-top: 10rem;
  padding-bottom: 9rem;
}
.mdl-learning--cnt {
  background-color: #E9E8E8;
}
.mdl-learning--cnt .swiper-slide {
  text-align: center;
  margin-top: 5rem;
}
.mdl-learning--cnt .swiper-slide img {
  width: auto;
  max-width: 20rem;
  max-height: 10rem;
  display: inline;
}
.mdl-learning--intro .container__bx {
  padding: 6.5rem 2rem 0;
}
.mdl-learning .learning-tit {
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #E7004C;
  margin: 0 auto 3rem;
}
.mdl-learning .learning-subtit {
  color: #4A4A49;
  max-width: 91rem;
  margin: 0 auto 3rem;
}
.mdl-learning .learning-txt {
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #4A4A49;
  max-width: 91rem;
  margin: 0 auto 3rem;
}
.mdl-learning .learning-bt {
  display: inline-block;
  padding: 1.2rem 9rem;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  border-radius: 99rem;
  font-size: 2.5rem;
  line-height: 3.3srem;
  color: #fff;
  background-color: #E7004C;
  margin: 5rem auto 3rem;
}
.mdl-learning .btn-info {
  background-image: url(../imgs/icons/plus-pink.png);
}
.mdl-learning .btn-info.js-show {
  background-image: url(../imgs/icons/minus-pink.png);
}
.mdl-learning .group-imgbx {
  position: relative;
  border-radius: 3.7rem !important;
}
.mdl-learning .learning-icon {
  position: absolute;
  top: -2rem;
  right: 2rem;
  width: 11.6rem;
  z-index: 2;
}
.mdl-learning__bx {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 9rem;
}
.mdl-learning__it {
  text-align: center;
  border-right: 0.1rem solid #E9E8E8;
  padding: 0 3rem;
}
.mdl-learning__it:nth-child(1) {
  width: 33%;
}
@media (width <= 767.98px) {
  .mdl-learning__it:nth-child(1) {
    width: 100%;
    border-right: none;
    border-bottom: 0.1rem solid #E9E8E8;
  }
}
.mdl-learning__it:nth-child(2) {
  width: 32%;
}
@media (width <= 767.98px) {
  .mdl-learning__it:nth-child(2) {
    width: 100%;
    border-right: none;
    border-bottom: 0.1rem solid #E9E8E8;
  }
}
.mdl-learning__it:nth-child(3) {
  width: 35%;
  border-right: none;
}
@media (width <= 767.98px) {
  .mdl-learning__it:nth-child(3) {
    width: 100%;
  }
}
@media (width <= 767.98px) {
  .mdl-learning__it {
    padding: 3rem 0;
  }
}
.mdl-learning__it img {
  max-width: 27.5rem;
}
.mdl-learning__it p {
  font-weight: 300;
  font-size: 35px;
  line-height: 45px;
  color: #4A4A49;
  margin: 0;
}
.mdl-learning__it p span {
  font-weight: 900;
  font-size: 8rem;
  line-height: 8rem;
  color: #4A4A49;
}
.mdl-learning--banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 2.1rem 0 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  text-align: left;
  color: #000;
}
.mdl-learning--banner__bx {
  padding: 7.6rem 2rem 7.6rem 8rem;
  width: 50%;
  color: #fff;
}
@media (width <= 767.98px) {
  .mdl-learning--banner__bx {
    padding: 7.6rem 2rem 7.6rem 3rem;
    width: 100%;
  }
}
.mdl-learning--banner__txt {
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4rem;
  position: relative;
  padding-top: 4rem;
  max-width: 49rem;
}
.mdl-learning--banner__txt::after {
  position: absolute;
  content: "";
  width: 7.3rem;
  height: 1rem;
  background-color: #FFA400;
  top: 0;
  left: 0;
}
.mdl-learning--banner .learning-bt {
  margin: 2rem auto 1rem;
}
.mdl-learning .group-cl .learning-bt {
  padding: 1.2rem 3rem;
}

.learning-tit {
  color: #E7004C !important;
}

.mdl-services-filters {
  padding: 8rem 0;
  text-align: center;
}
.mdl-services-filters h2 {
  font-size: 4.5rem;
  line-height: 5rem;
  text-align: center;
  color: #B31983;
  margin-bottom: 6rem;
}
.mdl-services-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mdl-services-filters ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 3.2rem;
  color: #4A4A49;
  margin-bottom: 1rem;
}
.mdl-services-filters ul li a {
  color: #4A4A49;
}
.mdl-services-filters ul li::after {
  content: "";
  width: 0.1rem;
  height: 4rem;
  background: #B31983;
  display: block;
  margin: 0 1.2rem;
}

.mdl-services-info__it {
  padding: 8rem 0;
  background-color: #E9E8E8;
}
.mdl-services-info__it:nth-child(2n) {
  background-color: #F2F0F0;
}
.mdl-services-info__it .container__bx {
  flex-flow: row wrap;
}
.mdl-services-info__cl {
  width: 50%;
}
@media (width <= 767.98px) {
  .mdl-services-info__cl {
    width: 100%;
  }
}
.mdl-services-info__cl--rg {
  padding: 4rem 0;
  padding-left: 8rem;
}
@media (width <= 767.98px) {
  .mdl-services-info__cl--rg {
    padding-left: 0;
  }
}
.mdl-services-info img {
  border-radius: 2rem;
}
.mdl-services-info h3 {
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: left;
  color: #4A4A49;
  margin-bottom: 4rem;
}
@media (width <= 767.98px) {
  .mdl-services-info h3 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.mdl-services-info p {
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  color: #4A4A49;
  margin-bottom: 4rem;
}

.new-fedefarma {
  color: #4A4A49;
}
.new-fedefarma .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.new-fedefarma .container-box {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .new-fedefarma .container-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .new-fedefarma .container-box {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.new-fedefarma form input:not([type=checkbox]) {
  min-height: 58px;
  border-radius: 24px;
}
.new-fedefarma form input:not([type=checkbox])::-moz-placeholder {
  color: #969492;
  font-weight: 300;
  font-size: 16px;
}
.new-fedefarma form input:not([type=checkbox])::placeholder {
  color: #969492;
  font-weight: 300;
  font-size: 16px;
}
.new-fedefarma form select {
  min-height: 58px;
  border-radius: 24px;
  color: #969492;
}
.new-fedefarma form select:valid {
  color: #3C3935;
}
.new-fedefarma form label {
  font-size: 14px;
  color: #3C3935;
}

.new-fedefarma.university {
  font-family: "Inter Tight", sans-serif;
}
.new-fedefarma.university .btn-fede {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
}
.new-fedefarma.university .block6-bg {
  background-image: url("/imgs/bg/uni-block6-A.png"), url("/imgs/bg/uni-block6-B.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: contain, contain;
}
@media (width <= 767.98px) {
  .new-fedefarma.university .block6-bg {
    background-image: url("/imgs/bg/uni-block6-A.png"), url("/imgs/bg/uni-block6-B.png");
    background-position: left top, right bottom;
  }
}
.new-fedefarma.university .block5-bg {
  background-image: url("/imgs/bg/uni-block5.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
}
@media (width <= 767.98px) {
  .new-fedefarma.university .block5-bg {
    background-size: cover;
  }
}

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