*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Cairo", sans-serif;
    color: #777;
    line-height: 1.7;
   
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    color: #222;
}
a{
    color: #222;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 600;
}
a:hover{
    color: #f58d17;
}
img{
    width: 100%;
}

.shadow-on-hover{
    transition: all 0.4s;
}
.shadow-on-hover:hover{
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.btn{
    border-radius: 0;
    padding: 14px 38px;
}
.btn-brand{
    color: #fff;
    font-weight: 500;
    border-color: #f58d17;
    background-color: #f58d17;
}
.btn-brand:hover{
    border-color: #a15f12;
    background-color: #a15f12;
    color: #fff;
}
.slide-1{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/cover1.jpg);
}
.slide-2{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/cover2.jpg);
}
.bg-cover{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.carousel-control-prev,.carousel-control-next{
    background-color: rgba(0,0,0,0.6);
    width: 40px;
    height: 70px;
    margin: auto;
}
#heroslider h6::after,
#heroslider h6::before{
    content: '';
    width: 40px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    margin: 10px;
    vertical-align: middle;
}
/* --------------about-------------- */
section{
    padding: 120px 0;
}
#about .divider{
    width: 60px;
    height: 2px;
    display: block;
    background-color: #f58d17;
}
.intro-text{
    margin-bottom: 40px;
    text-align: center;
}
.intro-text p{
    /* min-width: 500px; */
    margin: 16px auto 0 auto;
}
/* -------------menu----------- */
#menu .nav-pills .nav-link{
    background-color: #fff;
    margin: 0 8px;
    color: #222;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
#menu .nav-pills .nav-link.active{
    background-color: #f58d17;
    color: #fff;
}
.menu-item .stars{
    color: #f58d17;
}
/* --------------features------------ */
#features{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/cover1.jpg);
}
.feature{
    border: 2px solid rgba(255,255,255,0.2);
}
.feature .feature-icon{
    width: 80px;
    height: 80px;
    background-color: #f58d17;
    color: #fff;
    font-size: 28px;
    display: inline-grid;
    align-content: center;
    text-align: center;
}
/* ---------------team------------------ */
.team-member img{
    max-width: 140px;
    box-shadow: -10px -10px 0 #f58d17;
    border-radius: 50%;
}
/* ---------------------reviews---------- */
#reviews{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/cover3.jpg);
}
.review img{
    width: 75px;
    height: 75px;
    object-fit: cover;
}
.review .quote-icon{
    font-size: 75px;
    color: #f58d17;
}
.review .stars{
    color: #f58d17;
}
#reviews .carousel-indicators{
    margin-bottom: -3rem;
}
/* ------------------reservation--------- */
#reservation .form-control{
    border-radius: 0;
}
#reservation .form-control:focus{
    box-shadow: none;
    border-color: #f58d17;
}
#reservation input.form-control{
    height: 47px;
}
/* ----------------post------------------ */
.insta-post{
    position: relative;
    overflow: hidden;
}
.insta-post .insta-btn{
    width: 90px;
    height: 90px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 26px;
    transform: translate(-50%,-50%);
    opacity: 0;
}
.insta-post img{
    transition: all 0.4s;
}
.insta-post:hover img{
    transform: scale(1.2);
}
.insta-post:hover .insta-btn{
    opacity: 1;
}
/* --------------blog-post-------------- */
.blog-post img{
    width: 40%;
    object-fit: cover;
}
@media(max-width:768px){
    .blog-post{
        flex-direction: column;
    }
    .blog-post-img{
        width: 100%;
    }
}
/* -------------------footer-------------- */
footer{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/cover_footer.jpg);
    padding-top: 120px;
    padding-bottom: 30px;
}
footer p,
footer a{
    color: rgba(255,255,255,0.75);
}
footer img{
    max-width: 175px;
}
footer a{
    font-weight: normal;
    font-size: 12px;
    margin: 7px;
}
