*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
   /* font-family: 'Roboto' ,sans-serif;*/
   font-family: 'Lato', sans-serif;
}

/*Navbar start*/
#navbar{
    background: #f9f9f9;
}
#logo{
    font-size: 36px;
    font-weight: 500;
    color: #E36414;
    text-shadow: 0px 1px 1px black;
    margin-bottom: 5px;
}
#logo span{
    color: #E36414;
}
.navbar-toggler span{
    color: #E36414;
}
.navbar-nav{
    margin-left: 20px;
}
.nav-item .nav-link{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 500;
    color: black;
    border-radius: 3px;
    transition: 0.5s ease;
}
.nav-item .nav-link:hover{
    color: white;
    background: #E36414;
}
#navbar form button{
    background: #E36414;
    color: white;
    border: none;
}
/*Navbar end*/

/*Home section start*/
.home{
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.2)), url(./images/backgroundimg.png);
    background-repeat: no-repeat;
    background-size:cover;
}
.home .content{
    text-align: center;
    padding-top: 200px;
}
.home .content h5{
    color: white;
    font-size: 30px;
    font-weight: 550;
    text-shadow: 0px 1px 1px black;
}

.home .content h1{
    color: white;
    font-size: 70px;
    font-weight: 500;
    text-shadow: 0px 1px 1px black;
    margin-top: 5px;
}
.changecontent::after{
    content: '';
    color: #E36414;
    text-shadow: 0px 1px 1px black;
    animation: changetext 10s infinite linear;
    }

@keyframes changetext{
    0%{content: "France";}
    5%{content: "Spain";}
    10%{content: "United Kingdom";}
    15%{content: "Germany";}
    20%{content: "Italy";}
    25%{content: "United Arab Emirates";}
    30%{content: "Mexico";}
    25%{content: "Erbil";}
    40%{content: "Saudi Arabia";}
}
.home .content p{
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
    margin-bottom: 30px;
    margin-top: 5px;
}
.home .content a{
padding: 10px;
background: white;
color: black;
letter-spacing: 2px;
font-weight: 550;
border-radius: 5px;
text-decoration: none;
transition: 0.5s;
}
.home .content a:hover{
    background: #E36414;
    color: white;

    }
@media(max-width:850px){
    .home{
        background-position: 50%;
    }
}
@media(max-width:450px){
    .home .content h5{
        font-size: 25px;
    }
    .home .content h1{
        font-size: 38px;
    }
    .home .content p{
        font-size: 13px;
    }
}
/*Home section end*/

/*Book section start*/
.book{
    background: #f9f9f9;
    padding: 50px;
    }

.main-text h1{
    text-align: center;
    text-shadow: 0px 1px 1px black;
    font-weight: 600;
    }
.main-text h1 span{
    color: #E36414;
}
.book .card{
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book .row{
    margin-top: 30px;
}
.book form input{
    padding: 5px;
    color: black;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book form textarea{
    border: none;
    border-radius: 10px;
    resize: none;
    box-shadow: 0px 5px 5px -6px black;
    height: 120px;
}
.book .submit{
    width: 160px;
    font-size: 16px;
    font-weight: 500px;
    background: #E36414;
    color: white;
    margin-top: 5px;
    transition: 0.5s;

}
.book .submit:hover{
    width: 170px;
    }
@media(max-width:765px){
    .book{
        padding: 0px;
    }
    .main-text h1{
        padding: 20px;
    }
}
/*Book section end*/

/*Packages section start*/
.main-text h1{
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    text-shadow: 0px 1px 1px black;
}

.main-text h1 span{
    color: #E36414;
}
.packages .card{
    border-radius: 5px;
    border: none;
    box-shadow: rgb(0,0,0,0.1) 0px 4px 12px;
}
.packages .card img{
    border-radius: 5px;
    height:238px;
}
.packages .card .card-body{
    background: transparent;
}
.packages .card .card-body h3{
    font-size: 25px;
    font-weight: 500;
}
.packages .card .card-body p{
    font-size: 15px
}
.checked{
    color: #ffa500;
}
.star i{
    font-size: 15px;
}
.packages .card .card-body h6{
    font-size: 20px;
}
.packages .card .card-body a{
    padding: 10px;
    text-decoration: none;
    background: #E36414;
    color: white;
    border-radius: 5px;
}
/*Packages section end*/

/*Services section start*/
.services{
    background: #f9f9f9;
    margin-top:5px;
}
.services .card {
    box-shadow: rgba(0,0,0,0.1)0px 4p 12px;
    border: none;
    cursor: pointer;
}
.services .card i{
    font-size: 80px;
    text-align: center;
    color: #111;
    margin-top: 20px;

}
.services .card .card-body h3{
    font-weight: 500;
}
.services .card .card-body {
    text-align: center;
}
.services .card .card-body p{
    text-align: center;
    color: #E36414;
}
/*Services section end*/

/*gallery section start*/
.gallery{
    margin-top: 50px;
}
.gallery .card{
    border-radius: 10px;
    box-shadow: rgb(0,0,0,0.1)0px 4px 12px;
    cursor: pointer;
}
.gallery .card img{
    border-radius: 10px;
    transition: 0.5s;
}
.gallery .card img:hover{
    transform: scale(1.1);
}
/*gallery section end*/
 
/*about start*/
.about{
    padding: 50px;
    margin-top: 50px;
    background:#f9f9f9;
}
.about .card{
    border-radius: 10px;
}
.about .card img{
    border-radius: 10px;
    height:300px;
    }
.about h2{
    font-weight: 500;
    letter-spacing: 1px;
}
.about p{
    font-weight: 500;
}
#about-btn{
    width: 150px;
    height: 30px;
    border: none;
    border-radius: 5px;
    background: #E36414;
    color: white;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.5s ease;
    cursor: pointer;
}
#about-btn:hover{
    width: 170px;
}
@media(max-width:765px){
   .home {
     padding: 0;}
}
/*about end*/

/*footer start*/
#footer{
    width: 100%;
    margin-top: 150px;
    text-align: center;
    background: #f9f9f9;
}
#footer h1{
    font-weight: 500;
    padding-top: 30px;
    text-shadow: 0px 0px 1px black;
}
#footer h1 span{
    color: #E36414;
}
.social-links i{
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    background: black;
    color: white;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
.social-links i:hover{
    background: #E36414;
}
#footer p span{
    font-weight: bold;
    color: #E36414;
}
/*footer end*/