@font-face {
    font-family: "Montserrat Light";
    src: url("../fonts/Montserrat/static/Montserrat-Light.ttf");
    font-weight: normal;
    font-style: normal;
}
.menu-area{
        background: linear-gradient(to right, dodgerblue,#080F1F);
}
.menu-btn {
    text-align: center;
    position: relative;
    z-index: 9999999;
    cursor: pointer;
    margin-left: auto;
    width: 50px;
    display: none;
    height: 72px;
    line-height: 76px;
}
.menu-btn > a {
    display: inline-block;
    width: 24px;
}
.menu-btn > a span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
}
.menu-btn > a span:last-child {
    margin-bottom: 0;
}
.menu-btn.active span.bar1 {
    transform: translateY(8px) rotate(-45deg);
}
.menu-btn.active span.bar2 {
    opacity: 0;
    visibility: hidden;
    transform: scaleX(2);
}
.menu-btn.active span.bar3 {
    transform: translateY(-6px) rotate(-135deg);
}
.responsive-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    background:linear-gradient(to right, #000,transparent);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    padding: 50px;
    opacity: 0;
    transform: translateX(-100%);
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.responsive-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 999999;
}
.responsive-menu ul li {
    margin-bottom: 30px;
    list-style-type: none;
}
.responsive-menu ul li:last-child {
    margin-bottom: 0;
}
.responsive-menu ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: 100;
    font-family: "Montserrat Light", Arial, Helvetica, sans-serif;
    text-decoration: none;

}
@media only screen and (max-width: 1240px){

    #top-header,header{
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

@media only screen and (max-width: 1080px){}
@media only screen and (max-width:768px) {
     .colored-divs{
        left:-120%;
        top:50%; 
    }
   
}
@media only screen and (max-width: 480px) {
    .responsive-menu{
        width: 100%;
    }
    .hero-banner > .banner-text > span{
        position: relative;
        left:25px;
        transition: 0.3s ease-in-out;
    }
    #about-section .about-us{
        margin: 100px 50px;
        width: 70%;
    }
    .colored-divs{
        left:-150%;
        top:50%; 
    }

    
}
@media only screen and (max-width: 450px) {
    .responsive-menu{
        width: 100%;
    }
    
}