/********************** GLOBAL **********************/

:root {
    --color1: rgb(146, 228, 253);
    --color2: rgb(10, 33, 57);
    --color3: rgb(255, 255, 255);
    --color4: rgb(242, 242, 242);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-size: 16px;
    font-family: 'Open sans', sans-serif;
    line-height: 1.5;
}

body {
    background-color: var(--color3);
}

h1,
h2,
h3,
h4 {
    font-family: Roboto;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

.center {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* rgb(42,53,68) */
}

.priority-bg{
    background-color: #E1E7FC;
}

.card-item {
    background-color: rgb(242, 242, 242);
    padding: 10px;
    border-radius: 5px;
    height: 100%;
}

.sp-p {
    height: 520px;
    padding: 0px 10px 0px;
}

.container {
    padding: 0 2.5%;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

hr {
    width: 25%;
    border: 1.5px solid;
    border-color: var(--color1);
    margin: 20px 0;
}

.h2Cyan {
    font-size: 24px;
    color: var(--color1);
}

.overlay {
    background-color: rgba(23, 40, 62, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
}

.bolder {
    font-weight: bolder;
}

.supraColor {
    color: var(--color3);
}

.articleSection>span.articleSection {
    padding: 0;
}

p {
    line-height: 1.4em;
}

/********************** NAVBAR **********************/

nav {
    background-color: var(--color2);
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navContener {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.btnLogo {
    display: flex;
    padding: 15px 15px 15px 0;
}

.logo {
    width: 175px;
}

#burgerMenu,
#responsiveMenu {
    display: none;
}

.navList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 15px;
}

.navList>li>a {
    margin: 0 10px;
    padding: 16px;
    border: none;
    cursor: pointer;
}

.navList>li>a:hover {
    background-color: rgb(20, 43, 67);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    z-index: 1;
    text-align: center;
    background-color: var(--color2);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgb(20, 43, 67);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content-burger {
    display: none;
    flex-direction: column;
    width: max-content;
    z-index: 1;
    text-align: center;
    margin-top: 10px;
}

.bgMVNE {
    max-height: 160px;
}

.dropdown-burger {
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease-out;
}

.mvneBtnSelector>.mvneBtnContent {
    display: none;
}

.dropdown-content-burger>a {
    font-size: 12px;
    margin: 10px 0;
    /* border-top: 1px solid var(--color2); */
}

.active {
    background-color: #DCDCDC;
    padding: 10px 0;
    margin: 0 !important;
    height: 270px;
}


/********************** Usefull classes **********************/

.articleSection {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 50px auto;
}

.mlr-2{
    margin-left: 20px;
    margin-right: 20px;
}

.no-mb{
    margin-bottom: 0;
}

.no-mt{
    margin-top: 0;
}

.articleSection>article {
    width: 49%;
    display: flex;
    flex-direction: column;
}

.imgArticleCont {
    overflow: hidden;
    width: 100%;
    height: 200px;
    position: relative;
}

.imgArticle {
    object-fit: cover;
    position: absolute;
    width: inherit;
    top: -30%;
    left: 0;
}

.img-title-cont{
    height: 100%;
}

.img-title{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

.reverse {
    flex-direction: row-reverse;
}

/* .reverse>article {
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 30px;
} */

.contactSection {
    padding: 10px 30px;
    border: 2px solid var(--color2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.contactSection>a {
    background-color: var(--color1);
    color: var(--color2);
    padding: 10px 20px;
    width: 25%;
    text-align: center;
    margin-left: 5px;
}

.greyBackground {
    background-color: var(--color4);
}

.align-special {
    align-items: flex-start !important;
}

.greyBackground+.contactSection-resp {
    margin-top: 50px;
}

/********************** BUTTON **********************/

.btnMVNE {
    color: var(--color2);
    padding: 10px 20px;
    width: 50%;
    border: solid 2px var(--color2);
    text-align: center;
}

.wdth-spe {
    width: 100%;
}

.btn-more{
    color: var(--color2);
    padding: 10px 20px;
    width: 200px;
    border: solid 2px var(--color2);
    text-align: center;
}

/********************** FOOTER **********************/

footer {
    background-color: #02213a;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.logoCenter {
    display: flex;
    justify-content: center;
    width: 100%;
}

.card {
    color: var(--color3);
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hrFooter {
    width: 100%;
    display: flex;
    justify-content: center;
    border-width: 0.1px;
    border-color: var(--color1);
    margin: 15px 0;
}

.logoFooter {
    width: 200px;
    margin: 10px 0;
}

.wth {
    color: var(--color3) !important;
}

.blc {
    color: var(--color2) !important;
}

.footerColumn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 5%;
}

.logoLink {
    width: 40px;
    cursor: pointer;
}

.footLog {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: var(--color3);
}

.specialSize {
    width: 94%;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    transition: 0.5s ease-in-out;
}

.item-solution{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    padding: 10px;
    position: relative;
    align-items: center;
    text-align: center;
}

.item-solution>i{
    border: solid 3px var(--color3);
    background-color: var(--color2);
    color: var(--color3);
    border-radius: 10px;
    padding: 10px;
    font-size: 35px;
    width: 65px;
    height: 65px;
}

.col-xl-1 {
    width: 8.33%;
}

.col-xl-2 {
    width: 16.66%;
}

.col-xl-3 {
    width: 25%;
}

.col-xl-4 {
    width: 33.33%;
}

.col-xl-5 {
    width: 41.66%;
}

.col-xl-6 {
    width: 50%;
}

.col-xl-7 {
    width: 58.33%;
}

.col-xl-8 {
    width: 66.66%;
}

.col-xl-9 {
    width: 75%;
}

.col-xl-10 {
    width: 83.33%;
}

.col-xl-11 {
    width: 91.66%;
}

.col-xl-12 {
    width: 100%;
}

/********************** RESPONSIVE **********************/

@media (max-width: 1108px) {

    * {
        font-size: 15px;
    }

    .logo {
        width: 125px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
    }
}

@media (max-width: 969px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 23px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .h2Cyan {
        font-size: 23px;
    }

    .navList {
        display: none;
    }

    .navContener {
        position: relative;
        overflow-x: hidden;
    }

    #responsiveMenu {
        display: none;
        position: absolute;
        margin: 0;
        right: 0;
        top: 0;
        background-color: rgba(23, 40, 62, 0.7);
        width: 100vw;
        height: 100vh;
        z-index: 100;
        transform-origin: 0% 0%;
        transform: translate(200%, 0);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    #responsiveMenu ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        margin: 0;
        right: 0;
        top: 0;
        width: 65%;
        height: 100vh;
        padding: 56px 0 0;
        align-items: center;
        background: var(--color3);
    }

    #responsiveMenu li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    #responsiveMenu a {
        white-space: nowrap;
        color: #333;
        text-decoration: none;
    }

    #responsiveMenu.open {
        transform: none;
        position: fixed;
        display: block;
    }

    .wrapperBurger {
        position: fixed;
        top: 20px;
        right: 5px;
        z-index: 101;
    }

    #burgerMenu {
        display: block;
        position: relative;
        margin: 16px;
        width: 33px;
        height: 28px;
        z-index: 98;
        cursor: pointer;
    }

    #burgerMenu span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        margin-bottom: 5px;
        background: #ededed;
        border-radius: 3px;
        z-index: 98;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: 0.25s ease-in-out;
    }

    #burgerMenu span:nth-child(1) {
        top: 0px;
        transform-origin: left top;
    }

    #burgerMenu span:nth-child(2) {
        top: 12px;
        transform-origin: left center;
    }

    #burgerMenu span:nth-child(3) {
        top: 24px;
        transform-origin: left bottom;
    }

    #burgerMenu.open span {
        background: var(--color2);
    }

    #burgerMenu.open span:nth-child(1) {
        width: 110%;
        transform: rotate(45deg);
    }

    #burgerMenu.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #burgerMenu.open span:nth-child(3) {
        width: 110%;
        transform: rotate(-45deg);
    }

    .btnMVNE {
        width: 65%;
    }

    .col-sm-1 {
        width: 8.33%;
    }

    .col-sm-2 {
        width: 16.66%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33%;
    }

    .col-sm-5 {
        width: 41.66%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .row>.col-sm-12:first-child {
        padding-right: 0 !important;
    }

    .row>.col-sm-12:last-child {
        padding-left: 0 !important;
    }

    .col-sm-7 {
        width: 58.33%;
    }

    .col-sm-8 {
        width: 66.66%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33%;
    }

    .col-sm-11 {
        width: 91.66%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

@media (max-width: 770px) {
    .articleSection {
        flex-direction: column;
        padding: 0 15%;
    }

    .articleSection>article {
        width: 100%;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .h2Cyan {
        font-size: 22px;
    }

    .contactSection>a {
        width: 35%;
    }
}

@media (max-width: 605px) {

    * {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    .h2Cyan {
        font-size: 20px;
    }

    .contactSection {
        flex-direction: column;
    }

    .contactSection>div>p {
        text-align: center;
        line-height: 1.1 !important;
    }

    .contactSection>a {
        width: 50%;
        margin-top: 5px;
    }
}

@media (max-width: 513px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    .btnMVNE {
        width: 75%;
    }
}

@media (max-width: 443px) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    .btnMVNE {
        width: 100%;
    }

    .col-xs-1 {
        width: 8.33%;
    }

    .col-xs-2 {
        width: 16.66%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-4 {
        width: 33.33%;
    }

    .col-xs-5 {
        width: 41.66%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-7 {
        width: 58.33%;
    }

    .col-xs-8 {
        width: 66.66%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-10 {
        width: 83.33%;
    }

    .col-xs-11 {
        width: 91.66%;
    }

    .col-xs-12 {
        width: 100%;
    }
}