@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.p{
    font-size: 1.5em;
}
.btn-text{
    font-size: 1.3em !important;
    padding: 10px 30px !important;
}
.h-two{
    font-size: 4em; 
    line-height: 1em; 
    transform: scaleY(1.2); 
    font-weight: 800;
}
.menu-links a{
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.menu-links a:hover{
    text-decoration: none;
}

.hero{
    position: relative;
    height: 600px;
}
.hero img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
}
.hero .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.hero .text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
}
.quick-link a{
    color: white;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 0.9em;
}
.whatsapp{
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 1% 5%;
    z-index: 100px;
}
.mobile-menu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 60%;
    background-color: rgb(52, 1, 11);
    height: 100vh;
}

.mm-links a{
    color: white;
    text-decoration: none;
    margin: 20px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}