@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-brands/css/uicons-brands.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Thai', sans-serif;
}

header{
    width: 100%;
    /*height: 10vh; คำนวณให้ 10% จากหน้าจอนั้นๆ*/
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}

/* header */
nav{
    width: 100%;
    height: 150px;
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
}

.box_logo img{
    width: 142px;
    height: 69.89px;
    object-fit: cover;
    position: absolute;
    left: 70px;
    top: 40px;
}

.search{
    width: 500px;
    height: 70px;
    border-radius: 15px;
    border: solid 3px #E53D46;
    display: flex;
    align-items: center;
    position: relative;
    position: absolute;
    left: 269px;
    top: 40px;
}

.search input[type="search"]{
    font-family: 'IBM Plex Sans Thai', sans-serif; 
    font-size: 24px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    width: 420px;
    height: 40px;
    padding-left: 21px;
    border: none;
    outline: none;
    cursor: text;
    margin-top: 3px;
    background-color: transparent;
}

/* เอาเครื่องหมายกากบาทออก */
.search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search i{
    font-size: 35px;
    color: #3B56A6;
    position: absolute;
    top: 10px;
    right: 18px;
}

/* เมนูที่มีไอคอน svg */
nav ul {
    display: flex;
    align-items: center;
    list-style-type: none; /*เอาจุดออก*/
    position: absolute;
    right: 67px;
    top: 37.5px;
    /*background-color: aqua;*/
}
nav ul li{
    display: inline-block;
    padding-left: 43px;
    /*background-color: blueviolet;*/
}
nav ul li a {
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    color: #AAAAAA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    /* background-color: chocolate; */
    height: 100%;
    margin-top: 2px;
}
nav ul li a span{
    margin-top: 9px;
}
nav ul li a i svg{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-roadmap svg {
    fill: #E53D46;
    width: 35px;
    height: 35px;
}
.active {
    color: #3B56A6;
}
nav ul li a i svg{
    font-size: 35px;
    fill: #AAAAAA;
}
li:hover i svg {
    fill: #E53D46;
}
li:hover span {
    color: #3B56A6;
}

/* MAP */
.map {
    width: 100%;
    height: 1597px;
    background-color: #fff;
    position: relative;
    margin-top: 150px; 
}
.feature_background {
    width: 100%;
    height: 1597px;
    object-fit: cover;
    z-index: 1;
}
.gradient_top {
    width: 100%;
    height: 391px;
    background: linear-gradient(to top, rgba(217, 217, 217, 0) 0%, rgba(119, 119, 119, 0.5) 100%);
    position: absolute;
    top: 0;
    z-index: 3;
}
.gradient_bottom {
    width: 100%;
    height: 523px;
    background: linear-gradient(to top, rgba(119, 119, 119, 0.5) 0%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.title {
    width: 100%;
    height: 80px;
    z-index: 4;
    /*background-color: aquamarine;*/
    position: absolute;
    top: 72px;
    display: flex;
    justify-content: center;
}
.icon-left svg {
    fill: #E53D46;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 70px;
    transition: fill 0.3s ease; 
    cursor: pointer;
}

.icon-left svg:hover,
.icon-info svg:hover {
    fill: #CA1821;
}
.text_title{
    font-size: 64px;
    font-weight: 600;
    color: #3B56A6;
}
.icon-info svg {
    fill: #E53D46;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 70px;
    transition: fill 0.3s ease; 
    cursor: pointer;
}

.filter {
    width: 100%;
    height: 70px;
    z-index: 4;
    /*background-color: aquamarine;*/
    position: absolute;
    top: 181px;
    display: flex;
    justify-content: center;
}
.all_filter {
    width: 566px;
    height: 70px;
    /*background-color: orange;*/
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown1 .dropdown-button {
    width: 500px;
    height: 70px;
    background-color: #fff;
    border-radius: 15px;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: #3B56A6;
    font-size: 32px;
    font-weight: 500;
    border: none;
    cursor: pointer; 
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding-left: 25px;
    padding-right: 25px; 
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
.dropdown1 .dropdown-content {
    display: none; 
    position: absolute;
    background-color: #fff; 
    min-width: 500px;
    border-radius: 15px;
    color: #3B56A6;
    font-size: 28px;
    font-weight: 500;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 4;
}
.dropdown1 .dropdown-content a {
    color: #3B56A6;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown1 .dropdown-button:hover {
    background-color: #f1f1f1;
}
.dropdown1 .dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 15px;
}
.dropdown1 .icon-dropdown{
    font-size: 50px;
    color: #E53D46;
    margin-top: 16px;
}
.dropdown:hover .dropdown-content,
.dropdown-button:focus + .dropdown-content,
.icon-dropdown:hover + .dropdown-content {
    display: block; 
}
.icon-filter{
    font-size: 40px;
    color: #E53D46;
    position: relative;
    top: 12px;
    left: 22px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.icon-filter:hover {
    color: #CA1821; 
}

.feature_background-2 {
    width: 100%;
    object-fit: cover;
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mission-complete {
    width: 193px;
    height: 100px;
    border-radius: 15px 0 0 15px;
    background-color: #E53D46;
    position: absolute;
    top: 291px;
    right: 0;
    z-index: 4;
    color: #fff;
    text-align: center;
}
.text_mis-1 {
    font-size: 32px;
    font-weight: 500;
    position: relative;
    top: 10px;
}
.text_mis-2 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    top: 6px;
}

.neighborhood-1,
.neighborhood-2,
.neighborhood-3,
.neighborhood-4,
.neighborhood-5,
.neighborhood-6 {
    width: 270px;
    height: 170px;
    /*background-color: #AAAAAA;*/
    position: absolute;
    top: 254px;
    left: 162px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.neighborhood-2 {
    top: 300px;
    left: 945px;
}
.neighborhood-3 {
    top: 580px;
    left: 620px;
}
.neighborhood-4 {
    top: 620px;
    left: 110px;
}
.neighborhood-5 {
    top: 916px;
    left: 332px;
}
.neighborhood-6 {
    top: 914px;
    left: 994px;
}
.name_neigh {
    width: 270px;
    height: 70px;
    border-radius: 15px;
    background-color: #3B56A6;
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}
.name_neigh:hover {
    background-color: #1E3E9D; 
    transform: scale(1.05);
}
.icon-location svg {
    fill: #FF9042; /* เปลี่ยนสี */
    width: 82px;
    height: 82px;
    padding-top: 18px;
}

.popular {
    width: 1080px;
    height: 259px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(to right, rgba(229, 61, 70, 1) 0%, rgba(255, 144, 66, 1) 100%);
    z-index: 6;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
}
.text_popular {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 29px;
}
.all-popular {
    width: 970px;
    height: 120px;
    /*background-color: #AAAAAA;*/
    position: absolute;
    top: 104px;
    display: flex;
    justify-content: space-between;
}
.box-pop {
    width: 310px;
    height: 120px;
    border-radius: 15px;
    background-color: #fff;
    position: relative;
}
.name_pop,
.numb_pop {
    font-size: 32px;
    font-weight: 500;
    color: #3B56A6;
    position: absolute;
    top: 16px;
    left: 23px;
} 
.dist_pop,
.miss_pop {
    font-size: 20px;
    font-weight: 400;
    color: #484848;
    position: absolute;
    top: 71px;
    left: 23px;
}
.numb_pop {
    color: #E53D46;
    top: 30px;
    left: 236px;
}
.miss_pop {
    color: #000;
    top: 71px;
    left: 229px;
}
/* pop-up */
.popup { 
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.popup-content {
    position: relative;
    width: 420px;
    height: 520px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    /* padding-top: 40px; */
    display: flex;
    justify-content: center;
}
.close-btn {
    position: absolute;
    top: 15px; 
    right: 15px;
    font-size: 24px;
    color: #333;
    background-color: #f2f2f2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.close-btn:hover {
    background-color: #E53D46;
    color: #fff;
}
.popup-text {
    width: 420px;
    height: 520px;
    /* background-color: palegoldenrod; */
    display: flex;
    justify-content: center;
}
.popup-logo {
    width: 302px; 
    height: 148.64px;
    object-fit: cover;
    position: absolute;
    top: 186px;
}
#neighborhood-title {
    font-size: 40px;
    font-weight: 600;
    color: #E53D46; 
    position: absolute;
    top: 60px;
}
#neighborhood-title::before {
    content: "“"; /* เพิ่มเครื่องหมายเปิด */
}

#neighborhood-title::after {
    content: "”"; /* เพิ่มเครื่องหมายปิด */
}
.popup-text p {
    font-size: 24px;
    font-weight: 500;
    color: #E53D46; 
    position: absolute;
    top: 114px;
}
.popup-text button {
    width: 240px;
    height: 80px;
    border-radius: 15px;
    background-color: #3B56A6;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    border: none;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    position: absolute;
    top: 405px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.popup-text button:hover {
    background-color: #1E3E9D;
    transform: scale(1.05);
}


/* REVIEW */
.review {
    width: 100%;
    height: 800px;
    background-color: #3B56A6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.all_box {
    width: 2175px;
    height: 1600px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.title_review {
    width: 420px;
    height: 150px;
    background-color: #E53D46;
    border-radius: 15px;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.all_box_review-1,
.all_box_review-2,
.all_box_review-4,
.all_box_review-5 {
    width: 420px;
    height: 1600px;
    /*background-color: #AAAAAA;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: moveUpDown 2s infinite alternate ease-in-out;
}
/* กำหนด keyframes สำหรับอนิเมชั่นเลื่อนขึ้นลง */
@keyframes moveUpDown {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px);
    }
  }
/* กำหนดความเร็วในการเคลื่อนไหวต่างกัน */
.all_box_review-1 {
    animation-duration: 1s;
}
.all_box_review-2 {
    animation-duration: 1.5s;
}
.all_box_review-tt {
    animation-duration: 1s;
}
.all_box_review-4 {
    animation-duration: 1.5s;
}
.all_box_review-5 {
    animation-duration: 1s;
}
.all_box_review-tt {
    width: 420px;
    height: 1230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: moveUpDown 2s infinite alternate ease-in-out;
}
.title_review-mb {
    display: none;
}
.box_review {
    width: 420px;
    height: 520px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    position: relative;
}
.neigh_review {
    font-size: 32px;
    font-weight: 600;
    color: #E53D46;
    position: absolute;
    top: 36px;
}
.text_review {
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 86px;
    line-height: 34px;
}
.profile_review {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 316px;
}
.name_profile {
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 377px;
}
.statics_profile {
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 405px;
}
.bold-text {
    font-weight: 500;
}
.rank_profile {
    width: 139px;
    height: 40px;
    border-radius: 7.5px;
    background-color: #FFE455;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 445px;
}
.box-dot {
    display: none;
}

/* STREET FOOD */
.street-food {
    width: 100%;
    height: 2343px;
    background: linear-gradient(to bottom, rgba(255, 144, 66, 1), rgba(229, 61, 70, 1));
    display: flex;
    justify-content: center;
    position: relative;
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.15);
}
.type-food {
    width: 100%;
    height: 323px;
    /* background-color: #AAAAAA; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title-type {
    width: 100%;
    height: 218px;
    /* background-color: #484848; */
    position: relative;
}
.text_type-1 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 54px;
    left: 70px;
}
.text_type-2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 121px;
    left: 70px;
}
.dropdown2 {
    position: absolute;
    top: 115px;
    right: 70px;
}
.dropdown2 .dropdown-button {
    width: 225px;
    height: 50px;
    background-color: #3B56A6;
    border-radius: 15px;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border: none;
    cursor: pointer; 
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding-left: 14px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
.dropdown2 .dropdown-content {
    display: none; 
    position: absolute;
    background-color: #fff; 
    min-width: 225px;
    border-radius: 15px;
    color: #3B56A6;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 4;
}
.dropdown2 .dropdown-content a {
    color: #3B56A6;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown2 .dropdown-button:hover {
    background-color: #1E3E9D;
}
.dropdown2 .dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 15px;
}
.dropdown2 .icon-dropdown{
    font-size: 28px;
    color: #fff;
    margin-top: 12px;
    margin-right: 6px;
}
.all-type{
    width: 1300px;
    height: 70px;
    /* background-color: #FFE455; */
    display: flex;
    justify-content: space-between;
}
.box-type,
.box-type-n{
    width: 244px;
    height: 70px;
    border-radius: 15px;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: pointer;
}
.at-box-type {
    background-color: #fff;
    color: #3B56A6;
    transition: background-color 0.3s ease;
}
.box-type:hover.at-box-type,
.box-type-n:hover.at-box-type {
    background-color: #cecece; 
}
.box-type:hover,
.box-type-n:hover {
    background-color: #fff;
    color: #3B56A6;
}

.food {
    width: 1300px;
    height: 1855px;
    /* background-color: #AAAAAA; */
    position: absolute;
    top: 323px;
    display: flex;
    justify-content: space-between;
}
.box-food-left,
.box-food-right {
    width: 640px;
    height: 1855px;
    /* background-color: peachpuff; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.box-food {
    width: 640px;
    height: 605px;
    border-radius: 15px;
    background-color: #fff;
    position: relative;
}
.food-img1 {
    width: 362px;
    height: 300px;
    border-radius: 7.5px;
    object-fit: cover;
    position: absolute;
    top: 35px;
    left: 30px;
}
.right-img {
    width: 203px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background-color: #AAAAAA; */
    position: absolute;
    top: 35px;
    right: 30px;
}
.food-img2 {
    width: 203px;
    height: 142.5px;
    border-radius: 7.5px;
    object-fit: cover;
}
.name-stf {
    font-size: 32px;
    font-weight: 500;
    color: #3B56A6;
    position: absolute;
    top: 353px;
    left: 30px;
}
.type-stf {
    font-size: 20px;
    font-weight: 400px;
    color: #000;
    position: absolute;
    top: 368px;
    right: 30px;
}
.loca-stf {
    width: 170px;
    height: 40px;
    border-radius: 7.5px;
    background-color: #E53D46;
    font-size: 20px;
    font-weight: 400px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 412px;
    left: 30px;
}
.box-food-left .icon-bookmark svg,
.box-food-right .icon-bookmark svg {
    fill: #FF9042;
    width: 28px;
    height: 30px;
    position: absolute;
    top: 417px;
    left: 214px;
    cursor: pointer;
}
.rating-stf {
    font-size: 40px;
    font-weight: 500;
    color: #3B56A6;
    position: absolute;
    top: 406px;
    right: 80px;
}
.icon-star svg {
    width: 35px;
    height: 35px;
    fill: #FFE455;
    position: absolute;
    top: 418px;
    right: 30px;
}
.details-stf {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    position: absolute;
    top: 468px;
    left: 30px;
    line-height: 32px;
}
.line1-small, .line2-small, .line3-small {
    display: none;
}
.icon-time svg {
    width: 24px;
    height: 24px;
    fill: #3B56A6;
    position: absolute;
    top: 546px;
    left: 30px;
}
.time-stf {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    position: absolute;
    top: 546px;
    left: 63px;
}
.numrv-stf {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    position: absolute;
    top: 548px;
    right: 30px;
}
.btn-more {
    width: 160px;
    height: 60px;
    background-color: #fff;
    color: #3B56A6;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-size: 24px;
    font-weight: 500;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 2213px;
}

.btn-more:hover {
    background-color: #cecece;
}

/*Footer*/
.footer{
    width: 100%;
    height: 243px;
    background-color: #E53D46;
    display: flex;
    flex-direction: column;
}

.box-footer{
    width: 1440px;
    height: 90px;
    /*background-color: rgb(255, 202, 133);*/
    margin-top: 50px;
    padding-left: 70px;
    display: flex;
    align-items: center;
}

.logo-footer img{
    width: 173px;
    height: 85px;
    /*background-color: antiquewhite;*/
    object-fit: cover;
}

.box-text{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 35px;
    /*background-color: rgb(255, 227, 192);*/
}

.box-text p{
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    align-items: center;
}

.contact-lakin{
    width: 300px;
    height: 90px;
    /*background-color: rgb(255, 234, 208);*/
    font-size: 24px;
    margin-left: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.contact-lakin p{
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: #ffffff;
    font-weight: 500px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.icon-contact i {
    justify-content: space-between;
    align-items: center;
    margin-right: 10px;
    font-size: 35px;
    color: #ffffff;
    margin-top: auto;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 54px;
}

.copyright p{
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.to-top{
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.45);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 70px;
    right: 70px;
    cursor: pointer;
    z-index: 1000;
}

.to-top i{
    color: #3B56A6;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    z-index: 1000;
}




/* start mobile size */
@media screen and (max-width: 400px) {
    .box_logo img {
        width: 90px;
        height: 44.3px;
        position: absolute;
        left: 25px;
        top: 15px;
    }

    .search {
        width: 220px;
        height: 35px;
        border-radius: 7.5px;
        top: 20px;
        left: 150px;
        border: solid 2px #E53D46;
    }

    .search input[type="search"] {
        font-size: 14px;
        width: 180px;
        height: 18px;
        padding-left: 10px;
    }

    .search i {
        font-size: 16px;
        top: 6px;
        right: 12px;
    }

    nav {
        width: 100%;
        height: 175px;
        bottom: 1px;
        background-color: #fff;
    }

    nav ul {
        right: 25px;
        left: 25px;
        top: 95px;
        /* background-color: aqua; */
        display: flex;
        justify-content: space-between;
    }

    nav ul li {
        padding: 0;
        /* background-color: blue; */
    }

    nav ul li a {
        font-size: 14px;
    }

    nav ul li a i svg {
        width: 24px;
        height: 24px;
    }

    .icon-roadmap svg {
        width: 24px;
        height: 24px;
    }

    /* MAP */
    .map {
        height: 1240px;
        margin-top: 175px;
    }
    .feature_background {
        height: 1007px;
    }
    .gradient_top {
        height: 250px;
    }
    .gradient_bottom {
        display: none;
    }
    .title {
        height: 30px;
        top: 33px;
    }
    .icon-left svg {
        width: 30px;
        height: 30px;
        left: 24px;
    }
    .text_title{
        font-size: 24px;
    }
    .icon-info svg {
        width: 30px;
        height: 30px;
        right: 24px;
    }

    .filter {
        height: 40px;
        top: 105px;
    }
    .all_filter {
        width: 288px;
        height: 40px;
    }
    .dropdown1 .dropdown-button {
        width: 250px;
        height: 40px;
        border-radius: 8px;
        font-size: 14px;
        padding-right: 15px; 
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    .dropdown1 .icon-dropdown{
        font-size: 25px;
        margin-top: 8px;
    }
    .dropdown1 .dropdown-content {  
        min-width: 250px;
        border-radius: 8px;
        font-size: 14px;
        box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    .dropdown1 .dropdown-content a:hover {
        border-radius: 8px;
    }
    .icon-filter{
        font-size: 20px;
        top: 6px;
        left: 14px;
    }
    .mission-complete {
        width: 95px;
        height: 81px;
        border-radius: 8.91px 0 0 8.91px;
        top: 245px;
        z-index: 3;
    }
    .text_mis-1 {
        font-size: 20px;
        top: 6px;
    }
    .text_mis-2 {
        font-size: 14px;
        top: 2px;
    }
    .text_mis-main {
        display: block;
    }
    .text_mis-secondary {
        display: block;
        margin-top: -5px;
    }
    .feature_background-2 {
       top: 50px;
    }
    .neighborhood-1,
    .neighborhood-2,
    .neighborhood-3,
    .neighborhood-4,
    .neighborhood-5,
    .neighborhood-6 {
    width: 104px;
    height: 75px;
    /*background-color: #AAAAAA;*/
    top: 190px;
    left: 24px;
    }
    .neighborhood-2 {
        top: 346px;
        left: 50px;
    }
    .neighborhood-3 {
        top: 496px;
        left: 26px;
    }
    .neighborhood-4 {
        top: 496px;
        left: 249px;
    }
    .neighborhood-5 {
        top: 650px;
        left: 150px;
    }
    .neighborhood-6 {
        top: 806px;
        left: 277px;
    }
    .name_neigh {
        width: 104px;
        height: 30px;
        border-radius: 7.5px;
        font-size: 14px;
    }
    .icon-location svg {
        width: 40px;
        height: 40px;
        padding-top: 10px;
    }

    .popular {
        width: 390px;
        height: 290px;
        border-radius: 15px 15px 0 0;
        box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15);
    }
    .text_popular {
        font-size: 20px;
        top: 20px;
        left: 25px;
    }
    .all-popular {
        width: 340px;
        height: 208px;
        top: 57px;
        display: flex;
        flex-direction: column;
    }
    .box-pop {
        width: 340px;
        height: 62px;
        border-radius: 7.5px;
    }
    .name_pop,
    .numb_pop {
        font-size: 16px;
        top: 8px;
        left: 17px;
    } 
    .dist_pop,
    .miss_pop {
        font-size: 14px;
        color: #484848;
        top: 30px;
        left: 17px;
    }
    .numb_pop {
        top: 12px;
        left: 296px;
    }
    .miss_pop {
        top: 30px;
        left: 285px;
    }
    /* pop-up */
    .popup-content {
        width: 250px;
        height: 310px;
        border-radius: 7.5px;
    }
    .popup-text {
        width: 250px;
        height: 310px;
    }
    .popup-logo {
        width: 180px; 
        height: 88px;
        top: 120px;
    }
    #neighborhood-title {
        font-size: 24px;
        top: 50px;
    }
    .popup-text p {
        font-size: 14px;
        top: 80px;
    }
    .popup-text button {
        width: 143px;
        height: 47px;
        border-radius: 7.5px;
        font-size: 14px;
        top: 240px;
    }
    


    /* REVIEW */
    .review {
        height: 443px;
        position: relative;
    }
    .title_review-mb {
        width: 200px;
        height: 50px;
        font-size: 24px;
        background-color: #E53D46;
        border-radius: 15px;
        font-size: 24px;
        font-weight: 500;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 25px;
    }
    .all_box {
        width: 790px;
        height: 310px;
        justify-content: center;
    }
    .all_box_review-1,
    .all_box_review-tt,
    .all_box_review-4,
    .all_box_review-5 {
    display: none;
    }
    .all_box_review-2 {
        width: 790px;
        height: 310px;
        /* display: block; */
        flex-direction: initial;
        animation: none;
        position: absolute;
        top: 88px;
    }
    .box_review {
        width: 250px;
        height: 310px;
        border-radius: 7.5px;
    }
    .neigh_review {
        font-size: 20px;
        top: 26px;
    }
    .text_review {
        font-size: 16px;
        top: 58px;
        line-height: 20.2px;
    }
    .profile_review {
        width: 32.74px;
        height: 32.74px;
        top: 180px;
    }
    .name_profile {
        font-size: 14px;
        top: 216px;
    }
    .statics_profile {
        font-size: 14px;
        top: 235px;
    }
    .rank_profile {
        width: 100px;
        height: 25px;
        border-radius: 3.75px;
        font-size: 14px;
        top: 260px;
    }
    .box-dot {
        display: flex;
        width: 26px;
        height: 7px;
        position: absolute;
        top: 411px;
        justify-content: space-between;
    }
    .dot,
    .dot2 {
        width: 6.5px;
        height: 6.5px;
        border-radius: 50%;
        background-color: #fff;
    }
    .dot2 {
        background-color: #FF9042;
    }

    /* STREET FOOD */
    .street-food {
        height: 2498px;
        box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15);
    }
    .type-food {
        height: 207px;
        /* background-color: #AAAAAA; */
    }
    .title-type {
        height: 112px;
        /* background-color: #484848; */
    }
    .text_type-1 {
        font-size: 24px;
        top: 15px;
        left: 25px;
    }
    .text_type-2 {
        font-size: 14px;
        top: 48px;
        left: 25px;
    }
    .dropdown2 {
        top: 80px;
        right: 25px;
    }
    .dropdown2 .dropdown-button {
        width: 135px;
        height: 30px;
        border-radius: 7.5px;
        font-size: 14px;
        padding-left: 8px;
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
    }
    .dropdown2 .dropdown-content { 
        min-width: 135px;
        border-radius: 7.5px;
        font-size: 14px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .dropdown2 .dropdown-content a:hover {
        border-radius: 7.5px;
    }
    .dropdown2 .icon-dropdown{
        font-size: 15.5px;
        margin-top: 6px;
        margin-right: 4px;
    }
    .all-type{
        width: 340px;
        height: 72px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        /* background-color: #FFE455; */
        justify-content: initial;
        padding-top: 10px;
    }
    .box-type {
        width: 160px;
        height: 30px;
        border-radius: 7.5px;
        font-size: 16px;
    }
    .box-type-n {
        display: none;
    }
    .food {
        width: 340px;
        height: 2224px;
        /* background-color: #AAAAAA; */
        top: 207px;
        flex-direction: column;
    }
    .box-food-left,
    .box-food-right {
        width: 340px;
        height: 1102px;
        /* background-color: peachpuff; */
    }
    .box-food {
        width: 340px;
        height: 354px;
        border-radius: 7.5px;
    }
    .food-img1 {
        width: 192.24px;
        height: 159.31px;
        border-radius: 3.98px;
        top: 12px;
        left: 16px;
    }
    .right-img {
        width: 108px;
        height: 160px;
        top: 12px;
        right: 16px;
    }
    .food-img2 {
        width: 107.8px;
        height: 75.67px;
        border-radius: 3.98px;
    }
    .name-stf {
        font-size: 20px;
        top: 185px;
        left: 16px;
    }
    .type-stf {
        font-size: 14px;
        top: 191px;
        right: 16px;
    }
    .loca-stf {
        width: 110px;
        height: 25px;
        border-radius: 3.75px;
        font-size: 14px;
        top: 219px;
        left: 16px;
    }
    .box-food-left .icon-bookmark svg,
    .box-food-right .icon-bookmark svg {
        width: 15px;
        height: 15px;
        top: 224px;
        left: 137px;
    }
    .rating-stf {
        font-size: 24px;
        top: 217px;
        right: 42px;
    }
    .icon-star svg {
        width: 17.5px;
        height: 17.5px;
        top: 227px;
        right: 16px;
    }
    .details-stf {
        font-size: 16px;
        top: 255px;
        left: 16px;
        line-height: 20px;
    }
    .line1-large, .line2-large {
        display: none;
    }
    .line1-small, .line2-small, .line3-small {
        display: inline;
    }
    .icon-time svg {
        width: 15px;
        height: 15px;
        top: 327px;
        left: 16px;
    }
    .time-stf {
        font-size: 14px;
        top: 323px;
        left: 37px;
    }
    .numrv-stf {
        font-size: 14px;
        top: 323px;
        right: 16px;
    }
    .btn-more {
        width: 100px;
        height: 30px;
        font-size: 14px;
        border-radius: 7.5px;
        top: 2443px;
    }

    /* FOOTER */
    .footer {
        height: 280px;
        position: relative;
    }

    .box-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        width: 100%;
        margin-top: 30px;
    }

    .logo-footer img {
        width: 100px;
        height: 50px;
        margin: 25px;
        margin-top: 0;
    }

    .box-text p {
        font-size: 14px;
        margin-top: -10px;
    }

    .contact-lakin {
        width: 100%;
        height: auto;
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-lakin p {
        font-size: 12px;
        margin-top: 20px;
        line-height: 0.5;
    }

    .icon-contact i {
        font-size: 23px;
        margin-right: 5px;
    }

    .copyright {
        position: absolute;
        width: 100%;
        text-align: center;
        bottom: 10px;
    }

    .copyright p {
        font-size: 10px;
    }

    /* to-top */
    .to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
    }
    .to-top i {
        font-size: 45px;
    }


}