.btn-primary {
    border-radius: 8px;
    background: var(--Blue-Ribbon-600, #0D6AFF) !important;
    color: #FFF;
    /* Body/Bold */
    font-family: Carlito;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    border: none;
    padding: 12px 24px;
}

.btn-primary:hover {
    border-radius: 8px;
    background: var(--Blue-Ribbon-800, #0F44BE) !important;
    transition: background 0.3s ease;
    /* animation douce */
}

a {
    text-decoration: none !important;
}
.text-blue {
    color: var(--Blue-Ribbon-800, #0F44BE) !important;

}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero {
    position: relative;
    height: 100vh;
    max-height: 466px;
}

.hero .bg-img {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 0;
    width: 100%;
    max-width: 825px;
    max-height: 566px;
    object-fit: contain;
}

.hero .container {
    position: relative;
}

.hero h1 {
    color: var(--French-Gray-950, #323135);
    text-align: center;
    /* H1/Bold */
    font-family: Carlito;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.8px;
    /* 120% */
}

@media(max-width:992px) {
    .hero h1 {
        font-size: 55px;
    }

    .btn-primary {
        font-size: 22px;
        padding: 10px 22px;
    }
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 50px;
    }

    .btn-primary {
        font-size: 18px;
        padding: 8px 20px;
    }
}

@media(max-width:570px) {
    .hero h1 {
        font-size: 30px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 6px 18px;
    }

    .hero h1 br {
        display: none;
    }

    .hero .btns {
        display: block !important;
    }

    .hero .btns .btn {
        width: 100%;
        margin-right: 0px !important;
    }
}

/*----------------------------------
section-title
------------------------------------*/
.section-title h2 {
    color: var(--Blue-Ribbon-600, #0D6AFF);
    text-align: center;

    /* H2/Bold */
    font-family: Carlito;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 48.75px;
    /* 125% */
}

@media(max-width:992px) {
    .section-title h2 {
        font-size: 40px;
    }
}

@media(max-width:768px) {
    .section-title h2 {
        font-size: 35px;
    }
}

@media(max-width:570px) {
    .section-title h2 {
        font-size: 25px;
    }
}

/*------------------------------
about
--------------------------------*/
.nav-tabs {
    border: none;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.nav-tabs .nav-link {
    color: var(--French-Gray-500, #A5A5AF);
    text-align: center;
    /* H4/Regular */
    font-family: Carlito;
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 120% */
    border: none;
    box-shadow: none;
    border-radius: 0px;
    background-color: transparent !important;
}

.nav-tabs .nav-link.active {
    color: var(--Blue-Ribbon-600, #0D6AFF);
    font-weight: 700;
    border-bottom: 2px solid #0D6AFF;
}

.about {
    position: relative;
    padding-top: 100px;
}

.about .bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 372px;
    max-height: 229px;
    flex-shrink: 0;
    z-index: 0;
    object-fit: contain;
}

.about .bg-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 271px;
    max-height: 166px;
    object-fit: contain;
    z-index: 0;

}

.about .star-right {
    position: absolute;
    top: 100px;
    right: 0;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.about .star-middle {
    position: absolute;
    top: 75%;
    right: 45%;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hero .star-middle {
    position: absolute;
    top: 75%;
    left: 30%;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.about .container {
    position: relative;
}

.about .tab-content img {
    width: 100%;
    max-width: 261.364px;
    height: 100%;
    max-height: 173.864px;
    object-fit: cover;
    border-radius: 15px;
}

.about .tab-content .img-history {
    object-fit: contain;
}

.about p {
    color: var(--French-Gray-950, #323135);
    font-family: Carlito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */
}

@media(max-width:992px) {
    .about p {
        font-size: 18px;
    }

    .nav-tabs .nav-link {
        font-size: 28px;
    }
}

@media(max-width:768px) {
    .about p {
        font-size: 16px;
    }

    .nav-tabs .nav-link {
        font-size: 20px;
    }
}

@media(max-width:570px) {
    .about p {
        font-size: 14px;
    }

    .about .tab-content img {
        max-width: none;
    }

    .nav-tabs .nav-link {
        font-size: 18px;
    }
}