a:focus, input:focus,
textarea:focus,
button:focus {
    outline-color: transparent !important;
}

.swiper-button-prev,
.swiper-button-next {
    height: 30px;
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.background-gradient {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.container-upper-linear-grad {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    width: 100%;
    z-index: 50;
}

.mobile-img {
    display: block;
}

.desktop-img {
    display: none;
}

.borderedBtn {
    border: 1px solid var(--white-color);
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 8px;
}

.borderedBtn:hover {
    background-color: var(--secondary-color);
}

.borderedBtn i {
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-size: 18px;
}

.borderedBtn:hover i {
    color: white !important;
}

main {
    background: black;
    padding-top: 70px;
}


/* Tablette version */
    @media screen and (min-width: 768px) {
        main {
            padding-top: 80px;
        }

        .container-upper-linear-grad {
            padding: 0 40px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            height: 35px;
            width: 35px;
        }

        .borderedBtn{
            font-size: 15px;
        }

        .borderedBtn i {
            font-size: 19px;
        }
    }

        /* Desktop version */
        @media screen and (min-width: 992px) {
            main {
                padding-top: 170px;
            }

            .container-upper-linear-grad {
                padding: 0 60px;
            }

            .swiper-button-prev,
            .swiper-button-next {
                height: 45px;
                width: 45px;
            }

            .mobile-img {
                display: none;
            }

            .desktop-img {
                display: block;
            }

            .borderedBtn {
                font-size: 16px;
            }

            .borderedBtn i {
                font-size: 20px;
            }
        }