* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-size: 20px;
  margin: 5px;
  font-family: "Arima Madurai", cursive;
}

/* ================================= HTML INDEX ================================= */

/* ============= HEADER ============== */
.navbar-nav {
  margin-left: auto;
}

.menu__index {
  font-size: 25px;
}

.menu__index ul li a {
  display: block;
  transition: all 0.4s linear;
  border-radius: 5px;
}

.menu__index ul li a:hover {
  background-color: #1bfa21;
}

@media (max-width: 990px) {
  .menu__index {
    font-size: 22px;
  }
  .container-fluid {
    text-align: center;
  }
}
/* ================ MAIN INDEX =================== */

.carrousel__index {
  max-width: 100%;
}

/* ============= CARDS ============== */

.main__index {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}

.main__index .card {
  width: 330px;
  height: 460px;
  border-radius: 9px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 20px;
  text-align: center;
  transition: all 0.25s;
}
.main__index .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}
.main__index .card img {
  width: 330px;
  height: 220px;
}
.main__index .card h4 {
  font-weight: 600;
  margin-top: 10px;
}
.main__index .card p {
  padding: 0 1rem;
  font-size: 16px;
  font-weight: 300;
}

/* ============= SECTION 1 ============== */

.section1 {
  position: relative;
  margin-top: 50px;
}

.section1__titulo {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.section1__titulo h2 {
  font-size: 60px;
}
.section1__titulo p {
  font-size: 15px;
}

.section1 img {
  width: 100%;
  height: 650px;
}
.button {
  display: inline-block;
  border-radius: 4px;
  border: none;
  color: #313131;
  text-align: center;
  font-size: 20px;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  position: absolute;
  opacity: 0;
  top: 0;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

@media (max-width: 990px) {
  .section1 {
    max-width: 100%;
    max-height: 100%;
  }
  .section1__titulo h2 {
    font-size: 40px;
  }
}

/* ================ FOOTER INDEX ================= */

.site-footer {
  margin-top: 20px;
  background-color: #26272b;
  padding: 25px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}
.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}
.site-footer hr.small {
  margin: 20px 0;
}
.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}
.site-footer a {
  color: #737373;
}
.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}
.footer-links a {
  color: #737373;
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
.site-footer .social-icons {
  text-align: right;
}
.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}
.copyright-text {
  margin: 0;
}
@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}
.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
.social-icons a.facebook:hover {
  background-color: #1bfa21;
}
.social-icons a.twitter:hover {
  background-color: white;
}
.social-icons a.linkedin:hover {
  background-color: #db2a19;
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

/* ================================= HTML ITALIA ================================= */

/* ================ HEADER ITALIA ================= */

.headerItalia {
  padding: 32px;
  margin: 10px;
}

.volverItalia {
  font-size: 18px;
  padding-bottom: 30px;
}

.headerItalia__menu {
  color: black;
  list-style: none;
  font-size: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.headerItalia__submenu {
  background-color: #d7d8f7af;
  color: #a6a6ada8;
  font-weight: bold;
  padding: 5px 8px 5px 8px;
  border-top: solid 5px;
  border-right: solid 20px;
  border-bottom: solid 5px;
  border-left: solid 20px;
}

/* ================ MAIN ITALIA =================== */

.tittle__italia {
  text-align: center;
  background-color: #26272b;
  color: whitesmoke;
  padding: 5px;
  border-radius: 20px;
}

.titleArte {
  text-align: center;
}

.principal__italia {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

.principal__italia p {
  text-align: justify-all;
  margin-top: 10px;
  font-size: 15px;
  margin: 15px;
}

#img1,
#img2,
#img3 {
  border-radius: 10px;
  width: 280px;
  height: 350px;
  margin: 15px;
}

#img1 {
  float: left;
}
#img2 {
  float: right;
}
#img3 {
  float: left;
  width: 250px;
  height: 270px;
}

@media (max-width: 450px) {
  #img1,
  #img2,
  #img3 {
    width: 180px;
    height: 200px;
  }
}

/* ================ FOOTER ITALIA ================= */

.footerItalia__indice {
  font-size: 22px;
  display: flex;
}

/* ================================= HTML ROMA ================================= */

/* ================ MAIN ROMA =================== */

.principal {
  background-color: #26272b;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .principal {
    text-align: center;
  }
}

.contenedor {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenido-principal {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.contenido-principal__imagen {
  vertical-align: top;
  margin-right: 20px;
  width: 50%;
  max-width: 550px;
}

.contenido-principal__contenedor {
  width: 50%;
}

.contenido-principal__titulo {
  font-weight: normal;
  font-size: 28px;
}

.contenido-principal__resumen {
  font-size: 18px;
  line-height: 25px;
  color: #cfcfcf;
}

/* --- --- CAROUSEL --- --- */
.carousel__contenedor {
  position: relative;
}

.carousel__anterior,
.carousel__siguiente {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border: none;
  top: calc(50% - 35px);
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  background: none;
  color: #fff;
  opacity: 20%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
  opacity: 100%;
}

.carousel__anterior {
  left: -30px;
}

.carousel__siguiente {
  right: -30px;
}

.carousel__lista {
  overflow: hidden;
}

.carousel__elemento {
  text-align: center;
}

.carousel__indicadores .glider-dot {
  display: block;
  width: 30px;
  height: 4px;
  background: #fff;
  opacity: 0.2;
  border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
  opacity: 0.5;
}

.carousel__indicadores .glider-dot.active {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  body {
    padding: 40px 0;
  }

  .contenido-principal {
    flex-direction: column;
  }

  .contenido-principal > * {
    width: 100%;
  }
  .secundarioRoma {
    background-color: none;
  }
}

.secundarioRoma {
  color: #fff;
  background-color: #787879;
}
@media screen and (max-width: 800px) {
  .secundarioRoma {
    background-color: white;
  }
}

.sectionRoma1 {
  margin-top: 30px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  background-color: #26272b;
  padding: 15px 25px 15px 25px;
}

.sectionRoma2 {
  margin: 30px;
  background-color: #26272b;
  padding: 15px 25px 15px 25px;
  border-radius: 10px;
}

/* ================ FOOTER ROMA ================= */

/* ================================= HTML DONDE IR ================================= */

/* ================ MAIN DONDE IR =================== */

/* ============= CARDS ============== */

.card__box {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}
.card__box .card {
  position: relative;
  max-width: 400px;
  height: 245px;
  background-color: #fff;
  margin: 30px 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.card__box .card:hover {
  height: 420px;
}

.card__box .card .imgCard {
  position: relative;
  width: 360px;
  height: 250px;
  top: -60px;
  left: 3px;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card__box .card .imgCard img {
  height: 270px;
  max-width: 100%;
  border-radius: 4px;
}

.card__box .card .content__card {
  position: relative;
  margin-top: -140px;
  padding: 10px 15px;
  text-align: center;
  color: #111;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.card__box .card:hover .content__card {
  visibility: visible;
  opacity: 1;
  margin-top: -40px;
  transition-delay: 0.3s;
}

/* ================ HEADER DONDE IR ================= */

.header {
  padding: 32px;
  margin: 10px;
}

.menu {
  color: black;
  list-style: none;
  font-size: 20px;
  text-align: center;
  display: flex;
  justify-content: flex-end;
}

.menu__submenu {
  font-size: 35px;
  background-color: white;
  color: #d7dbdd;
  font-weight: bold;
  padding: 5px 8px 5px 8px;
  border-top: solid 5px;
  border-right: solid 20px;
  border-bottom: solid 5px;
  border-left: solid 20px;
}
.logo {
  font-size: 35px;
  margin-left: 20px;
  padding-bottom: 70px;
}

.logo__imagen {
  width: 300px;
}

/* ================ CAROUSEL CATEGORIAS =================== */

h4,
h2,
small,
a {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.carousel__categorias {
  margin: 0px 10px;
  padding: 0;
  display: flex;
  height: 75vh;
  width: 100%;
  align-items: center;
}
.carousel__categorias h2 {
  font-size: 26px;
  line-height: 38px;
  padding-bottom: 24px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 10px;
  text-align: center;
}

/* images */

.slick-list {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 304px;
  padding: 10px 0px;
  margin: 0px auto;
  max-width: 90vw;
  overflow: hidden;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: 0.5s ease-in-out;
}
.slick {
  position: relative;
  width: 275px;
  padding: 0 18px;
  float: left;
  box-sizing: border-box;
  display: flex;
  height: 100%;
}
.slick h4 {
  position: absolute;
  z-index: 1;
  font-size: 22px;
  line-height: 23px;
  color: #fff;
  padding: 15px;
}
.slick h4 small {
  font-size: 15px;
  display: block;
}
.slick a img {
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}
.slick a img:hover {
  opacity: 0.85;
}

/* buttons */

.slick-arrow {
  border-radius: 30px;
  background-color: #fff;
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  border: 0;
  cursor: pointer;
}
.slick-arrow:focus {
  outline: 0;
}
.slick-arrow svg {
  width: 12px;
  height: 100%;
  color: rgba(0, 0, 0, 0.7);
}
.slick-prev {
  left: 0px;
}
.slick-next {
  right: 0px;
}

.sectionIr1 {
  background-color: #26272b;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.sectionIr2a {
  text-align: center;
  margin-top: 50px;
  background-color: #e74c3c;
  color: #fff;
  padding: 20px;
  border-radius: 10%;
}

.sectionIr2a__ej {
  background-color: #239b56;
  padding: 20px;
  border-radius: 20px;
}

.sectionIr2a__ej h4 {
  margin-bottom: 30px;
}
.sectionIr2a__ej p {
  margin: 25px;
}

/* ================================= HTML DATOS UTILES ================================= */

/* ================ MAIN DATOS UTILES =================== */

.ubicacion__datos {
  font-size: 16px;
  text-align: center;
  background-color: #239b56;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 30px;
}
.ubicacion__datos p {
  padding-left: 10px;
}

.maps {
  width: 1050px;
  height: 350px;
  padding-left: 110px;
}

@media screen and (max-width: 800px) {
  .maps {
    width: auto;
    height: auto;
    padding-left: 100px;
  }
  .ubicacion__datos {
    text-align: center;
    background-color: #239b56;
    border-radius: 20px;
    padding: 2px;
    margin-bottom: 15px;
  }
}

.aeropuertos__datos h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  background-color: #239b56;
  border-radius: 20px;
  padding: 15px;
}

.aeropuerto1__datos {
  margin-bottom: 50px;
}
.aeropuerto1__datos h4 {
  background-color: #e74c3c;
  border-radius: 20px;
  padding: 12px;
  margin-right: 675px;
}

@media screen and (max-width: 800px) {
  .aeropuerto1__datos h4 {
    background-color: #e74c3c;
    margin-right: 310px;
  }
}

.section1__datos {
  text-align: center;
  background-color: #239b56;
  border-radius: 20px;
  padding: 10px;
}

.section2__datos {
  background-color: #e74c3c;
  text-align: center;
  border-radius: 20px;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 750px;
  padding: 15px;
}

@media screen and (max-width: 800px) {
  .section2__datos h4 {
    background-color: #e74c3c;
    margin-right: 310px;
  }
}

.card__datos {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}
.card__datos .card {
  position: relative;
  max-width: 400px;
  height: 245px;
  background-color: #fff;
  margin: 30px 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.card__datos .card:hover {
  height: 550px;
}

.card__datos .card .imgCard {
  position: relative;
  width: 360px;
  height: 250px;
  top: -60px;
  left: 3px;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card__datos .card .imgCard img {
  height: 270px;
  max-width: 100%;
  border-radius: 4px;
}

.card__datos .card .content__card {
  position: relative;
  margin-top: -140px;
  padding: 10px 15px;
  color: #111;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.card__datos .card .content__card h4 {
  text-align: center;
}

.card__datos .card:hover .content__card {
  visibility: visible;
  opacity: 1;
  margin-top: -40px;
  transition-delay: 0.3s;
}

.cuando__datos {
  margin-top: 30px;
}

.cuando__datos h4 {
  text-align: center;
  font-size: 28px;
  background-color: #239b56;
  border-radius: 20px;

  padding: 10px;
}

.cuando__datos p {
  background-color: #e74c3c;
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 150px;
  padding: 10px;
}

/* ================ HEADER DATOS UTILES ================= */

/* ================ FOOTER DATOS UTILES ================= */
