 /* header */

 .header {
     background-color: #fff;
     box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
     position: absolute;
     width: 100%;
     z-index: 9999;
     padding: 18px 30px;
 }

 .header-container {
     padding: 18px 30px;
     width: 100%;
     box-sizing: border-box;
     display: block;
 }

 .header-content {
     height:73px;
     position: relative;
     align-items: center !important;
     justify-content: space-between !important;
     display: flex !important;
     box-sizing: border-box;
     vertical-align: middle;     
     width: 100%;
 }

 a.navLogo {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding-top:1rem;
    padding-bottom:1rem;
 }

 .logo__link__image {
    height: 100%;
    max-width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
}

 ul.navMenu li {
     display: inline-block;     
     padding-right: 2rem;
     text-align: center;
 }

 ul.navMenu li a {
     color: #da2423;
     font-weight: bold;
     text-align: center;
     font-family: Lato-Black, sans-serif;
     font-size: 14px;
     cursor: pointer;
     line-height: 1.5;
 }

 ul.navMenu {
     width:50%;
     float: right;
     vertical-align: middle;
     text-align: right;
 }


 @media all and (max-width: 1900px) {
    ul.navMenu {
        display: none;
    }
     #log_in_div{
         display: none;
     }

    #hamburger {
        display: block;
    }
}

@media all and (min-width: 1900px) {
    #hambrurger {
        display: none;
    }
}

a {
    text-decoration: none !important;
    color: #232323;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #2ecc71;
  }
  
  #menuToggle {
    display: block;
    position: absolute;
    top: 25px;
    right: 50px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  
  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
  }
  
  #menuToggle span {
    display: block;
    width: 25px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #da2423;
    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%;
  }
  
  #menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #da2423;
  }
  
  #menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  
  #menuToggle input:checked~span:nth-last-child(2) {
    opacity: 1;
    transform: rotate(-45deg) translate(0, -1px);
  }
  
  #menu {
    position: absolute;
    width: 300px;
    margin: -100px 0 0 0;
    padding: 50px;
    padding-top: 125px;
    right: -75px;
    background: #fff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    height:100vh; 
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }
  
  #menu li {
    padding: 10px 0;
    text-align: center;
  }

  #menu li a {
    text-align: center;
    font-family: Lato-Black,sans-serif;
    font-size: 14px;
    color: #da2423;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 7px!important;
  }
  
  #menuToggle input:checked~ul {
    transform: scale(1.0, 1.0);
    opacity: 1;
  }