*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html{
    scroll-behavior: smooth;
}



.ham-menu{
    position: fixed;
    top:0;
    /* right:-50%; */
    right:0;
    z-index: 2;

    display: none;
}

.ham-menu.open + .mobile-menu{
    right:0;
}

.ham-menu i{
    padding: 30px;
    font-size: 25px;
    cursor: pointer;
    float: right;
    color: white;
    z-index: 2;
}

.mobile-menu{
    position: fixed;
    z-index: 3;
    background-color: black;
    height:100vh;
    right:-100%;
    top:0;
    /* display: none; */
    width: 70%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: right .5s;
}

.mobile-menu .close{
    position: absolute;
    right:0;
    top:0;
    color: white;
    padding: 30px;
    font-size: 25px;
}

.mobile-menu ul{
    list-style: none;
}

.mobile-menu ul li{
    font-size: 30px;
    margin: 30px 0;
    text-align: center;
}

.mobile-menu ul li a{
    color: white;
    text-decoration: none;
}

.mobile-menu i{
    cursor: pointer;
}


.hero-page{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./asset/background.jpg');
    background-size: cover;
    background-position:  0 25%;
    height: 100vh;

    position: relative;
}

.navbar{
    width:100%;
    /* border: 1px solid white; */
    padding: 15px 0;
}

.hero-page .navbar .max-width{
    /* border: 1px solid white; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}


.navbar ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li a{
    color: white;
    text-decoration: none;
}

ul li{
    color: white;
    cursor: pointer;
}

ul li a:hover{
    color: red;
}

.information{
    height: 100vh;
}

section.aboutus{
    padding: 30px 0;
}

section.aboutus .title{
    text-align: center;
    font-size: 30px;
}


.footer{
    background-color: rgb(44, 44, 44);
    padding: 30px 30px 30px 30px;
}

.footer .max-width{
    max-width: 80%;
    width: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 2fr 2fr;

}

.footer .max-width .col{
    padding: 15px;
}

.footer .title{
    color: #ba9724;
    margin-bottom: 15px;
}

table td{
    padding: 10px 10px 10px 0;
    color: rgb(247, 247, 247);
}

.footer i{
    color: #BA2447;
    font-size: 25px;
}

.footer .row{
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: white;

    gap: 30px;
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content .max-width{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.content .name{
    color: #ba9724;
    font-size: 70px;
}

.content p{
    color: white;
    font-size: 20px;
}

.content .description{
    font-size: 30px;
    color: #BA2447;
    text-align: center;
}


.copyright{
    width: 100%;
    text-align: center;
    background-color: black;
    padding: 10px 0;
    color: white;
}

@media (max-width: 1400px){

    .footer .max-width{
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    
        display:flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        text-align: center;
    }

    .map-col{
        width: 100%;
    }

    .map{
        width: 100%;
        height: 300px;
    }
    
}

@media (max-width: 950px){
    .ham-menu{
       display: block;
    }
    
    .hero-page .navbar .max-width{
        justify-content: center;
    }
    
    .navbar ul{
        display: none;
    }

    
}