@charset "utf-8";

.grecaptcha-badge {
	visibility: hidden;
}

/* header */
header {
	background: #fff;
	display: block;
	position: relative;
	width: 100%;
	z-index: 2;
	transition: background 0.42s linear;
}

header .header-inner {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding: 60px 80px 0;
	transition: padding 0.42s linear;
}

header .header-inner .socials {
	display: flex;
}

header .header-inner .socials li {
	display: block;
}

header .header-inner .socials li a {
	display: block;
	height: 21px;
	/*margin-right: 10px;*/
	overflow: hidden;
	position: relative;
	text-indent: -99999px;
	width: 21px;
}

header .header-inner .socials li.ig-link a {
	background-image: url("../img/ig-link.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	display: block;
	opacity: 1;
	transition: opacity 0.42s ease-in-out;
}

header .header-inner .socials li.ig-link a:hover {
	opacity: 0.6;
}

header .header-inner .logo {
	display: block;
	/*left: 50%;*/
	/*margin-left: -110.5px;*/
	/*margin-top: -9px;*/
	/*position: absolute;*/
	width: 221px;
}

header .header-inner .logo svg {
	display: block;
	/*height: auto;*/
	height: 100%;
	width: 100%;
}

header .header-inner .logo svg path {
	transition: fill 0.42s ease-in-out;
}

header .header-inner .logo:hover svg path {
	fill: #8c918d;
}

header .header-inner .menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	/*padding-top: 8px;*/
}

header .header-inner .menu li {
	display: block;
	/*padding-left: 30px;*/
	position: relative;
}

header .header-inner .menu li:first-of-type {
	padding-left: 0px;
}

header .header-inner .menu li a {
	display: block;
	padding: 10px 0;
	color: #555f57;
	font-family: proxima-nova, sans-serif;
	font-size: 13px;
	line-height: 1em;
	font-weight: 600;
	text-transform: uppercase;
	transition: color 0.42s ease-in-out;
}

header .header-inner .menu li a:hover {
	color: #8c918d;
}

/* SUBMENU */
header .header-inner .menu .sub-menu {
	margin: auto;
	list-style: none;
	transition: all .2s ease;
	border: 1px solid rgba(86, 95, 88, 0.5);
	padding: 5px 0;
	position: absolute;
	left: 50%;
	z-index: 1;
	transform: translateY(30px) translateX(-50%);
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
}
header .header-inner .menu .sub-menu a {
	white-space: nowrap;
	padding: 10px 20px;
	display: block;
	color: #565f58;
	font-weight: 300;
	text-transform: none;
	font-size: 14px;
}
header .header-inner .menu .sub-menu a:hover {
	background-color: #565f58;
	color: #fff;
}
header .header-inner .menu .sub-menu li {
	padding: 0;
	position: relative;
}
header .header-inner .menu .sub-menu li .sub-menu {
	transform: translateY(0) translateX(30px);
	top: 0;
	left: 100%;
	min-width: auto;
}
header .header-inner .menu .sub-menu:before {
	content: "";
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -1;
	bottom: 0;
	border-width: 0;
	border-style: solid;
	border-color: #ddd;
	box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
header .header-inner .menu .menu-item:hover > .sub-menu {
	transform: translateY(0) translateX(-50%);
	opacity: 1;
	visibility: visible;
}
header .header-inner .menu .menu-item .sub-menu li:hover .sub-menu {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}
/* END SUBMENU */

header .header-inner .socials,
header .header-inner .menu {
	flex: 1;
	width: 50%;
}

header .header-inner li.cart-icon span {
	background-color: #565f58;
	width: 24px;
	height: 24px;
	position: absolute;
	border-radius: 100%;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	left: 16px;
	top: 2px;
}

header .header-inner li.cart-icon > a {
	background: url(../img/cart.svg) no-repeat center center;
	background-size: contain;
	font-size: 0;
	width: 20px;
	height: 20px;
	display: inline-flex;
	position: relative;
	top: -4px;
}

header .header-inner .mobile-nav {
	display: none;
}

header.menu-open,
body.menu-open {
	background: #efe3e4;
}

header.menu-open + .intro,
header.menu-open + .intro + .slideshow,
header.menu-open + .intro + .slideshow + .services,
header.menu-open + .intro + .slideshow + .services + .image-article,
header.menu-open
+ .intro
+ .slideshow
+ .services
+ .image-article
+ .instagram-block,
header.menu-open
+ .intro
+ .slideshow
+ .services
+ .image-article
+ .instagram-block
+ footer,
header.menu-open + .intro + .about-article,
header.menu-open + .intro + .about-article + .testimonials,
header.menu-open + .intro + .about-article + .testimonials + .image-article,
header.menu-open
+ .intro
+ .about-article
+ .testimonials
+ .image-article
+ footer {
	display: none;
}

header.sticky {
	background-color: #fff;
	/*height: 70px;*/
	position: fixed;
	top: 0;
}

header.sticky .header-inner {
	/*padding-top: 26px;*/
	padding: 10px 80px;
}

header.sticky .header-inner .logo {
	/*margin-left: -95px;*/
	/*margin-top: -5px;*/
	/*width: 190px;*/
	width: auto;
	height: 50px;
}

header.sticky + .intro {
	padding-top: 270px;
}

.menu-hamburger {
	display: block;
	vertical-align: middle;
	z-index: 999;
	width: 20px;
	height: 18px;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
}
.menu-hamburger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: #565f58;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out; }
.menu-hamburger span:nth-child(1) {top: 3px;}
.menu-hamburger span:nth-child(2) {top: 8px;}
.menu-hamburger span:nth-child(3) {top: 13px;}
.menu-hamburger.open span {background-color: #fff;}
.menu-hamburger.open span:nth-child(1) {top: 8px; transform: rotate(135deg);}
.menu-hamburger.open span:nth-child(2) {top: 7px; opacity: 0; left: -30px;}
.menu-hamburger.open span:nth-child(3) {top: 8px; transform: rotate(-135deg);}
.main-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(85, 95, 87, 0.2);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	height: 100%;
}

/* intro */
.intro {
	background: #fff;
	color: #555f57;
	display: block;
	padding: 0px 80px;
	padding-bottom: 156px;
	padding-top: 200px;
	text-align: center;
	width: 100%;
}

.intro .intro-content {
	display: block;
	max-width: 740px;
	margin: 0px auto;
}

.intro h1 {
	font-size: 16px;
	line-height: 1.5em;
	padding-bottom: 23px;
	text-transform: uppercase;
}

.intro p {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 44.31px;
	line-height: 1.2em;
}

.about .intro {
	padding-bottom: 386px;
}

/* slideshow */
.slideshow {
	background: #fff;
	display: block;
	overflow: hidden;
	position: relative;
}

.slideshow .slideshow-item {
	position: relative;
	vertical-align: middle;
}

.slideshow .slideshow-item img {
	display: block;
	height: auto;
	width: 100%;
}

/* services */
.services {
	background: #fff;
	color: #555f57;
	display: block;
	padding: 0px 195px;
	padding-bottom: 164px;
	padding-top: 172px;
}

.services .services-inner {
	display: flex;
}

.services .services-inner article {
	cursor: pointer;
	display: block;
	margin: 0px 15px;
	text-align: center;
	width: calc(33.33% - 30px);
}

.services .services-inner article .article-image {
	display: block;
	overflow: hidden;
	position: relative;
}

.services .services-inner article .article-image img {
	display: block;
	height: auto;
	width: 100%;
	transition: transform 0.42s ease-in-out;
}

.services .services-inner article h2 {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.2em;
	padding-bottom: 11px;
	padding-top: 74px;
	transition: color 0.42s ease-in-out;
}

.services .services-inner article p {
	display: block;
	font-size: 16px;
	line-height: 1.5em;
	margin: 0px auto;
	max-width: 245px;
	width: 80%;
}

.services .services-inner article hr {
	background: #565f58;
	border: 0px none;
	display: block;
	height: 1px;
	margin: 0px auto;
	margin-bottom: 17px;
	margin-top: 30px;
	padding: 0px;
	width: 24px;
}

.services .services-inner article span.services-link {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	transition: color 0.42s ease-in-out;
}

.services .services-inner article:hover .article-image img {
	transform: scale(1.2);
}

.services .services-inner article:hover h2,
.services .services-inner article:hover span.services-link {
	color: #8c918d;
}

/* image-article */
.image-article {
	background: #efe3e4;
	color: #555f58;
	display: block;
	overflow: hidden;
	position: relative;
	padding: 0px 195px;
	padding-bottom: 119px;
	padding-top: 106px;
}

.image-article .image-article-inner {
	display: flex;
	align-items: center;
}

.image-article .image-article-inner .image-article-left {
	padding-right: 30px;
	width: 50%;
}

.image-article .image-article-inner .image-article-left img {
	display: block;
	height: auto;
	margin-left: auto;
	max-width: 100%;
}

.image-article .image-article-inner .image-article-right {
	padding-left: 80px;
	text-align: center;
	width: 50%;
}

.image-article
.image-article-inner
.image-article-right
.image-article-content {
	display: block;
	padding-bottom: 66px;
	width: 470px;
}

.image-article .image-article-inner .image-article-right h3 {
	font-size: 16px;
	line-height: 1.5em;
	padding-bottom: 25px;
	text-transform: uppercase;
}

.image-article .image-article-inner .image-article-right h2 {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2em;
	padding-bottom: 24px;
}

.image-article .image-article-inner .image-article-right p {
	font-size: 16px;
	line-height: 1.5em;
}

.image-article .image-article-inner .image-article-right hr {
	background: #565f58;
	border: 0px none;
	display: block;
	height: 1px;
	margin: 0px auto;
	margin-bottom: 17px;
	margin-top: 39px;
	padding: 0px;
	width: 24px;
}

.image-article .image-article-inner .image-article-right span.article-link {
	color: inherit;
	cursor: pointer;
	font-size: 18.17px;
	font-weight: 600;
	line-height: 1.5em;
	padding-bottom: 25px;
	text-transform: uppercase;
	transition: color 0.42s ease-in-out;
}

.image-article
.image-article-inner
.image-article-right
span.article-link:hover {
	color: #8c918d;
}

.about .about-article {
	overflow: inherit;
	padding-bottom: 164px;
	padding-top: 0px;
}

.about .about-article img {
	display: block;
	height: auto;
	margin: 0px auto;
	top: -230px;
	margin-bottom: -230px;
	position: relative;
	max-width: 100%;
}

.about .about-article .image-content {
	display: block;
	margin: 0px auto;
	padding-top: 97px;
	text-align: center;
	width: 710px;
}

.about .about-article .image-content h2 {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 23px;
	line-height: 1.48em;
	padding-bottom: 21px;
}

.about .about-article .image-content p {
	font-size: 16px;
	line-height: 1.5em;
}

.about .about-image-article .image-article-inner .image-article-content {
	padding-bottom: 66px;
}

.about .about-image-article .image-article-inner .image-article-right h3 {
	line-height: 1.2em;
	padding-bottom: 21px;
}

.about .about-image-article .image-article-inner .image-article-right h2 {
	padding-bottom: 19px;
}

.about .about-image-article .image-article-inner .image-article-right hr {
	margin-bottom: 18px;
	margin-top: 47px;
}

/* instagram-block */
.instagram-block {
	background: #fff;
	display: block;
	padding: 0px 195px;
	padding-bottom: 174px;
	padding-top: 111px;
	text-align: center;
	width: 100%;
}

.instagram-block h4 {
	cursor: pointer;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2em;
	position: relative;
}

.instagram-block h4:before {
	background: url("../img/ig-link.svg");
	background-size: 100% auto;
	content: "";
	display: block;
	height: 24px;
	left: 50%;
	margin-bottom: 10px;
	margin-left: -12px;
	position: relative;
	width: 24px;
	opacity: 1;
	transition: opacity 0.42s ease-in-out;
}

.instagram-block h4:hover:before {
	opacity: 0.6;
}

.instagram-block .instagram-grid #sb_instagram #sbi_images {
	display: flex;
	justify-content: center;
	padding-top: 44px;
}

.instagram-block .instagram-grid #sb_instagram #sbi_images .sbi_item {
	display: block !important;
	margin: 0px 15px !important;
	overflow: hidden !important;
	position: relative !important;
	width: calc(25% - 30px) !important;
}

.instagram-block .instagram-grid #sb_instagram #sbi_images .sbi_item a {
	background-size: 100% auto !important;
	transition: all 0.42s ease-in-out;
}

.instagram-block .instagram-grid #sb_instagram #sbi_images .sbi_item a:hover {
	background-size: 106% auto !important;
}

.instagram-block .instagram-grid a img {
	display: block;
	height: auto;
	width: 100%;
	transition: transform 0.42s ease-in-out;
}

.instagram-block .instagram-grid a:hover img {
	transform: scale(1.2);
}

/* footer */
footer {
	border-bottom: 1px solid #fff;
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

footer .footer-inner {
	display: flex;
	justify-content: space-between;
	padding: 0px 205px;
	padding-bottom: 132px;
}

footer .footer-inner .footer-left {
	display: flex;
	align-items: flex-start;
	padding-top: 94px;
}

footer .footer-inner .footer-left img {
	display: block;
	height: auto;
	width: 41px;
}

footer .footer-inner .footer-left p {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 21px;
	line-height: 1.52em;
	padding-left: 40px;
	padding-top: 1px;
	width: 635px;
}

footer .footer-inner .footer-right {
	padding-top: 90px;
	text-align: right;
}

footer .footer-inner .footer-right .socials {
	display: inline-block;
	padding-bottom: 27px;
}

footer .footer-inner .footer-right .socials li {
	display: block;
}

footer .footer-inner .footer-right .socials li a {
	display: block;
	height: 24px;
	margin-left: 10px;
	overflow: hidden;
	position: relative;
	text-indent: 9999px;
	width: 24px;
}

footer .footer-inner .footer-right .socials li.ig-link a {
	background: url("../img/ig-link.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	display: block;
	opacity: 1;
	transition: opacity 0.42s ease-in-out;
}

footer .footer-inner .footer-right .socials li.ig-link a:hover {
	opacity: 0.6;
}

footer .footer-inner .footer-right p {
	font-size: 16px;
	line-height: 1.5em;
}

footer .footer-inner .footer-right p strong {
	font-weight: 600;
}

footer .footer-inner .footer-right p a {
	color: inherit;
}

footer .footer-inner .footer-right p a:hover {
	text-decoration: underline;
}

/* testimonials */
.testimonials {
	background: #fff;
	color: #555f57;
	display: block;
	padding-bottom: 211px;
	padding-top: 159px;
	text-align: center;
	width: 100%;
}

.testimonials h3 {
	font-size: 16px;
	line-height: 1em;
	text-transform: uppercase;
}

.testimonials .carousel {
	display: block;
}

.testimonials .carousel-item {
	padding-top: 35px;
	margin: 0px auto;
	width: 860px !important;
}

.testimonials .carousel-item p {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 23px;
	line-height: 1.48em;
}

.testimonials .carousel-item h4 {
	font-size: 16px;
	line-height: 1.2em;
	padding-top: 37px;
}

.testimonials .carousel .slick-dots {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 39px;
	left: 80px;
	width: 10px;
	z-index: 2;
}

.testimonials .carousel .slick-dots li {
	display: block;
	height: 10px;
	margin-bottom: 8px;
	width: 10px;
}

.testimonials .carousel .slick-dots li button {
	background: #acb1ad;
	border: 0px none;
	color: #acb1ad;
	display: block;
	height: 100%;
	margin: 0px;
	overflow: hidden;
	padding: 0px;
	text-indent: -99999px;
	width: 100%;
	transition: background 0.45s ease-in-out;
}

.testimonials .carousel .slick-dots li.slick-active button {
	background: #565f58;
	color: #565f58;
}

.testimonials .carousel .slick-dots li button:hover {
	background: #565f58;
	color: #565f58;
}

/* clients-block */
.clients-block {
	background: #fff;
	color: #555f57;
	display: block;
	padding-bottom: 216px;
	padding-top: 162px;
	text-align: center;
}

.clients-block h3 {
	font-size: 16px;
	line-height: 1.2em;
	text-transform: uppercase;
}

.clients-block .clients-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 75px;
}

.clients-block .clients-grid div {
	border-right: 1px solid #e6e7e6;
}

.clients-block .clients-grid div:last-of-type {
	border-right: 0px none;
}

.clients-block .clients-grid div img {
	display: block;
	height: auto;
	width: auto;
	max-width: 100%;
}

/* contact_modal */
#contact_modal {
	background: #efe3e4;
	display: block;
	left: 0px;
	height: 100%;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 99;
}

#contact_modal .contact-inner {
	display: block;
	margin: 0px auto;
	padding-top: 188px;
	width: calc(100% - 410px);
}

#contact_modal .contact-inner .contact-content p {
	font-size: 16px;
	line-height: 1.5em;
}

#contact_modal .contact-inner .contact-content p strong {
	font-weight: 600;
}

#contact_modal .contact-inner .contact-content a {
	color: inherit;
}

#contact_modal .contact-inner .contact-content a:hover {
	text-decoration: underline;
}

#contact_modal .contact-inner #close_contact {
	cursor: pointer;
	display: block;
	font-size: 13px;
	font-weight: 600;
	left: 50%;
	margin-left: -25px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 188px;
	width: 50px;
	transition: color 0.42s ease-in-out;
}

#contact_modal .contact-inner #close_contact:before {
	content: "X";
	display: block;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 30px;
	padding-bottom: 16px;
	transition: color 0.42s ease-in-out;
}

#contact_modal .contact-inner #close_contact:hover,
#contact_modal .contact-inner #close_contact:hover:before {
	color: #8c918d;
}

#contact_modal .contact-inner #close_ty {
	cursor: pointer;
	display: block;
	font-size: 13px;
	font-weight: 600;
	left: 50%;
	margin-left: -25px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 188px;
	width: 50px;
}

#contact_modal .contact-inner #close_ty:before {
	content: "X";
	display: block;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 30px;
	padding-bottom: 16px;
}

#contact_modal .contact-inner .ty-content {
	padding-bottom: 156px;
	padding-top: 156px;
	text-align: center;
}

#contact_modal .contact-inner .ty-content h2 {
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 32px;
	text-transform: uppercase;
}

#contact_modal .contact-inner .ty-content p {
	dislay: block;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 44.31px;
	line-height: 1.19em;
	margin: 0px auto;
	max-width: 750px;
}

#contact_modal .contact-inner .ty-content p a {
	color: inherit;
}

#contact_modal .contact-inner form {
	display: flex;
	flex-direction: column;
	margin: 0px auto;
	padding-top: 80px;
	padding-bottom: 60px;
	position: relative;
	width: 359px;
}

#contact_modal .contact-inner form div:first-of-type + p {
	order: 1;
}

#contact_modal .contact-inner form .wpcf7-response-output {
	border: 0px none;
	color: #e0276c;
	order: 0;
	text-align: center;
	padding: 0px;
	position: absolute;
	text-align: center;
	margin: 0px;
	top: 42px;
	width: 100%;
}

#contact_modal .contact-inner form span.wpcf7-not-valid-tip {
	display: none !important;
}

#contact_modal .contact-inner form .wpcf7-form-control-wrap {
	display: block;
}

#contact_modal .contact-inner form .wpcf7-form-control-wrap input,
#contact_modal .contact-inner form .wpcf7-form-control-wrap textarea {
	background: #f9f4f4;
	border: 1px solid #f9f4f4;
	color: #555f57;
	display: block;
	font-size: 16px;
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px;
	padding-bottom: 20px;
	padding-top: 19px;
	text-align: center;
	transition: border 0.42s ease-in-out;
	width: 100%;
}

#contact_modal .contact-inner form .wpcf7-form-control-wrap textarea {
	height: 151px;
	resize: none;
}

#contact_modal
.contact-inner
form
.wpcf7-form-control-wrap
input.wpcf7-not-valid,
#contact_modal
.contact-inner
form
.wpcf7-form-control-wrap
textarea.wpcf7-not-valid {
	border-color: #e0276c;
}

#contact_modal .contact-inner form hr {
	order: 3;
	background: #565f58;
	border: 0px none;
	display: block;
	height: 1px;
	margin: 0px auto;
	margin-bottom: 28px;
	margin-top: 33px;
	padding: 0px;
	width: 24px;
}

#contact_modal .contact-inner form input.wpcf7-submit {
	background: none;
	border: 0px none;
	color: #555f58;
	font-size: 18.17px;
	font-weight: 600;
	order: 4;
	text-transform: uppercase;
	transition: color 0.42s ease-in-out;
}

#contact_modal .contact-inner form input.wpcf7-submit:hover {
	color: #8c918d;
}

#contact_modal .contact-inner .wpcf7 + p {
	display: block;
	font-size: 13px;
	padding-bottom: 60px;
	line-height: 1.19em;
	margin: 0px auto;
	text-align: center;
	opacity: 0.5;
	width: 359px;
}

#contact_modal .contact-inner .wpcf7 + p a {
	color: inherit;
	text-decoration: underline;
}

/* service-gallery */
.service-gallery {
	background: #efe3e4;
	display: block;
	left: 0px;
	height: 100%;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 99;
}

.service-gallery .service-gallery-inner {
	display: block;
	margin: 0px auto;
	padding-bottom: 221px;
	padding-top: 305px;
	width: calc(100% - 424px);
}

.service-gallery .service-gallery-inner .close-gallery {
	cursor: pointer;
	display: block;
	font-size: 13px;
	font-weight: 600;
	left: 50%;
	margin-left: -25px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 188px;
	width: 50px;
}

.service-gallery .service-gallery-inner .close-gallery:before {
	content: "X";
	display: block;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 30px;
	padding-bottom: 16px;
}

.service-gallery .service-gallery-inner .slick-list {
	background: url("../img/loading.svg") no-repeat center;
	background-size: auto 120px;
}

.service-gallery .service-gallery-inner .slick-track {
	display: flex !important;
	align-items: center;
}

.service-gallery .service-gallery-inner .slick-slide img {
	display: block;
	height: auto;
	margin: 0px auto;
	width: 100%;
}

.service-gallery .service-gallery-inner .slick-slide.slick-loading img {
	opacity: 0;
}

.service-gallery .service-gallery-inner .slick-slide img.portrait {
	max-width: 456px;
}

.service-gallery .service-gallery-inner .slick-slide img.landscape {
	max-width: 682px;
}

.service-gallery .service-gallery-inner .slick-arrow {
	background: none;
	border: 0px none;
	cursor: pointer;
	display: flex;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 50px;
	height: 52px;
	align-items: center;
	position: absolute;
	margin-top: -26px;
	top: 50%;
}

.service-gallery .service-gallery-inner .slick-arrow.slick-prev {
	left: 0px;
}

.service-gallery .service-gallery-inner .slick-arrow.slick-next {
	right: 0px;
}

#scroll_up {
	bottom: -60px;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 80px;
	height: 40px;
	width: 40px;
	transition: all 0.42s ease-in-out;
}

#scroll_up svg {
	display: block;
	height: auto;
	width: 100%;
}

#scroll_up.visible {
	bottom: 32px;
	visibility: visible;
	opacity: 1;
}

.woocommerce ul.products li.product .price ins {
	font-weight: 300 !important;
}

.archive .site-main .entry-header {
	display: none;
}

.archive .site-main {
	background: #fff;
	min-height: 700px;
	padding-bottom: 160px;
}

.archive .site-main .products:before,
.archive .site-main .products:after {
	display: none !important;
}

.archive .site-main .products {
	max-width: 1180px;
	margin: auto;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 80px 30px;
}

.archive .site-main .products li,
.archive .site-main .products li > a {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 100% !important;
	margin: 0 !important;
}

.archive .site-main .products li a.woocommerce-loop-product__link img {
	height: 434px;
	width: 100%;
	object-fit: cover;
}

.archive .site-main .products li a .woocommerce-loop-product__title {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	font-size: 26px;
	margin: 0px;
	margin-bottom: 20px;
	line-height: 115%;
	height: 90px;
	margin: 0px;
}

.archive .site-main .products li a .price {
	font-size: 16px;
	color: #565f58;
}

.intro_custom {
	padding-bottom: 100px;
}

.woocommerce-products-header,
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.site-main .products li .add_to_cart_button,
.archive .site-main .products li .onsale {
	display: none !important;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	font-family: WooCommerce;
	content: "\e028";
	display: inline-block;
	position: absolute;
	top: 30px;
	left: 1.5em;
}

.woocommerce table.cart tr .quantity .qty {
	width: 78px;
	text-align: center;
	height: 58px;
	padding: 0;
	font-size: 13px;
}

.woocommerce-breadcrumb {
	display: none !important;
}

/*SINGLE PRODUCT  */
.single-product .content-area {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding-bottom: 175px;
}

.single-product .content-area .site-main .product {
	display: grid;
	grid-template-columns: 560px 435px;
	grid-gap: 60px;
	justify-content: center;
	margin-top: 195px;
	align-items: flex-start;
	overflow: hidden;
}

.single-product .content-area .site-main .product .woocommerce-product-gallery,
.single-product .content-area .site-main .product .summary {
	margin: 0px;
	float: none;
	width: 100%;
}

.single-product .content-area .site-main .product .woocommerce-product-gallery {
	position: -webkit-sticky;
	position: sticky;
	top: 20px;
}

.single-product .content-area .site-main .product .summary {
	padding-top: 10%;
}

.single-product .content-area .site-main .product .summary .product_title {
	font-size: 36px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 110%;
	margin-bottom: 25px;
}

.single-product .content-area .site-main .product .summary .price {
	color: #565f58;
	font-size: 18px;
	margin-bottom: 40px;
}

.single-product
.content-area
.site-main
.product
.summary
.woocommerce-product-details__short-description
h4 {
	font-size: 24px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 28px;
	margin-bottom: 25px;
}

.single-product
.content-area
.site-main
.product
.summary
.woocommerce-product-details__short-description
h5 {
	font-size: 18px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 28px;
	margin-bottom: 10px;
}

.single-product
.content-area
.site-main
.product
.summary
.woocommerce-product-details__short-description
p {
	font-size: 16px;
	color: #565f58;
	line-height: 24px;
	margin-bottom: 20px;
}

.single-product .content-area .site-main .product .summary .cart:before,
.single-product .content-area .site-main .product .summary .cart:after {
	display: none;
}

.single-product .content-area .site-main .product .summary .cart {
	display: flex;
	flex-direction: column;
}

.single-product .content-area .site-main .product .summary .cart .quantity {
	width: 100%;
	display: flex;
	flex-direction: unset;
	margin-bottom: 40px;
}

.single-product
.content-area
.site-main
.product
.summary
.cart
.quantity
.qty {
	width: 78px;
	height: 57px;
	border: 1px solid #dddfde;
	padding: 0px;
}

.single-product
.content-area
.site-main
.product
.summary
.cart
.single_add_to_cart_button {
	width: 173px;
	height: 58px;
	border-radius: 0px;
	background: none;
	font-size: 15px;
	text-transform: uppercase;
	color: #565f58;
	font-weight: 600;
	border: 2px solid #565f58;
}

.single-product .content-area .site-main .product .summary .product_meta {
	display: none;
}

.single-product .content-area .site-main .product .summary .delivery_fees {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 73px;
}

.single-product .content-area .site-main .product .summary .delivery_fees h4 {
	font-size: 22px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 28px;
	margin-bottom: 10px;
}

.single-product .content-area .site-main .product .summary .delivery_fees p {
	font-size: 16px;
	color: #565f58;
	line-height: 24px;
	margin-bottom: 10px;
}

.quantity {
	position: relative;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.quantity input {
	width: 45px;
	height: 42px;
	line-height: 1.65;
	float: left;
	display: block;
	padding: 0;
	margin: 0;
	padding-left: 20px;
	border: 1px solid #eee;
}

.quantity input:focus {
	outline: 0;
}

.quantity-nav {
	float: left;
	position: relative;
	height: auto;
	margin-left: 40px;
}

.quantity-button {
	position: relative;
	cursor: pointer;
	border: 1px solid #dddfde;
	width: 35px;
	text-align: center;
	color: #333;
	font-size: 20px;
	font-family: "Trebuchet MS", Helvetica, sans-serif !important;
	line-height: 1.7;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.quantity-button.quantity-up {
	position: absolute;
	height: 50%;
	top: 0;
	border: 1px solid #dddfde;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-button.quantity-down {
	position: absolute;
	bottom: -1px;
	height: 50%;
}

.woocommerce-cart .site-main .entry-header {
	display: block;
	padding-top: 180px;
	margin-bottom: 48px;
	text-align: center;
}

.woocommerce-cart #scroll_up {
	display: none !important;
}

.woocommerce-cart .entry-content {
	max-width: 1180px;
	margin: auto;
}

.woocommerce table.shop_table {
	margin: 0px;
	border: none;
}

.woocommerce-cart .site-main .entry-header {
	display: block;
	padding-top: 180px;
	margin-bottom: 48px;
	text-align: center;
}

.woocommerce-cart #scroll_up {
	display: none !important;
}

.woocommerce-cart .entry-content {
	max-width: 1180px;
	margin: auto;
}

.woocommerce table.cart {
	margin: 0px;
	border: none;
}

.woocommerce table.cart tr th:last-child,
.woocommerce table.cart tr td:last-child {
	display: none;
}

.woocommerce table.cart tr th,
.woocommerce table.cart tr td {
	border: 0;
	border-bottom-color: currentcolor;
	border-bottom-style: none;
	border-bottom-width: 0px;
	border-bottom-color: currentcolor;
	border-bottom-style: none;
	border-bottom-width: 0px;
	padding: 27px 0;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 300;
}

.woocommerce table.cart tr th.product-remove:after {
	content: "ITEM";
}

.woocommerce table.cart tr th.product-name {
	font-size: 0px;
}

.woocommerce table.cart tr td.product-thumbnail a img {
	width: 94px;
	height: 94px;
}

.woocommerce a.remove:hover,
.woocommerce a.remove {
	color: #565f58 !important;
	background: none !important;
}

.woocommerce table.cart tr td.product-name > a {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 20px;
	color: #565f58;
	text-transform: capitalize;
}

.woocommerce table.cart tr {
	display: grid;
	grid-template-columns: 40px 130px 45% 1fr 100px;
}

.woocommerce table.shop_table tr .product-price {
	order: 2;
	text-align: right;
	justify-content: flex-end;
}

.woocommerce table.cart tr .quantity .qty {
	width: 78px;
	text-align: center;
	height: 58px;
	padding: 0;
}

.woocommerce table.cart tr .quantity .quantity-nav {
	display: none;
}

.woocommerce .cart_totals h2 {
	display: none;
}

.woocommerce .cart_totals .shop_table .woocommerce-shipping-totals,
.woocommerce .cart_totals .shop_table .order-total {
	display: none !important;
}

.woocommerce .cart_totals .shop_table {
	margin-top: 60px !important;
}

.woocommerce .cart_totals .shop_table .cart-subtotal {
	display: flex;
	justify-content: flex-end;
}

.woocommerce .cart_totals .shop_table .cart-subtotal th,
.woocommerce .cart_totals .shop_table .cart-subtotal td {
	width: auto;
	color: #565f58;
	font-weight: 300;
	padding: 0;
	margin-right: 20px;
}

.woocommerce .cart_totals .shop_table .cart-subtotal td {
	margin-right: 0px;
}

.woocommerce .cart_totals .checkout-button {
	width: auto;
	height: 58px;
	border-radius: 0px;
	background: none !important;
	font-size: 15px !important;
	text-transform: uppercase;
	color: #565f58 !important;
	font-weight: 600;
	border: 2px solid #565f58 !important;
	display: inline-flex !important;
	align-items: center;
	padding: 0 30px !important;
	margin: 0 !important;
	float: right;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	padding: 1em 2em 1em 3.5em;
	margin: 0 0 2em;
	position: relative;
	background-color: #565f58;
	color: #515151;
	border-top: 3px solid #a46497;
	list-style: none outside;
	width: auto;
	word-wrap: break-word;
	max-width: 1050px !important;
	margin: auto;
	top: 100px;
	border: none !important;
	border-top-color: currentcolor;
	color: #fff !important;
	display: flex !important;
	align-items: center;
	justify-content: space-between !important;
	border-radius: 4px !important;
}

.woocommerce-message::before {
	content: "\e015";
	color: #fff;
}

.wc-forward {
	order: 2;
	border: 2px solid #fff !important;
	background: none !important;
	border-radius: 0 !important;
	color: #fff !important;
	text-transform: uppercase !important;
	font-size: 14px !important;
	padding: 13px 30px !important;
}

.woocommerce-cart .site-main .entry-header h1 {
	font-size: 0px;
}

.woocommerce-cart .site-main .entry-header h1:after {
	content: "SHOPPING CART";
	font-size: 14px;
	text-transform: uppercase;
}

.woocommerce-cart .site-main {
	background: #fff;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	margin-bottom: 172px;
}

.single-product
.content-area
.site-main
.product
.summary
.cart
.single_add_to_cart_button:hover {
	background: #565f58;
	color: #fff;
}

.related.products {
	display: none !important;
}

.woocommerce-cart .site-main .entry-header {
	display: block;
}

.woocommerce-cart #scroll_up {
	display: none !important;
}

.woocommerce-tabs,
.product .onsale {
	display: none !important;
}

/* CHECKOUT BILLING PAGE */
.woocommerce-checkout .site-main {
	background: #fff;
}

.woocommerce-checkout .woocommerce-info {
	display: none !important;
}

.woocommerce-checkout .woocommerce-checkout {
	display: grid;
	max-width: 1180px;
	margin: auto;
}

.woocommerce-checkout .woocommerce-checkout .form-row {
	padding: 0px;
	margin-bottom: 15px;
}

.woocommerce-checkout .woocommerce-checkout .form-row.title-field {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 26px;
	color: #565f58;
	text-transform: capitalize;
	margin-bottom: 40px;
}

.woocommerce-checkout .site-main .entry-header {
	display: block;
	padding-top: 180px;
	margin-bottom: 58px;
	text-align: center;
}

.woocommerce-billing-fields h3,
#order_review_heading {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-size: 26px;
	color: #565f58;
	text-transform: capitalize;
	margin-bottom: 40px;
}

#ship-to-different-address {
	display: none;
}

.woocommerce form .form-row.billing-recipient-title input.input-text {
	display: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 3px;
	min-height: 50px;
}

.checkout_sideBar {
	background: #f7f7f7;
	padding: 30px;
	border-radius: 6px;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	width: 100% !important;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
	width: 100%;
	display: grid;
	grid-template-columns: 60% 1fr;
	grid-gap: 30px;
	margin-bottom: 170px;
}

.woocommerce .col2-set:before,
.woocommerce-page .col2-set:before,
.woocommerce-page .col2-set:after,
.woocommerce .col2-set:after {
	display: none !important;
}

.checkout_sideBar table tr td,
.checkout_sideBar table tr th {
	padding: 10px 0 !important;
	font-size: 14px;
	font-weight: 300 !important;
}

.checkout_sideBar table tr td:last-child {
	text-align: right;
}

#payment .wc_payment_methods {
	background: #fff;
	font-size: 14px;
	padding: 20px !important;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background: #f7f7f7 !important;
	padding: 30px !important;
}

body #add_payment_method #payment div.payment_box::before,
body .woocommerce-cart #payment div.payment_box::before,
body .woocommerce-checkout #payment div.payment_box::before {
	display: none;
}

.form-row.place-order {
	background: #fff !important;
	font-size: 14px;
	line-height: 22px;
	padding: 20px !important;
}

.form-row.place-order #place_order {
	float: none;
	border: 2px solid #565f58;
	border-radius: 0px;
	background: none;
	color: #565f58;
	width: 160px;
	height: 54px;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 20px;
}

.product .up-sells.upsells.products h2 {
	font-size: 36px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 110%;
	margin-bottom: 25px;
}

.product .up-sells.upsells.products .woocommerce-loop-product__title,
.product .up-sells.upsells.products .woocommerce-loop-product__title:hover {
	font-size: 24px;
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	color: #565f58;
	line-height: 28px;
	margin-bottom: 25px;
}

.product .up-sells.upsells.products .woocommerce-Price-amount.amount {
	color: #565f58;
	font-size: 18px;
}

/* notificaton */
#woo-store-vacation .woocommerce-info {
	margin: auto;
	top: -50px;
	max-width: 1180px !important;
}

.postid-321 #woo-store-vacation .woocommerce-info {
	top: 120px;
}

.page-id-251 #woo-store-vacation .woocommerce-info {
	top: -10px;
}
