.headerYPF * {
  box-sizing: content-box;
}

@font-face {
  font-display: swap;
  font-family: DIN;
  font-style: normal;
  font-weight: 400;
  src: local("DIN"), url(./fonts/DINRegular.eot) format("embedded-opentype"),
    url(./fonts/DINRegular.woff2) format("woff2"),
    url(./fonts/DINRegular.woff) format("woff"),
    url(./fonts/DINRegular.ttf) format("truetype"),
    url(./fonts/DINRegular.svg) format("svg");
}

@font-face {
  font-display: swap;
  font-family: DIN;
  font-style: normal;
  font-weight: 500;
  src: local("DIN"), url(./fonts/DINMedium.eot) format("embedded-opentype"),
    url(./fonts/DINMedium.woff2) format("woff2"),
    url(./fonts/DINMedium.woff) format("woff"),
    url(./fonts/DINMedium.ttf) format("truetype"),
    url(./fonts/DINMedium.svg) format("svg");
}

@font-face {
  font-display: swap;
  font-family: DIN;
  font-style: normal;
  font-weight: 700;
  src: local("DIN"), url(./fonts/DINBold.eot) format("embedded-opentype"),
    url(./fonts/DINBold.woff2) format("woff2"),
    url(./fonts/DINBold.woff) format("woff"),
    url(./fonts/DINBold.ttf) format("truetype"),
    url(./fonts/DINBold.svg) format("svg");
}

@font-face {
  font-display: swap;
  font-family: DIN;
  font-style: normal;
  font-weight: 800;
  src: local("DIN"), url(./fonts/DINBlack.eot) format("embedded-opentype"),
    url(./fonts/DINBlack.woff2) format("woff2"),
    url(./fonts/DINBlack.woff) format("woff"),
    url(./fonts/DINBlack.ttf) format("truetype"),
    url(./fonts/DINBlack.svg) format("svg");
}

:root {
  /* Colors */
  --primary-700: #0451dd;
  --primary-500: #00407b;
  --primary-300: #647186;
  --grey-900: #212121;
  --grey-700: #616161;
  --grey-500: #9e9e9e;
  --grey-400: #bdbdbd;
  --grey-300: #e0e0e0;
  --grey-100: #f5f5f5;
  --grey-50: #fafafa;
  --grey-0: #ffffff;
  --grey-overlay: #1E1E1ECC;
  --lines-grey-900: #e1e5ec;

  /* DS2 SPECIFIC TOKENS */
  --ds2-primary: #0451DD;
  --ds2-text-primary: #212121;
  --ds2-bg-tag: #FAFAFA;
  --ds2-white: #FFFFFF;
  --ds2-grey-61: #616161;
  --ds2-grey-BD: #BDBDBD;

  /* Font Weight */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 800;

  /* Line Height */

  --lh-100: 0.875rem;
  /* 14px */
  --lh-150: 1.25rem;
  /* 20px */
  --lh-155: 1.375rem;
  /* 22px */
  --lh-200: 1.5rem;
  /* 24px */
  --lh-250: 1.75rem;
  /* 28px */
  --lh-300: 2.25rem;
  /* 36px */
  --lh-400: 2.375rem;
  /* 38px */
  --lh-500: 2.5rem;
  /* 40px */
  --lh-600: 2.75rem;
  /* 44px */
  --lh-700: 3rem;
  /* 48px */
  --lh-800: 3.25rem;
  /* 52px */
  --lh-900: 3.75rem;
  /* 60px */
  --lh-950: 4rem;
  /* 64px */

  --lh-h6: var(--lh-200);
  --lh-h5: var(--lh-250);
  --lh-h4: var(--lh-300);
  --lh-h3: var(--lh-500);
  --lh-h2: var(--lh-700);
  --lh-h1: var(--lh-800);

  /* Font Size */

  --fs-100: 0.75rem;
  /* 12px */
  --fs-150: 0.875rem;
  /* 14px */
  --fs-200: 1rem;
  /* 16px */
  --fs-300: 1.125rem;
  /* 18px */
  --fs-400: 1.25rem;
  /* 20px */
  --fs-500: 1.5rem;
  /* 24px */
  --fs-600: 1.75rem;
  /* 28px */
  --fs-700: 2rem;
  /* 32px */
  --fs-750: 2.5rem;
  /* 40px */
  --fs-800: 2.875rem;
  /* 46px */
  --fs-850: 3.375rem;
  /* 54px */
  --fs-900: 3.625rem;
  /* 58px */

  --fs-h6: var(--fs-300);
  --fs-h5: var(--fs-500);
  --fs-h4: var(--fs-600);
  --fs-h3: var(--fs-700);
  --fs-h2: var(--fs-750);
  --fs-h1: var(--fs-800);
}

@media (min-width: 50em) {
  :root {
    --fs-h6: var(--fs-300);
    --fs-h5: var(--fs-500);
    --fs-h4: var(--fs-700);
    --fs-h3: var(--fs-750);
    --fs-h2: var(--fs-800);
    --fs-h1: var(--fs-900);

    --lh-h6: var(--lh-200);
    --lh-h5: var(--lh-250);
    --lh-h4: var(--lh-400);
    --lh-h3: var(--lh-600);
    --lh-h2: var(--lh-800);
    --lh-h1: var(--lh-950);
  }
}

body {
  padding-top: 56px;
  font-family: DIN, sans-serif;
}

p,
.p {
  font-size: var(--fs-200);
  font-weight: var(--fw-regular);
  line-height: var(--lh-155);
  color: var(--grey-700);
}

.p--sm {
  font-size: var(--fs-150);
  font-weight: var(--fw-regular);
  line-height: var(--lh-150);
}

h1,
.h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
}

h3,
.h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  /* line-height: var(--lh-h3); */
}

h4,
.h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
}

h5,
.h5 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h5);
}

h6,
.h6 {
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h6);
}

.button--primary {
  padding: 12px 24px;
  background-color: var(--primary-700);
  color: var(--grey-0);
  font-weight: 700;
  font-size: 16px;
  border-radius: 2px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  border: none;
  text-decoration: none;
}

.border-radius {
  border-radius: 8px;
}

.button--primary:hover {
  background-color: #02399e;
}

.button--secondary {
  padding: 12px 24px;
  background-color: var(--grey-0);
  color: var(--primary-700);
  border: 1px solid var(--primary-700);
  font-weight: 700;
  font-size: 16px;
  border-radius: 2px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.button--secondary:hover {
  background-color: var(--primary-700);
  color: var(--grey-0);
}

small {
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}

.grey-900 {
  color: var(--grey-900);
}

.c-wht {
  color: var(--grey-0);
}

/* OVERFLOW HIDDEN */

.overflow-hidden {
  overflow: hidden;
}

/* PADDING BOTTOM */

.pb {
  padding-bottom: 60px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt {
  padding-top: 60px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-55 {
  padding-bottom: 55px;
}

.padding-top-bottom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-0 {
  padding-right: 0px;
}

.p0 {
  padding: 0px !important;
}

.mt {
  margin-top: 160px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb {
  margin-bottom: 60px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.m-auto {
  margin: 0px auto;
}

/* MARGIN BOTTOM 48px */
.mb20 {
  margin-bottom: 20px;
}

/* MARGIN BOTTOM 48px */
.mb48 {
  margin-bottom: 48px !important;
}

.mr-10 {
  margin-right: 12px;
}

.mr-20 {
  margin-right: 20px;
}

.m-b35 {
  margin-bottom: 35px;
}

h1.h3 {
  line-height: 32px;
}

@media only screen and (min-width: 768px) {


  .c-slider.owl-blog .owl-stage {
    margin: 0;
  }

  .pb {
    padding-bottom: 100px;
  }

  .mb {
    margin-bottom: 100px !important;
  }

  .pr {
    padding-right: 60px;
  }

  .padding-top-bottom {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  h1.h3 {
    line-height: 44px;
  }
}

/* DISPLAY FLEX */

.display-flex {
  display: flex;
}

/* TEXT ALIGN CENTER */
.text-align-center {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-align-center-mobile {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media only screen and (min-width: 768px) {
  .text-align-center-mobile {
    text-align: left;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* DISPLAY NONE BLOCK MOBILE DESKTOP */

.only-desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .only-mobile {
    display: none;
  }

  .only-desktop {
    display: block !important;
  }
}


/* submenuItems */
.navFlex {
  position: relative;
}


.navFlex .absolute {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.captiono {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
  z-index: 99;
}

.captiono h3 {
  color: white;
  font-size: 32px !important;
  line-height: 38px !important;
  margin-bottom: 25px !important;
}

.captiono p {
  color: white;
  font-size: 16px;
  line-height: 22px;
}

.navFlex .contenido-submenu {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.navFlex .contenido-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0.2));
  height: 400px;
  width: 100%;
  display: block;
}

@media only screen and (min-width: 1060px) {
  .sitios-button .captiono p {
    height: 150px;
  }
}

@media only screen and (min-width: 1200px) {
  .navFlex .contenido-submenu::before {
    content: "";
    height: 300px;
  }

  .sitios-button .captiono p {
    height: 120px;
  }
}

@media only screen and (min-width: 1600px) {
  .sitios-button .captiono p {
    height: 100px;
  }
}


@media only screen and (min-width: 1700px) {
  .beneficios-container {
    margin-left: -100px !important;
  }
}

@media only screen and (min-width: 1850px) {
  .beneficios-container {
    margin-left: -200px !important;
  }
}

.relative {
  position: relative;
}



/* SECTION GRAY SLIDER NOVEDADES */

.section-gray {
  background-color: #F5F5F5;
  padding: 50px 0px;
  box-sizing: border-box;
  box-sizing: content-box;
}

.section-gray .c-slider-counter-box,
.section-gray .c-slider-counter-box .counter-box,
#nav-servicio-aeropuertos.c-slider-counter-box,
#nav-servicio-aeropuertos #nav-counter {
  margin-right: 15px !important;
}

@media only screen and (min-width: 768px) {
  .section-gray {
    background-color: #F5F5F5;
    padding: 100px 20px 50px 20px;
  }

  #nav-servicio-aeropuertos.c-slider-counter-box,
  #nav-servicio-aeropuertos #nav-counter {
    margin-left: 0 !important;
  }

}

.section-gray {
  position: relative;
}

.owl-novedades .item {
  position: relative;
  /* padding-left: 15px; */
}

@media only screen and (min-width: 1061px) {
  .owl-novedades .item {
    padding-left: auto;
  }
}



#nav-owl-novedades {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}

.text-xs {
  font-size: 14px;
  display: block;
  margin-top: 60px;
}

.max-w-380 {
  max-width: 380px;
}

.slider-blog .owl-next {
  top: -2px;
  position: relative;
}

/* WRAPPER DS2 */
.wrapper-ds2 {
  max-width: 1296px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

@media (min-width: 1366px) {
  .wrapper-ds2 {
    padding: 0;
  }

  .mb-32 {
    margin-bottom: 32px !important;
  }
}