@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* FONT_WEIGHT 300, 400, 500, 600, 700, 800, 900  */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
body {
	background: #000;
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
	font-size: 120%;
	text-align: center;
	letter-spacing: 0.8px;
	line-height: 1;
	color: #fff;
	cursor: default;
	margin: 0;
}
.container {
	margin: 0 auto;
	max-width: 1800px;
	padding: 0 2%;
	box-sizing: border-box;
}

a {
	color: #96701c;
	text-decoration: none;
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
a:hover, a:focus {
	color: #d6a360;
	text-decoration: underline;
	outline: 0;
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
a[href^=tel] {
	background: none !important;
	padding: 0 !important;
}
a img {
	border: 0;
}
a.btn-size {
	border-radius: 5px;
	padding: 9px 25px;
	background-image: linear-gradient(to right, #e52d27 0%, #b31217  51%, #e52d27  100%);
	text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;            
    display: block;
}
a.btn-size:hover {
	background-position: right center;
    color: #fff;
    text-decoration: none;	
}
.btn.btn-primary {
	text-transform: uppercase;
	width: 100%;
}
.swal2-confirm {
	background: linear-gradient(90deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 50%, rgba(149,111,26,1) 100%) !important;
}
.swal2-confirm:hover {
	background: linear-gradient(90deg, rgba(240,208,139,1) 0%, rgba(149,111,26,1) 50%, rgba(240,208,139,1) 100%) !important;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring {
	border: .25em solid rgba(242, 223, 153, 0.3) !important;
}      

/* FORMS */
input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
input[data-autocompleted] {
    background-color: transparent !important;
}
::placeholder {
	color: #A0A0A0;
}
label {
  -webkit-user-select: none;
  -ms-user-select: none; 
  user-select: none;
}

input[type='text'], input[type='tel'],input[type='email'], input[type='password'], input[type='number'], textarea {
	background: #1E1E1E;
	border: 1px solid #2f2f2f;
	color: #f0d08b;
	border-radius: 4px;
	outline: 0;
	font-family: "Rubik", sans-serif;
	font-weight: 400;
	font-size: 90%;
	padding: 15px 10px 15px;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus {
	border-image: linear-gradient(to right, #956f1a 0%, #f0d08b 100%) 1;
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
}
input[type='text'].invalid, 
input[type='tel'].invalid,
input[type='email'].invalid,
textarea.invalid  {
	border: 1px solid #ff964b;
}
input[type='submit'], 
input[type='button'], 
button[type='submit'],
button {
	border: 0;
	outline: 0;
	font-family: "Rubik", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 105%;
	width: 400px;
	background: linear-gradient(90deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 50%, rgba(149,111,26,1) 100%);
	border-radius: 6px;
	padding: 14px 25px 14px;
	color: #fff;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
input[type='submit']:hover, 
input[type='button']:hover, 
button[type='submit']:hover,
button:hover {
	background: linear-gradient(90deg, rgba(240,208,139,1) 0%, rgba(149,111,26,1) 50%, rgba(240,208,139,1) 100%);
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
button.rsform-thankyou-button {
	width: 200px;
	padding: 1px 5px 8px;
	font-size: 90%;
}

.cf-list input[type="radio"] {
	position: absolute;	
	opacity: 0;
	pointer-events: none;
}

.cf-list label {
	border-radius: 5px;
	background: #2f2f2f;
	color: #fff;
	display: inline-block;
	padding: 10px 12px;
	margin-left: 4px;
	margin-right: 4px;
	margin-bottom: 7px;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 400;
	font-size: 80%;
	box-sizing: border-box;
	user-select: none;
	
}
.cf-list label:hover {
	background:  rgba(240,208,139,1);	
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
.cf-list input[type="radio"]:checked + label {
	background: linear-gradient(262deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
	color: #fff;
	font-weight: 500;
}
select {
    position: relative;
    width: 100%;
    height: 53px;
    font-size: 90%;
    font-family: "Rubik", sans-serif;
    color: #956f1a;
    background: #000;
    border-image: linear-gradient(to right, #956f1a 0%, #f0d08b 100%) 1;
	border-width: 2px;
	border-style: solid;;
    border-radius: 4px;
    letter-spacing: 0.3px;
    padding: 0 10px;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-align-last: center;
}
select:hover {
	border-image: linear-gradient(to right, #f0d08b 0%, #956f1a 100%) 1;
}
select::-ms-expand {
    display: none;
}
select option {
	text-align: center;
	margin: 0 auto;
}
.flatpickr-day.selected {
	background: #956f1a;
	border-color: #956f1a;
}
.flatpickr-day.selected:hover {
	background: #f0d08b;
	border-color: #f0d08b;	
}

hr {
	border: none;
	border-bottom: 1px solid #A1A1A1;
	margin: 1% 0;
}
#careers-vacancies hr {
	border-bottom-style: dashed;
}
img {
	max-width:100%;
	max-height:100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 30px;
	line-height: 1.2;
	font-weight: 400;
}
h1, h2 {
	font-size: 180%;
	line-height: 1.3;	
}
p {
	margin-top: 0;
	margin-bottom: 14px;
	line-height: 1.4;
}
.p p {
	margin: 0;
	line-height: 0;
}
strong, b {
	font-weight: 500;
}
ul.ul, .ul ul, .ol ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
dl {
	margin: 15px 0;
	font-size: 80%;
	color: #a0a0a0;
}
dd {
	margin-left: 0;
}
div.grid,
.li li {
	display: inline-block;
	vertical-align: top;
}
li.grid {
	display: inline-block;
	vertical-align: middle;
}
.fw-300 h1 {
	font-weight: 300;
}
.center {
	text-align: center;
}
.right {
	float: right;
}
.min-height {
	min-height: 500px;
	margin-bottom: 100px;
}
.max-width {
	margin: 0 auto;
	width: 80%;
}

/* HEADER */
#header {
	padding: 90px 0 90px;
}
.logo a {
	display: inline-block;
	text-indent: -99999px;
	background: url(../images/argeela_g_v2.svg) no-repeat center top / 100%;
	width: 300px;
	padding-top: 125px;
	position: relative;
	z-index: 99;
	margin-top: 30px;
}
#banner {
	margin-bottom: 100px;
	z-index: 999;
	position: relative;
}
#banner .video {
	position: relative;
	margin-top: -155px;
	z-index: 9
}
.scrolldown {
	display: none;
/*
    z-index: 1000;
    position: absolute;
    margin: 0 auto;
    bottom: 27%;
*/
}
.section05 a {
  color:#fff;
  font-size: 20px;
   text-decoration:none;
}
.section05 a:hover {
  text-decoration:none;
}
.section05 a h4 {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-30px, 30px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-30px, 30px);
    opacity: 0;
  }
}

/* CONTENT */
#content,
#content .intro {
	margin-bottom: 10%;
}
#content .intro [itemprop=articleBody] {
	font-size: 155%;
	font-weight: 300;
	width: 90%;
	margin: 0 auto;
}
#content .rsvp [itemprop=articleBody] {
	font-size: 120%;
}
#content .rsvp iframe {
	border: 0;
}

/* RESERVATION */
.type_option .cf-control-label {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 110%;
}
.type_option .cf-radio-group {
	display: inline-block;
	vertical-align: top;
}
.booking {
	margin: 30px 0 40px;
}
.booking div.grid {
	margin-left: 10px;
	margin-right: 10px;
	width: 300px;
}
.booking p {
	font-size: 70%;
	margin-top: 5px;
}
.booking .type_option {
	margin-bottom: 12px;
}
.booking .cf-list label {
	width: 240px;
	padding: 18px 40px;
	line-height: 1.2;
	font-weight: 500;
	border-image: linear-gradient(to right, #956f1a 0%, #f0d08b 100%) 1;
	border-width: 3px;
	border-style: solid;
	background: none;
	color: #f0d08b;
	text-transform: uppercase;
}
.booking .cf-list label:hover {
	color: #956f1a;
	border-image: linear-gradient(to right, #f0d08b 0%, #956f1a 100%) 1;
	border-width: 3px;
	border-style: solid;	
}
.booking .cf-list input[type="radio"]:checked + label {
	 background: linear-gradient(150deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
	 border-image: linear-gradient(to right, #f0d08b 0%, #956f1a 100%) 1;
}
.booking .calendar input[type="text"].flatpickr-input {
	cursor: pointer !important;
}
.booking .calendar input[type="text"] {
	margin-top: -1px;
	padding: 12px 10px;
	color: #956f1a;
	border-image: linear-gradient(to right, #956f1a 0%, #f0d08b 100%) 1;
	border-width: 2px;
	border-style: solid;
	text-align: center;
}
.booking .calendar input[type="text"]:hover {
	border-image: linear-gradient(to right, #f0d08b 0%, #956f1a 100%) 1;
}
.booking .calendar input[type="text"]::placeholder {
	color: #956f1a;
	text-align: center;
}
.booking .comment {
	margin-top: 20px;
}
.booking textarea {
	text-align: center;
}

.customer .type_option {
	margin-bottom: 15px;
}
.customer .cf-list label {
	width: 75px;
}
.customer .grid {
	width: 49%;
	margin-bottom: 20px;
}
.customer .grid:nth-child(2n) {
	margin-right: 2%;
}
.customer .submit {
	margin-top: 20px;
}

/* MODIFY/CANCEL */
#form-reservation {
	text-align: left;
}
#form-reservation .booking {
	text-align: center;
	padding: 20px 20px 5px;
	margin-bottom: 30px;

  background-image: repeating-linear-gradient(90deg, #000000, #000000 20px, transparent 20px, transparent 35px), repeating-linear-gradient(180deg, #000000, #000000 20px, transparent 20px, transparent 35px), repeating-linear-gradient(90deg, #000000, #000000 20px, transparent 20px, transparent 35px), repeating-linear-gradient(180deg, #000000, #000000 20px, transparent 20px, transparent 35px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}
#form-reservation .booking p {
	font-size: 70%;
}
#form-reservation .booking .grid {
	margin-right: 1%;
}
#form-reservation .booking .control-group:nth-child(4) {
	margin-right: 0;
}
#form-reservation .booking .control-group:nth-child(5) {
	margin-right: 0;
	display: block;
}
#form-reservation .booking #jform_date {
	width: 19vw;
}
#form-reservation .customer {
	text-align: center;
}
#form-reservation .controls {
	margin-bottom: 10px;
}
#form-reservation .radio div.form-check {
	display: inline-block;
	vertical-align: top;
}
#form-reservation .submit {
	clear: both;
	text-align: center;
	padding-top: 45px;
}
#form-reservation .btn.btn-primary {
	width: 330px;
	font-size: 125%;
	padding: 16px;
}

/* MENU DOWNLOAD */
#download {
	padding: 10% 0 12%;
	background: url(../images/menu_bg.svg) no-repeat center center / cover;
}
#download h3 {
	font-size: 160%;
	font-weight: 400;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.menu li {
	margin-right: 30px;
	margin-bottom: 20px;
}
.menu li:last-child {
	margin-right: 0;
}
.menu li a {
	color: #f0d08b;
	text-decoration: none;
	padding: 100px 40px 10px 10px;
	font-weight: 400;
	font-size: 120%;
	text-transform: uppercase;
	display: block;
	width: 180px;
	height: 50px;
	text-align: right;
	border-image: linear-gradient(to right, #956f1a 0%, #f0d08b 100%) 1;
	border-width: 3px;
	border-style: solid;
}
.menu li a:hover {
	color: #956f1a;
	border-image: linear-gradient(to right, #f0d08b 0%, #956f1a 100%) 1;
	border-width: 3px;
	border-style: solid;
}
.menu li.active a {
	color: #d6a360;
}

#map .map {
	margin-top: -4px;
}
#map .map p:empty {
	display: none;
}

/* FOOTER */
#footer {
	margin: 120px 0 80px;
}
#footer .contact {
	margin-bottom: 70px;
	font-size: 110%;
}
#footer .contact a[href^=tel] {
	color: #d6a360;
	text-decoration: none;
	font-weight: 300;
}
#footer .contact a[href^=tel]:hover {
	color: #e5a757;
}
#footer .contact h4 {
	margin-bottom: 25px;
}
#footer .contact h4 a {
	font-weight: 500;
	font-size: 100%;
	background: url(../images/argeela.svg) no-repeat center center / 100%;
	width: 250px;
	padding-top: 45px;
	text-indent: -99999px;
	display: inline-block;
}
#footer .contact h5 {
	margin-bottom: 5px;
	display: inline-block;
	font-size: 100%;
}
#footer .contact h5::after {
	content: ",";
}
#footer .contact h5:last-of-type::after {
	content: "";
	margin-bottom: 25px;
	display: block;
}

#footer .contact h6 {
	margin-bottom: 5px;
	font-size: 100%;
}
#footer .contact h6:first-of-type {
	margin-bottom: 10px;	
}
#footer .contact h6:last-of-type {
	margin-bottom: 25px;	
}

#footer ul.sm li a {
	text-indent: -99999px;
	display: block;
	margin: 0 6px;
	width: 60px;
	height: 60px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
#footer ul.sm li a.fb {
	background-image: url(../images/fb.svg);
}
#footer ul.sm li a.fb:hover {
	background-image: url(../images/fb_h.svg);
}
#footer ul.sm li a.in {
	background-image: url(../images/ins.svg);
}
#footer ul.sm li a.in:hover {
	background-image: url(../images/ins_h.svg);
}
#footer ul.sm li a.tt {
	background-image: url(../images/tt.svg);
}
#footer ul.sm li a.tt:hover {
	background-image: url(../images/tt_h.svg);
}

#footerend {
	margin-top: 50px;
	padding-bottom: 50px;
	font-size: 65%;
}
#footerend a { 
	font-size: 55%;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}
#footerend a:hover { 
	color: #d6a360;
}


/* SCROLL TO TOP */
#button_top {
  display: inline-block;
  background: linear-gradient(262deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
  width: 42px;
  height: 32px;
  padding: 12px 5px 5px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button_top::after {
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button_top:hover {
  cursor: pointer;
  background: linear-gradient(150deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
}
#button_top:active {
  background: linear-gradient(150deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
}
#button_top.show {
  opacity: 1;
  visibility: visible;
}

/* SYSTEM MESSAGE */
joomla-alert {
	padding: 25px 10px;
	width: 95%;
	margin: 0 auto 80px;
	background: linear-gradient(90deg, rgba(251,63,63,1) 0%, rgba(149,26,26,1) 100%);
	border: 0;
}
joomla-alert button {
	width: auto;
}
joomla-alert .joomla-alert--close {
	top: -2rem;
	resize: -1.5rem;
	opacity: 1;
	padding: .2rem 0.5rem;
	text-shadow: none;
	font-weight: 600;
	border-radius: 50px;
	background: linear-gradient(150deg, rgba(149,111,26,1) 0%, rgba(240,208,139,1) 100%);
	color: #fff;
}
joomla-alert .joomla-alert--close:hover {
	color: #ff0000;
	opacity: 1;
}
joomla-alert .alert-heading {
	display: none;
}
joomla-alert .alert-message {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
}

/* WHATSAPP */
.is-bottom_right {
	bottom: 0 !important;
	right: 15px !important;
}
.is-bottom_left {
	bottom: 0 !important;
}
.whatsappchat .popup-section .help-you-btn {
	border-radius: 10px 10px 0px 0px !important;
	padding: 9px 20px 7px 10px !important;
}
.whatsappchat .popup-section .help-you-btn {
	font-weight: 400;
	font-size: 15px;
}
.whatsappchat .popup-section .help-you-btn:hover {
	background: #303030 !important;
}

.whatsappchat img.is-analytics {
	padding-right: 3px !important;
	vertical-align: middle;
}
.whatsappchat .popup-section .popup .popuptext {
	display: none;
}
.whatsappchat .popup-section .popup .popuptext.show {
	display: inline-block;
}
.whatsappchat.is-bottom_left .popup-section .popup .popuptext {
	bottom: 50px !important;
}
.whatsappchat.is-bottom_left .popup-section .popup .popuptext a {
	color: #fff;
	text-decoration: underline;	
}
.whatsappchat .popup-section .popup .popuptext .popup-box .chat-content {
	margin: 5px 10px 12px !important;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top {
	height: 70px;
	font-size: 15px;
	padding-top: 7px !important;
}
.whatsappchat_121.is-bottom_left .popup-section .popup .myPopup_121::after {
	border-color: #ffffff transparent transparent transparent !important;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .chat-content .message {
	background: #eee6d5 !important;
	color: #440e62 !important;
	padding: 10px !important;
	font-size: 15px;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .chat-content .message::before {
	top: auto !important;
	right: auto !important;
	left: 24px;
	bottom: -6px;
	background-color: #eee6d5 !important;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top .close_pop_wtc {
	float: right;
	position: relative;
	top: -100px;
	right: -12px;
}
.popup-top .content p {
	margin-bottom: 0 !important;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .response {
	text-align: left;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .response input {
	padding: 10px 15px !important;
	width: 91% !important;
	box-sizing: border-box;
	text-align: left;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .response .send_btn {
	right: 10px !important;
}
.whatsappchat .popup-section .message p {
	font-size: 110%;
	line-height: 1.2;
}
.whatsappchat .popup-section .popup .send_btn {
	width: 34px;
	height: 36px;
	background: url(../images/whatsapp_send.svg) no-repeat center top / 100%;
}
.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top .close_pop_wtc svg:hover {
	background: #6f6f6f;
}



/* RESPONSIVE ELEMENTS */
@media (max-width:1340px) {
	.booking div.grid {
		margin-bottom: 15px;
	}
}
@media (max-width:1200px) {
	#content .intro [itemprop="articleBody"] {
		width: 100%;
	}
	#content,
	#content .intro {
		margin-bottom: 100px;
	}
}

@media (max-width:1100px) {
	#banner {
		margin-bottom: 8%;
	}
	.menu li {
		margin-right: 3vw;
	}
	.menu li a {
		padding: 9vw 4vw 10px 10px;
		width: 15vw;
		height: 5.2vw;
		font-size: 2.2vw;
	}
}

@media (max-width:900px) {
	.logo a {
		width: 220px;
		padding-top: 60px;
	}
	#banner .video {
		margin-top: -90px;
	}
	input[type="text"], input[type="tel"], input[type="email"], input[type="password"], textarea {
		text-align: center;
	}
	.customer .grid {
		width: 100%;
	}
	.customer .grid:nth-child(2n) {
		margin-right: 0;
	}
	.booking .cf-list label {
		width: 197px;
	}
	.video .fullscreen-video {
		width: 100vw;
		height: 106vh;
		object-fit: cover;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}
	.scrolldown {
		display: block;
	    z-index: 1000;
	    position: absolute;
	    margin: 0 auto;
	    bottom: 27%;
	    left: 48%;
	}
}

@media (max-width:730px) {
	h1, h2 {
		font-size: 160%;
		margin-bottom: 20px;
	}
	#header {
		padding: 6% 0 9%;
	}
	#download {
		padding: 16% 0 16.5%;
	}
	#download h3 {
		font-size: 140%;
	}
	.menu li {
		margin-right: 0;
		margin-bottom: 4vw;
	}
	.menu li:first-child,
	.menu li:nth-child(3) {
		margin-right: 4vw;
	}
	.menu li a {
		width: 30vw;
		height: 9vw;
		padding-top: 15vw;
		padding-left: 5vw;
		font-size: 4.5vw;
	}
	#content {
		margin-top: 80px;
	}
	#content .intro [itemprop="articleBody"] {
		font-size: 120%;
	}
	#content .rsvp [itemprop="articleBody"] {
		font-size: 110%;
	}
	#footer ul.sm li a {
		width: 50px;
		height: 50px;
	}
}

@media (max-width:670px) {
	.booking div.grid {
		width: 45%;
	}
	.booking .type_option {
		margin-bottom: 5px;
	}
	.booking .cf-list label {
		width: 170px;
		padding: 15px 20px;
		font-size: 75%;
		margin-bottom: 12px;
	}
}

@media (max-width:530px) {
	input[type="submit"], input[type="button"], button[type="submit"], button {
		width: 100%;
	}
	.customer .cf-list label {
		width: 60px;
		padding: 10px 6px;
		margin-left: 2px;
		margin-right: 2px;
	}
	#footer .contact h4 {
		margin-bottom: 20px;
	}
	#footer .contact h5 {
		display: block;
	}
	#footer .contact h5::after {
		content: "";
	}
	#footer .contact a[href^="tel"] {
		display: block;
	}
}

@media (max-width:500px) {
	.logo a {
		width: 180px;
		padding-top: 50px;
	}
	#banner .video {
		margin-top: -80px;
	}
	#banner {
		margin-bottom: 5%;
	}
	#footer {
		margin-top: 100px;
	}
	#footer .contact h4 a {
		width: 200px;
		padding-top: 35px;
	}
	.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top .close_pop_wtc {
		top: -100px;
	}
	.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top {
		height: 85px;
	}
}

@media (max-width:480px) {
	.booking div.grid {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.whatsappchat .popup-section .popup .popuptext .popup-box .popup-top .close_pop_wtc {
		top: -120px;
	}
}


