:root {
  /*Primary colors*/
  --color-yellow: #f1bb07;
  --color-light-yellow:#c6bba1;
  --color-green: #83af18;
  --color-green-hover: #15c015;
  --color-light-green: #5cb73c;
  --color-black: #000;
  --color-white: #fff;
  --color-light-gray: #f8f8f8;
  --color-gray: #9c9c9c;
  --color-dark-gray: #737373;
  --color-darker-gray: #494848;
  --color-blue:#1972b9;
  --color-blue-hover:#1444b8;
  --color-light-blue:#2098d1;
  --color-orange:#f39200;
  --color-orange-hover:#ffa826;
  --color-red:#bd2723;
}

/*Border Radius 5\3px*/
/*Border Radius 10px*/
/*Border Radius Full*/
/*Box Shadow*/
/*transition*/
/*Text Shadow*/
:root {
  /*Font size*/
  --font-size-s: .8rem;
  --font-size-m: 1rem;
  --font-size-l: 1.4rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3rem;
  /*Spacing*/
  --spacing-xs: .3rem;
  --spacing-s: .5rem;
  --spacing-m: 1rem;
  --spacing-l: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  --max-width: 70rem;
}

body {
  font-family: "avenirLight";
  font-size: 10px;
  font-weight: 100;
  text-align: center;
  color: var(--color-black);
  line-height: 1.2rem;
  background: var(--color-white);
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

div,
ul,
li,
h1,
h2,
h3,
h4,
p,
a,
span,
strong,
form,
input,
label,
textarea,
header,
nav,
section,
footer,
hgroup,
article,
figure,
hgroup,
content {
  position: relative;
  box-sizing: border-box;
}

body,
ul,
li,
h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

*:focus {
  outline: none;
}

a img {
  border: none;
}

h2, h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0;
  font-weight: bold;
  line-height: 2.2rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3rem);
  letter-spacing: -1px;
  line-height: 2rem;
  color: var(--color-light-yellow);
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}
p.italic {
  font-family: "D-DIN-Bold";
}

ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  align-items: flex-start;
  font-size: 1rem;
}
ul li {
  text-align: left;
  line-height: 1.6rem;
}
ul li .fas {
  color: var(--color-orange);
  font-size: 0.5rem;
  margin-right: 0.5rem;
}

/*Estructura general*/
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/*Bold Font*/
h1,
h2,
h3,
h4 {
  font-family: "avenirBlack", sans-serif;
  font-weight: 400;
}

/*Regular Font*/
h3 {
  font-family: "avenirLight", sans-serif;
  font-size: 100;
}

/*Fuentes*/
@font-face {
  font-family: "avenirBlack";
  src: url("../fonts/avenirBlack/Avenir-Black-webfont.eot");
  src: url("../fonts/avenirBlack/Avenir-Black-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/avenirBlack/Avenir-Black-webfont.woff") format("woff"), url("../fonts/avenirBlack/Avenir-Black-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "avenirLight";
  src: url("../fonts/avenirLight/avenir-light.eot");
  src: url("../fonts/avenirLight/avenir-light.eot?#iefix") format("embedded-opentype"), url("../fonts/avenirLight/avenir-light.woff") format("woff"), url("../fonts/avenirLight/avenir-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*CTA*/
.defaultcta {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border: none;
  font-size: clamp(0.6rem, 2vw, 0.8rem);
  background: var(--color-blue);
  color: var(--color-white);
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
}
.defaultcta:hover, .defaultcta:active {
  text-decoration: none;
  background: var(--color-orange-hover);
}

.text-link {
  display: flex;
  flex-direction: column;
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: var(--color-blue);
}
.text-link:active, .text-link:hover {
  text-decoration: underline;
}

.form {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.form__item {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 2rem;
}
.form__item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0.125rem;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.form__item label {
  font-size: var(--font-size-m);
  color: var(--color-dark-gray);
  top: 3rem;
  left: 1rem;
  z-index: 2;
  transition: all 0.5s ease;
  position: absolute;
}
.form__item input {
  font-size: var(--font-size-m);
  line-height: 20px;
  border: solid var(--color-light-gray);
  border-width: 0 0 1px 0;
  padding: var(--spacing-m);
  background-color: var(--color-light-gray);
}
.form__item input:not(:-moz-placeholder) + label {
  top: 0.5rem;
}
.form__item input:not(:placeholder-shown) + label, .form__item input:focus + label {
  top: 0.5rem;
}
.form__item:focus-within::before {
  transform: scaleX(1);
}
.form__item:focus-within input {
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
}
.form__item .defaultcta {
  align-self: flex-end;
}

.general-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 95%;
  padding-left: 1rem;
}
.general-list li {
  list-style: none;
  text-align: left;
  list-style: disc;
  line-height: 1.8rem;
  font-size: 1.2rem;
}
.general-list li::marker {
  font-size: 1.5rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
}
.hamburger a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hamburger a img {
  width: 2rem;
  height: 2rem;
}
.hamburger a img:hover, .hamburger a img:active {
  opacity: 0.8;
}
@media screen and (min-width: 767px) {
  .hamburger {
    display: none;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: flex-start;
}
.logo a {
  max-width: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .logo a {
    max-width: 10rem;
  }
}
.logo a img {
  width: 100%;
  height: auto;
}

.social {
  align-items: center;
  gap: 0.5rem;
  display: none;
}
@media screen and (min-width: 800px) {
  .social {
    display: flex;
  }
}
.social a {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
}
.social a:active, .social a:hover {
  opacity: 1;
}
.social a img {
  width: 1.6rem;
  height: auto;
}

.video {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.video iframe {
  width: 100%;
}

.directorio {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  font-size: 1rem;
}
.directorio th {
  background-color: var(--color-blue);
  color: #fff;
  padding: 5px;
  font-size: 16px;
}
.directorio td {
  color: #666;
  padding: 10px;
  text-align: left;
  line-height: 22px;
}
.directorio tr:nth-child(even) {
  background: #f1f1f1;
}

.cookies {
  background-color: var(--color-white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: var(--spacing-m);
  box-shadow: 0.2rem 0.2rem var(--color-black);
  -moz-box-shadow: 0.2rem 0.2rem var(--color-black);
  -webkit-box-shadow: 0.2rem 0.2rem var(--color-black);
}

.hide {
  animation: hide 1s;
  -webkit-animation: hide 1s;
  bottom: -10rem;
}

/* Form animation*/
@keyframes hide {
  from {
    bottom: 0px;
    opacity: 1;
  }
  to {
    bottom: -10rem;
    opacity: 0;
  }
}
/* Chrome, Safari, Opera */
.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contacto__form .contact__form {
  width: 100%;
  max-width: 35rem;
}
.contacto__form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 1rem;
}
.contacto__form form .preview-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contacto__form form .field-holder {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.contacto__form form .field-holder input[type=text],
.contacto__form form .field-holder input[type=email] {
  background-color: rgba(255, 255, 255, 0.9);
}
.contacto__form form .field-holder input, .contacto__form form .field-holder select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.contacto__form form .field-holder select {
  padding: 0;
}
.contacto__form form .field-holder select option {
  padding: 0.5rem;
}
.contacto__form form .field-holder .defaultcta {
  width: 10rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .closebtn {
  position: absolute;
  right: var(--spacing-m);
  top: var(--spacing-m);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: var(--spacing-xs);
  background: var(--color-white);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
  transition: all 0.5s ease;
}
.modal .closebtn:active, .modal .closebtn:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.modal .closebtn:focus {
  background: var(--color-green);
}
.modal__msg {
  width: 80%;
  height: 80%;
  max-width: 40rem;
  background-color: var(--color-white);
  padding: var(--spacing-s);
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  /* Add animation */
  animation: show 0.5s;
  /* Chrome, Safari, Opera */
  -webkit-animation: show 0.5s;
}
.modal:target {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form animation*/
@keyframes show {
  from {
    top: -50rem;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
.slider {
  width: 100%;
}
.slider__holder {
  width: 100%;
}
.slider__holder li, .slider__holder a, .slider__holder img {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 3;
  background: var(--color-blue);
  overflow-y: scroll;
  transform: translate(80rem);
  transition: all 0.5s ease;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .nav {
    z-index: 1;
    height: auto;
    position: relative;
    right: inherit;
    transform: translate(0);
  }
}
.nav__holder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 800px) {
  .nav__holder {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2%;
  }
  .nav__holder--top {
    background-color: var(--color-orange);
  }
}
.nav__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  padding: 1rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 800px) {
  .nav__item a {
    padding: 0.5rem;
    font-size: 1rem;
  }
}
.nav__item a:hover,
.nav__item a .current-menu-item {
  box-shadow: inset 0 -1px #fff;
}
.nav__item--close {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: sticky;
  top: 0;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 800px) {
  .nav__item--close {
    display: none;
  }
}
.nav__item--close img {
  width: 2.5rem;
  height: 2.5rem;
}
.nav__item--show:hover .subMenu {
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 -1px var(--color-orange);
}

.show {
  transform: translate(0);
  transition: all 0.5s ease;
}

/*Submenu*/
@media screen and (min-width: 800px) {
  .subMenu {
    width: 200px;
    position: absolute;
    top: 30px;
  }
}
.subMenu a {
  text-align: left;
  background: #fff;
  color: #000;
  box-shadow: inset 0 -1px #dedede;
}
.subMenu a:hover {
  box-shadow: inset 0 -1px var(--color-orange);
}

/*Responsive Top Menu*/
#rightMenu {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 800px) {
  #rightMenu {
    display: none;
  }
}

.orange {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 2rem;
  background: var(--color-orange);
}
@media screen and (min-width: 800px) {
  .orange {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
.orange h1 {
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--color-white);
  line-height: initial;
}

.orange__item {
  display: flex;
  flex-direction: column;
}

.orange__item--1 {
  text-align: left;
  padding: 0 1rem;
  order: 2;
}
@media screen and (min-width: 800px) {
  .orange__item--1 {
    padding: 2rem 0 0 2rem;
    order: 1;
  }
}

.orange__item--2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 1;
  padding: 2rem 0 0;
}
@media screen and (min-width: 800px) {
  .orange__item--2 {
    padding: 2rem 2rem 0 0;
    order: 2;
  }
}
.orange__item--2 img {
  width: 60%;
  height: auto;
}
@media screen and (min-width: 800px) {
  .orange__item--2 img {
    width: 100%;
  }
}

.orange__item--3 {
  grid-row: 2/3;
  grid-column: 2/3;
  bottom: 0;
  right: 0;
  text-align: right;
  padding: 0;
  order: 3;
}

.col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 20px 0;
}
@media screen and (min-width: 767px) {
  .col {
    grid-template-columns: 2fr 1fr;
  }
}
.col__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
}
.col__item h2 {
  font-size: clamp(1rem, 4vw, 1.6rem);
}
.col__item .affiliadosTitle {
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 100%;
}

.news {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  width: 100%;
  padding: 1rem;
}
.news__item {
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  padding: 1rem;
}
.news__item h3 {
  font-size: clamp(0.8rem, 2vw, 1rem);
  line-height: inherit;
  font-family: "avenirBlack";
}
.news__img {
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  overflow: hidden;
}
.news__desc {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.publicidad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  width: 100%;
  padding-bottom: 3rem;
}
.publicidad__box {
  display: flex;
  flex-direction: column;
}
.publicidad__box img {
  width: 100%;
  height: auto;
}

.form {
  border: 1px solid #dedede;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__items label,
.form__items input,
.form__items textarea,
.form__items select {
  font-size: 1rem;
  text-align: left;
  width: 100%;
}
.form__items input[type=text],
.form__items input[type=email],
.form__items input[type=tel],
.form__items textarea {
  background-color: #eaeaea;
  width: 100%;
  border: 1px solid #dedede;
  padding: 1rem;
}
.form__items input[type=text]:hover, .form__items input[type=text]:focus,
.form__items input[type=email]:hover,
.form__items input[type=email]:focus,
.form__items input[type=tel]:hover,
.form__items input[type=tel]:focus,
.form__items textarea:hover,
.form__items textarea:focus {
  border-color: #090;
}
.form__items textarea {
  min-height: 115px;
  padding: 1rem;
}
.form__items .defaultcta {
  max-width: 10rem;
  text-align: center;
  align-self: flex-end;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact p a {
  color: var(--color-black);
}
.contact p a:hover {
  text-decoration: underline;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  background: var(--color-blue);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 800px) {
  .header {
    padding: 0;
  }
}

.mainLogo {
  width: 120px;
  position: absolute;
  z-index: 2;
  left: 4%;
  top: 0;
  background: #fff;
  padding: 5px;
  box-shadow: 0 5px 10px -5px #000;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
}
.mainLogo a, .mainLogo img {
  display: flex;
  flex-direction: column;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.content article {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.logos a {
  display: flex;
  flex-direction: column;
}
.logos a img {
  width: 100%;
  height: auto;
}

.contentPage {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 80rem;
  width: 90%;
}

footer {
  width: 100%;
  padding: 4rem 0;
  background-color: var(--color-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 80rem;
  width: 90%;
  gap: 1rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  text-align: left;
  color: var(--color-white);
  font-size: 1rem;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .footer__list {
    align-items: flex-start;
  }
}
.footer__list--menu {
  display: none;
}
@media screen and (min-width: 800px) {
  .footer__list--menu {
    display: flex;
  }
}
.footer__list a {
  color: var(--color-white);
}

.footerLogo {
  display: flex;
  flex-direction: column;
}
.footerLogo a {
  display: flex;
  flex-direction: column;
}
.footerLogo a img {
  width: 100%;
  max-width: 10rem;
  height: auto;
}/*# sourceMappingURL=main.css.map */