.maps {
    background-color: var(--bg-color);
    padding-bottom: 20rem;
    overflow: hidden;
}

.maps__title {
    font-size: 2.25rem;
    text-align: center;
    padding-top: 6rem;
    font-family: var(--normal-font);
    font-weight: 600;
}

.maps__hr {
    margin: auto;
    width: 158px;
    height: 2px;
}

.maps__container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.maps__description {
    font-size: 1.2rem;
    font-family: var(--second-font);
}

.maps__img-mappa {
    margin: 2rem auto;
    width: 312px;
    height: auto;
    position: relative;
    z-index: 100;
}

.maps__img-valigia {
    position: absolute;
    width: 313px;
    height: auto;
    top: 300px;
    right: -120px;
    z-index: 1;
}





/* Media query */


@media (min-width: 475px){
    .maps__title {
        font-size: 2.4rem;
    }

    .maps__description {
        font-size: 1.1rem;
    }

    .maps__img-mappa {
        width: 350px;
        margin-top: 3rem;
    }
}

@media (min-width: 640px){
    .maps__title {
        font-size: 3rem;
    }

    .maps__svg-icon {
        width: 35px;
        height: 35px;
    }

    .maps__description {
        font-size: 1.4rem;
    }

    .maps__img-mappa {
        width: 450px;
    }

    .maps__img-valigia {
        width: 380px;
        top: 350px;
    }
}

@media (min-width: 1024px){
    .maps {
        padding-bottom: 10rem;
        padding-top: 3rem;
    }

    .maps__title {
        font-size: 3.5rem;
    }

    .maps__description {
        font-size: 1.5rem;
    }

    .maps__svg-icon {
        width: 45px;
        height: 45px;
        margin-top: -0.5rem;
    }

    .maps__img-mappa {
        width: 600px;
    }

    .maps__img-valigia {
        width: 450px;
    }
}

@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}

@media (min-width: 1536px){
    .maps__img-valigia {
        right: 0;
    }
}