/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-blue-100: #f5faff;
  --color-blue-200: #b8dcff;
  --color-blue-300: #7ab8ff;
  --color-blue-400: #3d90ff;
  --color-blue-500: #0064fe;
  --color-blue-600: #0046d1;
  --color-blue-700: #002ba3;
  --color-blue-800: #001575;
  --color-blue-900: #000647;
  --color-green-100: #f0fcf5;
  --color-green-200: #b4eece;
  --color-green-300: #78e0a7;
  --color-green-400: #3cd180;
  --color-green-500: #00c159;
  --color-green-600: #009645;
  --color-green-700: #006a31;
  --color-green-800: #003f1d;
  --color-green-900: #001309;
  --color-gray-100: #f3f5f6;
  --color-gray-200: #d0d8dd;
  --color-gray-300: #aebac2;
  --color-gray-400: #8d9ca7;
  --color-gray-500: #6c7d8b;
  --color-gray-600: #576674;
  --color-gray-700: #424e5c;
  --color-gray-800: #2e3843;
  --color-gray-900: #1c212a;
  --color-white: white;
  --color-black: black;
  --color-border: var(--color-gray-200);
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --radius: 6px;
  --round: 1000px;
  --border: 1px solid var(--color-border);
  --shadow: 0px 2px 8px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-large: 0px 5px 18px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-focus: 0 0 0 var(--space-1) var(--color-blue-200);
  --transition-curve: cubic-bezier(0.2, 0.7, 0.3, 1);
  --transition-curve-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-speed: 0.25s;
  --transition-speed-slow: 1s;
  --transition: all var(--transition-speed) var(--transition-curve);
  --transition-bounce: all var(--transition-speed) var(--transition-curve-bounce);
  --opacity-25: 0.25;
  --opacity-50: 0.5;
  --opacity-75: 0.75;
  --opacity-100: 1;
  font-size:14px;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #FF5C01;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .heading-text {
  font-family: 'Poppins';
  font-style: normal;
}

section{
  padding: 60px 0;
}

.text-utama {
    color: #FF5C01 !important;
}

@media (max-width: 768px) {
    .sm-d-none {
        display: none !important;
    }
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 560px;
    --bs-modal-padding: 2.5rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 0;
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - 0);
    --bs-modal-header-padding-x: 2.5rem;
    --bs-modal-header-padding-y: 2.5rem;
    --bs-modal-header-padding: 2.5rem 2.5rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 0;
    --bs-modal-title-line-height: 1.7;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    box-shadow: var(--bs-modal-box-shadow);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: rgba(30, 34, 40, 0.9);
    --bs-backdrop-opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
    margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width:576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow)
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }
    .modal-sm {
        --bs-modal-width: 450px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        --bs-modal-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-xl-down .modal-footer,
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-xxl-down .modal-footer,
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}

.justify-content-center{
  justify-content:center;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.text-center{
  text-align:center;
}
.text-light{
  color:#fff !important;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
  background: #334960;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  margin-bottom: 0;
}
.border-bottom-grey{
  border-bottom: 1.5px solid #ffffff2b;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
  opacity: 0.5;
}
#topbar .contact-info{
  height:45px;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  opacity: 0.5;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

.search-nav{
  width: 280px;
  margin-left: 16px;
  height: 40px;
  margin-right: 24px;
  position: relative;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;

}
.search-box_input {
    background-color: #f5f5f5;
    border: 1px solid #fff;
    border-radius: 99rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    caret-color: #ff5b00;
    color: #212121;
    font-size: 14px;
    height: 100%;
    overflow: hidden;
    padding-left: 38px;
    padding-right: 12px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.search-box_input:focus, .search-box_input:hover {
  background: #fff;
  border: 1px solid #ff5b00;
  outline-style: none;
}
.search-box_btn-search {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: 0 0;
  border: none;
  color: #757575;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  left: 0;
  margin-left: 14px;
  outline: 0;
  padding: 0;
  position: absolute;
  top: 0;
}
/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  padding:0;
  border-bottom: 1px solid #eee;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: 'Poppins', sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #FF5C01;
}

#header .logo img {
  max-height: 32px;
}

.scrolled-offset {
  margin-top: 70px;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #ff5c01;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  color: #2a2d32;
}

.destinations .list-destination:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.destinations .list-destination ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.destinations .list-destination:hover  a {
  opacity: 1;
  background-color: #f5f5f5;
  border-radius: 6px !important;
  color: #333;
}
.destinations .list-destination ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  width: 493px;
  border-radius: 10px;
}
.destinations .list-destination ul li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 10px;
  width: 33.333%;
}


.destinations .list-destination:hover > a {
  background-color: #f5f5f5;
  border-radius:6px !important;
}
.destinations .hot-destinations_link {
  background-color: #f5f5f5;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  color: #fff;
  display: block;
  height: 74px;
  overflow: hidden;
  position: relative;
  width: 130px;
}
.header-secondary-nav .item-categories span {
  padding-left: 4px;
}
.hot-destinations_name {
  background: -o-linear-gradient(bottom,rgba(0,0,0,.65),transparent 100%);
  background: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.65)),to(transparent));
  background: linear-gradient(0deg,rgba(0,0,0,.65),transparent);
  border-radius: 6px;
  bottom: 0;
  display: block;
  font-weight: 400;
  left: 0;
  padding-bottom: 3px;
  position: absolute;
  text-align: center;
  width: 100%;
  color:#fff !important;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  /* padding: 10px 0 10px 30px; */
  /* margin: 0 12px; */
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  font-size: 14px;
  font-weight: 500;
  color: #2a2d32;
  white-space: nowrap;
  /* transition: 0.3s; */
  position: relative;
  /* text-transform:uppercase; */
  line-height: 36px;
  height: 36px;
  opacity: 1;
  padding:10px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  color:#000;
}

/* .navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #FF5C01;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
} */
:where(nav li)::before {
  float: unset;
  content: unset;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  
  opacity: 1;
  background-color:#f5f5f5;
  border-radius: 99rem;
  color:#333;
}

.navbar .active{
  background-color:#FF5B02;
  color: #fff;
}
.navbar a.lang-en:hover, .navbar li.dropdown:hover > a {
  opacity: 1;
  background-color: #f5f5f5;
  border-radius: 0;
  color: #333;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .lang-drop a{
  justify-content:start;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #FF5C01;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }

  .navbar a, .navbar a:focus {
    font-size: 12px;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #FF5C01;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #FF5C01;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#navbar .bx.bx-menu{
  display:none;
}
@media(max-width:700px){
  #navbar .bx.bx-menu{
    display:block;
  }
  .search-nav{
    display:none;
  }
  .bx.mobile-nav-toggle.bx-x{
    color:#fff;
  }
  .navbar a .bx.bx-map{
    display:none;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fff;
  min-height: 40px;
  margin-top: 70px;
  border-bottom: 0.0625rem solid #DFE0E2;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Artikel
--------------------------------------------------------------*/
.rounded {
    border-radius: 5px !important;
}

.image-list {
    padding: 0;
    margin: 0
}

.image-list .meta,
.image-list p {
    margin: 0
}

.image-list:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.image-list>li {
    clear: both;
    display: block;
    overflow: hidden
}

.image-list>li+li {
    margin-top: 1rem
}

.image-list figure {
    float: left;
    width: 3.5rem;
    height: 3.5rem
}

.image-list .post-content {
    margin-left: 4.25rem;
    margin-bottom: 0
}

.tag-list li {
    display: inline-block;
    margin-right: .2rem;
    margin-bottom: .1rem
}

.tag-list li a:before {
    font-style: normal;
    content: "#";
    font-weight: 400;
    padding-right: .2rem
}

.blog.single .post .tag-list li,
.widget .tag-list li {
    margin-top: 0;
    margin-bottom: .45rem
}

.widget .tag-list li a {
    display: flex;
    align-items: center
}

.filter:not(.basic-filter),
.filter:not(.basic-filter) ul li a,
.meta,
.post-category {
    text-transform: uppercase;
    letter-spacing: .02rem;
    font-size: .7rem;
    font-weight: 700;
    color: #aab0bc
}

.meta {
    font-size: .65rem
}

.post-category {
    margin-bottom: .4rem
}

.post-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .7rem;
    color: #aab0bc
}

.post-meta li {
    display: inline-block
}

.post-meta li a {
    color: #aab0bc
}

.post-meta li a:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary)
}

.post-meta li:before {
    content: "";
    display: inline-block;
    width: .2rem;
    height: .2rem;
    border-radius: 100%;
    margin: 0 .6rem 0;
    vertical-align: .15rem;
    background: #aab0bc;
    opacity: .5
}

.post-meta li i {
    padding-right: .2rem;
    vertical-align: -.05rem
}

.post-meta.text-white li:before {
    background: var(--bs-white)
}

.post-header .post-meta {
    font-size: .8rem
}

.post-header .post-meta li:before {
    margin: 0 .6rem 0 .4rem
}

.post-meta li:first-child:before,
article .post-meta li.ms-auto:before {
    display: none
}

@media (max-width:767px) {
    .card-footer .post-meta li.post-author,
    .card-footer .post-meta li.post-comments span {
        display: none
    }
    .post-header .post-meta li.post-author,
    .post-header .post-meta li.post-comments span,
    .post-header .post-meta li.post-likes span {
        display: none
    }
}

.artikel-item {
  padding: 15px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.artikel-item .thumbnail {
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.artikel-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artikel-item .content {
  padding: 0 10px;
}
.artikel-item .content .meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #FF5C01;
  margin-bottom: 5px;
}
.artikel-item .content .title {
  font-weight: 700;
  line-height: 1.25;
  font-family: "Inter", sans-serif;
}
.artikel-item .content .title a {
  color: #111827;
}

.share-socmed-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.share-socmed-container .socmed-button {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share-socmed-container .socmed-button .socmed-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}
.share-socmed-container .socmed-button p {
  margin: 0;
}
.image-list > li + li {
  margin-top: 10px;
}
.sidebar-post-list-image {
  aspect-ratio: 1/1; 
  object-fit: cover; 
  height: 90px;
  border-radius: 10px;
}

.post-img-container {
  overflow: hidden;
  border-radius: 30px;
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 991;
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0px 0;
  color: #444444;
  font-size: 10px;
  background: #fff;
  border-top: 0.0625rem solid #DFE0E2;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size:14px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  /* float: left; */
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/*--------------------------------------------------------------
  # Slider Home
  --------------------------------------------------------------*/
.slider-home{
  position:relative;
  height:580px;
  overflow:hidden;
  margin-top: 70px;
}
.slider-home-wrapper .slick-dots {
  bottom: 5%;
}
.slider-home .slick-dots li button:before {
  font-size: 14px;
}
.slider-home .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.slider-home .slick-dots li button:before {
  font-family: boxicons!important;
  content: "\ea5c";
  color: #fff;
  opacity: 1;
}

.slider-home .slick-dots li.slick-active button:before {
  font-family: boxicons!important;
  content: "\ed47";
}
.form-search__box input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -o-text-overflow: ellipsis;
  flex: 1;
  height: 54px;
  padding-left: 20px;
  overflow: hidden;
  border: none;
  border-radius: 30px;
  outline: none;
  /* background-image: url(../img/ico-search.svg); */
  /* background-position: left 30px center; */
  background-repeat: no-repeat;
  color: #222222;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: -0.025em;
  line-height: 3.38;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-search__box .uk-button {
  height: 54px;
  padding: 0 10px;
  border-radius: 30px;
  line-height: 54px;
  padding: 0;
  border: none;
  background: none;
  outline:none;

}
.form-search {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 766px;
  border: 1px solid rgb(255 255 255);
  background-color:#fff;
  border-radius: 47px;
}
.section-banner__text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}
.position-relative{
  position:relative;
}
.section-banner__title {
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -0.025em;
  line-height: 1.37;
}
.section-banner__content {
  display: block;
  position: relative;
}
.wrap-content-slider{
  position:absolute;
  top: 30%;
  left: 33.33%;
  width:33.33%;
  text-align:center;
  z-index: 2;
}
.uk-button i{
  padding:10px;
  background-color:#ff5b00;
  border-radius:20px;
  color:#fff;
  margin-right:15px;
}
.form-search__box{
  display:flex;
  align-items:center;
}
.overlay {
  background: rgb(0 0 0);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  z-index: 1;
  opacity: .25;
}
.section-bg{
  background-color:#ffdabf;
}
@media (max-width: 1400px){
  .slider-home {
    height: 450px;
  }
}

@media (min-width: 767px){
  .section-banner__text {
    font-size: calc(10px + 2 * (100vw / 1920));
  }
  .section-banner__title {
    font-size: calc(15px + 32 * (100vw / 1920));
  }
}
/*--------------------------------------------------------------
# Keunggulan
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 10px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: #ff5b00;
  font-size: 36px;
  transition: 0.3s;
}
.featured-services .service-item .icon img {
  width: 36px;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}
.featured-services .service-item h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4{
  color: #ff5c01;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(72, 86, 100, 0.1);
}

.featured-services .service-item:hover h4 a {
  color: #b34b00;
}
/*--------------------------------------------------------------
# Category
--------------------------------------------------------------*/
.wrap-category{
  width: 25%;
  flex-basis: 25%;
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 25%;
  margin-left: 0%;
  right: auto;
  left: auto;
  box-sizing: border-box;
  min-height: 1px;
  min-width: 0;
  position: relative;
}
.imgContainer__1HQI:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.wrap-category img{
  border-radius: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item-category h4{
  font-size:18px;
  font-weight:bold;
}
.item-category p{
  font-size:12px;
  margin-bottom:0;
}
.item-category h4 a{
  color:#2a2d32;
}

/*--------------------------------------------------------------
# Packages Home
--------------------------------------------------------------*/
.productCardWrapper {
  height: 100%;
  padding: 0 0 0.625rem 0;
  position: relative;
}
.productCard{
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.imageContainer{
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
  padding-top: 66.67%;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
.image__1CTs {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.imageContainerContent {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  width: 100%;
}
.badgeContainer {
  max-width: 70%;
}
.textContainer{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.location__hWus {
  margin-bottom: 0.5rem;
  display: flex;
  font-size: 0.8125rem;
  color: #585C63;
}
.locationIconCol__2woW {
  padding-right: 0.5rem;
  padding-top: 0.125rem;
}
.title__3akh {
  display: block;
  text-align: left;
  color: #2A2D32;
  margin-bottom: 0.5rem;
}
.rating__1lkF {
  color: #2A2D32;
  margin-bottom: 0.5rem;
  display: flex;
}
.starRating__2s-H {
  display: flex;
  align-items: flex-end;
}
.reviewCount__1hbz {
  display: inline-block;
  line-height: 1;
}
.stars__1Oqw {
  display: flex;
  white-space: nowrap;
  margin-right: 0.5rem;
}
.price__27Qm {
  color: #2a2d32;
  margin-bottom: 0.5rem;
}
.fromLabel__J2Dd {
  font-weight: normal;
  font-size: 0.8125rem;
}
.currentPrice__1yIn {
  font-size: 1rem;
}
.defaultColor__1NL9 {
  color: #2A2D32;
}
.moneyView__2HPx {
  display: inline-block;
}
.tieredPricingLabel__1Jyv, .groupPricingLabel__2cT5 {
  font-size: 0.8125rem;
  margin-bottom: 0.5625rem;
}
.title__3akh strong{
  color:#2a2d32
}
.starRating__2s-H i{
  color:#ffb700;
}
.clickable:hover .title__3akh {
  text-decoration: underline;
}
.inspiration.clickable:hover .imageContainer{
  box-shadow: 0 4px 4px rgba(0,0,0,.2);
}
.section-bg2{
  background-color:#F5EAEA;
}

/*--------------------------------------------------------------
# Testimoni Home
--------------------------------------------------------------*/
figure.snip1157 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1157 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
}
figure.snip1157 blockquote {
  display: block;
  border-radius: 0px 0px 8px 8px;
  position: relative;
  background-color: #fafafa;
  padding: 25px 50px 30px 50px;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}
figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1157 blockquote:before {
  top: 25px;
  left: 20px;
}
figure.snip1157 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}
figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fafafa;
  margin: 0;
  position: absolute;
}
figure.snip1157 .author {
  position: absolute;
  bottom: 30px;
  padding: 0 10px 0 70px;
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
figure.snip1157 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
  color:#2a2d32;
}
figure.snip1157 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}
.destinations .hot-destinations_link:focus {
  background-color: #f5f5f5;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  color: #fff;
  display: block;
  height: 74px;
  overflow: hidden;
  position: relative;
  width: 130px;
}
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion {
  background: transparent;
  color: #333;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  padding: 25px 0;
  border-bottom: 1px solid #f4f4f4;
}

.active, .accordion:hover span{
  color: #4090e5;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq__item {
  background: #fff;
  box-shadow: 0 2px 3px rgba(0,0,0,0.09);
  border-radius: 3px;
}
.title__primary {
  margin: 0;
  line-height: 1.333em;
  font-size: 2.000em;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
}
.title--small .title__primary {
  font-size: 1.333em;
}
.section-title2 {
  padding-top: 25px !important;
}
.title--decoration-bottom-center:after {
  content: ' ';
  display: block;
  background: #47a0ff;
  position: absolute;
  height: 5px;
  width: 30px;
  bottom: -1px;
  left: 50%;
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  transform: translate(-50%,0);
  width: 50px;
}
.padding-left {
  padding-left: 50px;
}
.padding-right {
  padding-right: 50px;
}

@media (max-width: 767px){
  .padding-left {
      padding-left: 30px;
  }
  .padding-right {
    padding-right: 30px;
  }
}

.accordion i {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 100%;
  /* background: #47a0ff; */
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}

.accordion i:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  color: #000;
  font-size: 1.333em;
}
.accordion i:after {
  content: " ";
  display: block;
  width: 43px;
  height: 43px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  border: 2px dotted #fff;
  border-radius: 100%;
  opacity: 0.5;
}

.faq__item .active i:before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
}

.faq__item .active  i {
  /* background: #ff47a0; */
}
.accordion span{
  padding-left:60px;
  display: block;
  padding: 10px 0 10px 60px;
  color: #333;
  font-size: 1.067em;
  line-height: 27px;
  
  font-weight: 700;
  font-style: normal;
}

@media(max-width:1400px){
  .destinations .list-destination ul {
    width: 435px;
  }
}
/*--------------------------------------------------------------
#  Detail Package
--------------------------------------------------------------*/
.availability_wrapper{
  padding: 1rem;
  background: #F5F5F5;
  /* height: 100%; */
  /* position: relative;
  z-index: 10; */
  margin: 0 -1rem;
}
.title_price{
  
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.25rem;
}
.fromPrice{
  font-size: 1.125rem;
  font-weight: normal;
}
.moneyView{
  font-size: 1.5rem;
  color:#2A2D32;
}
.tieredPricing__1oxi {
  font-size: 0.8125rem;
  color: #585C63;
  margin: 0 0 0.5rem 0;
}
.searchButton{
  align-self: flex-end;
  margin-top: 1rem;
}
.availability_search_button{
  outline: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  border: 1px solid;
  border-radius: 4px;
  display: inline-block;
  width: auto;
  flex-grow: 0;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 2.75rem;
  max-height: 2.75rem;
  padding: 0.5625rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background: #FF5C01;
  border-color: #FF5C01;
  width: 100%;

}
.searchButton:hover .availability_search_button{
  color: #fff;
  background: #000;
  border-color: #000;
}
.rnplMessageWrapper__2cJ3{
  margin-top: 1.5rem;
}
.rnplMessageHeader__6hHA {
  font-weight: 600;
}
.rnplMessageHeader__6hHA, .rnplMessage__3rn7{
  color: #585C63;
  font-size: 0.875rem;
  line-height: 1.5;
}
.rnplMessage__3rn7 {
  margin-top: 0.25rem;
}
.title__1Wwg{
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}
.lowestPriceLink__1ime{
  color: #2A2D32;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  line-height: 1.5;
  font-size: 0.875rem;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
.lowestPriceLink__1ime:hover {
  text-decoration: underline;
}
.w-100{
  width:100%;
}
.productAttributesList__Hfxy {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 1rem 0;
  margin: 1rem 0.5rem;
  border-bottom: 1px solid #DFE0E2;
  border-top: 1px solid #DFE0E2;
  width: 100%;
}

@media screen and (min-width: 768px){
  .productAttributesList__Hfxy {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px){
  .productAttributesList__Hfxy {
    margin: 0;
  }
}
.item__3eVq {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 1rem;
  margin-right: 1.5rem;
  margin-top: 1rem;
  line-height: 1.2rem;
}
.availability_wrapper{
  margin-bottom: 20px;
}
@media(min-width:1024px){
  .availability_wrapper{
    margin: 0;
    padding: 1.5rem;
    min-height: 37.7rem;
    border-radius: 0.5rem;
    margin-bottom: 20px;
  }
}

@media(min-width:1400px){
  .availability_wrapper{
    min-height: 43.6rem;
  }
}
.title__1W2{
  margin: 3rem 0 1.5rem 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.title__2FZy {
  flex: 1 0 auto;
  font-weight: 600;
}

.input-container {
  display: -ms-flexbox; 
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.input-container  .icon {
  padding: 10px;
  color: #2A2D32;
  min-width: 50px;
  text-align: center;
  border: 1px solid #B0B2B5;
  border-right:0px;
  height: 46px;
  background-color:#fff;
  padding-top: 10px;
  font-size: 20px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #B0B2B5;
  border-left: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 46px;
}

.input-field:focus {
  border: 2px solid dodgerblue;
}

.iconWrap__37q6 {
  margin-right: 0.625rem;
  width: 1.25rem;
}
.icon__3eMq {
  fill: #008768;
  vertical-align: middle;
}
.wishlistAndFooterWrapper__3BQp {
  align-items: end;
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
}
.stickyFooter__c4-G {
  width: 100%;
  background: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: max(0rem, env(safe-area-inset-left, 0rem));
  padding-right: max(0rem, env(safe-area-inset-right, 0rem));
  box-shadow: 0 0 0.5rem 0 rgba(0,0,0,.5);
}
.flatpickr-calendar{
  top: 10.5% !important;
}
.header-section__rating__link{
  color:#F9D949
}
.header-section__content{
  margin:1rem 0;
}
.header-section__title{
  margin-bottom:1rem;
}
.jumlah_peserta:hover{
  cursor:pointer;
}
.modal_traveler .input-row {
  display: flex;
}
.modal_traveler .input-row:last-child {
  border-bottom: 0;
}
.modal_traveler .title {
  margin-right: var(--space-8);
}
.modal_traveler .label {
  margin-bottom: var(--space-1);
  font-weight: bold;
  font-size:14px;
}
.modal_traveler .description {
  color: var(--color-gray-600);
  font-size:12px;
}
.modal_traveler .input {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.input-row .input button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #FF5C01;
  border-radius: var(--round);
  background-color: var(--color-white);
}
.input-row .input button:hover {
  cursor: pointer;
}
.input-row .input button:focus {
  outline: none;
  /* box-shadow: var(--shadow-focus); */
}
.input-row .input button[disabled] {
  opacity: var(--opacity-50);
  pointer-events: none;
}
.input-row .input button:active {
  /* background-color: var(--color-blue-300); */
}

.modal_traveler .number {
  font-size: 14px;
  min-width: var(--space-12);
  text-align: center;
  font-weight:bold;
}
.modal_traveler .icon {
  user-select: none;
}
.modal_traveler .dim {
  color: var(--color-gray-400);
}
.modal_traveler{
  background-color:#fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: absolute;
  width: 100%;
  top: 46px;
  box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,.1);
  display:none;
}
.modal_traveler button{
  color:#FF5C01;
}
.applyBtn {
	background-color:#FF5C01;
	border-radius:3px;
	border:1px solid #FF5C01;
	display:inline-block;
	cursor:pointer;
	color:#fff !important;
	font-size:14px;
	padding:9px 23px;
	text-decoration:none;
  font-weight:bold;
}
.applyBtn:hover {
	background-color:#000;
  color:white;
  border-color:white
}
.applyBtn:active {
	position:relative;
	top:1px;
}
.input-field:focus {
  border: 1px solid #B0B2B5;
  border-left:none;
}
@media(max-width:1400px){
  .modal_traveler .title {
    margin-right: 5px;
  }
  .modal_traveler .number {
    min-width: 25px;
  }
}
.show_avail{
  border: 1px solid #DFE0E2;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.revo-button{
  background-color:#FF5C01;
	border-radius:3px;
	border:1px solid #FF5C01;
	display:inline-block;
	cursor:pointer;
	color:#fff !important;
	font-size:14px;
	padding:9px 23px;
	text-decoration:none;
  font-weight:bold;
}
.blocky-left{
  border-left: 1px solid #DFE0E2;
}
#avail-total-price{
  font-size:16px;
  color:#2a2d32
}
#avail-sub-price{
  font-size:14px;
  color:#2a2d32
}
#avail-title{
  font-size:18px;
  font-weight:bold;
}
#avail-date{
  font-size:16px;
  color:#2a2d32
}
.itineraryItems__Aane {
  margin: 2rem 0 1rem;
}
@media screen and (min-width: 768px){
  .itineraryItems__Aane {
    margin: 1rem 0;
  }
}
.itineraryStop__3z3y {
  background: linear-gradient(90deg, white 0%, white 16px, black 16px, black 18px, white 18px);
  display: flex;
  padding-bottom: 1.5rem;
}
.stopNumber__cjRp {
  background-color: #2A2D32;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 0.875rem;
  flex: 0 0 auto;
  line-height: 2rem;
  height: 2.25rem;
  width: 2.25rem;
  text-align: center;
  margin-right: 1rem;
}
.details__3Vov {
  font-size: 1rem;
}
.stopName__1zV7 {
  font-weight: 600;
  margin: 0.25rem 0 0.5rem 0;
}
.itemAttributes__Qsrr {
  color: #585C63;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.travellerGalleryWrapper__38n3 {
  margin: 0 0 1.5rem 0;
  overflow: hidden;
}
.travellerGallery__1yjJ {
  display: grid;
  height: 28.4375rem;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-gap: 8px;
}
@media screen and (min-width: 768px){
  .travellerGallery__1yjJ {
    grid-template-columns: repeat(4, 0.25fr);
    grid-template-rows: .55fr .45fr;
    height: 20rem;
  }
}
.imageContainer__axWu {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  min-width: 100%;
  min-height: 100%;
}
.imageContainer__axWu:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
@media screen and (min-width: 768px){
  .imageContainer__axWu:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
.image__1F1Z {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.seeMoreOverlay__38Ux {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.6);
  pointer-events: none;
}
.seeAllArrow__2rS0 {
  stroke: #fff;
  margin-bottom: 0.75rem;
}
#bookdialog-container {
  scroll-margin: 90px;
}
.seeMoreOverlay{
  display: flex;
  align-items: center;
  border-radius: 1rem;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*--------------------------------------------------------------
#  Form Booking
--------------------------------------------------------------*/
.container__3RER {
  padding: 1.5rem 1rem 3.5rem;
  border-bottom: 1px solid #DFE0E2;
}
@media screen and (min-width: 768px){
  .container__3RER {
    border: 1px solid #FF5C01;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem;
    display: block;
  }
}
.container__3RER:last-child {
  border: 0;
}
@media screen and (min-width: 768px){
  .container__3RER:last-child {
    border: 1px solid #FF5C01;
  }
}
.titleContainer__1sC5 {
  margin-bottom: 1.5rem;
}
.title__1Wwg {
  line-height: 1.2;
  display: block;
}
.title4__AH0S {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px){
  .title4__AH0S {
    font-size: 1.25rem;
  }

}
.container__q6y1 {
  display: flex;
  align-items: center;
}
.iconContainer__1izA {
  display: flex;
  margin-right: 0.5rem;
  margin-bottom: 0.125rem;
}
.subheading__1g0q {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.formInput__2IHK {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 1rem;
}
.withLabel__140n {
  margin-bottom: 0.5rem;
}
.inputLabel__276A {
  color: #2A2D32;
  font-size: 1rem;
}
.textInput__3ljY {
  outline: none;
  flex-grow: 1;
  color: #2A2D32;
  background-color: #fff;
  background-clip: padding-box;
  -webkit-appearance: none;
  border: 1px solid #B0B2B5;
  border-radius: 4px;
  color: #2A2D32;
  -webkit-text-fill-color: v#2A2D32;
  width: 100%;
  max-width: 100%;
}
.textInput__3ljY.md__1Wdq {
  min-height: 2.75rem;
  max-height: 2.75rem;
  padding: 0.5625rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
textarea.textInput__3ljY.md__1Wdq {
  min-height: 4.75rem;
  max-height: unset;
}
.textInput__3ljY:hover {
  background-color: #FFFFFF;
}
.container__2XoA {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #DFE0E2;
  color: #585C63;
  display: none;
}
@media screen and (min-width: 768px){
  .container__2XoA {
    border: 1px solid #DFE0E2;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem;
    display: block;
  }
}
.container__2XoA:last-child {
  border: 0;
}
@media screen and (min-width: 768px){
  .container__2XoA:last-child {
    border: 1px solid #DFE0E2;
  }
}

.container__qcyS {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.05);
  padding: 1.5rem 1.5rem 2rem;
}
.container__i2F7 {
  position: relative;
}
.headerContainer__2qUH {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.headerContainer__2qUH>:first-child {
  display: flex;
}
.image__3r17 {
  border-radius: 0.25rem;
  object-fit: cover;
}
.titleContainer__1_0w {
  margin: 0 0.75rem;
}
.title6__28O- {
  font-size: .875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px){
  .title6__28O- {
    font-size: 1rem;
  }
}
.title__2NjH {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 50px;
  line-height: 1.5;
  padding-top: 0;
}
.price__1V6m {
  line-height: 1.5rem;
  font-size: 0.875rem;
}
.defaultColor__1NL9 {
  color: #2A2D32;
}
.moneyView__2HPx {
  display: inline-block;
}
.list__3uue {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.row__2P99 {
  display: flex;
  margin: 0.25rem 0;
  align-items: flex-start;
}
.row__2P99>:first-child {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  min-width: 1rem;
}
.person__10wY {
  color: #FF5C01;
}
.icon__3A1i {
  fill: currentColor;
}
small {
  font-size: 0.875rem;
  font-weight: normal;
}
.total__1j3M {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.totalValue__55Wl {
  font-size: 1.25rem;
}
.defaultColor__1NL9 {
  color: #2A2D32;
}
.moneyView__2HPx {
  display: inline-block;
}
.calendar__2kW4 {
  color: #FF5C01;
}
.titleContainer__1Ksc {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.5rem;
}
.link__WYUw {
  color: #2A2D32;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  line-height: 1.5;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.link__WYUw:hover {
    text-decoration: underline;
}
.link__WYUw:hover {
    color: #2A2D32;
}
.container__2sPS {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #DFE0E2;
  color: #585C63;
  display: none;
}
@media screen and (min-width: 768px){
  .container__2sPS {
    border: 1px solid #DFE0E2;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem;
    display: block;
  }
}
.container__2sPS:last-child {
  border: 0;
}
@media screen and (min-width: 768px){
  .container__2sPS:last-child {
    border: 1px solid #DFE0E2;
  }
}
.nameContainer__1NQJ {
  margin-bottom: 1rem;
}
.grey-right{
  background-color:#F5F5F5;
  padding-top:100px;
}
.pitop{
  padding-top:80px;
}
.cnumber {
  border-radius: 50%;
  background: #fff;
  border: 2px solid #444;
  color: #444;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.cnumber.active{
  background: #444;
  border: 2px solid #444;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 22px;
}

.iconWrap__37q6 {
  margin-right: 1rem;
}
.slider-home{
  width:100%;
}
.slider-home img {
  width:100%;
}
@media(max-width:768px){
  .wrap-content-slider {
    top: 10%;
    left: 5%;
    width: 90%;
  }

  figure.snip1157 blockquote {
    margin: 0;
  }
  .breadcrumbs ol li:last-child {
    display:none;
  }

  .imageWrapper img {
    height: auto !important;
  }

  .thumb-box {
    width: 100% !important;
  }

  .thumb-box .thumbs {
    flex-direction: row !important;
    gap: 5px;
    margin-top: 10px;
  }

  .header-section__title {
    margin-top: 10px;
  }

  .slider-home{
    width: auto;
    height: 40vh;
  }
  .slider-home {
    height: 40vh;
  }
  .section-banner__title {
    font-size: 24px;
  }
  .form-search{
    margin-top:20px;
  }

  .imageWrapper {
    max-height:255px;
    overflow:hidden;
  }
  .slider-home img {
        width:auto;
        height:100%;
    }
}

.seeMoreOverlay:hover {
  display: none;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #eceeef;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8;
}

.table-hover .table-success:hover {
  background-color: #d0e9c6;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d0e9c6;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7;
}

.table-hover .table-info:hover {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
  background-color: #faf2cc;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #faf2cc;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede;
}

.table-hover .table-danger:hover {
  background-color: #ebcccc;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ebcccc;
}

.thead-inverse th {
  color: #fff;
  background-color: #292b2c;
}

.thead-default th {
  color: #464a4c;
  background-color: #eceeef;
}

.table-inverse {
  color: #fff;
  background-color: #292b2c;
}

.table-inverse th,
.table-inverse td,
.table-inverse thead th {
  border-color: #fff;
}

.table-inverse.table-bordered {
  border: 0;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive.table-bordered {
  border: 0;
}
.kutika{
    display:none;
}
@media(max-width:768px){
    .kutika{
        display:block;
    }
    
    .list-destination{
        display:none;
    }
}
.bg-success-custom {
    background: #1B998B;
}
.bg-danger-custom {
    background: #A71D31;
}
.text-white-custom {
    color: white;
}
figure.snip1157.custom {
    min-width: 100%;
}
figure.snip1157.custom .review-img {
    width: 100% !important;
    aspect-ratio: 4/2;
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    height: auto;
    border-radius: unset;
    margin: 0;
}
figure.snip1157.custom blockquote {
    font-size: 14px;
}
figure.snip1157.custom .author {
    position: relative;
    bottom: unset;
    transform: unset;
    -webkit-transform: unset;
    padding: 0;
    margin-top: 40px;
}
.reviewSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}