/*
	Theme Name: 	Roma Eterna
	Datum: 			29. März 2024
	Version: 		1.0
	Author: 		id-script // grafik . print . web
	Author URI: 	https://www.id-script.com/
*/

/* ================================================
    -- Default
================================================ */
:root {
	--white: 		#ffffff;
	--gray-1:		#F8F2ED;
	--gray-2:		#faf5f0;
	--gray-3:		#fdf9f8;
	--black:		#201e1e;

	--ff-headline:	'Ovo';
	--ff-par:		'Dosis';
}

::-moz-selection {color: var(--white); background: var(--black);}
::selection {color: var(--white); background: var(--black);}

body {
	font-family: var(--ff-par), sans-serif;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 2.3rem;
	letter-spacing: .05rem;
	color: var(--black);
	background-color: var(--white);
}


/* Hintergrund abdunkeln */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Schwarz mit 70% Transparenz */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ganz nach vorne */
}

/* Pop-up Box Style */
.popup-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-box h2 { margin-top: 0; }

.popup-box button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup-box button:hover { background-color: #0056b3; }





/* ================================================
	-- Fonts
================================================ */
.title-h1 {

}
.title-h2 {
	font-family: var(--ff-headline);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 3rem;
	margin-bottom: 5rem;
}
.title-h3 {
	font-family: var(--ff-headline);
	text-transform: uppercase;
	letter-spacing: .15rem;
	padding-bottom: 40px;
}
.title-h4 {
	font-family: var(--ff-par);
}
.title-h5 {
	font-family: var(--ff-headline);
	text-transform: uppercase;
	font-size: 1.5rem;
	letter-spacing: .25rem;
	font-weight: 400;
	position: relative;
	margin-bottom: .5rem;
}

.title-h6 {
	font-size: 0.9rem;
	letter-spacing: .1rem;
	font-family: var(--ff-headline);
	text-transform: uppercase;
	margin: 1.25rem 0 0 0;
}
p {
	hyphens: auto;
}
a {
	text-decoration: none;
	color: var(--font-p);
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	cursor: pointer;
}
strong {
	font-weight: 500;
}
small {
	font-size: 1rem;
}

/* ================================================
	-- Default
================================================ */
.site_main {
	position:relative;
}
p.line {
	position: relative;
	padding-left: 60px;
	padding-right: 20px;
}
p.line::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 12px;
	width: 1px;
	height: 75px;
	background-color: var(--black);
}


/* -- Scroll Text
------------------------------- */
.scroll-wrapper {
	width: 100%;
	height: 44px;
	position: absolute;
	top: auto;
	bottom: 0;
	left: auto;
	right: auto;
	overflow: hidden;
	color: var(--black);
	background-color: rgba(255, 255, 255, 0);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);	
	border-top: 1px solid var(--black);
	padding-top: 20px;
	z-index: 10;
}
.scroll-txt {
	font-family: var(--ff-headline);
	font-size: 1rem;
	text-transform: uppercase;
	display: inline-block;
	white-space: nowrap;
	animation: titleInfinite 25000ms linear infinite;
}
.scroll-txt:after {
	content: attr(data-text);
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 100%;
}

@keyframes titleInfinite {
	0% {
		transform: translateY(-50%) translateX(-20%); }
	100% {
		transform: translateY(-50%) translateX(-120%); }
}

/* -- Btn - Sweep To Bottom
------------------------------------ */
.btn-stb {
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	padding: 1.5em 2em;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid var(--white);
	background: var(--gray-light);
	color: var(--black);
	letter-spacing: .05rem;
	cursor: pointer;
	font-size: 1.3rem;
}
.btn-stb:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	background: var(--green);
}
.btn-stb:hover:before, 
.btn-stb:focus:before, 
.btn-stb:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}
/* -- Download Button
------------------------------------ */
.home .download-link {
	display: none;
}

.dbtn {
	margin: 0px auto 40px auto;
	width: auto;
	max-width: 300px;
	height: 52px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	background-color: var(--gray-1);
	position: relative;
	padding: 0 35px 0 80px;
	color: var(--ff-par);
	transition: all 0.4s ease;
	border-radius: 5px;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 3px solid var(--gray-1);
	z-index: 50;
}
  
.dbtn:before {
	content: "\e809";
	font-family: "isf";
	position: absolute;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	font-size: 22px;
	border-radius: 5px 20px 0px 5px;
	color: var(--gray-3);
	background-color: #060606;
	opacity: 0.4;
	padding: 0 16px;
	top: 0;
	left: 0;
	line-height: 2.1;
	height: 100%;
}
  
.dbtn:hover{
	background: #e3d7bf;
	color: var(--ff-par);
}
/* ================================================
	-- Header
================================================ */
#header {
	position: fixed;
	height: 142px;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99999999;
	background: var(--white);
	transition: background-color 0.4s ease-out;
}
#header .sec-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 12px 5vw;
}
#header .logo img {
	width: 70px;
	display: block;
	margin: 0 auto;
}
/* ================================================
	-- Sec. Video
================================================ */
#sec_video {
	position: fixed;
	right: 0; 
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	width: auto; 
	height: auto; 
	z-index: -100;
	background-size: cover;
	height: calc(100vh - 105px);
}
#sec_video .sec_inner {
	position: relative;
	display: block;
	height: 100%;
}
#sec_video video {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
/* ================================================
	-- Sec. Hero
================================================ */
#sec_hero {
	height: 100vh;
	width: 100%;
}
#sec_hero .sec_inner {
	padding: 160px 5vw 0 5vw;
}
#sec_hero .hero_logo {
	margin-bottom: 3rem;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.btn_book {/*
	max-width: 460px;
	margin: 0 auto;
	
	background: var(--gray-1);
	padding: 1.5em 2em;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	*/
	position: relative;
	transition: background-color 0.4s ease-out;
}
/*
.btn_book::before {
  content: '';
  position: absolute;

  left: -19px;
  top: 50%;
  width: 35px;
  height: 1px;
 
	left: 50%;
	top: -50px;
	width: 1px;
	height: 75px;
	background-color: #a1a1a1;
}
.btn_book span {
	font-weight: 400;
	font-size: 1.15rem;
	letter-spacing: .5em;
	text-transform: uppercase;
	padding-right: 18px;
}*/
.btn_book-icon {
	overflow: visible;
	width: 50px;
}
.smoke {
	animation: bounce 2s infinite;
}
@keyframes bounce {
	0%,
	25%,
	50%,
	75%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-5px);
	}
	60% {
		transform: translateY(-10px);
	}
}

@media screen and (min-width: 64em){
	#sec_hero .sec_inner {
		padding: 230px 5vw 0 5vw;
	}
	.btn_book {display: none;}
}

@media screen and (min-width: 64em){
	#sec_hero .sec_inner {
		display: grid;
		width: 100%;
		height: 100vh;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(1, 1fr);
		grid-gap: 0 1rem;
	}
	#sec_hero .hero_logo {
		margin-bottom: 0;
		grid-column: 1/2;
		grid-row: 1/2;
		align-self: center;
	}
	.hero_video {
		margin-bottom: 0;
		grid-column: 2/3;
		grid-row: 1/2;
		align-self: center;
	}
	.hero_book {
		grid-column: 3/4;
		grid-row: 1/2;
		align-self: center;
	}
}

/* ================================================
	-- Sec. Intro
================================================ */
#sec_intro {
	background: var(--white);
}
#sec_intro .sec_inner {
	padding: 5rem 5vw;
}
#sec_intro article {
	background: var(--gray-1);
	padding: 4rem 12% 6rem 12%;
	text-align: center;
	position: relative;
}
#sec_intro article::after {
	content: '';
	position: absolute;
	right: 50%;
	bottom: -30px;
	width: 1px;
	height: 60px;
	background-color: var(--black);
}
#sec_intro figure {
	position: relative;
	width: 190px;
	margin: auto auto 150px auto;
	background: var(--gray-3);
	border-radius: 100%;
	height: 190px;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}
#sec_intro figure::after {
	content: '';
	position: absolute;
	right: 50%;
	top: calc(100% - 16px);
	width: 1px;
	height: 116px;
	background-color: var(--black);
}

@media screen and (min-width: 75em){
	#sec_intro article p {
		max-width: 660px;
		margin: 0 auto;
		padding-top: 2rem;
	}
}
@media screen and (min-width: 105em){
	#sec_intro .sec_inner {
		padding-left: 13%;
		padding-right: 13%;
	}
}
/* ================================================
	-- Sec. Service
================================================ */
#sec_services {
	background: var(--white);
	position: relative;
	z-index: 5;
}
#sec_services .sec_inner {
	padding: 5rem 5vw;
}
#sec_services article {
  margin-bottom: 2.5rem;
}
#sec_services figure {
	position: relative;
	margin: 0;
}
#sec_services .figure-a {
	height: 100%;
	width: 100%;
	display: block;
	position: absolute;
}
#sec_services .figure-title {
	position: absolute;
	width: 100%;
	padding: 40px 20px 0;
	text-align: right;
	opacity: 1;
	bottom: -50px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
#sec_services .figure-title::after {
	content: '';
	position: absolute;
	right: 10px;
	bottom: 0;
	height: calc(100% + 38px);
	width: 1px;
	background-color: var(--black);
}
#sec_services .figure-wrap .grid {
	display: grid;
	width: 100%;
	height: 50vh;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-gap: 0 1rem;
}
#sec_services .figure-wrap .item {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	align-content: end;
	display: grid;
}
#sec_services .figure-wrap .item-1 {
	grid-column: 1/2;
	grid-row: 2/6;
	background-image: url(img/antipasti.jpg);
}
#sec_services .figure-wrap .item-2 {
	grid-column: 2/3;
	grid-row: 2/5;
	background-image: url(img/primi.jpg);
}
#sec_services .figure-wrap .item-3 {
	grid-column: 3/4;
	grid-row: 1/5;
	background-image: url(img/secondi.jpg);
}

@media screen and (min-width: 42em){	
	#sec_services article {
		padding: 0 2rem;
	}
	#sec_services .figure-title {
		bottom: 0;
		opacity: 0;
	}
	#sec_services .figure-a:hover .figure-title {
		bottom: -100px;
		opacity: 1;
	}
}
@media screen and (min-width: 42em){
	#sec_services .figure-wrap .grid {
		height: 70vh;
	}
}
@media screen and (min-width: 64em){
	#sec_services article {
		width: 80%;
	}
	#sec_services .figure-wrap .grid {
		height: 75vh;
	}
}
@media screen and (min-width: 75em){
	#sec_services .figure-wrap .grid {
		height: 85vh;
	}
}
/* ================================================
	-- Sec. Gallery
================================================ */
#sec_gallery {
	background: var(--white);
}
#sec_gallery .sec_inner {
	padding: 5rem 5vw;
	position: relative;
}
#sec_gallery .bg {
	background: var(--gray-3);
	height: 225px;
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 1rem;
	align-content: center;
	justify-content: center;
	z-index: 10;
	margin-bottom: 5rem;
}
#sec_gallery .bg p {
	font-family: var(--ff-headline);
	color: var(--white);
	font-size: 5rem;
	margin: 0;
}
#sec_gallery article {
	margin-bottom: 2.5rem;
}

@media screen and (min-width: 42em){
	#sec_gallery article {
		padding: 0 2rem;
	}
}
@media screen and (min-width: 48em){
	#sec_gallery .bg {
		position: absolute;
		height: 180px;
		right: 0;
		top: -70px;
		width: 60%;
	}
	#sec_gallery .bg p {
		font-size: 6rem;
	}
	#sec_gallery article {
		padding: 5rem 2rem 4rem 2rem;
	}
}
@media screen and (min-width: 64em){
	#sec_gallery .bg {
		height: 220px;
		top: -80px;
	}
	#sec_gallery .bg p {
		font-size: 9rem;
	}
	#sec_gallery article {
		padding-left: 20%;
	}
}
@media screen and (min-width: 75em){
	/*
	#sec_gallery .sec_inner {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	*/
}
@media screen and (min-width: 105em){
	#sec_gallery .bg {
		padding-left: 1rem;
		justify-content: start;
		padding-left: 4rem;
	}
}
/* ================================================
	-- Sec. Instagram
================================================ */
#sec_instagram {
	background: var(--black);
	color: var(--white);
}
#sec_instagram .sec_inner {
	padding: 5rem 5vw;
	position: relative;
}
#sec_instagram article {
	margin-bottom: 2.5rem;
}
#sec_instagram p.line::before {
	background-color: var(--white);
}
#sb_instagram .sbi_follow_btn a {
	color: var(--white);
	background: transparent;
	font-size: 22px;
	border: 1px solid #F8F2ED;
	border-radius: 10px;
	padding: 10px 40px;
	margin-top: 40px;
}
#sb_instagram .sbi_follow_btn svg {
	vertical-align: -1px !important;
	font-size: 20px;
}
#sb_instagram .sbi_follow_btn a:hover, 
#sb_instagram .sbi_follow_btn a:focus {
	box-shadow: none;
	background: #fdf9f8;
	color: var(--black);
}

@media screen and (min-width: 42em){
	#sec_instagram article {
		padding: 0 2rem;
	}
}
@media screen and (min-width: 48em){
	#sec_instagram article {
		padding: 5rem 2rem 4rem 2rem;
	}
}
@media screen and (min-width: 64em){
	#sec_instagram article {
		width: 80%;
	}
}

/* ================================================
	-- Sec. Öffnungszeiten
================================================ */
#sec_openinghours {
	background: var(--white);
}
#sec_openinghours .sec_inner {
	padding: 5rem 5vw;
	text-align: center;
}
.clockbox {
  margin-bottom: 2.5rem;
}
#clock {
	width: 180px;
	height: 180px;
}
.circle {
    fill: none;
    stroke: var(--black);
    stroke-width: 9;
    stroke-miterlimit: 10;
}
.mid-circle {
    fill: var(--black);
}
.hour-marks {
    fill: none;
    stroke: var(--black);
    stroke-width: 9;
    stroke-miterlimit: 10;
}
.hour-hand {
    fill: none;
    stroke: var(--black);
    stroke-width: 17;
    stroke-miterlimit: 10;
}
.minute-hand {
    fill: none;
    stroke: var(--black);
    stroke-width: 11;
    stroke-miterlimit: 10;
}
.second-hand {
    fill: none;
    stroke: red;
    stroke-width: 4;
    stroke-miterlimit: 10;
}
.sizing-box {
    fill: none;
}
#hour,
#minute,
#second {
    transform-origin: 300px 300px;
    transition: transform .5s ease-in-out;
}
.openinghours {
	text-align: center;
}
.openinghours .item {
	margin-bottom: 2rem;
	position: relative;
	margin-bottom: 3rem;
}
.openinghours .item::after {
	content: '';
	position: absolute;
	bottom: -32px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1px;
	height: 20px;
	background-color: var(--black);
}
.openinghours a {
	position: relative;
	font-size: 1rem;
	letter-spacing: 0.25rem;
	line-height: 2.4rem;	
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
}
.openinghours .btn-line {
	height: 1px;
	width: 100%;
	background-color: var(--black);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: -webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
	-o-transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: transform .5s cubic-bezier(.51,.51,.21,1.1),-webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
}
.openinghours .btn-text {
	display: inline-block;
	vertical-align: middle;
	padding: 0 19px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: -webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
	-o-transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: transform .5s cubic-bezier(.51,.51,.21,1.1);
	transition: transform .5s cubic-bezier(.51,.51,.21,1.1),-webkit-transform .5s cubic-bezier(.51,.51,.21,1.1);
}
.openinghours a:hover .btn-line {
	-webkit-transform: translateY(28px);
	-ms-transform: translateY(28px);
	transform: translateY(28px);
}
.openinghours a:hover .btn-text {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
}
/* ================================================
	-- Sec. Menü
================================================ */
#sec_menue {
	padding-top: 100px;
	padding-left: 5vw;
	padding-right: 5vw;
}
.menue-bg {
	position: fixed;
	right: 0; 
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	width: auto; 
	height: auto; 
	z-index: -100;
	background-size: cover;
	height: 100vh;
}
.menue-bg img {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
#sec_menue .menue {
	background-color: rgba(255,255,255,0.9);
	padding: 5rem 5vw;
}
@media screen and (min-width: 64em){
	#sec_menue .sec_inner {
		display: flex;
		justify-content: end;
	}
	#sec_menue .menue {
		width: 75%;
	}
}
@media screen and (min-width: 75em){
	#sec_menue .sec_inner {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* -- Content
------------------------------------ */
#sec_menue h3 {
	text-transform: uppercase;
	letter-spacing: 5px;
	position: relative;
	font-size: 2rem;
	margin-top: 80px;
}
#sec_menue .clearfix {
	border-bottom: 1px dotted var(--gold);
	padding: 8px 0;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
#sec_menue .clearfix.last {
	border-bottom: 0;
}
#sec_menue .clearfix:before {
	content: " ";
	display: table;
}
#sec_menue .clearfix:after {
	clear: both;
	content: " ";
	display: table;
}
#sec_menue .item {
	float: left;
	width: 80%;
}
#sec_menue h4 {
	font-weight: 500;
	color: var(--black);
	font-size: 1.35rem;
	line-height: 1.75rem;
	margin: 0;
	letter-spacing: 0.5px;
}
#sec_menue p {
	font-size: 1rem;
	line-height: 1.5rem;
	margin: 0;
}
#sec_menue .price {
	float: right;
	width: 20%;
	text-align: right;
	color: var(--black);
	font-size: 1.35rem;
	font-weight: 500;
	letter-spacing: .15rem;
	line-height: 1.8rem;
}

/* ================================================
	-- Contact
================================================ */
#sec_contact {
	padding-top: 200px;
}
#sec_contact .sec_inner {
	padding: 5rem 5vw;
}
.line--2 {
	display: block;
	position: relative;
	width: 1px;
	height: 120px;
	background-color: var(--black);
	margin: 0 0 40px 40px;
}
#sec_contact .contact-infos {
	margin-bottom: 5rem;
}
#sec_contact .item-2 span {
	display: block;
	font-weight: 500;
}
#sec_contact .title-h5 {
	letter-spacing: 0.15rem;
}
#sec_contact .title-h5::after {
	display: none;
}
.sec_form article {
	margin-bottom: 5rem;
}
#sec_contact a {
  display: inline-block;
  position: relative;
}
#sec_contact a:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  height: 2px;
  margin: -5px 0;
  left: 0;
  background-color: var(--black);
  transition: all 0.4s ease-in 0s;
}
#sec_contact a:hover:after {
  width: 100%;
}


address {
	font-style: normal;
	margin-bottom: 12px;
}
.wpcf7-spinner {
	display: none !important;
}
.wpcf7-captchac {
	width: auto;
}
fieldset {
	margin-top: 2.5rem;
	padding: 0;
}
.field-wrapp {
	margin-bottom: 10px;
}
label {
	display: block;
	font-weight: 400;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	font-size: 0.95em;
	font-weight: 400;
	width: 100%;
	height: 40px;
	padding: 5px 0;
	font-family: inherit;
	color: var(--font-par);
	background-color: transparent;
	border-bottom: 1px solid #bbb;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: var(--black);
}
textarea {
	height: 120px;
	resize: none;
}
.submit-wrapp {
	margin-top: 40px;
}
.wpcf7 button {
	margin-top: 4.5rem;
	cursor: pointer;
	padding: 1.125rem 3.875rem;
	font-weight: 400;
	color: var(--black);
	background: var(--gray-1);
	border-radius: 1rem;
	min-height: 3.6875rem;
	display: block;
	border: 0;
	width: 100%;
	text-align: center;
	transition: all .4s;
}
@media (min-width: 36em) {
	.wpcf7 button {
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
}
.wpcf7 .cf7icon {
	margin-left: 3em;
}
.cf7icon:after {
	content: " \e801";
	font-family: "isf";
}
.wpcf7 button:not([disabled]):hover, 
.wpcf7 button:not([disabled]):active {
	color: var(--white);
	background: var(--black);
}
.wpcf7 button:hover {
	color: var(--white);
	background: var(--black);
}
.wpcf7-not-valid-tip {display: none;}
.wpcf7-not-valid{
	border-bottom: 1px solid #d73333!important;
}

@media (min-width: 48em){
	#sec_contact .sec_inner {
		padding: 5rem 5vw;
	}
	#sec_contact .contact-infos {
		padding: 5rem 2rem 4rem 2rem;
	}
	.sec_form {
		padding: 0 2rem;
	}
	.field-group {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}	
	.field-group .field-wrapp {
		width: 48%;
	}
	.field-group.field-3 .field-wrapp {
		width: 31%;
	}
	.captcha-wrapp,
	.sec_form.booking input {
		text-align: center;
	}
}
@media screen and (min-width: 64em){
	#sec_contact .contact-infos {
		display: flex;
		flex-wrap: wrap;
	}
	#sec_contact .item {
		display: flex;
		flex-wrap: wrap;
		align-content: flex-end;
	}
	#sec_contact  .item-1 {
		width: 50%;
	}
	#sec_contact  .item-2 {
		width: 25%;
	}
	.sec_form article {
		width: 80%;
	}
}
@media screen and (min-width: 75em){
	#sec_contact .sec_inner {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}
}
/* ================================================
	-- Footer
================================================ */
#site_footer {
background: var(--white);
}
.sec_footer {
padding: 1.5rem 5vw 5rem 5vw;
}
.sec_footer .logo {
width: 180px;
	margin: 0 auto 2.5rem auto;
}

.sec_footer address {
	text-align: center;
	font-size: 1.25rem;
}
.sec_footer address span {
	display: none;
}
.sec_footer .social {
	text-align: center;
	margin-top: 3rem;
}
.sec_footer .social a {
	display: inline-block;
	font-size: 1rem;
}
.sec_footer .social svg {
	width: 1.5rem;
	fill: white;
	stroke: var(--black);
	stroke-width: 1px;
	transition: 0.3s all;
}
.sec_footer .social svg.facebook {
	width: .85rem;
}
.sec_footer .middle {
	margin: 0 12px;
}
.sec_footer .middle::after {
  content: '';
  width: 18px;
  height: 1px;
  background-color: #a1a1a1;
  position: relative;
  right: -4px;
  bottom: 10px;
  display: inline-block;
}
.sec_footer .middle::before {
  content: '';
  width: 18px;
  height: 1px;
  background-color: #a1a1a1;
  position: relative;
  left: -4px;
  bottom: 10px;
  display: inline-block;
}

.social a svg:hover {stroke:red;}

/* -- Footer: Meta
------------------------------------ */
#meta .meta-inner {
	padding: 0 5vw 3rem 5vw;
	text-align: center;
}
#meta .wda {
	display: block;
	margin-top: 1rem;
	transition: 0.3s all;
}
#meta .wda i {
	font-size: 20px;
	color: #00cbff !important;
}
#meta [class^="icon-"]::before,
#meta [class*=" icon-"]::before {
	font-weight: 400;
}
#meta .wda:hover {
	font-weight: 600;
	color: #00cbff;
}
/* ================================================
  -- Back To Top
 ================================================ */
.back-to-top {
	position: fixed;
	text-indent: -999em;
	background: #f3f3f3
	  url(data:image/svg+xml;base64,PHN2ZyBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTcuNCIgaGVpZ2h0PSIxMC44IiB2aWV3Qm94PSIwIDAgMTcuNCAxMC44Ij48c3R5bGU+LnN0MHtmaWxsOiMyQTMxMzY7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTIgMTAuN2w2LjctNi42IDYuNyA2LjcgMi0yLTYuNy02LjdWMmwtMi0yTDAgOC43eiIvPjwvc3ZnPg==)
	  center 50% no-repeat;
	border: 1px solid rgba(0, 0, 0, 0.75);
	border-radius: 0.1875em;
	height: 40px;
	width: 40px;
	bottom: 5em;
	right: 1em;
	opacity: 0.25;
	z-index: 3000;
}

.back-to-top:hover {
	opacity: 1;
	background-position: center 45%;
}


