@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

.menu-content{
    width: 100%;
    padding: 20px;
    height: 80px;
    background-color: #fff;
}
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #daa520;
}
.navbar .menu-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #949494;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo img{
    width: 180px;
}
.navbar .logo a span{
    color: #daa520;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #daa520;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #949494;
    font-size: 20px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
    text-decoration: none;
}
.navbar .menu li a:hover{
    border-top: 1px solid #2A568D;
    transform: 0.5s;
}
.navbar .sticky .menu li a:hover{
    border-top: 1px solid #2A568D;
    transition: 0.5s;
}
.menu-btn{
    color: #949494;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.text{
    width: 100%;
    height: auto;
    padding: 100px 50px 20px 50px;
    color: #414141;
    margin-bottom: 40px;
}

.text h2{
    margin: 10px;
}

.text h1{
    text-align: center;
    color: #949494;
    font-size: 29px;
}

.text .line{
    width: 100px;
    height: 3px;
    background-color: #8AD11E;
    margin: 5px auto 10px auto;
}

.footer2{
    width: 100%;
    height: 40px;
    background-color: #353534;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: grid;
    padding: 10px auto;
   
}
.footer2 h3{
    margin: 10px;
    color: #949494;
    font-size: 10px;
}
.footer2 h3:hover{
    color: #fff; 
}
.footer2 a{
text-decoration: none;
}
.footer2 img{
    height: 25px;
}
@media (max-width: 947px){
    .footer2 img{
        height: 40px;
    }
    .footer2{
        flex-direction: column;
        height: auto;
    }
    .footer2 img{
        padding-bottom: 10px;
    }
    .footer2 h3{
        margin: 3px;
        font-size: 8px;
    }
    .menu-content{
        padding: 0 23px;
    }
    .navbar .logo img{
        width: 140px;
    }
    .menu-content{
        padding: 0 50px;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #fff;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease-in-out;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }  
}