/***
*Table of contents*

Global
Header
Footer
Global element
Home 
Contact
FAQ
Blog post gallery

***/

/* ==============================
Global
============================== */
html {
	scroll-behavior: smooth !important;
}

:root {
	--primary-color: #002d74;
	--secondary-color: #00bfd7;
	--accent-color: #ff4612;
	--accent-color-light: #ea7200;
	--text-color: #4c4c4c;
	--bg-primary: #65cbc9;
	--bg-secondary: #61b4e4;
	--bg-global: #f7f7f7;
	--link-color: #ffd100;
	--success-color: #64c00d;
	--error-color: #d80505;
	--font-family: Outfit, Helvetica, Arial, Verdana, sans-serif;
	--font-size-a: clamp(3rem, 0.0455rem + 7.8788vw, 6.25rem);
	--font-size-b: clamp(2.5rem, 0.7955rem + 4.5455vw, 4.375rem);
	--font-size-c: clamp(2.1875rem, 1.3352rem + 2.2727vw, 3.125rem);
	--font-size-d: clamp(1.875rem, 1.3068rem + 1.5152vw, 2.5rem);
	--font-size-e: clamp(1.25rem, 0.9659rem + 0.7576vw, 1.5625rem);
	--font-size-f: 20px;
	--font-size-lead: clamp(1.6875rem, 1.233rem + 1.2121vw, 2.1875rem);
	--font-size-p: clamp(1rem, 0.8864rem + 0.303vw, 1.125rem);
}

#page h2,
#page h3,
#page h4,
#page h5,
#page h6,
#page .size-h2 p,
#page .size-h3 p,
#page .size-h4 p,
#page .size-h5 p,
#page .size-h6 p {
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 0;
	/* max-width: 1180px;
	margin: 0 auto; */
}

#page h1,
#page .size-h1 p {
	font-size: var(--font-size-a);
	color: #fff;
	line-height: 1.05;
	margin-bottom: 0;
}

#page h1 span {
	display: block;
	font-weight: 100;
	font-size: var(--font-size-d);
}

#page h2,
#page .size-h2 p {
	font-size: var(--font-size-b);
}

#page .secondary-heading h2,
#page .secondary-color h2,
#page .secondary-heading h3,
#page .secondary-heading h6 {
	color: var(--secondary-color);
}

#page .secondary-heading h2,
#page h3,
#page .size-h3 p {
	font-size: var(--font-size-c);
}

#page h4,
#page .size-h4 p,
#page .size-h4 h3 {
	font-size: var(--font-size-d);
}

#page h5,
#page .size-h5 p {
	font-size: var(--font-size-e);
}

#page h6,
#page .size-h6 p {
	font-size: var(--font-size-f);
	color: var(--text-color);
}

#page .primary-heading h6 {
	color: var(--primary-color);
}

#page .lead-para p {
	font-size: var(--font-size-lead);
	line-height: 1.15;
	font-weight: 500;
	color: var(--primary-color);
}

#page .lead-para a {
	font-size: var(--font-size-lead);
}

#page a,
#page p {
	font-size: var(--font-size-p);
	margin-bottom: 0;
}

#page a {
	text-decoration: none;
	transition: all 0.3s;
	font-weight: 700;
}

#page a:hover {
	color: var(--link-color);
}

#page a.btn {
	color: var(--primary-color);
	background: var(--link-color);
	padding: 15px 20px;
	border-radius: 50px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

#page a.btn:hover,
#page a.dt-btn:hover {
	color: #fff;
	background: var(--accent-color);
}

#page p .asterisk,
#page .asterisk {
	color: var(--link-color);
}

/* list style */
#main ul {
	list-style: none;
	padding: 10px 0 0 10px;
	margin: 0;
}

#main ul li {
	position: relative;
	margin: 4px 0 8px 0;
	padding-left: 1.2em;
	font-size: var(--font-size-p);
	color: var(--text-color);
}

#main ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background-color: var(--secondary-color);
	border-radius: 50%;
}

#main ol {
	list-style: none;
	padding: 10px 0 0 10px;
	margin: 0;
	counter-reset: list-counter;
}

#main ol li {
	position: relative;
	margin: 0.5em 0;
	padding-left: 1.8em;
	font-size: var(--font-size-p);
	color: var(--text-color);
	counter-increment: list-counter;
}

#main ol li::before {
	content: counter(list-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	color: var(--secondary-color);
}

#main .ult-modal-input-wrapper {
	margin-bottom: 0;
}
/* ==============================
Header
============================== */
/* top ber */

/* main header */
#page .header-bar {
	padding-top: 40px;
}

#page .side-header .header-bar {
	padding-top: 150px;
}

#page .branding,
#page .header-bar .top-line-right {
	transition: all 0.5s;
}

#page .branding.scroll-on {
	transform: translateX(-150%);
}

#page .header-bar .top-line-right.scroll-on {
	transform: translateX(100%);
}

#page .masthead .menu-toggle {
	position: absolute;
	right: 130px;
	z-index: 1;
	padding: 14px 50px 14px 25px;
	border-radius: 25px 0px 0px 25px;
	background: var(--link-color);
}

#page .masthead .menu-toggle::before,
#page .masthead .menu-toggle::after {
	display: none;
}

#page .masthead .menu-toggle:hover {
	background: var(--accent-color);
}

#page .masthead .menu-toggle a {
	letter-spacing: 3.6px;
}

#page .masthead:not(#phantom) .menu-line:before {
	background: var(--primary-color) !important;
}

#page .masthead .mini-widgets .phone {
	display: inline-block;
	background: var(--primary-color);
	padding: 15px 25px;
	position: absolute;
	z-index: 2;
	border-radius: 25px 0px 0px 25px;
	color: #fff;
	font-weight: 700;
	font-family: Outfit;
}

#page .masthead .mini-widgets .phone:hover {
	background: var(--accent-color);
	opacity: 1;
}

#page .masthead .mini-widgets .phone i {
	color: #fff;
	font-size: 14px;
}

/* translator  */
#page .translator-dropdown-container {
	position: absolute;
	top: 15px;
	right: 30px;
	z-index: 1000 !important;
}

#page .translator-dropdown-container::before {
	content: "Language:";
	position: absolute;
	color: #fff;
	transform: translateX(-120%);
}

.page-id-3331 #page .translator-dropdown-container::before {
	color: var(--text-color);
}

#page .translator-dropdown-current-language span {
	display: none;
}

#page .translator-dropdown-current-language-arrow {
	display: none !important;
}

#page .translator-dropdown-body {
	background-color: transparent !important;
	height: auto !important;
	border: none !important;
	float: none !important;
	padding: 0 !important;
	display: inline-block;
}

#page .translator-dropdown-body > p {
	vertical-align: middle !important;
	display: inline-block !important;
	padding: 0 !important;
}

#page .translator-dropdown-languages-list-opened .translator-dropdown-body {
	box-shadow: none !important;
}

#page
	.translator-dropdown-languages-list-opened
	.translator-dropdown-languages-list-scroll {
	background-color: #fff !important;
	position: absolute !important;
	padding: 10px;
	left: -55px;
}

/* main menu */
.sticky-header #page .side-header {
	width: 100%;
	max-width: 900px;
}

#page .menu-close-toggle .menu-toggle-caption {
	letter-spacing: 5px;
	font-size: var(--font-size-e);
	font-weight: 700;
	margin-right: 0;
}

#primary-menu .menu-item a {
	flex-grow: initial;
}

#primary-menu .menu-item.depth-0 > a .menu-text {
	font-size: var(--font-size-c);
	line-height: 1.2;
}

#page .sub-downwards li.has-children.open-sub > .next-level-button {
	transform: none;
}

#primary-menu .menu-item .next-level-button {
	width: 40px;
	height: 40px;
	position: relative;
	margin-top: 24px;
	margin-bottom: 0px;
}

#primary-menu .menu-item .next-level-button::before,
#primary-menu .menu-item .next-level-button::after {
	content: "";
	width: 5px;
	height: 20px;
	background: var(--primary-color);
	position: absolute;
	top: 10px;
}

#primary-menu .menu-item .next-level-button::before {
	transform: rotate(-45deg);
	left: 5px;
}

#primary-menu .menu-item .next-level-button::after {
	transform: rotate(45deg);
	left: 16px;
}

#primary-menu .menu-item .next-level-button:hover::before,
#primary-menu .menu-item .next-level-button:hover::after {
	background: var(--accent-color);
}

#primary-menu .menu-item .next-level-button svg {
	display: none;
}

/* mobile header */
.masthead .mobile-header-bar {
}

#page .mobile-branding,
#page .mobile-navigation,
#page .mobile-mini-widgets {
	transition: all 0.5s;
}

#page .mobile-branding {
	max-width: 126px;
}

#page .mobile-branding.scroll-on {
	transform: translateX(-250px);
}

#page .mobile-navigation {
	position: absolute;
	right: 50px;
	top: 20px;
	background: var(--link-color);
	padding: 4px 20px;
	border-radius: 25px 0px 0px 25px;
}

#page .mobile-navigation.scroll-on {
	transform: translateX(250px);
}

#page .mobile-mini-widgets .multipurpose_1 {
	height: 50px;
	padding: 0 20px 0 25px;
	position: absolute;
	right: 0;
	margin: 0;
	top: 20px;
	background: var(--primary-color);
	border-radius: 25px 0px 0px 25px;
}

#page .mobile-mini-widgets.scroll-on {
	transform: translateX(250px);
}

/* mobile menu */
#page .mobile-main-nav .next-level-button svg {
	color: var(--primary-color);
	fill: var(--primary-color);
}

/* booking widget */
#rcm-widget {
	position: relative;
}

#rcm-widget .rcm-widget-container {
	position: fixed;
	top: 30%;
	right: 0;
	z-index: 100;
}

#rcm-widget .rcm-widget-wrap {
	position: relative;
}

#rcm-widget .rcm-widget-wrap a {
	position: absolute;
	right: 25px;
	color: var(--primary-color);
	background: var(--secondary-color);
	padding: 16px;
	top: 50%;
	width: 210px;
	transform: translateY(0) rotate(-90deg);
	transform-origin: right center;
	display: inline-block;
	border-radius: 25px 25px 0 0;
	text-align: center;
	font-weight: 700;
	transition: all 0.6s;
}

#rcm-widget.fc-active .rcm-widget-wrap a.regular-booking,
#rcm-widget .rcm-widget-wrap a.regular-booking.scroll-on,
#rcm-widget .rcm-widget-wrap a.mobile-booking.scroll-on {
	right: -50px;
}

#rcm-widget .rcm-widget-wrap a:hover {
	color: #fff;
	background: var(--accent-color);
}

#rcm-widget .rcm-widget-wrap a.mobile-booking {
	display: none;
}

#rcm-widget .rcm-booking-container {
	background: var(--primary-color);
	border-radius: 50px 0 0 50px;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	position: absolute;
	width: 450px;
	right: 0;
	transform: translate(110%, 0);
}

#rcm-widget.fc-active .rcm-booking-container {
	transform: translate(0, 0);
}

#rcm-widget .rcm-booking-form {
	padding: 40px 40px 25px;
}

#rcm-widget .rcm-booking-form p {
	font-size: 30px;
	color: #fff;
	font-weight: 700;
}

@media only screen and (max-width: 600px) {
	#rcm-widget .rcm-widget-wrap a.mobile-booking {
		display: inline-block;
		width: 175px;
	}
	#rcm-widget .rcm-widget-wrap a.regular-booking,
	#rcm-widget .rcm-booking-container {
		display: none;
	}
	#page .translator-dropdown-container {
		top: 4px;
		right: 16px;
	}
	#page .translator-dropdown-container::before {
		display: none;
	}
	#page .mobile-navigation,
	#page .mobile-mini-widgets .multipurpose_1 {
		top: 35px;
	}
}

/* ==============================
Footer
============================== */
#page #footer {
	position: relative;
}

#page #footer .size-h2 p span,
#page #footer .size-h5 p {
	color: var(--secondary-color);
}

#page #footer .size-h5 p {
	margin-bottom: 0.5rem;
}

#page #footer a {
	font-weight: 700;
	color: var(--link-color);
}

#page #footer a:hover {
	color: var(--accent-color);
}

#page #footer a.btn {
	color: var(--primary-color);
	margin-right: 1rem;
}

#page #footer a.btn:hover {
	color: #fff;
}

#page #footer::before {
	content: "";
	position: absolute;
	top: -15px;
	left: 0;
	height: 50px;
	width: 100vw;
	background-image: url(/wp-content/uploads/footer-rainbow-trail.png);
	background-repeat: no-repeat;
	background-size: cover;
}
#page #footer #custom_html-5 .custom-html-widget,
#page #footer .depot-wrapper,
#page #footer .image-wrapper,
#page #footer .footer-link-wrapper {
	display: flex;
	gap: 48px;
}

#page #footer .image-wrapper {
	max-height: 100px;
}

#page #footer .footer-link-wrapper {
	align-items: center;
}

#page #footer .social-icons,
#page #footer .internal-links {
	display: flex;
	gap: 15px;
	flex-wrap: nowrap;
	align-items: center;
}

#page #footer .social-icons a {
	text-align: center;
	font-size: 30px;
	display: inline-block;
	width: 50px;
	line-height: 50px;
	height: 50px;
	background: var(--link-color);
	border-radius: 50%;
	color: var(--text-color);
}

#page #footer .social-icons a:hover {
	background: var(--accent-color);
}

#page #footer .internal-links .internal-link {
	font-weight: 400;
}

@media only screen and (max-width: 1100px) {
	#page #footer #custom_html-5 .custom-html-widget,
	#page #footer .footer-link-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media only screen and (max-width: 767px) {
	#page #footer .depot-wrapper,
	#page #footer .footer-link-wrapper,
	#page #footer .internal-links {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}
	#page #footer .image-wrapper {
		gap: 16px;
		flex-wrap: wrap;
		max-height: 100%;
	}
	#page #footer .social-icons {
		gap: 8px;
	}
	#page #footer a.btn {
		display: inline-block;
	}
}

/* bottom bar */
#page #bottom-bar {
	font-size: 15px;
}
#page #bottom-bar a {
	font-weight: 700;
	color: var(--link-color);
}

#page #bottom-bar a:hover {
	color: var(--accent-color);
	text-decoration: none;
}

#page .scroll-top {
	display: none;
}

/* ==============================
Global element
============================== */
/* no-hero-image-page */
#page .no-hero-image-page h1 {
	color: var(--primary-color);
}
/* page-hero-section */
#page .page-hero-section .upb_row_bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 30%,
		rgba(0, 0, 0, 0.6) 100%
	);
}
/* page-hero-heading */
#page .page-hero-heading {
	/* margin-left: 15px; */
	max-width: 990px;
	margin-bottom: -50px;
}

/* page-hero-rainbow */
#page .page-hero-rainbow img {
	transform: translate(0, 30%);
}

/* page-hero-scroll */
#page .page-hero-scroll a {
	color: #fff;
	font-weight: normal;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
	position: absolute;
	bottom: 15px;
	left: 80px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	transition: all 0.3s;
}

#page .page-hero-scroll a:hover {
	color: var(--accent-color);
}

/* gradient-bg */
.gradient-bg {
	background: linear-gradient(
			180deg,
			rgba(0, 191, 215, 0) 0%,
			rgba(0, 191, 215, 0.15) 100%
		),
		#f7f7f7;
}

/* next-section */
#next-section h2 {
	max-width: 960px;
}

/* two column section */
#page .page-lead-section,
#page .inner-row-flex,
#page .inner-row-flex-small-gap,
#page .accessories-wrapper {
	display: flex;
}

#page .page-lead-section,
#page .inner-row-flex {
	gap: 100px;
}

#page .inner-row-flex-small-gap,
#page .accessories-wrapper {
	gap: 50px;
}

#page .page-lead-section::before,
#page .page-lead-section::after,
#page .inner-row-flex::before,
#page .inner-row-flex::after,
#page .inner-row-flex-small-gap::before,
#page .inner-row-flex-small-gap::after,
#page .accessories-wrapper::before,
#page .accessories-wrapper::after {
	display: none;
}

@media only screen and (max-width: 992px) {
	#page .inner-row-flex,
	#page .inner-row-flex-small-gap,
	#page .accessories-wrapper,
	#page .page-lead-section {
		gap: 36px;
	}
	#page .page-lead-section {
		flex-direction: column;
	}
	#page .page-lead-section > .wpb_column {
		width: 100%;
		max-width: 760px;
	}
}

@media only screen and (max-width: 767px) {
	#page .inner-row-flex,
	#page .inner-row-flex-small-gap {
		flex-direction: column;
	}
}

/* custom spacer */
#page .page-padding {
	height: 200px !important;
}

#page .section-padding,
#page .rainbow-padding {
	height: 100px !important;
}

#page .wrapper-padding {
	height: 50px !important;
}

#page .element-padding {
	height: 25px !important;
}

@media only screen and (max-width: 767px) {
	#page .page-padding {
		height: 144px !important;
	}

	#page .section-padding {
		height: 72px !important;
	}

	#page .wrapper-padding {
		height: 36px !important;
	}

	#page .element-padding {
		height: 18px !important;
	}
}
/* campervan-image */
#page .campervan-image {
	margin-top: -100px;
}

/* narrow-para-wrapper */
#page .narrow-para-wrapper {
	max-width: 750px;
	margin: 0 auto;
}

/* cards */
#page .cards-wrapper {
	display: flex;
	gap: 10px;
}

#page .cards-wrapper::before,
#page .cards-wrapper::after {
	display: none;
}

.card-sc,
.card-sc-plus {
	position: relative;
}

.home .card-sc::before,
.home .card-sc-plus::before {
	content: "self-contained";
	position: absolute;
	left: 50%;
	background: var(--accent-color);
	color: #fff;
	transform: translate(-50%, -100%);
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 1.6px;
	padding: 10px 25px;
	text-transform: uppercase;
	border-radius: 15px 15px 0 0;
	white-space: nowrap;
}

.card-heading {
	border-radius: 50px 50px 0 0;
}

#page .card-heading h3 {
	font-size: var(--font-size-d);
	color: #fff;
}

.card-heading,
.card-sub-heading {
	padding: 15px 25px;
	color: #fff;
}
.card-standard .card-heading {
	background: #4c4c4c;
}

.card-sc .card-heading {
	background: var(--secondary-color);
}

.card-sc-plus .card-heading,
.card-specification .card-heading {
	background: var(--primary-color);
}

.card-standard .card-sub-heading {
	background: #5e5e5e;
}

.card-sc .card-sub-heading {
	background: #1ac5db;
}

.card-sc-plus .card-sub-heading {
	background: #1a4282;
}

.card-specification .card-sub-heading {
	background: var(--secondary-color);
}

.card-specification .card-content {
	background: #fff;
}

#main .card-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#main .card-content li {
	padding: 15px 20px;
	margin: 0;
}

#main .card-content li::before {
	display: none;
}

.card-standard li:nth-child(odd) {
	background-color: #ededed;
}
.card-sc li:nth-child(odd) {
	background-color: #e6f9fb;
}
.card-sc-plus li:nth-child(odd) {
	background-color: #e6eaf1;
}

.card-standard li:nth-child(even) {
	background-color: #f6f6f6;
}
.card-sc li:nth-child(even) {
	background-color: #f2fcfd;
}
.card-sc-plus li:nth-child(even) {
	background-color: #f2f5f8;
}

.card-standard li:last-child {
	border-bottom: 10px solid #4c4c4c;
}
.card-sc li:last-child {
	border-bottom: 10px solid var(--secondary-color);
}
.card-sc-plus li:last-child,
.card-specification li:last-child {
	border-bottom: 10px solid var(--primary-color);
}

.card-content strong {
	text-transform: uppercase;
	color: var(--primary-color);
}

.card-content span {
	font-weight: 700;
}

#main table .no,
.card-content .no {
	color: var(--error-color);
}

#main table .yes,
.card-content .yes {
	color: var(--success-color);
}

@media only screen and (max-width: 992px) {
	#page .cards-wrapper {
		flex-wrap: wrap;
		justify-content: center;
		gap: 36px;
	}

	#page .cards-wrapper > .wpb_column {
		width: 50%;
		max-width: 380px;
	}
}

@media only screen and (max-width: 767px) {
	#page .cards-wrapper > .wpb_column {
		width: 100%;
		max-width: 380px;
	}
}

/* review and rating overview  */
#main .rating-wrapper p {
	color: var(--primary-color);
	text-align: center;
}
#main .rating-wrapper p span {
	font-size: var(--font-size-p);
}

@media only screen and (max-width: 767px) {
	#main .rating-wrapper > .vc_col-sm-4:not(:last-child) {
		margin-bottom: 16px;
	}
}

/* rainbow images */
.rainbow-wrapper {
	position: relative;
}

.rainbow-image {
	position: absolute;
	z-index: 10;
}

.top-half {
	transform: translateY(50%);
	bottom: 0;
}

.bottom-half {
	transform: translateY(-50%);
	top: 0;
}

.center-rainbow {
	left: 50%;
}

.top-half.center-rainbow {
	transform: translate(-50%, 50%);
}

.bottom-half.center-rainbow {
	transform: translate(-50%, -50%);
}

/* deal-teaser */
#main .deal-teaser {
	cursor: pointer;
	margin-bottom: 25px;
}

#main .deal-teaser > .vc_col-sm-8 {
	background: var(--primary-color);
	min-height: 300px;
	height: 100%;
	padding: 50px;
	border-radius: 0 50px 50px 0;
}

#main .deal-hidden-row {
	display: none;
	padding-top: 30px;
}

#main .deal-teaser p {
	color: #fff;
}

#main .deal-title h3 {
	color: var(--secondary-color);
}

#main .deal-subtitle {
	margin-bottom: 30px;
}

#main .deal-teaser .deal-label p {
	color: var(--secondary-color);
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 2.25px;
	text-transform: uppercase;
}

#main .deal-info {
	margin-bottom: 15px;
	padding: 0 10px 0 0;
}

#main .deal-text a {
	color: var(--link-color);
}

#main .deal-text a:hover {
	color: var(--accent-color);
}

@media only screen and (max-width: 992px) {
	#main .deal-teaser {
		display: flex;
		flex-direction: column;
	}
	#main .deal-teaser > .wpb_column {
		width: 100%;
	}
	#main .deal-teaser > .vc_col-sm-8 {
		border-radius: 0 0 50px 50px;
		min-height: 100%;
		padding: 36px;
	}
}

/* FAQ toggle  */
#main .vc_do_toggle h4 {
	font-size: var(--font-size-e);
	color: var(--secondary-color);
	transition: all 0.3s;
}
#main .vc_do_toggle h4:hover,
#main .vc_do_toggle.vc_toggle_active h4 {
	color: var(--primary-color);
}

#main .vc_do_toggle .vc_toggle_content {
	margin-left: 20px;
}

/* ==============================
Home
============================== */
#home-hero h1 {
	margin-top: 6vw;
	text-align: center;
}

#home-hero .vc_column-inner > div {
	flex-grow: 1;
}

#home-hero .vc_column-inner .wpb_single_image {
	position: absolute;
	bottom: 0;
}

#home-hero .home-page-hero-campervan {
	left: 50%;
	transform: translateX(-50%);
}

#page .home-hero-image-small {
	display: none;
}

#page #home-hero .page-hero-scroll a {
	z-index: 10;
}

@media only screen and (max-width: 992px) {
	#home-hero h1 {
		margin-top: 150px;
	}
	#page #home-hero .page-hero-scroll a {
		left: -10px;
	}
	#page .home-hero-image-large.home-page-hero-campervan {
		width: 65%;
	}
}

@media only screen and (max-width: 787px) {
	#home-hero h1 {
		margin-top: 120px;
	}
	#page #home-hero .page-hero-scroll a {
		left: 60px;
		bottom: 130px;
	}
}

@media only screen and (max-width: 600px) {
	#page #home-hero .page-hero-scroll a {
		left: 10px;
		bottom: 55px;
	}
	#page .home-hero-image-small {
		display: block;
		width: 100%;
	}
	#page .home-hero-image-large {
		display: none;
	}
	#home-hero .upb_video-wrapper::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		height: 50px;
		width: 100vw;
		background-image: url(/wp-content/uploads/Escape_Rentals-rainbow-trail-600px-wide.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: bottom right;
	}
}

#first-section .promises-wrapper {
	background: var(--primary-color);
	padding: 50px;
	border-radius: 0 50px 50px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

#first-section .promises-wrapper::before,
#first-section .promises-wrapper::after {
	display: none;
}

#first-section .promises-wrapper > div {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

@media only screen and (max-width: 992px) {
	#first-section .promises-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 600px) {
	#first-section .promises-wrapper {
		gap: 24px;
	}
	#first-section .promises-wrapper {
		grid-template-columns: repeat(1, 1fr);
		padding: 50px;
		margin: 0 -15px;
		border-radius: 0 0 50px 50px;
	}
}

#second-section .right.vc_col-sm-6 .vc_column-inner {
	max-width: 550px;
	margin-left: 100px;
	margin-right: auto;
	padding-right: 50px;
}

@media only screen and (max-width: 992px) {
	#second-section .vc_row-o-equal-height {
		flex-direction: column;
		gap: 50px;
	}
	#second-section .vc_row-o-equal-height > div {
		width: 100%;
		min-height: 50vh;
	}
	#second-section .right.vc_col-sm-6 .vc_column-inner {
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
		padding-right: 35px;
		padding-left: 35px;
	}
}

/* fourth-section */
#fourth-section {
	overflow: hidden;
}

#fourth-section .lead-para {
	color: var(--primary-color);
	font-weight: 500;
}

@media only screen and (max-width: 992px) {
	#page #fourth-section .cards-wrapper {
		gap: 64px;
	}
}

/* fifth-section */
#fifth-section h2 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px;
	font-size: var(--font-size-a);
	background: var(--primary-color);
	color: var(--secondary-color);
	border-radius: 0 0 50px 50px;
}

#fifth-section h2 span {
	color: #fff;
}

#fifth-section .reason-content {
	background: var(--secondary-color);
	border-radius: 50px;
	z-index: 1;
}

#fifth-section .reason-content h3 {
	background: var(--primary-color);
	color: #fff;
	padding: 25px 50px 25px;
	border-radius: 50px 50px 0 0;
	font-size: var(--font-size-b);
}

#fifth-section .reason-content p {
	padding: 25px 50px 0;
	font-size: var(--font-size-e);
	line-height: 1.2;
}

#fifth-section .reason-content p a {
	color: var(--link-color);
	font-size: inherit;
}

#fifth-section .reason-content p a:hover {
	color: var(--accent-color);
}

#fifth-section .reason-content .btn-align-left {
	padding: 25px 50px 50px;
	border-radius: 0 0 50px 50px;
}

#fifth-section .reason-content .reason-content-double-btn {
	padding: 25px 50px 50px 50px;
	width: fit-content;
}

#fifth-section .reason-content .reason-content-double-btn > div {
	display: flex;
	gap: 10px;
}

#fifth-section .reason-row {
	display: flex;
	gap: 100px;
}

#fifth-section .reason-row::before,
#fifth-section .reason-row::after {
	display: none;
}
#fifth-section .reason-over-wrap {
	margin-top: -125px;
}

#fifth-section .reason-right .left-rainbow img {
	transform: translate(150px, 70%);
}

#fifth-section .reason-left .right-rainbow img {
	transform: translate(-150px, 50%);
}

#fifth-section .end-rainbow img {
	transform: translateY(100px);
}

#fifth-section .tablet-rainbow {
	display: none;
}

@media only screen and (max-width: 1360px) {
	#fifth-section h2 {
		padding: 35px;
	}

	#fifth-section .reason-content h3 {
		padding: 25px 35px 25px;
	}

	#fifth-section .reason-content p {
		padding: 25px 35px 0;
	}

	#fifth-section .reason-content .btn-align-left {
		padding: 25px 35px 35px;
	}
	#fifth-section .reason-content .reason-content-double-btn {
		padding: 25px 35px 35px 35px;
	}
}

@media only screen and (max-width: 992px) {
	#fifth-section .reason-right {
		flex-direction: column-reverse;
	}
	#fifth-section .reason-left {
		flex-direction: column;
	}
	#fifth-section .reason-row {
		gap: 0;
	}
	#fifth-section .reason-row .vc_col-sm-6 {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	#fifth-section .reason-left .right-rainbow,
	#fifth-section .reason-right .left-rainbow,
	#fifth-section .desktop-rainbow {
		display: none;
	}
	#fifth-section .tablet-rainbow {
		display: block;
	}
	#fifth-section .reason-over-wrap {
		margin-top: 0;
	}
	#fifth-section .reason-over-wrap:last-child {
		margin-bottom: -3px;
		margin-top: -3px;
	}
}

@media only screen and (max-width: 600px) {
	#fifth-section .reason-content .reason-content-double-btn > div {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* sixth-section */
#sixth-section .upb_row_bg {
	opacity: 0.25;
}

#sixth-section .lead-para p {
	max-width: 767px;
	margin: 0 auto;
	color: var(--secondary-color);
}

/* eighth-section */
#eighth-section h2,
#eighth-section .lead-para p {
	color: var(--secondary-color);
}

#eighth-section p {
	color: #fff;
}

#eighth-section .left.vc_col-sm-6 .vc_column-inner {
	max-width: 550px;
	margin-right: 100px;
	margin-left: auto;
	padding-left: 50px;
}

@media only screen and (max-width: 992px) {
	#eighth-section .vc_row-o-equal-height {
		flex-direction: column;
	}
	#eighth-section .vc_row-o-equal-height > div {
		width: 100%;
		min-height: 50vh;
	}
	#eighth-section .left.vc_col-sm-6 .vc_column-inner {
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
		padding-right: 35px;
		padding-left: 35px;
	}

	#eighth-section .vc_custom_1758516218302 {
		background-position: bottom !important;
	}
}

/* ninth-section */
#ninth-section h2 {
	max-width: 767px;
	margin: 0 auto;
}

#ninth-section p {
	background: var(--text-color);
	text-align: center;
	padding: 10px 15px;
	border-radius: 0 0 25px 25px;
	color: #fff;
	font-weight: 700;
}

#ninth-section .small-wrapper {
	text-align: right;
}

#ninth-section .included-info-wrapper::before,
#ninth-section .included-info-wrapper::after {
	display: none;
}

#ninth-section .included-info-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

#ninth-section .included-info-wrapper > .vc_column_container {
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
}

@media only screen and (max-width: 992px) {
	#ninth-section .included-info-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
		justify-content: center;
	}
}

/* tenth-section */
#tenth-section h2,
#tenth-section p {
	color: #fff;
}

#tenth-section .lead-para p {
	color: var(--secondary-color);
}
/* eleventh-section */
#eleventh-section h2 {
	color: #fff;
	max-width: 780px;
}

#eleventh-section .safe-travel-info-wrapper::before,
#eleventh-section .safe-travel-info-wrapper::after {
	display: none;
}

#eleventh-section .safe-travel-info-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

#eleventh-section .vc_col-sm-3 {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

@media only screen and (max-width: 992px) {
	#eleventh-section .safe-travel-info-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media only screen and (max-width: 600px) {
	#eleventh-section .safe-travel-info-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}

#twelfth-section .fc-post-overview {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

#twelfth-section .fc-post-image-wrapper {
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

#twelfth-section .fc-post-image img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: all 0.3s;
}

#twelfth-section .fc-post-title {
	padding: 15px;
	width: 80%;
	margin: 0 auto;
	background: var(--bg-global);
	border-radius: 15px;
	transform: translateY(-20px);
	transition: color 0.3s;
}

#twelfth-section .fc-post-overview-inner:hover .fc-post-image img {
	transform: scale(1.1);
}

#twelfth-section .fc-post-overview-inner:hover .fc-post-title {
	color: var(--accent-color);
}

@media only screen and (max-width: 767px) {
	#twelfth-section .fc-post-overview {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* ===========================
Contact page
===========================*/
#main .contact-form-wrapper {
	margin-top: -100px;
}

#main .contact-form-wrapper > .vc_column-inner {
	background: #fff;
	border-radius: 0 0 50px 50px;
	padding: 40px 50px 10px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

#main form button {
	letter-spacing: 1.6px;
}

#main .contact-phone-wrapper {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(2, 1fr);
	align-items: start;
}

#main .contact-phone-wrapper .label {
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--secondary-color);
}

#main .opening-hours {
	background: var(--primary-color);
	padding: 50px;
	border-radius: 50px;
}
#main .opening-hours p {
	color: #fff;
	margin-bottom: 10px;
}
#main .opening-hours .day {
	color: var(--secondary-color);
}
#main .opening-hours .hours-note {
	font-size: var(--font-size-p);
	font-weight: 400;
	color: var(--link-color);
}

@media only screen and (max-width: 992px) {
	#main .contact-form-wrapper {
		margin-top: 0px;
		margin-bottom: 36px;
	}

	#main .contact-form-wrapper > .vc_column-inner {
		border-radius: 50px;
	}
}

@media only screen and (max-width: 767px) {
	#main .contact-form-wrapper > .vc_column-inner {
		padding: 30px 25px 5px;
	}
	#main .contact-phone-wrapper {
		gap: 8px;
	}
}

/* ===========================
FAQ page
===========================*/
/* app-section  */
#main .app-section {
	display: flex;
	align-items: center;
	gap: 25px;
}

#main .app-section div {
	width: 200px;
}

#main .app-img {
	text-align: center;
}

#main .app-img img {
	max-width: 100%;
}

#main .app-section a {
	display: block;
}

@media only screen and (max-width: 767px) {
	#main .app-section div {
		width: 160px;
	}
}

/* ===========================
Blog post gallery page
===========================*/
/* Blog post gallery */
#main .blog-post-gallery-wrapper .vc_btn3 {
	background: var(--link-color);
	color: var(--primary-color);
	letter-spacing: 1.6px;
	text-transform: uppercase;
	padding: 13px 20px;
	border-radius: 50px;
	font-size: 16px;
}

#main .blog-post-gallery-wrapper .vc_btn3:hover {
	background: var(--accent-color);
	color: #fff;
}

#main .blog-post-gallery-wrapper h4 {
	font-size: var(--font-size-e);
}

#main .blog-post-gallery-wrapper .vc_grid-item .vc_grid-item-mini {
	background: #f4f4f4;
	border-radius: 50px;
}

#main
	.blog-post-gallery-wrapper
	.vc_grid-item
	.vc_grid-item-mini
	> div:first-child
	> div {
	border-radius: 50px 50px 0 0;
}

#main
	.blog-post-gallery-wrapper
	.vc_grid-item
	.vc_grid-item-mini
	> div:last-child {
	border-radius: 50px;
	padding: 10px 15px 15px;
}

#main .blog-post-gallery-wrapper .vc_gitem-post-data {
	margin-bottom: 25px;
}

/* ===========================
Insurance
===========================*/
#insurance-table .tablepress {
	table-layout: auto;
	width: 100%;
}
#insurance-table .tablepress th,
#insurance-table .tablepress td {
	min-width: 200px;
}
@media only screen and (min-width: 767px) {
	#insurance-table .tablepress {
		table-layout: fixed;
		width: 100%;
	}
	#insurance-table .tablepress th,
	#insurance-table .tablepress td {
		width: 25%;
	}
}

#insurance-table {
	margin-bottom: -10px;
	z-index: 1;
	position: relative;
}

#insurance-table table,
#insurance-table td {
	margin: 0;
	padding: 0;
}

#insurance-table table {
	border-bottom: 0;
}

#insurance-table td,
#insurance-table th {
	border-top: 0;
}

#insurance-table thead tr > * {
	background-color: transparent;
	text-align: center;
}

#insurance-table thead th {
	border-radius: 50px 50px 0 0;
	color: #fff;
	font-weight: 400;
	padding: 15px 25px;
}

#insurance-table thead th .th-title {
	font-weight: 700;
}

#insurance-table thead th.column-2 {
	background: var(--text-color);
}

#insurance-table thead th.column-3 {
	background: var(--secondary-color);
}

#insurance-table thead th.column-3 .th-title {
	color: var(--primary-color);
}

#insurance-table thead th.column-4 {
	background: var(--primary-color);
}

#insurance-table thead th.column-4 .th-title {
	color: var(--link-color);
}

#insurance-table tbody {
	border-bottom: 10px solid var(--secondary-color);
}
#insurance-table tbody tr {
	border-top: 1px solid var(--secondary-color);
}
#insurance-table tbody td {
	padding: 15px 20px;
}

#insurance-table tbody > tr > * {
	color: #4c4c4c;
}

#insurance-table td.column-1 {
	font-weight: 700;
	text-align: right;
}

#insurance-table td.column-2 {
	background: #ededed;
}
#insurance-table td.column-3 {
	background: #e6f9fb;
}
#insurance-table td.column-4 {
	background: #e6eaf1;
}

#main table .yes,
#main table .bold {
	font-weight: 700;
}

/* ===========================
Campervan
===========================*/
/* equipment */
#main .equipment-info-wrapper {
	align-items: flex-start;
}

#main .equipment-info-wrapper .vc_col-sm-6 {
	border: 1px solid var(--primary-color);
	border-radius: 50px;
	background: #fff;
}

#main .equipment-info-header {
	background: var(--primary-color);
	padding: 25px 48px;
	border-radius: 50px 50px 0 0;
}

#main .equipment-info-text {
	padding: 50px;
}

#main .equipment-info-wrapper .vc_col-sm-6:first-child ul {
	padding-top: 0;
}

@media only screen and (max-width: 992px) {
	#main .equipment-info-header {
		padding: 25px 36px;
	}
	#main .equipment-info-text {
		padding: 36px;
	}
}
/* accessories */
#page .accessories-wrapper {
	align-items: flex-start;
}

#page .accessories-wrapper > .vc_col-sm-4 {
	border: 1px solid var(--text-color);
	border-radius: 0 0 50px 50px;
	background: var(--text-color);
	padding-bottom: 50px;
}

#page .accessories-wrapper p {
	color: #fff;
}

#page .accessories-wrapper .accessory-title,
#page .accessories-wrapper .accessory-desc,
#page .accessories-wrapper .accessory-price {
	padding: 16px 50px 0;
}

#page .accessories-wrapper .accessory-price p {
	color: var(--secondary-color);
}

@media only screen and (max-width: 1360px) {
	#page .accessories-wrapper > .vc_col-sm-4 {
		padding-bottom: 36px;
	}
	#page .accessories-wrapper .accessory-title,
	#page .accessories-wrapper .accessory-desc,
	#page .accessories-wrapper .accessory-price {
		padding: 16px 36px 0;
	}
}

@media only screen and (max-width: 992px) {
	#page .accessories-wrapper > .vc_col-sm-4 {
		padding-bottom: 24px;
		border-radius: 0 0 36px 36px;
	}
	#page .accessories-wrapper .accessory-title,
	#page .accessories-wrapper .accessory-desc,
	#page .accessories-wrapper .accessory-price {
		padding: 16px 24px 0;
	}
}

@media only screen and (max-width: 767px) {
	#page .accessories-wrapper {
		gap: 18px;
	}
}

@media only screen and (max-width: 600px) {
	#page .accessories-wrapper {
		flex-direction: column;
		align-items: center;
	}

	#page .accessories-wrapper > div {
		max-width: 300px;
	}

	#page .accessories-wrapper > .vc_col-sm-4 {
		padding-bottom: 36px;
		border-radius: 0 0 50px 50px;
	}
}

/* gallery-slider  */
.fc-gallery-slider .fc-gallery-slider-caption {
	text-align: center;
}

.fc-gallery-slider .slick-slide .fc-gallery-slider-caption {
	background: var(--secondary-color);
	padding: 12px;
	border-radius: 0 0 50px 50px;
}

.fc-gallery-slider .slick-track > .slick-active {
	position: relative;
	z-index: 1;
}

.fc-gallery-slider .slick-track > .slick-current {
	position: relative;
	z-index: 2;
}

@media screen and (min-width: 768px) {
	.fc-gallery-slider .slick-slide.slick-current .fc-gallery-slider-caption {
		opacity: 1;
	}
	.fc-gallery-slider .fc-gallery-slider-caption {
		transition: all 200ms ease-out;
		position: absolute;
		bottom: -80px;
		width: 100%;
		text-align: center;
		opacity: 0;
	}

	.fc-gallery-slider .slick-slide {
		margin-top: 80px;
		margin-bottom: 180px;
	}
	.fc-gallery-slider .slick-slide.slick-current img {
		margin: 0 auto;
		width: 100%;
		transform: scale(1.5);
		margin-bottom: 7%;
	}
	.fc-gallery-slider .fc-gallery-slider-caption {
		width: calc(100% - 24px);
		transform: scale(1.5);
	}
	.fc-gallery-slider .fc-gallery-slider-caption p {
		transform: scale(0.7);
	}
	.fc-gallery-slider .slick-track > .slick-active:nth-of-type(3) img {
		margin-left: -50px;
	}
}

@media screen and (min-width: 992px) {
	.fc-gallery-slider .slick-slide.slick-current img {
		margin-bottom: 10%;
	}
}
/* ===========================
404 / search result
===========================*/
.error404 #page .translator-dropdown-container,
.search #page .translator-dropdown-container,
.search #page .entry-meta {
	display: none;
}

.error404 #page h1,
.search #page h1 {
	color: var(--primary-color);
	margin-top: 120px;
	line-height: 1.2;
}

.error404 #page #main h1,
.search #page #main h1 {
	text-align: center;
	font-size: var(--font-size-b);
	margin-bottom: 50px;
}

.error404 #page #main p,
.search #page #main .no-results p {
	text-align: center;
	margin-bottom: 36px;
}

.error404 #page #main .post,
.search #page #main .post,
.search #page #main .paginator {
	margin-bottom: 64px;
}

.error404 #page #main form,
.search #page #main form {
	max-width: 760px;
	margin: 0 auto 64px;
}
.search #page #main h3 {
	line-height: 0.9;
	margin-bottom: 16px;
}
.search #page #main h3 a {
	font-size: var(--font-size-d);
}

.search #page #main article.post {
	border-radius: 50px;
	padding-bottom: 36px;
	margin-bottom: 36px;
}

.search #page #main article .blog-media {
	border-radius: 50px 50px 0 0;
}
