/* Général prestations page layout */
.link-section-prestation {
    margin-top: 30px;
    text-align: left;
}

.link-section-prestation a {
    font-weight: normal;
    font-size: var(--link-section);
    color: var(--main-text-black);
    text-transform: uppercase;
    padding-right: 50px;
}

.arrow-icon-prestation {
    margin-left: 20px;
    height: 25px;
    display: inline-block;
    transition: margin-left 0.3s ease-out;
}

.link-section-prestation-content:hover .arrow-icon-prestation {
    margin-left: 30px;
}

/* Header */

.prestation-main-title {
    position: absolute;
    top: 0;
    background: black;
    width: 100%;
    padding-top: 180px;
}

h1 {
    margin-left: 160px;
}

@media (max-width: 768px) {
    h1 {
        margin-left: 30px;
    }
}

.header-prestations-page {
    height: 100%;
    width: 100%;
}

.header-prestations-page img {
    object-fit: cover;
    width: 100%;
    height: 75vh;
}

/* Prestations alternées */
.prestation-page-section-content-1 {
    background-image: url('../images/icons/bg-purple-presta.png');
    background-repeat: no-repeat;
    background-size: 200px;
   
}

.prestation-page-section-content-2 {
    background-image: url('../images/icons/bg-blue-presta.png');
    background-repeat: no-repeat;
    background-size: 200px;
    
}

.prestation-page-section-content-3 {
    background-image: url('../images/icons/bg-orange-presta.png');
    background-repeat: no-repeat;
    background-size: 200px;
    /* background-position: left -100px top 0; */
}

@media (max-width: 992px) {
    .prestation-page-section-content {
        background-image: none;
    }
}

.prestation-page-section-item {
    display: flex;
}

.prestation-page-section-img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

article {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
}

@media (max-width: 990px) {
    article {
        flex-direction: column;
    }
}

.prestation-page-section-content {
    padding: 30px 0;
}

.prestation-page-section-content-left {
    padding-left: 200px;
    padding-right: 30px;
    background-position: left -100px top 0;
}

.prestation-page-section-content-right {
    padding-right: 200px;
    padding-left: 30px;
    background-position: right -100px top 0;
}

@media (max-width: 1250px) {
    .prestation-page-section-content-left {
        padding-left: 100px;
    }
    
    .prestation-page-section-content-right {
        padding-right: 100px;
    }
}

@media (max-width: 990px) {
    .prestation-page-section-content-left {
        padding: 20px 1rem;
    }
    
    .prestation-page-section-content-right {
        padding: 20px 1rem;
    }
}

/* Realisation galllery prestation section */

.realisation-section-prestatiton-wraper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-template-rows: repeat(1, 1fr);
}

.realisation-section-prestatiton-wraper-container-item-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.icon-player {
    position: absolute;
    width: 50px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .icon-player {
        width: 25px;
    }
}

.realisation-section-prestatiton-wraper-container {
    grid-row-start: 1;
    grid-row-end: 2;
}

.realisation-section-prestatiton-wraper-container-left {
    grid-column-start: 1;
    grid-column-end: 3;
    position: relative;
}

.realisation-section-prestatiton-wraper-container-right {
    grid-column-start: 3;
    grid-column-end: 6;
}

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
    margin-right: 10px;
}

.slick-slide > div {
    height: 50%;
}

.slick-slide > div:last-child {
    margin-top: 10px;
}

.realisation-section-prestatiton-wraper-container-item {
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.realisation-section-prestatiton {
    background-color: var(--bg-section);
    margin-bottom: 0;
    padding-bottom: 80px;
    padding-top: 80px;
    background-image: url("../images/icons/bg-icon-purple.png"), url("../images/icons/bg-red-studio-materiel.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 200px, 100px;
    background-position: left -100px bottom 40px, left 60px bottom -50px;
}