/*
	BLOC 1 - TOPBANNER
*/

.topbanner .custom-btn-group .custom-btn {
    /* position: relative;
    display: inline-block;
    overflow: hidden;
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 0.7rem;
    background: #f2cc8f;
    z-index: 1; */
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: #f2cc8f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    font-size: 16px;
    /* margin: 0 auto;
    display: block;
    width: fit-content; */
}

.topbanner .custom-btn-group .custom-btn:hover {
    background-color: #E07A5F;
}

.hero-section {
    height: 100vh;
    max-height: 700px;
    background-position: center 15%;
}

.hero-section h1 {
    margin-bottom: 5px;
}

.texte-defilant {
    font-size: 2.4em;
    line-height: 1.214;
    letter-spacing: -1px;
    color: #f2cc8f;
}

.container-topbanner {
    margin-top: -50px;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        max-height: none;
        padding: 40px 0 0 0;
        min-height: 400px;
    }
    .container-topbanner {
        margin-top: 0;
        padding: 0 10px;
    }
    .topbanner .custom-btn-group .custom-btn {
        padding: 10px 18px;
        border-radius: 20px;
    }
    .texte-defilant {
        font-size: 21px;
    }
    .hero-section h1 {
        margin-bottom: 10px;
        font-size: 29px;
    }
    .topbanner .col-lg-6 {
        margin-bottom: 20px;
    }
}