* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

.fa-bars {
    display: none;
}

.nav {
    width: 200px;
    height: auto;
}

.logo {
    width: 100%;
    /* margin-left: 10px; */
}


/* hero section  */

.hero-container {
    padding: 40px;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-text h1 {
    color: #fff;
    font-size: 60px;
    font-family: 'Josefin sans';
    font-weight: 700;
    margin: 0;
}

.hero-text .g {
    color: #008F17;
}

.hero-text .i {
    color: #FF8A00;
}

.hero-text .bookbtn {
    font-size: 17px;
    /* margin: 5px 2px 3px 0px; */
    padding: 7px 25px;
    background-color: #ffaa00;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    transition: .5s;
}


.hero-text .bookbtn:hover {
    background-color: #ffffff;
    color: #FF8A00;
}

.hero-image .img-box {
    width: 450px;
}

.img-box img {
    width: 100%;
}

@media (min-width:500px) and (max-width:890px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .hero-image .img-box {
        width: 250px;
    }
}

@media (min-width:300px) and (max-width:490px) {
    .hero-text h1 {
        font-size: 17px;
    }

    .hero-image .img-box {
        width: 150px;
    }

    .hero-text .bookbtn {
        font-size: 9px;
        padding: 4px 14px;
    }
}



/* card section  */

.card-box {
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 300px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 17px;
}

.card-image {
    padding: 20px;
}

.card-image img {
    width: 100%;
    border-radius: 7px;
}

.review-box p {
    color: #d6d6d6;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 2px 16px;
}

.card-content h3 {
    font-weight: bold;
}

.card-box .btn {
    font-size: 17px;
    margin-bottom: 20px;
    padding: 7px 50px;
    background-color: #ffaa00;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    transition: .5s;
}


.card-box .btn:hover {
    color: #ffffff;
    background-color: #FF8A00;
}

.card-container {
    flex-wrap: wrap;
}


@media (min-width:900px) and (max-width:1200px) {

    .card-container {
        flex-wrap: nowrap;
    }
}


/* our story section */

.story-text h2 {
    font-weight: bold;
    color: #FF8A00;
    position: relative;
    font-family: 'Josefin sans';
}

.story-text h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    border-radius: 40px;
    background-color: #008F17;
}

.story-img img {
    width: 100%;
    border-radius: 10px;
}

.story-text {
    flex-basis: 30%;
}

@media (min-width:500px) and (max-width:890px) {

    .story-text {
        flex-basis: 40%;
    }
}

@media (min-width:300px) and (max-width:490px) {
    .story-text {
        flex-basis: 100%;
    }

    .story-section {
        flex-wrap: wrap;
    }
}

/* gi tag  */

.tag-text{
    text-align: center;
    flex-basis: 40%;
}
.tag-text h2{
    font-weight: bold;
    font-family: 'Josefin sans';
    margin-top: 20px;
    color: #FF8A00;
    position: relative;
}

@media (min-width:500px) and (max-width:890px) {

    .story-text {
        flex-basis: 40%;
    }
}

@media (min-width:300px) and (max-width:490px) {
    .tag-text {
        flex-basis: 100%;
    }

    .tag-section {
        flex-wrap: wrap;
    }
}

/* footer  */

footer{
    background-color: #FFC700;
}
.locate-box h4, .contact-box h4{
    font-size: 30px;
    font-family: 'Josefin Sans';
    font-weight: bold;

}
.locate-box p, .contact-box p{
    font-family: 'Josefin Sans';
    /* font-weight: bold; */
    margin: 0;

}
.locate-text p{
    font-size: 20px;
}
.mail-text p, .phone-text p{
    font-size: 27px;
}
.solid-text{
    display: flex;
}
.solid-text a img{
    cursor: pointer;
    width: 45px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
    margin-bottom: 7px;
    margin-right: 17px;
}
.locate-text{
    display: flex;
    align-items: center;
}

@media (min-width:300px) and (max-width:490px) {
    .contact-container{
        flex-direction: column;
        text-align: center;
    }
    .locate-box{
        margin-top: 20px;
    }
}