body {
	overflow-x: hidden;
}
header {
	padding: 19px 0;
	background-color: white;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.mm-container {
	height: 100%;
	overflow: auto;
}
.site-menu ul.menu {
	padding: 0;
	margin: 0;
	list-style: none;
}
.site-menu ul.menu > li {
	display: inline-block;
	font-family: var(--head-font);
	vertical-align: middle;
	text-transform: lowercase;
}
.site-menu ul.menu > li > a {
	display: inline-block;
	position: relative;
	color: var(--dark);
	padding: 2px 0;
}
.site-menu ul.menu > li > a:after {
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	position: absolute;
	bottom: -4px;
	opacity: 0;
	background-color:var(--dark);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.site-menu ul.menu > li.current-menu-ancestor > a:after,
.site-menu ul.menu > li:hover > a:after {
	opacity: 1;
	bottom: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
	/*text-decoration: underline;*/
}
.site-menu ul#menu-main-menu-1 > li:not(:last-of-type) {
	margin-right: 93px;
}
.site-menu ul#menu-main-menu-2 > li:not(:first-of-type) {
	margin-left: 93px;
}
.site-menu ul.menu .menu-item-has-children {
	position: relative;
	overflow: hidden;
}
.site-menu ul.menu .menu-item-has-children:hover {
	overflow: unset;
}
.site-menu ul.menu .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	/*background-color: var(--light);*/
	background-color: rgba(242,244,245,0.9);
	z-index: 1;
	padding: 20px 20px 13px;
	list-style: none;
	margin: 0;
	width: 271px;
	text-align: left;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.site-menu ul.menu .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	top: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.site-menu ul.menu .sub-menu li {
	margin-bottom: 7px;
}
.site-menu ul.menu .sub-menu a {
	color: var(--dark);
}
.site-menu ul.menu .sub-menu a:hover {
	text-decoration: underline;
}
.home-banner {
	height: 952px;
	position: relative;
}
.move-down {
	font-size: 12px;
	font-weight: 500;
	color:white;
	font-family: var(--head-font);
	position: absolute;
	bottom: 37px;
	left: 0;
	right: 0;
	margin: auto;
	width: 60px;
	text-align: center;
}
.move-down:before {
	content: "";
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 35px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	background-size: contain;
	margin-bottom: 13px;
	background-image: url(../imgs/move-down.svg);
	animation: MoveUpDown 2s linear infinite;
}
.move-down:hover {
	color: white;
}
@keyframes MoveUpDown {
  0% {
    bottom: 13px;
  }
  25% {
    bottom: 9px;
  }
  50% {
  	bottom: 13px;
  }
  75% {
  	bottom: 17px;
  }
  100% {
  	bottom: 13px;
  }
}
.start {
	position: fixed;
	right: 50px;
	bottom: 37px;
	font-size: 50px;
	width: 3.440em;
	height: 3.440em;
	background-color: #C6C3BC;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../imgs/arrow-right.svg);
	z-index: 2;
	display: none;
}
.start:hover {
	background-color: #E2E2E1;
}
.start:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../imgs/start.svg);
	animation: rotation 9s linear infinite;
}
.page-template-templatescontact-php .start,
.single-project .start,
.page-template-templatesprojects-php .start,
.page-template-cart .start {
	display: none;
}
@keyframes rotation {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.marquee-section {
	color:var(--grey);
	font-size: 34px;
	font-family: var(--head-font);
	--gap: 1rem;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}
.marquee-section .marquee-content {
	position: relative;
	padding-left: 4px;
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 20s linear infinite;
}
.marquee-section .marquee-content span {
	display: inline-block;
	position: relative;
	padding-right: 25px;
}
.marquee-section .marquee-content span:after {
	content: "";
	position: absolute;
	right: 0;
	top: 2px;
	bottom: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--grey);
	display: inline-block;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.product-section h2,
.project-section h2 {
	font-size: 56px;
}
.project-list .img {
	padding-top: 68.5%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.project-list .img:hover {
	opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.project-list h5.ptitle {
	padding-bottom: 15px;
	border-bottom: 1px solid var(--black);
}
.project-list .pcontent {
	padding-right: 60px;
	position: relative;
}
.project-list .pcontent a {
	color: inherit;
}
.project-list .pcontent > p:last-of-type {
	margin-bottom: 0;
}
.project-list .url {
	position: absolute;
	right: 0;
	top: -3px;
	display: inline-block;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-size: 26px 13px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../imgs/link-arrow.svg);
	border: 1px solid var(--black);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.project-list .url:hover {
	background-image: url(../imgs/link-arrow-white.svg);
	background-color: var(--black);
}
.project-list .swiper-wrapper {
	height: 480px;
}
.project-list .swiper-slide {
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.project-list .swiper-slide.swiper-slide-active {
	opacity: 1;
}
.team-modal .photo,
.team-section .photo {
	background-size: cover;
	padding-top: 100%;
	background-position: top center;
	border-radius: 50%;
	position: relative;
}
.team-section .photo:after {
	content: "";
	position: absolute;
	left: -6px;
	right: -6px;
	top: -6px;
	bottom: -6px;
	border: 3px solid var(--grey);
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.team-section .team:hover .photo:after {
	opacity: 1;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.team-section .team-open {
	display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-size: 26px 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../imgs/link-arrow.svg);
    border: 1px solid var(--black);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.team-section .team:hover a {
    -webkit-transform: scaleX(-1) rotate(15deg);
    transform: scaleX(-1) rotate(15deg);
}
.team-section .team .separator {
	border-bottom: 1px solid var(--dark);
	margin-bottom: 15px;
	margin-top: 15px;
}
.modal-close {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 100%;
    font-size: 30px;
    border: none;
    z-index: 1;
    background-color: transparent;
    color: var(--dark);
}
.interior-section .item a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
}
.interior-section .item .img {
	padding-top: 59%;
	background-color: var(--grey);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.interior-section .item:hover .img {
	opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.interior-section .item:hover h6 {
	text-decoration: underline;
}
.contact-section p {
	font-size: 18px;
}
.contact-section p a {
	color: var(--dark);
}
.contact-section p a:hover {
	text-decoration: underline;
}
.single-project-container .link-type span {
	display: none;
	text-decoration: underline;
}
.single-project-container .link-type.collapsed .more {
	display: inline-block;
}
.single-project-container .link-type .less {
	display: inline-block;
}
.single-project-container .link-type.collapsed .less {
	display: none;
}
.project-gallery > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.project-gallery > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-gallery {
	display: grid;
	grid-gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(462px, 1fr));
	grid-auto-rows: 289px;
	grid-auto-flow: dense;
}
.project-gallery .item:first-child {
	grid-column: span 2;
	grid-row: span 2;
}
.project-gallery .item:nth-child(3n) {
	grid-row: span 2;
}
.project-gallery .item:nth-child(4n) {
	grid-row: span 2;
}
.project-content {
	position: sticky;
	top: 100px;
	left: 0;
}
.back-view:before {
/*    position: absolute;
    right: 0;
    top: -3px;*/
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-size: 26px 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../imgs/link-arrow.svg);
    border: 1px solid var(--black);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.back-view:hover:before {
	background-color: var(--black);
	background-image: url(../imgs/link-arrow-white.svg);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.share-article > a {
	color: var(--dark);
}
.global-select-service {
  display: inline-block;
  font-family: var(--body-font2);
  text-decoration: underline;
  color: var(--dark);
  font-size: 14px;
  border: 1px solid var(--black);
  padding: 1em 2em;
  border-radius: 3.571em;
}
.shop-archive-container {
	position: relative;
}
footer {
	color: var(--grey);
	/*position: sticky;*/
	position: relative;
	/*top:100%;*/
	left: 0;
	right: 0;
	z-index: 3;
}
footer h2 {
	font-size: 56px;
	line-height: 100%;
	letter-spacing: -.05em;
	display: inline-block;
	vertical-align: middle;
}
footer .first-label {
	padding-right: 200px;
}
footer .start-logo {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 50px;
	width: 3.440em;
	height: 3.440em;
	background-color: #C6C3BC;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../imgs/arrow-right.svg);
	z-index: 1;
	margin-left: -30px;
}
footer .start-logo:hover {
	background-color: #E2E2E1;
}
footer .start-logo:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../imgs/start.svg);
	animation: rotation 9s linear infinite;
}
footer h4 {
	display: inline-block;
	vertical-align: middle;
}
footer .members {
	vertical-align: middle;
	display: inline-block;
}
footer .members img {
	margin-left: 25px;
	object-fit: contain;
}
footer a {
	color: var(--grey);
}
footer a:hover {
	color: var(--light);
}
#menu-footer-menu,
.menu-social-media-menu-container .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu-social-media-menu-container .menu li {
	display: inline-block;
	margin-left: 10px;
	font-size: 30px;
}
.footer-contact a,
.footer-contact {
	color: var(--dark);
}
.footer-contact p {
	font-size: 16px;
}
.footer-contact > *:last-child {
	margin-bottom: 0;
}
#menu-footer-menu li {
	display: inline-block;
	margin:0 8px;
	font-size: 16px;
	text-transform: uppercase;
}
.product-category {
	height: 945px;
	/*position: relative;*/
	/*position: sticky;*/
	top: 0;
	left: 0;
}
.product-category h3 {
	font-size: 36px;
	position: absolute;
	bottom: 58px;
	margin-bottom: 0;
	text-align: center;
	width: 100%;
}
.product-category a {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
}
.shop-archive-container .move-down {
	top: 40px;
	padding-top: 60px;
	text-transform: uppercase;
	z-index: 2;
	display: inline-block;
	color: var(--grey);
	height: 81px;
	width: 200px;
	bottom: auto;

}
.shop-archive-container .move-down:before {
	animation: none;
	background-image: url(../imgs/move-down-grey.svg);
	bottom: 20px;
}
.shop-category-banner {
	height: 771px;
	position: relative;
}
.shop-category-banner h1 {
	position: absolute;
	bottom: 59px;
	margin-bottom: 0;
	font-size: 56px;
	color: white;
	text-align: center;
	width: 100%;
}
.product-loop-row {
	margin-left: -15px;
	margin-right: -15px;
}
.product-loop-row li {
	padding-left: 15px;
	padding-right: 15px;
	flex: 0 0 auto;
	width: 50%;
	list-style: none;
	margin-bottom: 30px;
}
.product-section .product-loop-row {
	margin-left: 0;
	margin-right: 0;
}
.product-section .product-loop-row li {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.product-loop-row li .woocommerce-loop-product__link {
	display: inline-block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-loop-row .woocommerce-loop-product__title {
	font-size: 26px;
	font-family: var(--head-font);
	color: var(--dark);
	margin-bottom: 8px;
	text-align: left;
	width: 79%;
	float: left;
	display: inline-block;
	vertical-align: middle;
	padding-top: 0;
}
.product-loop-row .attachment-woocommerce_thumbnail {
	border-bottom: 1px solid var(--dark);
	margin-bottom: 20px;
}
.woocommerce ul.products li.product .price,
.product-loop-row .price {
	font-size: 18px;
	color: var(--dark);
	margin-bottom: 20px;
	display: block;
}
.woocommerce ul.products li.product a.link-type {
	text-decoration: underline;
}
.tinvwl-after-add-to-cart {
	float: right;
}
.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
	margin-top: 0 !important;
	color: var(--dark);
}
.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button:before {
	font-size: 30px !important;
	margin-top: -15px !important;
	margin-left: -18px !important;
}
.woocommerce-notices-wrapper {
	/*padding: 20px 0;*/
}
.woocommerce div.product .product_title {
	text-align: center;
}
.woocommerce div.product p.price {
	text-align: center;
	color: var(--grey);
}
.woocommerce-product-details__short-description {
	background-color: var(--light);
	padding: 32px 38px 52px;
	/*height: 182px;*/
	overflow: hidden;
	margin-bottom: 40px;
	position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.woocommerce-product-details__short-description .prod-read-more {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    background-color: var(--light);
    text-align: center;
    color: var(--dark);
    text-decoration: underline;
    padding: 12px 0 20px;
}
.woocommerce-product-details__short-description .prod-read-more.read-less {
	display: none;
}

.single-product.woo-variation-swatches .variable-items-wrapper .variable-item {
	width: 121px;
	/*height: 110px;*/
}
/*.single-product.woo-variation-swatches .variable-items-wrapper .variable-item .variable-item-contents {
	border-radius: 50%;
	overflow: hidden;
}*/
/*.single-product.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
	display: none;
}*/
/*.single-product.woo-variation-swatches .variable-items-wrapper .variable-item {
	border-radius: 50% !important;
	padding: 5px !important;
	-webkit-box-shadow: none;
	box-shadow: none;
}*/
/*.single-product.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:after {
	-webkit-box-shadow: var(--wvs-item-box-shadow,0 0 0 1px #a8a8a8) !important;
	box-shadow: var(--wvs-item-box-shadow,0 0 0 1px #a8a8a8) !important;
}
.single-product.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover,
.single-product.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover:after {
	-webkit-box-shadow: var(--wvs-item-box-shadow,0 0 0 1px #a8a8a8);
	box-shadow: var(--wvs-item-box-shadow,0 0 0 1px #a8a8a8);
}*/
.woocommerce div.product div.summary {
	width: 40%;
}
table.variations td.woo-variation-items-wrapper,
table.variations th.label {
    display: block;
    width: auto!important;
}
table.variations th.label {
	font-size: 20px;
	font-family: var(--head-font);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
table.variations th.label label {
	font-weight: normal !important;
}
.woo-variation-items-wrapper ul {
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    margin-bottom: 0;
    margin-left: -5px;
    margin-right: -5px;
    padding: 0;
}
.woo-variation-items-wrapper ul li {
	margin-bottom: 25px;
	padding-left: 5px;
	padding-right: 5px;
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_colour"] li {

}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_colour"] li img {
	border-radius: 50%;
	width: 95px;
	height: 95px;
}
.woo-variation-items-wrapper ul li:after {
	content: attr(data-wvstooltip) " " attr(data-wvstooltip-out-of-stock);
	text-align: center;
	font-size: 14px;
	width: 100%;
	display: block;
	text-transform: uppercase;
	font-family: var(--head-font);
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_colour"] li .variable-item-contents {
	position: relative;
	border: 1px solid transparent;
	padding: 7px;
	border-radius: 50%;
	cursor: pointer;
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_colour"] li.selected .variable-item-contents {
	border-color:var(--grey);
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_corner"] li {
	text-align: center;
	padding: 5px;
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_corner"] li .variable-item-contents {
	cursor: pointer;
	width: 95px;
	height: 95px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
}
.woo-variation-items-wrapper ul[data-attribute_name="attribute_pa_corner"] li.selected .variable-item-contents {
	border-color:var(--grey);
}
/*.woocommerce .quantity .qty {
	width: 25px;
}*/
.woocommerce div.product form.cart div.quantity {
	width: 130px;
	font-size: 18px;
}
.woocommerce .quantity .qty {
	width: 43px;
	border: none;
	outline: 0;
}
.woocommerce div.product form.cart div.quantity .minus,
.woocommerce div.product form.cart div.quantity .plus {
	background-color: transparent;
	border: none;
}
.woocommerce div.product form.cart .button {
    display: block;
    width: 100%;
    font-family: var(--body-font2);
    text-decoration: underline;
    color: var(--dark);
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--black);
    padding: 1em 3em;
    border-radius: 3.571em;
    height: 50px;
}
.woocommerce div.product form.cart .button:hover {
  color: var(--grey);
  border-color: var(--dark);
  background-color: var(--dark);
}
.woocommerce div.product div.summary .tinvwl-after-add-to-cart {
	/*position: absolute;*/
	/*top: -30px;*/
	right: 0;
}
.woocommerce div.product div.summary .tinvwl-after-add-to-cart a:before {
    float: right;
    margin-left: 4px !important;
    top: 10px;
    position: relative;
}
.woocommerce div.product form.cart:not(.variations_form),
.woocommerce div.product .woocommerce-variation-add-to-cart {
	position: relative;
	display: flex;
	align-items: center;
}
.product-additionals .head-toggle {
	font-size: 18px;
	font-family: var(--body-font);
	font-weight: normal;
	margin-bottom: 0;
}
.product-additionals .head-toggle a {
	display: block;
	color: var(--dark);
	position: relative;
}
.product-additionals .head-toggle a:after {
	position: absolute;
    font-size: 1em;
    right: 0;
    top:0.1em;
    line-height:100%;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f077";
}
.product-additionals .head-toggle a.collapsed:after {
	content: "\f078";
}
.product-additionals .accordion-item {
	border: none;
	border-bottom: 1px solid var(--black);
	border-radius: 0;
	padding:10px 0;
}
.product-additionals .accordion-body {
	padding:10px 0;
}
.product-additionals .inside > *:last-child {
	margin-bottom: 0;
}
.product.type-product .related.products h2 {
	text-align: center;
	width: 100%;
	float: none;
}
.related.products .products {
	margin-top: 4em;
	padding-left: 15px;
	padding-right: 15px;
}
.related.products .products .cfvsw-swatches-container .cfvsw-swatches-option {
	min-width: 16px !important;
	min-height: 16px !important;;
	border-radius: 16px !important;;
}
.woocommerce div.product form.cart .variations {
	margin-bottom: 0;
}
.woocommerce div.product div.images .flex-control-thumbs {
	margin-top: 12px;
	display: flex;
	margin-left: -6px;
	margin-right: -6px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	padding-left: 6px;
	padding-right: 6px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	background-color: transparent;
}
.woocommerce div.product form.cart .reset_variations {
	display: none !important;
}
.woocommerce ul.products li.product a img {
	margin-bottom: 20px;
}
.woocommerce table.my_account_orders th,
.tinv-wishlist table th,
.woocommerce-cart table.cart th {
	padding: 12px 20px;
	font-family: var(--head-font);
	font-size: 20px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 1px solid var(--dark);
}
.woocommerce table.my_account_orders td,
.tinv-wishlist table td,
.woocommerce-cart table.cart td {
	vertical-align: top;
	padding: 45px 20px;
	border: none;
	font-size: 18px;
	/*width: 10%;*/
}
.woocommerce table.my_account_orders td {
	padding:30px 20px;
}
.woocommerce-cart table.cart img {
	width: 371px;
}
.woocommerce-cart table.cart td.product-remove {
	width: 10%;
}
.woocommerce-cart table.cart td.product-thumbnail {
	width: 30%;
}
.woocommerce-cart table.cart td.product-name {
	width: 30%;
}
.woocommerce-cart table.cart td.product-subtotal {
	width: 7%;
}
.woocommerce a.remove {
	text-transform: uppercase;
	font-family: var(--head-font);
	font-size: 14px;
	color: var(--dark) !important;
	font-weight: normal;
	letter-spacing: 0.05em;
	display: inline-block;
	width: auto;
}
.woocommerce a.remove:hover {
	color: var(--dark) !important;
	background-color: transparent !important;
	text-decoration: underline;
}
.woocommerce table.shop_table {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid var(--dark);
}
.woocommerce-cart table.cart td.product-name a {
	color: var(--dark);
	display: inline-block;
	font-size: 18px;
	margin-bottom: 12px;
}
.woocommerce-cart table.cart td.product-name a:hover {
	text-decoration: underline;
}
.woocommerce-cart table.cart td.product-name .variation * {
	font-size: 14px;
	font-weight: normal;
}
.woocommerce-cart table.cart td .quantity button {
	border: none;
	background-color: transparent;
}
.btn-update-cart {
	background-color: transparent;
	text-decoration: underline;
	border: none;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin-bottom: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 7px;
}
.select2-container--default .select2-selection--single,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    height: 40px;
    border: none;
    background-color: var(--light);
    display: block;
    width: 100%;
    padding: 5px 12px;
}
.woocommerce form .form-row textarea {
	height: 90px;
}
.woocommerce div.product.type-product {
	padding-top: 50px;
}
.woocommerce div.product.type-product .flex-viewport{
	max-height: 75vh;
}
.woocommerce div.product form.cart .variations label:after {
	content: " Selection";
}
.menu-main-menu-2-container {
	display: inline-block;
	vertical-align: middle;
}
.woocommerce-account-menu {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	margin-left: 70px;
	padding-top: 7px;
}
.woo-account {
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 21px;
	background-size: cover;
	background-image: url(../imgs/account.svg);
}
.woo-account:hover {
	opacity: 0.7;
}
.woo-cart-menu {
	margin-left: 12px;
	display: inline-block;
	vertical-align: middle;
	/*width: 19px;*/
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../imgs/bag.svg);
	padding-left: 25px;
	color: var(--dark);
	font-family: var(--head-font);
}
.woo-cart-menu:hover {
	opacity: 0.7;
}
.project-nav > div,
.gal-nav > div,
.product-nav > div {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-size: 26px 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../imgs/link-arrow.svg);
    border: 1px solid var(--black);
    margin: 0 20px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.project-nav > div:hover,
.gal-nav > div:hover,
.product-nav > div:hover {
	background-image: url(../imgs/link-arrow-white.svg);
	background-color: var(--black);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.project-nav > div.next-project,
.gal-nav > div.next-gal,
.product-nav > div.next-product {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.project-nav > div.swiper-button-disabled,
.gal-nav > div.swiper-button-disabled,
.product-nav > div.swiper-button-disabled {
	opacity: 0.4;
	pointer-events: none;
}
.single-product .summary .cfvsw-swatches-option .cfvsw-swatch-inner {
	background-size: contain !important;
	background-repeat: no-repeat;
	background-position: center;
}
.single-product .summary .cfvsw-swatches-container[swatches-attr="attribute_pa_colour"] .cfvsw-image-option {
	padding: 5px;
	border-radius: 50% !important;
}
.single-product .summary .cfvsw-swatches-container[swatches-attr="attribute_pa_corner"] .cfvsw-image-option {
	padding: 14px;
	margin-right: 10px;
}
.single-product .summary .cfvsw-swatches-container .cfvsw-image-option {
	position: relative;
	margin-bottom: 40px;
	border-color: transparent !important;
}
.single-product .summary .cfvsw-swatches-container .cfvsw-image-option.cfvsw-selected-swatch {
/*.single-product .summary .cfvsw-swatches-container .cfvsw-image-option:hover {*/
	border-color: var(--grey) !important;
}
.single-product .summary .cfvsw-swatches-container .cfvsw-image-option:after {
	content: attr(data-title);
	text-align: center;
	font-size: 14px;
	width: 100%;
	display: block;
	text-transform: uppercase;
	font-family: var(--head-font);
	position: absolute;
	bottom: -25px;
}
.cfvsw-selected-label {
	display: none;
}
/*.product.type-product h2 {
	width: 79%;
	float: left;
	display: inline-block;
	vertical-align: middle;
}*/
.product.type-product .cfvsw_variations_form {
	width: 21%;
	float: right;
	display: inline-block;
	vertical-align: middle;
	counter-reset: count;
}
.product.type-product .price {
	display: block;
}
.product.type-product .price:before {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.product.type-product .cfvsw-swatches-container {
	grid-gap: 0px;
	padding-top: 7px;
	position: relative;
	padding-right:22px;
}
.product.type-product .cfvsw-swatches-container .swatch-counts {
	position: absolute;
	right: 0;
	top: 6px;
	font-size: 12px;
	color: var(--grey);
}
/*.product.type-product .cfvsw-image-option {
	counter-increment: count;
}
.product.type-product .cfvsw-swatches-container:after {
	content:"+"counter(count);
}*/
.product-loop-row .product.type-product .cfvsw-image-option {
	display: none;
	border: none;
}
.product-loop-row .product.type-product .cfvsw-image-option:nth-child(1),
.product-loop-row .product.type-product .cfvsw-image-option:nth-child(2),
.product-loop-row .product.type-product .cfvsw-image-option:nth-child(3) {
	display: flex;
}
.menu-trigger {
	display: none;
	height: 19px;
	width: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 25px;
	cursor: pointer;
}
.rochele-header .menu-trigger {
	right: 25px;
	left: auto;
}
.menu-trigger span {
	height: 3px;
	background-color: var(--dark);
	position: absolute;
	border-radius: 3px;
	top: 0;
	left: 0;
	width: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
	top: 17px;
}
.menu-trigger.active span:nth-of-type(1) {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
}
.menu-trigger.active span:nth-of-type(2) {
    -ms-transform: rotate(-280deg);
    transform: rotate(-280deg);
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    top: 9px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu {
	position: fixed;
	top: 61px;
	height: calc(100vh - 61px);
	z-index: 30;
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	padding: 32px 26px;
	left: -100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.mobile-menu.active {
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.mobile-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-menu ul li {
	font-family: var(--head-font);
	font-size: 18px;
	margin-bottom: 15px;
	text-transform: lowercase;
}
.mobile-menu ul li a {
	display: block;
	color: var(--dark);
}
.mobile-menu .sub-menu {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	padding:32px 26px;
	height: calc(100vh - 86px);
	/*background-color: var(--light);*/
	background-color: rgba(242,244,245,0.8);
}
.mobile-menu .sub-menu:before {
	content: "";
	width: 13px;
	background-color: white;
	top: 0;
	bottom: 0;
	left: -13px;
	position: absolute;
}
.menu-user-log {
	border-top: 1px solid var(--dark);
	padding-top: 25px;
	margin-top: 27px;
}
.menu-user-log a {
	display: inline-block;
	vertical-align: middle;
	color: var(--dark);
}
.menu-user-log .woo-account {
	margin-right: 10px;
}
.btn-container .wpcf7-spinner {
	position: absolute;

}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	display: block;
	width: 100%;
	font-family: var(--body-font2);
	text-decoration: underline;
	color: var(--dark);
	font-size: 14px;
	background-color: transparent;
	border: 1px solid var(--black);
	padding: 1em 3em;
	border-radius: 3.571em;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
	color: var(--grey);
	border-color: var(--dark);
	background-color: var(--dark);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.woocommerce-MyAccount-navigation ul {
	padding: 0;
	list-style: none;
}
.woocommerce-MyAccount-navigation ul li {
	margin-bottom: 10px;
	font-family: var(--head-font);
	font-size: 18px;
}
.woocommerce-MyAccount-navigation ul li a {
	display: inline-block;
	color: var(--dark);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	text-decoration: underline;
}
.project-section .sticky-section {
	top: 130px;
}
[data-aos="fade-out"] {
	opacity: 1 !important;
	transition-property: opacity;
}
[data-aos="fade-out"].aos-animate {
	opacity: 0 !important;
}
#mc_embed_signup_scroll {
	display: flex;
	align-items: end;
}
#mc_embed_signup_scroll input[type="submit"] {
	background-color: transparent;
	text-decoration: underline;
	font-family: var(--body-font2);
	border: none;
	color: var(--grey);
	text-transform: uppercase;
	font-size: 16px;
}
#mc_embed_signup_scroll input[type="submit"]:hover {
	color: white;
}
#mc_embed_signup_scroll .submit-area {
	width: 101px;
	margin-left: 10px;
}
#mc_embed_signup_scroll .mc-name {
	width: 40%;
}
#mc_embed_signup_scroll .mc-email {
	width: 60%;
	margin-left: 15px;
}
#mc_embed_signup_scroll input[type="email"],
#mc_embed_signup_scroll input[type="text"] {
	width: 100%;
	height: 40px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--grey);
	color: var(--grey);
	font-family: var(--body-font);
	outline: 0;
}
.menu-footer-menu-container a {
	color: var(--dark);
}
.tinv-wishlist * {
	color: var(--dark);
}
.woocommerce-info {
	border-color: var(--black);
}
.my-acccount-page-template > .container > .woocommerce {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
}
.my-acccount-page-template .woocommerce .woocommerce-MyAccount-navigation {
	flex: 0 0 auto;
	width: 20%;
	padding-left: 25px;
	padding-right: 25px;
}
.my-acccount-page-template .woocommerce .woocommerce-MyAccount-content {
	flex: 0 0 auto;
	width: 80%;
	padding-left: 25px;
	padding-right: 25px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce .woocommerce-MyAccount-content a.button {
	display: inline-block;
  font-family: var(--body-font2);
  text-decoration: underline;
  color: var(--dark);
  font-size: 14px;
  background-color: transparent;
  border: 1px solid var(--black);
  padding: 1.1em 3em;
  border-radius: 3.571em;
  height: 50px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce .woocommerce-MyAccount-content a.button:hover {
  color: var(--grey);
  border-color: var(--dark);
  background-color: var(--dark);
  text-decoration: underline;
}
.woocommerce table.my_account_orders td .woocommerce-button,
.tinv-wishlist tfoot .tinvwl-to-right>*,
.woocommerce.tinv-wishlist button.button.alt {
	display: block;
    /*width: 100%;*/
    font-family: var(--body-font2);
    text-decoration: underline;
    color: var(--dark);
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--black);
    padding: 1em 3em;
    border-radius: 3.571em;
    height: 50px;
}
.woocommerce table.my_account_orders td .woocommerce-button:hover,
.tinv-wishlist tfoot .tinvwl-to-right>*:hover,
.woocommerce.tinv-wishlist button.button.alt:hover {
    color: var(--grey);
    border-color: var(--dark);
    background-color: var(--dark);
    text-decoration: underline;
}
.woocommerce.tinv-wishlist button.button.alt:hover .tinvwl-txt {
	color: var(--grey);
}
.woocommerce.tinv-wishlist button.button.alt {
	width: 170px;
	padding: 1em 2.5em;
}
.woocommerce table.my_account_orders td .woocommerce-button {
	text-align: center;
	padding: 1.1em 2.5em;
}
.tinv-wishlist tfoot .tinvwl-to-right>* {
	display: inline-block;
}
.tinv-wishlist tfoot .tinvwl-to-left {
	display: none;
}
.tinv-wishlist tfoot .tinvwl-to-right {
	float: none;
	width: 100%;
}
.tinv-wishlist form tbody {
	border-bottom: 1px solid var(--dark);
}
#sb_instagram #sbi_images {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
#sb_instagram #sbi_images .sbi_item {
	padding-left: 6px !important;
	padding-right: 6px !important;
}
.insta-container {
	margin-left: -6px;
	margin-right: -6px;
}
.instagram-area a {
	font-family: var(--head-font);
	font-size: 18px;
}
.interior-container ul {
	list-style: none;
	padding-left: 10px;
}
.interior-container ul > li {
  text-indent: -10px;
  margin-bottom: 20px;
}
.interior-container ul > li:before {
  content: "– ";
  text-indent: -10px;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	padding: 0;
	border: none;
	border-radius: 0;
}
.woocommerce-MyAccount-content a,
.woocommerce-privacy-policy-text a,
.woocommerce-LostPassword.lost_password a {
	text-decoration: underline;
  color: var(--grey);
  margin-top: 15px;
}
.tinv-wishlist .tinvwl-table-manage-list .product-remove {
	padding: 45px 0;
}
.mc4wp-checkbox.mc4wp-checkbox-contact-form-7 {
	display: none;
}
.mc4wp-checkbox .sign {
	display: inline-block;
	margin-left: 5px;
}
.mc4wp-checkbox .agreement {
	font-size: 11px;
	margin-top: 5px;
	display: block;
}
.delivery-zone-container {
	max-width: 391px;
}
.delivery-zone-container .delivery-zone {
	padding: 32px 38px;
}
.delivery-zone-container .find-zone {
	font-family: var(--body-font2);
	background-color: transparent;
	border: none;
	width: 50px;
	text-align: right;
	margin-left: 10px;
	padding-top: 5px;
	outline: none;
}
.delivery-zone-container .delivery-zone input {
	border: none;
	border-bottom: 1px solid var(--grey);
	height: 33px;
	font-size: 16px;
	width: 100%;
	max-width: 100%;
	background-color: transparent;
	outline: none;
}
.delivery-zone-container .availability {
	display: none;
	padding: 15px;
	border: 1px solid var(--grey);
	margin-bottom: 20px;
}
.woocommerce-message {
	border-top-color: var(--dark);
}
.woocommerce-message::before {
	color: var(--dark);
}
@media ( min-width:768px ) {
	.product-related-container {
		margin-top: -30px;
	}
}
.grecaptcha-badge {
	width:0 !important;
}

:not(.product-category).panel{
	/*translate: none!important;
    rotate: none!important;
    scale: none!important;
    left: inherit!important;
    top: inherit!important;
    margin: auto!important;
    max-width: inherit!important;
    width: auto!important;
    max-height: inherit!important;
    height: auto!important;
    padding: 0px!important;
    box-sizing: border-box!important;
    position: relative!important;
    transform: translate(0px, 0px)!important;*/
}

/*HOME UPDATE - AUG 2023*/
.full-banner {
	min-height: 100vh;
	padding: 50px 0;
	display: flex;
	align-items: center;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity .3s;
}
.outer-banner {
  position: absolute;
  left: 0;
  right: 0;
  top: -2rem;
  bottom: -2rem;
}
.full-banner-bg {
	position: absolute;
/*	top: -12%;
	bottom: -17%;*/
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/*min-height: calc(100vh + 10%);*/
/*	min-height: 100vh;*/
	display: block;
	background-size: cover;
	background-position: center;
}
.full-banner:after {
	content: "";
	font-size: 28px;
	width: 1em;
	height: 0.571em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url(../imgs/down-white.png);
	animation: MoveDown 2s linear infinite;
}
@keyframes MoveDown {
  0% {
    bottom: 25px;
  }
  25% {
    bottom: 20px;
  }
  50% {
  	bottom: 25px;
  }
  75% {
  	bottom: 30px;
  }
  100% {
  	bottom: 25px;
  }
}
.rochele-banner {
	background-color: var(--lightblue);
	padding-left: 125px;
	padding: 95px 0 95px 125px;
	position: relative;
	height: 1000px;
}
.rochele-banner .img {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 44.3%;
}
.rochele-banner .content {
	max-width: 475px;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.rochele-banner h1 {
	font-size: 18px;
	text-transform: uppercase;
	width: 100%;
}
.rochele-banner .content .area {
	/*margin-top: 65%;*/
	padding-top: 9%;
	width: 100%;
}
.rochele-banner .content .area h2 {
	font-size: 72px;
	margin-bottom: 20px;
}
.rochele-banner .content .btn-container {
	/*margin-top: 65%;*/
	width: 100%;
	display: flex;
	align-items: end;
}
.rochele-services {
	padding: 195px 0 195px 92px;
	display: flex;
	align-items: end;
	overflow: hidden;
}
.rochele-services .title-area {
	/*width: 137px;*/
	width: 281px;
	height: 100%;
	/*padding-left: 74px;*/
	flex-shrink: 0;
}
.rochele-services h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 72px;
  color: var(--black);
  margin-bottom: 20px;
  /*height: 100%;*/
  margin: 0;
	-webkit-transform: scale(-1);
	transform: scale(-1);
}
.rochele-services .services-area {
	display: flex;
	/*height: 100%;*/
	/*height: 1000px;*/
	height: calc(100vh - 110px);
	width: 100%;
}
.rochele-services .services-area .item {
	height: 100%;
  flex: 0 0 auto;
  /*width: 7.516%;*/
  width: 14.516%;
  /*width: 5.1987%;*/
  position: relative;
  background-color: #DEE0DF;
  overflow: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item.active {
	/*width: 84.578%;*/
	/*width: 76.867%;*/
	/*width: 62.79%;*/
	/*width: 84.968%;*/
	width: 70.968%;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item.initial {
	width: 33.3333333333%;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item .item-container {
	height: 100%;
	display: flex;
}
.rochele-services .services-area .item.initial .img {
	max-width: 100%;
}
.rochele-services .services-area .img {
	width: 100%;
/*	width: 100%;
	max-width: 510px;*/
	/*width: 54%;*/
	/*width: 510px;*/
	flex: 0 0 auto;
	/*max-width: 100%;*/
	/*max-width: 118px;*/
	height: 100%;
	position: relative;
	background-color: rgba(164,164,164,0.5);
	background-blend-mode: darken;
	position: absolute;
/*  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;*/
}
.rochele-services .services-area .item.active .img {
	/*width: 54%;*/
	/*max-width: 510px;*/
/*  animation: fadeItem 0.7s;
  -webkit-animation: fadeItem 0.7s;*/
/*  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;*/
}
@keyframes fadeItem {
  0% { max-width:100%; }
  /*1% { left: -100px; opacity: 0; }*/
  100% { max-width:510px; }
}
.rochele-services .services-area .img .service-title {
	color: white;
	font-size: 36px;
	line-height: 1em;
	position: absolute;
	top: 32px;
	left: 39px;
	z-index: 1;
/*  animation: fadeTransition 1s;
  -webkit-animation: fadeTransition 1s;*/
}
.rochele-services .services-area .item:not(.active):not(.initial) .service-title {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	-webkit-transform: scale(-1);
	transform: scale(-1);
	margin: 0;
	left: 25px;
	right: 0;
	height: 100%;
	text-align: right;
/*  animation: fadeTransition 1s;
  -webkit-animation: fadeTransition 1s;*/
}
.rochele-services .services-area .item.active .img .service-title {
	/*top: -300px;*/
  animation: fadeTransition 0.7s;
  -webkit-animation: fadeTransition 0.7s;
}
@keyframes fadeTransition {
  0% { left: -100px; opacity: 0; }
  /*1% { left: -100px; opacity: 0; }*/
  100% { left: 39px; opacity: 1; }
}

.rochele-services .services-area .item:not(.active):not(.initial) .service-title br {
	display: none;
}
.rochele-services .services-area .img .num {
	position: absolute;
	bottom: 50px;
	/*left: 17%;*/
	left: 31px;
	right: 0;
	width: 1em;
	/*margin: auto;*/
	/*text-align: center;*/
	font-family: var(--head-font);
	font-size: 72px;
	line-height: 1em;
	color: white;
	z-index: 1;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item.initial .img .num {
	left: 31px;
}
.rochele-services .services-area .img a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 2;
}
.rochele-services .services-area .item.active .img a {
	display: none;
}
.rochele-services .services-area .item .img:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #D8B02F;
	opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.rochele-services .services-area .img:hover:after {
	opacity: 0.5;
	-webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.rochele-services .services-area .item.active .img:hover:after {
	opacity: 0;
}
/*.rochele-services .services-area .item.initial .img .num,*/
.rochele-services .services-area .item.active .img .num {
	left: 31px;
	right: 0;
	/*text-align: left;*/
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item .content-area {
	/*padding: 191px 200px;*/
	/*width: 0;*/
	/*display: none;*/
}
.rochele-services .services-area .item.active .content-area {
	width: 100%;
	flex: 0 0 auto;
	font-size: 18px;
	padding: 191px 200px;
	padding-left: calc(45% + 200px);
	/*display: block;*/
}
.rochele-services .services-area .item .content-area .inside {
	/*max-width: 340px;*/
	/*position: absolute;*/
	opacity: 0;
	/*width: 0;*/
	overflow: hidden;
/*	-webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;*/
}
.rochele-services .services-area .item.active .content-area .inside {
	/*width: 100%;*/
	opacity: 1;
	position: relative;
/*	-webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;*/
   animation: fadeContent 1s;
  -webkit-animation: fadeContent 1s;
}
@keyframes fadeContent {
  0% { opacity: 0; }
  70% { opacity: 0; }
  /*1% { left: -100px; opacity: 0; }*/
  100% { opacity: 1; }
}

.rochele-services .services-area .item .link-open {
	position: absolute;
	bottom: 50px;
	right: 40px;
	color: #707070;
	font-size: 18px;
	padding-right: 1.9em;
	opacity: 0;
	-webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item:last-child .link-open {
	display: none;
}
.rochele-services .services-area .item.active .link-open {
	opacity: 1;
	-webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.rochele-services .services-area .item .link-open:after {
	content: "";
  position: absolute;
  right: 0;
  top: 0.15em;
  width: 1.3em;
  height: 1.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../imgs/top-right.png);
  filter: invert(43%) sepia(0%) saturate(29%) hue-rotate(220deg) brightness(100%) contrast(92%);
}
.rochele-innovation {
	position: relative;
	display: flex;
	align-items: center;
	background-color: rgba(146,148,152,0.6);
	background-blend-mode: darken;
}
.rochele-innovation .inner {
	padding: 90px 175px;
	width: 100%;
	max-width: 1115px;
}
.rochele-innovation h2 {
	font-size: 72px;
	line-height: 1em;
}
.rochele-innovation h2 .second-layer {
	padding-left: 27.5%;
}
.rochele-innovation p {
	max-width: 588px;
}
.btn-top-left {
	color: white;
	font-size: 25px;
	font-weight: 500;
	text-decoration: underline;
	position: relative;
	padding-right: 1.7em;
}
.btn-top-left:hover {
	color: white;
}
.btn-top-left:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0.15em;
	width: 0.960em;
	height: 0.960em;
	background-image: url(../imgs/top-right.png);
}
.rochele-projects {
	padding: 111px 39px;
	display: flex;
	align-items: center;
}
.rochele-projects .inner {
	width: 100%;
}
.rochele-projects a.link {
	font-size: 24px;
	text-decoration: underline;
	color: var(--dark);
	font-weight: 500;
	font-family: var(--body-font3);
}
.rochele-projects .link-area {
	padding-right: 179px;
}
.rochele-projects .project-area {
	display: flex;
	align-items: center;
	position: relative;
}
.rochele-projects .project-area .project-nav {
	width: 132px;
	margin-left: 47px;
}
.rochele-projects .project-area .feature {
	padding-top: 135.489%;
	margin-bottom: 24px;
}
.rochele-projects .project-area .swiper-slide {
	position: relative;
}
.rochele-projects .project-area a {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.rochele-projects .project-area h4 {
	font-size: 36px;
	color: var(--black);
}
.rochele-projects .project-area h5 {
	font-size: 18px;
	color: var(--black);
}
.project-nav {
	display: flex;
}
.project-nav > div {
	margin: 0;
}
.project-nav > .next-project {
	margin-left: 24px;
}
.rochele-booking {
	background-color: #EEAB88;
	display: flex;
}
.rochele-booking .content-image {
	flex: 0 0 auto;
  width: 44.299%;
  padding: 148px 6%;
  color: white;
  background-color: rgba(164,163,164,0.5);
  background-blend-mode: darken;
}
.rochele-booking .content-image h2 {
	font-size: 106px;
	line-height: 1.208em;
	letter-spacing: -0.27rem;
}
.rochele-booking .content-image h2 span {
	display: block;
}
.rochele-booking .content-image .content-part {
	margin-top: 18%;
	padding-left: 11%;
}
.rochele-booking .content-image .content-part h3 {
	font-size: 36px;
	line-height: 1em;
}
.rochele-booking .content-booking {
	width: 55.701%;
	padding: 94px 96px 94px 48px;
}
.rochele-booking .booking-box {
	max-width: 638px;
	background-color: white;
	border-radius: 20px;
	padding: 54px 39px 44px;
	margin-left: auto;
	margin-right: auto;
}
.rochele-booking .booking-box h3 {
	font-size: 48px;
	text-transform: lowercase;
}
.rochele-booking .booking-box p {
	font-size: 24px;
}
.rochele-booking .booking-box p a {
	color: var(--black);
}
.rochele-booking .booking-box .wpcf7 {
	margin-top: 40px;
}
.wpcf7-spinner {
	position: absolute;
}
.rochele-booking .booking-box .wpcf7 textarea,
.rochele-booking .booking-box .wpcf7 select,
.rochele-booking .booking-box .wpcf7 input[type="email"],
.rochele-booking .booking-box .wpcf7 input[type="date"],
.rochele-booking .booking-box .wpcf7 input[type="tel"],
.rochele-booking .booking-box .wpcf7 input[type="text"] {
	height: 56px;
	border-radius: 5px;
	font-size: 18px;
}
.rochele-booking .booking-box .wpcf7 textarea {
	height: 150px;
}
.rochele-booking .booking-box .wpcf7 input.wpcf7-submit {
	background-color: var(--black);
	color: white;
	display: inline-block;
	max-width: 207px;
	font-size: 18px;
	padding: 0.34em 2em;
	text-decoration: none;
}
.rochele-booking .booking-box .wpcf7 .wpcf7-not-valid-tip {
	font-size: 0.7em;
}
.rochele-booking .book-info {
	font-size: 24px;
}
.rochele-booking .book-info a {
	color: var(--black);
}
.rochele-footer {
	padding: 104px 0 0;
	background-color: #F8F7F5;
	font-size: 18px;
}
.rochele-footer .upper {
	padding: 0 128px;
	padding-bottom: 15px;
}
.rochele-footer .lbl {
	color: var(--black);
	margin-bottom: 9px;
}
.rochele-footer ul {
	padding: 0;
	list-style: none;
}
.rochele-footer ul li {
	display: block;
	margin-bottom: 9px;
}
.rochele-footer ul a {
	color: #707070;
	display: inline-block;
}
.rochele-footer ul.footn-main-menu a {
	color: var(--black);
}
.foot-col-menu {
	display: flex;
	margin-left: -12px;
	margin-right: -12px;
}
.foot-col-menu > .col-fn {
	padding-left: 12px;
	padding-right: 12px;
}
.rochele-footer .f-info {
	max-width: 396px;
}
.rochele-footer .f-info a {
	color: var(--black);
	display: inline-block;
	margin-bottom: 5px;
}
.rochele-footer .lower {
	padding: 28px 128px 44px;
	border-top: 1px solid #D8B02F;
}
.rochele-footer .lower .foot-member {
	display: flex;
	align-items: center;
}
.rochele-footer .lower .foot-member h4 {
	width: 100px;
	margin-right: 35px;
}
.rochele-footer .lower .col-md-1 {
	width: 14%;
}
.rochele-footer .lower .col-md-2 {
	width: 17%;
}
.rochele-footer .lower .col-md-5 {
	width: 41%;
}
.rochele-footer .lower .col-md-4 {
	width: 27%;
}
.rochele-footer .lower .menu-social-media-menu-container .menu li {
	margin-right: 15px;
	margin-left: 0;
	margin-bottom: 0;
}
header.rochele-header {
	padding: 13px 128px;
}
.menu-main-menu-container .menu {

}
.menu-main-menu-container .menu > li:not(:first-of-type) {
	margin-left: 80px;
}
.menu-main-menu-container .menu li {
	font-size: 18px;
}
.site-menu ul.menu .menu-item-852 .sub-menu {
	width: 320px;
}
.site-menu ul.menu .menu-item-849 .sub-menu {
	width: 200px;
}
.menu-main-menu-container .menu li.get-in-touch a {
	color: white;
	background-color: var(--black);
	padding: 14px 43px 15px;
	text-transform: initial;
	border-radius: 56px;
	font-family: var(--body-font2);
	font-size: 18px;
}
.menu-main-menu-container .menu li.get-in-touch a:after {
	display: none;
}
.home-section {
	min-height: calc(100vh - 86px);
	position: relative;
}
.mobile-book-info {
	border-top: 1px solid white;
	padding-top: 21px;
	text-align: center;
}
.mobile-book-info > a {
	display: inline-block;
	margin: 0 15px;
}
.footer-member img {
	filter: grayscale(100%);
}
.rochele-service-mobile {
	position: relative;
	background-color: white;
	display: none;
}
.rochele-service-mobile .service-heading a.service-trigger {
	display: block;
	height: 240px;
	position: relative;
	background-size: cover;
	background-position: center;
	color: white;
	background-color: rgba(145,148,152,0.3);
	background-blend-mode: multiply;
}
.rochele-service-mobile .service-heading a.service-trigger:after {
		content: "";
    font-size: 32px;
    width: 1em;
    height: 0.571em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 25px;
    right: 23px;
    background-image: url(../imgs/down-white.png);
		-webkit-transform: scaleY(-1);
		transform: scaleY(-1);
}
.rochele-service-mobile .service-heading a.service-trigger.collapsed:after {
		-webkit-transform: initial;
		transform: initial;
}
.rochele-service-mobile .service-heading a.service-trigger h3 {
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	font-size: 36px;
	padding: 0 20px;
	margin-bottom: 0;
}
.rochele-service-mobile .service-heading a.service-trigger .num {
	font-family: var(--head-font);
	font-size: 72px;
	line-height: 0.500em;
	padding: 10px 20px;
}
.rochele-service-mobile .service-body {
	background-color: #DEE0DF;
	padding: 40px 25px 55px;
	font-size: 18px;
}
.general-call {
	display: none;
	position: absolute;
	right: 64px;
	top: 11px;
}
.pswp__caption__center {
	text-align: center;
	font-size: 16px;
}
.services-area .service-nav {
	position: absolute;
	bottom: 20px;
	right: -10px;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.services-area .item.active .service-nav {
	opacity: 1;
	right: 20px;
	-webkit-transition: all 0.9s ease-in-out;
	transition: all 0.9s ease-in-out;
}
.services-area .service-nav > div {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-size: 26px 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../imgs/link-arrow.svg);
    border: 1px solid var(--black);
    margin: 0 15px;
    cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.services-area .service-nav > div:hover {
	background-image: url(../imgs/link-arrow-white.svg);
	background-color: var(--black);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.services-area .service-nav > div.next-service {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.services-area .item:first-child.active .service-nav > .prev-service {
	opacity: 0.4;
	pointer-events: none;
}
.services-area .item:last-child.active .service-nav > .next-service {
	opacity: 0.4;
	pointer-events: none;
}

/***** Shop Update *****/

.archive .product-loop-row > li .tinvwl_add_to_wishlist_button{
    display: none;
}

.single-product .summary .variations,
.single-product .summary a.tinvwl_add_to_wishlist_button,
.single-product .summary .quantity,
.single-product .summary form.cart button.single_add_to_cart_button,
.single-product .products > li .tinvwl-after-add-to-cart{
    display: none;
}

.page-template-template-product-listing ul.section_product_loops{
    padding-left: 0;
}

.page-template-template-product-listing ul.section_product_loops > li::marker{
    content: '';
    display: none;
}

.page-template-template-product-listing ul.section_product_loops > li{
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: var(--grey) 1px solid;
}

.page-template-template-product-listing ul.section_product_loops > li:last-of-type{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.page-template-template-product-listing ul.section_product_loops > li .container > .row{
    align-items: flex-start;
}

.page-template-template-product-listing ul.section_product_loops > li .section_product_details_left{
    display: flex;
    align-items: flex-start;
    flex-basis: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.page-template-template-product-listing ul.section_product_loops > li .section_product_details_left > div,
.page-template-template-product-listing ul.section_product_loops > li .section_product_details_left > a{
    display: block;
    width: 100%;
    max-width: calc(50% - 10px);
    padding-top: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}