:root {
    /* Site Properties */
    --background-color: #fff;
    --main-color: #002792;
    --alternate-color: #001245;
    --main-text-color: #000;
    --soft-text-color: #444;
    --softer-text-color: #666;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --alternate-transition: 0.4s;
    --box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    --border-radius: 0;
    --small-border-radius: 0;
    --border-color: rgba(0, 0, 0, 0.1);
    --transparent-color: rgba(0, 0, 0, 0.2);
    --transparent-color-2: rgba(0, 0, 0, 0.1);

    /* Font Properties */
    --font-size: 14px;
    --mobile-font-size: 12px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: "Hind Siliguri", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --placeholder-color: #888;
    --textarea-padding: 10px;
    --button-color: #002792;
    --button-hover-color: #001245;
    --button-padding: 0 20px;
    --button-height: 40px;
    --button-border: none;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: var(--font-family);
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: #000;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: var(--placeholder-color);
}

.nice-select {
    clear: unset;
    float: unset;
}

.nice-select:after {
    transition: none !important;
}

.nice-select .list {
    margin: 0;
    width: 100%;
    border-radius: 2px;
    border: solid 1px var(--border-color);
    box-shadow: none;
    transform: none !important;
    transition: unset !important;
    z-index: 20;
    max-height: 200px;
    overflow-y: auto;
}

.nice-select .option {
    padding: 10px;
    min-height: unset;
    white-space: nowrap;
    font-size: 0.8rem;
    line-height: unset;
    border-bottom: solid 1px var(--border-color-2);
    transition: var(--main-transition) ease 0s;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background: #eee;
}

.nice-select .option.selected {
    font-weight: var(--font-medium);
    background: #eee;
}

.panel-text {
    font-size: 1rem;
    color: var(--soft-text-color);
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video,
.panel-text table {
    max-width: 100%;
}

.panel-text table {
    width: 100% !important;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    min-width: unset !important;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: none;
    padding: 0;
}

.row {
    margin-left: calc(var(--column-gap) * -1);
    margin-right: calc(var(--column-gap) * -1);
}

.row > [class*="col-"],
.container,
.container-fluid {
    padding-left: var(--column-gap);
    padding-right: var(--column-gap);
}

.smt {
    margin-top: var(--section-gap);
}

.smr {
    margin-right: var(--section-gap);
}

.smb {
    margin-bottom: var(--section-gap);
}

.sml {
    margin-left: var(--section-gap);
}

.dmt {
    margin-top: var(--main-gap);
}

.dmr {
    margin-right: var(--main-gap);
}

.dmb {
    margin-bottom: var(--main-gap);
}

.dml {
    margin-left: var(--main-gap);
}

.dmth {
    margin-top: calc(var(--main-gap) / 2);
}

.dmrh {
    margin-right: calc(var(--main-gap) / 2);
}

.dmbh {
    margin-bottom: calc(var(--main-gap) / 2);
}

.dmlh {
    margin-left: calc(var(--main-gap) / 2);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-nav > .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: none;
    z-index: 99;
}

.mobile-nav > .mobile-nav-content > .mobile-nav-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: var(--main-gap);
    pointer-events: all;
    overflow-y: auto;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav.active > .mobile-nav-content > .mobile-nav-inner {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-menu-links > .item > a {
    position: relative;
    display: block;
    font-size: 1rem;
    color: var(--main-text-color) !important;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
}

.mobile-menu-links > .item > .inner-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    background: #eee;
    margin-top: -10px;
    margin-bottom: 10px;
}

.mobile-menu-links > .item.active > .inner-menu {
    display: flex;
}

.mobile-menu-links > .item > .inner-menu > a {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color) !important;
}

.mobile-menu-links > .item > .inner-menu > a:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-links > .item > a > i {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile-menu-links > .item.active > a > i:before {
    content: "\F0140";
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: var(--button-border);
    background: var(--button-color);
    padding: var(--button-padding);
    height: var(--button-height);
    border-radius: var(--border-radius);
    overflow: hidden;
    white-space: nowrap;
}

.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}

.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: var(--button-hover-color);
    transition: var(--main-transition) ease 0s;
}

.main-btn:hover:before {
    left: 0;
}

.main-btn > span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    position: relative;
    z-index: 10;
    color: var(--main-text-color);
    color: #fff;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    transition: var(--main-transition) ease 0s;
}

.main-btn.small > span {
    font-size: 0.8rem;
    text-transform: unset;
}

.main-btn > span > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
    border-radius: var(--small-border-radius);
    background: var(--transparent-color);
    transition: var(--main-transition) ease 0s;
}

.main-btn.small > span > i {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

.main-btn.white-line {
    border: solid 1px #fff;
    background: none;
}

.main-btn.white-line > span {
    color: #fff;
}

.main-btn.white-line:before {
    background: #fff;
}

.main-btn.white-line:hover > span {
    color: var(--main-color) !important;
}

.main-btn.line {
    border: solid 1px var(--main-color);
    background: none;
}

.main-btn.line > span {
    color: var(--main-color) !important;
}

.main-btn.line:before {
    background: var(--main-color);
}

.main-btn.line:hover > span {
    color: #fff !important;
}

.nav-top {
    padding: 20px 0;
    background: var(--alternate-color);
}

.nt-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nt-flex > .left,
.nt-flex > .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-contact,
.header-caption {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    color: #aaa !important;
    transition: var(--main-transition) ease 0s;
}

.nt-contact:hover {
    color: #fff !important;
}

.nt-contact:not(:last-child),
.header-caption:not(:last-child) {
    margin-right: 20px;
}

.nt-contact > i {
    display: block;
    min-width: 20px;
    text-align: center;
    margin-right: 5px;
}

.nt-contact > span {
    display: block;
}

.main-nav {
    display: block;
    padding: 0;
    background: linear-gradient(
        -90deg,
        var(--main-color) calc((100% - 1140px) / 2 + 30px),
        #fff calc((100% - 1140px) / 2)
    );
    position: relative;
    z-index: 999;
}

.main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.main-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.main-nav-flex > .left,
.main-nav-flex > .right {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.site-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}

.site-logo img {
    width: 240px;
}

.slider-banner {
    display: block;
    width: 100%;
    position: relative;
    padding-top: calc(700 / 1920 * 100%);
}

.slider-banner > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 10;
    pointer-events: none;
}

.main-slider-container {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-slider-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
    padding: 0;
}

.main-slider-buttons > div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #fff;
    border: none;
    pointer-events: all;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--main-transition) ease 0s;
}

.main-slider-buttons > div:hover {
    background: rgba(0, 0, 0, 0.7);
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.nav-links > .item {
    display: block;
    position: relative;
}

.nav-links > .item:not(:last-child):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%) rotate(20deg);
    height: 15px;
    width: 1px;
    background: var(--main-color);
    pointer-events: none;
}

.nav-links > .item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: var(--main-transition) ease 0s;
}

.nav-links > .item.active:after,
.nav-links > .item:hover:after {
    width: calc(100% - 20px);
}

.nav-links > .item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: #888 !important;
    transition: var(--main-transition) ease 0s;
}

.nav-links > .item.active > a,
.nav-links > .item:hover > a {
    color: var(--main-text-color) !important;
}

.nav-links > .item > .inner-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 5px 0;
    box-shadow: var(--box-shadow);
    border-bottom: solid 2px var(--main-color);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--main-transition) ease 0s;
    margin-left: 5px;
}

.nav-links > .item > .inner-menu > a {
    display: block;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--soft-text-color) !important;
    padding: 5px 15px;
}

.nav-links > .item > .inner-menu > a:hover {
    background: #eee;
    color: var(--main-text-color) !important;
}

.nav-links > .item:hover > .inner-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.nav-colored-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    padding-left: 20px;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: #fff !important;
    background: var(--main-color);
    transform: skew(-20deg);
    position: relative;
}

.nav-colored-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% + 20px);
    transform: translate(-50%, 0) skew(20deg);
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--main-transition) ease 0s;
}

.nav-colored-link:hover:after {
    width: calc(100% - 20px);
}

.nav-colored-link > span {
    transform: skew(20deg);
}

.nt-lang-dd {
    display: block;
    position: relative;
}

.nt-lang-dd > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-lang-dd > a > i {
    display: block;
    font-size: 1.1rem;
    margin-right: 5px;
}

.nt-lang-dd > a > span {
    display: block;
    font-size: 1rem;
    color: #aaa;
    transition: var(--main-transition) ease 0s;
}

.nt-lang-dd > a:hover > span,
.nt-lang-dd > a[aria-expanded="true"] > span {
    color: #fff;
}

.nt-lang-dd > .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: unset !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 5px 0;
    background: #fff;
    border: none;
    box-shadow: var(--box-shadow);
}

.nt-lang-dd > .dropdown-menu > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    transition: var(--main-transition) ease 0s;
}

.nt-lang-dd > .dropdown-menu > a:hover {
    background: #eee;
}

.nt-lang-dd > .dropdown-menu > a > i {
    display: block;
    font-size: 1.1rem;
    margin-right: 5px;
}

.nt-lang-dd > .dropdown-menu > a > span {
    display: block;
    font-size: 1rem;
    color: var(--main-text-color);
}

.slider-desc {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.slider-desc-inner {
    display: block;
    pointer-events: all;
}

.slider-desc-inner > .slide-caption {
    display: block;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: var(--font-medium);
}

.slider-desc-inner > .slide-title {
    display: block;
    font-size: 5rem;
    color: #fff;
    letter-spacing: 2px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    margin: 0;
}

.slider-desc-inner > .slide-desc {
    display: block;
    font-size: 1.4rem;
    color: #fff;
}

.slider-bottom-destinations {
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.slider-bottom-destinations > .row {
    margin-left: 0;
    margin-right: 0;
}

.slider-bottom-destinations > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.sbd-item {
    display: block;
    position: relative;
    width: 100%;
}

.sbd-item > .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.sbd-item > .body {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: solid 1px #666;
    transition: var(--alternate-transition) ease 0s;
}

.sbd-item:hover > .body {
    transform: translate(0, calc(-100% + 60px));
}

.sbd-item > .body > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720 / 1280 * 100%);
}

.sbd-item > .body > .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: var(--alternate-transition) ease 0s;
}

.sbd-item:hover > .body > .img:before {
    background: rgba(0, 0, 0, 0.4);
}

.sbd-item > .body > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sbd-item > .head .location {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
}

.sbd-item > .head .title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.sbd-item > .body > .content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--alternate-transition) ease 0s;
    z-index: 10;
    padding: 15px;
}

.sbd-item:hover > .body > .content {
    opacity: 1;
}

.sbd-item > .body > .content > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.main-caption {
    display: block;
    font-size: 0.9rem;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: var(--font-medium);
    margin-bottom: 5px;

    display: none;
}

.main-caption.white {
    color: #eee;
}

.main-desc {
    display: block;
    font-size: 1rem;
    color: #aaa;
    margin-bottom: var(--main-gap);

    display: none;
}

.main-title {
    display: block;
    font-size: 2.2rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--main-color);
}

.main-title.small {
    font-size: 1.4rem;
}

.main-title.no-border {
    border: none;
}

.main-title > a:hover {
    text-decoration: underline !important;
}

.main-title.white {
    color: #fff;
    border-bottom-color: #bbb;
}

.region-item {
    display: block;
    width: 100%;
    position: relative;
    border: solid 1px #666;
}

.region-item.inpage {
    margin-bottom: var(--main-gap);
}

.region-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
}

.region-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--alternate-transition) ease 0s;
}

.region-item:hover > .img > img {
    transform: scale(1.1);
}

.region-item > .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: var(--alternate-transition) ease 0s;
}

.full-destinations > .row {
    margin-left: 0;
    margin-right: 0;
}

.full-destinations > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.region-item > .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 15px;
}

.region-item > .content > .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;
    z-index: 10;
}

.region-item > .content > .bottom .title {
    display: block;
    font-size: 1.6rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.region-item > .content > .bottom .location {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
}

.region-item > .content > .top .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 1rem;
    color: #fff;
    opacity: 0;
    transition: var(--main-transition);
}

.region-item:hover > .content > .top .desc {
    opacity: 1;
}

.region-item:hover > .content > .bottom .main-btn:before {
    left: 0;
}

.region-item:hover > .content > .bottom .main-btn > span {
    color: var(--main-color);
}

.badge-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 10px;
}

.badge-item > i {
    display: block;
    font-size: 2.2rem;
    min-width: 34px;
    margin-right: 10px;
    text-align: center;
    color: #aaa;
}

.badge-item > div {
    display: block;
}

.badge-item > div > .count {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.badge-item > div > .title {
    display: block;
    font-size: 0.9rem;
    color: var(--softer-text-color);
    margin-top: -5px;
}

.badges-row {
    margin-left: 0;
    margin-right: 0;
}

.badges-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.badges-row > [class*="col-"]:not(:last-child) > .badge-item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60px;
    background: var(--main-color);
    transform: translate(0, -50%) rotate(20deg);
}

.banner-section {
    display: block;
    padding: var(--section-gap) 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.banner-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
}

.banner-section-inner {
    display: block;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.main-page-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    font-size: 1.1rem;
    color: var(--soft-text-color);
}

.main-page-text.white {
    color: #ddd;
}

.yt-iframe {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(9 / 16 * 100%);
}

.yt-iframe > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.title-icon > i {
    font-size: 8rem;
    color: #eee;
}

.title-icon.light > i {
    opacity: 0.3;
}

.gray-section {
    display: block;
    padding: var(--section-gap) 0;
    background: #fafafa;
    position: relative;
}

.hotel-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row-reverse;
    background: #fff;
    border: solid 1px #e5e5e5;
    overflow: hidden;
    margin-bottom: var(--main-gap);
}

.hotel-item:hover {
    box-shadow: var(--box-shadow);
}

.hotel-item > .left {
    min-width: 60%;
    width: 60%;
}

.hotel-item > .right {
    min-width: 100%;
    width: 100%;
    margin-right: -60%;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    transition: var(--main-transition) ease 0s;
}

.hotel-item .content {
    display: block;
    padding: 20px 25px;
    background: #fff;
    height: 100%;
    position: relative;
}

.hotel-item .content > .title {
    display: block;
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 5px;
}

.hotel-item .content > .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--soft-text-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.hotel-item .content > .location > i {
    margin-right: 5px;
}

.hotel-item .content > .title > a {
    color: var(--main-text-color) !important;
}

.hotel-item .content > .title > a:hover {
    text-decoration: underline !important;
}

.hotel-item .content > .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.hotel-item .content > .stars > i {
    display: block;
    font-size: 1rem;
    color: orange;
}

.hotel-item .content > .stars > i:not(:last-child) {
    margin-right: 5px;
}

.hotel-item .content > .price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.hotel-item .content > .price > span {
    display: block;
    font-size: 1.8rem;
    color: var(--main--text-color);
}

.hotel-item .content > .price > small {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-left: 5px;
}

.hotel-item .content > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1rem;
    color: var(--softer-text-color);
    margin-bottom: 20px;
}

.hotel-item .img {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: calc(420 / 1280 * 100%);
    transition: var(--main-transition) ease 0s;
}

.hotel-item > .right:hover {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
    margin-right: 0;
}

.hotel-item .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-item .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, #000 80%);
    opacity: 0.7;
    z-index: 2;
}

.hotel-item .img > .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 10;
    font-size: 1rem;
    color: #fff;
    transition: var(--main-transition) ease 0s;
}

.hotel-item .img > .location > i {
    margin-right: 5px;
}

.hotel-item .img:hover > .location {
    transform: translate(-50%, 0);
    left: 50%;
}

.comment-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: solid 1px #e5e5e5;
}

.comment-item.inpage {
    align-items: flex-start;
    text-align: left;
    margin-bottom: var(--main-gap);
}

.comment-item > .avatar {
    display: block;
    min-width: 80px;
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    background: var(--main-color);
    border: solid 2px #fff;
    outline: solid 2px var(--main-color) !important;
    overflow: hidden;
    margin-bottom: 20px;
}

.comment-item > .avatar > i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: #fff;
    margin-top: 18px;
}

.comment-item > .name {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    margin-bottom: 0;
}

.comment-item > .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.comment-item > .stars > i {
    display: block;
    font-size: 1rem;
    color: #ccc;
}

.comment-item > .stars > i:not(:last-child) {
    margin-right: 5px;
}

.comment-item > .stars > i.active {
    color: orange;
}

.comment-item > .desc {
    display: block;
    font-size: 1rem;
    color: var(--softer-text-color);
    margin-bottom: 20px;
}

.comment-item > .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--soft-text-color);
}

.comment-item > .date > i {
    margin-right: 5px;
}

.comment-item.limited > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.comment-slider .comment-item.limited > .desc {
    height: 40px;
}

.comment-item > .link {
    display: block;
    font-size: 0.8rem;
    color: var(--soft-text-color) !important;
    text-transform: uppercase;
    font-weight: var(--font-medium);
    transition: var(--main-transition) ease 0s;
    padding-bottom: 5px;
    position: relative;
}

.comment-item > .link:hover {
    color: #aaa !important;
}

.comment-item > .link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30px;
    height: 2px;
    background: var(--main-color);
    pointer-events: none;
    transition: var(--main-transition) ease 0s;
}

.comment-item > .link:hover:after {
    width: 70px;
}

.comment-slider-container {
    display: block;
    position: relative;
}

.comment-slider-buttons {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: calc(100% + 100px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.comment-slider-buttons > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    pointer-events: all;
    color: #fff;
    min-width: 40px;
    height: 40px;
    width: 40px;
    font-size: 2rem;
    cursor: pointer;
}

.gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    margin-bottom: var(--main-gap);
}

.gal-item.wide {
    padding-top: calc(3 / 8 * 100% - 8px);
}

.gal-item > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: 10;
    opacity: 0;
    transition: var(--main-transition);
}

.gal-item:hover:before {
    opacity: 0.3;
}

.gal-item > i {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    z-index: 12;
    opacity: 0;
    transition: var(--main-transition);
}

.gal-item:hover > i {
    opacity: 1;
}

.blog-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    border: solid 1px #e5e5e5;
    margin-bottom: var(--main-gap);
}

.blog-item > .img {
    display: block;
    min-width: 40%;
    width: 40%;
    padding-top: calc(3 / 4 * 40%);
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.blog-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item > .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: calc(100% + 15px);
    height: 100%;
    z-index: 10;
    background: #fff;
    opacity: 0.3;
    transform: skew(-6deg);
    transition: var(--main-transition) ease 0s;
}

.blog-item > .img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: calc(100% + 15px);
    height: 100%;
    z-index: 10;
    background: var(--main-color);
    opacity: 0.3;
    transform: skew(-6deg);
    transition: var(--main-transition) ease 0s;
}

.blog-item > .img:hover:before {
    left: -15px;
    transition: var(--main-transition) ease 0s;
}

.blog-item > .img:hover:after {
    left: -15px;
    transition: var(--main-transition) ease 0.2s;
}

.blog-item > .content {
    padding: 20px 25px;
    width: 60%;
}

.blog-item > .content > .title {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 5px;
}

.blog-item > .content > .title > a {
    color: var(--main-text-color) !important;
}

.blog-item > .content > .title > a:hover {
    text-decoration: underline !important;
}

.blog-item .content > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 1rem;
    color: var(--softer-text-color);
    margin-bottom: 20px;
}

.blog-item .content > .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #aaa;
}

.blog-item .content > .date > i {
    display: block;
    margin-right: 5px;
}

.blog-item .content .link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--soft-text-color) !important;
    text-transform: uppercase;
    font-weight: var(--font-medium);
    position: relative;
}

.blog-item .content .link:hover {
    color: var(--main-color) !important;
}

.blog-item .content .link:hover {
    text-decoration: underline !important;
}

.pattern-section {
    display: block;
    padding: var(--section-gap) 0;
    background-image: url("../img/pattern/01.png");
    background-color: var(--main-color);
}

.form-group {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: var(--main-gap);
}

.form-group > input,
.form-group > textarea,
.form-group > .nice-select {
    display: block;
    width: 100%;
    height: var(--input-height);
    color: var(--input-color);
    border: var(--input-border);
    padding: var(--input-padding);
    font-size: 1rem;
    border-radius: var(--border-radius);
}

.form-group > .nice-select > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-group > textarea {
    height: unset;
    padding: var(--textarea-padding);
    resize: none;
}

.form-group .ctxt {
    display: block;
    text-align: right;
    margin-top: 0;
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.form-group.fg-icon > input {
    padding-left: 40px;
}

.form-group.fg-icon > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 1.2rem;
    transform: translate(0, -50%);
    color: #bbb;
}

.sub-box {
    display: block;
    position: relative;
}

.sub-box > .form-group > input {
    padding-right: calc(var(--input-height) + 10px);
}

.sub-box > .sub-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--input-height);
    height: var(--input-height);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--softer-text-color) !important;
    background: none;
}

.sub-box > .sub-btn:hover {
    color: var(--main-text-color) !important;
}

.ftr-content {
    padding: var(--section-gap) 0;
    padding-bottom: calc(var(--section-gap) - var(--main-gap));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background: #393e46;
}

/* .ftr-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #424D58;
    opacity: 0.9;
} */

.ftr-content-inner {
    display: block;
    position: relative;
    z-index: 10;
}

.ftr-logo {
    display: block;
    margin-bottom: var(--main-gap);
}

.ftr-logo img {
    width: 200px;
    filter: contrast(0) brightness(2);
}

.ftr-motto {
    display: block;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: var(--main-gap);
}

.ftr-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ftr-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    min-width: 34px;
    color: #bbb !important;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--main-transition) ease 0s;
}

.ftr-social > a:hover {
    color: #fff !important;
}

.ftr-title {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #fff;
    position: relative;
}

.ftr-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.ftr-contact {
    display: block;
    margin-bottom: var(--main-gap);
}

.ftr-contact > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-contact > div:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-contact > div > i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #bbb;
    border-radius: 50%;
    border: solid 1px #bbb;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
}

.ftr-contact > div > span,
.ftr-contact > div > a {
    display: block;
    font-size: 0.9rem;
    color: #ddd !important;
}

.ftr-contact > div > a:hover {
    text-decoration: underline !important;
}

.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.ftr-links > a {
    display: block;
    font-size: 0.9rem;
    color: #ddd !important;
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: var(--font-medium);
}

.ftr-links > a:hover {
    text-decoration: underline !important;
}

.ftr-bottom {
    padding: 20px 0;
    background: #222;
}

.ftr-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ftr-copy {
    display: block;
    font-size: 0.8rem;
    color: #fff;
}

.ftr-dev img {
    width: 70px;
    filter: contrast(0.5) brightness(2) grayscale(1);
}

.section-sticker img {
    width: 100%;
    max-width: 300px;
}

.ftr-brands {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ftr-brands > .item {
    display: block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.ftr-brands > .item > img {
    height: 40px;
}

.bcrumb {
    display: block;
    padding: 50px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bcrumb-inner {
    display: block;
    position: relative;
    z-index: 10;
}

.bcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #424d58;
    opacity: 0.9;
}

.bcrumb-title {
    display: block;
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    color: #fff;
}

.bcrumb-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.bcrumb-links > a {
    display: block;
    position: relative;
    font-size: 0.9rem;
    margin-right: 20px;
    color: #fff;
}

.bcrumb-links > a:last-child {
    color: #bbb;
}

.bcrumb-links > a:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(0, -50%) skew(-10deg);
    pointer-events: none;
    height: 15px;
    width: 1px;
    background: #fff;
}

.bcrumb-links > a:hover {
    text-decoration: underline !important;
}

.page-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(420 / 1280 * 100%);
    box-shadow: var(--box-shadow);
}

.page-banner > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-item {
    display: block;
    position: relative;
    margin-bottom: var(--main-gap);
}

.partner-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(1 / 2 * 100%);
    border: solid 1px #e5e5e5;
    background: #fff;
}

.partner-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
}

.partner-item > .title {
    display: block;
    font-size: 0.9rem;
    color: var(--main-text-color);
    text-align: center;
    margin-top: 5px;
}

.partner-item:hover > .img {
    box-shadow: var(--box-shadow);
}

.page-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.page-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    min-width: 34px;
    color: var(--softer-text-color) !important;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--main-transition) ease 0s;
}

.page-social > a:hover {
    color: var(--main-text-color) !important;
}

.page-contact-desc {
    display: block;
    font-size: 1rem;
    color: var(--soft-text-color);
    margin-bottom: var(--main-gap);
}

.page-contacts {
    display: block;
    margin-bottom: var(--main-gap);
}

.page-contacts > .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-contacts > .item:not(:last-child) {
    margin-bottom: 10px;
}

.page-contacts > .item > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    height: 30px;
    border: solid 1px var(--main-color);
    border-radius: 50%;
    margin-right: 5px;
    font-size: 1rem;
    color: var(--main-color);
}

.page-contacts > .item > span,
.page-contacts > .item > a {
    display: block;
    font-size: 1rem;
    color: var(--soft-text-color) !important;
}

.page-contacts > .item > a:hover {
    text-decoration: underline !important;
}

.contact-map-frame {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720 / 1280 * 100%);
    border: solid 1px #e5e5e5;
    background: #fff;
}

.contact-map-frame > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    margin-bottom: 0px;
}

.captcha-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-group > span.error-label {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: darkred;
}

.form-box {
    padding: 20px;
    background: #fafafa;
    border: solid 1px #e5e5e5;
}

.form-stars {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: var(--main-gap);
}

.form-stars input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.form-stars label {
    position: relative;
    cursor: pointer;
    color: #ccc;
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
    padding-right: 5px;
    margin: 0;
}

.form-stars label:hover,
.form-stars label:hover ~ label {
    color: orange;
}

.form-stars input:checked ~ label {
    color: orange;
}

.article-banner {
    display: block;
    width: 100%;
    position: relative;
    border: solid 1px #e5e5e5;
}

.article-banner > img {
    display: block;
    width: 100%;
}

.article-infos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.article-infos > span:not(:last-child) {
    margin-right: 10px;
}

.article-infos > span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--softer-text-color);
}

.article-infos > span > i {
    margin-right: 5px;
}

.related-box {
    display: block;
}

.related-box > .title {
    display: block;
    padding: 10px 15px;
    background: #424d58;
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: var(--font-medium);
    color: #fff;
}

.related-box > .inner {
    display: block;
    border: solid 1px #e5e5e5;
    background: #fff;
    margin-top: -1px;
    padding: 20px;
}

.related-box > .inner > .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: solid 1px #e5e5e5;
    transition: var(--main-transition) ease 0s;
    margin-bottom: var(--main-gap);
}

.related-box > .inner > .item > .img {
    display: block;
    min-width: 100px;
    width: 100px;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100px);
}

.related-box > .inner > .item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.related-box > .inner > .item > .content {
    display: block;
    width: calc(100% - 100px);
    padding: 10px;
}

.related-box > .inner > .item > .content > .title {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: var(--main-transition) ease 0s;
}

.related-box > .inner > .item > .content > .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    color: var(--softer-text-color);
}

.related-box > .inner > .item > .content > .date > i {
    margin-right: 5px;
}

.related-box > .inner > .item:hover > .content > .title {
    color: var(--main-color);
}

.related-box > .inner > .item:hover > .img > img {
    transform: scale(1.1);
}

.related-box > .inner > .item:hover {
    background: #fafafa;
}

.prd-slider-container {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 5px;
}

.prd-slide {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(620 / 1280 * 100%);
}

.prd-slide > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.prd-slide:hover > .img {
    transform: scale(1.1);
    opacity: 0.9;
}

.prd-thumb {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    transform: skew(-20deg);
    cursor: pointer;
}

.prd-thumb > img {
    display: block;
    position: absolute;
    top: 0;
    left: -25px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    object-fit: cover;
    transform: skew(20deg);
    transition: var(--main-transition) ease 0s;
}

.prd-thumb:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: solid 2px #fff;
    outline: solid 4px var(--main-color) !important;
    z-index: 10;
    opacity: 0;
}

.swiper-slide-thumb-active .prd-thumb:before {
    opacity: 1;
}

.prd-thumb:hover > img {
    opacity: 0.9;
    transform: scale(1.1) skew(20deg);
}

.prd-thumbs-slider-container {
    display: block;
    width: calc(100% - 40px - 40px - 10px);
    position: relative;
    user-select: none !important;
}

.prd-thumbs-slider-container > .swiper {
    padding: 0 25px;
}

.prd-thumbs-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

.prd-thumbs-row > .prev,
.prd-thumbs-row > .next {
    display: block;
    background: var(--main-color);
    min-width: 40px;
    width: 40px;
    position: relative;
    color: #fff;
    cursor: pointer;
    z-index: 20;
}

.prd-thumbs-row > .prev > i,
.prd-thumbs-row > .next > i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 10;
}

.prd-thumbs-row > .prev > i {
    margin-left: 10px;
}

.prd-thumbs-row > .next > i {
    margin-left: -10px;
}

.prd-thumbs-row > .prev:before {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: calc(100% + 10px);
    height: 100%;
    transform: skew(-20deg);
    background: var(--main-color);
    cursor: pointer;
}

.prd-thumbs-row > .next:before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: calc(100% + 10px);
    height: 100%;
    transform: skew(-20deg);
    background: var(--main-color);
    cursor: pointer;
}

.page-map-frame {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720 / 1280 * 100%);
    border: solid 1px #e5e5e5;
    background: #fff;
}

.page-map-frame > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-page-infos {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.hotel-page-infos > .star {
    display: block;
    background: var(--main-color);
    padding: 10px 15px;
    margin-right: 10px;
}

.hotel-page-infos > .star > span {
    display: block;
    font-size: 0.8rem;
    color: #eee;
    font-weight: var(--font-medium);
    margin-bottom: -5px;
}

.hotel-page-infos > .star > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hotel-page-infos > .star > div > i {
    display: block;
    font-size: 1.4rem;
    color: orange;
}

.hotel-page-infos > .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
    border: solid 1px #e5e5e5;
}

.hotel-page-infos > .location > i {
    display: block;
    font-size: 1.4rem;
    color: var(--main-color);
    margin-right: 5px;
}

.hotel-page-infos > .location > span {
    display: block;
    font-size: 1.2rem;
    color: var(--soft-text-color);
}

.hotel-page-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 20;
    background: var(--main-color);
    padding: 10px 15px;
    padding-right: 20px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.hotel-page-price > span {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-medium);
    color: #fff;
}

.hotel-page-price > small {
    display: block;
    font-size: 0.9rem;
    color: #ddd;
    margin-left: 5px;
}

.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2px 6px;
    border-radius: var(--small-border-radius);
    font-size: 0.9rem;
    color: #fff;
    font-weight: var(--font-medium);
}

.msg-box > i {
    margin-right: 4px;
}

.msg-box.success {
    background: green;
}

.msg-box.danger {
    background: red;
}

.container-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.container-banner > * {
    position: relative;
    z-index: 20;
}

.container-banner-inner {
    padding: 20px;
}

.container-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
}

.site-popup-content {
    display: block;
    background: #fff;
    padding: 20px;
    width: 100%;
    pointer-events: all;
}

.site-popup-content > .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.site-popup-content > .head > .title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    margin: 0;
}

.site-popup-content > .head > .popup-close {
    display: block;
    color: var(--main-text-color) !important;
    cursor: pointer;
}

.site-popup-content > .head > .popup-close > i {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.site-popup-content > .head {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}