body {
    font-family: 'Inter', "Source Sans Pro", sans-serif;
    background-color: #F9F9F9;
    margin: 0px;
    color: #08090e;
}


@font-face {
    font-family: 'Gatwick';
    src: url('../fonts/Gatwick-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    flex-basis: 1200px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
}
.row_page{
    padding-left: 80px;
    padding-right: 80px;
}
:root {
    --color-main: #fff;
    --green: #5c8d24;
    --color-text: #000;
    --color-btn: #3C469C;
    --font-text: "Source Sans 3", sans-serif;
    --color-bg: #1a1a1a;
    --font-title: 'Gatwick';
}
.full-screen-bg{
    background-image: url(../images/LIHSK-Hula-LS-0131-1-scaled.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
        position: fixed !important;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    min-width: 100vw;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none
}

/* header */
header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9999;
    background-color: rgb(0 0 0 / 50%);
}
.menu_button{
    display: none;
}
header .header_main {
    height: 92px;
    max-height: 92px;
    width: 1180px;
    position: relative;
    z-index: 99;
    padding: 8px 0px;
    display: flex;
    align-items: center;
}

header.active {
    background-color: rgba(0, 0, 0, .9);
}

header .row {
    justify-content: space-between;
    align-items: normal;
    width: 100%;
}

header .logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
}

header .logo a {
    display: block;
}
header .logo img {
    width: 100%;
}
header .main_menu{
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: calc(100% - 60px);
    flex-basis: calc(100% - 60px);
}
header .header_button {
    display: flex;
    align-items: center;
}
header .header_button a {
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    padding: 10px 32px;
    background-color: #b14c05;
    border-radius: 40px;
    line-height: 24px;
    letter-spacing: 1px;
}
header .main_menu>ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0px 0px;
    padding: 0px 0px 0px;
    gap: 24px;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: flex-end;
}
header .main_menu ul>li{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .main_menu ul li .sub_menu{
    display: block;
    position: absolute;
    top: 100%;
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    -webkit-box-shadow: 0 10px 50px 0 rgba(8, 9, 14, .25);
    box-shadow: 0 10px 50px 0 rgba(8, 9, 14, .25);
    opacity: 0;
    -webkit-transition: .15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    transition: .15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    background-color: #b14c05;
    visibility: hidden;
    width: max-content !important;
    height: max-content !important;
    padding-left: 0px;
}
header .main_menu ul li .sub_menu>li{
    display: block;
    
}
header .main_menu ul li .sub_menu li a{
    padding: 12px 20px;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    box-shadow: inset 0 -1px 0 0 rgba(8, 9, 14, .05);
    transition: .15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .main_menu ul li .sub_menu>li:hover{
    background-color: color-mix(in srgb, #b14c05, #000 10%);
}
header .main_menu ul li .sub_menu>li:hover>a{
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
        transform: translateX(5px);
        text-decoration: underline;
}
header .main_menu ul li .sub_menu .sub_menu_child{
    display: block;
    position: absolute;
    top: 0%;
    left: 100%;
    min-width: 200px;
    width: max-content;
    background-color: #b14c05;
    transform: scale(0.9) translateY(-20px);
    -webkit-box-shadow: 0 10px 50px 0 rgba(8, 9, 14, .25);
    box-shadow: 0 10px 50px 0 rgba(8, 9, 14, .25);
    opacity: 0;
    -webkit-transition: .15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    transition: .15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    visibility: hidden;
    height: fit-content;
    padding-left: 0px;
}
header .main_menu ul li {
    position: relative;
}
header .main_menu ul li a {
    color: #ffffff;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(3, 0, 0, .6);
}
header .main_menu ul li a:hover{
    opacity: 0.7;
}
header .main_menu ul>li:hover .sub_menu{
    webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}
header .main_menu ul li .sub_menu li:hover>.sub_menu_child{
    webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}
header .main_menu ul li.active a{
    font-weight: 600;
    position: relative;
}
header .main_menu ul li.active a::before{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #b14c05; 
    bottom: -4px;
    left: 0;
    display: block;
    position: absolute;
}
header .main_menu ul li.active .sub_menu a::before{
    display: none;
}
header .header_top {
    background-color: #b14c05;
    width: 100%;
    position: relative;
}
.header_tour .header_top {
    background-color: #003e44;
    padding: 10px;
}
header.scroll .header_top{
    position: fixed;
    width: 100%;
    z-index: 9999999999999999999999;
}
.header_tour .header_top .box_address ul li{
    color: #fff;
    font-size: 12px;
}
.header_tour .header_top .box_address ul li span{
    text-decoration: underline;
}
header .main_menu ul li .sub_menu li:hover>.sub_menu_child>li:hover{
    background-color: color-mix(in srgb, #277ac3, #000 10%);
}
header .main_menu ul li .sub_menu li:hover>.sub_menu_child>li:hover>a{
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
        transform: translateX(5px);
        text-decoration: underline;
}
header .header_top .box_address ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 0;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

header .header_top .box_address ul li {
    margin: 0px;
    padding: 0px;
    width: 100%;
}

header .header_top .box_address ul li a {
    width: 100%;
    font-size: 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    color: #fff;
    padding: 11px;
}

header .header_top .box_address ul li a i {
    font-size: 14px;
}

header .header_top .netword {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 200px;
    max-width: 200px;
}

header .header_top .netword ul {
    list-style: none;
    max-width: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

header .header_top .netword ul li {
    margin: 0px;
    padding: 0px;
    width: 29px;
    min-width: 29px;
    min-height: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: #62370e;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header_top .netword ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .main_menu ul li a.menu_item i{
    font-size: 13px;
}
header .header_top .netword ul li i {
    color: #fff;
    font-size: 15px;
}

header .header_top .netword ul li img {
    width: 18px;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: invert(1);
}

header .main_menu ul li a:hover {
    color: #fff;
    transition: transform 0.5s ease;
}
header .main_menu ul li a:hover i{
    transition: transform 0.5s ease;
    transform: rotate(180deg);
}
header .main_menu ul>li:hover .sub_menu li i {
    position: absolute;
    top: 0;
    right: 10px;
    color: #fff;
    width: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}
header .main_menu ul>li:hover .sub_menu li:hover i{
    transform: rotate(-90deg);
    transition: transform 0.5s ease;
}
.fa-tripadvisor:before {
    content: "\f262";
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

header .main_menu ul li a.menu_item {
    position: relative;
}

header .main_menu li .submenu {
    position: absolute;
    height: fit-content;
    min-width: 220px;
    top: calc(100%);
    left: 12px;
    background-color: #5c8d24;
    margin: 0px;
    padding: 12px;
    display: none;
}

header .main_menu .submenu li {
    padding-bottom: 10px;
    line-height: 35px;
}

header .main_menu .submenu a:hover {
    color: #000;
}

header .main_menu ul li:hover .submenu {
    display: block;
}

header .box_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--color-btn);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
}

header .btn_book a:hover {
    background-color: var(--yellow);
}

header .menu_mobile {
    display: none;
}

header .box_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .box_btn a {
    display: flex;
    align-items: center;
    gap: 6px;
}

header .box_btn a i {
    color: #f47a3b;
}
header .main_menu .menu_button {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .menu_button a{
    padding: 10px 32px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 23px;
}
header .menu_button a:hover {
    background-color: 
 color-mix(in srgb, #ffffff, #000 10%);
    color: #000;
}
.hamburger {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-top: -1px;
    margin-right: 4px;
    margin-left: 2px;
    height: 2px;
    width: 14px;
    border-radius: 1px;
    border-radius: 1px;
    background-color: var(--banner-button-bg-color);
    -webkit-transition: .1s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    transition: .1s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
    background-color: #b14c05;
}
.hamburger::before, .hamburger::after {
    background-color: inherit;
    border-radius: 1px;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: .1s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
    transition: .1s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
}
.hamburger::before {
    top: -6px;
    width: 20px;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
}
.hamburger::after {
    bottom: -6px;
    width: 18px;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .75);
}
.menu-toggle.active .hamburger{
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.menu-toggle.active .hamburger::before {
    width: 16px;
    top: -1px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color:#b14c05;
}
.menu-toggle.active .hamburger::after {
    width: 16px;
    bottom: 1px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #b14c05;
}
.home_banner {
    width: 100%;
    height: 659px;
   position: relative;
}

.home_banner .row_banner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 9, 14, 0.5)), to(rgba(8, 9, 14, 0.4)));
    background-image: linear-gradient(0deg, rgba(8, 9, 14, 0.5) 0%, rgba(8, 9, 14, 0.4) 100%);
    -webkit-transition: all .15s cubic-bezier(0.58, 0.3, 0.51, 0.82);
    transition: all .15s cubic-bezier(0.58, 0.3, 0.51, 0.82);
}
.home_banner .row_banner .box {
    max-width: 1200px;
    flex-basis: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 120px;
}
.banner_slider,.banner_slider .slick-list,.banner_slider .slick-track{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.banner_slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slick-dots{
    z-index: 99;
    bottom: 25px;
}
.slick-prev {
    left: 30px;
}
.slick-next {
    right: 30px;
}
.slick-prev, .slick-next{
    width: 48px;
    height: 48px;
    min-height: 48px;
    min-height: 48px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 9;
    opacity: 1 !important;
}
.slick-prev:hover, .slick-next:hover{
    background-color: #fff !important;
}
.slick-prev i, .slick-next i{
    font-size: 20px;
    line-height: 1;
    color: #000;
}
.slick-prev::before, .slick-next::before{
    display: none;
}
.slick-dots li button:before{
    font-size: 9px;
}
.slick-dots li{
    margin: 0px;
    background-color: #fff;
}
.slick-dots li.slick-active button:before{
    opacity: 1;
}
.slick-dots li:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.slick-dots li:last-child{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.home_banner .row_banner h1 {
   font-size: 64px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 3px 3px 3px #000000;
    font-family: var(--font-title);
    width: 100%;
    text-align: center;
    display: block;
}
.home_banner .row_banner p {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-top: 0px;
     font-family: var(--font-title);
}

.home_banner .row_banner .box_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home_banner .row_banner .box_btn a {
    text-transform: uppercase;
    text-decoration: none;
    background-color: #cc0000;
    font-size: 16px;
    color: #fff;
    padding: 16px 32px;
    border-radius: 35px;
    font-weight: 400;
}
.home_banner .row_banner .box_btn a:hover{
    background-color: #003350 !important;
}
.heading_title {
    width: 100%;
    display: block;
}

.heading_title h3 {
    color: #00324d;
    font-size: 40px;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    font-weight: 600;
}
footer .footer_top{
    padding: 80px 0px;
    background-color: #161616;
}

footer .box_footer .col {
    max-width: 50%;
    flex-basis: 50%;
}

footer .list_network {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0px;
    list-style: none;
    padding: 0px;
    justify-content: left;
    margin-top: 30px;
}

.list_network li {
    margin: 0px;
    padding: 0px;
    line-height: 40px;
}

.list_network li a {
    width: auto;
    height: 24px;
    display: block;
}

.list_network li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: invert(1);
    opacity: 1;
}

footer .address .logo {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

footer .footer_contact {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
    gap: 16px;
    width: 100%;
    flex-direction: column;
    margin-top: 24px;
}

footer .footer_contact li {
    margin: 0px;
    width: 100%;
    padding: 0px;
    display: flex;
    gap: 16px;

}

footer .footer_contact li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
footer .footer_contact li a:hover{
    text-decoration: underline;
}
footer .footer_contact li i {
    font-size: 24px;
    color: #fff;
}
footer .footer_top h3{
    display: block;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 24px;
    font-size: 32px;
    color: #fff;
    font-family: var(--font-title);
    line-height: 1.125;
}
footer .col {
    padding-left: 40px;
}

footer .col .title h4 {
    font-size: 32px;
    margin-top: 0px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-title);
}

footer .menu_contact ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

footer .menu_contact ul li {
    margin: 0px;
    padding: 0px;
}

footer .menu_contact ul li a {
    width: 100%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 24px;
    font-weight: 400;
}

footer .menu_contact ul li a:hover {
    text-decoration: underline;
}
footer .col_charters .list_img {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer .col_charters .list_img img{
    width: 155px;
    height: auto;
    object-fit: contain;
    object-position: center;
}
footer .footer_text{
    margin-top: 30px;
}
footer .footer_text p{
    color: #fff;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 24px;
}
.footer_absolute {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #161616bf;
}
.footer_absolute img{
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
}
.footer_absolute a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.7;
}
.footer_absolute  a:last-child{
    line-height: 24px;
}
.home_ss2{
    background-color: #161616;
    padding: 80px 0px;
}
.home_ss2 .col{
    max-width: 50%;
    flex-basis: 50%;
}
.col_img .gallery{
    display: flex;
    flex-wrap: wrap;
}
.col_img .gallery a{
    width: 33.3333%;
    height: 185px;
    display: block;
}
.col_img .gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.home_ss2 .col_text{
    padding-left: 80px;
    padding-right: 80px;
}
.home_ss2 .col_text h2{
    margin-top: 0px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    font-family: var(--font-title);
}
.home_ss2 .col_text p{
    margin-top: 0px;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.5;
}
.home_ss2 .col_text .box_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}
.home_ss2 .col_text .box_btn a{
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: #b14c05;
    padding: 12px 24px;
    border-radius: 30px;
}
.reviews{
    padding: 80px 0px;
    overflow: hidden;
    position: relative;
}
.reviews::before{
    content: "";
    background-color: rgb(0 0 0 / 40%);
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
}
.reviews .heading_title{
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}
.reviews .heading_title h3{
    font-size: 40px;
    line-height: 1.2;
    font-family: var(--font-title);
    margin-top: 0px;
    margin-bottom: 24px;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
}
.reviews .slider_reviews{
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0px 48px;
}
.reviews .slider_reviews .slider_item{
    width: 100%;
    padding: 0px 20px;
}
.reviews .slider_reviews .slider_item .box{
    width: 100%;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
}
.reviews .slider_reviews .slider_item .box .heading{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.reviews .slider_reviews .slider_item .box .heading .img{
    width: 100px;
    max-width: 100px;
    flex-basis: 100px;
    height: 64px;
}
.reviews .slider_reviews .slider_item .box .heading .img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.reviews .slider_reviews .slider_item .box .heading h3{
    font-size: 24px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 12px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 32px;
}
.reviews .slider_reviews .slider_item .box .heading .star{
    display: block;
    width: 100%;
}
.reviews .slider_reviews .slider_item .box .heading .star::before{
    content: "★" "★" "★" "★" "★";
    color: #f7bc51;
    font-size: 16px;
    line-height: 32px;
}
.reviews .slider_reviews .slider_item .box  .content{
    width: 100%;
    display: block;
}
.reviews .slider_reviews .slider_item .box  .content p{
    font-size: 14px;
    margin: 0px;
    line-height: 1.5;
    color: #08090e;
}
.reviews .slider_reviews .slider_item .box  .content .auther{
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: right;
    font-size: 16px;
    color: #08090e;
}
.slider_reviews  .slick-track{
    display: flex;
    align-items: center;
}
.slider_reviews .slick-dots{
 bottom: -43px;
}
.slider_reviews .slick-prev {
    left: 43px;
}
.slider_reviews .slick-next {
    right: 43px;
}
.slider_reviews .slick-prev,.slider_reviews  .slick-next {
    box-shadow: 0px 0px 3px #ccc;
    background-color: #fff !important;
}
.page_banner{
    width: 100%;
    height: 75vh;
    position: relative;
}
.banner_menu{
    height: 487px;
}

.page_banner::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    background-color: #00000063;
    position: absolute;
}
.page_banner .bg_img{
    width: 100%;
    height: 100%;
}
.page_banner .bg_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner_contact .bg_img img{
    object-position: top center;
}
.page_banner .row_banner{
    position: absolute;
     width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
}
.page_banner .row_banner .box {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.page_banner .row_banner .box h1{
    font-size: 64px;
    color: #fff;
    font-family: var(--font-title);
    margin: 0px;
    max-width: 820px;
}
.banner_menu .row_banner .box{
    align-items: flex-end;
    padding-bottom: 133px;
}
.banner_menu .row_banner .box h1{
    max-width: 100%;
    text-align: center;
    flex-basis: 100%;
    text-shadow: 3PX 3PX 3PX #000000;
}
.header_page_seating .header_button{
    display: none;
}
.seating{
    background-color: #f0f0f0;
    padding: 80px 0px;
}
.seating .col_text{
    max-width: 60%;
    flex-basis: 60%;
}
.seating .col_sidebar{
    max-width: 40%;
    flex-basis: 40%;
    position: relative;
    min-height: 500px;
}
.seating .col_sidebar .box {
    width: 360px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    float: right;
    margin-top: -300px;
    position: sticky;
    top: 40px;
}
.seating .col_sidebar .box .sidebar_slider{
    width: 100%;
    height: auto;
}
.seating .col_sidebar .box .sidebar_slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.seating .col_sidebar .box .sidebar_slider .slick-dots {
    bottom: auto;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    margin-top: 25px;
    gap: 10px;
}
.seating .col_sidebar .box .sidebar_slider .slick-dots li {
    margin: 0px;
    height: 4px;
    background-color: transparent;
    background-color: transparent;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.seating .col_sidebar .box .sidebar_slider .slick-dots li button:before{
    display: none;
}
.seating .col_sidebar .box .sidebar_slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0px;
    background: #fff9f9;
}
.seating .col_sidebar .box .sidebar_slider .slick-dots li.slick-active button{
    background: #b2b8c1;
}
.seating .col_sidebar .box_btn{
    width: 100%;
    padding: 0px 20px;
    margin-bottom: 30px;
}
.sidebar_slider .slick-prev,.sidebar_slider .slick-next {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    top: 80%;
    background-color: #0000007c;
}
.sidebar_slider .slick-prev:hover,.sidebar_slider .slick-next:hover{
    background-color: #00000053 !important;
    opacity: 0.7 !important;
}
.sidebar_slider .slick-prev i,.sidebar_slider .slick-next i{
    color: #fff;
    font-size: 14px;
}
.sidebar_slider .slick-prev{
    left: auto;
    right: 90px;
}
.seating .col_sidebar .box_btn a{
    background-color: #b14c05;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 30px;
    width: 100%;
    display: block;
    text-align: center;
}
.seating .col_sidebar h3{
    font-size: 14px;
    font-family: var(--font-title);
    line-height: 1.5;
    font-weight: 400;
    display: block;
    width: 100%;
    text-align: left;
    padding:6px 20px;
    border-bottom: 1px solid #f5f7f9 ;
    margin: 0px;
}
.seating .col_sidebar .list_price{
    margin: 0px;
    padding: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;

}
.seating .col_text .list_price h3{
    font-size: 14px;
    font-family: var(--font-title);
    line-height: 1.5;
    font-weight: 400;
    display: block;
    width: 100%;
    text-align: left;
    padding: 6px 20px;
    border-bottom: 1px solid #f5f7f9;
    margin: 0px;
}
.seating .col_sidebar .list_price li, .seating .col_text .list_price li{
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    border-bottom: 1px solid #f5f7f9 ;
}
.seating .col_sidebar .list_price li .name p, .seating .col_text .list_price .name p{
    font-size: 14px;
    margin: 0px;
    font-family: var(--font-title);
    color: #08090e;
    font-weight: 600;
}
.seating .col_sidebar .list_price li .name span, .seating .col_text .list_price .name span{
    color: #455b6f;
    font-size: 12.3px;
    margin: 0px;
    font-family: var(--font-title);
    margin-top: 3px;
}
.seating .col_sidebar .list_price li .price, .seating .col_text .list_price li .price{
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    color: #08090e;
    font-weight: 600;
    gap: 6px;
}
.seating .col_sidebar .list_price li .price span, .seating .col_text .list_price li .price span{
    font-size: 13px;
    margin-top: 3px;
}
.seating .col_text .box_detail {
    background-color: rgba(8, 9, 14, .05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.seating .col_text .box_detail .item{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-left: 20px;
    gap: 5px;
}
.seating .col_text .box_detail .item img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.seating .col_text .box_detail h3{
    color: #455b6f;
    font-size: 16px;
    font-family: var(--font-title);
    margin-top: 0px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.seating .col_text .box_detail .item .text p{
    display: flex;
    margin: 0px;
    gap: 5px;
}
.seating .col_text .box_detail .item .text p span{
    font-weight: 600;
}
.seating .col_text .content h2{
    font-size: 40px;
    font-family: var(--font-title);
    margin-top: 0px;
    margin-bottom: 24px;
}
.seating .col_text .content h3{
    font-size: 24px;
    font-family: var(--font-title);
    margin-top: 0px;
    margin-bottom: 24px;
}
.seating .col_text .content ul{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}
.seating .col_text .content ul li{
    line-height: 24px;
    margin: 0px;
    padding: 0px;
}
.seating .col_text .content p{
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 16px;
    width: 100%;
    display: block;
}
.page_menu .row{
    background-color: #fff;
}
.page_menu{
    position: relative;
    padding: 80px 0px;
    background-color: #f0f0f0;
}
.page_menu .col_left{
    max-width: 66%;
    flex-basis: 66%;
}
.page_menu .col_left .list_menu{
    background-color: #b14c05;
    padding: 40px;
}
.page_menu .col_left .list_menu .heading_title{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
    align-items: center;
}
.page_menu .col_left .list_menu .heading_title::after{
    content: "";
    width: 360px;
    height: 1px;
    display: block;
    background-color: #fff;
}
.page_menu .col_left .list_menu .heading_title h2{
    font-size: 32px;
    margin: 0px;
    color: #fff;
    font-family: var(--font-title);
    display: block;
    width: 100%;
    text-align: center;
}
.page_menu .col_left .list_menu .heading_title p{
    font-size: 18px;
    margin: 0px;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-title);
}
.page_menu .col_left .list_menu .menu_item{
     display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        position: relative;
        align-items: center;
        padding-top: 50px;
}
.page_menu .col_left .list_menu .menu_item::after{
    content: "";
    width: 360px;
    height: 1px;
    display: block;
    background-color: #fff;
}
.page_menu .col_left .list_menu .menu_item:nth-child(4)::after{
    display: none;
}
.page_menu .col_left .list_menu .menu_item h3{
    font-size: 24px;
    margin: 0px;
    color: #fff;
    font-family: var(--font-title);
    display: block;
    width: 100%;
    text-align: center;
}
.page_menu .col_left .list_menu .menu_item ul{
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_menu .col_left .list_menu .menu_item ul li{
    padding: 0px;
    margin: 0px;
    color: #fff;
    line-height: 24px;
    width: 100%;
    display: block;
    text-align: center;
}
.page_menu .note{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}
.page_menu .note p{
    display: block;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #fff;
}
.page_menu .col_img{
    max-width: 34%;
    flex-basis: 34%;
}
.page_menu .col_img .gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.page_menu .col_img .gallery a{
    width: 100%;
    height: auto;
}
.page_menu .col_img .gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page_contact{
    background-color: #f0f0f0;
    padding: 80px 0px;
}
.page_contact .col{
    max-width: 50%;
    flex-basis: 50%;
}
.page_contact .col_text{
    padding-right: 20px;
}
.page_contact .col_text .box{
    width: 100%;
    padding: 40px 20px;
}
.page_contact .col_text h2,.page_contact .col_form h3{
    font-family: var(--font-title);
    margin-top: 0px;
    margin-bottom: 24px;
    color: #08090e;
    font-size: 32px;
    line-height: 1.25;
}
.page_contact .col_text .footer_contact {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
    gap: 16px;
    width: 100%;
    flex-direction: column;
    margin-top: 24px;
}
.page_contact .col_text .footer_contact li {
    margin: 0px;
    width: 100%;
    padding: 0px;
    display: flex;
    gap: 16px;
}
.page_contact .col_text .footer_contact li i {
    font-size: 24px;
    color: #08090e;
}
.page_contact .col_text .footer_contact li a {
    font-size: 16px;
    color: #08090e;
    text-decoration: none;
}
.page_contact .col_text .list_network {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0px;
    list-style: none;
    padding: 0px;
    justify-content: left;
    margin-top: 30px;
}
.page_contact .col_text .map{
    display: block;
    width: 100%;
    margin-top: 24px;
}
.page_contact .col_text .list_network li img {
    filter: none;
    opacity: 0.8;
}
.page_contact .col_form{
    padding-left: 20px;
}
.page_contact .col_form .box_input{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.page_contact .col_form .title{
    display: flex;
    align-items: center;
    margin: 16px 0px 8px 0px;
    width: 100%;
}
.page_contact .col_form .title h4{
    margin: 0px;
    font-size: 16px;
}
.page_contact .col_form .title span{
    font-size: 13px;
    color: #c02b0a;
}
.page_contact .col_form .box_input .input{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.page_contact .col_form .box_input .input input{
    border: 1px solid #9badb8;
    border-radius: 5px;
    height: 48px;
}
.page_contact .col_form .box_input .input label{
    font-size: 15px;
    color: #08090e;
}
.page_contact .col_form .box_input:first-child{
    gap: 20px;
}
.page_contact .col_form .box_input:first-child .input{
    max-width: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
}
.page_contact .col_form .box_input textarea{
    height: 80px;
    border: 1px solid #9badb8;
    border-radius: 5px;
}
.page_contact .col_form .box_submit{
    display: block;
    width: 100%;
    margin-top: 24px;
}
.page_contact .col_form .box_submit button{
    border: 0px solid;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    background-color: #b14c05;
    border-radius: 40px;
}
.box_btn_fixed{
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    bottom: 0px !important;
    right: 0px !important;
    padding: 20px;
    background-color: #fff;
    width: 100%;
}
.box_btn_fixed a{
    width: 100%;
    transition: all 0.12s ease !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    padding: 0.2em 1em !important;
    line-height: 2 !important;
    margin: 0 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 40px !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    transition: all 0.15s ease !important;
    background-color: #b14c05 !important;
    color: #ffffff !important;
    border: 0px solid;
    text-shadow: 0 -1px 1px #b14c05 !important;
    text-transform: uppercase;
}