/* Composant CategoryHeader
============================================================ */

.category-header {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 15px 0 15px;
    margin-bottom: 120px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 150px;
}

.category-header .image {
    position: relative;
    z-index: 0;
}

.category-header .image::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -110px;
    left: -90px;
    width: calc(100% + 195px);
    height: calc(100% + 170px);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="795.737" height="770.392" viewBox="0 0 795.737 770.392"><defs><linearGradient id="linear-gradient" x1="0.227" y1="0.152" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%23b5ddd5"/><stop offset="1" stop-color="%232b3b52"/></linearGradient></defs><g id="Groupe_11015" data-name="Groupe 11015" transform="translate(-130.132 -200.608)"><ellipse id="Ellipse_14" data-name="Ellipse 14" cx="343" cy="346" rx="343" ry="346" transform="translate(165 245.305)" fill="url(%23linear-gradient)"/><ellipse id="Ellipse_15" data-name="Ellipse 15" cx="309.247" cy="309.71" rx="309.247" ry="309.71" transform="matrix(-0.966, 0.259, -0.259, -0.966, 925.869, 798.922)" fill="url(%23linear-gradient)"/><ellipse id="Ellipse_16" data-name="Ellipse 16" cx="309.247" cy="309.71" rx="309.247" ry="309.71" transform="matrix(-0.966, 0.259, -0.259, -0.966, 887.869, 810.922)" fill="%23f5f7f6"/></g></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.category-header .image .inner {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
}

.category-header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-header .title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 80px;
    margin-bottom: 40px;
}

.category-header .title img {
    display: inline-block;
    width: 90px;
    height: auto;
    margin-bottom: -25px;
}

.category-header .text {
    max-width: 420px;
} 

.category-header .text p {
    padding-bottom: 15px;
}

.category-header .btn-tertiary {
    margin-top: 45px;
}

.category-header .scrolldown {
    margin-top: 90px;
    border: 0;
    background-color: var(--primary);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25.242" height="21.844" viewBox="0 0 25.242 21.844"><path id="Union_1" data-name="Union 1" d="M12.511,20.036l7.83-7.829H0V9.637H20.342l-7.83-7.829L14.32,0,25.242,10.922,14.32,21.844Z" fill="%232b3b52"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    rotate: 90deg;
    cursor: pointer;
}

@media (max-width: 1450px) {
    .category-header .image {
        translate: 45px 0;
    }
}

@media (max-width: 992px) {
    .category-header {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 60px;
        margin-bottom: 80px;
    }

    .category-header .image {
        translate: 0 0;
        max-width: 270px;
        margin: 0 auto;
    }

    .category-header .image::before {
        width: calc(100% + 85px);
        height: calc(100% + 75px);
        top: -50px;
        left: -45px;
    }

    .category-header .title {
        font-size: 2.8em;
        line-height: 60px;
    }

    .category-header .title img {
        width: 70px;
    }

    .category-header .scrolldown {
        display: none;
    }
}