<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* MEDIA QUERIES*/
:root {
    --breackpoint-mobile: 576px;
    --breackpoint-tablet: 768px;
    --breackpoint-large-tablet: 1024px;
    --breackpoint-laptop: 1200px;
    --breackpoint-desktop: 1600px;
    --breackpoint-large-desktop: 1920px;
    --breackpoint-xl-desktop: 2560px;
}

.home h1{margin-top: 0;}

/* MARGIN */
body{
    --container-space : 15vw;
}

/* INITIAL LIST STYLE*/
.nav ul {
    list-style: none;
    margin-bottom: 0;
}
.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* HIDE SCROLLBAR */
.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* INNOMedX MODIFICATION */

.fw-700 {
    font-weight: 700 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-300{
    font-weight: 300 !important;
}

.is-char-reverted{
    transform: scale(-1,1);
    display: inline-block;
}

.courbe{
    position: absolute;
    top: 0;
    transform: translate(0, -88px);
    max-width: 100% !important;
}

.p-relative{
    position: relative;
}



/* MEDIA QUERIES SAMPLES */
@media (max-width: var(--breackpoint-xl-desktop)) {
}
@media (max-width: var(--breackpoint-large-desktop)) {
}
@media (max-width: var(--breackpoint-desktop)) {
    body{
        --container-space : 10vw;
    }
}
@media (max-width: var(--breackpoint-laptop)) {
}
@media (max-width: var(--breackpoint-large-tablet)) {
}
@media (max-width: var(--breackpoint-tablet)) {
    body{
        --container-space : 1.33em;
    }
}
@media (max-width: var(--breackpoint-mobile)) {   
}

@media (max-width:1200px){
    .courbe{
        display: none;
    }
}</pre></body></html>