/* Bannière fond */
/* .home-banner{
    position: absolute;
    z-index: 0;
    width: 100vw;
} */
.home-banner{
    position: relative;
    background-image: url(../../../img/bloc-atelier.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 8.75rem;
}

.home-banner-inner {
    position: relative;
    padding: 200px 0;
}

.home-illustration{
    position: absolute;
    top: 45%;
    left: -40px;
}

.home-text-grid{
    position: relative;
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 2.5rem;
}

/* Texte */
.home-text-block {
    margin-bottom: 20px;
}

.home-text-title {
    font-family: 'GoodBakwan';
    color: #FFFFFF;
    font-size: 5em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.home-text-content {
    color: #FFFFFF;
    font-size: 1.1em;
    line-height: 1.6;
}

.home-text-content p {
    margin-bottom: 15px;
}

.home-text-content p:last-child {
    margin-bottom: 0;
}

.home-text-content h3 {
    color: #FFFFFF;
    font-size: 1.3em;
    margin-bottom: 10px;
    margin-top: 20px;
}

.home-text-content ul,
.home-text-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.home-text-content li {
    margin-bottom: 8px;
}


/* Thumbnails */
.home-text-pola{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pola-large {
    width: 75%;
    transform: rotate(10deg);
    z-index: 5;
}

.pola-small{
    width: 50%;
    transform: rotate(-8deg) translateY(-30px);
    z-index: 6;
}

/* Style responsive */
@media (max-width: 1300px){
    .home-banner-inner{
        padding: 200px 0 120px;
    }

    .home-text-grid{
        grid-template-columns: 1fr;
    }

    .home-text-pola{
        padding: 0 10rem;
    }
}

@media (max-width: 1200px){
    .home-illustration{
        top: 65%;
    }
}

@media (max-width: 992px){
    .home-text-pola {
        padding: 0 5rem;
    }
}

@media (max-width: 768px) {
    .home-text-block {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .home-text-title {
        font-size: 1.5em;
    }

    .home-text-content {
        font-size: 1em;
    }
    .home-illustration {
        width: 120px;
        left: -22px;
    }
}

@media (max-width: 700px){
    .home-text-pola{
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .home-illustration {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .home-text-container {
        margin: 15px 0;
    }

    .home-text-block {
        padding: 15px 10px;
    }

    .home-text-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .home-text-pola{
        padding: 0;
    }
    .pola-small{
        width: 70%;
        transform: rotate(-8deg) translateY(0);
    }
}