:root {
  --blanco: #f8fbfd;
  --negro: #2A2E3B;
  --gris: #7684A6;
  --celeste: #2BBDEF;
  --azul: #0049fc;
  --rojo: #A64037;
}
body {
  background-color: var(--blanco);
  color: var(--negro);
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
  color: var(--negro);
}
a:hover{
  color: var(--azul);
}
img {
  object-fit: cover;
}
figure img {
  width: 100%;
}
figure.table{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
section {
  padding: 60px 0;
}
table {
  width: 100%;
}
.btn-azul{
  background-color: var(--azul);
  color: var(--blanco);
  transition: all 0.15s ease;
  letter-spacing: 0.5px;
}
.btn-azul:hover{
  background-color: #000342;
  color: var(--blanco);
}
.form-control:focus {
  box-shadow: none;
}
.multi_carousel {
  display: flex;
  overflow: hidden;
  justify-content: center;
}
.multi_carousel .items_carousel {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}
.destinos1 img {
  width: 320px;
  height: 200px;
  object-fit: cover;
}
#quienes_somos {
  position: relative;
  color: var(--blanco);
}
#quienes_somos > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
#cotizar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--blanco);
  position: relative;
}
#cotizar > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#cotizar a {
  padding: 15px 30px;
  box-shadow: #0c6fab85 1px 1px 2px;
  color: #23465e;
  font-weight: bold;
  font-size: 25px;
}
#destinos_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
#destinos_container img {
  width: 280px;
  height: auto;
}
#destinos_container img, .destinos_container_modal img{
  transition: all 0.2s ease;
}
#destinos_container img:hover, .destinos_container_modal img:hover {
  filter: brightness(1.03) contrast(1.05) sepia(15%);
  box-shadow: #0000004a 2px 2px 4px;
  transform: scale(1.07);
}
.destinos_container_modal {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}
#whatsapp_fixed{
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1050;
}
#whatsapp_fixed img{
  width: 60px;
  opacity: 0.75;
  transition: all 0.15s ease;
}
#whatsapp_fixed img:hover{
  width: 70px;
  opacity: 1;
}

/* MODAL DESTINO MENU */
  #modal-destinos .titulo,
  #modal-destinos .text {
    display: flex;
  }
  #modal-destinos .text {
    flex-direction: column;
  }
  #modal-destinos .titulo {
    justify-content: center;
    margin-bottom: 40px;
  }
  #modal-destinos .text h2 {
    font-weight: bold;
    color: var(--celeste);
    line-height: 40px;
  }
  #modal-destinos .text p {
    margin: 0;
    color: #f2f2f2;
  }
  #modal-destinos .line div {
    background-color: var(--celeste);
    height: 100%;
    width: 6px;
    margin-right: 10px;
    border-radius: 3px;
  }
/* MODAL MENU PHONE */
  #modal_menu_phone .modal-content{
    background-color: var(--azul);
    color: white;
  }
  .btn-close2{
    width: 30px; height: 30px;
    border: none;
    background: none;
    padding: 0;
  }
  .btn-close2 .close div{
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    position: relative;
    transform: translate(1px, 2px) rotate(45deg);
  }
  .btn-close2 .close div:nth-child(2){
    transform: translate(1px, -1px) rotate(-45deg);
  }
/* UTILIDADES DE LA PÁGINA */
  .flex_row {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .separador {
    background-color: black;
    width: 2px;
    height: 30px;
  }

  .blanco {
    background-color: var(--blanco);
  }

  .negro {
    background-color: var(--negro);
  }

  .azul {
    background-color: var(--azul);
  }

  .celeste {
    background-color: var(--celeste);
  }

  .rojo {
  background-color: var(--rojo);
}
/* ESTILOS DEL HEADER GENERAL */
  #header_1,
  #header_2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #header_1 {
    background-color: var(--azul);
    height: 50px;
  }

  #header_1 a {
    margin: 0 10px;
    padding: 0 10px;
    color: var(--blanco);
    line-height: 30px;
    font-size: 0.9em;
    border-radius: 2px;
  }

  #header_1 svg {
    fill: var(--blanco);
    margin-right: 5px;
  }

  #header_1 .btn2 p {
    margin: 0;
  }

  #header_2 {
    height: 100px;
    background-color: #f8fbfdec;
    transition: all 0.4s ease;
  }

  #header_2.itinerario_fix {
    margin-top: 21px;
    height: 79px;
  }

  #header_2.itinerario_fix img {
    height: 40px;
  }

  #header_2 > div {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
  }

  #header_2 .header_btn1 {
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 0 10px;
    color: var(--negro);
    transition: all 0.1s ease;
  }

  #header_2 .header_btn1:hover {
    color: var(--azul);
    font-weight: bold;
  }

  #header_2 .header_btn1 p,
  #modal_menu_phone .header_btn2 p {
    margin: 0;
    font-weight: bold;
    font-size: 13px;
    line-height: 12px;
  }

  #header_2 .header_btn1 p:nth-child(2),
  #modal_menu_phone .header_btn2 p:nth-child(2) {
    font-size: 1.25em;
    line-height: 19px;
  }

  #menu_phone {
    display: none;
    border-radius: 5px;
    overflow: hidden;
    width: 60px;
    height: 40px;
  }

  #menu_phone div {
    width: 100%;
    height: 7px;
    background-color: var(--azul);
  }

  #modal_menu_phone .header_btn2{
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px 10px;
    color: var(--blanco);
    transition: all 0.1s ease;
  }
  #modal_menu_phone .form_menu{
    position: absolute;
    bottom: 0px;
    width: 90%;
  }
  #modal_menu_phone form{
    color: var(--negro);
  }
  header.header_fixed{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  main.extraTop{
    margin-top: 150px;
  }

  @media (max-width: 1110px) {
    #header_2 > div > div:nth-child(4) {
      display: none;
    }

    #header_2 > div {
      padding: 0 35px;
    }

    #header_2 .header_btn1 {
      margin: 0;
    }

    #header_2 .header_btn1 p:nth-child(1) {
      font-size: 11px;
    }

    #header_2 .header_btn1 p:nth-child(2) {
      font-size: 1.2em;
    }
  }

  @media (max-width: 770px) {
    #header_2 > div > div:nth-child(1) > a > img {
      height: 50px;
    }

    #header_2 .header_btn1 svg {
      display: none;
    }

    #header_2 > div {
      padding: 0 20px;
    }
  }

  @media (max-width: 590px) {
  #menu_phone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #header_2 > div > div.flex_row {
    display: none;
  }

  #header_1 > div > a:nth-child(3),
  #header_1 > div > div:nth-child(2) {
    display: none;
  }
}
/* ESTILOS DEL FOOTER GENERAL */
    footer {
      color: var(--blanco);
      padding: 40px 0 0;
      position: relative;
    }

    #footer_bg {
      z-index: -2;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    footer h2,
    footer h3,
    footer h4 {
      font-weight: 400;
    }

    footer p,
    footer a {
      font-size: 0.92em;
      font-weight: 300;
      margin: 0;
    }

    footer a {
      color: var(--blanco);
    }

    footer a:hover {
      color: #83ffef;
    }

    #footer_social {
      width: 150px;
      margin: auto;
      justify-content: space-between;
    }

    @media (max-width: 767px) {
      footer {
        padding-top: 25px;
      }

      #footer_last {
        margin-top: 20px;
      }
    }
/* ESTILOS DE FORMULARIOS */
  /* CONTACTO */
    #contacto {
      padding: 120px 0;
      background: linear-gradient(180deg, rgba(248, 251, 253, 1) 0%, rgba(227, 246, 252, 1) 100%);
    }

    #contacto .bg {
      position: absolute;
      z-index: 0;
      top: 0;
      clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0 100%);
    }

    #contacto .form_container {
      background: #00152e70;
      padding: 30px;
      border-radius: 5px;
      color: var(--blanco);
    }

    #contacto .input1 {
      border-radius: 2px;
      background-color: #0000001c;
      border-top: 0;
      border-left: 0;
      border-right: 0;
      color: var(--blanco);
    }

    #contacto .social{
      margin-top: 35px;
      text-align: center;
    }
    #contacto h6{
      font-size: 20px;
      margin-bottom: 15px;
    }
    #contacto a{
      margin: 0 -2px;
      width: 125px;
      display: inline-block;
    }
    #contacto a img{
      width: 100%;
    }

    @media (max-width: 991px) {
      #contacto > .bg {
        clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
      }
    }
  /* ESTILOS DE VIAJES */
    #nav_itinerario {
      z-index: 200;
    }

    #Itinerario p {
      text-align: justify;
    }

    .viaje_dias,
    .viaje_noches {
      margin: 20px;
      padding: 20px;
      box-shadow: #0036788a 1px 1px 2px 0px;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .viaje_dias {
      background-color: #ffbd01;
    }

    .viaje_noches {
      background-color: #092e64;
      color: var(--blanco);
    }

    .cards_container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .destino,
    .fecha {
      width: fit-content;
      padding: 15px;
      border-radius: 5px;
      box-shadow: black 1px 1px 2px 0px;
    }

    .destino > div h6 {
      font-size: 1.3em;
      margin: 0;
    }

    .destino > div p {
      font-size: 13px;
      margin: 0 -5px 0;
      color: #7c8fa3;
    }

    .fecha h6 {
      font-size: 1em;
      margin: 0;
    }

/* PAGINACION DE BOOTSTRAP */
.nav-link {
  color: rgb(103, 104, 112);
  font-weight: 600;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 24px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: white;
  background-color: var(--azul);
  border-color: var(--azul);
}