@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

#banner {
    background: linear-gradient(#1b202e, rgba(0, 0, 0, 0.4)), url(/images/JuntosSMart.webp);
    background-size: cover;
    position: center;
    height: 100vh;
}

/* aqui para lo de las fotos */
.pictures_expe{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background-color: #f4f4f4;
    margin: 0;
    margin-bottom: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espacio entre los elementos del grid */
    padding: 10px;
    width: 100%;
}

/* Estilos para los elementos del grid */
.grid-item {
    display: flex;
    align-items: center;
    padding: 10px; /* Añade un poco de relleno alrededor de los elementos */
}

/* Estilos para la imagen */
.persona-image {
    width: 300px; /* Tamaño fijo para la imagen */
    height: 300px; /* Tamaño fijo para la imagen */
    object-fit: cover; /* Ajusta la imagen para cubrir completamente el contenedor */
    border-radius: 8px; /*Hace la imagen circular, si prefieres que sea cuadrada elimina esta línea */
    margin-right: 20px; /* Espacio entre la imagen y el texto */
}

/* Estilos para el texto */
.persona-text {
    height: 300px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Añade relleno al contenedor de texto */
    border-radius: 8px; /* Bordes redondeados */
    text-align: justify;
    font-size: 1em;
    /* border: 5px solid; */
}
.persona-text span{
    font-weight: 500;
}

/* Estilos responsivos */
@media (max-width: 1400px) {
    .persona-image{
        height: 250px;
        width: 250px;
    }
}
@media (max-width: 1250px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .persona-image{
        height: 300px;
        width: 300px;
    }
}
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .grid-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .persona-text{
        font-size: 1em;
    }
    .persona-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



.bannerr-text {
    text-align: center;
    color: #fff;
    padding-top: 25%;
}

.bannerr-text h1 {

    font-size: 120px;
    font-weight: 1200;
    font-family: 'Bebas Neue', sans-serif;
}

.bannerr-text p {
    font-size: 80px;
    font-family: 'Bebas Neue', sans-serif;
}

.bannerr-text span {
    font-weight: 1500;
}

:root {
    --dark-green: #112a34;
    --green-color: #004047;
    --white-color: #fff;
}

section {
    padding: 0 9rem;
    width: 100%;
}

.label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.heading {
    font-size: 2rem;
    margin-top: 1rem;
}

section.home {
    padding: 1rem;
    width: 100%;
    height: 100vh;
}

.home .home-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url("home-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: .5rem;
    border-radius: .5rem;
}

.home .home-box nav {
    width: 100%;
    height: 65px;
    background: linear-gradient(rgb(255, 255, 255, .2), rgb(255, 255, 255, .2));
    backdrop-filter: blur(1px);
    border-radius: .7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    z-index: 10;
    position: relative;
}

.home .home-box nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home .home-box nav .logo .bar {
    font-size: 1.35rem;
    color: var(--white-color);
    cursor: pointer;
    display: none;
}

.home .home-box nav .logo .bar:hover {
    color: var(--green-color);
}

.home .home-box nav .logo h3 {
    color: var(--white-color);
    font-weight: 400;
}

.home .home-box nav .menu .close {
    display: none;
}

.home .home-box nav .menu ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.home .home-box nav .menu ul li a {
    color: var(--white-color);
    font-weight: 400;
}

.home .home-box nav .menu ul li a:hover {
    color: rgb(255 255 255/70%);
}

.home .home-box nav .signup-login {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.home .home-box nav .signup-login a {
    color: var(--white-color);
    padding: .3rem 1rem;
    border-radius: 2rem;
}

.home .home-box nav .signup-login a:last-child {
    background: var(--green-color);
    padding: .3rem 1rem;
    border-radius: 2rem;
}

.home .home-box nav .signup-login a:hover {
    color: rgb(255 255 255/70%);
}

.home .home-box nav .signup-login a:last-child:hover {
    color: var(--white-color);
    background: #02636e;
}

.home .home-box .content {
    width: 100%;
    height: calc(100% - 65px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translate(0, -65px);
}

.home .home-box .content h5 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: .9rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.home .home-box .content h1 {
    font-size: 4rem;
    max-width: 50rem;
    color: var(--white-color);
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.home .home-box .content p {
    color: #eee;
    font-weight: 300;
    max-width: 40rem;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.home .home-box .content .search {
    width: 100%;
    max-width: 38rem;
    height: 45px;
    background: var(--white-color);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    padding: .3rem;
}

.home .home-box .content .search i {
    color: rgba(0, 0, 0, .5);
    margin: 0 .6rem;
}

.home .home-box .content .search input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-weight: 400;
}

.home .home-box .content .search button {
    height: 100%;
    padding: 0 1rem;
    border-radius: inherit;
    background: var(--green-color);
    border: none;
    outline: none;
    color: var(--white-color);
    font-weight: 400;
    cursor: pointer;
}

.home .home-box .content .search button:hover {
    background: #02636e;
}

.home .home-box .content h5,
.home .home-box .content h1,
.home .home-box .content p,
.home .home-box .content .search {
    transform: translate(0, 100px);
    opacity: 0;
}




.travel .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
}

.travel .container .box {
    padding: 0 1rem;
    text-align: center;
    max-width: 30rem;
    transform: translate(0, 100px);
    opacity: 0;
}

.travel .container .box img {
    height: 10rem;
}

.travel .container .box h4 {
    font-size: 1.2rem;
    margin: 1rem 0;
    margin-top: 2rem;
    font-weight: 600;
}

.travel .container .box p {
    color: #666;
}

/* travel section ends here  */

/* destination section starts here  */
.destinations {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.destinations .container {
    max-width: 1500px;
    margin: 0 auto;
}

.destinations .container .container-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.destinations .container .container-box .heading {
    max-width: 30rem;
}

.destinations .container .container-box .content {
    max-width: 35rem;
}

.destinations .container .container-box .content p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.destinations .container .container-box .content a {
    color: var(--green-color);
    font-weight: 600;
}

.destinations .container .container-box .content a i {
    margin-left: .5rem;
}

.destinations .container .container-box .content a:hover i {
    margin-left: .1rem;
}

.gallery {
    /* margin-top: 4rem; */
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem auto;
}

.gallery .box {
    height: 15rem;
    flex-grow: 1;
    overflow: hidden;
    border-radius: .8rem;
    position: relative;
}

.gallery .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery .box .text {
    position: absolute;
    bottom: 0;
    padding: 2.5rem 2rem;
    left: 0;
    z-index: 1;
}

.gallery .box .text h2 {
    font-size: 1.4rem;
    color: var(--white-color);
    font-weight: 500;
}

.destinations .container .container-box .heading,
.destinations .container .container-box .content {
    transform: translate(-200px);
    opacity: 0;
}

.destinations .gallery .box {
    transform: translate(0, 100px);
    opacity: 0;
}

.destinations .gallery .box2 {
    background: rgb(0, 156, 178);
    background: linear-gradient(6deg, rgba(0, 156, 178, 1) 0%, rgba(0, 112, 151, 1) 78%);
    width: 70%;
}

.destinations .gallery .box2 h2 {
    font-weight: 300;
    text-align: justify;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.destinations .gallery .box2 span {
    font-weight: 700;
}


.destinations .gallery .box4 {
    background: rgb(254, 170, 0);
    background: linear-gradient(6deg, rgba(254, 170, 0, 1) 0%, rgba(254, 126, 44, 1) 100%);
    width: 70%;
}

.destinations .gallery .box4 h2 {
    font-weight: 300;
    text-align: justify;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.destinations .gallery .box4 span {
    font-weight: 700;
}

.featured {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.featured .gallery .box:first-child {
    border: 1px solid rgba(0, 0, 0, .3);
    padding: 2rem 1.5rem;
}

.featured .gallery .box:first-child h2 {
    margin-bottom: .5rem;
}

.featured .gallery .box:first-child p {
    margin-bottom: .5rem;
    color: #666;
}

.featured .gallery .box:first-child a {
    position: absolute;
    bottom: 2rem;
    padding: .4rem 1rem;
    color: var(--white-color);
    background: var(--green-color);
    border-radius: 3rem;
    font-size: .9rem;
    font-weight: 400;
}

.featured .gallery .box:first-child a:hover {
    background: #02636e;
}

.featured .gallery .box:first-child .image {
    width: 21%;
    position: absolute;
    bottom: -1rem;
    right: 2rem;
}

.featured .gallery .box .content {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem 2rem;
}

.featured .gallery .box .content h2 {
    font-weight: 500;
    color: var(--white-color);
}

.featured .gallery .box .content p {
    font-size: .9rem;
    color: #eee;
}

.featured .gallery .box .content .review-and-idr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured .gallery .box .content .review-and-idr .review {
    font-size: .9rem;
    color: #eee;
}

.featured .gallery .box .content .review-and-idr .review i {
    color: #ffa600;
}

.featured .gallery .box .content .review-and-idr p {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
}

.featured .gallery .box {
    transform: translate(0, 100px);
    opacity: 0;
}

.feedback {
    background: url("section-background.jpg");
    background-position: center;
    background-size: cover;
    margin-top: 6rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.feedback .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.feedback .container h4 {
    color: rgb(255 255 255/90%);
}

.feedback .container h2 {
    max-width: 40rem;
    color: var(--white-color);
    text-align: center;
}

.feedback .container p {
    color: #eee;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

.feedback .voices {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.feedback .voices .voice {
    flex: 1 0 320px;
    background: var(--white-color);
    padding: 2rem;
    border-radius: .7rem;
}

.feedback .voices .voice .profile {
    display: flex;
    align-items: center;
}

.feedback .voices .voice .profile img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 2rem;
}

.feedback .voices .voice .profile .detail {
    margin-left: 1rem;
}

.feedback .voices .voice .profile .detail li {
    list-style: none;
}

.feedback .voices .voice .profile .detail li:first-child {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

.feedback .voices .voice p {
    margin-top: 1rem;
}

.feedback .container .label,
.feedback .container .heading,
.feedback .container .paragraph {
    transform: translate(0, 10px);
    opacity: 0;
}

.feedback .voices .voice {
    transform: translate(0, 100px);
    opacity: 0;
}


.container2 {
    display: grid;
    grid-template-columns: 2fr .8fr;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 5%;
}

.container2 .main-video {
    background-color: white;
    border-radius: 5px;
    padding: 10px;
}

.container2 .main-video video {
    width: 100%;
    border-radius: 5px;
}

.container2 .main-video .title {
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.container2 .video-list {
    background: #FFF;
    border-radius: 5px;
    height: 560px;
    overflow-y: scroll;
}

.container2 .video-list::-webkit-scrollbar {
    width: 7px;
}

.container2 .video-list::-webkit-scrollbar-track {
    background: #6e6e6e;
    border-radius: 50px;
}

.container2 .video-list::-webkit-scrollbar-thumb {
    background: #000b84;
    border-radius: 50px;
}

.container2 .video-list .vid video {
    width: 175px;
    border-radius: 5px;
}

.container2 .video-list .vid {
    display: flex;
    height: 130px;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}

.container2 .video-list .vid:hover {
    background: #eee;
}

.container2 .video-list .vid.active {
    background: #2980b9;
}

.container2 .video-list .vid.active .title {
    color: #FFF;
}

.container2 .video-list .vid .title {
    color: #333;
    font-size: 17px;
}

.article .latest-article,
.article .more-article .box {
    transform: translate(-200px, 0);
    opacity: 0;
    transition: all .4s ease-out;
}

.article .container2 .more-article .text .title h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.article .container2 .more-article .text li {
    margin-top: .3rem;
    list-style: none;
    color: #666;
}

@media (max-width : 1460px) {
    .gallery .box {
        height: 10rem;
    }

    .gallery .box .text h2 {
        font-size: 90%;
    }

    .gallery .box .text {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 1024px) {
    #banner {
        height: 50vh;
    }

    html {
        font-size: 85%;
    }

    .gallery .box .text h2 {
        font-size: 95%;
    }

    .gallery .box .text {
        padding: 1.5rem 2rem;
    }

    .bannerr-text {
        padding-top: 50%;
    }

    .bannerr-text h1 {
        font-size: 90px;
    }

    section {
        padding: 0 2rem;
    }

    .article .container {
        display: grid;
    }

    .article .container .latest-article video {
        height: auto;
    }
}

@media (max-width: 910px) {
    .container2 {
        grid-template-columns: 2fr 1fr;
        gap: 10px;
    }

    .bannerr-text {
        padding-top: 50%;
    }

    .bannerr-text h1 {
        font-size: 80px;
    }

    .home .home-box nav {
        padding: 0 1rem;
    }

    .home .home-box nav .menu ul {
        gap: 2rem;
    }

    .destinations .container .container-box {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .footer .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .heading {
        font-size: 2rem;
    }

    .destinations .container .container-box .content {
        font-size: .8rem;
    }

    .feedback .container p {
        font-size: .9rem;
    }

    .gallery {
        gap: 1rem;
    }

    .container2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 607px) {
    .bannerr-text {
        padding-top: 50%;
    }

    .bannerr-text h1 {
        font-size: 50px;
    }

    .gallery .box {
        height: 22rem;
    }

    .gallery .box2,
    .gallery .box4 {
        height: 15rem;
    }

    .gallery .box img {
        height: 130%;
    }

    .gallery .box .text h2 {
        font-size: 120%;
    }

    .gallery .box .text {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 457px) {

    .article .container .latest-article,
    .article .container .more-article {
        width: 100%;
        flex: 1 0 250px;
    }

    .article .container .more-article .box img {
        width: 100px;
        height: 85px;
    }

    .article .container .more-article .text h3 {
        font-size: 1.1rem;
    }
}


.main-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
