:root{
    --dark-bg: #263238;
    --light-bg: #FFF;
    --color-white: #FFF;
    --color-blue: #0082F2;
    --color-blue-light: #40A2F6;
    --color-red: #F43F3F;
    --color-black: #000;
    --color-green: #0FB269;
}

/* Fira Sans */
@font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  /* Fira Sans Regular */
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face
  {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
  }
  
  /* Fira Sans Bold */
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Sans";
    src: url('../fonts/Fira_Sans/FiraSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }

/*--------------Reset-------------*/
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    width: 100%;
    font-family: 'Fira Sans', sans-serif;
    color: var(--color-white);
    background-color: var(--dark-bg);
}

ul {
    list-style-type: none;
}

.robot-text {
    font-family: Fira Code;
}
.robot-text--blue {
    font-family: Fira Code;
    color: var(--color-blue);
}

.text--blue {
    color: var(--color-blue);
}

.text--red {
    color: var(--color-red);
}
/*--------------Scroller-------------*/
.scroller > svg {
    margin-top: 20px;
    width: 60px;
    cursor: pointer;
    fill: var(--color-white);
    webkit-animation: scroller 5s linear infinite both;
    animation: scroller 5s linear infinite both;    
}

@keyframes scroller {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}

/*--------------Navbar-------------*/
header, .hiring-header {
    width: 100%;
    height: 65px;
    background-color: var(--dark-bg);
    position: fixed;
    z-index: 900;
    font-family: Fira Sans;
}

.navbar, .hiring-navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 100px);
    max-width: 1600px;
    padding: 10px 0;
    margin: auto;
} 

.navbar-mobile {
    display: none;
}

.navbar #logo, .hiring-navbar #logo  {
    max-width: 200px;
    height: auto;
    cursor: pointer;
}

.navbar .menus, .hiring-navbar .menus {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    column-gap: 30px;
}

.navbar .menu-item, .hiring-navbar .menu-item {
    width: fit-content;
    text-align: center;
}
.navbar .menu-item > div,.navbar .menu-item > a,
.hiring-navbar .menu-item > div,.hiring-navbar .menu-item > a 
 {
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    color: var(--color-white);
    cursor: pointer;
}
.navbar a.active , .navbar-mobile .menus .menu-item a.active,
.hiring-navbar  a.active {
    color: var(--color-blue);
}

.navbar .menu-item > div:hover, .navbar .menu-item >a:hover,
.hiring-navbar .menu-item > div:hover, .hiring-navbar .menu-item >a:hover
 {
    color: var(--color-blue);
}

#connection {
    background-color: var(--color-red);
    padding: 5px;
    border-radius: 10px;
    width: fit-content;
}

#connection:hover {
    background-color: var(--color-blue);
}

#connection >a:hover {
    color: var(--color-white);
}

/*--------------Mediaqueries Navbar-------------*/
@media screen and (max-width : 768px){
    .navbar {
        width: calc(100% - 20px);
    }
    .navbar #logo {
        max-width: 150px;
    }
    .navbar .menus {
        column-gap: 10px;
    }
    .navbar .menu-item, .navbar .menu-item > div,.navbar .menu-item > a {
        font-size: 12px;
    }
}

@media screen and (max-width : 495px){
    .navbar .menus {
        display: none;
    }
    .toggler-button {
        width: 35px;
        height: 35px;
        background-color: var(--color-white);
        border-radius: 50%;
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    .lines{
        width: 60%;
        height: 60%;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .line{
        width: 80%;
        height: 2px;
        background-color: var(--dark-bg);
    }
    .lines.active {
        justify-content: center;
    }

    .lines.active :nth-child(1){
        background: transparent;
    }

    .lines.active :nth-child(2){
        transform: translateY(1px) rotate(-45deg);
        transition: all 300ms ease;
    }
    
    .lines.active :nth-child(3){
        transform: translateY(-1px) rotate(45deg);
        transition: all 300ms ease;
    }
    .navbar-mobile.show-mobile-nav{
        display: block;
        width: 100%;
        height: 35vh;
        background-color: var(--dark-bg);
        z-index: 1000;
    }
    .navbar-mobile .menus {
        width: 70%;
        margin: auto;
    }

    .navbar-mobile .menus .menu-item{
        padding: 5px;
    }

    .navbar-mobile .menus .menu-item div, .navbar-mobile .menus .menu-item a {
        color: var(--color-white);
        text-decoration: none;
    }

}

/* --------------Sections-------------- */
#presentation-container {
    max-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-padding: 65px 0 0 0;
    scroll-behavior: smooth;
}

.pages {
    height: calc(100vh - 65px);
    scroll-snap-align: end;
    scroll-snap-stop: always;
}

.full-screen {
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.full-screen--dark {
    background-color: var(--dark-bg);
}
.full-screen--light {
    background-color: var(--light-bg);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    max-width: 1600px;
    height: 70vh;
    max-height: 1200px;
}

.animated-scroller {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 2px;
    z-index: 800;
    background-color: var(--color-white);
}
.animated-scroller--dark {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 2px;
    background-color: var(--dark-bg);
}

@media screen and (max-width : 376px){
    .container {
        width: 95%;
    }
}
/* --------------IDE Simulation-------------- */
.illustration-code {
    margin: 0 auto 30px;
    width: 70%;
    max-width: 700px;
    font-size: 14px;
}
.ide-header {
    background-color:#949799;
    padding: 7px;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.ide-body {
    background-color:#4A4A4A;
    padding: 10px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* --------------Jumbotron-------------- */
.jumbotron {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.jumbotron > .jumbo-title {
    font-size: 80px;
    font-weight: bold;
    background: -webkit-linear-gradient(#0082F2, #21E3FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jumbo-title--white {
    font-size: 60px;
    font-weight: bold;
}

.jumbotron > .jumbo-title--black {
    font-size: 60px;
    font-weight: bold;
    color: var(--dark-bg);
}

.jumbotron > .subtitle--red {
    margin: 30px auto;
    color: var(--color-red);
    font-weight: 300;
    font-size: 40px;
}

.jumbotron > .description {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 400;
    max-width: 900px;
    margin: 20px auto;
}
.jumbotron > .description--black {
    font-size: 20px;
    color: var(--color-black);
    font-weight: 400;
    max-width: 900px;
    margin: 20px auto;
}

.jumbotron > .description.robot-text--blue {
    font-size: 22px;
    color: var(--color-blue);
    font-weight: 400;
    max-width: 900px;
    margin: 30px auto;
}
.demo-booking {
    width: 220px;
    background-image: linear-gradient(to bottom, #0082F2 0%,#21E3FC 100%);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    column-gap: 15px;
    align-items: center;
    cursor: pointer;
}
.demo-booking:hover {
    background: #0082F2;
}

.demo-booking > svg {
    fill: var(--color-white);
    width: 25px;
    height: 25px;
}
.demo-booking-label a {
    font-weight: 300;
    text-decoration: none;
    color: var(--color-white);
}
/* --------------First slide-------------- */
#page1 {
    margin-top: 65px;
    padding-bottom: 0;
}

#page1 .demo-booking {
    margin: 20px auto;
}

.demo-booking > svg {
    fill: var(--color-white);
    width: 25px;
    height: 25px;
}
.demo-booking-label {
    font-weight: 300
}

/* --------------First slide bis-------------- */

.illustration {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#page1bis .illustration {
    width: 30vw;
}
#page1bis .illustration > .robot-text {
    width: 255px;
    flex-shrink: 0;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.print {
 color: var(--color-red);
}

.talk, .parle {
    color: var(--color-green);
    font-size: 16px;
}

.illustration > img {
    height: 180px;
    width: auto;
}

#page1bis .robot-text {
    font-size: 22px;
    color: var(--color-blue);
}

/* --------------Second slide-------------- */

.presentation-cards {
    display: flex;
    scale: 0.9;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 95%;
    max-width: 1000px;
}

.presentation-card>.presentation-card-logo-container {
    width: 60px;
    cursor: pointer;
}
.presentation-card img {
    width: 100%;
}

.presentation-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 21px;
    align-items: center;
    width: 120px;
    margin: auto;
    transform: translate(0, -5px)
}

.presentation-card:hover {
    transform: translate(0,0);
}

.presentation-card-text {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
}

/* --------------Media queries 2d slide-------------- */
@media screen and (max-width : 1062px){
    .presentation-card>.presentation-card-logo-container {
        width: 50px;
    }
    .presentation-card-text {
        font-size: 14px;
    }
}

@media screen and (max-width : 768px){
    #page2 h2{
        font-size: 40px;
    }

    #page2 .robot-text {
        font-size: 14px;
    }
    .presentation-card>.presentation-card-logo-container {
        width: 40px;
    }
    .presentation-card-text {
        font-size: 12px;
    }
}
@media screen and (max-width : 580px){
    #page2 .illustration > img {
        height: 80px;
    }
    #page2 h2{
        font-size: 30px;
    }
}
@media screen and (max-width : 425px){
    #page2 h2{
        font-size: 20px;
    }
    .presentation-card-text {
        font-size: 8px;
    }
}
@media screen and (max-width: 376px){
    #page2 .parle {
        font-size: 14px;
    }
}

/* --------------Third slide-------------- */
#page3 .jumbotron {
    margin-top: 40px;
}
#page3 .jumbotron > .robot-text {
    font-size: 20px;
    color: var(--color-blue);
}

#page3 .illustration > img {
    height: 200px;
    width: auto;
    margin: auto;
}

/* --------------Fourth slide: caroussel-------------- */
#page4{
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

.panel{
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 0;
}

.nav-circles {
    background-color: transparent;
    display: flex;
    align-items: center;
    column-gap: 10px;
    z-index: 899;
    position: absolute;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
}

.nav-circle {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-blue);
    border-radius: 50%;
    cursor: pointer;
}

.nav-circle.selected {
    background-color: var(--color-blue);
}

.two-col-block {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    column-gap: 30px;
    flex-wrap: wrap;
}

.functionnalities {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
}

.functionnality-block {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    column-gap: 10px;
}

.functionnality-logo-container {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: var(--color-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.functionnality-logo-container > svg{
    fill: var(--color-white);
    height: 22px;
    width: 22px;
}

.video-container {
    width: 600px;
    padding: 30px;
}

.video-surtitle {
    margin-bottom: 10px;
    color: #0FB269;
}
.video-container .video-wrapper{
    position: relative;
    overflow: hidden;
    padding-top: 56.25%
}

.resp-iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

#page4-2 .two-col-block > .illustration > img,
#page4-4 .two-col-block > .illustration > img,
#page4-3 .two-col-block > .illustration > img
 {
    width: auto;
    height: 350px;
}

.functionnality-text--black {
    color: var(--color-black);

}

/* --------------Fifth slide-------------- */
#page5 .two-col-block .illustration img{
    width: 400px;
    height: auto;
}

#page5 .functionnality-text {
    color: var(--color-black);
}

/* --------------Media queries 4th 5th slide-------------- */
@media screen and (min-width: 1800px){
    #page4-2 .two-col-block > .illustration > img,
    #page4-4 .two-col-block > .illustration > img,
    #page4-3 .two-col-block > .illustration > img
    {
        width: auto;
        height: 500px;
    }
    #page5 .two-col-block > .illustration > img
    {
        width: auto;
        height: 400px;
    }
}
@media screen and (max-width : 1405px){
    #page4-1 .jumbo-title {
        font-size: 60px;
    }
    #page4-1 .video-surtitle.robot-text {
        font-size: 12px;
    }

    #page4-1 .robot-text {
        font-size: 20px;
    }
}
@media screen and (max-width : 1253px){
    #page4-2 .jumbo-title--black,
    #page4-3 .jumbo-title--black,
    #page4-4 .jumbo-title--black,
    #page5 .jumbo-title--black {
        font-size: 40px;
    }
    #page4-2 .two-col-block > .illustration > img,
    #page4-4 .two-col-block > .illustration > img,
    #page4-3 .two-col-block > .illustration > img,
    #page5 .two-col-block > .illustration > img {
        height: 250px;
        width: auto;
    }
}

@media screen and (max-width : 1224px){
    #page4-1 .two-col-block .functionnalities,
    #page5 .two-col-block .functionnalities {
        flex-direction: row;
        width: 100%;
        column-gap: 20px;
        margin: 20px auto;
    }
}
@media screen and (max-width : 1024px){
    #page4-1 .jumbo-title {
        font-size: 40px;
    }
    #page4-1 .robot-text {
        font-size: 16px;
    }
}

@media screen and (max-width : 770px){
    #page4-1 .two-col-block {
        width: 90%;
    }
    #page4-1 .video-container {
        width: 65%;
    }
    .functionnalities {
        font-size: 13px;
        width: 25%;
    }
    #page4-2 .jumbo-title--black,
    #page4-3 .jumbo-title--black,
    #page4-4 .jumbo-title--black,
    #page5 .jumbo-title--black {
        font-size: 30px;
    }
    #page4-2 .functionnalities,
    #page4-3 .functionnalities,
    #page4-4 .functionnalities,
    #page5 .functionnalities {
        width: 100%;
    }
    #page4-4 .jumbotron > .description,
    #page5 .jumbotron > .description
    {
            font-size: 14px;
        }
    #page5 .two-col-block > .illustration > img {
        height: 180px;
        width: auto;
    }
}

@media screen and (max-width : 708px){
    #page-1 .robot-text {
        font-size: 14px;
    }
    #page4-1 .jumbo-title {
        font-size: 30px;
    }
    #page4-1 .functionnality-block
     {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #page5 .two-col-block .functionnalities
     {
        flex-direction: column;
    }
}
@media screen and (max-width : 580px){
    .functionnalities {
        flex-direction: row;
        font-size: 13px;
        width: 100%;
    }
    #page4-2 .functionnalities,
    #page4-3 .functionnalities,
    #page4-4 .functionnalities,
    #page5 .functionnalities
    {
        flex-direction: column;
    }
    #page4 .video-container {
        width: 80%;
    }
    #page4 .video-surtitle {
        display: none;
    }
}
@media screen and (max-width : 376px){
    .panel{
        justify-content: flex-start;
    }
    #page4-1 .two-col-block .video-container {
        display: none;
    }

    .nav-circles {
        bottom: 90px;
    }

    #page4-2 .jumbo-title--black,
    #page4-3 .jumbo-title--black,
    #page4-4 .jumbo-title--black,
    #page5 .jumbo-title--black {
        font-size: 20px;
    }

    #page4-2 .two-col-block > .illustration > img,
    #page4-4 .two-col-block > .illustration > img,
    #page4-3 .two-col-block > .illustration > img {
        height: 120px;
    }
    #page5 .two-col-block .illustration {
        display: none;
    }

    .functionnalities {
        row-gap: 10px;
    }
}

/* --------------Sixth slide-------------- */
.left-col, .right-col {
    width: 40%;
    height: 100%;
}

#page6 .right-col {
    height: 100vh;
}

.left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-col > .robot-text--blue {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.1;
}

.right-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.right-col > .illustration > img {
    margin-top: 10px;
    height: 85vh;
}

@media screen and (max-width : 1050px){
    #page6 .jumbo-title--white {
        font-size: 40px;
        z-index: 2;
    }
    #page6 .robot-text--blue {
        font-size: 20px;
        z-index: 2;
    }
}
@media screen and (max-width : 768px){
    #page6 .jumbo-title--white {
        font-size: 25px;
    }
    #page6 .robot-text--blue {
        font-size: 18px;
    }
    .right-col > .illustration > img {
        margin-top: 10px;
        height: 90vh;
    }
}
@media screen and (max-width : 478px){
    #page6 .jumbo-title--white {
        font-size: 18px;
    }
    #page6 .robot-text--blue {
        font-size: 14px;
    }
}
/* --------------Seventh slide-------------- */

#page7 {
    justify-content: space-between;
}

#page7 > .jumbotron {
    margin-top: 40px;
}

#page7 > .illustration > img {
    height: 50vh;
}

#modal-wrapper {
    display: none;
}

#modal-wrapper.open {
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5)
}

@media screen and (max-width : 1024px){
    #page7 .jumbo-title--black {
        font-size: 40px;
    }
    #page7 .robot-text {
        font-size: 18px;
    }
    #page7 > .illustration > img {
        width: 80vw;
        height: auto;
    }
}

@media screen and (max-width : 770px){
    #page7 {
        justify-content: center;
    }

    #page7 .jumbo-title--black {
        font-size: 30px;
    }
    #page7 .description {
        margin-bottom: 50px;
    }
    #page7 .illustration > img {
        height: 250px;
        width: auto;
    }
}

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

    #page7 .jumbo-title--black {
        font-size: 20px;
    }
    #page7 .illustration > img {
        display: none;
    }
}
/* --------------Eigth slide-------------- */
#page8 .jumbotron > h2 {
    font-size: 60px;
}
#page8 .jumbotron > .description {
    font-size: 20px;
}

#page8 .two-col-block > .left-col, #page8 .right-col{
    justify-content: center;
    align-items: center;
    height: auto;
}
#page8 img{
    width: 100%
}

/* --------------Media queries 8th slide-------------- */
@media screen and (max-width : 768px){
    #page8 .two-col-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 15px;
    }
    #page8 .left-col, #page8 .right-col {
        width: 80%;
    }
    #page8 img {
        width: 50%;
        height: auto;
    }
    #page8 .jumbotron > .description {
        font-size: 16px;
    }
    #page8 .jumbotron > h2 {
        font-size: 40px;
    }
}
@media screen and (max-width : 376px){
    #page8 .jumbotron > h2 {
        font-size: 20px;
    }
    #page8 .two-col-block {
        flex-direction: row;
    }
    #page8 .left-col, #page8 .right-col {
        width: 45%;
    }
    #page8 img {
        width: 100%;
        height: auto;
    }
}
/* --------------Nine-------------- */
#page9 > .jumbotron > .description--black {
    width: 50%;
    text-align: left;
    margin: 20px auto 30px;
}
/* --------------Media queries 3rd and 9th slide-------------- */
@media screen and (max-width : 1024px){
    #page3 h2,
    #page9 h2
    {
        font-size: 40px;
    }

    #page3 .jumbotron > .description,
    #page9 .jumbotron > .description,
    #page9 .jumbotron > .description--black
     {
        font-size: 16px;
    }

    #page3 .illustration-code {
        width: 350px;
        font-size: 10px;
    }

    #page3 .illustration>img,
    #page9 .illustration>img
     {
        width: 400px;
        height: auto;
    }
}
@media screen and (max-width : 700px){
    #page3 h2,
    #page9 h2
    {
        font-size: 30px;
    }
    #page3 .jumbotron > .description,
    #page9 .jumbotron > .description,
    #page9 .jumbotron > .description--black
     {
        font-size: 14px;
    }
    #page3 .illustration-code {
        display: none;
    }
    #page3 .illustration>img,
    #page9 .illustration>img 
    {
        width: 350px;
        height: auto;
    }
}
@media screen and (max-width : 400px){
    #page3 .jumbotron > .description,
    #page9 .jumbotron > .description,
    #page9 .jumbotron > .description--black
     {
        font-size: 10px;
    }
    #page3 .illustration>img,
    #page9 .illustration>img
     {
        width: 200px;
        height: auto;
    }
}
/* --------------Ten-------------- */
#page10 {
    overflow: hidden;
}
#page10 .two-col-block {
    justify-content: flex-start;
    height: 100vh;
    max-width: none;
}
#page10 .left-col {
    justify-content: space-evenly;
    position: relative;
    flex-grow: 1;
    padding: 100px;
    max-width: 800px;
}

#page10 .right-col img{
    position: absolute;
    height: 100%;
    width: auto;
    left: 0;
    bottom: 0;
}

.contact-info {
    margin-top: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.email {
    text-decoration: none;
    color: var(--color-blue);
}
.contact-text {
    font-size: 20px;
}

.labels {
    margin-top: 20px;
}
.labels-logos {
    margin-top: 20px;
    display: flex;
    column-gap: 25px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.logo-image > img {
    width: auto;
    height: 50px;
}

.footer {
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    color: white;
}

.socials {
    display: flex;
    column-gap: 10px;
}

.socials svg {
    width: 36px;
    height: 36px;
    fill: var(--color-white);
    cursor: pointer;
}
/* --------------Media queries 10th slide-------------- */
@media screen and (max-width: 1399px) {
    #page10 .left-col{
        margin: auto;
        width: 80%;
    }
    #page10 .right-col{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #page10 .left-col{
        padding: 40px;
    }
    #page10 .logo-image > img {
        width: auto;
        height: 30px;
    }
    #page10 .contact-text, .robot-text {
        font-size: 15px;
    }
}
@media screen and (max-width: 376px) {
    #page10 .left-col{
        padding: 65px 20px 0;
        width: 95%;
    }
    #page10 .contact-text, .robot-text, .parle, .talk{
        font-size: 12px;
    }
    #page10 .robot-text{
        display: none;
    }
    #page10 .contact-info{
        flex-grow: 0;
        row-gap: 10px;
    }
}
/* --------------Modal-------------- */
#connection-modal {
    position: relative;
    height: 80vh;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    top: 100px;
    z-index: 1000;
    background-color: var(--dark-bg);
    border-radius: 20px;
    border: 0.2px solid #979797;
    color: black;
    opacity: 100%;
    display:flex;
    overflow: hidden;
}

#connection-modal .right {
    width: 45%;
}

#connection-modal .right .modal-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#connection-modal .right .modal-image-container >img {
    height: 100%;
    width: auto;
    position: absolute;
    right: 0;
}

#connection-modal .left h1 {
    padding: 40px 0 60px 0;
    color: #F43F3F;
    font-weight: 400;
    font-size: 40px;
}

#connection-modal .left {
    display: inline-block;
    vertical-align: top;
    padding-left: 70px;
    width: 50%;
    flex-grow: 1;
}

#connection-modal .left input {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

#connection-modal .left input[type="text"],
#connection-modal .left input[type="password"] {
    background-color: var(--dark-bg);
    border: none;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    width: 300px;
    padding-left: 5px;
    color: var(--color-white);
    margin-bottom: 15px;
}
#connection-modal .left input:focus {
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    background-color: var(--dark-bg);
}

#connection-modal .login-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 300px;
    row-gap: 10px;
}

#connection-modal .login-group input {
    height: 40px;
    margin-bottom: 5px;
    flex-shrink: 0;
    margin-right: 30px;
}

#connection-modal .user-informations #password {
    margin-top: 50px;
    margin-bottom: 5px;
    display: inline;
    padding-right: 50px;
}

#connection-modal #pwdtoggle {
    margin-left: -60px;
    width: 25px;
    background: transparent;
    border: none;
    display: inline-block;
    top: 7px;
    position: relative;
    fill: var(--color-white)
}

#connection-modal .left .user-informations #send-button {
    margin: 50px 0 0 0;
}

#connection-modal .left input#send-button {
    border: 1px solid var(--color-red);
    background-color: var(--color-red);
    padding: 8px 33px 7px 33px;
    border-radius: 24px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #FBF9F5;
    text-align: center;
    cursor: pointer;
    max-height: 40px;
}

#connection-modal .left button#login-next {
    background-color: #F43F3F;
    border-radius: 4px;
    padding: 8px 33px 7px 33px;
    font-weight: 400;
    font-size: 12px;
    color: white;
    letter-spacing: -0.37px;
    line-height: normal;
    margin-left: 30px;
    border: none;
}

#connection-modal .left .options {
    margin: 45px 0;
    display: flex;
}

#connection-modal .left .options input {
    display: inline-block;
    vertical-align: middle;
    line-height: 12px;
    cursor: pointer;
}

#rememberMe, #forgottenPass {
    background: var(--color-blue);
    border-radius: 24px;
    padding: 8px;
    font-size: 14px;
    color: #FBF9F5;
    letter-spacing: 1px;
    text-align: center;
    margin-right: 30px; 
}

#rememberMe label {
    cursor: pointer;
}

#forgottenPass {
    background-color: transparent;
    border: none ;
}

#forgottenPass a:hover {
    color: var(--color-blue);
}

#forgottenPass a {
    color: #a3a3a3;;
}

#connection-modal .left .options input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border-radius: 20px;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-white);
    background-color: white;
    margin-right: 8px;
}

#connection-modal .left .options input[type="checkbox"]:checked {
    background-color: var(--color-blue);
}

#image-modal-wrapper {
    display: none;
}

#image-modal-wrapper.open {
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.5)
}

.opened-modal {
    overflow: hidden;
    height: 100vh;
}

#modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
    color: var(--color-white);
    z-index: 1001;
}

.error {
    color: #f43f3f;
    font-size: 12px;
}

/* -----------Connection mediaqueries---------- */
@media screen and (max-width : 700px){
    #connection-modal .left {
        width: 100%;
        z-index: 2;
    }
    #connection-modal .right {
        width: 0;
    }
    #connection-modal .right .modal-image-container {
        background-color: var(--dark-bg);
        opacity: 0.5;
        z-index: 1;
    }
    
    #connection-modal .right .modal-image-container >img {
        height: 100%;
        width: auto;
        position: absolute;
        right: 0;
    }
}
@media screen and (max-width : 464px){
    #connection-modal .left {
        padding: 20px;
    }
    #connection-modal .left input[type="text"], #connection-modal .left input[type="password"]{
        width: 100%;
    }
    #connection-modal .left .options {
        flex-wrap: wrap;
        margin: auto;
        margin-top: 10px;
        row-gap: 10px;
    }
}

/* -----------Jumbotron mediaqueries---------- */
@media screen and (max-width : 835px){
    .jumbotron > .jumbo-title, .jumbo-title--white
     {
        font-size: 50px;
    }
    
    .jumbotron > .subtitle--red {
        font-size: 20px;
    }
    
    .jumbotron > .description {
        font-size: 16px;
    }
}
@media screen and (max-width : 580px){
    .jumbotron > .jumbo-title {
        font-size: 40px;
    }
}

@media screen and (max-width : 500px){
    #page8 .jumbotron .description {
        font-size: 12px;
    }
}

@media screen and (max-width : 425px){
    .jumbotron > .jumbo-title {
        font-size: 30px;
    }
}
@media screen and (max-width: 376px){
    .jumbotron > .jumbo-title {
        font-size: 25px;
    }
    .full-screen{
        padding-bottom: 65px;
    }
    #page4-4 .jumbotron .description.robot-text--blue {
        margin: 0;
        font-size: 12px;
    }
    #page4-4 .jumbotron .description{
        margin: 0;
    }
}
