﻿.breadcrumb-container {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 1;
}

.breadcrumb-container .breadcrumb-item.active,
.breadcrumb-container .breadcrumb-item a {
    color: #fff;
}

.breadcrumb-container .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* Stylesheet for Language settings on navigation heading */
.language-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-language {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.flag-icon {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}

#language-select {
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}

#selected-text {
    font-size: 16px;
    font-weight: bold;
    margin-left: 8px;
}

.language-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 180px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 99;
    padding: 8px 0;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

.language-option:hover {
    background: #f0f0f0;
}

.flag-option {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}



.news-list .list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem
}

.news-list .list .item ._img {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    position: relative
}

.news-list .list .item ._img:before {
    content: "";
    display: block;
    padding-bottom: 70%
}

.news-list .list .item ._img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover
}

.news-list .list .item ._content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 1rem
}

.news-list .list .item ._content ._title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5rem
}

.news-list .list .item ._content a {
    color: inherit
}

.news-list .list .item ._content a:hover {
    text-decoration: underline
}

.news-detail {
    padding: 2rem 0 !important
}

.news-detail h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem
}

.news-detail .content {
    line-height: 1.5rem
}

.highlight-news ._top {
    display: flex;
    gap: 2rem
}

.highlight-news ._top ._img_area {
    display: block;
    width: 60%;
    position: relative;
    border-radius: .5rem;
    overflow: hidden
}

.highlight-news ._top ._img_area:after {
    content: "";
    display: block;
    padding-bottom: 56%
}

.highlight-news ._top ._img_area img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    height: 100%
}

.highlight-news ._top ._content_area {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-direction: column
}

.highlight-news ._top ._content_area ._title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem
}

.highlight-news ._btm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.highlight-news ._btm ._img_area {
    display: block;
    width: 50%;
    position: relative
}

.highlight-news ._btm ._img_area:after {
    content: "";
    display: block;
    padding-bottom: 56%
}

.highlight-news ._btm ._img_area img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    height: 100%
}

.highlight-news ._btm ._left_area {
    display: flex;
    gap: 2rem;
    flex-direction: column
}

.highlight-news ._btm ._left_area ._item {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.highlight-news ._btm ._left_area ._item ._img_area {
    width: 25%;
    border-radius: .5rem;
    overflow: hidden
}

.highlight-news ._btm ._left_area ._item ._img_area:after {
    padding-bottom: 100%
}

.highlight-news ._btm ._left_area ._item ._content_area {
    flex: 1
}

.highlight-news ._btm ._left_area ._item ._content_area ._title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4rem
}

.highlight-news ._btm ._left_area ._item ._content_area ._desc {
    padding-top: .5rem
}

.highlight-news ._btm ._right_area ._inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.highlight-news ._btm ._right_area ._item {
    width: calc(50% - 1rem);
    flex-direction: column;
    background: #f3e6e7;
    border-radius: .5rem;
    overflow: hidden;
    position: relative
}

.highlight-news ._btm ._right_area ._item ._img_area {
    width: 100%
}

.highlight-news ._btm ._right_area ._item ._content_area {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.highlight-news ._btm ._right_area ._item ._content_area ._title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4rem
}

.highlight-news ._btm ._right_area ._item:nth-child(1) {
    width: 100%;
    flex: auto
}

.highlight-news ._btm ._right_area ._item:nth-child(1) ._content_area {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 2rem;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(255, 255, 255, 0) 100%);
    color: #fff
}

.highlight-news ._btm ._right_area ._item:nth-child(1) ._content_area a {
    color: #fff
}

.highlight-news ._btm ._right_area ._item:nth-child(1) ._content_area a:hover {
    text-decoration: underline
}

header a {
    color: #000
}

header a:hover {
    color: var(--link-color)
}

header .ico_lnk i {
    font-size: 1.2rem
}

header img.ico {
    width: 20px
}

header ._hdr_top {
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 20;
   /* position: absolute*/
}

header ._hdr_top.static {
    position: static;
    box-shadow: 0 0 10px #0000001a;
    margin-bottom: 2rem
}

header ._hdr_top ._top {
    border-bottom: 1px solid #ddd;
    padding: .5rem 0
}

header ._hdr_top ._top .logo img {
    width: 90px
}

header ._hdr_top ._top ._left {
    gap: 2rem
}

header ._hdr_top ._top ._left ._loc {
    line-height: 1rem
}

header ._hdr_top .navbar {
    --bs-navbar-color: #000;
    --bs-navbar-nav-link-padding-x: .8rem;
    --bs-navbar-toggler-font-size: 1rem
}

header ._hdr_top .navbar .navbar-nav {
    align-items: center
}

header ._hdr_top .navbar .navbar-toggler {
    box-shadow: none !important;
    padding: 0;
    border: none;
}

header ._hdr_top .navbar .nav-item {
    position: relative
}

header ._hdr_top .navbar .nav-item .ico_lnk {
    font-size: 1.2rem
}

header ._hdr_top .navbar .nav-item .ico_lnk .nav-link {
    padding: .2rem
}

header ._hdr_top .navbar .nav-item .dropdown-menu {
    border-color: transparent;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease-in-out;
    transform: translateY(30px);
    border-radius: 0;
    margin-left: -1px
}

header ._hdr_top .navbar .nav-item .dropdown-menu .nav-link {
    line-height: 1rem;
    white-space: nowrap
}

header ._hdr_top .navbar .nav-item .dropdown-menu .dropdown-menu {
    left: 100%;
    top: calc(-.5rem - 1px);
    margin-left: 0
}

header ._hdr_top .navbar .nav-item:hover>a {
    color: var(--link-color);
    background: #eee
}

header ._hdr_top .navbar .nav-item:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

header .index,
header .news_category,
header .news_index {
    position: unset;
}

main .banner {
    position: relative;
    --swiper-theme-color: #fff;
    --swiper-navigation-sides-offset: 2rem;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-size: 1rem;
    --swiper-pagination-bullet-horizontal-gap: 5px
}

main .banner .swiper-slide img {
    height: 95vh;
   /* object-fit: cover*/
}

main .banner ._overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, .3)
}

main .banner ._content {
    position: absolute;
    left: 0;
    bottom: -70px;
    z-index: 15;
    color: #fff;
    width: 100%;
    height: 20%;
    display: flex;
    gap: 2rem;
    padding-bottom: 5rem;
    flex-direction: column;
    justify-content: end;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%)
}

main .banner ._content ._head {
    font-size: 4rem;
    text-transform: uppercase;
    max-width: 80%;
    line-height: 6rem
}

main .banner ._content ._desc {
    max-width: 70%
}

main .banner ._content a {
    color: #fff;
    text-decoration: none
}

footer {
    padding-top: 3rem
}

footer ._top {
    display: grid;
    grid-template-columns: calc(30% - 1rem) calc(30% - 1rem) auto;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem
}

footer ._top .logo img {
    width: 100px
}

footer ._top .c-title {
    font-weight: 700;
    margin-bottom: .5rem
}

footer ._top .socials {
    font-size: 1.3rem;
    display: flex;
    gap: 1rem;
    padding-top: 1rem
}

footer ._btm {
    justify-content: space-between;
    padding: 2rem 0
}

body {
    background: #fff;
    font-size: .875rem;
    color: #000;
    --link-color: #88060a
}

.btn-outline-primary {
    --bs-btn-color: var(--link-color);
    --bs-btn-border-color: var(--link-color);
    --bs-btn-hover-bg: var(--link-color);
    --bs-btn-hover-border-color: var(--link-color)
}

.btn-primary {
    --bs-btn-bg: var(--link-color);
    --bs-btn-hover-bg: var(--link-color);
    --bs-btn-border-color: var(--link-color);
    --bs-btn-hover-border-color: #000
}

.text-primary {
    --bs-primary-rgb: 136, 6, 10
}

a {
    text-decoration: none;
    color: var(--link-color)
}

.link-dark,
footer a {
    color: #000
}

.link-dark:hover,
footer a:hover {
    color: var(--link-color) !important
}

.bg-parallax {
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-parallax .container {
    position: relative;
    z-index: 2
}

.bg-parallax.overlay {
    position: relative
}

.bg-parallax.overlay:before {
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    background: rgba(0, 0, 0, .3137254902);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

section {
    padding: 4rem 0
}

section .section_header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem
}

section .section_header .title {
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--link-color)
}

section.about {
    position: relative
}

section.about:after {
    content: "";
    opacity: .15;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/trong-dong-253eb628.png) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed
}

section.about .container {
    position: relative;
    z-index: 2
}

section.about .cards {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

section.about .cards ._card {
    gap: 0;
    grid-template-columns: 55% auto
}

section.about .cards ._card ._img_area {
    position: relative;
    overflow: hidden
}

section.about .cards ._card ._img_area:after {
    display: block;
    content: "";
    padding-bottom: 60%
}

section.about .cards ._card ._img_area img {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s all ease-in-out
}

section.about .cards ._card ._img_area:hover img {
    transform: scale(1.1)
}

section.about .cards ._card ._content_area {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

section.about .cards ._card ._content_area .card-title {
    font-size: 2rem
}

section.about .cards ._card.reverse {
    grid-template-columns: auto 55%
}

section.about .cards ._card.reverse ._img_area {
    order: 2
}

section.about .cards ._card.reverse ._content_area {
    padding-left: 0;
    padding-right: 2rem
}

section.cuisine .section-body {
    display: grid;
    grid-template-areas: "a1 a1 a2 a3 a4" "a5 a6 a2 a7 a7";
    grid-template-columns: 18% 18% 28% 18% 18%;
    grid-template-rows: 1fr 1fr;
    margin-left: -7px;
    margin-right: -7px
}

section.cuisine .section-body .item {
    position: relative;
    border: 7px solid #fff;
    overflow: hidden
}

section.cuisine .section-body .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
    color: #fff;
    font-size: .8rem
}

section.cuisine .section-body .item .content .title {
    font-weight: 700;
    font-size: 1.2rem
}

section.cuisine .section-body .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: .3s all ease-in-out
}

section.cuisine .section-body .item:hover img {
    transform: scale(1.1)
}

section.cuisine .section-body .item:nth-child(1) {
    grid-area: a1
}

section.cuisine .section-body .item:nth-child(2) {
    grid-area: a2
}

section.cuisine .section-body .item:nth-child(3) {
    grid-area: a3
}

section.cuisine .section-body .item:nth-child(3):after {
    display: block;
    content: "";
    padding-bottom: 100%
}

section.cuisine .section-body .item:nth-child(4) {
    grid-area: a4
}

section.cuisine .section-body .item:nth-child(5) {
    grid-area: a5
}

section.cuisine .section-body .item:nth-child(6) {
    grid-area: a6
}

section.cuisine .section-body .item:nth-child(7) {
    grid-area: a7
}

section.cuisine .section-body .item:nth-child(1) .desc,
section.cuisine .section-body .item:nth-child(2) .desc,
section.cuisine .section-body .item:nth-child(3) .desc,
section.cuisine .section-body .item:nth-child(4) .desc,
section.cuisine .section-body .item:nth-child(5) .desc,
section.cuisine .section-body .item:nth-child(6) .desc,
section.cuisine .section-body .item:nth-child(7) .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2
}

section.cuisine .section-footer {
    padding-top: 1rem
}

section.cultural {
    position: relative;
    padding-top: 0
}

section.cultural .section_header {
    position: absolute;
    left: 0;
    top: 10rem;
    width: 100%;
    z-index: 3
}

section.cultural .section_header .title {
    text-align: left;
    font-size: 11rem;
    color: #fff
}

section.cultural .section-body {
    position: relative;
    padding-bottom: 4rem
}

section.cultural .section-body ._top {
    border-radius: 100px 100px 0 0;
    overflow: hidden;
    position: relative
}

section.cultural .section-body ._top:before {
    content: "";
    border-radius: 100px 100px 0 0;
    display: block;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2
}

section.cultural .section-body ._top img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1500px;
    object-fit: cover;
    object-position: center 30%
}

section.cultural .section-body ._midd {
    background: url(/assets/di-san-van-hoa-hanoi-4-58af49aa.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 15rem;
    border-radius: 0 0 100px 100px;
    position: relative
}

section.cultural .section-body ._midd:after {
    content: "";
    border-radius: 0 0 100px 100px;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 0%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    background-size: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    top: -10rem
}

section.cultural .section-body ._midd .container {
    position: relative;
    z-index: 10;
    margin-top: -5rem
}

section.cultural .section-body ._btm {
    min-height: 200px;
    position: relative;
    z-index: 10;
    padding: 3rem 0 0
}

section.cultural .section-body ._btm .container {
    position: relative
}

section.cultural .section-body ._btm .d-flex {
    justify-content: space-between
}

section.cultural .section-body ._btm .title {
    font-size: 3.5rem
}

section.cultural .section-body ._btm ._left {
    width: 50%
}

section.cultural .section-body ._btm ._right {
    flex: 1;
    position: relative
}

section.cultural .section-body ._btm ._right .imgs {
    position: absolute;
    bottom: -1rem;
    right: 0;
    display: flex;
    gap: 1rem;
    width: 100%
}

section.cultural .section-body ._btm ._right .imgs img {
    border-radius: .8rem;
    width: 33.333%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    transition: .3s all ease-in-out
}

section.cultural .section-body ._btm ._right .imgs img:hover {
    width: 50%
}

section.cultural .section-body .items {
    position: relative;
    z-index: 10;
  /*  display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem;
    padding-top: 3rem
}

section.cultural .section-body .items a.item {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem
}

section.cultural .section-body .items a.item .title {
    font-size: 2rem
}

section.cultural .section-body .items a.item:nth-child(1),
section.cultural .section-body .items a.item:nth-child(3) {
   /* padding-top: 50%*/
}

section.cultural .section-body .items a.item img {
    border-radius: 2rem;
    transition: .3s all ease-in-out;
    width: 100%
}

section.cultural .section-body .items a.item:hover img {
    transform: scale(1.05)
}

section.banner-text {
    font-size: 3rem;
    padding: 15rem 0
}

section.banner-text .text-lg {
    font-size: 14rem;
    text-transform: uppercase;
    font-weight: 500
}

section.library ._card {
    display: flex;
    gap: 4rem;
    font-size: 1rem;
    line-height: 2rem
}

section.library ._card .card-title {
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: 1rem
}

section.library ._card ._content_area {
    width: 50%
}

section.library ._card ._img_area {
    flex: 1
}

section.library ._card ._img_area img {
    width: 100%
}

section.maps .destinations {
    margin-top: -5rem
}

section.maps .destinations .container {
    position: relative
}

section.maps .destinations .container ._swiper-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #555
}

section.maps .destinations .container ._swiper-button.swiper-button-disabled {
    color: #ccc;
    cursor: default
}

section.maps .destinations .container ._swiper-button._swiper-button-prev {
    left: -3rem
}

section.maps .destinations .container ._swiper-button._swiper-button-next {
    right: -3rem
}

section.maps .destinations .swiper {
    margin-left: -5px;
    margin-right: -5px
}

section.maps .destinations .swiper-slide {
    padding: 5px
}

section.maps .destinations .item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 5px 2px #0000001a
}

section.maps .destinations .item .img {
    display: block;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden
}

section.maps .destinations .item .img img {
    width: 100%
}

section.maps .destinations .item .content {
    padding: 1rem
}

section.maps .destinations .item .content .title {
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    margin-bottom: .5rem;
    display: block
}

.category-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.category-img .item {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    color: #fff
}

.category-img .item:after {
    content: "";
    display: block;
    padding-bottom: 130%
}

.category-img .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0
}

.category-img .item .title {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 2rem;
    text-transform: uppercase;
    min-height: 50%;
    display: flex;
    align-items: end;
    padding: 0 1.5rem 1.2rem;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(255, 255, 255, 0) 100%)
}

.latest-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}

.latest-news .item {
    display: flex;
    gap: 2rem;
    font-size: 1rem
}

.latest-news .item a {
    color: initial
}

.latest-news .item a:hover {
    color: var(--link-color)
}

.latest-news .item .img_area {
    width: 30%
}

.latest-news .item .img_area img {
    width: 100%
}

.latest-news .item .content_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.latest-news .item .content_area ._title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700
}

@media (max-width: 1399.98px) {
    main .banner ._content ._head {
        font-size: 3rem;
        line-height: 3.5rem;
        margin-bottom: 1rem
    }

    section.cultural .section-body .items {
        gap: 7rem
    }

    section.cultural .section-body ._top {
        border-radius: 50px 50px 0 0
    }

    section.cultural .section-body ._top:before {
        border-radius: 50px 50px 0 0
    }

    section.cultural .section-body ._midd {
        border-radius: 0 0 50px 50px
    }

    section.cultural .section_header .title {
        font-size: 9rem
    }

    section.library ._card {
        gap: 2rem
    }

    section.library ._card .card-title {
        font-size: 3.5rem
    }

    .highlight-news ._btm ._left_area,
    .highlight-news ._btm ._left_area ._item {
        gap: 1rem
    }

    .highlight-news ._btm ._left_area ._item ._content_area ._desc {
        padding-top: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2
    }

    .highlight-news ._btm ._right_area ._inner {
        gap: 1rem
    }

    .highlight-news ._btm ._right_area ._item {
        width: calc(50% - .5rem)
    }

    .highlight-news ._btm ._right_area ._item ._content_area ._desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2
    }
}

@media (max-width: 1199.98px) {
    .category-img {
        gap: 1rem
    }

    .category-img .item .title {
        font-size: 1.5rem
    }

    section.news-list .list {
        gap: 2rem
    }

    section.cultural .section-body .items {
        gap: 3rem
    }

    section.cultural .section-body .items a.item {
        gap: .5rem;
        font-size: 1rem
    }

    section.cultural .section-body .items a.item .title {
        font-size: 1.5rem
    }

    section.cultural .section-body ._top img {
        height: 1000px
    }

    section.cultural .section-body ._midd {
        padding-bottom: 6rem
    }

    section.cultural .section-body ._btm .d-flex {
        gap: 1rem
    }

    section.cultural .section-body ._btm ._right .imgs {
        position: relative;
        bottom: 0
    }

    section.cultural .section-body ._btm ._right .imgs img {
        height: 250px
    }

    section.banner-text {
        padding: 8rem 0;
        font-size: 2rem
    }

    section.banner-text .text-lg {
        font-size: 10rem
    }

    .highlight-news ._top ._img_area {
        width: 50%
    }

    .highlight-news ._top ._content_area {
        gap: .5rem
    }

    .highlight-news ._top ._content_area ._title {
        font-size: 1.5rem;
        line-height: 1.7rem
    }

    .highlight-news ._btm ._left_area ._item ._content_area ._title,
    .highlight-news ._btm ._right_area ._item ._content_area ._title {
        font-size: 1rem;
        line-height: 1.2rem
    }
}

@media (max-width: 991.98px) {
    main .banner .swiper-slide img {
        background-size: cover;
        background-position: center;
        height: 250px;
    }

    header ._hdr_top {
        position: relative
    }

    header ._hdr_top .navbar .navbar-nav {
        align-items: unset;
        margin-top: .5rem
    }

    header ._hdr_top .navbar .navbar-nav .nav-item {
        --lnk-padding: .7rem;
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        border-top: 1px solid #ddd;
        align-items: center
    }

    header ._hdr_top .navbar .navbar-nav .nav-item span._arrow {
        padding: var(--lnk-padding) 0;
        padding-left: 2rem;
        text-align: right
    }

    header ._hdr_top .navbar .navbar-nav .nav-item .nav-link {
        padding: var(--lnk-padding) 0;
        font-weight: 400;
        flex: 1
    }

    header ._hdr_top .navbar .navbar-nav .nav-item .dropdown-menu {
        display: none;
        width: 100%;
        order: 2;
        padding: 0;
        opacity: 1;
        visibility: visible;
        position: static;
        transform: unset
    }

    header ._hdr_top .navbar .navbar-nav .nav-item .dropdown-menu .nav-link {
        padding: .5rem .7rem
    }

    header ._hdr_top .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-menu .nav-link {
        padding: .5rem 1.4rem
    }

    header ._hdr_top .navbar .navbar-nav .nav-item:hover .nav-link {
        background: none
    }

    main .banner {
        overflow: hidden
    }

    main .banner ._content ._desc {
        max-width: 100%
    }

    .category-img {
        gap: 1rem
    }

    .category-img .item .title {
        font-size: 1.2rem;
        justify-content: center;
        padding: 0;
        padding-bottom: 1rem
    }

    .latest-news,
    .latest-news .item {
        gap: 1rem
    }

    .latest-news .item .content_area {
        gap: 0
    }

    .latest-news .item .content_area ._title {
        font-size: 1rem;
        line-height: 1.2rem
    }

    section.news-list .list {
        grid-template-columns: 1fr 1fr
    }

    section.cultural .section-body .items {
        gap: 1.5rem
    }

    section.cultural .section-body ._top img {
        height: 900px
    }

    section.cultural .section_header .title {
        font-size: 6rem
    }

    section.library ._card {
        font-size: .9rem;
        line-height: inherit
    }

    section.library ._card .card-title {
        font-size: 2rem
    }

    section.cuisine .section-body {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: unset;
        gap: 1rem
    }

    section.cuisine .section-body .item {
        grid-area: unset !important;
        border: none
    }

    .highlight-news ._btm {
        grid-template-columns: 1fr
    }

    .highlight-news ._btm ._left_area {
        display: grid;
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 767.98px) {
    main .banner .swiper-slide img {
        background-size: cover;
        background-position: center;
        height: 250px;
    }
    section {
        padding: 2rem 0
    }

    section .section_header .title {
        font-size: 2rem
    }

    section.about .cards ._card ._img_area {
        margin-bottom: 1rem
    }

    section.about .cards ._card ._content_area {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: .3rem
    }

    section.about .cards ._card ._content_area .card-title {
        font-size: 1.2rem
    }

    section.banner-text {
        padding: 5rem 0;
        font-size: 1.2rem
    }

    section.banner-text .text-lg {
        font-size: 5rem
    }

    section.library ._card {
        flex-direction: column
    }

    section.library ._card ._content_area {
        width: 100%
    }

    section.cultural .section_header .title {
        font-size: 4rem;
        text-align: center
    }

    section.cultural .section-body {
        padding-bottom: 0
    }

    section.cultural .section-body ._top img {
        height: 700px
    }

    section.cultural .section-body ._btm .title {
        font-size: 2rem
    }

    section.cultural .section-body ._btm ._left {
        width: 100%;
        order: 2;
        text-align: center
    }

    section.maps {
        padding-bottom: 4rem
    }

    section.maps .destinations .container ._swiper-button {
        font-size: 2rem;
        transform: none;
        top: auto;
        bottom: -4rem
    }

    section.maps .destinations .container ._swiper-button._swiper-button-prev {
        left: 50%;
        transform: translate(-100%);
        margin-left: -5px
    }

    section.maps .destinations .container ._swiper-button._swiper-button-next {
        transform: translate(100%);
        right: 50%;
        margin-right: -5px
    }

    section.cuisine .section-body {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem
    }

    section.cuisine .section-body .item .content .title {
        font-size: 1rem;
        line-height: 1rem
    }

    .category-img {
        gap: 1rem;
        grid-template-columns: 1fr 1fr
    }

    .category-img .item .title {
        font-size: 1.5rem
    }

    .latest-news {
        gap: 2rem
    }

    .latest-news .item {
        flex-direction: column;
        gap: 1rem
    }

    .latest-news .item .img_area {
        width: 100%
    }

    .latest-news .item .content_area {
        gap: .5rem
    }

    main .banner ._content {
        padding-bottom: 1rem
    }

    main .banner ._content ._head {
        font-size: 2rem;
        line-height: 2.2rem
    }

    header ._hdr_top ._top ._left {
        gap: 1rem;
        flex: 1;
        justify-content: space-between
    }

    header ._hdr_top ._top .logo img {
        width: 60px
    }

    .highlight-news ._btm ._left_area {
        display: flex
    }
}

@media (max-width: 575.98px) {
    main .banner .swiper-slide img {
        background-size: cover;
        background-position: center;
        height: 250px; 
    }
    section.news-list .list {
        grid-template-columns: 1fr
    }

    section.cultural .section-body ._top img {
        height: 500px
    }

    section.cultural .section-body .items {
        padding-top: 0
    }

    .items a.item img {
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        padding-top: 15px;
    }

    .category-img .item .title {
        font-size: 1rem
    }

    .latest-news {
        gap: 1rem
    }

    .latest-news .item {
        gap: .5rem
    }

    .latest-news .item .content_area {
        gap: 0
    }

    footer ._top {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    footer ._top .c-title {
        margin-bottom: 0
    }

    footer ._btm {
        flex-direction: column;
        align-items: center
    }

    .highlight-news ._top {
        gap: 1rem;
        flex-direction: column
    }

    .highlight-news ._top ._img_area {
        width: 100%
    }
}