* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    /*  max-width: 1250px;*/
    margin: 0 auto;
}
.header {
    width: 100%;
    position: absolute;
}
.header-container {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    align-items: center;
    position: fixed; 
    width: 100%;
    z-index: 100;
    margin: 0 auto;
    /*  max-width: 1250px;*/
}
.logo img {
    max-width: 130px;
}
.right-menu {
    display: flex;
    align-items: center;
}
.menu ul {
    display: flex;
    width: 1px;
    overflow: hidden;
}
.menu ul.active {
    animation: open_menu 0.5s linear forwards
}
@-webkit-keyframes open_menu {
    0% {
        width: 0px;
        opacity: 0;
    }
    10% {
        width: 100px;
        opacity: 0.2;
    }
    30% {
        width: 200px;
        opacity: 0.4;
    }
    50% {
        width: 300px;
        opacity: 0.6;
    }
    70% {
        width: 400px;
        opacity: 0.8;
    }
    85% {
        width: 500px;
        opacity: 1;
    }
    100% {
        width: 580px;
        opacity: 1;
    }
}
.menu ul.deactive {
    animation: close_menu 0.5s linear forwards
}
@-webkit-keyframes close_menu {
    0% {
        width: 580px;
        opacity: 1;
    }
    10% {
        width: 500px;
        opacity: 0.8;
    }
    30% {
        width: 400px;
        opacity: 0.6;
    }
    50% {
        width: 300px;
        opacity: 0.4;
    }
    70% {
        width: 200px;
        opacity: 0.2;
    }
    85% {
        width: 100px;
        opacity: 1;
    }

    100% {
        width: 0px;
        opacity: 0;
    }
}

.menu ul li {
    list-style: none;
    padding: 14px;
    white-space: nowrap;
}
.menu ul li a {
    text-decoration: none;
    /* padding:.5rem; */
    font-size: 1rem;
    color: #263238;
    transition: 0.5s all;
}
.menu ul li a:hover{
    color:#E8505B;
}
.hover-line::after{
    content:'';
    display: block;
    height: 1.2px;
    background-color:#E8505B;
    width: 0%;
    transition: width 0.3;
    /* margin: 2px; */
}
.hover-line:hover::after{
    width: 100%;
    transition: width 0.3s;
}
.side-menu-bar {
    width: 77px;
    position: relative;
    border-radius: 15px;
    border: none;
    padding: 5px;
    background-color: #263238;
    cursor: pointer;
}
.side-menu-bar hr {
    width: 50%;
    margin: 5px auto;
    position: relative;
}
.side-menu-bar hr:nth-child(odd) {
    left: -10%;
}
.side-menu-bar hr:nth-child(even) {
    right: -10%;
}
.home-section-container,.who-we-are-section-container,.what-we-do-section-container,.our-product-section-container,.join-us-section-container,.contact-us-section-container
{
    visibility: hidden;
}  
.contact-us-button
{
    cursor: pointer;
}
.recaptcha-disclaimer
{
    font-size: 0.7em;
}
.grecaptcha-badge 
{ 
    visibility: hidden; 
}