body {
    font-family: 'Poppins', sans-serif;
}

.header {
    background-image: url('./images/bg.png');
    background-size: cover;
    width: 100%;
    height: 800px;
}

#navbarNav {
    margin-top: 40px;
}

.img-logo {
    width: 55px;
    height: 60px;
}

.img-logo-mobile {
    width: 55px;
    height: 60px;
    display: none;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    color: #9094A2;
}

.btn-account {
    width: 170px;
    height: 50px;
    background-color: #83D987;
    color: #132039;
    font-weight: 500;
    font-size: 18px;
}

.title-header {
    margin-top: 120px;
}

.title-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: whitesmoke;
    line-height: 65px;
}

.title-header p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #9094A2;
    line-height: 32px;
}

.section-explore {
    display: flex;
    width: 713px;
    height: 112px;
    background-color: white;
    border-radius: 6px;
    margin-top: 60px;
}

.search-form {
    margin-right: 20px;
}

.search-form input {
    width: 230px;
    height: 45px;
}

.btn-explore {
    width: 170px;
    height: 70px;
    background-color: #83D987;
    color: #132039;
    font-size: 18px;
    font-weight: 500;
    margin: auto 0;
}

.main-content {
    background-image: url('./images/bg-main.png');
    background-size: cover;
}

.img-content img{
    width: 519px;
    height: 550px;
    margin-top: 100px;
}

.reason {
    margin-top: 155px;
}

.reason h3 {
    font-size: 32px;
    font-weight: 500;
    color: #0F1837;
}

.reason p {
    display: flex;
    margin-top: 50px;
    color: #0F1837;
    font-size: 16px;
}

.reason .number {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #E7E5F9;
    text-align: center;
    color: #5943A6;
    margin-right: 20px;
}

.main-statistics {
    display: flex;
    margin: 100px auto;
}

.statistic-content {
    flex: auto;
    text-align: center;
}

.statistic-content h3, .statistic-content p {
    color: #0F1837;
}

.recommendation {
    margin-top: 100px;
}

.recommendation-title {
    display: flex;
}

.recommendation-title h2 {
    flex: auto;
    font-size: 32px;
    font-weight: 500;
    color: #0F1837;
}

.recommendation-title a {
    flex: auto;
    text-align: end;
    margin: auto 0;
    color: #9094A2;
    font-size: 16px;
}

.place-recommendation {
    margin-top: 50px;
}

.img-recommendation {
    width: 260px;
    height: 380px;
    margin-bottom: 20px;
}

.place-recommendation h4 {
    font-size: 20px;
    font-weight: 500;
    color: #132039;
    margin: 0;
}

.place-recommendation p {
    font-size: 16px;
    font-weight: 300;
    color: #898898;
    margin: 0;
}

.place-recommendation .price {
    font-size: 20px;
    font-weight: 500;
    color: #0A9F82;
    text-align: end;
    margin-top: -35px;
}

.subscribe-form {
    margin: 150px auto 0;
    width: 713px;
    height: 112px;
    background-color: #020B2A;
    display: flex;
    color: #E7E5F9;
    border-radius: 6px;
    z-index: 1;
    position: relative;
}


.form input {
    width: 230px;
    height: 45px;
    margin-right: 20px;
}

.btn-signup {
    width: 170px;
    height: 70px;
    background-color: #83D987;
    color: #132039;
    font-weight: 500;
    font-size: 18px;
    margin: auto 0;
}

footer {
    width: 100%;
    height: 185px;
    background-color: #F5F6F8;
    padding: 110px;
    z-index: 0;
    position: absolute;
    margin-top: -55px;
}

footer p {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    color: #8A8C97;
}

@media only screen and (max-width: 768px){
    .navbar-toggler {
        float: right;
    }

    .navbar-toggler-icon {
        color: whitesmoke !important;
    }

    .img-logo {
        display: none;
    }

    .img-logo-mobile {
        width: 55px;
        height: 60px;
        display: inline;
    }

    .header {
        padding: 0 30px;
    }

    .title-header {
        margin-top: 50px;
    }

    .title-header h1 {
        font-size: 32px;
        text-align: center;
        line-height: 50px;
    }

    .title-header p {
        text-align: center;
    }

    .section-explore {
        display: block;
        height: 290px;
    }

    .search-form input {
        width: 100%;
    }

    .btn-explore {
        margin-top: 20px;
        display: block;
        width: 100%;
    }

    .img-content img{
        max-width: 100%;
        height: 500px;
    }

    .reason {
        padding: 0 30px;
        margin-top: 30px;
    }

    .reason h3 {
        font-size: 24px;
        text-align: center;
        font-weight: 700;
    }

    .main-statistics {
        /* display: block; */
        margin: 40px 0;
    }

    .statistic-content h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .statistic-content p {
        font-size: 14px;
    }

    .recommendation {
        padding: 0 30px;
    }

    .recommendation-title {
        display: block;
    }

    .recommendation-title h2 {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        line-height: 40px;
    }

    .recommendation-title a {
        font-size: 12px;
        text-align: right;
        margin: 0;
    }

    .img-recommendation {
        display: block;
        margin: 0 auto;
    }

    .place-recommendation h4 {
        text-align: center;
        margin-top: 10px;
    }

    .place-recommendation p {
        text-align: center;
    }

    .place-recommendation .price {
        margin: 0;
        text-align: center;
        font-weight: 700;
    }

    .subscribe-form {
        display: block;
        margin: 80px 0;
        width: 100%;
        height: 300px;
        padding: 0 30px;
        position: static;
        border-radius: 0;
    }

    .subscribe-form .form{
        max-width: 100%;
    }

    .form input {
        width: 100%;
    }

    .btn-signup {
        margin-top: 20px;
        width: 100%;
    }

    footer {
        margin-top: 30px;
        height: 30px;
    }

    footer p {
        font-size: 16px;
    }

}