.panel-text,
html {
    font-weight: var(--font-regular);
}
.main-btn:before,
.main-btn > span {
    transition: var(--main-transition) ease 0s;
}
.ftr-logo img {
    filter: contrast(0) brightness(2);
}
.so-icon {
    background-color: #7d7d7d;
}
.so-facebook {
    background-color: #3b5998;
}
.so-twitter {
    background-color: #55acee;
}
.so-instagram {
    background: #33b540;
    background: -moz-linear-gradient(
        45deg,
        #33b540 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    background: -webkit-linear-gradient(
        45deg,
        #33b540 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    background: linear-gradient(
        45deg,
        #33b540 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}
.so-pinterest {
    background-color: #cb2027;
}
.so-linkedin {
    background-color: #0077b5;
}
.so-facebook-messenger {
    background-color: #448aff;
}
.so-youtube {
    background-color: #cc181e;
}
.so-reddit {
    background-color: #ff4500;
}
.so-tumblr {
    background-color: #32506d;
}
.so-digg {
    background-color: #262626;
}
.so-google-plus {
    background-color: #de5446;
}
.so-whatsapp {
    background-color: #25d366;
}
.so-vk {
    background-color: #4c6c91;
}
.so-weibo {
    background-color: #ff9933;
}
.so-odnoklassniki {
    background-color: #d7772d;
}
.so-xing {
    background-color: #1a7576;
}
.so-blogger {
    background-color: #ff8000;
}
.so-flipboard {
    background-color: #ff8000;
}
.so-delicious {
    background-color: #205cc0;
}
.so-weixin {
    background-color: #4ec034;
}
:root {
    --background-color: #fbfbfb;
    --main-color: #2196f3;
    --alternate-color: #1c7ac8;
    --second-color: #21c203;
    --second-alternate-color: #199703;
    --main-text-color: #000;
    --soft-text-color: #222;
    --light-text-color: #444;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --alternate-transition: 0.4s;
    --box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    --border-radius: 2px;
    --small-border-radius: 1px;
    --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-size: 14px;
    --mobile-font-size: 14px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: "Roboto", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #ccc;
    --input-outline: solid 1px #fff;
    --placeholder-color: #888;
    --textarea-padding: 10px;
    --button-color: #2196f3;
    --button-hover-color: #21c203;
    --button-padding: 0 20px;
    --button-height: 40px;
    --button-border: none;
}
body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: var(--font-family);
    font-display: swap;
}
html {
    font-size: var(--font-size);
    color: #000;
}
* {
    text-decoration: none !important;
    outline: 0 !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: 5px 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;
}
.panel-text iframe,
.panel-text img,
.panel-text video {
    max-width: 100%;
}
.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;
}
.mobile-nav,
.mobile-nav-overlay {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
}
.main-slider-buttons,
.slide-desc {
    transform: translate(0, -50%);
    z-index: 20;
}
.main-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 10px !important;
    z-index: 20;
    pointer-events: none;
}
.main-slider-pagination > .swiper-pagination-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    opacity: 1;
    border: solid 1px var(--border-color);
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: #fff;
    margin: 0 5px;
    border-radius: var(--border-radius);
    pointer-events: all;
}
.main-slider-pagination
    > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--second-color);
}
.row {
    margin-left: calc(var(--column-gap) * -1);
    margin-right: calc(var(--column-gap) * -1);
}
.container,
.container-fluid,
.row > [class*="col-"] {
    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 {
    background: 0 0;
    z-index: 9999;
    overflow: hidden;
}
.mobile-nav > .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: 0 0;
    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;
}
.brand-row .brand-item,
.mobile-nav.active {
    pointer-events: all;
}
.mobile-nav.active > .mobile-nav-content > .mobile-nav-inner {
    right: 0;
}
.mobile-nav-overlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    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: var(--transparent-color-2);
    margin-top: -10px;
    margin-bottom: 10px;
}
.main-btn,
.main-btn > span {
    justify-content: center;
    position: relative;
}
.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;
}
.ftr-links > a:not(:last-child),
.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;
    align-items: center;
    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:before,
.main-nav-content {
    position: relative;
    width: 100%;
    top: 0;
}
.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}
.main-btn.big {
    height: calc(var(--button-height) * 1.4);
    padding: 0 30px;
}
.main-btn:before {
    content: "";
    position: absolute;
    left: -100%;
    height: 100%;
    background: var(--button-hover-color);
}
.main-btn:hover:before,
.offer-item:hover > .content > .main-btn:before {
    left: 0;
}
.main-btn > span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    z-index: 10;
    color: #fff;
    font-weight: var(--font-medium);
}
.main-btn.small > span {
    font-size: 0.8rem;
}
.main-btn.big > span,
.main-btn > span > i,
.nav-social > a,
.nt-contact > i {
    font-size: 1.2rem;
}
.main-btn > span > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: var(--small-border-radius);
    background: var(--transparent-color);
}
.main-btn.line > span > i {
    background: #fff;
    border: solid 1px var(--border-color);
}
.main-btn.line:hover > span > i {
    background: none;
    border: none;
}
.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 {
    background: 0 0;
    border: 1px solid #fff;
}
.comment-item > .stars > i.active,
.main-btn.line > span,
.main-btn.white-line:hover > span {
    color: var(--main-color);
}
.main-btn.white-line:before {
    background: #fff;
}
.main-btn.line:before,
.nav-login,
.nt-contact > i,
.video-section-btn > span {
    background: var(--main-color);
}
.main-btn.line {
    background: 0 0;
    border: solid 1px var(--main-color);
}
.form-box .form-group .ctxt,
.form-box .form-label,
.form-box .form-stars label,
.main-btn.line:hover > span,
.main-title.white,
.offer-item:hover > .content > .main-btn > span {
    color: #fff;
}
.form-box.alternate .form-label {
    color: var(--main--text-color);
}
.main-nav-content {
    left: 0;
    z-index: 99;
}
.nav-top {
    display: block;
    padding: 10px 0;
    background: #fff;
}
.nav-social > a:hover {
    color: var(--main-color) !important;
    background: #fff;
}
.comment-item > .client,
.ftr-contact > div,
.ftr-subscribe-flex,
.mn-flex > .left,
.mn-links,
.nav-social,
.nt-contact,
.nt-flex > .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.nt-flex > .center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nt-contact > i {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    min-width: 40px;
    height: 40px;
    color: #fff;
    margin-right: 5px;
}
.nt-contact > div > small {
    display: block;
    font-size: 0.8rem;
    color: var(--soft-text-color) !important;
    font-weight: var(--font-medium);
}
.mn-links > .item {
    display: block;
    position: relative;
}
.mn-links > .item > a,
.nt-contact > div > span {
    font-size: 1rem;
    font-weight: var(--font-medium);
}
.mn-links > .item > .inner-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 5px 0;
    background: #fff;
    border-radius: var(--small-border-radius);
    box-shadow: var(--box-shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--main-transition);
}
.mn-links > .item:hover > .inner-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.mn-links > .item > .inner-menu > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--light-text-color);
    transition: var(--main-transition);
}
.mn-links > .item > .inner-menu > a:hover {
    background: var(--main-color);
    color: #fff !important;
}
.nt-contact > div > span {
    display: block;
    color: var(--main-text-color) !important;
}
.bcrumb-content .bcrumb-links > a:hover,
.blog-item .content > .title > a:hover,
.ftr-bottom-links > a:hover,
.ftr-contact > div > a:hover,
.ftr-links > a:hover,
.nt-contact:hover > div > span,
.side-articles > a:hover > .content > .title,
.tour-item .content > .title > a:hover {
    text-decoration: underline !important;
}
.ftr-bottom-flex,
.mn-flex,
.nt-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mn-flex > .left,
.mn-flex > .right,
.nt-flex > .left,
.nt-flex > .right {
    min-width: 250px;
}
.mn-flex > .right,
.nt-flex > .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.site-logo img {
    display: block;
    width: 200px;
}
.nav-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    min-width: 34px;
    height: 34px;
    color: #fff !important;
    transition: var(--main-transition) ease 0s;
}
.nav-lang,
.nav-login {
    display: flex;
    border-radius: var(--border-radius);
    transition: var(--main-transition) ease 0s;
}
.ftr-social > a:not(:last-child),
.nav-social > a:not(:last-child) {
    margin-right: 10px;
}
.main-nav.fixed .nav-social > a:hover {
    color: var(--main-color) !important;
    background: #fff;
}
.main-nav {
    padding: 10px 0;
    background: var(--main-color);
    transition: var(--main-transition) ease 0s;
}
.main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: var(--box-shadow);
}
.mn-links > .item > a {
    display: block;
    color: #fff !important;
    transition: var(--main-transition) ease 0s;
}
.blog-item .content > .title > a,
.tour-item .content > .title > a {
    color: var(--main-text-color) !important;
}
.ftr-bottom-links > a:not(:last-child),
.mn-links > .item:not(:last-child) {
    margin-right: 15px;
}
.main-nav.fixed .mn-links > .item:hover > a,
.mn-links > .item:hover > a {
    text-decoration: underline !important;
}
.nav-login {
    justify-content: flex-start;
    align-items: center;
    color: #fff !important;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
}
.nav-login > i {
    margin-right: 5px;
}
.nav-login:hover,
.video-section-btn:hover > span {
    background: var(--alternate-color);
}
.nav-lang {
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.badge-content,
.blog-item,
.brand-item,
.destination-item,
.offer-item,
.page-side-box,
.tour-item {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.nav-lang:hover {
    background: #eee;
}
.dropdown.lang-dd > .dropdown-menu > a > i,
.nav-lang > i {
    display: block;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: var(--small-border-radius);
    overflow: hidden;
    margin-right: 5px;
}
.nav-lang > span {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color) !important;
}
.main-title {
    display: block;
    font-size: 2.4rem;
    color: var(--main-text-color);
    text-transform: uppercase;
    font-weight: var(--font-bold);
    margin-bottom: 20px;
}
.destination-item > .content > .country,
.main-caption,
.main-desc {
    font-weight: var(--font-medium);
    display: block;
}
.main-title.small {
    font-size: 1.8rem;
    text-transform: none;
}
.main-caption {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 10px;
}
.main-desc {
    font-size: 1rem;
    color: var(--light-text-color);
    margin-bottom: 20px;
    margin-top: -10px;
}
.blog-item,
.brand-item,
.comment-item,
.destination-item,
.ftr-desc,
.ftr-logo,
.offer-item,
.tour-item,
.video-section-btn {
    margin-bottom: var(--main-gap);
}
.main-caption.white,
.main-desc.white {
    color: #eee;
}
.destination-item {
    display: block;
    overflow: hidden;
    position: relative;
}
.destination-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(4 / 4 * 100%);
}
.destination-item > .img > img,
.tour-item .img > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}
.blog-item .img:hover > img,
.destination-item:hover > .img > img,
.gal-item:hover > img,
.offer-item:hover > .img > img,
.side-articles > a:hover > .img > div > img,
.tour-item .img:hover > img,
.video-gal-item:hover > img {
    transform: scale(1.1);
    opacity: 0.9;
}
.destination-item > .content {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px 15px;
    background: #fff;
    width: calc(100% - 20px);
    border-radius: var(--small-border-radius);
    z-index: 10;
}
.destination-item > .content > .country {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 5px;
}
.badge-item > .count,
.destination-item > .content > .title {
    font-weight: var(--font-bold);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.destination-item > .content > .title {
    display: block;
    font-size: 1.3rem;
    color: var(--main-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.destination-item > .content > .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text-color);
    height: 35px;
}
.video-section {
    display: block;
    padding: calc(var(--section-gap) * 2) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.video-section:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.video-section-btn:after,
.video-section-btn:before {
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    top: 50%;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    content: "";
}
.video-section > .inner {
    display: block;
    position: relative;
    z-index: 20;
}
.video-section-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100px;
    height: 100px;
}
.video-section-btn:before {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-name: play-anim;
}
.video-section-btn:after {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-name: play-anim-2;
    animation-delay: 0.4s;
}
@keyframes play-anim {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        width: 140px;
        height: 140px;
    }
}
@keyframes play-anim-2 {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        width: 120px;
        height: 120px;
    }
}
.video-section-btn > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 4rem;
    color: #fff !important;
    position: relative;
    z-index: 10;
    transition: var(--main-transition) ease 0s;
}
.badge-content,
.page-side-box {
    display: block;
    padding: 20px;
    background: #fff;
}
.badge-content > .row > [class*="col-"]:not(:last-child):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-right: 1px solid #ccc;
    height: 50px;
    transform: translate(0, -50%);
}
.badge-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--main-transition) ease 0s;
}
.badge-item[href]:hover {
    transform: scale(1.05);
}
.badge-item > i {
    display: block;
    font-size: 3rem;
    color: var(--main-color);
}
.badge-item > .count {
    display: block;
    font-size: 2rem;
    color: var(--soft-text-color);
}
.badge-item > .title {
    display: block;
    font-size: 1.2rem;
    color: var(--main-text-color);
    font-weight: var(--font-medium);
}
.badge-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    margin-bottom: 10px;
}
.badge-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tour-item {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}
.blog-item > .row,
.tour-item > .row {
    margin: 0;
}
.blog-item > .row > [class*="col-"],
.tour-item > .row > [class*="col-"] {
    padding: 0;
}
.tour-item .img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(9 / 16 * 100%);
}
.blog-item .content,
.tour-item .content {
    padding: 20px 25px;
}
.blog-item .content > .title,
.offer-item > .content > .title,
.tour-item .content > .title {
    display: block;
    font-size: 1.3rem;
    color: var(--main-text-color);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-item .content > .desc,
.tour-item .content > .desc {
    display: -webkit-box;
    font-size: 0.9rem;
    color: var(--light-text-color);
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    overflow: hidden;
}
.tour-item .content > .specs {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
}
.tour-item .content > .specs > .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
}
.tour-item .content > .specs > .item > i {
    display: block;
    color: var(--main-color);
    margin-right: 5px;
}
.tour-item .content > .specs > .item > span {
    display: block;
    color: var(--soft-text-color);
}
.tour-item .content > .specs > .item:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #ccc;
}
.tour-item .side {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    padding: 20px;
    text-align: center;
}
.tour-item .side > .price {
    margin-bottom: 20px;
}
.tour-item .side > .price > span {
    display: block;
    font-size: 2.8rem;
    font-weight: var(--font-bold);
    color: #fff;
}
.tour-item .side > .price > small {
    display: block;
    font-size: 0.9rem;
    color: #eee;
}
.color-section,
.slider-bottom {
    display: block;
    padding: var(--section-gap) 0;
    background: var(--main-color);
}
.brand-item {
    display: block;
    padding: 20px;
    background: #fff;
    transition: var(--main-transition) ease 0s;
}
.dropdown.lang-dd > .dropdown-menu > a:hover,
.gray-section {
    background: #eee;
}
.white-section {
    padding: var(--section-gap) 0;
    background: #fff;
}
.brand-item.inpage:hover {
    transform: scale(1.1);
}
.brand-item > div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(1 / 2.5 * 100%);
}
.brand-item > div > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-row {
    pointer-events: none;
}
.brand-row:hover .brand-item {
    opacity: 0.5;
}
.brand-row .brand-item:hover {
    opacity: 1;
    transform: scale(1.1);
}
.gray-section {
    display: block;
    padding: var(--section-gap) 0;
}
.offer-item {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.offer-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(710 / 400 * 100%);
}
.offer-item > .img > .slogan {
    position: absolute;
    top: 50%;
    left: 20px;
    width: calc(100% - 40px);
    transform: translate(0, -50%);
    z-index: 20;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    font-weight: var(--font-bold);
    margin: 0;
}
.offer-item > .img > .slogan > span {
    position: relative;
    z-index: 12;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.offer-item > .img > .slogan:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    opacity: 0.8;
    z-index: 10;
    border: solid 4px var(--main-color);
    border-radius: 10px;
}
.offer-item > .img > .slogan:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 10;
    background: var(--main-color);
    border: solid 2px rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}
.offer-item > .img > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0.5;
}
.offer-item > .img > .overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}
.blog-item .img > img,
.gal-item > img,
.offer-item > .img > img,
.side-articles > a > .img > div > img,
.video-gal-item > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}
.offer-item > .img > .price {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--main-color);
    z-index: 10;
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    color: #fff;
    padding: 20px 25px 25px 35px;
    border-radius: 0 0 0 50px;
}
.offer-item > .content {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 20px 25px;
    background: #fff;
    border-radius: var(--small-border-radius);
    width: calc(75% - 10px);
}
.blog-item,
.blog-item .img {
    display: block;
    overflow: hidden;
}
.offer-item > .content > .desc {
    display: -webkit-box;
    font-size: 0.9rem;
    color: var(--light-text-color);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-item {
    background: #fff;
}
.blog-item .img {
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: calc(3 / 4 * 100%);
}
.blog-item .content > .date {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.blog-item .content > .date > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 0.9rem;
    color: #fff;
    background: var(--main-color);
    border-radius: var(--border-radius);
    margin-right: 5px;
}
.blog-item .content > .date > span {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color);
}
.slider-banner {
    display: block;
    width: 100%;
    position: relative;
    padding-top: calc(600 / 1920 * 100%);
}
.map-frame > *,
.slider-banner:before,
.slider-banner > img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
}
.map-frame > *,
.slider-banner > img {
    display: block;
    object-fit: cover;
}
.gal-item > i,
.video-gal-item > i {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--main-transition) ease 0s;
}
.slider-banner:before {
    content: "";
    background: #000;
    opacity: 0.4;
    z-index: 10;
    pointer-events: none;
}
.main-slider-container {
    display: block;
    width: 100%;
    position: relative;
}
.bcrumb-content:before,
.ftr-title:before,
.main-slider-buttons,
.slide-desc {
    position: absolute;
    left: 0;
}
.main-slider-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    width: 100%;
    pointer-events: none;
    padding: 0 40px;
}
.main-slider-buttons > div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    pointer-events: all;
    cursor: pointer;
}
.slide-desc {
    top: 50%;
    width: 100%;
    pointer-events: none;
}
.slide-desc-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    pointer-events: all;
    text-align: center;
}
.slide-desc-inner > .title {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: #fff;
    margin: 0;
}
.slide-desc-inner > .desc {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: #fff;
}
.slide-desc-inner > .title ~ .desc {
    margin-top: 10px;
}
.comment-item {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 25px;
    background: #fff;
    border-radius: var(--border-radius);
    user-select: none !important;
    box-shadow: var(--box-shadow);
}
.comment-item > .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.comment-item > .stars > i {
    display: block;
    font-size: 1.2rem;
    color: #ccc;
}
.comment-item > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--light-text-color);
}
.swiper-slide .comment-item > .desc {
    min-height: 72px;
}
.comment-item.no-limit > .desc,
.side-articles {
    display: block;
}
.comment-item > .client > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    overflow: hidden;
    margin-right: 10px;
}
.comment-item > .client > i:before {
    font-size: 3.2rem;
    margin-top: 18px;
}
.comment-item > .client > div > .name {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: var(--soft-text-color);
}
.comment-slider-buttons,
.destination-slider-buttons,
.offer-slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.comment-slider-buttons > div,
.destination-slider-buttons > div,
.offer-slider-buttons > div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    font-size: 1.2rem;
    height: 30px;
    background: 0 0;
    border: solid 1px var(--main-color);
    color: var(--main-color);
    border-radius: var(--border-radius);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--main-transition) ease 0s;
}
.comment-slider-buttons > div:hover,
.destination-slider-buttons > div:hover,
.offer-slider-buttons > div:hover {
    background: var(--main-color);
    color: #fff;
}
.button-box-flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    height: 100%;
}
.ftr-content {
    padding-top: var(--section-gap);
    padding-bottom: calc(var(--section-gap) - var(--main-gap));
    background: var(--alternate-color);
}
.ftr-logo {
    display: block;
}
.ftr-logo img {
    width: 200px;
}
.ftr-desc {
    display: block;
    font-size: 1rem;
    color: #fff;
}
.contact-item > div > i,
.ftr-contact > div:not(:last-child),
.ftr-title,
.side-articles > a:not(:last-child) {
    margin-bottom: 10px;
}
.ftr-contact > div {
    min-height: 50px;
}
.ftr-title {
    display: block;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: #fff;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.form-group,
.ftr-bottom-links,
.ftr-contact,
.ftr-links,
.ftr-social,
.ftr-subscribe,
.video-gal-item {
    margin-bottom: var(--main-gap);
}
.ftr-title:before {
    content: "";
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}
.ftr-contact,
.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.ftr-contact > div > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    margin-right: 10px;
}
.ftr-contact > div > a,
.ftr-contact > div > span,
.ftr-links > a {
    display: block;
    font-size: 0.9rem;
    color: #fff !important;
}
.ftr-bottom-row {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ftr-subscribe {
    display: block;
    max-width: 500px;
}
.ftr-subscribe > .desc {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}
.ftr-subscribe-flex > input {
    width: 100%;
    margin-right: 10px;
    padding: 0 20px;
    height: var(--input-height);
    color: var(--input-color);
    border-radius: var(--border-radius);
    border: none;
}
.ftr-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.ftr-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    height: 34px;
    font-size: 1rem;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    transition: var(--main-transition) ease 0s;
}
.dropdown.lang-dd > .dropdown-menu,
.form-box,
.page-banner,
.page-banner > .price,
.video-gal-item {
    border-radius: var(--border-radius);
}
.ftr-social > a:hover {
    background: #fff;
    color: var(--main-color) !important;
}
.ftr-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.ftr-bottom-links > a {
    display: block;
    font-size: 0.9rem;
    color: #fff !important;
    margin-bottom: 5px;
}
.ftr-bottom {
    padding: var(--main-gap) 0;
    background: #222;
}
.ftr-bottom-flex > .ftr-copy {
    display: block;
    font-size: 0.8rem;
    color: #fff !important;
}
.ftr-bottom-flex > .ftr-dev img {
    width: 70px;
    filter: contrast(0.5) brightness(2) grayscale(1);
}
.dropdown.lang-dd > .dropdown-menu {
    position: absolute !important;
    left: unset !important;
    right: 0 !important;
    top: 100% !important;
    padding: 5px 0;
    background: #fff;
    box-shadow: var(--box-shadow);
}
.dropdown.lang-dd > .dropdown-menu > a {
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    transition: var(--main-transition) ease 0s;
}
.dropdown.lang-dd > .dropdown-menu > a > span {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--soft-text-color) !important;
}
.bcrumb-content {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.bcrumb-content:before {
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.article-infos > .left > div > i,
.contact-item > div > i,
.faq-item-header,
.form-box,
.page-banner > .price {
    background: var(--main-color);
}
.bcrumb-content > .bcrumb-inner {
    position: relative;
    z-index: 10;
}
.bcrumb-content .bcrumb-title {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--font-bold);
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.article-infos > .left > div > span,
.faq-item-header > .title,
.form-label,
.related-flights > a,
.video-gal-item > .title {
    font-weight: var(--font-medium);
}
.bcrumb-content .bcrumb-links {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.bcrumb-content .bcrumb-links > a {
    display: block;
    font-size: 1rem;
    color: #fff !important;
    margin-right: 0;
    position: relative;
}
.bcrumb-content .bcrumb-links > i {
    color: #fff;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}
.page-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(600/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;
}
.page-banner > .price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    z-index: 10;
}
.related-flights,
.related-flights > a {
    justify-content: center;
    display: flex;
}
.page-banner > .price > span {
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: var(--font-bold);
}
.page-banner > .price > small {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-regular);
    color: #eee;
    margin-left: 5px;
}
.page-banner > img,
.side-articles > .content {
    display: block;
    width: 100%;
}
.related-flights {
    align-items: center;
    flex-wrap: wrap;
}
.related-flights > a {
    align-items: center;
    font-size: 1rem;
    color: var(--light-text-color) !important;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 5px 10px;
    transition: var(--main-transition) ease 0s;
}
.video-gal-item > .title,
.video-gal-item > i {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
}
.related-flights > a:hover {
    color: var(--main-text-color) !important;
    transform: scale(1.1);
}
.video-gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(9 / 16 * 100%);
    box-shadow: var(--box-shadow);
}
.video-gal-item > .title {
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.8rem;
    margin: 0;
}
.video-gal-item > i {
    z-index: 10;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
}
.video-gal-item:hover > i {
    min-width: 50px;
    height: 50px;
}
.form-box {
    display: block;
    padding: 20px;
    box-shadow: var(--box-shadow);
}
.form-box.alternate {
    background: #fff;
    box-shadow: none;
    border: solid 1px var(--main-color);
}
.form-group {
    display: block;
    width: 100%;
    position: relative;
}
.form-group .select2-container {
    min-width: 100%;
}
.select2-dropdown {
    margin: 0;
    width: 100%;
    border-radius: 2px;
    border: solid 1px var(--border-color);
    box-shadow: none;
}
.select2-results__option {
    background: #fff;
    font-size: 0.8rem;
    color: var(--main-text-color) !important;
    padding: 5px 10px;
    transition: var(--main-transition) !important;
}
.select2-results__option:hover,
.select2-results__option--selected,
.select2-results__option--highlighted.select2-results__option--selectable {
    background: #eee !important;
}
.form-group .select2-selection--single {
    border: none !important;
    background: none !important;
    background: none !important;
    height: unset !important;
}
.form-group .select2-selection--single > .select2-selection__rendered {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.form-group .select2-selection--single > .select2-selection__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.form-group .select2-selection--single > .select2-selection__arrow:before {
    content: "";
    position: absolute;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
    transition: none;
}
.form-group
    .select2-selection--single[aria-expanded="true"]
    > .select2-selection__arrow:before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.form-group .select2-selection--single > .select2-selection__arrow > b {
    display: none;
}
.form-group > input,
.form-group > textarea,
.form-group > .nice-select,
.form-group .select2-selection--single > .select2-selection__rendered,
.select2-search__field {
    display: block;
    width: 100%;
    border-radius: var(--small-border-radius);
    font-size: 1rem;
    color: var(--input-color);
    border: var(--input-border);
    outline: var(--input-outline) !important;
    height: var(--input-height);
    padding: var(--input-padding);
    background: #fff;
    line-height: var(--line-height) !important;
    outline-offset: unset !important;
}
.select2-search__field {
    border: var(--input-border) !important;
    padding: 5px 10px !important;
    font-size: 0.8rem !important;
}
.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 > input::placeholder,
.form-group > textarea::placeholder {
    color: var(--placeholder-color);
}
.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--soft-text-color);
    margin-bottom: 2px;
}
.faq-item,
.form-stars {
    margin-bottom: var(--main-gap);
}
.form-stars {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
}
.form-stars input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}
.gal-item,
.map-frame,
.side-articles > a > .img,
.side-articles > a > .img > div {
    position: relative;
    display: block;
}
.form-stars label {
    position: relative;
    cursor: pointer;
    color: #bbb;
    font-size: 1.8rem;
    padding: 0 5px 0 0;
    margin: 0;
}
.faq-item-body > .inner,
.faq-item-body > p {
    padding: 10px 20px;
}
.form-stars input:checked ~ label,
.form-stars label:hover,
.form-stars label:hover ~ label {
    color: #0fb91d;
}
.faq-item {
    border-radius: 0;
}
.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: var(--border-radius);
}
.faq-item-header > .title {
    display: block;
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}
.faq-item-header > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    color: #fff;
    margin-left: 10px;
}
.map-frame,
.side-articles > a {
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
}
.faq-item-header[aria-expanded="true"] > i:before {
    content: "\F0143";
}
.faq-item-body > p {
    display: block;
    margin: 0;
    font-size: 1rem;
    color: var(--soft-text-color);
}
.article-infos {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: calc(var(--main-gap) / 2);
    padding-bottom: calc(var(--main-gap) / 2);
    border-bottom: 2px solid #ddd;
}
.article-infos > .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
}
.article-infos > .right {
    margin-top: 5px;
}
.article-infos > .left > div,
.side-articles > a {
    display: flex;
    justify-content: flex-start;
}
.article-infos > .left > div {
    align-items: center;
    margin-right: 10px;
}
.article-infos > .left > div > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    width: 24px;
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    margin-right: 5px;
}
.article-infos > .left > div > span {
    display: block;
    font-size: 0.8rem;
    color: var(--light-text-color);
}
.side-articles > a {
    align-items: center;
    padding: 10px;
}
.side-articles > a > .img {
    min-width: 80px;
    margin-right: 10px;
}
.side-articles > a > .img > div {
    width: 100%;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    border-radius: var(--small-border-radius);
}
.side-articles > a > .content > .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.1rem;
    overflow: hidden;
    color: var(--main-text-color);
    font-weight: var(--font-bold);
    margin: 0;
}
.contact-item > div > .title,
.form-group span.error-label,
.msg-box,
.pagination ul li a {
    font-weight: var(--font-medium);
}
.side-articles > a > .content > .detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--main-color) !important;
    font-weight: var(--font-medium);
}
.gal-item {
    width: 100%;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--main-gap);
}
.gal-item > i {
    position: absolute;
    z-index: 10;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;
}
.gal-item:hover > i {
    min-width: 40px;
    height: 40px;
}
.map-frame {
    width: 100%;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
}
.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    height: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    text-align: center;
}
.contact-item > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.contact-item > div > i,
.pagination ul {
    justify-content: center;
    display: flex;
}
.contact-item > div > i {
    align-items: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    color: #fff;
    border-radius: 50%;
}
.contact-item > div > .title {
    display: block;
    font-size: 1.2rem;
    color: var(--main-text-color);
    margin-bottom: 5px;
}
.contact-item > div > .info {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color);
    margin-bottom: 15px;
}
.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}
.pagination ul {
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination ul li {
    margin: 2px;
    display: block;
}
.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 0;
    background: #eee;
    border: 1px solid #eee;
    color: var(--soft-text-color) !important;
    border-radius: var(--small-border-radius);
}
.article-tags,
.ftr-brands,
.msg-box {
    justify-content: flex-start;
    display: flex;
}
.pagination ul li a:hover {
    background: #bbb;
}
.pagination ul li.active a {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff !important;
}
.form-group span.error-label {
    display: block;
    font-size: 0.8rem;
    color: red;
    margin-top: 2px;
}
.form-box .form-group span.error-label {
    color: #ddd;
}
.form-group .ctxt {
    display: block;
    font-size: 0.8rem;
    color: var(--main-text-color);
    text-align: right;
    margin-top: 2px;
}
.msg-box {
    align-items: center;
    padding: 2px 6px;
    border-radius: var(--small-border-radius);
    font-size: 0.9rem;
    color: #fff;
}
.msg-box > i {
    margin-right: 4px;
}
.article-tags > a,
.ftr-brands > .item {
    margin-right: 10px;
    margin-bottom: 10px;
}
.msg-box.success {
    background: green;
}
.msg-box.danger {
    background: red;
}
.article-tags,
.ftr-brands {
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.article-tags > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    border: solid 1px var(--main-color);
    border-radius: var(--small-border-radius);
    font-size: 0.9rem;
    color: var(--main-color) !important;
    transition: var(--main-transition) ease 0s;
}
.article-tags > a:hover {
    background: var(--main-color);
    color: #fff !important;
}
.article-tags > a > i {
    display: block;
    margin-right: 5px;
}
.ftr-brands > .item {
    display: block;
}
.ftr-brands > .item img {
    width: 50px;
    filter: contrast(0) brightness(2);
}
.test {
    display: block;
}
.hotel-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row-reverse;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: var(--main-gap);
}
.hotel-item.vertical {
    flex-direction: column;
}
.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(--alternate-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.3rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    text-transform: uppercase;
    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.vertical .content > .desc {
    margin-bottom: 10px;
}
.hotel-item.vertical > .right {
    clip-path: unset;
}
.hotel-item.vertical .img > .location {
    left: 20px !important;
    transform: none !important;
}
.hotel-item.vertical .img > img {
    transition: var(--main-transition) ease 0s;
}
.hotel-item.vertical .img:hover > img {
    transform: scale(1.1);
}
.hotel-item.vertical > .left {
    width: 100%;
}
.hotel-item.vertical .content {
    padding: 10px 15px;
}
.hotel-item.vertical .img {
    padding-top: calc(3 / 4 * 100%);
}
.hotel-item .img {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: calc(420 / 1280 * 100%);
    transition: var(--alternate-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(--alternate-transition) ease 0s;
}
.hotel-item .img > .location > i {
    margin-right: 5px;
}
.hotel-item .img:hover > .location {
    transform: translate(-50%, 0);
    left: 50%;
}
.hotel-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: #fbfbfb;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.hotel-page-header .title {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    margin-bottom: 5px;
}
.hotel-page-header .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    color: var(--soft-text-color);
}
.hotel-page-header .location > i {
    display: block;
    margin-right: 5px;
    color: var(--main-color);
}
.hotel-page-header .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hotel-page-header .stars > i {
    display: block;
    font-size: 1.2rem;
    color: orange;
}
.hotel-page-header .stars > i:not(:last-child) {
    margin-right: 5px;
}
.page-part-box {
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--main-gap);
    box-shadow: var(--box-shadow);
}
.page-gal-box {
    display: block;
}
.page-gal-box .item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.page-gal-box .item > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}
.page-gal-box .item:hover > img {
    transform: scale(1.1);
    opacity: 0.9;
}
.page-gal-box .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0;
    z-index: 10;
    transition: var(--main-transition) ease 0s;
}
.page-gal-box .item:hover:before {
    opacity: 0.3;
}
.page-gal-box .item.big {
    padding-top: calc(6 / 8 * 100%);
}
.page-gal-box .item.medium {
    padding-top: calc(3 / 4 * 100% - 1px);
}
.page-gal-box .item.small {
    padding-top: calc(2.3 / 3 * 100% - 1px);
}
.page-gal-box .row {
    margin-left: -5px;
    margin-right: -5px;
}
.page-gal-box .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}
.page-gal-box .item > i {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    z-index: 12;
    opacity: 0;
    transition: var(--main-transition) ease 0s;
}
.page-gal-box .item:hover > i {
    opacity: 1;
}
.page-gal-box .item > .more {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 2rem;
    font-weight: var(--font-regular);
    z-index: 14;
}
.hotel-page-header .main-title {
    margin-bottom: calc(var(--main-gap) / 2);
}
.yt-iframe {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720 / 1280 * 100%);
}
.yt-iframe > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-map-frame.side {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
}
.page-map-frame.tall {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(7 / 6 * 100%);
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
}
.page-map-frame > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mobile-toggle-box-open,
.mobile-toggle-box-close {
    display: none !important;
}
.page-hotel-ctg-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.page-hotel-ctg-items > .item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5px;
    padding: 5px 10px;
    padding-left: 30px;
    border-radius: 30px;
    border: solid 1px var(--border-color);
    color: var(--main--text-color);
    transition: var(--main-transition);
    background: #fff;
    position: relative;
}
.page-hotel-ctg-items > .item:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fbfbfb;
    border: solid 1px var(--border-color);
}
.page-hotel-ctg-items > .item:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-color);
    opacity: 0;
    transition: var(--main-transition);
}
.page-hotel-ctg-items > .item:hover:after {
    opacity: 1;
}
.page-hotel-ctg-items > .item:hover {
    border-color: var(--main-color);
    background: #fff;
    transform: scale(1.1);
}
.limited-text-box {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 62;
    overflow: hidden;
}
.limited-text-box.active {
    display: block;
}
.limited-text-box-toggler > span:last-child {
    display: none;
}
.limited-text-box-toggler.active > span:last-child {
    display: flex;
}
.limited-text-box-toggler.active > span:first-child {
    display: none;
}

.nav-brands {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brands > .item {
    display: block;
    width: auto;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.nav-brands > .item:not(:last-child) {
    margin-right: 10px;
}

.nav-brands > .item img {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(0) brightness(2);
}

.bcrumb-content .bcrumb-title {
    /* color: var(--main-text-color); */
    /* text-align: left; */
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
}

.bcrumb-content .bcrumb-links {
    display: flex;
}

.bcrumb-content .bcrumb-links > a,
.bcrumb-content .bcrumb-links > i {
    /* color: var(--soft-text-color) !important; */
    font-size: 0.9rem;
}

.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-nav-top > .right,
.mobile-nav-top > .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.share-buttons {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    width: 100%;
}
.share-buttons small {
    text-align: right;
}
.share-buttons small {
    text-align: center;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
}
.share-buttons a {
    display: block;
    width: 30px;
    height: 30px;
    color: #fff !important;
    position: relative;
    margin-right: 10px;
    border-radius: var(--border-radius);
}
.share-buttons a:last-child {
    margin-right: 0;
}
.share-buttons a.mail {
    background: #002663;
}
.share-buttons a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    transition: var(--main-transition) ease 0s;
}
.share-buttons a:hover i {
    font-size: 18px;
}
.share-buttons a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: var(--main-transition) ease 0s;
}
.share-buttons a:hover:before {
    opacity: 1;
}

.section-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.section-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    height: 34px;
    font-size: 1.2rem;
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    border-radius: var(--border-radius);
    transition: var(--main-transition) ease 0s;
    margin: 0 5px;
    margin-bottom: 10px;
}

.section-social > a:hover {
    background: var(--main-color);
    color: #fff !important;
}

.sbanner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(520/1280*100%);
    border-radius: var(--border-radius);
}

.sbanner:hover > img {
    transform: scale(1.05);
}

.sbanner > img:first-child {
    display: block;
}
.sbanner > img:last-child {
    display: none;
}
 
.sbanner > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.ftr-line {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    min-height: 0 !important;
}

.contact-link-box {
    display: block;
    background: var(--main-color);
    padding: 20px;
    text-align-last: center;
}

.contact-link-box > .head {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.contact-link-box > .title {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: var(--font-medium);
}

.contact-link-box > .desc {
    display: block;
    font-size: 1rem;
    color: #fff;
}