* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

header {
    padding: 0 20px;
    width: 100%;
    height: 70px;
    background: white;
    border-bottom: 1px solid #efefef;
    transition: 1s;
    
}
.header-left, .header-right {
    transition: 1s;
    float: left;
    height: 100%;
    font-family: Lato, sans-serif;
  
}

.header-left {
    transition: 1s;
    width: 10%;
    /* padding-bottom:220px; */
    margin-left:5%;
}
.header-right {
    transition: 1s;
    float: left;
    width: 900px;
}

.header-left img {
    transition: 1s;
    height: 40px;
    margin-top: 15px;
}
.header-right > a {
    transition: 1s;
    display: none;
}
.header-right ul {
    list-style: none;
    height: 100%;
    text-align: right;
    transition: 1s;
}
.header-right ul li {
    display: inline-block;
    margin: 0 2px;
    line-height: 70px;
    height: 100%;
    transition: 1s;
}
.header-right ul li a {
    color: #565A5C;
    text-decoration: none;
    transition: 1s;
}
.header-right ul li a.cta {
    padding: 3px 3px;
    color: white;
    background: #E78D5C;
    transition: 1s;
}

.hamburger-menu {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    /* left: 50%; */
    padding: 10px;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    background: #2B3F58;
    transition: 1s;
}
.hamburger-menu ul {
    display: flex;
    height: 50%;
    
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    transition: 1s;
}

/* ul li:hover{
    background-color: #db6563;
} */

.hamburger-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 25px;

    /* border-bottom: 2px solid white; */
    transition: 1s;
}
.hamburger-menu  a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    transition: 1s;
}
.close {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 35px;
    text-decoration: none;
    transition: display 1s;
}
.lastElement{
    padding-right:50px!important;
}

@media screen and (min-width: 1500px)
{
    .header-right {
        transition: 1s;
        float: left;
        width: 1200px;
    }

    .lastElement{
        padding-right:150px!important;
    }
}
@media screen and (max-width: 1100px)
{
    .header-right ul {
        display: none;
        transition: 1s;
    }
    .header-right > a {
        display: block;
        height: 100%;
        line-height: 70px;
        float: right;
        color: lightgrey;
        font-size: 20px;
        transition: 1s;
    }
    .header-right {
        transition: 1s;
        float: right;
        width: 60%;
    }

    .hamburger-menu.active {
        display: block;
        transition: 1s;
    }
}

