:root {
    --body_font: "Open Sans", sans-serif;
    --heading_font: "Bodoni Moda", serif;

    --white:#fff;
    --black:#191919;
    --grey:#D9D9D9;
    --brown:#514246;
    --green:#006800;
    --red:#FF4C4C;
    --blue:#226DDD;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: var(--body_font);
    background: var(--white);
    color: var(--brown);
}
ol, ul { 
	list-style: none;
}
blockquote, q { 
	quotes: none; 
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font);
}
.layouts-title {
	font-size: 26px;
	margin:15px 0;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}
/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
.nopad {
	padding:0;
}
.nopadleft {
	padding-left:0;
}
.nopadright {
	padding-right:0;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    margin-left: auto !important;
    margin-right: auto !important;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.no-link {
    pointer-events: none;
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: var(--brown);
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.tabs {
    margin: 0;
    border: none;
    background: transparent;
}
.tabs-content {
    border: none;
    background: transparent;
    color: inherit;
}
.tabs-panel {
    padding: 0;
}

.accordion {
    background: none;
}
.accordion-title {
    border: none;
}
.accordion-title:hover {
    background: none;
}
.accordion-content {
    padding: 0;
    border: none;
    background: none;
    color: inherit;
}
:last-child > .accordion-content:last-child {
    border: none;
}

.prev-scroll {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.grid-container {
    width: 100%;
    max-width: 100%;
    padding: 0 3.665%;
}
.grid-container.grid-container-pd {
    padding: 0 7.33%;
}

.dflex,
.dflex-ul > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dflex-wrap,
.dflex-ul-wrap > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.dflex-aic,
.dflex-ul-aic > ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title-96 {
    font-family: var(--heading_font);
    font-size: clamp(96px, 5vw, 128px);
    font-weight: 400;
    line-height: 1.11;
}
.title-64 {
    font-family: var(--heading_font);
    font-size: clamp(54px, 3.33vw, 72px);
    font-weight: 400;
    line-height: 1.172;
}
.title-48 {
    font-family: var(--heading_font);
    font-size: clamp(48px, 2.5vw, 64px);
    font-weight: 400;
    line-height: 1.11;
}
.title-36 {
    font-family: var(--heading_font);
    font-size: clamp(36px, 1.875vw, 48px);
    font-weight: 400;
    line-height: 1.11;
}
.title-32 {
    font-family: var(--heading_font);
    font-size: clamp(32px, 1.6vw, 36px);
    font-weight: 700;
    line-height: 1.22;
}

.text-20 {
    font-size: clamp(20px, 1.04vw, 26px);
    line-height: 1.37;
}
.text-20 p:not(:last-child) {
    margin-bottom: 24px;
}
.text-18 {
    font-size: clamp(18px, 0.91vw, 24px);
}
.text-16 {
    font-size: clamp(16px, 0.82vw, 20px);
}
.text-14 {
    font-size: clamp(14px, 0.73vw, 18px);
}

header {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0; right: 0; left: 0;
    padding: 7px 0 11px;
    z-index: 999;
}
header .grid-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    gap: 48px;
}
.header-logos {
    gap: 48px;
}
.header-logo-primary img {
    max-height: 82px;
    transition: 0.2s ease-in-out;
}
.header-logo-secondary {
    padding-top: 18px;
}
.header-logos a:hover img {
    opacity: 1 !important;
}
.header-logo-secondary img {
    max-height: 55px;
    opacity: 0.5;
    transition: 0.2s ease-in-out;
}
.rmv-logo .header-logo-primary img {
    opacity: 0.5;
}
.rmv-logo .header-logo-secondary img {
    opacity: 1;
}
.header-right {
    gap: 37px;
}
.header-menu {
    font-size: 18px;
    font-size: clamp(18px, 0.9vw, 24px);
    line-height: normal;
}
.header-menu ul {
    gap: 37px;
}
.header-menu ul li a {
    color: var(--brown);
    transition: 0.2s ease-in-out;
    /* text-decoration-line: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: transparent; */
}
.header-menu ul li a:hover {
    color: var(--brown);
    opacity: 0.7;
    /* text-decoration-color: var(--brown); */
}
.header-menu ul li.menu-item-has-children {
    position: relative;
}
.header-menu ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}
.header-menu ul li.menu-item-has-children > a::after {
    content: '';
    width: 10px; height: 5px;
    background: url(../img/icon-menu-dropdown.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.header-menu ul li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}
.header-menu ul li ul {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--white);
    border-radius: 5px;
    padding: 3px 0;
    margin: 0;
    -webkit-box-shadow: 0px 0px 4px 0px #00000020;
    box-shadow: 0px 0px 4px 0px #00000020;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.header-menu ul li ul::before {
    content: '';
    width: 100%; height: 10px;
    position: absolute;
    top: -5px;
    left: 0;
}
.header-menu ul li ul a {
    display: block;
    padding: 3px 10px;
    white-space: nowrap;
}
.header-menu ul li.menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
}


.header-btn {
    gap: 37px;
}

main {
    padding-top: 100px;
    position: relative;
}
main::after {
    content: '';
    width: 100%; height: 100%;
    background: -o-linear-gradient(183.88deg, rgba(0, 104, 0, 0.45) 0%, rgba(81, 66, 70, 0.45) 49.16%);
    background: linear-gradient(266.12deg, rgba(0, 104, 0, 0.45) 0%, rgba(81, 66, 70, 0.45) 49.16%);
    -webkit-filter: blur(473px);
    filter: blur(473px);
    opacity: 0.4;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    pointer-events: none;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    display: inline-block;
    font-size: 18px;
    font-size: clamp(18px, 0.9vw, 24px);
    line-height: 1;
    text-align: center;
    color: var(--brown);
    border: 1px solid var(--brown);
    border-radius: 3px;
    min-width: 114px;
    padding: 13px 13px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.btn-primary:hover,
a:hover .btn-primary {
    color: var(--white);
    background: var(--brown);
}
.btn-primary.btn-primary-white,
.btn-primary.btn-primary-white:focus,
.btn-primary.btn-primary-white:active {
    border-color: var(--white);
    color: var(--white);
}
.btn-primary.btn-primary-white:hover,
a:hover .btn-primary.btn-primary-white {
    background: var(--white);
    color: var(--brown);
}

.btn-primary.btn-primary-slim,
.btn-primary.btn-primary-slim:focus,
.btn-primary.btn-primary-slim:active {
   padding: 7px 16px;
   min-width: 89px;
}

.btn-green,
.btn-green:focus,
.btn-green:active {
    display: inline-block;
    font-size: 18px;
    font-size: clamp(18px, 0.9vw, 24px);
    line-height: 1;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--green);
    background: var(--green);
    border-radius: 3px;
    min-width: 114px;
    padding: 13px 22px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.btn-green:hover,
a:hover .btn-green {
    color: var(--brown);
    background: transparent;
}

footer {
    background: var(--white);
    padding: max(44px, 2%) 0;
}
footer a {
    color: var(--brown);
    transition: 0.2s ease-in-out;
}
footer a:hover {
    color: var(--brown);
    opacity: 0.7;
}
.footer-top {
    padding-bottom: 44px;
    border-bottom: 1px solid var(--brown);
    border-radius: 1px;
    margin-bottom: 43px;
}
.footer-top-left {
    width: 23%;
}
.footer-top-left .title-64 {
    font-size: clamp(44px, 2.4vw, 64px);
}
.footer-top-right {
    width: 77%;
    padding-left: 12.8%;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-menu-item .text-18 {
    margin-bottom: 15px;
}
.footer-menu-item ul li:not(:last-child) {
    margin-bottom: 5px;
}
.footer-menu-item > :last-child {
    margin-bottom: 0;
}

.footer-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    gap: 48px;
}
.footer-socials {
    gap: 36px;
}
.footer-socials ul {
    gap: 36px;
}
.footer-socials ul li a {
    transition: 0.2s ease-in-out;
}
.footer-socials ul li a:hover {
    opacity: 0.7;
}
.footer-socials ul li img {
    max-height: 24px;
}

/* .grad-bg-hold {
    position: relative;
}
.grad-bg {
    background: -o-linear-gradient(183.88deg, rgba(0, 104, 0, 0.45) 0%, rgba(81, 66, 70, 0.45) 49.16%);
    background: linear-gradient(266.12deg, rgba(0, 104, 0, 0.45) 0%, rgba(81, 66, 70, 0.45) 49.16%);
    -webkit-filter: blur(473px);
    filter: blur(473px);
    opacity: 0.4;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
} */

.home-intro {
    overflow: hidden;
}
/* .home-intro .grid-container {
    padding-right: 0;
} */
.home-intro-owl .owl-stage-outer {
    padding: 10px;
    margin-left: -5px;
    width: 110%;
}
.home-intro-owl .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.home-intro-owl .item {
    width: clamp(471px, 24.53vw, 628px);
    min-height: clamp(675px, 35.16vw, 900px);
    height: 100%;
    padding: max(24px, 5%) max(30px, 7%);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.home-intro-owl .item > div {
    width: 100%;
}
.home-intro-owl-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1;
    -webkit-box-shadow: 0px 4px 4px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.home-intro-owl-img img {
    transition: 0.4s ease-in-out;
}
.home-intro-owl-img::before {
    content: '';
    width: 100%; height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35.11%, rgba(25, 25, 25, 0)), to(rgba(25, 25, 25, 0.5)));
    background: -o-linear-gradient(top, rgba(25, 25, 25, 0) 35.11%, rgba(25, 25, 25, 0.5) 100%);
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 35.11%, rgba(25, 25, 25, 0.5) 100%);
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
}
.home-intro-owl-img::after {
    content: '';
    width: 100%; height: 45%;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    -webkit-mask: linear-gradient(0, black, black, transparent);
    mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    mask: linear-gradient(0, black, black, transparent);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0; left: 0;
}
a:hover .home-intro-owl-img img {
    transform: scale(1.05);
}
.home-intro-owl-textbox .text-14 {
    margin-top: 10px;
}

.section-wbg {
    position: relative;
    padding: max(108px, 6%) 0;
}
.section-wbg.section-wbg-lg  {
    padding: max(128px, 6%) 0;
}
.section-wbg.section-wbg-sm  {
    padding: max(91px, 6%) 0;
}
.section-wbg-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
}
.section-wbg-img::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.section-wbg-img-darker::before {
    background: rgba(0, 0, 0, 0.6);
}
.section-wbg .grid-container {
    position: relative;
    z-index: 2;
}
.section-wbg-right {
    width: 60%;
}
.section-wbg-right.section-wbg-right-sm {
    padding-left: 10%;
}
.section-wbg-left.section-wbg-left-sm {
    padding-right: 4.2%;
}
.section-wbg-left {
    width: 40%;
    padding-right: 9.2%;
}
.section-wbg-left .text-20 {
    margin-top: 26px;
}
.section-wbg-left .section-btn {
    margin-top: 45px;
}
.section-wbg-list-lg {
    gap: 30px;
}
.section-wbg-list-lg-item {
    width: 100%;
    padding: 19px 16px;
    background: rgba(174, 174, 174, 0.42);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-radius: 10px;
    overflow: hidden;
}
.section-wbg-list-lg-item-simple {
    width: 100%;
    padding: 24px 33px;
    background: rgba(174, 174, 174, 0.42);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 4px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.section-wbg-list-lg-item-simple .text-20 {
    margin-top: 5px;
}
.section-wbg-list-lg-item-simple .section-wbg-list-lg-btn {
    margin-top: 27px;
}
.section-wbg-list-lg-item-simple .btn-primary.btn-primary-slim,
.section-wbg-list-lg-item-simple .btn-primary.btn-primary-slim:focus,
.section-wbg-list-lg-item-simple .btn-primary.btn-primary-slim:active {
    min-width: 131px;
}
.section-wbg-list-lg-img {
    width: 48%;
    order: 2;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 28.5%;
}
.section-wbg-list-lg-textbox {
    width: 52%;
    order: 1;
    padding: 14px 36px 11px 25px;

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.section-wbg-list-lg-textbox > div {
    width: 100%;
}
.section-wbg-list-lg-textbox .text-20 {
    margin-top: 11px;
}
.section-wbg-list-lg-btn {
    margin-top: 32px;
}

.section-pd-lg {
    padding: max(208px, 10.18%) 0;
}
.section-pd-md {
    padding: max(150px, 7.9%) 0;
}
.section-pd-sm {
    padding: max(118px, 6.1%) 0;
}

.section-pd-top-lg {
    padding-top: max(208px, 10.18%);
}
.section-pd-top-md {
    padding-top: max(150px, 7.9%);
}
.section-pd-top-sm {
    padding-top: max(118px, 6.1%);
}

.section-pd-bottom-lg {
    padding-bottom: max(208px, 10.18%);
}
.section-pd-bottom-md {
    padding-bottom: max(150px, 7.9%);
}
.section-pd-bottom-sm {
    padding-bottom: max(118px, 6.1%);
}

.section-pd-top-none {
    padding-top: 0;
}
.section-pd-bottom-none {
    padding-bottom: 0;
}

.text-image-section-left {
    width: 62%;
}
.text-image-section-left a {
    display: block;
    border-radius: 17px;
    overflow: hidden;
    padding-bottom: 64.82%;
}
.text-image-section-left a::after {
    content: '';
    width: 60px; height: 70px;
    background: url(../img/icon-play-grey.svg) no-repeat center center;
    opacity: 0.6;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease-in-out;
}
.text-image-section-left a:hover::after {
    opacity: 1;
}
.text-image-section-right {
    width: 38%;
    padding: 0 3.8% 0 69px;
}
.text-image-section-right .text-20 {
    margin-top: 20px;
}
.text-image-section .section-btn {
    margin-top: 42px;
}

.special-offers-section {
    overflow: hidden;
}
/* .special-offers-section .grid-container {
    padding-right: 0;
} */
.special-offers-section .title-64 {
    margin-bottom: 53px;
    padding-right: 4%;
}
.special-offers-owl {
    min-height: 626px;
}
.special-offers-owl .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.special-offers-owl .item {
    display: block;
    width: clamp(400px, 20.83vw, 533px);
    height: 100%;
    background: #F3F3F3;
    border-radius: 10px;
   -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 10px 12px 27px;
    color: var(--black);
}
.special-offers-owl .owl-stage-outer {
    padding: 10px;
    margin-left: -5px;
    width: 110%;
}
.special-offers-img {
    padding-bottom: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.special-offers-img::after {
    content: '';
    width: 100%; height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35.11%, rgba(25, 25, 25, 0)), to(rgba(25, 25, 25, 0.3)));
    background: -o-linear-gradient(top, rgba(25, 25, 25, 0) 35.11%, rgba(25, 25, 25, 0.3) 100%);
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 35.11%, rgba(25, 25, 25, 0.3) 100%);
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.special-offers-img img {
    transition: 0.4s ease-in-out;
}
.special-offers-textbox {
    padding: 24px 10px 0;
}
.special-offers-textbox .title-36 {
    font-weight: 700;
}
.special-offers-textbox .text-20 {
    margin-top: 13px;
}
.special-offers-owl a:hover .special-offers-img img {
    transform: scale(1.05);
}

.section-wbg-list {
    gap: 24px;
}
.section-wbg-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;

    width: calc(50% - 12px);
    padding: 23px 18px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: max(349px, 18.18vw);
}
.section-wbg-list-item .title-36 {
    position: relative;
    z-index: 2;
    width: 100%;
}
.section-wbg-list-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}
.section-wbg-list-img img {
    transition: 0.4s ease-in-out;
}
.section-wbg-list-img::before {
    content: '';
    width: 100%; height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(27.94%, rgba(25, 25, 25, 0)), color-stop(93.7%, rgba(25, 25, 25, 0.85)));
    background: -o-linear-gradient(top, rgba(25, 25, 25, 0) 27.94%, rgba(25, 25, 25, 0.85) 93.7%);
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 27.94%, rgba(25, 25, 25, 0.85) 93.7%);
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.section-wbg-list-img::after {
    content: '';
    width: 100%; height: 50%;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    -webkit-mask: linear-gradient(0, black, black, transparent);
    mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    mask: linear-gradient(0, black, black, transparent);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0; left: 0;
}
a:hover .section-wbg-list-img img {
    transform: scale(1.05);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 40px;
}
.news-grid + .section-btn {
    margin-top: 64px;
}
.title-64 + .news-grid {
    margin-top: 53px;
}
.news-item {
    height: 100%;
}
.news-item a {
    background: var(--white);
    color: var(--black);
    border-radius: 10px;
    padding: 10px 10px 20px;
    height: 100%;
    
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.news-item a > div {
    width: 100%;
}
.news-item-img {
    padding-bottom: 61.2%;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
}
.news-item-textbox {
    padding: 0 13px;
    gap: 23px;

    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0; 

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.news-item-textbox > div {
    width: 100%;
}
.news-item-btn {
    gap: 10px;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-sideblur {
    min-height: calc(100vh - 100px);
}
.section-wbg-img-sideblur {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.section-wbg-img-sideblur::before {
    content: '';
    width: 60%;
    height: 100%;

    -webkit-mask: linear-gradient(90deg, black, black, transparent);
    mask: linear-gradient(90deg, black, black, transparent);

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.section-wbg-img-sideblur::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.595) 9.13%, rgba(0, 0, 0, 0.105) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.section-sideblur-box {
    width: 34%;
    position: relative;
    z-index: 3;
}
.section-sideblur-box .text-20 {
    margin-top: 12px;
}

.routes-filter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 30px;
    margin-top: 30px;
}
.routes-filter select {
    height: 42px;
    font-size: 20px;
    line-height: 1.4;
    width: auto;
    margin: 0;
    padding: 5px 35px 5px 15px;
    background: transparent url(../img/icon-menu-dropdown.svg) no-repeat center right 15px;
    border: 1px solid var(--brown);
    border-radius: 5px;
}
.routes-filter-clear {
    display: none;
    padding: 10px 49px 10px 15px;
    font-size: 20px;
    line-height: 1;
    border: 1px solid var(--red);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.routes-filter-clear.is-active {
    display: block;
}
.routes-filter-clear::after {
    content: '';
    width: 24px; height: 24px;
    background: url(../img/icon-remove.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; right: 15px;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.routes-filter-clear:hover {
    background: var(--red);
    color: var(--white);
}
.routes-filter-clear:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.routes-filter + .routes-grid {
    margin-top: 140px;
}
.routes-grid {
    gap: 50px 2%;
}
.routes-item {
    width: 23.5%;
    position: relative;
    padding-bottom: 23%;
}
.routes-item a {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    gap: 24px;
    padding: 20px 24px 16px;
    border-radius: 10px;
    color: var(--white);

    -ms-flex-line-pack: justify;
    align-content: space-between;

    -webkit-box-shadow: 0px 4px 4px 0px #0000001A;
    box-shadow: 0px 4px 4px 0px #0000001A;
}
.routes-item a > div {
    width: 100%;
}
.routes-item-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}
.routes-item a:hover .routes-item-img img {
    transform: scale(1.05);
}
.routes-item-img img {
    transition: 0.4s ease-in-out;
}
.routes-item-img::before {
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(56.29%, rgba(25, 25, 25, 0)), to(rgba(25, 25, 25, 0.5)));
    background: -o-linear-gradient(top, rgba(25, 25, 25, 0) 56.29%, rgba(25, 25, 25, 0.5) 93.71%);
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 56.29%, rgba(25, 25, 25, 0.5) 93.71%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.routes-item-img::after {
    content: '';
    width: 100%;
    height: 55%;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    -webkit-mask: linear-gradient(0, black, black, transparent);
    mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    mask: linear-gradient(0, black, black, transparent);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
}
.routes-item-tags {
    position: relative;
    z-index: 1;
    gap: 19px;
}
.routes-item-tags span {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 5px;
    background: var(--green);
    color: var(--white);
}
.routes-item .title-32 {
    font-size: clamp(26px, 1vw, 36px);
    position: relative;
    z-index: 1;
    color: var(--white);
}
.routes-grid-more {
    display: none;
    margin-top: 69px;
}
.routes-grid-filtered .routes-item {
    display: none;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 73px;
}
.inventory-item a {
    background: var(--white);
    color: var(--brown);
    border-radius: 10px;
    padding: 44px;
    min-height: 428px;
    text-align: center;
    gap: 32px;

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.inventory-item a > div {
    width: 100%;
}
.inventory-item a .title-36 {
    margin-bottom: 24px;
}
.inventory-item img {
    max-height: 163px;
}

.split-text-image-wrap {
    padding-right: 20px;
}
.split-text-image {
    padding-bottom: 75.4%;
    overflow: hidden;
    border-radius: 10px;
}
.split-text-text-wrap {
    padding-left: 54px;
}
.split-text-text-wrap .title-64 {
    margin-bottom: 30px;
}
.split-text-text-wrap .text-20 {
    padding-right: 9%;
}

.duk-grid {
    padding: 0 13.39%;
    margin-top: 60px;
}
.duk-grid .accordion-item {
    border-bottom: none;
    border-radius: 10px;
    transition: background 0.2s ease-in-out;
}
.duk-grid .accordion-item:not(:first-child) {
    border-top: 1px solid var(--brown);
    border-radius: 0;
}
.duk-grid .accordion-title {
    font-weight: 700;
    color: var(--brown);
    background: transparent !important;
    border-bottom: none !important;
    padding: 27px 48px 27px 32px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
.duk-grid .accordion-title::before {
    display: none;
}
.duk-grid .accordion-title::after {
    content: '';
    width: 23px; height: 13px;
    background: url(../img/arrow-down-brown.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; right: 24px;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.duk-grid .accordion-item .accordion-content {
    transition: color 0.2s ease-in-out;
    padding: 0 119px 20px 32px;
}
.duk-grid .accordion-item.is-active .accordion-title::after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.duk-grid .accordion-item.is-active {
    border: none;
    background: var(--brown) !important;
    border-radius: 10px;
}
.duk-grid .accordion-item.is-active + .accordion-item {
    border: none;
}
.duk-grid .accordion-item.is-active .accordion-title {
    color: var(--white);
    background: transparent !important;
}
.duk-grid .accordion-item.is-active .accordion-content {
    color: var(--white);
}

.category-intro {
    background: var(--brown);
    padding: 46px 0 40px;
}

.routes-grid + .section-btn {
    margin-top: 69px;
}

.route-single-intro {
    position: relative;
    padding: 88px 0 70px;
    min-height: 385px;
}
.route-single-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.route-single-bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.595) 9.13%, rgba(0, 0, 0, 0.105) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.route-single-bg::after {
    content: '';
    width: 60%;
    height: 100%;
    -webkit-mask: linear-gradient(90deg, black, black, transparent);
    mask: linear-gradient(90deg, black, black, transparent);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.route-single-intro .title-64 {
    margin-bottom: 28px;
    max-width: 50%;
}

.route-single-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
    background: var(--brown);
    z-index: 30;
    padding: 21px 0;
}
.route-single-sticky .grid-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    gap: 24px;
}
.route-single-sticky-btns {
    gap: 26px;
}
.route-single-sticky-list ul {
    gap: 50px;
}
.route-single-sticky-list ul li {
    gap: 11px;
}
.route-single-sticky-list ul li img {
    max-height: 25px;
}

.route-single-info {
    overflow: hidden;
}
.route-single-info .section-btn {
    margin-top: 100px;
}
.route-single-info-content-left {
    width: 63.276%;
    padding-right: 5.5%;
}
.route-single-info-content-left .title-64 {
    margin-bottom: 27px;
}
.route-single-info-content-right {
    width: 36.724%;
}
.route-single-info-content-img {
    padding-bottom: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.route-single-info-tags {
    gap: 26px;
    margin-top: 74px;
}
.route-single-info-tags span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 12px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 4px 0px #0000000D;
    box-shadow: 0px 4px 4px 0px #0000000D;
}
.route-single-info-tags span img {
    max-height: 31px;
}

.gallery-owl .owl-stage-outer {
    overflow: visible;
}
.gallery-owl .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.gallery-owl .item a {
    display: block;
    width: 21vw;
    min-width: 413px;
    padding-bottom: 75.8%;
    border-radius: 10px;
    overflow: hidden;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--green) !important;
}

.sleep-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    padding: 0 12.68%;
    margin-top: 105px;
}
.sleep-offers-item {
    padding: 18px 18px 26px;
    background: rgba(174, 174, 174, 0.42);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-radius: 10px;
    overflow: hidden;
}
.sleep-offers-item a {
    -ms-flex-line-pack: justify;
    align-content: space-between;

    height: 100%;
}
.sleep-offers-item a > div {
    width: 100%;
}
.sleep-offers-item-img {
    padding-bottom: 69%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}
.sleep-offers-item .title-36 {
    margin-bottom: 27px;
}

.title-64 + .routes-grid {
    margin-top: 86px;
}

.archive-news-section .title-64 + .news-grid {
    margin-top: 88px;
}
.news-grid-js .news-item {
    display: none;
}
.news-grid-js-trigger {
    display: none;
}

.news-inner-grid {
    padding: 0 20.452%;
}
.news-inner-featured {
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 78px;
}
.news-inner-grid .text-20 {
    margin-bottom: 13px;
}
.news-inner-grid .title-64 {
    margin-bottom: 40px;
}

.entry {
    font-size: clamp(20px, 1.04vw, 26px);
    line-height: 1.37;
}
.entry > :last-child {
    margin-bottom: 0;
}
.entry > :last-child :last-child {
    margin-bottom: 0;
}
.entry > :first-child {
    margin-top: 0;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
    font-family: var(--heading_font);
    font-weight: 400;
    line-height: 1.11;
    margin-bottom: 32px;
}
.entry h1 {
    font-size: clamp(96px, 5vw, 128px);
}
.entry h2 {
    font-size: clamp(54px, 3.33vw, 72px);
    line-height: 1.172;
}
.entry h3 {
    font-size: clamp(48px, 2.5vw, 64px);
}
.entry h4 {
    font-size: clamp(36px, 1.875vw, 48px);
}
.entry h5 {
    font-size: clamp(32px, 1.6vw, 36px);
}
.entry p {
   margin-bottom: 24px;
}
.entry h1 + h2, .entry h1 + h3, .entry h1 + h4, .entry h1 + h5, .entry h1 + h6,
.entry h2 + h2, .entry h2 + h3, .entry h2 + h4, .entry h2 + h5, .entry h2 + h6,
.entry h3 + h2, .entry h3 + h3, .entry h3 + h4, .entry h3 + h5, .entry h3 + h6,
.entry h4 + h2, .entry h4 + h3, .entry h4 + h4, .entry h4 + h5, .entry h4 + h6,
.entry h5 + h2, .entry h5 + h3, .entry h5 + h4, .entry h5 + h5, .entry h5 + h6,
.entry h6 + h2, .entry h6 + h3, .entry h6 + h4, .entry h6 + h5, .entry h6 + h6,
.entry p + h1, .entry p + h2, .entry p + h3, .entry p + h4, .entry p + h5, .entry p + h6,
.entry ul + h1, .entry ul + h2, .entry ul + h3, .entry ul + h4, .entry ul + h5, .entry ul + h6,
.entry ol + h1, .entry ol + h2, .entry ol + h3, .entry ol + h4, .entry ol + h5, .entry ol + h6,
.entry table + h1, .entry table + h2, .entry table + h3, .entry table + h4, .entry table + h5, .entry table + h6 {
    margin-top: 48px;
}
.entry a {
    color: var(--brown);
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.entry a:hover {
    opacity: 0.7;
    color: var(--brown);
}
.entry img {
    border-radius: 10px;
}
.entry p img,
.entry .wp-caption {
    margin: 48px 0;
}
.entry .wp-caption-text {
    font-size: clamp(14px, 0.73vw, 18px);
    margin-top: 8px;
}
.entry ul,
.entry ol {
    margin: 24px 0;
}
.entry > ul,
.entry > ol {
    margin: 0px;
}
.entry ul li ,
.entry ol li  {
    position: relative;
    margin-bottom: 24px;
    padding-left: 34px;
}
.entry ol {
    counter-reset: item;
}
.entry ol ol > li {
    padding-left: 54px;
}
.entry ul > li:before  {
    content: '';
    position: absolute;
    top: 11px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brown);
}
.entry ol > li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
}

.entry .table-scroll {
    margin-bottom: 24px;
}
.entry table {
    width: 100%;
    min-width: 400px;
    color: var(--brown);
    border: 1px solid var(--brown);
}
.entry table th {
    font-size: clamp(16px, 0.82vw, 20px);
    text-align: left;
    color: var(--brown);
    background: transparent;
    padding: 8px 16px;
    border-bottom: 1px solid var(--brown);
    border-right: 1px solid var(--brown);
}
.entry table th:last-child {
    border-right: none;
}
.entry table tbody tr {
    background: transparent !important;
}
.entry table tbody, table tfoot, table thead {
    border: none;
    background-color: transparent;
}
.entry table tr td {
    border-bottom: 1px solid var(--brown);
    border-right: 1px solid var(--brown);
    padding: 8px 16px;
    font-size: clamp(16px, 0.82vw, 20px);
}
.entry table tr td:last-child {
    border-right: none;
}
.entry table p {
    margin-bottom: 0;
}
.entry strong {
    font-weight: 700;
}

.other-news-section {
    overflow: hidden;
}
.other-news-section .grid-container {
    padding-right: 0;
}
.other-news-section .title-64 {
    margin-bottom: 90px;
}
.other-news-owl .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.other-news-owl .item {
    min-width: 413px;
    width: 21vw;
    max-width: 470px;
}

.contact-cards {
    gap: 40px;
}
.title-64 + .contact-cards {
    margin-top: 84px;
}
.contact-cards-item {
    background: var(--white);
    border-radius: 10px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.contact-cards-top-item {
   padding: 10px;
}
.contact-cards-top-item-textbox {
    padding: 0 6%;
    width: 52%;
}
.contact-cards-top-item-textbox .title-48 {
    margin-bottom: 27px;
}
.contact-cards-top-item-textbox ul li:not(:last-child) {
    margin-bottom: 24px;
}
.contact-cards-top-item-textbox ul li a {
    color: var(--brown);
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.contact-cards-top-item-textbox ul li a:hover {
    opacity: 0.7;
    color: var(--brown);
}
.contact-cards-top-item-img {
    width: 48%;
    padding-bottom: 29.2%;
    border-radius: 10px;
    overflow: hidden;
}
.contact-cards-bottom-item {
    padding: 17px;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.contact-cards-bottom-item-textbox {
    padding: 38px;
}
.contact-cards-bottom-item-textbox .title-48 {
    margin-bottom: 26px;
}
.contact-cards-bottom-item-img {
    padding-bottom: 50.7%;
    overflow: hidden;
    border-radius: 10px;
}
.contact-cards-bottom-item-img iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important; 
    height: 100% !important;
}

main.changed-bg {
    background: #E9E5DA;
}
main.changed-bg::after {
    display: none;
}
main.changed-color .title-64:not(.text-white) {
    color: #536C55;
}

.section-gallery {
    overflow: hidden;
}

.home-intro .title-64 {
    margin-bottom: 60px;
}

.section-cta .section-btn {
    margin-top: 48px;
}
.section-cta-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}
.section-cta-img::before {
    content: '';
    width: 100%; height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(12.5%, rgba(0, 0, 0, 0.7225)), color-stop(136.88%, rgba(0, 0, 0, 0.1275)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.7225) 12.5%, rgba(0, 0, 0, 0.1275) 136.88%);
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.7225) 12.5%, rgba(0, 0, 0, 0.1275) 136.88%);
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.section-cta-img::after {
    content: '';
    width: 100%;
    height: 100%;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    -webkit-mask: linear-gradient(0, black, black, transparent);
    mask: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(black), color-stop(black), to(transparent));
    mask: linear-gradient(0, black, black, transparent);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
}

.owl-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}
.owl-carousel .owl-nav button {
    display: inline-block;
    width: 58px; height: 42px;
    border: 1px solid var(--brown) !important;
    border-radius: 3px;
    position: relative;
    transition: 0.2s ease-in-out;
    margin: 0 6px;
}
.owl-carousel .owl-nav button span {
    display: none;
}
.owl-carousel .owl-nav button::after {
    content: '';
    width: 26px; height: 15px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev::after {
    background: url(../img/arrow-left-brown.svg) no-repeat center center / contain;
}
.owl-carousel .owl-nav button.owl-next::after {
    background: url(../img/arrow-right-brown.svg) no-repeat center center / contain;
}
.owl-carousel .owl-nav button:hover {
    background: var(--brown);
}
.owl-carousel .owl-nav button:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.routes-grid-filtered-empty {
    display: none;
}

.cog-form,
.cog-label {
    font-family: var(--body_font) !important;
}

.cog-form__container {
    background: none !important;
}

/* Fallback */
@supports not (font-size: clamp(0px, 1px, 2px)) {
    .footer-top-left .title-64 {font-size: 44px;}
    .title-96 { font-size: 96px; }
    .title-64 { font-size: 54px; }
    .title-48 { font-size: 48px; }
    .title-36 { font-size: 36px; }
    .title-32 { font-size: 32px; }
    .text-20 { font-size: 20px; }
    .text-18 { font-size: 18px; }
    .text-16 { font-size: 16px; }
    .text-14 { font-size: 14px; }
    .header-menu { font-size: 18px; }
    .btn-primary, .btn-primary:focus, .btn-primary:active { font-size: 18px; }
    footer { padding: 44px 0; }
    .home-intro-owl .item { width: 471px; min-height: 675px; padding: 24px 30px; }
    .special-offers-owl .item { width: 400px; }

    .entry { font-size: 20px; }
    .entry h1 { font-size: 96px; }
    .entry h2 { font-size: 54px; }
    .entry h3 { font-size: 48px; }
    .entry h4 { font-size: 36px; }
    .entry h5 { font-size: 32px; }
    .entry .wp-caption-text { font-size: 14px; }
    .entry table th,
    .entry table tr td { font-size: 16px; }

    .routes-item .title-32 {
        font-size: 26px;
    }

    @media (min-width: 1024px) {
        .footer-top-left .title-64 {font-size: 2.4vw}
        .title-96 { font-size: 5vw; }
        .title-64 { font-size: 3.33vw; }
        .title-48 { font-size: 2.5vw; }
        .title-36 { font-size: 1.875vw; }
        .title-32 { font-size: 1.6vw; }
        .text-20 { font-size: 1.04vw; }
        .text-18 { font-size: 0.91vw; }
        .text-16 { font-size: 0.82vw; }
        .text-14 { font-size: 0.73vw; }
        .header-menu { font-size: 0.9vw; }
        .btn-primary, .btn-primary:focus, .btn-primary:active { font-size: 0.9vw; }
        footer { padding: 2% 0; }
        .home-intro-owl .item { width: 24.53vw; min-height: 35.16vw; padding: 5% 7%; }
        .special-offers-owl .item { width: 20.83vw; }

        .entry { font-size: 1.04vw; }
        .entry h1 { font-size: 5vw; }
        .entry h2 { font-size: 3.33vw; }
        .entry h3 { font-size: 2.5vw; }
        .entry h4 { font-size: 1.875vw; }
        .entry h5 { font-size: 1.6vw; }
        .entry .wp-caption-text { font-size: 0.73vw; }
        .entry table th,
        .entry table tr td { font-size: 0.82vw; }
        .routes-item .title-32 {
            font-size: 1vw;
        }
    }

    @media (min-width: 1920px) {
        .footer-top-left .title-64 {font-size: 64px;}
        .title-96 { font-size: 128px; }
        .title-64 { font-size: 72px; }
        .title-48 { font-size: 64px; }
        .title-36 { font-size: 48px; }
        .title-32 { font-size: 36px; }
        .text-20 { font-size: 26px; }
        .text-18 { font-size: 24px; }
        .text-16 { font-size: 20px; }
        .text-14 { font-size: 18px; }
        .header-menu { font-size: 24px; }
        .btn-primary, .btn-primary:focus, .btn-primary:active { font-size: 24px; }
        footer { padding: 88px 0; }
        .home-intro-owl .item { width: 628px; min-height: 900px; padding: 24px 30px; }
        .special-offers-owl .item { width: 533px; }

        .entry { font-size: 26px; }
        .entry h1 { font-size: 128px; }
        .entry h2 { font-size: 72px; }
        .entry h3 { font-size: 64px; }
        .entry h4 { font-size: 48px; }
        .entry h5 { font-size: 36px; }
        .entry .wp-caption-text { font-size: 18px; }
        .entry table th,
        .entry table tr td { font-size: 20px; }

        .routes-item .title-32 {
            font-size: 30px;
        }
    }
}

/* Other */
.text-white {
    color: var(--white);
}

/* Animations */
.animation-element.fade-up {
    transform: translateY(30px);
    opacity: 0;
    transition: transform .7s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-up.in-view {
    transform: translateY(0px);
    opacity: 1;
}

.animation-element.fade-up-later {
    transform: translateY(30px);
    opacity: 0;
    transition: transform .7s 0.25s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.6s 0.25s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-up-later.in-view {
    transform: translateY(0px);
    opacity: 1;
}

.animation-element.fade-up-late {
    transform: translateY(30px);
    opacity: 0;
    transition: transform .7s 0.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.6s 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-up-late.in-view {
    transform: translateY(0px);
    opacity: 1;
}

.animation-element.fade-in {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-in.in-view {
    opacity: 1;
}

.animation-element.fade-in-later {
    opacity: 0;
    transition: opacity 0.6s 0.25s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-in-later.in-view {
    opacity: 1;
}

.animation-element.fade-in-late {
    opacity: 0;
    transition: opacity 0.6s 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-in-late.in-view {
    opacity: 1;
}

/* Media */
@media only screen and (min-width: 2200px) {
    .entry ul > li:before  {
        top: 14px;
    }
} /* end of min-width 2200 */

@media only screen and (max-width: 1680px) {
    .header-right,
    .header-menu ul,
    .header-btn,
    .header-logos {
        gap: 24px;
    }
   .section-wbg-right.section-wbg-right-sm {
        padding-left: 2%;
    }
    .sleep-offers-grid {
        padding: 0 7%;
    }
    .news-inner-grid {
        padding: 0;
        max-width: 1046px;
        width: 100%;
        margin: 0 auto;
    }
} /* end of max-width 1680 */

@media only screen and (max-width: 1540px) {
    .header-logo-secondary img {
        max-height: 45px;
    }
    .header-menu,
    header .header-btn * {
        font-size: 16px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-sideblur-box {
        width: 50%;
    }
    .route-single-sticky-list ul {
        gap: 24px;
    }
    .route-single-sticky-btns {
        gap: 12px;
    }
    .route-single-sticky-list ul li {
        font-size: 16px;
    }
} /* end of max-width 1540 */

@media only screen and (max-width: 1439px) {
    .section-wbg-right {
        width: 100%;
    }
    .section-wbg-left {
        width: 100%;
        margin-bottom: 48px;
        padding-right: 0 !important;
    }
    .section-wbg-right.section-wbg-right-sm {
        padding-left: 0;
    }
    .text-image-section-right {
        padding-right: 0;
    }
    .header-menu,
    header .header-btn * {
        font-size: 14px;
    }
    .footer-top-left {
        width: 26%;
    }
    .footer-top-right {
        width: 74%;
        padding-left: 8.8%;
    }
    .routes-item {
        width: 32%;
        padding-bottom: 32%;
    }
    .routes-filter + .routes-grid {
        margin-top: 100px;
    }
    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .route-single-intro .title-64 {
        max-width: 60%;
    }
    .route-single-sticky-list ul {
        gap: 24px;
    }
    .sleep-offers-grid {
        padding: 0;
    }

} /* end of max-width 1439 */

@media only screen and (max-width: 1339px) {
    .header-right,
    .header-menu ul,
    .header-btn,
    .header-logos {
        gap: 12px;
    }
    .footer-top-left {
        width: 100%;
        max-width: 403px;
    }
    .footer-top-right {
        width: 100%;
        margin-top: 44px;
        padding-left: 0;
    }
} /* end of max-width 1339 */

@media only screen and (max-width: 1239px) {
    .grid-container {
        padding: 0 24px;
    }
    .header-logo-primary img {
        max-height: 70px;
    }
    .header-logo-secondary {
        padding-top: 13px;
    }
    .header-logo-secondary img {
        max-height: 29px;
    }
    header .grid-container {
        gap: 24px;
    }
    .home-intro-owl .item {
        width: 371px;
        min-height: 575px;
    }
    main {
        padding-top: 88px;
    }
    .header-btn a {
        padding-left: 10px;
        padding-right: 10px;
        min-width: 1px;
    }
    .section-sideblur {
        min-height: calc(100vh - 88px);
    }
    .route-single-sticky-list ul li {
        font-size: 14px;
        gap: 6px;
    }
    .route-single-sticky-list ul li img {
        max-height: 18px;
    }
    .route-single-sticky-btns {
        gap: 12px;
    }
    .route-single-sticky {
        top: 88px;
    }
    .route-single-info-content-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 64px;
    }
    .route-single-info-content-right {
        width: 100%;
    }
    .route-single-info .section-btn {
        margin-top: 64px;
    }

    .section-pd-lg {
        padding: 120px 0;
    }
    .section-pd-md {
        padding: 100px 0;
    }
    .section-pd-sm {
        padding: 80px 0;
    }

    .section-pd-top-lg {
        padding-top: 120px;
    }
    .section-pd-top-md {
        padding-top: 100px;
    }
    .section-pd-top-sm {
        padding-top: 80px;
    }

    .section-pd-bottom-lg {
        padding-bottom: 120px;
    }
    .section-pd-bottom-md {
        padding-bottom: 100px;
    }
    .section-pd-bottom-sm {
        padding-bottom: 80px;
    }
    .sleep-offers-grid {
        gap: 24px;
    }
    .contact-cards-top-item-textbox {
        padding: 24px;
        width: 100%;
        margin-bottom: 24px;
    }
    .contact-cards-top-item-img {
        width: 100%;
        padding-bottom: 61.2%;
    }
    .contact-cards-grid, 
    .contact-cards {
        gap: 24px;
    }
    .contact-cards-bottom-item-textbox {
        padding: 17px;
    }
    .contact-cards-grid-bottom {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-cards-bottom-item-img {
        margin-top: 24px;
    }
    .route-single-sticky-btns a,
    .route-single-sticky-btns a:focus,
    .route-single-sticky-btns a:active {
        font-size: 12px;
        padding: 7px 8px;
        min-width: 70px;
    }
} /* end of max-width 1239 */

@media only screen and (min-width: 1024px) {
    .header-right {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
} /* end of min-width 1024 */

@media only screen and (max-width: 1023px) {
    .grid-container {
        padding: 0 20px;
    }
    .title-96,
    .entry h1 {
        font-size: 48px;
    }
    .title-64,
    .entry h2 {
        font-size: 36px !important;
    }
    .title-48,
    .entry h3 {
        font-size: 32px;
    }
    .title-36,
    .entry h4 {
        font-size: 28px;
    }
    .title-32,
    .entry h5 {
        font-size: 24px;
    }
    .text-20,
    .entry {
        font-size: 16px;
    }
    
	.hamburger {
		display: inline-block;
	}
    .header-right {
        display: none;
        position: absolute;
        top: 100%; right: 0; left: 0;
        padding: 24px 4%;
        background: var(--grey);
        max-height: calc(100vh - 88px);
        overflow: auto;
    }
    .header-menu {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .header-menu ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header-menu ul li {
        width: 100%;
    }
    .section-wbg-list-lg-img {
        width: 100%;
        order: 1;
        padding-bottom: 77.81%;
    }
    .section-wbg-list-lg-textbox {
        width: 100%;
        order: 2;
        padding: 24px 0 11px;
    }
    .section-wbg {
        padding: 64px 0 !important;
    }

    .section-pd-lg,
    .section-pd-md {
        padding: 64px 0;
    }
    .section-pd-top-lg {
        padding-top: 64px;
    }
    .section-pd-top-md {
        padding-top: 64px;
    }
    .section-pd-top-sm {
        padding-top: 64px;
    }

    .section-pd-bottom-lg {
        padding-bottom: 64px;
    }
    .section-pd-bottom-md {
        padding-bottom: 64px;
    }
    .section-pd-bottom-sm {
        padding-bottom: 64px;
    }
    
    .section-pd-top-none {
        padding-top: 64px;
    }
    .section-pd-bottom-none {
        padding-bottom: 64px;
    }
    .text-image-section-left {
        width: 100%;
    }
    .text-image-section-right {
        width: 100%;
        padding: 48px 0 0;
    }
    .special-offers-owl .item {
        width: 320px;
    }
    .special-offers-section .title-64 {
        margin-bottom: 32px;
    }
    .section-wbg-list-item {
        min-height: max(265px, 18.18vw);
    }
    .special-offers-owl {
        min-height: 508px;
    }
    .header-menu ul li ul {
        position: relative;
        top: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transition: 0s;
    }
    .news-item-textbox {
        padding: 0;
    }
    .footer-top-left {
        max-width: 370px;
    }
    .footer-top-right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-menu-item {
        width: calc(33.333% - 16px);
    }
    .routes-item {
        width: 49%;
        padding-bottom: 49%;
    }
    .routes-filter + .routes-grid {
        margin-top: 64px;
    }
    .inventory-grid {
        gap: 20px;
    }
    .split-text-text-wrap {
        padding-left: 0;
        margin-bottom: 48px;
    }
    .split-text-image-wrap {
        padding-right: 0;
    }
    .duk-grid {
        padding: 0;
        margin-top: 48px;
    }
    .route-single-sticky {
        padding: 12px 0;
    }
    .route-single-sticky .grid-container,
    .route-single-sticky-list ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px;
    }
    .route-single-sticky-list ul li img {
        max-height: 14px;
    }
    .route-single-info-tags {
        gap: 12px;
        margin-top: 48px;
    }
    .route-single-info-tags span {
        padding: 10px 18px;
        width: calc(50% - 6px);
    }
    .route-single-info-content-left {
        margin-bottom: 48px;
    }
    .route-single-info .section-btn {
        margin-top: 48px;
    }
    .gallery-owl .item a {
        width: 35vw;
        min-width: 280px;
    }
    .sleep-offers-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        margin-top: 64px;
    }
    .archive-news-section .title-64 + .news-grid {
        margin-top: 64px;
    }
    .news-inner-featured {
        margin-bottom: 64px;
    }
    .entry ul > li:before  {
        top: 9px;
        left: 0;
    }
    .entry ul li, .entry ol li {
        padding-left: 28px;
    }
    .entry ol ol > li {
        padding-left: 40px;
    }
    .news-grid {
        gap: 24px;
    }
    .other-news-owl .item {
        min-width: 288px;
        width: 31vw;
        max-width: 340px;
    }
    .other-news-section .title-64 {
        margin-bottom: 64px;
    }
    .contact-cards-top-item-textbox {
        margin-bottom: 0;
    }
    .contact-cards-bottom-item-img {
        margin-top: 0;
    }
    .title-64 + .contact-cards {
        margin-top: 64px;
    }
} /* end of max-width 1023 */

@media screen and (max-width:639px) {
    footer {
        font-size: 14px;
    }
	.footer-top {
        padding-bottom: 42px;
        margin-bottom: 42px;
    }
    .footer-bottom {
        gap: 24px;
    }
    .footer-copywrite {
        order: 2;
        width: 100%;
    }
    .footer-socials {
        order: 1;
        width: 100%;
    }
    .footer-socials {
        gap: 24px;
    }
    .footer-socials ul {
        gap: 24px;
    }
    .home-intro-owl .item {
        width: 280px;
        min-height: 375px;
        padding: 24px;
    }
    .special-offers-owl .item {
        width: 280px;
    }
    .section-wbg-list-item {
        width: 100%;
    }
    .special-offers-owl {
        min-height: 468px;
    }
    .header-logo-secondary img {
        max-height: 34px;
    }
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .footer-menu-item {
        width: 100%;
    }
    .section-wbg-img-sideblur::before {
        width: 100%;
    }
    .section-sideblur-box {
        width: 100%;
    }
    .routes-grid {
        gap: 24px;
    }
    .routes-item {
        width: 100%;
        padding-bottom: 100%;
    }
    .routes-filter + .routes-grid {
        margin-top: 32px;
    }
    .routes-filter {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;

        gap: 12px;
    }
    .routes-filter select,
    .routes-filter-clear {
        width: 100%;
    }
    .inventory-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .inventory-item a {
        padding: 24px;
        min-height: 1px;
    }
    .inventory-grid {
        margin-top: 48px;
    }
    .route-single-intro .title-64 {
        max-width: 100%;
    }
    .other-news-section .title-64 {
        margin-bottom: 48px;
    }
    .title-64 + .contact-cards {
        margin-top: 48px;
    }
    .contact-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-cards-top-item-textbox {
        padding: 24px 12px;
    }
    .contact-cards-bottom-item-textbox {
        padding: 17px 7px;
    }
    .contact-cards-bottom-item-img {
        padding-bottom: 100%;
    }
} /* end of max-width 639 */