:root{
    --primary: #3a3d92; /* #3a3d92 */
    --yellow: #f3d341; /* #f3d341 */
}

body{
    font-family: "Poppins", Arial, sans-serif;
    color: #000;
}

#app{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0px;
    left: 0px;

    background-color: #fff;
}
#app .loader{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0px;

    column-gap: 10px;
    background-color: #fff;

    color: var(--primary);
    z-index: 999;
}
#app .loader h3,
#app .loader img{
    opacity: 0;
    transition: transform cubic-bezier(0.16, 1, 0.3, 1) 1s, opacity 2s;
}
#app .loader h3{
    font-family: "Saffran Bold";
    margin: 5px 0 0 0;
    transform: translateX(-30%);
}
#app .loader img{
    width: 60px;
    transform: translateX(100%);
}
#app .loader.complete h3,
#app .loader.complete img{
    transform: translateX(0%);
    opacity: 1;
}
#app .loader .preloader{
    width: 100%;
    height: 3px;

    position: absolute;
    top: 0px;
    left: 0px;
}
#app .loader .preloader .fluide{
    width: 0%;
    height: 100%;
    background-color: var(--primary);

    -webkit-box-shadow: 0 -2px 10px 3px rgba(58, 61, 146, 0.3);
    -moz-box-shadow: 0 -2px 10px 3px rgba(58, 61, 146, 0.3);
    box-shadow: 0 -2px 10px 3px rgba(58, 61, 146, 0.3);
}

.container{
    max-width: 1170px;
}

.home header{
    position: absolute;

    top: 0px;
    left: 0px;

    height: auto;
    width: 100%;

    z-index: 10;
    background-color: #fff;
}
.home header .container > div{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 15px 0;
}
.home header .logo{ width: 170px; }
.home header .actions{
    list-style: none;
    padding: 0;
    margin: 0;
}
.home header .actions a{
    text-decoration: none;
    border: 1px solid var(--primary);
    color: var(--primary);

    padding: 12px 15px;
    border-radius: 50px;

    font-size: 0.8em;
}

.view{
    width: 100%;
    height: 100%;

    z-index: 10;
    opacity: 0;

    transition: 2s;
}
.view.done{ opacity: 1; }
.section{
    display: flex;

    width: 100%;
    height: 100%;

    /* padding-top: 75px; */
}
.section .container,
.section .elements,
.section .element{ height: 100%; }
.section .element .left,
.section .element .right{
    width: 50%;
    position: relative;
}
.section .element{ display: flex; }
.section .element .left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.section .element .left h3{
    font-weight: 800;
    font-size: 3.0em;

    position: relative;
}
.section .element .left h3::after{
    content: url('../img/Vector.svg');
    position: absolute;
    top: -50px;
    right: 25px;
}
.section .element .left p{ font-size: 1.3em; }
.section .element .left a{ width: 200px; }
.section .element .right{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px;
}
.section .element .right .blue{
    width: 100%;
    height: 450px;

    background-color: #F5F4FF;
    border-radius: 30px;

    position: relative;
}
.section .element .right .object{
    position: absolute;
    top: 17%;
    left: 0px;
    width: 500px;

    z-index: 5;
}
.section .element .right .advantage{
    position: absolute;
    z-index: 7;

    background-color: var(--primary);
    padding: 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.section .element .right .advantage img{ width: 100px; }
.section .element .right .advantage:not(.horizontal){
    width: 150px;
    border-top-right-radius: 30px;
}
.section .element .right .advantage.horizontal{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    padding: 10px 15px 10px 15px;
}
.section .element .right .advantage.horizontal img{ width: 30px; }
.section .element .right .advantage.digital{
    top: -30px;
    right: -30px;
}
.section .element .right .advantage.digital img{ width: 110px; }
.section .element .right .advantage.gestion{
    bottom: 100px;
    left: -80px;

    border-bottom-left-radius: 20px;
}
.section .element .right .advantage p{
    color: #fff;
    font-size: 0.7em;
    font-weight: 500;
    margin: 0 0 0;

    text-align: center;
}
.section .element .right .advantage.realtime{
    bottom: -50px;
    right: 30px;
}
.section .element .right .advantage.realtime img{ width: 80px; margin-bottom: 10px; }

.btn{
    font-family: "Poppins";
    padding: 12px 15px;
    border-radius: 50px;

    font-size: 0.8em;
}
.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary );
}
.btn-primary:hover{
    opacity: 0.8;
    background-color: var(--primary);
    border-color: var(--primary );
}

.modal-header{ border-bottom: none; }
.modal-footer{ border-top: none; }
