.hero {
    height: auto;
    padding-top: 120px;
    width: 100%;
    background-image: url('/assets/imgs/image-01.jpg');
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero p {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-weight: 100;
    font-size: 22px;
    margin-bottom: 2em;
}

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    background: #052E37;
    width: 100vw;
}

.details .exList {
    display: none;
}


@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 4em 0;
        padding-top: 12em;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('/assets/imgs/mobile-image-01.jpg');
    }
    .hero p {
        font-size: 16px;
    }

    .details {
        grid-template-columns: auto;
        grid-template-rows: auto 1fr;
    }

    .details .experiences {
        grid-row-start: 0;
        grid-row-end: 0;
        position: relative;
    }
    .details .experiences .carousel {
        z-index: 4;
        position: relative;
    }

    .details .experiences .exList {
        display: block;
        z-index: 2;
    }

    .details .weather {
        grid-row-start: 1;
        grid-row-end: 1;
    }
}