*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
@font-face{
    font-family: "dongle-light";
    src: url("dongle/dongle-light.ttf" );
}
@font-face{
    font-family: "dongle-regular";
    src: url("dongle/dongle-regular.ttf" );
}
@font-face{
    font-family: "dongle-bold";
    src: url("dongle/dongle-bold.ttf" );
}
header{
    display: flex;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    align-items:center;

}
.logo img{
    max-width: 30%;
}
.nav-menu ul{
    display: flex;
}
.nav-menu li{
    list-style: none;
    margin-right: 20px;
}
.nav-menu li:last-child{
    margin-right: 0%;
}
.nav-menu a{
    text-decoration:none ;
    font-family: "dongle-bold" ;
    font-size: 1.6rem;
    color:#333;
    transition: all ease 0.3s;
}
.nav-menu a:hover{
    color:rgb(44, 44, 177);
}
.hero{
    position: relative;
    height:600px;
    overflow: hidden;
}
.hero-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-content{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color:#120303;
}
.hero-content h1{
    font-family: "dongle-bold";
    font-size: 3rem;
    margin-bottom: 30;
}
.hero-content p{
    font-family: "dongle-regular";
    font-size: 1.8rem;
    margin-top:20px;
    margin-bottom: 20px;
}
.hero-button{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: rgb(44, 44, 177);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Dongle-light";
    font-size: 1.6rem;
    transition: all ease 0.3s;
}
.hero-button:hover{
    background-color: #333;
}
.destinations{
    font-size: 2.4rem;
    font-family: "dongle-bold";
    margin: 40px,80px;
    text-align: center;
}
.destinations h2{
    margin-top: 40px;
    margin-bottom: 40px;
}
.destination-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:40px;
}
.destination-item img{
    width:100%;
    height: 400px;
    object-fit: cover;
}
.destination-item h3{
    text-align: center;
}
.destination-item h3{
    font-size: 2rem;
}
.destination-item p{
    font-size: 1.4rem;
    line-height: 1;
    text-align: left;
    font-family: "dongle-regular";
}
.destinations button{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: rgb(38, 38, 131);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: "Dongle-light";
    font-size: 1.6rem;
    border: none;
    transition: all ease 0.3s;
}
.destinations button:hover{
    background-color: #333;
}
.vehicles{
    font-size: 2.4rem;
    font-family: "dongle-bold";
    margin: 40px,80px;
    text-align: center;
}
.vehicles h2{
    margin-top: 40px;
    margin-bottom: 40px;
}
.vehicles-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:40px;
}
.vehicles-item img{
    width:100%;
    height: 400px;
    object-fit: cover;
}
.review{
    font-size: 2.4rem;
    font-family: "dongle-bold";
    margin: 40px,80px;
    text-align: center;
}
.review h2{
    margin-top: 40px;
    margin-bottom: 40px;
}
.review-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:40px;
}
.review-item img{
    width:100%;
    height: 400px;
    object-fit: cover;
}
.about{
    text-align: center;
    padding: 100px;
}
.about h3{
    font-family: "dongle-bold";
    font-size: 3rem;
}
.about p{
    font-family: "dongle-regular";
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 40px;
}
.team-members{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.team-member img{
    width: 300px;
    height: 300px;
    margin: 20px;
    object-fit: cover;
}
.team-member h4{
    font-family: "dongle-bold";
    font-size: 2rem;
}
.contact{
    padding: 80px;
    text-align: center;
    background-color: #f7f7f7;
}
.contact h3{
    font-family: "dongle-bold";
    font-size: 3rem;

}
.contact{
    font-family: "dongle-regular";
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.contact-info ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.contact-info li{
    margin: 0 20px;
    font-family: "dongle-regular";
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}
.contact-info li a{
  text-decoration: none;
  font-family: "dongle-regular";
  color: #1e11b8;
}
.contact-info i{
    font-size: 24px;
    margin-right: 10px;;
}
.form{
    width: 100%;
}
input,textarea{
    width: 70%;
    padding: 10px;
    margin: 20px 0;
    border: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    font-size: 1.4rem;
    font-family: "dongle-regular";
}
textarea{
    height: 200px;
}
.form button{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: rgb(38, 38, 131);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: "Dongle-light";
    font-size: 1.6rem;
    border: none;
    transition: all ease 0.3s;
}
.form button:hover{
    background-color: #333;
}
footer{
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
.social-icons a{
   color: #fff;
   font-size: 24px;
   margin-right: 20px;
}
footer p{
    font-family: "dongle-regular";
    font-size: 1.4rem;
}
@media (max-width:1177px){
    .hero-content h1{
        line-height: 0.7;
    }
    .hero-content p{
        margin-top: 0;
        line-height: 0.8;
    }
    .destinations img{
           height: 250px;
        }
        input,textarea{
            width: 100%;
        }
        .vehicles img{
            height: 250px;
         }
         input,textarea{
             width: 100%;
         }
         .review img{
            height: 250px;
         }
         input,textarea{
             width: 100%;
         }
 }
@media (max-width:768px){
    .hero-content h1{
        margin-bottom:5px;
    }
    .team-member img{
        width: 200px;
        height: 200px;
    }
    .destination-grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap:40px;
    }
    .vehicles-grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap:40px;
    }
    .review-grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap:40px;
    }
}
@media (max-width:603px){
    .hero-content h1{
        font-size: 2rem;
    }
    .hero-content p{
        font-size: 1.5rem;
    }
}
@media (max-width:430px){
    header{
    display: flex;
    }
    .nav-menu li{
        list-style: none;
        margin-right: 10px;
    }
    .nav-menu ul{
        display: flex;
    }
    .nav-menu a{
        text-decoration:none ;
        font-family: "dongle-bold" ;
        font-size: 0.6rem;
    }
    .logo img{
        max-width: 80%;
    }
    .hero{
        position: relative;
        height:250px;
        overflow: hidden;
    }
    .hero-image img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .hero-content{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }
    .hero-content h1{
        font-size: 1.0rem;
    }
    .hero-content p{
        font-size: 0.5rem;
    }
    .hero-button{
        padding: 6px 22px;
        font-size: 16px;
    }
    .destinations{
        font-size: 1.5rem;
    }
    .destination-grid{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap:40px;
   }
   .vehicles{
    font-size: 1.5rem;
}
.vehiclers-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap:40px;
}
.review{
    font-size: 1.5rem;
}
.review-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap:40px;
}
   .about{
    padding: 0 30px;
   }
   .team-member img{
    width: 250px;
    height: 250px;
   }
   .contact{
    padding: 0 30px;
   }
   footer{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
.social-icons a{
   font-size: 5px;
   margin-right: 20px;
}
footer p{
    font-family: "dongle-regular";
    font-size: 0.4rem;
}
}


