/* Custom by Internet Factory */

/* Géneral */

#wrapper {
    left: 0;
    position: relative;
}

.content-holder {
    position: relative;
}

.content,
.fl-wrap {
    float: none;
}

.video-single-wrapper,
.hero-carousel-wrap {
    padding-right: 0;
}

/* .video-single-wrapper,
.hero-carousel-wrap {
    height: 100vh;
} */

.media-container {
    position: relative;
    height: 100vh;
}

/* END Géneral */

/* Home */
.nos-prestations {
    display: none !important;
}
/* END Home */

.nos-prestations.img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    z-index: 1000;
}

.nos-prestations.title {
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: normal;
    line-height: 1.125;
    color: #2c313f;
    z-index: 1000;
}

/* Footer */

.cpo-footer {
    position: relative;
    z-index: 2;
    background-color: #1e1e1e;
    color: #cccccc;
    /* font-family: 'Roboto', 'Open Sans', Arial, sans-serif; */
    padding: 60px 0 0 0;
    width: 100%;
}

.cpo-footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.cpo-footer a:hover {
    color: #ccdc52;
}

.cpo-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 3 colonnes */
.cpo-footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.cpo-footer-col h4 {
    color: #ccdc52;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.cpo-footer-col p {
    /* font-size: 14px; */
    line-height: 1.9;
    color: #aaaaaa;
    margin: 0;
}

.cpo-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpo-footer-col ul li {
    /* font-size: 14px; */
    line-height: 1;
    margin-bottom: 12px;
    color: #aaaaaa;
}

.cpo-footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cpo-footer-col ul li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #ccdc52;
    border-top: 2px solid #ccdc52;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.cpo-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

.cpo-footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cpo-footer-contact-item a {
    color: #aaaaaa;
}

.cpo-footer-contact-item address {
    font-style: normal;
    margin-bottom: 0;
}

/* Barre du bas */
.cpo-footer-bottom-wrap {
    border-top: 1px solid #2e2e2e;
}

.cpo-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cpo-footer-copyright {
    font-size: 12px;
    color: #666;
}

.cpo-footer-socials {
    display: flex;
    gap: 8px;
}

.cpo-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    color: #aaaaaa;
    transition: border-color 0.2s, color 0.2s;
}

.cpo-footer-socials a:hover {
    border-color: #ccdc52;
    color: #ccdc52;
}

/* Responsive */
@media (max-width: 900px) {
    .cpo-footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cpo-footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cpo-footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}