
.inner-wrapper .hero {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    height: 250px;
}

.inner-wrapper .hero .darken {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.back-link {
    display: flex;
    align-items: center;
    color: #23433e;
    text-decoration: none;
    margin-top: 20px;
}

.back-link img {
    width: 42px;
    height: 42px;
    margin-right: 10px;
}

.intro {
    background: #082b2b;
    color: white;
    margin-top: 20px;
    padding: 20px 15px;
}

.intro .title {
    font-family: 'contralto-small', sans-serif;
    font-size: 2em;
    color: white;
    font-weight: 600;
}

.intro .subtitle {
    font-family: 'contralto-small';
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #b57732;
}

.intro .text {
    font-size: 1em;
    font-weight: 200;
}

.intro img {
    margin-top: 20px;
    width: 70%;
    justify-self: center;
}

.infos {
    margin-top: 40px;
    padding: 0px 20px;
    text-align: center;
}

.infos h2 {
    font-family: 'contralto-small', sans-serif;
    font-weight: 600;
    font-size: 1.7em;
    color: #23433e;
    text-align: left;
}

.infos .collection {
    margin-bottom: 20px;
}

.infos .collection .items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.infos .collection .items .item {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    align-items: center;
}

.infos .collection .items .item img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.infos .button {
    margin-top: 20px;
}

.tour {
    text-align: center;
    margin-top: 50px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour .darken {
    background-color: #061d1dab;
    padding: 100px 20px;
}

.tour h1 {
    font-family: 'contralto-small', sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: white;
}
.tour .button {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .inner-wrapper .hero {
        height: 400px;
    }

    .intro {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding: 40px 80px;
    }

    .intro>div {
        
    }
    .intro img {
        width: 33%;
        margin-left: 40px;
    }
    .tour .button {
        margin-top: 40px;
    }
}

@media (min-width: 1200px) {
    
}