@font-face {
    font-family: "SpaceGrotesk-Regular";
    src: url('../fonts/SpaceGrotesk-Regular.ttf');
}

@font-face {
    font-family: "SpaceGrotesk-Bold";
    src: url('../fonts/SpaceGrotesk-Bold.ttf');
}

@font-face {
    font-family: "SpaceGrotesk-Light";
    src: url('../fonts/SpaceGrotesk-Light.ttf');
}

@font-face {
    font-family: "SpaceGrotesk-Medium";
    src: url('../fonts/SpaceGrotesk-Medium.ttf');
}

@font-face {
    font-family: "SpaceGrotesk-SemiBold";
    src: url('../fonts/SpaceGrotesk-SemiBold.ttf');
}

body{
    font-size:16px;
    line-height: 1.5;
    color: #024354;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    font-family: SpaceGrotesk-regular;
}




h1 {
    font-family: SpaceGrotesk-Bold ;
    color: #024354;
    font-weight: 800;
    line-height: 50px;
    text-transform: uppercase;
    padding-top: 20vh;
    margin: 0;
    font-size: 65px
}

h2 {
    font-family: SpaceGrotesk-Bold;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0;
}

.st {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
}

ul{
    list-style: none;
    margin-bottom: 10px;

}

a {
    text-decoration: none;
    color: white;
}

/** Header */
.top-bar{
    background:#024354 ;
    width: 100%;
    display: flex;
    margin: 0;
}

.top-bar-right{
    display: none;
}

.top-bar-right ul li {
    display: block;
}

.top-bar-right ul li a {
    color: white;
    padding: 7px 12px;
    line-height: 30px;
     font-size: 16px;
     
}

.top-bar-right ul li:nth-child(1){
    background: white;
}

.top-bar-right ul li a.inscription {
    color: #024354;
}

.top-bar-left{
    display: block;
    padding: 0 100px;
}

.top-bar-left ul li a {
    color: white;
    padding: 5px 15px;
    line-height: 40px;
    border-right: 2px solid white;
    font-size: 18px;
}

.menu-responsive{
    display: none;
}

nav{
    position:relative;
    width:100%;
    transition: height 0.6s;
}

.menu-computer {
    width: 100%;
    display: flex;
}

.comp-logo {
    width: 20%;
}

.comp-logo a img {
    width: 200px;
    height: 150px;
    margin-left: 130px;
}

.text-menu {
    width: 75%;
}


.text-menu ul li {

    padding: 20px 12px;
    line-height: 80px;
    font-weight: 600;
    position: relative;
}

.text-menu ul li a {
    color: #024354;
}

ul{
    display:flex;
    justify-content: center;
}

li{
    display:block;
}

nav.sticky{
    position:fixed;
    top:0;
    left:0;
    background:white;
    margin: 0;
    padding: 0;
    z-index: 900;
}

nav.sticky .comp-logo {
    height: 50px;
}
/** Footer **/

.footer {
    display: flex;
    width: 100%;
    background: #024354;
    color: white;
    justify-content: center;
}
/** Hero **/

.hero {
    height: 65vh;
    padding: 15px;
}


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

    
    .log-mob a img{
        width: 100%;
      }
    
  .menu_hamburger{
          width:75% !important;
      }
      
    h1{
      font-size: 45px;
      line-height: 40px;
    }

    h2{
      font-size: 45px;
    }

  
  
  
    }


  
  
    @media screen and (max-width:1199px)  {
    
      .top-bar-left{
        padding: 0;
        width: 100%;
        justify-content: center;
      }
      
      .top-bar-left ul {
        display: block;
        padding-inline-start: 0;
    
      }
    
      .top-bar-left ul li a {
        padding: 0%;
        line-height: 0;
        border: none;
    
      } 
    
      .top-bar-right {
        display: none;
      }
    
      .menu-computer{
        display: none;
      }
  
      .menu-responsive{
        display: block;
        width: 100%;
        background: white;
        box-shadow: 0 4px 15px 0 rgb(0 0 0 / 32%);
  
      }
      .menu-mobile{
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
      }
      .el-mob-left {
        width: 50%;
        box-sizing: border-box;
      }
      .log-mob{
        width: 100%;
      }
  
      .log-mob img{
        width: 50%;
      }
      .el-mob-right{
        width: 100%;
        box-sizing: border-box;
        margin: 10px;
        position: relative;
      }
  
      .el-mob-menu, .el-mob-menu::before, .el-mob-menu::after{
        display: flex;
        position: absolute;
        width: 50px;
        height: 5px;
        background: black;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        left: 90%;
        transform: translateX(-50%);
        
      }
      
      .el-mob-menu::before, .el-mob-menu::after {
        content: "";
        display: block;
      }
      .el-mob-menu::before {
        margin-top: -15px;
        left: 0;
        transform: none;
      }
  
      .el-mob-menu::after {
        margin-top: 15px;
        left: 0%;
        transform: none;
      }
  
      .menu_hamburger{
        display: none;
        top: 0%;
        height: 100vh;
        width: 35%;
        position: fixed;
        right: 0%;
        box-shadow: 0 4px 15px 0 rgb(0 0 0 / 32%);
        margin: 0;
        flex-direction: column;
        z-index: 1;
        background: white;
      }
  
      .el-hamburger-close{
        color: black;
        font-size: 50px;
        display: block;
        border: 6px solid black;
        border-radius: 3px;
        cursor: pointer;
        margin: 30px 10px;
        height: 68px;
        width: 68px;
        font-weight: 900;
  
  
      }
  
      .menu_hamburger h4 {
        font-size: 20px;
        font-family: 'SpaceGrotesk-Bold';
        font-weight: 900;
        text-transform: uppercase;
        margin: 0 auto;
      }
  
      .ul_hambuger{
        flex-direction: column;
        padding: 0;
      }
  
      .ul_hambuger li {
  
        width: 65%;
        text-align: left;
        margin-left: 50px;
  
      }

    
  }  




    