@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {
    --color-primary-linear: linear-gradient(180deg, #96C6FF 0%, #2080F1 100%);
    --color-success-linear: linear-gradient(180deg, #96E0C6 0%, #57B593 100%);
    --color-primary: #47a1da;
    --color-dark-grey: #565555;
    --color-light-grey: #e8e8e8;
    --color-green: #6ABE9F;
    --color-yellow: #f9b25c;
    --color-pink: #FC7F7F;
    --color-red: #e9425c;
    --color-white: #fff;
    --color-black: #000;

    --width-xxl: 1400px;
    --width-xl: 1200px;
    --width-l: 992px;
    --width-ml: 768px;
    --width-xm: 576px;
    --width-xs: 320px;
}

.app-container {
    width: 100%;
    max-width: var(--width-xxl);
    margin: 0 auto;
    background: transparent;
}

@media screen and (max-width: 1400px) {

    .app-container {
        width: 100%;
        padding: 0 1.875rem;
        margin: 0;
    }
}

@media screen and (max-width: 1200px) {

    .app-container {
        width: 100%;
        padding: 0 1.25rem;
        margin: 0;
    }
}

@media screen and (max-width: 992px) {

    .app-container {
        width: 100%;
        padding: 0 .9375rem;
        margin: 0;
    }
}

@media screen and (max-width: 576px) {

    .app-container {
        width: 100%;
        padding: 0 .625rem;
        margin: 0;
    }
}

@media screen and (max-width: 320px) {

    .app-container {
        width: 100%;
        padding: 0 .3125rem;
        margin: 0;
    }
}

a {
    color: initial;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    background-color: transparent;
    color: initial;
}

a:active {
    color: initial;
    background-color: transparent;
}

#header {
    width: 100%;
    background-color: var(--color-white);
    position: fixed;
    z-index: 999999999999999999;
}

#header .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.875rem 0;
}

#header .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#header .right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

#header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2.875rem;
}

#header .navigation .menu {
    display: flex;
    justify-content: space-between;
    gap: 2.875rem;
    margin-bottom: 0;
    align-items: center;
}

/**/
#header .navigation .menu .menu-item .dropdown {
    padding-top: 17px;
    position: absolute;
    background: transparent;
}

#header .navigation .menu .menu-item .sub-menu {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: transparent;
    padding: 17px;
    display: none;
    z-index: 10000;
    background-color: var(--color-white);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.03);
    border-radius: 0.625rem;
    /* position: relative; */
}

#header .navigation .menu .menu-item .sub-menu .sub-menu-item {
    display: flex;
    align-items: stretch;
    padding: .875rem;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    gap: .6875rem
        /*11px*/
    ;
    font-family: Montserrat, sans-serif;
    font-size: .8rem;
    font-weight: 400;
    position: relative;
}

#header .navigation .menu .menu-item .sub-menu .sub-menu-item:hover {
    background-color: var(--color-light-grey);
}

#header .right .profil-items .sub-menu-item:last-child:hover {
    background-color: var(--color-light-grey);
    border-radius: 0 0 10px 10px;
}

#header .right .profil-items .sub-menu-item:nth-child(1):hover {
    background-color: var(--color-light-grey);
    border-radius: 10px 10px 0 0;
}

#header .navigation .menu .menu-item .sub-menu .sub-menu-item a,
#header .right .sub-menu .sub-menu-item a {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#header .navigation .menu .menu-item .sub-menu .sub-menu-item:nth-child(1),
#header .navigation .menu .menu-item .sub-menu .sub-menu-item:nth-child(2) {
    border-right: 1px solid var(--color-light-grey);
}

#header .navigation .menu .menu-item .sub-menu.become .sub-menu-item:nth-child(1),
#header .navigation .menu .menu-item .sub-menu.become .sub-menu-item:nth-child(2) {
    border: none;
}

#header .navigation .menu .menu-item .menu-item-content:hover .sub-menu {
    display: flex;
    z-index: 10000;
}

#header .menu .menu-item-content .formations {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .navigation .menu .menu-item .become .sub-menu-item {
    border: none;
}

#header .navigation .menu .menu-item .menu-item-content:hover .become {
    display: block;
    border: none;
    z-index: 10000;
}

#header>.profil-items>.sub-menu {
    background: transparent;
}

#header .right .profil-items .sub-menu-item {
    display: flex;
    align-items: stretch;
    position: relative;
    white-space: nowrap;
    gap: .6875rem
        /*11px*/
    ;
    padding: .875rem
        /*14px*/
    ;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: .8rem;
    font-weight: 400;
}

#header .profil-items .sub-menu .sub-menu-item:hover {
    background-color: var(--color-light-grey);
}

/**/
#header .navigation .menu-item-content .dropdown .sub-menu .candidate img {
    width: 2rem;
    height: 2rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .former img {
    width: 2rem;
    height: 2rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .framer img {
    width: 2rem;
    height: 2rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .dashboard img {
    width: 1.6875;
    height: 1.35rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .parameters img {
    width: 24px;
    height: 24px;
}

#header .navigation .menu-item-content .dropdown .sub-menu .message img {
    width: 1.5rem;
    height: 1.5rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .log-out img {
    width: 1.25rem;
    height: 1.25rem;
}

#header .content-image img {
    width: auto;
    height: 3.75rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .book img {
    width: 1.3125rem;
    height: 1.0625rem;
}

#header .navigation .menu-item-content .dropdown .sub-menu .certificate img {
    width: 1.625rem;
    /* height: 1.625rem; */
}

#header .navigation .menu .menu-item .menu-item-content {
    position: relative;
}

#header .navigation .button {
    white-space: nowrap;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--color-black);
    font-family: Mulish, sans-serif;
    font-size: .8rem;
    display: flex;
    font-weight: 700;
}

#header .navigation .menu .menu-item a {
    color: var(--color-black);
    font-family: Mulish, sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    display: flex;
    gap: 0.625rem;
    padding: 0 10px;
}

#header .sub-menu-item p{
    font-size: .9rem;
}

#header .navigation .menu .menu-item a:hover {
    color: var(--color-primary);
}



#header .right .login {
    background-color: transparent;
    border: none;
    outline: none;
}

#header .right .login a {
    text-decoration: none;
    color: var(--color-black);
    font-family: Mulish, sans-serif;
    font-weight: 700;
    font-size: .9rem;
}

#header .right .login a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

#header .navigation .arrow img {
    margin-left: 1rem
        /*13px*/
    ;
    width: 20px;
    height: 20px;
    transform: rotate(180deg)
}

#header .navigation .menu-item-content:hover .arrow img {
    transition: .3s;
    transform: rotate(360deg)
}

#header .right .profil a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-dark-grey);
    font-family: Mulish, sans-serif;
    font-weight: 700;
    letter-spacing: 0.0125rem;
    gap: 0.3rem;
    position: relative;
    background: transparent;
}

.open-profil>a>div.username>p:nth-child(1) {
    margin-top: 1.25rem;
    margin-bottom: .1875rem;
    white-space: nowrap;
}

#header .right .notifications {
    border-right: 1px solid var(--color-light-grey);
}

#header .right .notifications a img {
    cursor: pointer;
    padding-right: 2rem;

}

#header .right .profil .open-profil a .profil-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.open-profil>a>div.username>p.user-level {
    color: #FFD6A7;
    font-family: Poppins, sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 1.375rem;
    gap: .1875rem;
}

#header .right .mobil .hamburger-btn ion-icon {
    color: black;
    width: 3rem;
    height: 3rem;
    position: relative;
}

#header .right .mobil .hamburger-btn button {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
}



#header .right .mobil {
    position: relative;
    display: none;
}

#header .right .profil-items {
    position: absolute;
    transition: all 0.2s ease;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.03);
    right: -100%;
    margin-top: 17px;
    display: none;
}

#header .right .profil {
    position: relative;
}

#header .right .profil-items .exit button,
#header .navigation .exit-nav button {
    position: absolute;
    right: 0;
    padding: 0.9375rem;
    display: none;
    border: none;
    background-color: var(--color-white);
}

#header .right .profil-items .exit img {
    width: 22px;
    height: auto;
    cursor: pointer;
}

#header .right .profil-items.open {
    opacity: 1;
    visibility: visible;
    right: 0;
    top: auto;
    z-index: 10000;
    display: flex;
}

#header .right .profil-circle {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #96C6FF 0%, #2080F1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .right .profil-circle h3{
    font-size: 30px;
    color: #fff;
    margin: 0;
}

#footer {
    width: 100%;
}

#footer .footer-bottom {
    background: linear-gradient(rgba(149, 196, 255, 0.05), rgba(49, 138, 243, 0.05));
    padding-top: 5.625rem;
    padding-bottom: 6.6875rem;
    flex-wrap: wrap;
    padding-bottom: 6.6875rem;
}

#footer>.footer-bottom>.app-container>.footer-suscribe>.suscribe {
    border-radius: 100px;
    background: var(--color-white);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
    background: var(--color-white);
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-right: 0.625rem;
}

#footer .footer-bottom .footer-suscribe .suscribe .input-field .btn {
    position: absolute;
}

#footer .footer-bottom .footer-suscribe .suscribe .input-field {
    padding: 2.125rem 2.125rem 2.125rem;
    outline: none;
    border: none;
    background: transparent;
    width: 100%;
}

#footer .footer-bottom .footer-suscribe {
    display: flex;
    align-items: center;
    padding-bottom: 6.0625rem;
    gap: 5.625rem;
}

#footer .footer-bottom .footer-suscribe .suscribe .input-field::placeholder {
    color: #4F596A;
    font-family: Mulish;
    font-size: 16px;
    font-weight: 400;
}

#footer .footer-bottom .footer-menu .footer-links {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 0;
}

#footer .footer-bottom .footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

#footer .footer-bottom .footer-menu .footer-links .footer-links-item {
    padding-bottom: 20px;
    align-items: stretch;
}

#footer .footer-bottom .footer-menu .footer-links .footer-links-item a {
    color: #4F596A;
    font-family: Mulish, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 1.25rem;
}

#footer .footer-bottom .footer-menu .footer-links .footer-links-item a:hover {
    color: var(--color-black);
}

#footer .footer-bottom .footer-menu .footer-menu-content .footer-menu-title {
    color: #001A49;
    font-family: Mulish;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 1.6875rem;
}

#footer .footer-bottom .footer-menu .footer-links .footer-links-item img {
    width: 1.25rem;
    height: 1.25rem;
}

#footer .footer-links-item .language {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Mulish, sans-serif;
    background-color: var(--color-white);
    border-radius: 10px;
    border: 1px solid #328BF3;
    padding: 0.9375rem;
}


#footer .footer-links-item .language .select {
    border: none;
    outline: none;
    color: #2080F1;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    background-color: white;
}


#footer .footer-brands {
    width: 100%;
    display: block;
    position: relative;
}

#footer .footer-brands .brands {
    width: calc(100% + 2.2rem);
    overflow-x: hidden;
    padding: 3.125rem 0;
    margin-left: -1.1rem;
}

#footer .brands .swiper-slide .brand {
    width: 100%;
    padding: 1.1rem;
}

#footer .brands .swiper-slide img {
    width: 100%;
    height: 4.625rem;
    object-fit: contain;
}

#footer .brands .swiper-brands-button-prev,
#footer .brands .swiper-brands-button-next {
    position: absolute;
    fill: #FFF;
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.05));
    border-radius: 50%;
    outline: none;
    border: none;
    color: #000;
    width: 4rem;
    height: 4rem;
    /* width: 4rem;
    height: 4rem; */
}




/*responsive header*/

@media screen and (max-width: 1400px) {

    .header {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {

    #header .navigation .menu {
        width: 100%;
        gap: 1.4375rem;
    }

    #header .navigation {
        padding-left: 1.4375rem;
    }

    /* #header .right {
        gap: 0;
    } */

    #header .right .notifications a img {
        padding-right: 1rem;
    }

}

@media screen and (max-width: 992px) {

    #header .right {
        gap: 0.5rem;
    }

    #header .profil .user .username{
        display: none;
    }

    #header .profil-circle {
        width: 2rem;
        height: 2rem;
    }

    #header .navigation .menu {
        gap: 1.3rem;
        align-items: center;
    }

    #header .navigation .menu .menu-item a {
        font-size: 0.775rem;
        padding: 0 5px;
    }

    #header .navigation #button {
        font-size: 0.775rem;
        padding: 0;
    }

    #header .right .notifications a img {
        padding-right: 0.3rem;
    }

    #header .open-profil>a>div.username>p:nth-child(1) {
        font-size: 0.775rem;
    }

    #header .navigation .menu-item-content .arrow img,
    #header .navigation .arrow img {
        width: 15px;
        height: 15px;
    }

    #header .navigation {
        padding-left: .4375rem;
    }
}

@media screen and (max-width: 768px) {
    * {
        font-size: 11px;
    }


    #header .navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--color-white);
        display: none;
        width: 100%;

    }

    #header .profil .user .username{
        display: block;
    }


    #header .navigation .menu {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        top: 8%;
        position: absolute;
        gap: 2.5rem;
        align-items: start;
    }

    #header  .navigation.active {
        display: flex;
        position: fixed;
        top: 0;
        bottom: 0;
        background: white;
        z-index: 10;
        padding: 0;
        height: 100%;
        left: 25%;
        /* left: 400px; */
        width: 75%;
        transition: left 0.3s ease;
    }

    #header .right .profil-items.open {
        height: 50vh;
        background: var(--color-white);
        position: absolute;
        width: 100%;
        top: -20px;
        border-radius: 0;
        border-bottom: 1px solid var(--color-dark-grey);
    }

    #header .right .profil {
        position: static;
    }

    #header .navigation .menu .menu-item .menu-item-content {
        padding: 0 0.8125rem 0 0.8125rem;
        display: flex;
        flex-direction: column;
    }

    #header .navigation .menu-item-content .dropdown .sub-menu .book img,
    #header .navigation .menu-item-content .dropdown .sub-menu .certificate img {
        width: 2rem;
        height: 2rem;
    }

    #header .navigation .menu .menu-item .sub-menu .sub-menu-item p {
        font-size: 16px;
    }

    #header .navigation .menu .sub-menu {
        position: relative;
        width: 100%;

    }

    #header .right .profil-items .exit button,
    #header .navigation .exit-nav button {
        display: block;
        position: absolute;
        top: 2%;
    }

    #header .right .profil-items .exit button svg,
    #header .navigation .exit-nav button svg {
        width: 2.5rem;
        height: 2.5rem;
    }



    #header .right .profil-items .sub-menu-item {
        position: relative;
        align-items: center;
        justify-content: center;
    }

    #header .right .profil-items .sub-menu:hover:before {
        background: var(--color-light-grey);
    }

    #header .navigation .menu .menu-item a {
        padding: 0 0.8125rem;
        font-size: 17px;
    }

    #header .navigation #button {
        font-size: 17px;
        padding-right: 10px;
    }

    #header .navigation .menu .menu-item .dropdown{
        padding-top: 0;
    }

    #header .navigation .menu .menu-item .menu-item-content:hover .sub-menu{
        padding-top: 20px;
    }

    #header .right .mobil {
        display: block;
    }

    #header .right .profil-items .sub-menu {
        position: absolute;
        top: 25%;
        /* bottom: 25%; */
        width: 100%;
    }

    #header .navigation .menu .menu-item .sub-menu {
        padding: 0px;
        box-shadow: none;
        border-radius: 0;
    }

    #header .navigation .menu .menu-item .dropdown {
        position: static;
    }

    #header .navigation .menu-item-content .arrow img {
        width: 2rem;
        height: 2rem;
        transform: rotate(274deg);
        margin: 0;
    }

    #header .navigation .menu .menu-item .menu-item-content:hover .sub-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    /* #header .navigation .menu .menu-item .sub-menu:not(.become),
    #header .navigation .menu .menu-item .menu-item-content .sub-menu {
        display: block;
        display: none;
    } */

    #header .navigation .menu .menu-item .sub-menu .sub-menu-item:nth-child(1),
    #header .navigation .menu .menu-item .sub-menu .sub-menu-item:nth-child(2) {
        border: none;
        display: flex;
        align-items: stretch;
    }

}

/*responsive footer*/
@media screen and (max-width: 768px) {
    /* #footer .footer-bottom .footer-menu .footer-menu-content:not(:nth-child(4)) {
        width: 50%;
    } */

    #footer .footer-bottom .footer-menu .footer-menu-content {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    #footer .footer-bottom .footer-menu .footer-links {
        margin-bottom: 30px;
        display: flex;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    #footer .footer-bottom .footer-suscribe {
        padding-bottom: 4rem;
        gap: 2rem;
        flex-wrap: wrap;
        width: 100%;
    }

    #footer .footer-bottom .footer-suscribe img {
        width: 100%;
        height: auto;
    }


}



/* customized by joan 10/08/23 */

.btn {
    display: block;
    padding: .7rem 1.7rem;
    font-family: mulish;
    border-radius: 2rem;
    border: none;
    outline: none;
    font-weight: 700;
}

.btn.btn-primary {
    background: var(--color-primary-linear);
    color: var(--color-white);
    cursor: pointer;
}

.btn.btn-success {
    background: var(--color-success-linear);
    color: var(--color-white);
}

.btn.btn-warning {
    background: var(--color-yellow);
    color: var(--color-white);
}

.btn.btn-danger {
    background: var(--color-red);
    color: var(--color-white);
}

.btn.btn-default {
    background: var(--color-white);
    color: var(--color-black);
}

.btn.btn-neutral {
    background: var(--color-light-grey);
    color: var(--color-black);
}

.btn.btn-pink {
    background: var(--color-pink);
    color: var(--color-white);
}


.link {
    /* display: block; */
    padding: .9rem 1.875rem;
    font-family: mulish;
    border-radius: 2rem;
    border: none;
    outline: none;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}


.link.link-primary {
    background: var(--color-primary-linear);
    color: var(--color-white);
}

.link.link-success {
    background: var(--color-green);
    color: var(--color-white);
}

.link.link-warning {
    background: var(--color-yellow);
    color: var(--color-white);
}

.link.link-neutral {
    background: var(--color-light-grey);
    color: var(--color-black);
}

.link.link-danger {
    background: var(--color-red);
    color: var(--color-white);
}

.link.link-neutral {
    background: var(--color-light-grey);
    color: var(--color-black);
}

.link.link-pink {
    background: var(--color-pink);
    color: var(--color-white);
}





/*
End Customized
*

/*
* Start General swiper 
* By Joshua:18/08/2023
*/
.swiper-wraper {
    align-items: stretch;
}

.swiper-slide {
    flex-shrink: 0;
}

/*
* End General swiper
*/
.swiper-training {
    width: calc(100% + 2.2rem);
    margin-left: -1.1rem;
    overflow-x: hidden;
    position: relative;
    margin-top: 4.375rem;
}

.swiper-training .button .swiper-training-button-prev,
.swiper-training .button .swiper-training-button-next {
    position: absolute;
    border: none;
    outline: none;
    cursor: pointer;
}

.card-trainning {
    width: calc(100% - 2.2rem);
    position: relative;
    flex-wrap: wrap;
    display: flex;
    margin: 1.1rem;

    justify-content: space-between;
    flex-direction: column;
    min-height: 17.81rem;
    padding: 10px;
}

.card-trainning .card {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    position: absolute;
    z-index: 98;
    border-radius: 10px;
    /* background: linear-gradient(180deg, rgba(207, 229, 255, 0.80) 0%, rgba(50, 139, 243, 0.80) 61.19%); */
    background: linear-gradient(180deg, rgba(207, 229, 255, 0.80) 0%, rgb(50 139 243 / 94%) 61.19%);
}

.card-trainning img {
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    flex-wrap: wrap;
    object-fit: cover;
    border-radius: 10px;

}

.card-trainning .trainning-title {
    justify-content: space-between;
    flex-direction: column;
    display: block;
    z-index: 98;
    width: 100%;
}

.card-trainning .trainning-title .name-card {
    color: #fff;
    font-family: Mulish;
    /* font-size: 1.80rem; */
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    display: flex;
    left: 1.37rem;
    top: 9.31rem;
    z-index: 98;
    justify-content: flex-start;
}

.card-trainning .fee {
    padding-top: 1rem;
    padding-left: 60%;
    color: #30DC9C;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 4.25rem;
    z-index: 98;
    /* 340% */
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: flex-end;


}

.card-trainning .trainning-title .card-button {
    /* color: #FFF; */
    font-family: Mulish;
    /* font-size: 0.80rem; */
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    top: 0.30rem;
    right: 1.23rem;
    display: flex;
    cursor: pointer;
    z-index: 98;
    justify-content: flex-end;

}

.swiper-button-prev {
    position: absolute;
    border-radius: 100px;
    background-color: aliceblue;
    width: 2.5rem;
    height: 2.5rem;
    color: #000;
    /* width: 4rem;
  height: 4rem; */
}

.swiper-button-next {
    position: absolute;
    border-radius: 100px;
    background-color: aliceblue;
    width: 2.5rem;
    height: 2.5rem;
    color: #000;
    /* width: 4rem;
    height: 4rem; */
}

.training {
    padding-top: 1.81rem;
}

/*banner*/

.main {
    padding-top: 10rem;
}

#banner {
    background: linear-gradient(44deg, #398FF4 0%, #C6E0FF 100%);
    width: 100%;
    position: relative;
    border-radius: 0rem 1.25rem 1.25rem 0rem;
}

#banner .banner-content {
    display: flex;
    width: 70%;

    min-height: calc(100vh - 8.75rem);
    border-radius: 0rem 1.25rem 1.25rem 0rem;
    position: relative;
    background: linear-gradient(44deg, #398FF4 0%, #C6E0FF 100%);
    z-index: 1;
    padding: 3.75rem 0;
    /* align-items: center; */

}

#banner .blank {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 60%;
}

#banner .image {
    width: 45%;
    right: 0;
    top: 50%;
    /* height: 60vh; */
    border-radius: 1.25rem 0rem 0rem 1.25rem;
    z-index: 10;
    object-fit: cover;
    position: absolute;
    transform: translateY(-50%);
}




#banner .image img {
    min-height: 30vh;
    border-radius: 1.25rem 0rem 0rem 1.25rem;
    width: 100%;
    object-fit: cover;
    max-height: 55vh;
}

#banner .text-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 75%;
    padding-top: 20px;
}

#banner .text-content .title {

    color: #001A49;
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 4.25rem;
    width: 95%;
    /* 113.333% */
    letter-spacing: -0.0625rem;
    /* width: 90%;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    white-space: normal;
    hyphens: auto; */

}

/* edit by josue */
.attendance {
    margin-top: 20px;
    text-transform: capitalize;
    overflow-x: auto;
}

#banner .text-content .description {
    color: #4F596A;
    font-family: Mulish;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
    /* 150% */
    text-align: justify;
    /* width: 100%; */
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    white-space: normal;
    hyphens: auto;
}

#informations {
    width: 100%;
    padding-top: 8.11rem;
    position: relative;
    padding-bottom: 12.5rem;
}

#informations .circle-img {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

#informations .circle-img {
    width: 18.06rem;
}

/* #informations .content {
    display: flex;
    justify-content: space-between;
} */

#informations .content-informations {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    z-index: 1;
    width: 100%;
    padding: 40px 24px;
    border: 1px solid rgba(231, 234, 235, 1);

}

#informations .content-informations .items {
    justify-content: center;
    /* padding-left: 30px;
    padding-bottom: 36px;
    padding-right: 30px; */
    padding: 36px 10px;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    /* border-right: 1px #E7EAEB;
    border-left: 1px #E7EAEB; */
    /* width:calc((100% / 3 )); */

}

#informations .content-informations .item {

    border-right: 1px solid#E7EAEB;
    border-left: 1px solid #E7EAEB;


}


#informations .content-informations .items .title {
    /* align-items: center;
    display: flex; */
    align-items: center;
    justify-content: center;
    color: #001A49;
    text-align: center;
    white-space: nowrap;
    font-family: Montserrat;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.125rem;
    /* 166.667% */

}

#informations .content-informations .items .description {
    justify-content: center;
    color: #4F596A;
    white-space: nowrap;
    text-align: center;
    font-family: Mulish;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


@media screen and (max-width: 1400px) {

    #trainning .trainning-content {
        width: 100%
    }

    #trainning .trainning-content .card-trainning {

        flex-wrap: wrap;
    }

    #trainning .trainning-content .card-trainning .card {
        height: 100%;
        width: 100%;
    }

    #trainning .trainning-content .card-trainning img {
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {

    #certifying-trainning .content-banner .form-group .form-content {
        flex-wrap: wrap;

    }

    #banner .text-content .title {
        width: 100%;
    }

    #trainning .trainning-content {
        width: 100%
    }

    #trainning .trainning-content .card-trainning {

        flex-wrap: wrap;
    }

    #trainning .trainning-content .card-trainning .card {
        height: 100%;
        width: 100%;
    }

    #trainning .trainning-content .card-trainning img {
        height: 100%;
        width: 100%;
    }

    /* #banner {
        border-radius: none;
        width: 100%;
        background: none;
    }

    #banner .blank {
        display: none;
    }

    #banner .banner-content {
        width: 100%;
        border-radius: 1.25rem;
        height: auto;
    }

    #banner .text-content {
        width: 100%;
        padding: 10px;

    }

    #banner .image {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        top: none;
        left: none;
        border-radius: 1.25rem;

    }

    #banner .text-content .description {
        width: 100%;
    }

    #banner .image {
        border-radius: 1.25rem;
        padding-top: 1.87rem;
        
    } */

    #informations .content-informations .items {
        width: 100%;

    }

    /* #informations .content-informations .items .item {
        border-top: 1px solid #E7EAEB;
        border-bottom: 1px solid #E7EAEB;
    } */

    #informations .content-informations {
        flex-direction: column;
        width: 100%;
    }

}

@media screen and (max-width: 992px) {

    #trainning .trainning-content {
        width: 100%
    }

    #trainning .trainning-content .card-trainning {
        width: calc((100% / 3) - 2.2rem);
        flex-wrap: wrap;
        height: 100%;
    }

    #trainning .trainning-content .card-trainning .fee {
        left: 60%;
        top: 0;
    }

    #banner {
        border-radius: none;
        width: 100%;
        background: none;

    }

    #banner .blank {
        display: none;
    }

    #banner .banner-content {
        width: 70%;
        border-radius: 1.25rem;
        height: auto;
    }

    #banner .text-content {
        width: 80%;
        padding: 10px;
    }


    #informations .content-informations .items .item {
        border-top: 1px solid #E7EAEB;
        border-bottom: 1px solid #E7EAEB;
        border-right: none;
        border-left: none;
    }

    #informations .content-informations {
        flex-direction: column;
        width: 100%;
    }

    #teachers .circle-img {
        display: none;
    }

    #teachers .teacher-content {
        display: block;
        align-items: center;
        justify-content: center;
    }

    #teachers .teacher-content .content-text {
        align-items: center;

    }

    #teachers .content-picture {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* justify-content: center; */
        flex-direction: column;
    }

    #teacher .circle-img {
        display: none;
    }

    #teacher .teacher-content {
        display: block;
        align-items: center;
        justify-content: center;
    }

    #teacher .teacher-content .content-text {
        align-items: center;

    }

    #teacher .content-picture {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* justify-content: center; */
        flex-direction: column;
    }

    #teachers .content-title h2 {
        text-align: center;
    }

    #teachers .content-description p {
        text-align: center;
    }

    #teacher .content-title h2 {
        text-align: center;
    }

    #teacher .content-description p {
        text-align: center;
    }

    /* #trainning .title {
        text-align: center;
    } */
    #banner>div.app-container>div.banner-content>div>div.banner-description {
        width: 100%;
    }
}



@media screen and (max-width: 768px) {
    #fre-courses {
        width: 100%;

    }

    #free-courses .content-banner {
        width: 100%;

    }

    #informations .content-informations .item {

        border-right: none;
        border-left: none;
        border-bottom: 1px solid #E7EAEB;
        border-top: 1px solid #E7EAEB;


    }


    #free-courses .content-banner .form-group {
        width: 100%;
        flex-wrap: wrap;
        display: flex;

    }

    #free-courses .content-banner .form-group .form-content {
        flex-wrap: wrap;

    }

    #trainning .trainning-content {

        width: 100%;
    }

    #trainning .trainning-content .card-trainning {
        width: calc((100% / 2) - 2.2rem);
        height: 100%;
    }

    #banner .text-content .title {
        width: 100%;
    }

    #banner {
        border-radius: none;
        width: 100%;
        background: none;
    }

    #banner .blank {
        display: none;
    }

    #banner .banner-content {
        width: 100%;
        border-radius: 1.25rem;
        height: auto;
        min-height: auto;
    }

    #banner .text-content {
        width: 100%;
        padding: 10px;

    }

    #banner .image {
        display: none;

    }

    #banner .text-content .description {
        width: 100%;
    }

    #informations .content-informations .items {
        width: 100%;

    }

    #informations .content-informations .items .item {
        border-top: 1px solid #E7EAEB;
        border-bottom: 1px solid #E7EAEB;
    }

    #informations .content-informations {
        flex-direction: column;
        width: 100%;
    }

    #teachers .circle-img {
        display: none;
    }

    #teacher .circle-img {
        display: none;
    }

}

@media screen and (max-width: 576px) {


    #trainning .trainning-content {
        width: 100%
    }

    #trainning .trainning-content .card-trainning {

        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media screen and (max-width: 320px) {

    #trainning .trainning-content .card-trainning {
        width: 100%;
        height: 100%;

    }

}

#formations {
    width: 100%;
    background: #F6FAFF;
    position: relative;
    padding-top: 5.56rem;
    padding-bottom: 7.81rem;
}

#formations .content {
    display: block;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    margin-top: 5.85rem;

}

#formations .content .content-title {

    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

}


#formations .content .title {
    color: #001A49;
    font-family: Montserrat;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem;
    padding-top: 5%;
}

#formations .content .description {
    color: #4F596A;
    font-family: Mulish;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
    /* 150% */
}

#formations .img-circle {
    right: 0;
    bottom: 0;
    position: absolute;
}

#informations{
    padding-top: 2rem;
}

#teachers>div>div>div>div.content-text>div.btn-content {
    width: fit-content;
}

#banner>div.app-container>div.banner-content>div>div.banner-title {
    width: 100%;
}

#banner>div.app-container>div.banner-content>div>div.banner-description {
    width: 100%;
}