img{
max-width:100%;
height:auto;
display:block;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f7f7f7;
color:#222;
line-height:1.7;
}

/* NAVBAR */

header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:1000;
padding:20px 8%;
transition:.4s;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:65px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
font-size:15px;
transition:.3s;
}

.nav-links a:hover{
color:#31d6d6;
}

.btn-nav{
background:#31d6d6;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:600;
}

/* SPLIT HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero-slide{
height:100%;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}
.hero-container{
position:relative;
z-index:10;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:0 8%;
height:100%;
color:white;
}

.hero-btn{
background:#d78c58;
padding:16px 35px;
border-radius:40px;
color:white;
text-decoration:none;
font-weight:600;
display:inline-block;
margin-top:20px;
}

.hero-right{
position:relative;
height:100%;
}
.hero-left{
    position:relative;
    z-index:20;
}

.hero-right{
    z-index:10;
}

.floating{
position:absolute;
/*animation:float 6s ease-in-out infinite;*/
}
.bag{
width:300px;
right:100px;
bottom:120px;
transform:rotate(-15deg);
}
.map{
width:150px;
right:280px;
top:170px;
}
.hat{
width:140px;
right:250px;
bottom:250px;
}
.ticket{
width:140px;
right:80px;
top:250px;
}
.sticker{
width:280px;
right:0;
bottom:70px;
}

/* HAMBURGER */
.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:6px;
z-index:1001;
}
.menu-toggle span{
width:30px;
height:3px;
background:white;
transition:.4s;
}
@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
}

.hero-right{
display:none;
}

.hero-left h1{
font-size:70px;
}

}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:30px;
right:30px;
width:70px;
height:70px;
z-index:9999;
/*animation:float 2s infinite;*/

}
.whatsapp img{
width:100%;
border-radius:50%;
box-shadow:0 10px 30px rgba(0,0,0,.3);
}
@keyframes float{
0%{
    transform:translateY(0px);
}
50%{
transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

@media(max-width:768px){

.whatsapp{

width:60px;
height:60px;

}

}


/* FOOTER */

footer{

background:black;
color:white;
padding:30px;
text-align:center;

}
/* DROPDOWN MENU */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:250px;

    background:white;
    border-radius:12px;

    list-style:none;
    padding:10px 0;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    z-index:9999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
    font-size:15px;
}

.dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#d88a4a;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown.active .dropdown-menu{
    display:block;
}
/* Transfers page navbar */

header{
    background:#fff;
}

.nav-links a{
    color:#333 !important;
}

.nav-links a:hover{
    color:#d88a54 !important;
}






