@import 'reset.css';
@font-face {
  font-family: "visby_cf";
  src: url("fonts/visbycf-light-webfont.woff2") format("woff2"), url("fonts/visbycf-light-webfont.woff") format("woff"), url("fonts/visbycf-light-webfont.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "visby_cf";
  src: url("fonts/visbycf-regular-webfont.woff2") format("woff2"), url("fonts/visbycf-regular-webfont.woff") format("woff"), url("fonts/visbycf-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "visby_cf";
  src: url("fonts/visbycf-medium-webfont.woff2") format("woff2"), url("fonts/visbycf-medium-webfont.woff") format("woff"), url("fonts/visbycf-medium-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "visby_cf";
  src: url("fonts/visbycf-bold-webfont.woff2") format("woff2"), url("fonts/visbycf-bold-webfont.woff") format("woff"), url("fonts/visbycf-bold-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "rockwell";
  src: url("fonts/rockwell-regular-01-webfont.woff2") format("woff2"), url("fonts/rockwell-regular-01-webfont.woff") format("woff"), url("fonts/rockwell-regular-01-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "rockwell";
  src: url("fonts/rockwell-bold-03-webfont.woff2") format("woff2"), url("fonts/rockwell-bold-03-webfont.woff") format("woff"), url("fonts/rockwell-bold-03-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --animate-delay: 0.5s;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

::-moz-selection {
  color: #252b50;
  background: #89cee9;
}

::selection {
  color: #252b50;
  background: #89cee9;
}

html.not-scroll, body.not-scroll {
  padding-right: 15px;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  color: #232323;
  font-family: "visby_cf";
  overflow-x: hidden;
}

.container {
  margin: auto 5%;
}
@media (min-width: 600px) {
  .container {
    width: calc(100% - 240px);
    margin: auto 120px;
  }
}

.content {
  background-color: white;
  transition: all 0.5s ease;
}

.row {
  display: flex;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

strong {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.bg-blue {
  background-color: #252b50;
  color: white;
}

.bg-gold {
  background-color: #cfb16a;
  color: #252b50;
}

.bg-skyBlue {
  background-color: #89cee9;
  color: #252b50;
}

.txt-white {
  color: white;
}

.txt-blue {
  color: #252b50;
}

.txt-gold {
  color: #cfb16a;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
footer {
  padding: 60px 0 30px;
  background: #252b50;
}
footer a {
  color: #89cee9;
}
footer img {
  width: 30px;
  margin: 0 15px;
}
@media (min-width: 600px) {
  footer img {
    width: auto;
  }
}
footer p {
  margin: 20px 5%;
  font-weight: 600;
}
@media (min-width: 600px) {
  footer p {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }
}
footer hr {
  width: 16%;
  margin: 20px auto 30px;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
header {
  background: #252b50;
}
header a {
  color: white;
}
header .header-content {
  align-items: center;
  justify-content: space-between;
  padding: 1% 2% 0.5%;
}
header .header-content .logo {
  margin-right: 24px;
  max-width: 95px;
}
header .header-content nav {
  margin-left: auto;
  font-weight: 500;
  display: none;
}
@media (min-width: 600px) {
  header .header-content nav {
    display: block;
  }
}
header .header-content nav ul {
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
header .header-content nav li {
  display: flex;
  align-items: center;
}
header .header-content nav a {
  padding: 8px 15px 6px;
  color: white;
  border-radius: 15px;
  background-color: #252b50;
  transition: background-color 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}
header .header-content nav a:hover {
  background-color: rgb(28.9358974359, 33.6282051282, 62.5641025641);
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.welcome-content {
  background-image: url("../img/bg-welcome-m.webp");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  color: white;
  height: 90vh;
}
@media (min-width: 600px) {
  .welcome-content {
    background-image: url("../img/bg-welcome.webp");
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
  }
}
.welcome-content .container {
  max-width: 1000px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 600px) {
  .welcome-content .container {
    text-align: left;
  }
}
.welcome-content h1 {
  font-family: rockwell, serif;
  font-weight: 600;
  font-size: 2rem;
  margin: 0 10% 50px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  .welcome-content h1 {
    font-size: 4rem;
  }
}
.welcome-content h2 {
  font-family: rockwell, serif;
  font-weight: normal;
  font-size: 1.25rem;
  margin: 0 20% 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  .welcome-content h2 {
    font-size: 2rem;
    margin: 0 10% 0;
  }
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.aboutUs-content {
  position: relative;
  padding: 100px 0 20px;
}
@media (min-width: 600px) {
  .aboutUs-content {
    padding: 150px 5% 20px;
  }
}
.aboutUs-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: 80px;
  height: 100px;
  background: url("../img/stars.webp") no-repeat top center;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}
@media (min-width: 600px) {
  .aboutUs-content::before {
    width: 130px;
    height: 100px;
  }
}
.aboutUs-content .container {
  max-width: 900px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutUs-content h1 {
  font-family: rockwell, serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 10% 4%;
}
.aboutUs-content p {
  font-size: 1rem;
  line-height: 100%;
  margin: 1.5% 0;
}
.aboutUs-content .aboutUs-content .swiper-button-prev,
.aboutUs-content .aboutUs-content .swiper-button-next {
  opacity: 0.5 !important;
}
.aboutUs-content .swiper-button-prev {
  left: 0;
}
.aboutUs-content .swiper-button-next {
  right: 0;
}
@media (min-width: 600px) {
  .aboutUs-content h1 {
    font-size: 3rem;
  }
  .aboutUs-content p {
    font-size: 1.25rem;
    line-height: 125%;
  }
}
.aboutUs-content .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px 12%;
  box-sizing: border-box;
  color: white;
}
.aboutUs-content .swiper-button-prev,
.aboutUs-content .swiper-button-next {
  color: white;
}
.aboutUs-content .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.mision-content {
  padding: 60px 0;
  color: #252b50;
}
.mision-content .container {
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mision-content .boxes-row .col-6 {
  padding: 0 30px;
}
.mision-content .box {
  padding: 40px 60px;
}
.mision-content .box h3 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.mision-content .box p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 125%;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.shortcuts-content {
  padding: 40px 0;
  color: #252b50;
}
.shortcuts-content .container {
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shortcuts-content .boxes-row .col-4 {
  padding: 0 20px;
}
.shortcuts-content .box {
  position: relative;
  padding: 60px 60px 20px;
}
.shortcuts-content .box h3 {
  font-weight: 600;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.shortcuts-content .box .img-fluid {
  position: absolute;
  width: auto;
  max-width: 35%;
  left: 50%;
  top: -15%;
  transform: translateX(-50%);
}
.shortcuts-content .box .btn {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  padding: 7px 15px 5px;
}
@media (min-width: 600px) {
  .shortcuts-content {
    padding-top: 80px;
  }
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}

.col-4 {
  width: 100%;
  margin: 30px 0;
}
@media (min-width: 600px) {
  .col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
  }
}

.text-center {
  text-align: center;
}

.links-row {
  margin: 32px 0;
}
.links-row a {
  display: inline-block;
  padding: 12px 32px 10px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 20px;
  background: #89cee9;
  color: #252b50;
  transition: background 0.3s;
  margin: 0 auto;
}
.links-row a:hover {
  background: rgb(94.0142857143, 188.15, 224.9857142857);
  color: white;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden !important;
}

.visible {
  visibility: visible !important;
}

.box {
  background-color: #e2e2e2;
  border-radius: 15px;
  padding: 25px 20px;
}

.btn {
  display: inline-block;
  padding: 12px 32px 10px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 20px;
  transition: background 0.3s;
  margin: 0 auto;
}

.btn-primary {
  background: #89cee9;
  color: #252b50;
}
.btn-primary:hover {
  background: rgb(94.0142857143, 188.15, 224.9857142857);
  color: white;
}

.btn-secondary {
  background: white;
  color: #252b50;
}
.btn-secondary:hover {
  background: #89cee9;
  color: #252b50;
}

.btn-blue {
  background: #252b50 !important;
  color: white !important;
}
.btn-blue:hover {
  background: rgb(45.0641025641, 52.3717948718, 97.4358974359) !important;
  color: white !important;
}

.divider {
  width: 60%;
  height: 1px;
  line-height: 0;
  background: #252b50;
  margin: 18px auto;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 4px;
  background: #89cee9;
  box-shadow: 0 0 5px #89cee9;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.masterplan-content {
  position: relative;
  background: url("../img/bg-masterplan-3.webp") no-repeat center;
  background-size: cover;
  color: white;
  border-radius: 30px;
  margin: 0 5%;
  padding: 20px 5%;
  height: 120px;
}
@media (min-width: 600px) {
  .masterplan-content {
    border-radius: 60px;
    padding: 70px 5%;
    margin-top: 70px;
    margin-bottom: 100px;
    height: 45vh;
  }
}
.masterplan-content .container {
  max-width: 900px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.masterplan-content img {
  width: 60%;
  max-width: 270px;
}
.masterplan-content h3 {
  font-family: rockwell, serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0 0 40px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.25);
}
.masterplan-content p {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 125%;
  margin-bottom: 70px;
}
.masterplan-content .btn {
  position: absolute;
  bottom: -18px;
}
@media (min-width: 600px) {
  .masterplan-content h3 {
    font-size: 4rem;
  }
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.programs-content {
  margin: 70px 0;
}
.programs-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.programs-content p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 20px;
}
.programs-content span.label {
  background-color: #252b50;
  display: inline-block;
  padding: 7px 10px;
  color: white;
}
@media (min-width: 600px) {
  .programs-content h3 {
    font-size: 2.75rem;
  }
  .programs-content p {
    font-size: 1.15rem;
  }
  .programs-content .col-8 {
    width: 70%;
  }
}
.programs-content .row {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.programs-content .col-8 {
  width: 100%;
}
.programs-content .box {
  margin: 0 0 2%;
  padding-left: 40px;
}
@media (min-width: 600px) {
  .programs-content .box {
    margin: 0 0 3%;
    padding-left: 50px;
  }
}
.programs-content .box h4 {
  font-family: rockwell, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: -25px;
  position: relative;
  display: inline-block;
}
@media (min-width: 600px) {
  .programs-content .box h4 {
    font-size: 1.75rem;
  }
}
.programs-content .box h4 span {
  position: relative;
  z-index: 1;
  color: #252b50;
}
.programs-content .box h4::after {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: -15px;
  bottom: -8px;
  width: auto;
  background: #89cee9;
}
.programs-content .box h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #252b50;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .programs-content .box h5 {
    font-size: 1.25rem;
  }
}
.programs-content .box .btn.btn-outline {
  font-size: 0.85rem;
  padding: 7px 21px 6px;
  background-color: transparent;
  border: 1px solid #252b50;
  border-radius: 25px;
  margin-right: 50px;
}
.programs-content .box .btn.btn-outline:hover {
  background-color: #252b50;
  color: white;
}
.programs-content .box .divider {
  width: 30%;
  max-width: 200px;
  margin: 30px 0 15px;
}
@media (min-width: 600px) {
  .programs-content .box .divider {
    margin: 30px 0;
  }
}
.programs-content .box .divider::after {
  left: 0;
  top: -1px;
  transform: translateX(0);
}
.programs-content .box .status-principal {
  position: relative;
}
.programs-content .box .status-principal h5 {
  font-size: 1.15rem;
  font-weight: 600;
}
@media (min-width: 600px) {
  .programs-content .box .status-principal h5 {
    font-size: 1.75rem;
  }
}
.programs-content .box .status-principal::after {
  display: block;
  content: "";
  position: absolute;
  left: -30px;
  top: 20px;
  bottom: 0;
  width: 12px;
  background: #89cee9;
}
.programs-content .box .status-principal .btn.btn-outline {
  font-size: 1rem;
  padding: 9px 26px 8px;
  border: 2px solid #252b50;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.socialInclusion-content {
  color: white;
  background: #252b50;
  position: relative;
  padding: 100px 5% 20px;
}
.socialInclusion-content .container {
  margin-left: 50%;
  width: 50%;
  max-width: 800px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.socialInclusion-content .container .btn {
  margin: 20px auto 0 0;
}
.socialInclusion-content h3 {
  font-size: 3.75rem;
  font-family: rockwell, serif;
  font-weight: 500;
  line-height: 125%;
}
.socialInclusion-content h3 small {
  color: #89cee9;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "visby_cf";
}
.socialInclusion-content p {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 6% 0;
  line-height: 125%;
}
.socialInclusion-content .cta-program {
  position: relative;
  background: #89cee9;
  color: #252b50;
  border-radius: 50px;
  padding: 60px 8% 10px;
  margin: 50px 0 20px;
  text-align: center;
}
.socialInclusion-content .cta-program::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 50%;
  height: 550px;
  background: url("../img/player.webp") no-repeat top center;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}
.socialInclusion-content .cta-program::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 45px;
  height: 60px;
  background: url("../img/term-blue.webp") no-repeat top center;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}
.socialInclusion-content .cta-program h4 {
  font-family: rockwell, serif;
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 15px;
}
.socialInclusion-content .cta-program p {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 5% 0 3%;
}
.socialInclusion-content .cta-program .links-row {
  width: 60%;
  margin: 30px auto;
}
.socialInclusion-content .cta-program .links-row a {
  padding-left: 60px;
  padding-right: 60px;
}
.socialInclusion-content .press-cta {
  text-align: center;
  margin: 50px 0;
  border-top: 12px solid rgb(48.2897435897, 56.1205128205, 104.4102564103);
  border-bottom: 12px solid rgb(48.2897435897, 56.1205128205, 104.4102564103);
  padding: 25px 0;
}
.socialInclusion-content .press-cta h3 {
  font-size: 3.25rem;
  font-family: rockwell, serif;
  font-weight: 500;
  line-height: 125%;
}
.socialInclusion-content .press-cta p {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 125%;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.student-content {
  background: url("../img/bg-student.webp") no-repeat center center;
  background-size: cover;
  color: #252b50;
  padding: 70px 0;
  height: 90vh;
}
.student-content .container {
  margin: 0 auto;
  height: 96%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.student-content h3 {
  font-size: 4rem;
  font-family: rockwell, serif;
  font-weight: 600;
  line-height: 125%;
}
.student-content p {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 6% 0;
  line-height: 125%;
}
.student-content .row {
  align-items: stretch;
}

/* === ++ === +++ === ++ === +++ === ++ === +++ */
/* === ++ === +++ === ++ === +++ === ++ === +++ */
.card {
  background-color: white;
  border-radius: 15px;
  padding: 90px 20px 25px;
  margin: 0 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 1.5px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  max-width: 600px;
  min-height: 290px;
}
.card .content-img-student {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #252b50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  z-index: 2;
}
.card h4 {
  font-family: rockwell, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 15px;
}
.card p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 25px;
  flex: 1 1 auto;
}
.card .btn {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 220px;
  margin: 0 auto;
}
.card.program {
  border: 1px solid #e2e2e2;
  border-radius: 0;
  padding: 0;
  background: none;
  position: relative;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.program .main-img {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  height: 220px;
  position: relative;
}
.card.program .floating-text {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 90%;
  color: white;
  font-family: rockwell, serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 125%;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  padding: 0 5%;
}
.card.program .desc {
  color: #666;
  background: white;
  padding: 24px 18px 12px 18px;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
.card.program .blue-bold {
  color: #252b50;
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 10px;
  font-family: rockwell, serif;
}
.card.program .tag {
  display: inline-block;
  color: #252b50;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 8px 3px;
  line-height: 100%;
  z-index: 3;
  letter-spacing: 1px;
  margin: 10px 0 40px;
  border-top: 1px solid #252b50;
  border-bottom: 1px solid #252b50;
}
.card.program .btn {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: inherit;
  max-width: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 20px 6px;
}