.card {
    background-repeat: no-repeat;
}

.card-cover {
    background-position: center;
    background-size: cover;
}

main {
    overflow-x: hidden;
}

.card-contain {
    background-position: center;
    background-size: contain;
}

.card-bg {
    background-color: rgba(0, 0, 0, 0.5);
}

nav {
    width: 100%;
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 10;
    box-shadow: 0px -10px 40px 0px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.25);
}

nav .logo {
    @media (max-width: 520px) {
        margin-right: 20px;
    }
}

header {
    height: calc(50vh + 58x);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 60px 30px;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.partners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    @media (max-width: 520px) {
        margin-top: 10px;
        order: 1;
    }
}

.partners img {
    height: 30px;
    margin-right: 15px;

    @media (max-width: 520px) {
        height: 20px;
    }
}

.icon {
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    padding: 15px;
}

.icon--phone {
    background-image: url("./icons/call.svg");
}

.icon--mail {
    background-image: url("./icons/mail.svg");
}
.icon--whatsapp {
    background-image: url("./icons/wapp.svg");
}

.swiper-slide {
    height: 500px;

}

.swiper-slide .card {
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}


.swiper-slide--visible .card {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.swiper {
    padding: 0 20px;
    overflow: visible;
}

.container {
    position: relative;
}


.swiper-button-prev {
    margin-left: -30px !important;
}

.swiper-button-next {
    margin-right: -30px !important;
}