/* ===========================
   MOBILE & TABLET
=========================== */

.menu-toggle,
.close-menu{
    display:none;
}



@media (max-width:768px){

.top-bar{
    display:none;
}

/* Navbar */


.navbar{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
}

.logo{
    font-size:24px;
    max-width:220px;
}

/* .logo img{
    width:60px;
} */
/* Open Button */
.logo img{
    width:55px;
    height:55px;
}

.logo span{
    font-size:20px;
}
.menu-toggle{
    display:block;
    font-size:30px;
    cursor:pointer;
    /* z-index:1003; */
}



/* Sidebar */

.nav-links{

    position:fixed;
    top:0;
    right:-280px;

    width:260px;
    height:100vh;

    background:#fff;

    display:flex;
    flex-direction:column;

    gap:20px;

    padding:20px;

    transition:.35s;

    box-shadow:-5px 0 20px rgba(0,0,0,.2);

    z-index:1002;
}

.nav-links.active{
    right:0;
}

/* Close Button */

.close-menu{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.close-menu i{
    font-size:28px;
    cursor:pointer;
}

.nav-links li{
    list-style:none;
}

.nav-links a{

    text-decoration:none;
    color:#222;
    font-size:20px;
    font-weight:600;

}

/* Mobile Button */

.mobile-btn{

    background:#c59d5f;
    color:#fff !important;

    padding:12px;

    border-radius:8px;

    text-align:center;

    margin-top:20px;

}

/* .btn{
    display:none;
} */

/* Hero */

.hero{
    margin-top:0;
    padding:120px 5% 80px;
    text-align:center;
}

.hero-content{
    max-width:100%;
}

.hero-content h1{
    font-size:38px;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
}

/* About */

.about{
    flex-direction:column;
}

.small-img{
    position:relative;
    width:100%;
    right:0;
    bottom:0;
    margin-top:20px;
}

/* One column */

.services-container,
.project-container,
.testimonial-container,
.contact-box,
.why-container{
    grid-template-columns:1fr;
}

/* Floating Buttons */

.whatsapp{
    bottom:20px;
    right:15px;
}

#topBtn{
    bottom:90px;
    right:15px;
}

}