* {
    margin: 0px;
    padding: 0px;
}

body {
    width: 100%;
}

.header {
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.background {
    height: auto;
    /* background-image: url("assets/img/beautiful-strawberry-garden-sunrise-doi-ang-khang-chiang-mai-thailand.jpg"); */
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding-bottom: 5%; */
}

@media (max-width:520px) {
    .background {
        height: auto;
    }
}

.main-info {
    padding-top: 6%;
    padding-bottom: 5%;
}

.information {
    width: 80%;
    height: auto;
    margin: auto;
    /* margin-top: 10%; */
    background-color: #232323;
    border: 2px solid green;
}

.carousel-caption {
    color: aliceblue;
    background-color: #1117;
}



/* explore section */
.places-option {
    height: max-content;
    /* background-image: url("assets/img/Html_css/sky_effect_copy.jpg"); */
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width:520px) {
    .places-option {
        height: auto;
        padding-bottom: 10%;
    }
}

#card-options {
    display: flex;
    justify-content: space-evenly;
    /* padding-top: 10%; */
    height: auto;
    max-width: 1500px;
    flex-wrap: wrap;
}

@media (max-width:520px) {
    #card-options {
        flex-wrap: wrap;
    }
}

.card-new {
    width: 350px;
    border: 2px solid black;
    border-radius: 25px;
    padding: 20px;
    margin: 10px;
    background-color: #232323;
    border: 1px solid green;
}

.card-new img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
}

.card-image {
    height: 300px;
    overflow: hidden;
    z-index: 0;
}

.card-image img {
    transition: all 0.7s;
}

.card-image img:hover {
    transition: all 0.7s ease-in;
    transform: scale(1.07);
    overflow: hidden;
    z-index: 8;
}

.card-content {
    margin: 20px 0px 20px 0px;
}

.card-new button {
    padding: 1.5%;
    margin-top: 2%;
    background-color: #111;
    color: #fff;
}


/* About us section */
#About-us {
    width: 100%;
    height: 100vh;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

@media (max-width:520px) {
    #About-us {
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 10%;
    }

}

.footer-info {
    width: 50%;
    /* justify-content: center; */
    margin-top: 15%;
    height: 20%;
}

.About-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* height:20%; */
    border-bottom: 1px solid #fff;
    padding-bottom: 5%;
}

.fa-whatsapp {
    display: inline-block;
}

@media (max-width:520px) {
    .About-info {
        flex-wrap: wrap;
        justify-content: left;
    }

    .About-info-first {
        padding-top: 7%;
    }

}

.space {
    padding-bottom: 10%;
}

.info {
    line-height: 150%;
}

.Important-links a {
    text-decoration: none;
    color: white;
}

.footer-icons {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    margin-top: 2%;
}

.footer-icons i {
    padding-left: 2%;
}

@media (max-width:520px) {
    .footer-icons {
        font-size: 1rem;
    }

}