* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.items-wrapper {
    width: 100%;
}

.items {
    width: 100%;
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;

    overflow: hidden;
}

.item {
    flex: none;

    width: 100%;
    height: 400px;

    scroll-snap-align: start;
}

.item-home-principal {
    height: calc(100vh - 80px);
    pointer-events: none;
}

.item-home-des-principal {
    height: auto;
    width: 100%;
}

.item-cards-service {
    width: calc(24%);
    height: 310px;
    margin: 7px;
}

/* @media (max-width: 800px) {
    .item-cards-service {
        width: 50%;
    }
} */

.item-sea-services {
    width: calc(32%);
    height: 310px;
    /* background-color: #ccc; */
    margin: 7px;
}

.item-air-services {
    width: calc(19%);
    height: 220px;
    margin: 7px;
}

.image-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============== PARTE DOS BOTOES NEXT E BACK ================ */
.btn-back-slider,
.btn-next-slider {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    z-index: 3;
}

.btn-back-slider img,
.btn-next-slider img {
    width: 30px;
    cursor: pointer;
}



.btn-back-slider {
    left: 20px;
}

.btn-next-slider {
    right: 20px;
}