 /* =CSS Reset
--------------------------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;
}
/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article, section, figure, hgroup { display: block; }  

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
   img,object,embed {max-width: 100%;}

   /* force a vertical scrollbar to prevent a jumpy page */

/* we use a lot of ULs that aren't bulleted. 
don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

table {font-size: inherit; font: 100%;}

/* Accessible focus treatment people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active, a:focus {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* Micro Clearfix Hack */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.cf:after { clear: both; }  
.cf { zoom: 1; }  

/* End CSS Reset
--------------------------------------------------------------------------------------------------*/

/* Start Basic CSS
--------------------------------------------------------------------------------------------------*/
 body {
    font-family: 'Wix Madefor Text', sans-serif;
}

input, textarea, select, .calendar-container button {
    font-family: 'Wix Madefor Text', sans-serif !important;
    font-weight: 400;
}

body {
	font-size: 14px;
	line-height: 20px;
	color: #000;
}

html {
	height: 100%;
}

body {
	height: 100%;
}

html.canvas-opened {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow-y: scroll;
}

.wrapper {
	position: relative;
	max-width: 1920px;
	width: 100%;
	padding-bottom: 190px;
	min-height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.container {
	max-width: 1920px;
	width: 100%;
	padding-left: 400px;
	padding-right: 80px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance:textfield;
}

.btn,
.calendar-container button {
	display: inline-block;
	outline: none;
	text-decoration: none;
}

.calendar-container button {
	position: relative;
	min-width: 300px;
	height: 40px;
	color: #fff;
	line-height: 40px;
	border: 0px;
	text-align: center;
	background: #fc7c7c;
	outline: none;
	font-weight: 500;
	border-radius: 20px;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.calendar-container button:hover {
	color: #fff;
	background: #000;
}

.bordered-btn {
	position: relative;
	min-width: 120px;
	height: 40px;
	border: 1px solid #fc7c7c;
	color: #000;
	line-height: 38px;
	text-align: center;
	background: none;
	outline: none;
	font-weight: 500;
	border-radius: 20px;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.bordered-btn:hover {
	color: #fff;
	background: #fc7c7c;
}

.coral-btn {
	position: relative;
	width: 100%;
	height: 40px;
	color: #fff;
	line-height: 40px;
	text-align: center;
	background: #fc7c7c;
	outline: none;
	font-weight: 500;
	border: 0px;
	border-radius: 20px;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.coral-btn:hover {
	background: #000;
}

.white-bordered-btn {
	position: relative;
	min-width: 120px;
	height: 40px;
	margin-top: 20px;
	border: 1px solid #fff;
	color: #fff;
	line-height: 38px;
	text-align: center;
	background: none;
	outline: none;
	font-weight: 500;
	border-radius: 20px;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.white-bordered-btn:hover {
	color: #fc7c7c;
	background: #fff;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default radio
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="radio"]:not(:checked),
[type="radio"]:checked {
	position: absolute;
	left: -9999px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
	display: inline-block;
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px !important;
	cursor: pointer;
	font-size: 12px;
	line-height: 20px;
	font-weight: 400;
}

[type="radio"]:not(:checked) + label {
	color: #555;
}

[type="radio"]:checked + label {
	color: #000;
}

/* checkbox aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}

/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 3px;
	position: absolute;
	top: 7px;
	left: 7px;
	background: #000;
	display: inline-block;
}

/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="radio"]:disabled:checked + label:after {
	color: #999;
}

[type="radio"]:disabled + label {
	color: #aaa;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default checkbox
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}

[type="checkbox"]:not(:checked) + span,
[type="checkbox"]:checked + span {
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px !important;
	cursor: pointer;
	font-size: 12px;
	line-height: 20px;
}

[type="checkbox"]:not(:checked) + span {
	color: #666;
}

[type="checkbox"]:checked + span {
	color: #000 !important;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + span:before,
[type="checkbox"]:checked + span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + span:after,
[type="checkbox"]:checked + span:after {
	content: "\f00c";
	opacity: 1;
	padding: 5px 0px;
	visibility: visible;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 20px;
	background: #e90030;
	text-align: center;
	font-size: 10px !important;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font: normal normal normal 14px/1 FontAwesome;
	color: #fff;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + span:after {
	opacity: 0;
	transform: scale(0);
}

[type="checkbox"]:checked + span:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + span:before,
[type="checkbox"]:disabled:checked + span:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="checkbox"]:disabled:checked + span:after {
	color: #999;
}

[type="checkbox"]:disabled + span {
	color: #aaa;
}
/* End Basic CSS
--------------------------------------------------------------------------------------------------*/

/* Start header CSS
--------------------------------------------------------------------------------------------------*/
.header-fixed {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 320px;
	padding: 25px;
	background: #fff;
	z-index: 9999;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0, .1);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.header-fixed .tel-header,
.header-fixed .lang-selector,
.header-fixed .bordered-btn,
.header-fixed .header-normal-right {
	display: none;
}

.close-mobile-menu {
	display: none;
}

.navbar .sub-menu {
	display: none;
}

.logo-img {
	display: block;
	margin-bottom: 40px;
	font-size: 0px;
	line-height: 0px;
}

.navbar .menu-main > li {
	padding-left: 25px;
	position: relative;
	margin: 5px 0px;
}

.navbar .menu-main > li.menu-item-has-children > span {
	position: absolute;
	left: 0;
	top: 6px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url('../img/bgi/plus-coral.svg') no-repeat center center;
}

.navbar .menu-main > li > a {
	display: inline-block;
	position: relative;
	line-height: 32px;
	color: #777777;
	font-size: 20px;
	text-transform: uppercase;
	font-family: "Playfair", system-ui;
	text-decoration: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.navbar .menu-main > li > a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 1px;
	background: #fc7c7c;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.navbar .menu-main > li > a:hover:after {
	width: 100%;
}

.navbar .menu-main > li > a:hover {
	color: #000;
}

.navbar .sub-menu a {
	display: inline-block;
	text-decoration: none;
	position: relative;
	color: #777;
	font-size: 16px;
	line-height: 26px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.navbar .sub-menu a:hover {
	color: #000;
}

.navbar .sub-menu a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 1px;
	background: #000;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.navbar .sub-menu a:hover:after {
	width: 100%;
}

.header-social {
	padding: 30px 0px;
	border-bottom: 1px solid #f0f0f0;
}

.header-social li {
	display: inline-block;
	margin-right: 5px;
}

.header-social li a {
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 38px;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	color: #fc7c7c;
	font-size: 20px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.header-social li a i {
	line-height: 38px;
}

.header-social li a:hover {
	color: #fff;
	background: #fc7c7c;
	border-color: #fc7c7c;
}

.header-normal .menu-toggle {
	display: none;
}

.close-mobile-menu {
	display: none;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	height: 30px;
	background: url('../img/bgi/close-coral.svg') no-repeat center center;
	cursor: pointer;
}

.menu-toggle {
	position: relative;
	float: left;
	padding: 10px;
	border-radius: 5px;
	margin: 7.5px 20px 7.5px 0px;
	background: #fc7c7c;
	cursor:pointer;
	position:relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.hamburger {
	float: left;
	position:relative;
	width: 30px;
	height: 20px;
	left:0%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.hamburger span{
	display:block;
	width:100%;
	height:3px;
	margin-bottom:5px;
	border-radius: 10px;
	overflow:hidden;
	position:relative;
}
.hamburger span:last-child{
	margin:0;
}
.hamburger span:before,.hamburger span:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-color:#fff;
	transform:translateX(-200%);
	transition:transform ease 300ms;
}
.hamburger span:after{
	transform:translateX(0);
}
.hamburger span:nth-child(2):before,.hamburger span:nth-child(2):after{
	transition-delay:75ms;
}
.hamburger span:last-child:before,.hamburger span:last-child:after{
	transition-delay:150ms;
}
.menu-toggle:hover .hamburger span:before{
	transform:translateX(0);
}
.menu-toggle:hover .hamburger span:after{
	transform:translateX(200%);
}

.header-normal .logo-img {
	display: none;
	margin-bottom: 0px;
	float: left;
	width: 110px;
}

.header-normal {
	padding: 20px 0px;
	border-bottom: 1px solid #f0f0f0;
}

.page-template-homepage .header-normal {
	border: 0px;
}

.header-normal .tel-header {
	float: left;
}

.tel-header {
	display: block;
	position: relative;
	margin: 10px 0px;
	padding-left: 30px;
	line-height: 20px;
	text-decoration: none;
	color: #000;
	font-weight: 500;
}

.tel-header:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: url('../img/bgi/phone-coral.svg') no-repeat center center;
}

.header-normal-right {
	display: flex;
	float: right;
}

.lang-selector {
	margin: 8px 20px 8px 0px;
	display: flex;
	flex-wrap: wrap;
}

.lang-selector li {
	margin-left: 10px;
}

.lang-selector li a,
.lang-selector li span {
	display: block;
	position: relative;
	text-decoration: none;
	color: #000;
	padding-right: 30px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

.lang-selector li a {
	color: #aaa;
}

.lang-selector li .ro-lang:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: url('../img/bgi/flag-ro.svg') no-repeat center center;
}

.lang-selector li .hu-lang:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: url('../img/bgi/flag-hu.svg') no-repeat center center;
}
/* End header CSS
--------------------------------------------------------------------------------------------------*/
/* Start footer CSS
--------------------------------------------------------------------------------------------------*/
footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 40px 0px;
	background: #fbfbfb;
}

.footer-tel {
	padding-bottom: 19px;
	margin-bottom: 20px;
	border-bottom:1px solid #f0f0f0;
}

.footer-tel .tel-header {
	margin: 0px;
}

.menu-footer li {
	float: left;
	margin-right: 20px;
}

.menu-footer li a {
	display: block;
	color: #888888;
	text-decoration: none;
	font-weight: 600;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.menu-footer li a:hover {
	color: #000;
}

.copyright {
	margin-top: 10px;
	color: #888;
	font-weight: 600;
}
/* End footer CSS
--------------------------------------------------------------------------------------------------*/
/* Start homepage CSS
--------------------------------------------------------------------------------------------------*/
.desktop-slider {
	display: block !important;
}
.mobile-slider {
	display: none !important;
}

.slider-section {
	border-radius: 50px;
	overflow: hidden;
}

.home-slider .slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 0px;
	outline: none;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	z-index: 2;
	font-size: 0px;
}
.home-slider .slick-prev {
	left: 30px;
	background: rgba(255,255,255, .7) url('../img/bgi/arrow-left.svg') no-repeat center center;
}
.home-slider .slick-prev:hover {
	background: rgba(255,255,255, 1) url('../img/bgi/arrow-left.svg') no-repeat center center;
}
.home-slider .slick-next {
	right: 30px;
	background: rgba(255,255,255, .7) url('../img/bgi/arrow-right.svg') no-repeat center center;
}
.home-slider .slick-next:hover {
	background: rgba(255,255,255, 1) url('../img/bgi/arrow-right.svg') no-repeat center center;
}
.home-slider .slick-dots {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	text-align: center;
}
.home-slider .slick-dots li {
	display: inline-block;
	margin: 0px 5px;
}
.home-slider .slick-dots li button {
	outline: none;
	border: 0px;
	font-size: 0px;
	padding: 0px;
	width: 12px;
	height: 12px;
	background: transparent;
	border-radius: 6px;
	border: 1px solid #fc7c7c;
}
.home-slider .slick-dots li.slick-active button {
	background: #fff;
	border-color: #fff;
}

.section-default {
	margin: 80px 0px;
}

.promo-section {
	display: flex;
	align-items: center;
	border: 1px solid #fc7c7c;
	border-radius: 50px;
	overflow: hidden;
}

.promo-section-left {
	width: 50%;
	background: #fc7c7c;
	padding: 60px;
	color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.promo-section-right {
	width: 50%;
}

.promo-section h2 {
	margin-bottom: 20px;
	font-weight: 100;
	font-size: 46px;
	line-height: 48px;
	border-bottom: 1px solid #fff;
}

.promo-product-info {
	margin-top: 40px;
}

.product-title-promo {
	display: block;
	font-family: "Playfair", system-ui;
	font-size: 46px;
	line-height: 48px;
}

.info-spec li {
	position: relative;
	margin: 10px 0px;
	padding-left: 30px;
	line-height: 20px;
}

.info-spec li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
}

.promo-product-info .info-spec li.duration:after {
	background: url('../img/bgi/clock-white.svg') no-repeat center center;
}

.promo-product-info .info-spec li.photo-number:after {
	background: url('../img/bgi/stack-white.svg') no-repeat center center;
}

.promo-section-left .price-container {
	display: flex;
	font-size: 24px;
	line-height: 32px;
}

.promo-section-left .price-container span {
	display: block;
}

.regular-price {
	margin-right: 10px;
	font-weight: 600;
}

.promo-regular-price {
	font-weight: 300;
	text-decoration: line-through;
}

.promo-section-right {
	text-align: center;
}

.promo-section-right .promo-percentage {
	display: block;
	font-family: "Playfair", system-ui;
	font-size: 240px;
	line-height: 200px;
	letter-spacing: -20px;
	color: #fc7c7c;
}

.special-package-list {
	margin: 0px -20px;
}

.special-package-list .slick-dots,
.promo-section-wrapper .slick-dots {
	position: relative;
	margin: 20px 0px;
	width: 100%;
	text-align: center;
}
.special-package-list .slick-dots li,
.promo-section-wrapper .slick-dots li {
	display: inline-block;
	margin: 0px 5px;
}
.special-package-list .slick-dots li button,
.promo-section-wrapper .slick-dots li button {
	outline: none;
	border: 0px;
	font-size: 0px;
	padding: 0px;
	width: 12px;
	height: 12px;
	background: transparent;
	border-radius: 6px;
	border: 1px solid #fc7c7c;
}
.special-package-list .slick-dots li.slick-active button,
.promo-section-wrapper .slick-dots li.slick-active button {
	background: #fc7c7c;
}

.special-package-list .slick-slide {
	padding: 0px 20px;
}

.special-package-section {
	margin-top: 50px;
}

.special-package-list .slick-slide figure {
	border-radius: 50px;
	overflow: hidden;
}

.special-package-list .slick-slide a {
	display: block;
	text-align: center;
	text-decoration: none;
}

.special-package-list .slick-slide figure {
	margin-bottom: 30px;
	position: relative;
}

.special-package-list .slick-slide h3 {
	font-weight: 400;
	margin-bottom: 10px;
    font-family: "Playfair", system-ui;
    font-size: 32px;
    line-height: 36px;
    color: #000;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.special-package-list .slick-slide p {
	color: #777777;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.special-package-list .slick-slide a:hover h3 {
	color: #fc7c7c;
}

.special-package-list .slick-slide a:hover p {
	color: #000;
}

.draw {
	position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 50px;
    border: 1px solid #fff;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.draw-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	border-radius: 10px;
	background: #fc7c7c url('../img/bgi/plus-white.svg') no-repeat center center;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover .draw-icon,
a:hover .draw-icon-download {
	opacity: 1;
}

a:hover .draw {
    opacity: 1;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
}

.home-about-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-about-inner {
	width: calc(100% - 500px);
}

.about-image figure {
    border: 20px solid #fff;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, .1);
    border-radius: 50%;
    overflow: hidden;
}

.home-about-inner h2 {
	margin-bottom: 20px;
	font-size: 46px;
	line-height: 48px;
	font-family: "Playfair", system-ui;
	font-weight: 400;
	color: #fc7c7c;
}

.home-about-text {
	max-width: 60%;
	width: 100%;
}

.home-about-text p {
	color: #777;
}

.home-about-text .btn {
	margin-top: 30px;
}

.blog-home-section {
	display: flex;
	justify-content: space-between;
}

.home-article figure {
	position: relative;
	overflow: hidden;
	border-radius: 50px;
	margin-bottom: 20px;
}

.home-article {
	width: calc(50% - 20px);
}

.home-article a {
	display: block;
	text-align: center;
	text-decoration: none;
}

.home-article a h3 {
    font-family: "Playfair", system-ui;
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    color: #777;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.home-article a:hover h3 {
	color: #000;
}

.blog-date-cat {
	font-weight: 600;
	font-size: 12px;
	color: #fc7c7c;
}

.blog-date-cat span {
	display: inline-block;
	text-transform: uppercase
}
/* End homepage CSS
--------------------------------------------------------------------------------------------------*/

/* Start category CSS
--------------------------------------------------------------------------------------------------*/
.category-inner-section {
	margin-bottom: 50px;
}

.category-page-title {
	display: block;
	position: relative;
	margin: 40px 0px;
	padding-left: 80px;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 60px;
}

.category-page-title:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: url('../img/bgi/photo-coral.svg') no-repeat center center;
}

.product-list .product {
	margin-bottom: 30px;
}

.product-list .product a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-decoration: none;
	color: #000;
}

.product-list .product figure {
	border-radius: 50px;
	overflow: hidden;
	position: relative;
	margin-right: 50px;
	max-width: 450px;
	width: 100%;
}

.product-list-content {
	width: calc(100% - 500px);
}

.product-list .product a:hover .btn {
    color: #fff;
    background: #fc7c7c;
}

.product-list .product figure a {
	display: block;
}

.product-list-category {
	display: block;
	position: relative;
	padding-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	margin-bottom: 20px;
}

.product-list-category:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 10px;
	height: 2px;
	background: #fc7c7c;
}

.product-list .product h3 {
    display: block;
    position: relative;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 48px;
}

.product-list-content .info-spec li.duration:after {
    background: url('../img/bgi/clock-coral.svg') no-repeat center center;
}

.product-list-content .info-spec li.photo-number:after {
    background: url('../img/bgi/stack-coral.svg') no-repeat center center;
}

.product-list-content .price-container,
.product-title-wrapp .price-container {
	margin-bottom: 20px;
	color: #fc7c7c;
	font-size: 24px;
	line-height: 32px;
}
/* End category CSS
--------------------------------------------------------------------------------------------------*/

/* Start product CSS
--------------------------------------------------------------------------------------------------*/
.product-inner-section {
	margin: 50px 0px;
}

.product-category,
.product-basic-info h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    line-height: 14px;
}

.product-category:after,
.product-basic-info h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 2px;
    background: #fc7c7c;
}

.product-title-wrapp h1 {
    display: block;
    position: relative;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 60px;
}

.product-image {
	float: left;
	width: 640px;
	margin-right: 40px;
}

.product-info {
	float: left;
	width: calc(100% - 680px);
}

.product-main-image {
	border-radius: 50px;
	overflow: hidden;
}

.thumbnails {
	margin: 15px -7.5px;
}

.thumbnails .slick-slide {
	padding: 0px 7.5px;
}

.thumbnails .slick-slide a {
	display: block;
	border-radius: 50px;
	overflow: hidden;
}

.thumbnails .slick-arrow {
	position: absolute;
	z-index: 2;
	border: 0px;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	padding: 0px;
	font-size: 0px;
	line-height: 0px;
	opacity: .8;
	outline: none;
	border-radius: 20px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.thumbnails .slick-arrow:hover {
	opacity: 1;
}

.thumbnails .slick-prev {
	left: 10px;
    background: #fc7c7c url('../img/bgi/chevron-left-white.svg') no-repeat center center;
}

.thumbnails .slick-next {
	right: 10px;
    background: #fc7c7c url('../img/bgi/chevron-right-white.svg') no-repeat center center;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}

.fancybox-thumbs__list {
	margin: 0 auto;
}

.fancybox-bg,
.fancybox-is-open .fancybox-bg {
	opacity: 1;
	background: #fff;
}

.fancybox-thumbs__list a:before {
	border: 1px solid #000;
}

.fancybox-infobar {
	font-size: 16px;
	color: #333545;
	opacity: 1;
	visibility: visible;
	mix-blend-mode: unset;
}

.fancybox-toolbar {
	opacity: 1;
	visibility: visible;
}

.fancybox-button.fancybox-button--close {
	background: transparent;
	width: 60px;
	height: 50px;
	color: #666;
	opacity: 1;
	visibility: visible;
}

.fancybox-button.fancybox-button--close:hover {
	color: #000;
}

.fancybox-navigation .fancybox-button {
	opacity: 1;
	visibility: visible;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
	border: 0px;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	padding: 0px;
	font-size: 0px;
	line-height: 0px;
	opacity: .4;
	outline: none;
	border-radius: 25px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left:hover,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right:hover {
	opacity: 1;
}

.fancybox-button.fancybox-button--arrow_left div,
.fancybox-button.fancybox-button--arrow_right div {
	display: none;
}

.fancybox-button.fancybox-button--arrow_left {
	left: 10px;
    background: #fc7c7c url('../img/bgi/chevron-left-white.svg') no-repeat center center;
}

.fancybox-button.fancybox-button--arrow_right {
	right: 10px;
    background: #fc7c7c url('../img/bgi/chevron-right-white.svg') no-repeat center center;
}


.fancybox-button.fancybox-button--zoom {
	display: none !important;
}

.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: #fff;
}

.product-basic-info h2 {
	margin-bottom: 20px;
}

.product-basic-info p {
	color: #777777;
	text-align: justify;
}

.description-content ul li {
	color: #777777;
	position: relative;
	padding-left: 12px;
	text-align: justify;
}

.description-content ul li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 4px;
	height: 4px;
	background: #777;
	border-radius: 2px;
}

.specification-inner {
	margin: 30px 0px;
	border: 1px solid #f0f0f0;
	border-radius: 20px;
	overflow: hidden;
}

.specification-inner ul li {
	display: flex;
	flex-wrap: wrap;
	line-height: 20px;
	padding: 10px 20px;
	background: #fbfbfb;
}

.specification-inner ul li:nth-child(2n) {
	background: #fff;
}

.spec-label {
	display: block;
	width: 30%;
}

.spec-value {
	display: block;
	width: 70%;
	padding-left: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.promo-price-line {
	text-decoration: line-through;
}
/* End product CSS
--------------------------------------------------------------------------------------------------*/

/* Start about CSS
--------------------------------------------------------------------------------------------------*/
.container-small {
	max-width: 1080px;
	width: 100%;
}

.top-banner {
	position: relative;
	margin: 40px 0px;
	border-radius: 50px;
	overflow: hidden;
}

.top-banner h1 {
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 60px;
    color: #000;
    text-align: center;
    z-index: 2;
}

.about-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}

.about-row figure {
	width: 450px;
	border-radius: 50px;
	overflow: hidden;
}

.about-text {
	margin-left: 50px;
	width: calc(100% - 500px);
}

.about-text p strong {
	display: block;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-size: 12px;
    line-height: 14px;
}

.about-text p strong:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 2px;
    background: #fc7c7c;
}

.about-text h2 {
    display: block;
    margin-bottom: 20px;
    position: relative;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 48px;
    color: #fc7c7c;
}

.about-text p {
	text-align: justify;
	color: #777777;
}
/* End about CSS
--------------------------------------------------------------------------------------------------*/

/* Start portfolio CSS
--------------------------------------------------------------------------------------------------*/
.portfolio-inner-section {
	margin-bottom: 50px;
}

.portfolio-list {
	display: flex;
	flex-wrap: wrap;
}

.portfolio-list li {
	width: calc(100% / 3 - 30px);
	margin-right: 45px;
	margin-bottom: 45px;
}

.portfolio-list li:nth-child(3n) {
	margin-right: 0px;
}

.portfolio-list li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #777;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.portfolio-list li a:hover {
	color: #000;
}

.portfolio-list li a figure {
	margin-bottom: 30px;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
}

.portfolio-info {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.portfolio-info:after {
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background: #fc7c7c;
}

.portfolio-list li a h2 {
    display: block;
    position: relative;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
}


.gallery-sizer,
.gallery-grid { 
	width: calc(100% / 3);
}

.gallery-grid a {
	display: block;
	border-radius: 50px;
	overflow: hidden;
}

.gallery-grid {
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.gallery-grid a {
	display: block;
	overflow: hidden;
}

.gallery-grid a img {
	display: block;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.gallery-grid a:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
/* End portfolio CSS
--------------------------------------------------------------------------------------------------*/

/* Start contact CSS
--------------------------------------------------------------------------------------------------*/
.contact-inner {
	max-width: 600px;
	width: 100%;
	margin-left: 80px;
}

.category-page-title.contact-title:after {
	background: url('../img/bgi/contact-coral.svg') no-repeat center center;
}

.basic-contact-info a {
	display: inline-block;
	font-size: 32px;
	line-height: 36px;
	font-weight: 600;
	color: #000;
	text-decoration: none;
}

.basic-contact-info {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #fc7c7c;
}

.company-info p {
	margin-bottom: 30px;
}

#map-canvas {
	width: 100%;
	height: 300px;
	padding-left: 320px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* End contact CSS
--------------------------------------------------------------------------------------------------*/

/* Start blog CSS
--------------------------------------------------------------------------------------------------*/
.blog-content {
	float: left;
	width: calc(100% - 360px);
}

.blog-aside {
	float: left;
	width: 320px;
	margin-left: 40px;
	margin-top: 40px;
}

.blog-container article {
	float: left;
	width: calc(50% - 20px);
	margin-right: 40px;
	margin-bottom: 40px;
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.blog-container article:nth-child(2n) {
	margin-right: 0px;
}

.blog-inner-content {
	padding: 40px;
	text-align: center;
}

.blog-container article h2 a {
    line-height: 26px;
    color: #000;
    font-size: 24px;
    text-decoration: none;
    font-weight: 400;
    font-family: "Playfair", system-ui;
}

.blog-container article .excerpt {
	margin: 30px 0px;
	color: #777777;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.blog-container article:hover .excerpt {
	color: #000;
}

.blog-container article:hover {
	    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .1);
}

.category-list-aside {
	padding: 30px;
	background: #fbfbfb;
	border-radius: 20px;
	border: 1px solid #f0f0f0;
}

.category-list-aside li {
	margin-bottom: 5px;
}

.category-list-aside li a {
	display: flex;
	justify-content: space-between;
	height: 40px;
	padding: 0px 15px;
	font-size: 14px;
	color: #777;
	line-height: 39px;
	border-radius: 20px;
	background: #fff;
	text-decoration: none;
	border: 1px solid #f0f0f0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.category-list-aside li a:hover,
.category-list-aside li.active a {
	color: #fff;
	background: #fc7c7c;
	border-color: #fc7c7c;
}

.aside-title {
	display: block;
	margin-bottom: 10px;
    line-height: 26px;
    color: #000;
    font-size: 24px;
    text-decoration: none;
    text-align: center;
    font-weight: 400;
    font-family: "Playfair", system-ui;
}

.category-list-aside li a span {
	color: #fc7c7c;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.category-list-aside li a:hover span,
.category-list-aside li.active a span {
	color: #fff;
}

.top-search h1 {
	padding-left: 60px;
}

.top-search h1:after {
	background: url('../img/bgi/search-coral.svg') no-repeat center center;
	background-size: 60%;
}

.blog-search {
	position: relative;
	margin-bottom: 10px;
}

.search-textbox {
	display: block;
	width: 100%;
	height: 40px;
	background: #fbfbfb;
	border-radius: 20px;
	padding: 0px 40px 0px 20px;
	border: 1px solid #f0f0f0;
	outline: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.search-textbox:focus {
	background: #fff;
}

.search-button {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	border: 0px;
	outline: none;
	background: url('../img/bgi/search-coral.svg') no-repeat center center;
}

.blog-post-section {
	margin: 40px 0px;
}

.blog-inner-wrapper h1 {
    display: block;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 60px;
}

.blog-inner-wrapper .product-list-category {
	margin-bottom: 0px;
}

.share-social-links {
	display: flex;
	margin: 10px 0px 20px;
}

.share-social-links li {
	width: 20px;
	margin-right: 20px;
}

.share-social-links li a {
	display: block;
}

.share-social-links li a svg {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.share-social-links li a:hover svg {
	fill: #fc7c7c;
}

.blog-inner-wrapper figure {
	margin-bottom: 30px;
}

.blog-inner-wrapper p {
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 24px;
	font-style: italic;
	text-align: justify;
    font-family: "Playfair", system-ui;
}

.blog-inner-wrapper .default-content-text ul {
	margin-bottom: 30px;
}

.blog-inner-wrapper blockquote {
	display: block;
	padding: 30px 30px 30px 60px;
	margin-bottom: 30px;
	border-left: 2px solid #fc7c7c;
}

.blog-inner-wrapper blockquote p {
	margin: 0px;
	font-weight: 200;
	font-size: 42px;
	line-height: 42px;
}

.blog-inner-wrapper .default-content-text ul li {
	position: relative;
	padding-left: 12px;
	font-size: 20px;
	line-height: 24px;
	font-style: italic;
	text-align: justify;
    font-family: "Playfair", system-ui;
}

.blog-inner-wrapper .default-content-text ul li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: #000;
}

.blog-inner-wrapper img {
	border-radius: 30px;
}

.blog-inner-wrapper img.aligncenter {
	display: block;
	margin: 0 auto;
}

.blog-inner-wrapper h2 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 34px;
    font-weight: 400;
    font-family: "Playfair", system-ui;
    color: #fc7c7c;
}
/* End blog CSS
--------------------------------------------------------------------------------------------------*/

/* Start galerie CSS
--------------------------------------------------------------------------------------------------*/
.category-page-title.login-page-title:after {
	background: url('../img/bgi/login-coral.svg') no-repeat center center;
}

.draw-icon-download {
	position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 10px;
    background: #fc7c7c url('../img/bgi/download-folder-white.svg') no-repeat center center;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.gallery-login {
	margin-left: 80px;
	width: 340px;
}

.gallery-login .login-username {
	margin-bottom: 10px;
}

.gallery-login .login-username label,
.gallery-login .login-password label {
	display: block;
	text-transform: uppercase;
	color: #777777;
	font-size: 12px;
	line-height: 14px;
}

.gallery-login .login-username input,
.gallery-login .login-password input {
	display: block;
	padding: 0px 20px;
	width: 100%;
	height: 40px;
	border-radius: 20px;
	outline: none;
	background: #fbfbfb;
	border: 1px solid #f0f0f0;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.gallery-login .login-username input:focus,
.gallery-login .login-password input:focus {
	background: #fff;
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, .05);
}

.login-remember {
	margin: 10px 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default checkbox
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -6669px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	display: inline-block;
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
}
[type="checkbox"]:not(:checked) + label {
	color: #777;
}
[type="checkbox"]:checked + label {
	color: #000 !important;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid #f0f0f0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: "";
	opacity: 1;
	padding: 0px;
	visibility: visible;
	position: absolute;
	left: 5px;
	top: 5px;
	width: 10px;
	height: 10px;
	color: #fff;
	background: #fc7c7c;
	text-align: center;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
[type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
	color: #666;
}
[type="checkbox"]:disabled + label {
	color: #aaa;
}
/* End galerie CSS
--------------------------------------------------------------------------------------------------*/

/* Start terms CSS
--------------------------------------------------------------------------------------------------*/
.terms-title.category-page-title {
	padding-left: 0;
}

.terms-title.category-page-title:after {
	display: none;
}

.terms-inner {
	max-width: 1024px;
}

.terms-inner h2 {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
}

.terms-inner ul {
	margin-bottom: 20px;
	color: #777;
}

.terms-inner ul li {
	position: relative;
	padding-left: 10px;
}

.terms-inner ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #000;
}

.terms-inner p {
	margin-bottom: 20px;
	text-align: justify;
	color: #777;
}

.terms-inner p a {
	color: #777h;
}

.terms-section {
	margin-bottom: 50px;
}
/* End terms CSS
--------------------------------------------------------------------------------------------------*/

.error-section {
	margin: 50px 0px;
}

.error-section h1 {
	display: block;
    margin-bottom: 20px;
    position: relative;
    font-family: "Playfair", system-ui;
    font-weight: 400;
    font-size: 46px;
    line-height: 48px;
    color: #fc7c7c;
}

.error-section p {
	margin-bottom: 20px;
}

.calendar-container {
	margin-top: 20px;
}

.booknetic_service_card_description {
	display: none !important;
}
