/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #171382;
    --secondary-color: #EE5007;
    --section-bg-color: #f0f8ff;
    --custom-btn-bg-color: #EE5007;
    --custom-btn-bg-hover-color: #c01f27;
    --dark-color: #110f16;
    --light-color: #f3f5f7;
    --p-color: #717275;
    --border-color: #7fffd4;
    --link-hover-color: #B22727;
    --body-font-family: 'Outfit', sans-serif;

    --h1-font-size: 60px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 20px;
    --btn-font-size: 14px;
    --copyright-font-size: 16px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
}

/*---------------------------------------
    COLORES DE FONDO         
-----------------------------------------*/
.dark {
    background: var(--dark-color)
}

.light {
    background: var(--light-color);
}

/*---------------------------------------
  SEPARADOR               
-----------------------------------------*/
.separador {
    height: 10px;
    width: 30%;
    background: var(--secondary-color);
    border: none;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 15px;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

/*---------------------------------------
  HERO DE INICIO  
-----------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    height: 70vh;
}

.hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}

.hero-section .container .row {
    height: 100%;
}

/*---------------------------------------
  HERO DE LO QUE INCLUYE
-----------------------------------------*/

.hero-section_2 {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    width: 100%;
    display: inline-block;
}

.hero-section_2 .section-overlay {
    z-index: 2;
    opacity: 0.45;
}

.hero-section_2 .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}

.hero-section_2 .container .row {
    height: 100%;
}

/*---------------------------------------
    IMAGEN DE FONDO              
-----------------------------------------*/
.img-wrap {
    z-index: -100;
}

.custom-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

.custom-img_2 {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.3);
}


/*---------------------------------------
TAB NAV(DESCRIPCION-ITINERARIO-RECOMENDACIONES)     
-----------------------------------------*/

.tab .nav-tabs {
    border-bottom: 0 none;
    margin-top: 20px;
}

.list-group-item {
    background-color: #110f16;
    color: white;
}

.btn_seccion {
    font-size: 14px;
    color: #fff;
    margin-right: 0;
    padding: 10px 20px;
    border-radius: 0;
    overflow: hidden;
    background: #EE5007;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.btn_seccion:hover {
    background: #545f60;
    color: #fff;
    margin-top: -19px;
    padding: 10px 20px;
    border: 1px solid #545f60;
}

/*---------------------------------------
    CARDS DE GALERIA           
-----------------------------------------*/

#pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
}

.p-descripcion {
    color: var(--p-color);
    font-size: 16px;
    font-weight: var(--font-weight-light);
}

.container .card {
    max-width: 280px;
    height: 180px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(202, 112, 188, 0.5);
    transition: 0.3s ease-in-out;
}

.container .card:hover {
    height: 450px;
}

.container .card .imgContainer {
    position: relative;
    width: 230px;
    height: 250px;
    top: -50px;
    left: 10px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.container .card .imgContainer img {
    max-width: 100%;
    border-radius: 4px;
}

.container .card .content {
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.container .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

@media (max-width: 330px) {
    .container .card .imgContainer {
        left: -2px;
    }
}