body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    color: rgb(0, 43, 17);
}

html,
body {
    overflow-x: hidden;
}

.body-container {
    margin: 0;
    padding: 0;
}

.navbar-container {
    background-color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: solid #DFE1DF 2px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 1140px;
    margin: 0 auto;
}

.navbar__s1 {
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 2px;
    letter-spacing: -1px;
    font-weight: 500;
}

.navbar__s1:hover {
    cursor: pointer;
}

.navbar__s1 img {
    height: 45px;
    width: 45px;
}

.navbar__s2 {
    display: flex;
    gap: 5px;
    font-size: 17px;
}

.navbar__s2 p {
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    transition: 0.2s;
}

.navbar__s2 p:hover,
.navbar__s3 p:hover {
    cursor: pointer;
    background-color: #E5E5E5;
}

.navbar__s3 {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.navbar__s3 p {
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    transition: 0.2s;
    font-size: 15px;
}

.navbar__s3 button {
    background-color: rgb(0, 43, 17);
    padding: 10px 17px;
    padding-bottom: 13px;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 550;
    font-size: 16px;
    transition: 0.2s;
    text-align: center;
}

.navbar__s3 button:hover {
    cursor: pointer;
    background-color: #143C24;
}

.whereto {
    text-align: center;
    font-weight: bolder;
    margin-top: 50px;
    font-size: 26px;
}

.categories {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
}

.categories p {
    line-height: 2;
    border-bottom: white solid 2px;
}

.categories p:hover {
    cursor: pointer;
    border-bottom: #002B11 solid 2px;
}

.search-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: solid #DFE1DF 2px;
    border-radius: 50px;
    padding: 17px 15px;
    max-width: 750px;
    margin: 0 auto;
    margin-top: 40px;
    background-color: #F7F7F7;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
}

.search-bar__s1 {
    align-items: center;
    cursor: pointer;
}

.search-bar__s1 input {
    border: none;
    outline: none;
    background: transparent;
    width: 625px;
    margin-left: 5px;
    font-size: 16px;
}

.search-bar__s2 button {
    border: solid #00AB42 1px;
    border-radius: 50px;
    background-color: #00EB5B;
    font-size: 16px;
    font-weight: 500;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 11px;
    padding-bottom: 11px;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: 0.2s;
}

.search-bar__s2 button:hover {
    cursor: pointer;
    background-color: #00D352;
}

.card-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 70px;
    border: none;
    border-radius: 6px;
    padding: 20px;
    background-color: #00EB5B;
    min-height: 400px;
    width: 100%;
    max-width: 1100px;
    min-width: 0;
}

.card-container img {
    height: auto;
    width: 100%;
    max-width: 500px;
    align-items: center;
    border-radius: 13px;
    flex-grow: 1;
}

.line {
    border-left: solid rgb(0, 43, 17) 1px;
    min-height: 400px;
    margin: 0 auto;
}

.card__text {
    text-align: center;
    position: static;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.card__text h1 {
    width: 100%;
    max-width: 440px;
    font-size: 55px;
    line-height: 0.8;
    font-weight: bolder;
    letter-spacing: -3px;
}

.card__text p {
    margin-top: 40px;
    font-size: 20px;
    width: 100%;
}

.card__text button {
    margin-top: 20px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    background-color: rgb(0, 43, 17);
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.card__text button:hover {
    cursor: pointer;
    background-color: #143C24;
}

.award-winning {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.award-winning__topic {
    margin-top: 45px;
}

.award-winning__topic p {
    margin-top: 10px;
    font-weight: 300;
}

.award-winning__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    margin-top: 20px;
}

.card-image {
    position: relative;
    flex-grow: 1;
    flex-basis: 20%;
}

.card-image img:hover {
    cursor: pointer;
    opacity: 0.8;
}

.card-image img {
    height: 80%;
    width: 100%;
    border: none;
    border-radius: 7px;
    transition: 0.2s;
    display: block;
}

.award-winning__cards__text {
    display: flex;
    border: none;
    width: fit-content;
    color: white;
    font-size: 27px;
    font-weight: bold;
    position: relative;
    bottom: 100px;
    left: 12px;

    cursor: pointer;
}

.award-winning__cards__text p {
    flex-wrap: wrap;
    width: 100%;
}

.explore {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.ranking {
    line-height: 0;
}

.explore h3 {
    margin-bottom: 10px;
}

.explore-cards {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    flex-wrap: wrap;
}

.explore__images {
    flex-grow: 1;
    flex-basis: 20%;
    margin-top: 20px;
    position: relative;
    cursor: pointer;
}

.explore__images img {
    height: 65%;
    width: 100%;
    border: none;
    border-radius: 7px;
    transition: 0.2s;
}

.explore__images:hover img {
    opacity: 0.8;
}

.explore__desc p {
    font-weight: 500;
    font-size: 18px;
}

.star p {
    color: #00852F;
    font-size: 18px;
}

.ranking {
    display: flex;
    align-items: center;
    gap: 5px;
}

.explore__images i {
    background-color: white;
    color: rgb(0, 43, 17);
    border-radius: 50%;
    width: fit-content;
    padding: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 0.2s;
}

.explore__images i:hover {
    cursor: pointer;
    background-color: #E5E5E5;
}

.sale-image img {
    width: 100%;
    max-width: 1900px;
    height: 650px;
    margin-top: 80px;
}

.sale-image {
    position: relative;
}

.sale-image__text {
    position: absolute;
    top: 17%;
    left: 10%;
}

.sale-image__text h1 {
    color: white;
    font-size: 4rem;
    font-weight: bolder;
    width: 100%;
    max-width: 350px;
    letter-spacing: -3px;
}

.sale-image__text p {
    color: white;
    font-size: 1.3rem;
    width: 100%;
    max-width: 500px;
    font-weight: 600;
}

.sale-image__text button {
    padding: 18px 25px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 550;
    margin-top: 10px;
    transition: 0.2s;
}

.sale-image__text button:hover {
    cursor: pointer;
    background-color: #E5E5E5;
    color: #1A4029;
}

.iconic-places__cards {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    flex-wrap: wrap;
}

.card-image2 {
    flex-grow: 1;
    flex-basis: 20%;
    margin-top: 20px;
}

.card-image2 img {
    height: 300px;
    width: 100%;
    border: none;
    border-radius: 7px;
    transition: 0.2s;
}

.iconic-places {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 90px;
}

.iconic-places h3 {
    font-size: 20px;
    font-weight: 650;
}

.iconic-places__cards p {
    display: flex;
    color: white;
    font-size: 27px;
    font-weight: bold;
    position: relative;
    bottom: 90px;
    left: 15px;
    cursor: pointer;
    width: fit-content;
}

.iconic-places img:hover {
    cursor: pointer;
    opacity: 0.8;
}

.footer {
    background-color: #F7F7F7;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
    flex-wrap: wrap;
}

.footer__s1,
.footer__s2,
.footer__s3,
.footer__s4 {
    flex-grow: 1;
    flex-basis: 20%;
}

.footer-container h3 {
    font-weight: 300;
    font-size: 17px;
    color: #38443A;
}

.footer-container p {
    font-weight: 350;
    line-height: 15px;
    margin-top: 10px;
    font-size: 15px;
}

.footer-container2 {
    display: flex;
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
    justify-content: space-between;
    margin-top: 50px;
    align-items: center;
}

.footer-container2 p {
    font-size: 13px;
}

.footer-container__s1 {
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 2px;
    letter-spacing: -1px;
    font-weight: 500;
}

.footer-container__s1 img {
    height: 45px;
    width: 45px;
}

.footer-container3 {
    display: flex;
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
}

.footer-container3__p p {
    font-weight: 300;
    font-size: 14px;
}

.footer-container3__icons {
    display: flex;
    gap: 20px;
}

.footer-container3__icons i {
    font-size: 20px;
}

.footer-container3__p h3 {
    font-weight: 500;
    font-size: 15px;
    border-bottom: solid #002B11 2px;
    width: fit-content;
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Media Queries */

@media screen and (max-width:800px) {
    body {
        margin: 0;
        padding: 0;
    }

    .navbar h2 {
        font-size: 20px;
    }

    .navbar__s1 img {
        width: 30px;
        height: 30px;
    }

    .navbar__s3 button,
    .navbar__s3 p {
        display: none;
    }

    .navbar__s2 p {
        display: none;
    }

    .menu-bar p {
        display: block;
    }

    .profile p {
        display: block;
        font-size: 20px;
    }

    .navbar__s1 {
        margin: 0 auto;
    }

    .whereto {
        margin-top: 10px;
        margin: 0 auto;
    }

    .whereto h1 {
        font-size: 30px;
    }

    .search-bar {
        max-width: 450px;
        margin-top: 0;
    }

    .search-bar__s1 input {
        max-width: 400px;
        min-width: 50px;
    }

    .categories p {
        display: none;
    }

    .card-container,
    .footer-container,
    .footer-container2,
    .footer-container3 {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    .card-container img {
        max-width: 100%;
        min-width: 0;
    }

    .footer-container3__p h3,
    .footer__s2,
    .footer__s3,
    .award-winning__cards i,
    .iconic-places i {
        display: none;
    }

    .card-image {
        flex-basis: 35%;
    }

    .explore__images {
        flex-basis: 40%;
        margin-top: 40px;
    }

    .award-winning__cards__text {
        margin-top: 15px;
        flex-wrap: wrap;
        width: 100%;
    }

    .explore h3 {
        margin-top:  0;
    }

    .card-image2 {
        flex-basis: 40%;
    }

    .footer-container {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 20px;
    }

    .footer__s1,
    .footer__s4 {
        align-items: center;
        justify-content: flex-start;
        flex: none;
    }

    .footer__s2,
    .footer__s3 {
        display: none;
    }
}

@media screen and (min-width:800px) {
    .menu-bar p,
    .profile p {
        display: none;
    }
}

@media screen and (max-width:520px) {
    .award-winning__cards__text,
    .card-image2 p {
        flex-wrap: wrap;
        width: 100%;
        max-width: 200px;
        line-height: 1.1;
    }

    .explore__images img {
        height: 50%;
    }

    .explore__desc p {
        font-size: 18px;
    }

    .sale-image__text h1 {
        font-size: 50px;
        margin-top: 90px;
    }

    .sale-image__text p {
        font-size: 20px;
    }
}

@media screen and (max-width:970px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        margin-top: 30px;
    }

    .card-container img {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .card__text {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .card__text h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-top: 20px;
    }
}

@media screen and (max-width:490px) {
    .search-bar__s1 input {
        width: 250px;
    }
}