/* Css du slider */

.mySwiper {
    position: relative;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 600px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .studio-img-overlay{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: hsl(230, 25%, 5%);
    z-index: 999;
}

/* Css carte de contact et icone */

.contact-card {
    position: absolute;
    top: 450px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: #0a0b10;
    opacity: 0.9;
    transition: all 0.8s;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
    padding: 10px;
    display:flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-card:hover {
    box-shadow: rgba(255, 255, 255, 0.4) 0px 30px 90px;
}
.contact-card:hover{
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.contact-card img{
    width: 100%;
}
.contact-card .info {
    display: flex;
    flex-direction: column;
}
.contact-card .info a{
    font-size:17px;
    color:#fff;
    cursor: pointer;
    text-decoration: none;
}

.contact-card .icon {
    font-size: 30px;
    color:#fff;
}

/* Media Query */

/* @media  (max-width:1000px) {
    .mySwiper {
        height: 400px;
    }
}  */

/* Comportement cacher par default */

.logo,
.menu,
.contact-card,
.container .swiper-wrapper {
    opacity: 0;
}
