* {
    padding: 0;
    margin: 0;
}

body {
    height: 4000px;
}
/*Start Header*/

.header {
    height: 100vh;
    background-image: 
        linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(images/banner1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /*important trick*/
    padding-top: 20px;
    text-align: center;
    color: #fff;
    
}

.header img {
    width:170px;
    float: left;
}

.login-btn {
    width: 100px;
    padding: 8px 0;
    outline: none !important;
    border: 2px solid #fff;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    float: right;
    cursor: pointer;
}


.header h1 {
    padding-top: 270px; /*nice trick to make h1 and p 200px far from header*/
    padding-bottom: 0;
    font-size: 55px;
}

.header p {
    margin: 18px 0;
}

.input-group {
    width: 90%;
    max-width: 500px;
    border-radius: 30px;
    background: #fff;
    margin:0 auto;
    
    
}

.form-control {
    border: 0 !important;
    border-radius: 30px 0 0 30px !important;
    margin: 2px;
    box-shadow: none !important;
    
}

.input-group-text {
    width: 100px;
    background-image: linear-gradient(#00ff7e,#1f3d90) !important;
    border: 0 !important;
    color: #fff;
    padding: 0 20px;
    border-radius: 30px;
    box-shadow: none !important;
    
}



/*Start Features*/


.features {
    padding: 100px 0;
}


.features h1{
    text-align: center;
    padding-bottom: 30px;
}


.feature-img img {
    width: 100%;
}

.price {
    width: 50px;
    height: 50px;
    background: #ff5722;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px 1px rgba(37,73,214,0.18);
    position: absolute;
    left: 20px;
    bottom: -24px;
}

.feature-img {
    position: relative;
}


.rating {
    padding: 3px;
    float: right;
    background: #fff;
    right: 0;
    position: absolute;
    bottom: 0;
}


.features .fas,.features .far  {
    font-size: 15px;
    color: #ff5722;
}


.features-details {
    padding: 20px;
    text-align: justify;
}


.features-details h4 {
    font-weight: 600;
    margin-top: 20px;
    
}


.features-details .fas {
    margin-right: 5px;
}

.feature-box {
    box-shadow: 0 0 10px 1px rgba(37,73,214,0.18);
    margin-bottom: 30px;
}

/*Gallery Section*/

.gallery {
    padding: 100px 0;
    background: #efefef;
}
.gallery-box {
    position: relative;
    margin-bottom: 30px;
}
.gallery h1{
    text-align: center;
    padding-bottom: 30px;
}

.gallery-box img{
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: .5s ease-out;
}

.gallery-box img:hover {
    transform: scale(1.1);
}

.gallery-box h4 {
    transform: translate(-50%,-50%);
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    text-shadow: -2px 2px 2px #000;
    font-size: 20px;
    
}


/*Start Banner Section*/

.banner {
    height: 75vh;
    padding-top: 13%;
    background-image: url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    
    
}

.banner-highlights {
    padding: 70px 0;
    background: rgba(0,0,0,0.7);
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
}

.booking-btn {
    width: 200px;
    padding: 8px 10px;
    outline: none !important;
    border: 2px solid #fff;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    cursor: pointer; 
    margin-top:10%; 
}

/*Start ClientsReviews*/

.users-feedback {
    padding: 100px 0; 
}

.users-feedback h1{
    text-align: center;
    padding-bottom: 30px;
}

.user-review {
    text-align: center;
    box-shadow: 0 0 10px 0 rgba(0,0,100,0.2);
    padding-bottom: 50px;
    
}

.user-review p {
    padding: 50px 10px 10px 10px;
}

.users-feedback img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    margin: -30px 0 20px 40%;
    
}

.user-review p::before {
    content: '\201d';
    display: block;
    position: absolute;
    font-size: 100px;
    color: #6495ed;
    font-family: sans-serif;
    left: 44%;
    top: -20px;
    
    
}

/*Footer*/

.footer {
    padding: 100px 20px 15px;
    background-image: linear-gradient(#2d557d,#9610fb);
    color: #fff;
}

.footer-logo {
    width: 150px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.footer p {
    font-size: 12px;
    text-align: justify;
    padding-right: 35px
}


.footer  h4{
    text-align: left;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer .fas,.footer .fab {
    margin-right: 13px;
    font-size: 15px;
}

.line {
    background-color: white;
}

.lap {
    margin: 0;
    font-size: 20px !important;
}

.footer .copyright {
    text-align: center;
}