:root {
    --main-color: #cb4016;
    --secondary-color: #062d53;
    --secondary-color-dark: #021630;
    --secondary-color-light: #063873;
    --light-color: #f5f5f5;
    --dark-color: #555;
    --background-color: #062d53;
    --active-color: black;
    --inactive-color: #8d8d8d;
    --main-hover-color: #e26039;

    --sm: 35em;
    --md: 52em;
    --lg: 75em;

    --cut: 60px;
    --cut-sm: 30px;
}


/* DEBUG */

/* * {
    border: 1px dotted lightblue;
} */




/* GLOBAL */

html, body {
    overflow-x: hidden;
}

body {
    line-height: 1.2;
    font-family: 'Karla', sans-serif;
}

.transparent {
    background: transparent !important;
}

.button {
    white-space: normal !important;
}

.ms {
    font-family: 'Montserrat', sans-serif !important;
}

.as {
    font-family: 'Asap', sans-serif !important;
}

.thin {
    font-weight: 200;
}

.medium {
    font-weight: 500;
}

.semi {
    font-weight: 600;
}

.flex {
    display: flex;
}

.column {
    flex-direction: column;
}

.center-align {
    align-items: center;
}

.between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.main {
    color: var(--main-color);
}

.white {
    color: white;
}

.white-hover:hover {
    color: white;
}

.black {
    color: black;
}

.black-hover:hover {
    color: black;
}

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: bold;
}

.subtitle {
    display: inline-block;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
}

.smalltitle {
    display: inline-block;
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
}

.block {
    display: block;
}

.feature {
    font-size: 1.6em;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

.highlight {
    background-color: var(--main-color);
    padding: 0 6px 0 2px;
}

.tiny {
    font-size: 0.75em;
}

.bigger {
    font-size: 1.15em;
}

.big {
    font-size: 1.3em;
}

.italic {
    font-style: italic;
}

.inline {
    display: inline;
}

span.signed, a.signed {
    position: relative;
}

span.signed > span.sign, a.signed > span.sign {
    position: absolute;
    width: 2px;
    height: 32px;
    /* bottom: 200px;
    right: -220px;
    opacity: 0; */
    bottom: -10px;
    right: -20px;
    opacity: 1;
    background-color: var(--main-color);
    transform: rotate(45deg);
}

.responsive {
    width: 100%;
}

.cover {
    object-fit: cover;
}

.anchor {
    padding-top: 120px;
    margin-top: -120px;
}

.spacing-small {
    margin-bottom: 30px;
}

.spacing {
    margin-bottom: 60px;
}

.spacing-big {
    margin-bottom: 120px;
}

.spacing-top-small {
    margin-top: 30px;
}

.spacing-top {
    margin-top: 60px;
}

.spacing-top-big {
    margin-top: 120px;
}

.relative {
    position: relative;
}

.back {
    z-index: -1;
}

.front {
    z-index: 1;
}

.deco {
    position: absolute;
    width: 100px;
    opacity: 0;
    transform: rotate(-5deg);
}

.deco-small {
    width: 75px;
}

@media only screen and (max-width: 52em) {
    .deco {
        width: 70px;
    }

    .deco-small {
        width: 50px;
    }
}

.deco.top-left {
    top: 0;
    left: 0;
    /* transform: rotate(-15deg); */
}

.deco.top-right {
    top: 0;
    right: 0;
    /* transform: rotate(15deg); */
}

.deco.bottom-left {
    bottom: 0;
    left: 0;
    /* transform: rotate(-15deg); */
}

.deco.bottom-right {
    bottom: 0;
    right: 0;
    /* transform: rotate(15deg); */
}

.deco.margin-bottom {
    bottom: -80px;
}

.deco.left {
    top: calc(50% - 50px);
    left: 0;
    /* transform: rotate(-15deg); */
}

.deco.right {
    top: calc(50% - 50px);
    right: 0;
    /* transform: rotate(15deg); */
}

.deco-padding {
    padding-left: 120px;
    padding-right: 120px;
}

@media only screen and (max-width: 52em) {
    .deco-padding {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.min-padding {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.min-padding-h {
    padding-left: 20px;
    padding-right: 20px;
}

.min-padding-v {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: white;
}

.navbar.scrolled {
    border-bottom: 0.5px solid var(--secondary-color-light);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0 16px;
}

.navigation img {
    width: 300px;
}

.navigation .menu-links {
    font-size: 1.2em;
}

.menu-links ul {
    list-style: none;
    display: flex;
    margin-top: 8px;
    margin-bottom: 0;
}

.menu-links ul li {
    position: relative;
    margin-left: 24px;
    padding: 3px;
}

.menu-links ul li a {
    color: var(--inactive-color);
}

.menu-links ul li.active a {
    color: var(--active-color);
    font-weight: bold;
    pointer-events: none;
}

/* .menu-links ul li.action.active a {
    background-color: var(--secondary-color);
} */

.menu-links ul li:not(.active):not(.action) a:hover {
    color: var(--main-color);
}

.menu-links ul li.next::before {
    content: " ";
    position: absolute;
    top: 14px;
    left: -14px;
    width: 4px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--inactive-color);
}

.menu-links ul li.action {
    margin-left: 48px;
}

.menu-links ul li.action a {
    color: white;
    background-color: var(--main-color);
    padding: 6px 10px;
}

.menu-links ul li.action a:hover {
    background-color: var(--main-hover-color);
}


/* MOBILE MENU */
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */
 
 #menuToggle
 {
   display: none;
   position: absolute;
   top: 27px;
   left: 27px;
   
   z-index: 999;
   
   -webkit-user-select: none;
   user-select: none;
 }
 
 #menuToggle a
 {
   text-decoration: none;
   color: rgba(255, 255, 255, 0.8);
   
   transition: color 0.3s ease;
 }

 #menuToggle a li {
     transition: all 150ms;
 }

 #menuToggle a:hover li
 {
   transform: translateX(5px);
   color: white;
 }
 
 
 #menuToggle input
 {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   top: -7px;
   left: -5px;
   
   cursor: pointer;
   
   opacity: 0; /* hide this */
   z-index: 2; /* and place it over the hamburger */
   
   -webkit-touch-callout: none;
 }
 
 /*
  * Just a quick hamburger
  */
 #menuToggle span
 {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;
   
   background: var(--main-color);
   border-radius: 3px;
   
   z-index: 1;
   
   transform-origin: 4px 0px;
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }
 
 #menuToggle span:first-child
 {
   transform-origin: 0% 0%;
 }
 
 #menuToggle span:nth-last-child(2)
 {
   transform-origin: 0% 100%;
 }
 
 /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
 #menuToggle input:checked ~ span
 {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: rgba(255, 255, 255, 0.8);
 }
 
 /*
  * But let's hide the middle one.
  */
 #menuToggle input:checked ~ span:nth-last-child(3)
 {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }
 
 /*
  * Ohyeah and the last one should go the other direction
  */
 #menuToggle input:checked ~ span:nth-last-child(2)
 {
   transform: rotate(-45deg) translate(0, -1px);
 }
 
 /*
  * Make this absolute positioned
  * at the top left of the screen
  */
 #menu
 {
   position: absolute;
   width: 300px;
   height: 100vh;
   margin: -100px 0 0 -27px;
   padding: 50px;
   padding-top: 125px;
   
   background: var(--main-color);
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */
   
   transform-origin: 0% 0%;
   transform: translate(-100%, 0);
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 }

 @media only screen and (max-width: 32em) {
    #menu {
        width: calc(100vw - 100px);
    }
 }
 
 #menu li
 {
   padding: 10px 0;
   font-size: 22px;
 }
 
 /*
  * And let's slide it in from the left
  */
 #menuToggle input:checked ~ ul
 {
   transform: none;
 }

 #menuToggle ul a.action-mobile {
    margin: 0 auto;
    text-align: center;
}

#menuToggle ul a.action-mobile li {
    margin-top: 50px;
    color: var(--main-color);
    background-color: white;
    padding: 6px 10px;
}

#menuToggle ul a.action-mobile:hover li {
    background-color: var(--light-color);
    transform: none;
}

#menuToggle ul a:not(.action-mobile) li.active {
    color: white;
}

 




 @media only screen and (max-width: 64em) {
    .navigation .home-logo {
        margin: 0 auto;
    }
    
    .navigation img {
        width: 250px;
    }

    .menu-links {
        display: none;
    }

    #menuToggle, #menuSvadhis
    {
        display: block;
    }
}


@media only screen and (max-width: 28em) {
    .navigation .home-logo {
        margin: 0 0 0 70px;
    }
    
    .navigation img {
        width: 200px;
        margin-top: 4px;
    }
}





main {
    margin-top: 130px;
}

@media only screen and (max-width: 52em) {
    main {
        margin-top: 130px;
    }
}


/* SWIPER MAIN */
.swiper-container-main {
    position: relative;
    width: 100%;
    height: 460px;
    margin-top: 30px;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: 460px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide a.img-link {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 88%;
    height: 100%;
    margin-left: 12%;
    object-fit: cover;
}

.swiper-slide .content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    bottom: -10px;
    left: 0;
    width: 280px;
    height: 230px;
    padding: 20px 10px 50px;
    background-color: white;
    text-align: left;
}

.swiper-slide .content .legend {
    flex: 3;
    margin-left: 5px;
    color: #777;
}

.swiper-slide .content .client {
    flex: 6;
    margin-bottom: 0;
    text-transform: uppercase;
}

.swiper-slide .content .description {
    flex: 11;
    font-weight: bold;
}

.swiper-slide .content .goal {
    flex: 7;
    font-size: 0.95em;
}


.swiper-container-main .content-wrapper {
    position: absolute;
    z-index: 1;
    bottom: -10px;
    left: 0;
    width: 300px;
    height: 50px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    left: 60px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    color: black;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: auto;
    width: auto;
    right: 10px;
}

.swiper-pagination {
    color: transparent;
}

.swiper-pagination span {
    color: black;
    margin: 0 6px;
    font-size: 1.2em;
}

.swiper-pagination span:before {
    content: "0";
}

.swiper-pagination::after {
    content: " ";
    position: absolute;
    width: 2px;
    height: 32px;
    top: calc(50% - 16px);
    left: calc(50% - 1px);
    background-color: var(--main-color);
    transform: rotate(45deg);
}




@media only screen and (max-width: 52em) {
    .swiper-container-main {
        width: 100%;
        height: 560px;
    }
    
    .swiper-container-main .swiper-slide {
        height: 560px;
    }
    
    .swiper-container-main .swiper-slide img {
        width: 100%;
        height: 260px;
        margin-left: 0;
        margin-bottom: 300px;
    }
    
    .swiper-container-main .swiper-slide .content {
        width: 100%;
    }
    
    .swiper-container-main .content-wrapper {
        width: 100%;
    }
}







/* SWIPER NEWS */
.swiper-container-news {
    position: relative;
    width: 100%;
    height: 460px;
    margin-top: 10px;
}

.swiper-container-news .swiper-slide img {
    width: 50%;
    height: 100%;
    margin-left: 50%;
    object-fit: cover;
}

.swiper-container-news .swiper-slide .content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    top: 0;
    left: 0;
    height: calc(100% - 210px);
    width: calc(50% - 130px);
    padding: 60px 100px 150px 30px;
    background-color: var(--main-color);
    text-align: left;
}

.swiper-container-news .swiper-slide .content {
    color: white;
}

.swiper-container-news .swiper-slide .content .title {
    flex: 3;
    margin-bottom: 0;
}

.swiper-container-news .swiper-slide .content .intro {
    flex: 10;
    font-size: 0.9em;
    text-align: justify;
}

.swiper-container-news .swiper-slide .content .link-news a {
    color: white;
    border-bottom: 1px solid white;
}

.swiper-container-news .swiper-slide .content .link-news .goto {
    font-size: 1.6em;
    margin-left: 10px;
    transform: translateY(10px);
}


.swiper-container-news .content-wrapper {
    position: absolute;
    background-color: var(--main-color);
    z-index: 1;
    bottom: -10px;
    left: 0;
    height: 50px;
    width: 50%;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    left: 60px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    color: black;
}

.swiper-pagination-news {
    color: transparent;
}

.swiper-pagination-bullets {
    margin-left: 20px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin-left: 12px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    background-color: white;
    opacity: .8;
}

@media only screen and (max-width: 52em) {
    .swiper-container-news {
        position: relative;
        width: 100%;
        height: 700px;
        margin-top: 10px;
    }

    .swiper-container-news .swiper-slide {
        height: 100%;
    }
    
    .swiper-container-news .swiper-slide img {
        position: absolute;
        width: 100%;
        height: 40%;
        top: 0;
        left: 0;
        margin-left: 0;
        object-fit: cover;
    }

    .swiper-container-news .swiper-slide .content {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;
        top: unset;
        bottom: 0;
        left: 0;
        height: calc(60% - 120px);
        width: calc(100% - 60px);
        padding: 30px 30px 90px;
        background-color: var(--main-color);
        text-align: left;
    }
}


/* SWIPER FEAT HOME */
.swiper-container-feat-home {
    position: relative;
    margin-top: 40px;
    width: 100%;
    height: unset;
}

.swiper-slide.feat-thumb {
    background: transparent;
    width: 50% !important;
    height: 260px;
}

.swiper-slide.feat-content {
    text-align: left;
    background: transparent;
    height: unset;
}

.swiper-container-feat-home-thumbs .pics {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.swiper-container-feat-home-thumbs .pic1 {
    content: " ";
    position: absolute;
    top: 120px;
    left: 10%;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: rotate(5deg);
}

.swiper-container-feat-home-thumbs .pic2 {
    content: " ";
    position: absolute;
    top: 30px;
    right: 10%;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: rotate(5deg);
}

.swiper-container-feat-home-thumbs .pic1 span:last-child {
    transform: rotate(-18deg);
    margin-top: -10px;
    margin-left: 25px;
}

.swiper-container-feat-home-thumbs .pic2 span:last-child {
    transform: rotate(7deg);
    margin-right: 12px;
}

.swiper-container-feat-home-thumbs .pic {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2em;
}

.swiper-container-feat-home-thumbs .pic .thumb {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-container-feat-home-thumbs .pic .thumb1 {
    background-image: url('../images/btp-inactif.png');
}

.swiper-container-feat-home-thumbs .pic .thumb2 {
    background-image: url('../images/industrie-inactif.png');
}

.swiper-container-feat-home-thumbs .pic img {
    width: 100px;
}

/* Active */
.swiper-container-feat-home-thumbs .swiper-slide-thumb-active .pic {
    color: var(--main-color);
}

.swiper-container-feat-home-thumbs .swiper-slide-thumb-active .pic .thumb1 {
    background-image: url('../images/btp.png');
}

.swiper-container-feat-home-thumbs .swiper-slide-thumb-active .pic .thumb2 {
    background-image: url('../images/industrie.png');
}



/* SWIPER FEAT SOLUTION */
.feat-solution-slider {
    position: relative;
}

.swiper-container-feat-solution {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 120px;
    height: unset;
}

.swiper-slide.feat-thumb {
    background: transparent;
    width: 50% !important;
    height: 260px;
}

.swiper-slide.feat-content {
    text-align: left;
    background: transparent;
    height: unset;
}

.swiper-container-feat-solution-thumbs .pics {
    position: relative;
    margin: 0 auto;
}

.swiper-container-feat-solution-thumbs .pic1 {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: rotate(5deg);
}

.swiper-container-feat-solution-thumbs .pic2 {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: rotate(5deg);
}

.swiper-container-feat-solution-thumbs .pic {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2em;
}

.swiper-container-feat-solution-thumbs .pic .thumb {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-container-feat-solution-thumbs .pic .thumb1 {
    background-image: url('../images/btp-inactif.png');
}

.swiper-container-feat-solution-thumbs .pic .thumb2 {
    background-image: url('../images/industrie-inactif.png');
}

.swiper-container-feat-solution-thumbs .pic img {
    width: 100px;
}

/* Active */
.swiper-container-feat-solution-thumbs .swiper-slide-thumb-active .pic .thumb1 {
    background-image: url('../images/btp.png');
}

.swiper-container-feat-solution-thumbs .swiper-slide-thumb-active .pic .thumb2 {
    background-image: url('../images/industrie.png');
}

@media only screen and (max-width: 75em) {
    .swiper-slide.feat-thumb {
        height: 330px;
    }
}

@media only screen and (max-width: 52em) {
    .swiper-slide.feat-thumb {
        height: 420px;
    }

    .swiper-container-feat-solution-thumbs .pic1 {
        bottom: unset;
        left: 20%;
        top: 0;
    }

    .swiper-container-feat-solution-thumbs .pic2 {
        bottom: unset;
        right: 20%;
        top: 0;
    }

    .swiper-container-feat-solution {
        margin-top: 120px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 42em) {
    .swiper-slide.feat-thumb {
        height: 500px;
    }
}

@media only screen and (max-width: 32em) {
    .swiper-slide.feat-thumb {
        height: 650px;
    }
}





/* HOME CATCH */
.home-catch {
    margin: 60px auto;
    max-width: 560px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-catch h4 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.home-catch span {
    font-size: 1.20em;
}

.home-catch img {
    margin-top: 50px;
    max-width: 280px;
}


/* HOME SOFTWARE 1 */
.blue-wrapper {
    background: linear-gradient(to bottom, var(--secondary-color-dark), var(--secondary-color));
    padding-top: 50px;
    overflow-x: hidden;
}

.blue-wrapper-reverse {
    background: linear-gradient(to bottom, var(--secondary-color-dark), var(--secondary-color));
    padding-bottom: 50px;
    overflow-x: hidden;
}

section#home-software-1 .container {
    position: relative;
}

/* section#home-software-1 .container img.deco {
    position: absolute;
    bottom: -100px;
    left: 20px;
    width: 100px;
    transform: rotate(-15deg);
} */

.cut-padding {
    padding-top: 65px;
}

.v-padding {
    padding-top: 65px;
    padding-bottom: 65px;
}

.cut-light {
    border-right: 100vw solid var(--light-color);
    border-top: var(--cut) solid transparent;
    width: 0;
    height: var(--cut);
    margin-top: 50px;
}

.cut {
    border-right: 100vw solid white;
    border-top: var(--cut) solid transparent;
    width: 0;
    height: var(--cut);
    margin-top: 50px;
}

.cut-reverse {
    border-left: 100vw solid white;
    border-bottom: var(--cut) solid transparent;
    width: 0;
    height: var(--cut);
    margin-bottom: 50px;
}

.cut-mirror {
    border-left: 100vw solid white;
    border-top: var(--cut) solid transparent;
    width: 0;
    height: var(--cut);
    margin-top: 50px;
}

.info-highlighted {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-highlighted > * {
    margin: 2px 0;
}

.info-highlighted > span {
    opacity: 0;
}

.info-highlighted.right {
    align-items: flex-end;
}

.features {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features.right {
    align-items: flex-end;
}

section#home-software-1 p {
    font-size: 1.3em;
    position: relative;
}

section#home-software-1 .second {
    margin-top: 120px;
}

.reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    font-family: 'Asap', sans-serif;
}

.reason img {
    width: 120px;
    margin-bottom: 25px;
    opacity: 0;
}


/* HOME-SOFTWARE-2 */
section#home-software-2 {
    background-color: var(--light-color);
}

.illustration {
    margin-right: 30px;
}

.illustration img {
    border: 16px solid var(--dark-color);
    border-radius: 20px;
}

.illustration-features {
    opacity: 0;
}

@media only screen and (min-width: 75em) {
    section#home-software-2 .info-highlighted {
        margin-left: 40px;
    }
}

.checklist {
    list-style-type: none;
    margin-top: 60px;
    font-size: 1.1em;
}

.checklist li {
    line-height: 1.8;
}

.checklist li span {
    margin-right: 10px;
    color: var(--main-color);
    font-size: 1.75em;
    transform: translateY(12px);
}

.checklist-small {
    list-style-type: none;
    margin-top: 20px;
    font-size: 1.05em;
}

.checklist-small li {
    line-height: 1.5;
}

.checklist-small li span {
    margin-right: 10px;
    color: var(--main-color);
    font-size: 1.5em;
    transform: translateY(8px);
}

.pad-left {
    padding-left: 20px;
}

.pad-right {
    padding-right: 20px;
}

/* FOOTER */
.footer-navigation {
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-top: 100px;
    margin-bottom: 20px;
}

.footer-navigation img {
    width: 200px;
    padding-bottom: 2px;
}

@media only screen and (max-width: 64em) {
    .footer-navigation {
        flex-direction: column;
    }

    .footer-navigation .menu-links {
        display: block;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 32em) {
    .footer-navigation .menu-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-navigation .menu-links ul li {
        margin-left: 0;
    }

    .footer-navigation .menu-links ul li.next::before {
        content: none;
    }
}











.feature-picture {
    position: relative;
    height: 420px;
}

.feature-picture .picture {
    height: 420px;
    object-fit: cover;
}

.pin-left {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    opacity: 0;
}

.pin-right {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 100px;
    opacity: 0;
}


.feature-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 420px;
    padding-left: 20px;
}

.feature-info .feature-title {
    flex: 1;
}

.feature-info .feature-checklist {
    flex: 12;
}

.feature-info .feature-description {
    margin-bottom: 0;
}

@media only screen and (max-width: 52em) {
    .feature-info {
        padding-left: 0px;
        padding-top: 30px;
        padding-bottom: 30px;
        height: unset;
    }

    .flex-col-reverse {
        flex-direction: column-reverse;
    }
}

.button-white {
    background-color: var(--light-color) !important;
    color: var(--main-color) !important;
}

.button-white:hover {
    background-color: white !important;
}

.button-main {
    background-color: var(--main-color) !important;
    color: white !important;
}

.button-main:hover {
    background-color: var(--main-hover-color) !important;
}

a.button, button {
    border: none !important;
}

.hidden {
    display: none;
}


.trust-card {
    position: relative;
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 80px 40px 80px 120px; 
    opacity: 0;
}

.trust-picture {
    position: absolute;
    width: 160px;
    height: 160px;
    top: calc(50% - 80px);
    left: -80px;
    border-radius: 160px;
    object-fit: cover;
}

.trust-citation::before {
    content: "\"";
}

.trust-citation::after {
    content: "\"";
}

.trust-card.reverse {
    padding: 80px 120px 80px 40px;
}

.trust-card.reverse .trust-picture {
    left: unset;
    right: -80px;
}

.trust-card-big.reverse {
    padding: 120px 160px 120px 80px;
}

.trust-card-big.reverse .trust-picture {
    width: 240px;
    height: 240px;
    top: calc(50% - 120px);
    right: -120px;
    border-radius: 240px;
}

@media only screen and (max-width: 52em) {
    .trust-card {
        position: relative;
        background-color: var(--light-color);
        border-radius: 12px;
        padding: 120px 30px 60px !important; 
        margin-top: 100px;
    }

    .trust-picture {
        position: absolute;
        width: 160px;
        height: 160px;
        top: -80px;
        left: calc(50% - 80px);
        border-radius: 160px;
        object-fit: cover;
    }

    .trust-card.reverse .trust-picture {
        right: unset;
        left: calc(50% - 80px);
    }

    .trust-card-big {
        padding: 160px 60px 100px !important;
    }

    .trust-card-big.reverse .trust-picture {
        right: unset;
        top: -120px;
        left: calc(50% - 120px);
    }
}





.company-nav-wrapper {
    display: flex;
    justify-content: space-between;
}

.nav-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 380px;
    height: 200px;
    margin: 0 10px;
    background-color: white;
    color: var(--secondary-color);
    padding-top: 90px;
    padding-bottom: 25px;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
}

.nav-img {
    height: 100px;
}

@media only screen and (max-width: 52em) {
    .company-nav-wrapper{
        flex-direction: column;
        align-items: center;
    }

    .nav-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 380px;
        height: unset;
        margin: 20px 0;
        padding-top: 10px;
        padding-right: 40px;
        padding-left: 10px;
        padding-bottom: 10px;
        border-radius: 20px;
        cursor: pointer;
    }
    
    .nav-img {
        height: 60px;
    }
}

@media only screen and (max-width: 32em) {
    .nav-card {
        width: 280px;
    }
}



/* MONTAGE COMPANY */
.company-montage {
    position: relative;
}

.company-montage .second {
    margin-top: 150px;
    padding: 50px 50px 80px 20% !important;
    overflow-x: hidden;
    background-color: var(--light-color);
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.company-montage .first {
    position: absolute;
    width: 42vw;
    max-width: 70rem;
    top: -50px;
    left: 0;
    padding: 50px 50px 80px 100px !important;
    margin-bottom: 100px;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}


@media only screen and (max-width: 75em) {
    .company-montage {
        display: flex;
        flex-direction: column-reverse;
    }

    .company-montage .first {
        position: relative;
        width: unset;
        max-width: unset;
        padding: 50px 50px 50px 100px !important;
        margin-top: 0;
        margin-bottom: -100px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }
    
    .company-montage .second {
        margin-top: 0;
        padding: 80px 50px 50px 100px !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }
}

@media only screen and (max-width: 52em) {
    .company-montage .first {
        padding: 50px 20px 50px 20px !important;
    }

    .company-montage .second {
        padding: 80px 20px 50px 20px !important;
    }
}




.team-nav {
    display: flex;
    justify-content: space-between;
}

.team-card {
    position: relative;
    min-width: 320px;
    width: 30vw;
    max-width: 460px;
    height: 325px;
    color: var(--main-color);
}

.face-a, .face-b {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-width: 270px;
    width: 26vw;
    max-width: 410px;
    height: 275px;
    padding: 25px;
}

.fondu {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 500ms;
}

.face-a-span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #eff3ffe3;
    text-align: center;
    padding: 20px;
}

.face-b-span {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #eff3ffe3;
    padding: 20px;
    color: var(--secondary-color);
}

.team-card:hover .fondu {
    height: 100%;
}

.team-img {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 75em) {
    .team-nav {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        margin-bottom: 30px;
        width: 460px;
    }

    .face-a, .face-b {
        width: 410px;
    }
}

@media only screen and (max-width: 32em) {
    .team-card {
        width: 320px;
    }

    .face-a, .face-b {
        width: 270px;
    }
}



.values-grid {
    display: grid;
    grid-template-columns: repeat(20, 5%);
    grid-template-rows: repeat(22, 55px);
}

.values-grid > * {
    opacity: 0;
}

.value1 {
    position: relative;
    text-align: center;
    grid-column: 1 / 10;
    grid-row: 1 / 9;
    background-image: url(../images/deux_tetes.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow:inset 0 0 0 1000px #062c53ea;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.value2 {
    position: relative;
    grid-column: 11 / 17;
    grid-row: 1 / 11;
    background: linear-gradient(to bottom, var(--main-hover-color), var(--main-color));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.value3 {
    position: relative;
    grid-column: 4 / 11;
    grid-row: 11 / 23;
    background-image: url(../images/futur.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow:inset 0 0 0 1000px #4e4e4eea;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.value4 {
    position: relative;
    text-align: right;
    grid-column: 12 / 21;
    grid-row: 12 / 23;
    background-image: url(../images/besoins_reels.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow:inset 0 0 0 1000px #062c53ea;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.value1 span {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    transition: all 300ms 300ms;
}

.value1 p {
    position: absolute;
    bottom: -280px;
    left: 30px;
    right: 30px;
    transition: all 300ms;
}

.value2 span {
    position: absolute;
    top: 40%;
    left: 30px;
    right: 30px;
    transition: all 300ms 300ms;
}

.value2 p {
    position: absolute;
    top: 20%;
    left: -700px;
    right: 760px;
    transition: all 300ms;
}

.value3 span {
    position: absolute;
    top: 100px;
    left: 80px;
    right: 30px;
    transition: all 300ms 300ms;
}

.value3 p {
    position: absolute;
    top: -360px;
    left: 30px;
    right: 30px;
    transition: all 300ms;
}

.value4 span {
    position: absolute;
    top: 45%;
    left: 30px;
    right: 30px;
    transition: all 300ms 300ms;
}

.value4 p {
    position: absolute;
    top: 30%;
    left: 760px;
    right: -700px;
    transition: all 300ms;
}

.value1:hover span {
    bottom: -60px;
    transition: all 300ms;
}

.value1:hover p {
    bottom: 0;
    transition: all 300ms 300ms;
}

.value2:hover span {
    left: -700px;
    right: 760px;
    transition: all 300ms;
}

.value2:hover p {
    left: 30px;
    right: 30px;
    transition: all 300ms 300ms;
}

.value3:hover span {
    top: -100px;
    transition: all 300ms;
}

.value3:hover p {
    top: 100px;
    transition: all 300ms 300ms;
}

.value4:hover span {
    left: 760px;
    right: -700px;
    transition: all 300ms;
}

.value4:hover p {
    left: 30px;
    right: 30px;
    transition: all 300ms 300ms;
}



@media only screen and (max-width: 75em) {    
    .value1 {
        grid-column: 1 / 11;
        grid-row: 1 / 8;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }
    
    .value2 {
        grid-column: 12 / 19;
        grid-row: 1 / 10;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }
    
    .value3 {
        grid-column: 2 / 9;
        grid-row: 9 / 21;
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    }
    
    .value4 {
        grid-column: 10 / 20;
        grid-row: 11 / 22;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }

    .value1 span {
        bottom: 20px;
    }
    
    .value1 p {
        bottom: -380px;
    }
    
    .value2 span {
        top: 40%;
    }
    
    .value2 p {
        top: 30px;
    }
    
    .value3 span {
        top: 100px;
    }
    
    .value3 p {
        top: -600px;
    }
    
    .value4 span {
        top: 45%;
    }
    
    .value4 p {
        top: 25%;
    }
    
    .value1:hover span {
        bottom: -60px;
    }
    
    .value1:hover p {
        bottom: 0;
    }
    
    .value3:hover span {
        top: -160px;
    }
    
    .value3:hover p {
        top: 100px;
    }
}

@media only screen and (max-width: 52em) { 
    .values-grid {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: repeat(25, 80px);
    }

    .value1 {
        grid-column: 1;
        grid-row: 1 / 7;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }
    
    .value2 {
        grid-column: 1;
        grid-row: 8 / 13;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }
    
    .value3 {
        grid-column: 1;
        grid-row: 14 / 19;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    }
    
    .value4 {
        grid-column: 1;
        grid-row: 20 / 25;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }

    .value1 span {
        bottom: 20px;
    }
    
    .value1 p {
        bottom: -440px;
    }
    
    .value2 span {
        top: 40%;
    }
    
    .value2 p {
        top: 20%;
    }
    
    .value3 span {
        top: 100px;
    }
    
    .value3 p {
        top: -360px;
    }
    
    .value4 span {
        top: 45%;
    }
    
    .value4 p {
        top: 30%;
    }
    
    .value1:hover span {
        bottom: -60px;
    }
    
    .value1:hover p {
        bottom: 0;
    }
    
    .value3:hover span {
        top: -100px;
    }
    
    .value3:hover p {
        top: 100px;
    }
}







.form {
    background-color: var(--light-color);
    padding: 30px;
}

.form .row>div {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.form .group-from {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 52em) { 
    .form .group-from {
        flex-direction: column;
    }
}

.form-info {
    font-size: 0.75em;
    color: #999;
    margin: 20px 0;
    font-style: italic;
}

.form-group {
    display: flex;
    flex-direction: column;
}






.post-img {
    height: 420px;
}

.post-img img {
    height: 420px;
    object-fit: cover;
}

@media only screen and (max-width: 42em) {
    .post-img {
        height: 320px;
    }
    
    .post-img img {
        height: 320px;
    }
}


.link-post a {
    text-decoration: none;
}



.single-post-title h1 {
    padding: 80px 30px;
}



.button-arrow-left {
    width: 180px;
    margin: 0 5px;
}

.button-arrow-right {
    width: 180px;
    margin: 0 5px;
}

@media only screen and (max-width: 52em) {
    .img-logo {
        text-align: center;
        margin-top: 40px;
    }
}





ul.errors {
    color: red;
    font-weight: bold;
}

p.message.success {
    color: white;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: mediumseagreen;
    padding: 20px;

    -webkit-animation: toast 500ms linear 3s 1 forwards;
    animation: toast 500ms linear 3s 1 forwards;
}

@-webkit-keyframes toast { 
    from { top: 0; } 
    to { top: -80px; }  
}

@keyframes toast { 
    from { top: 0; } 
    to { top: -80px; }  
}




.span {
    opacity: 0;
}













