/* Partie 1 */

.home-export h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight:bold;
    font-family: "Roboto Condensed";
    font-weight: 700;
}

.home-export h2 {
    margin-bottom: 100px;
    width:40%;
}

.home-export h2 strong{
    color:inherit;
}

.home-export-text-img {
    display:flex;
    gap: 4rem;
}

.home-export img {
    width: 60%;
    object-fit: cover;
    border-radius: 20px;
    height:450px;
}

/* Partie 2 */

.home-export-secondary-area {
    border-right: 1px solid;
    padding-right: 2rem;
}

.export-grid {
    display:grid;
    grid-template-columns: 1fr 1fr;
    width:60%;
}

.home-export-title {
    display:flex;
}

.home-export-text-button {
    padding-left: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-export h4 {
    text-transform:capitalize;
    font-weight:500;
    font-size: 30px;
}

.home-export .icon_guillemet { 
    width: 200px;
    height: auto;
}

.export-container {
    width:100%;
    display:flex;
    margin-top:3rem;
}

.export-svg {
    width:40%;
}

/* Ajustements mobile */


@media screen and (max-width: 769px) {
    .home-export img {
        width: 100%;
    }

    .home-export h2 {
        width: 100%;
        margin-bottom: 50px;
    }

    .home-export-text-img {
        display:block;
    }

    .export-svg {
        display:flex;
    }

    .export-grid {
        width:100%;
    }

    .export-svg {
        width:100%;
    }

    .home-export .icon_guillemet { 
        width: 100px;
        height: auto;
    }

    .export-container {
        display:block;
    }
}