@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "Montserrat-light";
  src: url("../fonts/Montserrat-Light.eot");
  src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Light.woff") format("woff"),
    url("../fonts/Montserrat-Light.ttf") format("truetype"),
    url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-regular";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular.ttf") format("truetype"),
    url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Merriweather-light";
  src: url("../fonts/Merriweather-Light.eot");
  src: url("../fonts/Merriweather-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Merriweather-Light.woff2") format("woff2"),
    url("../fonts/Merriweather-Light.woff") format("woff"),
    url("../fonts/Merriweather-Light.ttf") format("truetype"),
    url("../fonts/Merriweather-Light.svg#Merriweather-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: "Montserrat-extraBold";
  src: url("../fonts/Montserrat-ExtraBold.eot");
  src: url("../fonts/Montserrat-ExtraBold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"),
    url("../fonts/Montserrat-ExtraBold.woff") format("woff"),
    url("../fonts/Montserrat-ExtraBold.ttf") format("truetype"),
    url("../fonts/Montserrat-ExtraBold.svg#Montserrat-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --navbar-bg-color: rgb(255, 255, 255);
  --navbar-text-color: rgb(0, 0, 0);
  --navbar-text-color-focus: #00b9f9;
  --navbar-bg-contrast: hsl(0, 0%, 25%);
  --animate-duration: 150ms;
  --animate-delay: 0.2s;
  --azul: #00b9f9;
  --negro: #1c1c1c;
  --blanco: #FCFCFC;
}

/* START Content elements styles */

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.5;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
}

.onlyDesktop {
  display: block;
}

.onlyMobile {
  display: none;
}

h1,
h1 a,
h1 span,
h1 strong,
.h1-size,
h2,
h2 a,
h2 span,
h2 strong,
.h2-size,
h3,
h3 a,
h3 span,
h3 strong,
.h3-size,
h4,
h4 a,
h4 span,
h4 strong,
.h4-size,
h5,
h5 a,
h5 span,
h5 strong,
.h5-size {
  font-family: "Bricolage Grotesque", sans-serif;
}

/* Default fonts */
.font-montse-regular {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.font-montse-light {
  font-family: "Montserrat-light", sans-serif;
}

h1,
h1 span,
h1 strong,
h1 a,
.h1-size {
  font-size: 75px;
  font-weight: 500;
}

h2,
h2 span,
h2 strong,
h2 a,
.h2-size {
  font-size: 40px;
}

h3,
h3 span,
h3 strong,
h3 a,
.h3-size {
  font-size: 30px;
}

h4,
h4 span,
h4 strong,
h4 a,
.h4-size {
  font-size: 20px;
}

h5,
h5 span,
h5 strong,
h5 a,
.h5-size {
  font-size: 16px;
  font-weight: bold;
}

p {
  margin-top: 0;
}

mark {
  color: var(--azul);
  text-decoration: none;
  background-color: transparent;
}

p,
li,
mark {
  margin-bottom: 30px;
}

.small {
  font-size: 10px;
}

.text-grey {
  color: #cccccc;
}

body a {
  color: var(--azul);
}
body a:hover {
  color: var(--negro);
}

/* END Content elements styles */
/* START Container styles */

.nav-container {
  height: 64px;
}

.boxed {
  width: 100%;
  max-width: 1366px;
  padding: 48px;
  margin: auto;
}

.boxed.wrap {
  display: flex;
  flex-wrap: wrap;
}

.nopadding {
  padding: 0;
}

.boxed.nopadding img {
  width: 100%;
}

.w-100 {
  width: 100%;
}

.container-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Botón negro */
.btn-outline-black a {
  padding: 10px 48px;
  border: 1px solid var(--negro);
  background-color: var(--negro);
  border-radius: 50px;
  color: var(--blanco);
  display: inline-block;
}
.btn-outline-black a:hover{
  background-color: var(--blanco);
  color: var(--negro);
}

/* END Container styles */
/* START Text styles */

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

.text-blue {
  color: var(--azul);
}

.text-white {
  color: var(--blanco);
}

.lighter {
  font-weight: lighter;
}

.light {
  font-weight: 200;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
}
/* END Text styles */
/* START Background styles */
.bg-black {
  background-color: #1c1c1c;;
}
/* END Background styles */
/* START Spacing styles */
.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.p-0 {
  padding: 0 !important;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}
/* END Spacing styles */
/* START Align content */
/* start lists without margin */
.ul-flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.ul-flex li {
  width: 50%;
}

.no-margin-bottom * {
  margin-bottom: 0;
}
/* end lists without margin */
/* END Align content */
/* START col sizes */
.col50-left,
.col50-right,
.col50-sole-left,
.col50-sole-right {
  width: 50%;
}
.col50-left {
  padding-right: 20px;
}
.col50-right {
  padding-left: 20px;
}
.col50-sole-left {
  padding-right: 40px;
}
.col50-sole-right {
  padding-left: 40px;
}
/* END col sizes */
/* START col alignment */
/* col alignment */

.col-v-centered {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* END col alignment */
/* START squares photos */

.squares > .square-four {
  width: 25%;
  padding-bottom: 25%;
  float: left;
}

.squares > .square-four:nth-child(odd) {
  background-color: var(--azul);
}

.squares > .square-four:nth-child(even) {
  background-color: #54d0fa;
}

/* END squares photos */
/* START full width photos */
.fullwidth-img {
  width: 100%;
  padding-bottom: 25%;
  background-color: var(--azul);
}

/* END full width photos */
/* START half with photos */
.halfwidth-img {
  display: flex;
  align-items: flex-start;
}

.halfwidth-img div,
.halfwidth-img img {
  width: 50%;
  padding-bottom: 35%;
}

.halfwidth-img > div:nth-child(odd) {
  background-color: var(--azul);
}

.halfwidth-img > div:nth-child(even) {
  background-color: #54d0fa;
}
/* END half with photos */
/* START navbar */

#navbar {
  --navbar-height: 64px;
  position: fixed;
  height: var(--navbar-height);
  background-color: var(--navbar-bg-color);
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 9999999 !important;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  max-width: 1300px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
}

.navbar-item {
  margin: 0.4em;
  width: auto;
}

.navbar-item a {
  font-size: 14px;
  text-decoration: none;
}

.home-link,
.navbar-link {
  color: var(--navbar-text-color);
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  font-weight: 400;
  align-items: center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
  color: var(--navbar-text-color-focus);
}

.navbar-link {
  justify-content: left;
  width: 100%;
  padding: 0.4em 0.8em;
  border-radius: 5px;
}

#kit-digital .navbar-link {
  width: 123px;
}

#kit-digital .navbar-link img {
  width: 100px;
}

#kit-digital {
  margin-right: 0;
}

.navbar-link:focus,
.navbar-link:hover {
  color: var(--navbar-text-color-focus);
  background-color: var(--blanco);
}

.navbar-logo {
  background-color: var(--navbar-text-color-focus);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 0.5em;
}

.logo {
  position: relative;
}

.h1-home {
  position: absolute;
  color: var(--blanco);
  left: -8000px;
}

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  background-color: var(--navbar-text-color);
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: var(--navbar-text-color-focus);
}

#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg);
}

.navbar-menu {
  position: fixed;
  top: var(--navbar-height);
  bottom: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
}

#navbar.opened .navbar-menu {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
}

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: var(--navbar-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
}

/* Dropdowns */
.navbar-links {
  overflow: visible;
}

.navbar-item {
  position: relative;
}

/* Active one */

.navbar-item.current > a {
  color: var(--azul);
  font-weight: bold;
}

.dropdown {
  display: none;
  list-style: none;
  background-color: var(--azul);
  padding: 20px 0;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  z-index: 9999999;
  position: absolute;
  top: 26px;
  left: 0;
  width: auto;
  text-align: left;
  width: 300px;
}

.dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown li a {
  text-align: left;
  color: var(--blanco);
}

.navbar-item:has(ul) {
  content: "<h1>A</h1>";
}

/* Contact button */

svg.btn-contact {
  position: absolute;
  top: -4000px;
  left: -4000px;
}

#header-contact-btn {
  font-size: 1rem;
  border: none;
  filter: url("#gooey");
  position: relative;
  background-color: var(--azul);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  text-decoration: none;
  color: var(--blanco);
  font-weight: bold;
}

.button-contact-text {
  z-index: 1;
}

.button-contact-text a {
  color: var(--blanco);
}

#header-contact-btn:focus {
  outline: none;
}
#header-contact-btn .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#header-contact-btn .bubbles .bubble {
  background-color: var(--azul);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
#header-contact-btn .bubbles .bubble:nth-child(1) {
  left: 54px;
  width: 25px;
  height: 25px;
  animation: move-1 3.02s infinite;
  animation-delay: 0.2s;
}
#header-contact-btn .bubbles .bubble:nth-child(2) {
  left: 88px;
  width: 25px;
  height: 25px;
  animation: move-2 3.04s infinite;
  animation-delay: 0.4s;
}
#header-contact-btn .bubbles .bubble:nth-child(3) {
  left: 69px;
  width: 25px;
  height: 25px;
  animation: move-3 3.06s infinite;
  animation-delay: 0.6s;
}
#header-contact-btn .bubbles .bubble:nth-child(4) {
  left: 94px;
  width: 25px;
  height: 25px;
  animation: move-4 3.08s infinite;
  animation-delay: 0.8s;
}
#header-contact-btn .bubbles .bubble:nth-child(5) {
  left: 75px;
  width: 25px;
  height: 25px;
  animation: move-5 3.1s infinite;
  animation-delay: 1s;
}
#header-contact-btn .bubbles .bubble:nth-child(6) {
  left: 50px;
  width: 25px;
  height: 25px;
  animation: move-6 3.12s infinite;
  animation-delay: 1.2s;
}
#header-contact-btn .bubbles .bubble:nth-child(7) {
  left: 19px;
  width: 25px;
  height: 25px;
  animation: move-7 3.14s infinite;
  animation-delay: 1.4s;
}
#header-contact-btn .bubbles .bubble:nth-child(8) {
  left: 70px;
  width: 25px;
  height: 25px;
  animation: move-8 3.16s infinite;
  animation-delay: 1.6s;
}
#header-contact-btn .bubbles .bubble:nth-child(9) {
  left: 45px;
  width: 25px;
  height: 25px;
  animation: move-9 3.18s infinite;
  animation-delay: 1.8s;
}
#header-contact-btn .bubbles .bubble:nth-child(10) {
  left: 67px;
  width: 25px;
  height: 25px;
  animation: move-10 3.2s infinite;
  animation-delay: 2s;
}

@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -53px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-2 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -123px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-3 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -87px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-4 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -98px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-5 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -103px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-6 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -111px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-7 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -87px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-8 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -67px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-9 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -51px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes move-10 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -123px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

/* dropdowns chevrons */
.navbar-item a svg {
  margin-left: 10px;
  margin-top: 1px;
}

@keyframes upchevrons {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.navbar-links li:hover svg {
  fill: #00b9f9;
  animation: upchevrons 0.3s forwards;
}

/* START Breadcrumbs */
#breadcrumbs {
  position: sticky;
  top: 64px;
  width: 100%;
  background-color: var(--azul);
  height: auto;
  min-height: 32px;
  z-index: 9998;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#breadcrumbs .boxed {
  padding: 10px 40px;
}

#breadcrumbs .boxed a,
#breadcrumbs .boxed span,
#breadcrumbs .boxed p {
  color: var(--blanco);
  text-decoration: none;
  font-size: 14px;
}

#breadcrumbs .boxed a:hover {
  font-family: "Montserrat-extraBold", sans-serif;
}

#breadcrumbs .boxed p {
  margin: 0;
}

#breadcrumbs .boxed .current {
  font-family: "Montserrat-extraBold", sans-serif;
}
/* END Breadcrumbs */
/* START Privacy policy */
#privacy-policy {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999999999999999999;
  position: fixed;
  top: 10;
  left: 0;
}

#privacy-policy .privacy-title {
  font-family: "Bricolage Grotesque", sans-serif;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 40px;
}

#privacy-policy p {
  margin-bottom: 40px;
}

#privacy-policy .button-container {
  margin-bottom: 60px;
}

.button-container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.button-container button {
  padding: 12px 24px;
}

.button-container button:hover {
  background-color: var(--blanco);
  color: var(--azul);
}

.button-container button:first-child {
  background-color: var(--azul);
  color: var(--blanco);
  cursor: pointer;
}

.button-container button:not(:first-child) {
  background-color: var(--blanco);
  color: #1c1c1c;
  cursor: pointer;
}

.button-container button:first-child:hover,
.button-container button:not(:first-child):hover {
  background-color: var(--blanco);
  color: var(--azul);
}

.info.bg-black .info.boxed .cookies-formField {
  margin-bottom: 20px;
}

.info.bg-black .info.boxed .cookies-formField:nth-child(3) {
  margin-bottom: 40px;
}

.hide {
  display: none;
}

.navbar-links > li {
  width: calc(auto + 160px);
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
}

/* END Privacy policy */

@media screen and (min-width: 700px) {
  .navbar-toggle {
    display: none;
  }

  #navbar .navbar-menu,
  #navbar.opened .navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: block;
    height: 100%;
  }

  #navbar .navbar-links,
  #navbar.opened .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    list-style-type: none;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }

  #navbar .navbar-link:last-child {
    margin-right: 0;
  }
}

@media (max-width: 700px) {
  /* General styles */

  .onlyDesktop {
    display: none;
  }

  .onlyMobile {
    display: block;
  }

  .navbar-links li {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .navbar-links li a {
    font-size: 16px !important;
    width: auto;
  }

  /* Services */
  .service-container {
    width: 100%;
    padding: 48px 10px;
    background-color: #fbfbfb;
    display: flex;
    flex-direction: column;
  }

  .service {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }

  .service h2 a {
    color: #1c1c1c;
  }

  .service img {
    width: 100%;
    height: calc(100vw - 40px);
  }

  /* START Content elements styles */
  h1,
  h1 a,
  h1 span,
  h1 strong,
  .h1-size {
    font-size: 55px;
  }

  h2,
  h2 a,
  h2 span,
  h2 strong,
  .h2-size {
    font-size: 40px;
  }
  /* START Content elements styles */
  /* START Navbar styles */
  .navbar-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* END Navbar styles */
  /* START Containers styles */
  .boxed {
    padding: 48px 10px;
  }

  #breadcrumbs .boxed {
    padding: 10px 20px;
  }

  .container-flex {
    flex-direction: column;
  }

  /* col sizes */

  .col50-left,
  .col50-right,
  .col50-sole-left,
  .col50-sole-right {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .squares > .square-four {
    width: 50%;
    padding-bottom: 50%;
  }

  .fullwidth-img {
    padding-bottom: 50%;
  }
  /* END Containers styles */

  /* contact button iphone */

  #contacto.navbar-item {
    border-radius: 20px !important;
    margin-top: 40px;
  }
  .button-contact-text {
    z-index: 999999999;
  }

  /* privacy policy */
  #privacy-policy {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
  }

  #privacy-policy .info.bg-black .info.boxed p.white.privacy-title {
    margin-top: 20px;
    margin-bottom: 20px;
    /*font-size: 30px !important;*/
    font-size: 20px !important;
  }

  #privacy-policy .info.bg-black .info.boxed p.white,
  #privacy-policy .info.bg-black .info.boxed p.white a {
    /*font-size: 14px !important;*/
    font-size: 12px !important;
    font-family: "Montserrat-light", sans-serif !important;
  }

  #privacy-policy .button-container {
    margin-bottom: 30px;
  }

  #privacy-policy .button-container button {
    font-size: 16px;
  }

  #privacy-policy .boxed {
    padding: 20px;
  }
  
  .button-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .button-container button {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .button-container button:first-child {
    width: 100%;
  }
  .button-container button:not(:first-child) {
    width: 44%;
  }
}
.grecaptcha-badge {
  display: none;
}

/* START FAQ Accordion styles */
/* specific element font */
.tabs * {
  overflow: hidden;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 200;
}
/* tab styles */
.tab {
  width: 100%;
  color: var(--blanco);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 10px 10px 0;
}

.tabs > .tab:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.tab-label {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  width: 90%;
}
.tab-label:hover {
  color: var(--azul);
}
.tab-label::after {
  content: "+";
  font-size: 30px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 200;
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  color: var(--blanco);
  background: #1c1c1c;;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}
input:checked + .tab-label {
  color: var(--azul);
  background-color: #1c1c1c;;
}
input:checked + .tab-label::after {
  font-size: 30px;
  content: "-";
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 20px 20px 10px 0;
}

.tabs {
  margin-bottom: 10px;
}

.tabs p {
  margin: 0;
}

/* title */

.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tabs .row {
  display: flex;
}
.tabs .row .col {
  flex: 1;
}
.tabs .row .col:last-child {
  margin-left: 1em;
}
section#faq h3 {
  font-size: 20px !important;
}
section#faq p {
  margin-bottom: 1.2em !important;
}
/* END FAQ Accordion styles */
/* START inline icons */
.inline-link {
  display: flex;
  align-items: center;
}

.inline-link:hover {
  color: #333;
}

.icon-inline {
  height: 21px;
  width: 21px;
  margin-right: 10px;
}
/* END inline icon */
