.logo img {
    height: 50px;
    margin: 10px;
}
.top-bar {
    width: 100%;
    height: 75px;
    top: 0;
    position: absolute;
}
.top-menu-items-holder {
    display: block;
    position: absolute;
    top: 15px;
    right: 35px;
    text-align: right;
}
.navbar {
    width: 100%;
}
.navbar ul {
    display: flex;
}
.navbar li {
    list-style-type: none;
    padding: 10px;
    display: inline;
}
.navbar a {
    text-decoration: none;
    color: #081361;
    font-size: 16px;
}
.underline {
    display: inline;
    position: relative;
    overflow: hidden;
}
.underline:after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    bottom: -5px;
    background: #abd154;
    height: 3px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.underline:hover:after,
.underline:focus:after,
.underline:active:after {
    left: 0;
    right: auto;
    width: 100%;
}
.show-underline {
    display: inline;
    position: relative;
    overflow: hidden;
}
.show-underline:after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    bottom: -5px;
    background: #abd154;
    height: 3px;
}
.overlapping-buttons {
    width: 250px;
    position: relative;
    margin-top: -10px;
}
.top-menu-signup-button {
    border: 2px solid #081361;
    border-radius: 10px;
    width: 100px;
    height: 40px;
    color: #081361;
    background-color: rgba(255,255,255,.3);
    position: absolute;
    right: 120px;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
}
.top-menu-signup-button:hover {
    border: 2px solid #081361;
    background-color: #081361;
    color: #FFFFFF;
}
.top-menu-login-button {
    border: none;
    width: 100px;
    height: 40px;
    color: #081361;
    background-color: rgba(255,255,255,.3);
    position: absolute;
    right: 0;
    font-size: 16px;
}
.top-menu-login-button:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 10px;
}
.mobile-menu-container {
    display: none;
}
.header-social-icons-holder {
    float: right;
}
.header-instagram-icon,
.header-linkedin-icon,
.header-facebook-icon {
    margin-top: 10px;
    width: 45px;
    height: 45px;
}
.header-instagram-icon img,
.header-linkedin-icon img,
.header-facebook-icon img {
    height: 29px;
    margin-top: 8px;
    margin-right: 7px;
}
.header-linkedin-icon img {
    margin-left: 9px;
}

/*----------------------------------------------*/
@media only screen and (min-width : 150px) and (max-width : 900px) {
    .navbar {
        display: none;
    }

    .top-menu-login-button {
        width: auto;
    }

    .mobile-menu-container {
        display: flex;
        width: auto;
        float: right;
        height: auto;
    }

    .mobile-menu-container-icon {
        padding: 10px;
        margin-top: 0;
        font-size: 30px;
        margin-left: 30px;
    }

    .mobile-menu-container-items {
        display: none;
    }

    .mobile-menu-container-items.visible {
        display: block;
    }

    .mobile-menu-container-items ul {
        position: absolute;
        top: 50px;
        right: 0;
        padding: 10px;
        text-align: left;
        background-color: #e8f2ed;
        border-radius: 5px;
        z-index: 1;
        width: 200px;
    }

    .mobile-menu-container-items li {
        list-style-type: none;
        padding: 10px;
    }

    .mobile-menu-container-items > ul > li > a {
        text-decoration: none;
        color: #081361;
    }

    .header-social-icons-holder {
        display: none;
    }

    .socials-mobile-menu {
        display: inline-block;
    }

    .header-linkedin-icon img {
        margin-left: 0;
    }

    .header-facebook-icon img {
        margin-right: 0;
    }
}

/*-----------Tablet-----------------------------------*/
@media only screen and (min-width: 901px) and (max-width: 1299px) {
    .navbar {
        display: block;
    }
    .mobile-menu-container {
        display: none;
    }
    .top-menu-items-holder {
        right: 0;
    }
    .top-menu-signup-button {
        width: 100px;
    }
    .top-menu-login-button {
        width: 120px;
    }

}


