/*===================== STYLE GLOBAL OF WEBSITE ===========================*/

header .navbar {
    background-color: #284D9A !important;
}
/*===================== FIRST SECTION OF WEBSITE ===========================*/

.section-first-home {
    height: auto;
    display: flex;
    gap: 1vw;
    
    margin-top: 15vh;
    margin-bottom: 5vw;
    /* position: relative; */

    padding: 0px 2em;

    color: #284D9A;
    font-family: var(--font-name);
    font-weight: 700;
    font-size: 2.5vw;
    box-sizing: border-box;

    animation-name: section1_fade_from_bottom;
    animation-duration: 1200ms;
    animation-timing-function: ease-out;
}

.section-first-home .content-text-description {
    display: flex;
    flex-direction: column;
    gap: 3vw;
}
.section-first-home .content-text-description span {
    font-size: var(--btn-big-height);
    font-family: var(--font-name);
}
.section-first-home .content-text-description span:nth-child(2) {
    font-size: 3vw;
    -webkit-text-stroke: 1px #284D9A;
    color: white;
}
.section-first-home .content-text-description a {
    width: fit-content;
    text-align: center;
    background: #284D9A;
    color: white;
    font-family: var(--font-name);
    font-size: 20px;
    text-transform: uppercase;
    padding: 1.1574vw 1vw ;
    outline: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.section-first-home .content-text-description a:hover {
    background: #284D9A;
    transition: all .5s ease-in-out;
    color: white;
}

.section-first-home .img-fluid img{
    /* filter : brightness(2) saturate(100%) invert(22%) sepia(58%) saturate(274%) hue-rotate(130deg) brightness(78%) contrast(73%); */
    filter: brightness(0) saturate(100%) invert(13%) sepia(77%) saturate(2748%) hue-rotate(212deg) brightness(77%) contrast(107%);
    /* filter: brightness(0) saturate(100%) invert(16%) sepia(77%) saturate(2861%) hue-rotate(205deg) brightness(92%) contrast(107%); */
}

/*===================== RESPONSIVE OF HEADER__WEBSITE ===========================*/

@media (max-width:768px) {

    .section-first-home {
        margin-top: 25vw;
        height: auto;
        flex-direction: column;
    }
    
    .section-first-home .content-text-description {
        gap: 9vw;
    }
    .section-first-home .content-text-description a {
        padding: 3.1574vw 4vw;
    }
    .section-first-home .img-fluid img {
        width: 100%;
    }

}