/* Css */

/* 
Fonts
 */

 /* Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');  

/* Didot */
@font-face {
    font-family: 'Didot';  
    src: url('fonts/Didot-Regular.ttf');  
    font-weight: normal;
    font-style: normal; 
}
@font-face {
    font-family: 'Didot';  
    src: url('fonts/Didot-Medium.ttf');  
    font-weight: 600;
    font-style: normal;  
}
@font-face {
    font-family: 'Didot';  
    src: url('fonts/Didot-LT-Std-Bold.otf');  
    font-weight: bold;
    font-style: normal;  
}


/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #00000000; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  transition: all 0.5s;
  cursor: pointer; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  width: 5px; 
}



:root {
	--main-color: #404D60;
	--secondary-color: #E0D8C4;
	--accent-color: #C25E43;
	--secondary-bd-color: #323C49;
}
html {
	scroll-behavior: smooth;
}
*{
	appearance: none;
    -moz-appearance: none;
	-webkit-appearance: none;
	outline: none;
	margin: 0;
	color: var(--main-color);
	box-sizing: border-box;
	transition: all 0.5s;
}
a, button{
	cursor: pointer;
	text-decoration: none;
	color: var(--main-color);
	background-color: #00000000;
	border:  none;
}
body{
	background-color: var(--secondary-color);
	counter-reset: section; 
}

.wpml-ls-menu-item .wpml-ls-flag,
.wpml-ls-legacy-list-vertical .wpml-ls-flag {
	width: 24px;
	height: 24px;
}
.wpml-ls-legacy-list-vertical a {
	padding: 0;
	margin-left: 32px;
}


/* 
titles
*/
.text-title1{
	font-family: "Didot";
	font-weight: bold;
	font-size: 36px;
}
.text-title2{
	font-family: "Didot";
	font-weight: bold;
	font-size: 24px;
}
.text-title3{
	font-family: "Didot";
	font-weight: bold;
	font-size: 18px;
}
.text-title4{
	font-family: "Didot";
	font-weight: bold;
	font-size: 16px;
}
.text-title5{
	font-family: "Nunito";
	font-weight: 300;
	font-size: 16px;
}

/* 
BUTTONS
*/
.action-button{
	display: block;
	padding: 18px 54px 18px 13px;
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	font-family: "Didot";
	font-weight: bold;
	font-size: 16px;
	line-height: 21px;
	position: relative;
	transition: all 0.5s;
	width: fit-content;
	color: var(--secondary-color);
}
.action-button::after{
	content: '';
	display: block;
	background-image: url('/wp-content/uploads/2020/11/Vector.svg');
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 21px;
	width: 20px;
	height: 8px;
	transform: translateY(-50%);
}
.action-button:hover{
	background-color: #00000000;
	color: var(--accent-color);
}
.action-button:hover::after{
	background-image: url('/wp-content/uploads/2020/11/Vector1.svg');
}
.action-button-inactive{
	opacity: 0.8;
	pointer-events: none;
}

.forward-button{
	display: block;
	padding: 6.5px 60px 6.5px 8px;
	background-color: #00000000;
	border: 1px solid #00000000;
	font-family: "Didot";
	font-weight: bold;
	font-size: 18px;
	line-height: 23px;
	position: relative;
	transition: all 0.5s;
	width: fit-content;
	color: var(--accent-color);
}
.forward-button::after{
	content: '';
	display: block;
	background-image: url('/wp-content/uploads/2020/11/Vec2tor.svg');
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 14px;
	width: 32px;
	height: 8px;
	transform: translateY(-50%);
}
.forward-button:hover{
	border: 1px solid var(--accent-color);
}
.forward-button-inactive{
	color: var(--main-color);
	pointer-events: none;
}
.forward-button-inactive::after{
	background-image: url('/wp-content/uploads/2020/11/Vsector.svg');
}


/* 
CONTAINERS, WRAPPERS & CARDS
*/
.container-big{
	width: 100%;
	max-width: 1170px;
	margin: auto;
}
.container-small{
	width: 100%;
	max-width: 778px;
	margin: auto;
}

.grid-3,
.grid-4{
	display: grid;
	background-color: #00000000;
	/* border-top: solid 1px var(--main-color);
	border-left: solid 1px var(--main-color); */
	grid-auto-rows: 1fr;
}
.grid-3{
	grid-template-columns: repeat(3, 1fr);
}
.grid-4{
	grid-template-columns: repeat(4, 1fr);
}
.grid-card,
.grid-3-card,
.grid-4-card{
	position: relative;
	/* border-bottom: solid 1px var(--main-color); */
	border: solid 1px var(--main-color);	
	margin-top: -1px;
	margin-left: -1px;
	padding: 24px 36px;	
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	/* height: inherit; */
}
.grid-card h3,
.grid-card h2{
	max-width: calc(100% - 38px);
}
.grid-card:hover .card-img{
	transform: scale(0.9);
}
.card-img{
	width: 100%;
	object-fit: contain;
	transition: all 0.5s;
}
.card-price-wrap{
	width: 100%;
	margin-top: 24px;
	position: relative;
}
.card-price-wrap::after{
	content: '';
	display: block;
	background-image: url('/wp-content/uploads/2020/11/Vesdctor.svg');
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 0;
	width: 32px;
	height: 14px;
	transform: translateY(-50%) rotate(180deg);
}
.sale-price{
	color: var(--accent-color);
	margin-left: 12px;
}
.reg-price{
	text-decoration: line-through;
}
.sale-label{
	position: absolute;
	color: var(--secondary-color);
	background-color: var(--accent-color);
	font-weight: normal;
	padding: 4px 10px;
	top: 16px;
	right: 18px;
}

.image-bordered-wrap{
	padding: 10px;
	border: solid 1px var(--main-color);
}
.image-bordered-wrap img{
	width: 100%;
	display: block;
}


/* 
SECTIONS MARGINS
*/
.section-big{
	margin-top: 90px;
}
.mb-24{
	margin-bottom: 24px;
}
.mb-36{
	margin-bottom: 36px;
}








/* Customisation */
.site-header{
    display: flex;
    justify-content: space-between;
    padding: 20px 0 8px 0;
}
.site-navigation {
	display: flex;
	align-items: center;
}
.current-menu-item a{
	color: var(--accent-color);
}
.main-navigation{
	display: flex;
	align-items: center;
}
.menu-desktop{
	display: flex;
	list-style: none;
}
.menu-desktop li{
	margin-left: 36px;
}
.menu-desktop li a{
	transition: all 0.5s;
}
.menu-desktop li:hover a,
.menu-desktop li:active a{
	color: var(--accent-color);
}
.menu-trigger{
	display: none;
}



/* CONTACT FORM */
.wpcf7 form{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
     justify-content: space-between;
}
.wpcf7 form label{
    display: flex;
    width: 100%;
    flex-direction: column;
    
   
}
.wpcf7 .input-span{
	margin-bottom: 8px;
}
.wpcf7 form input,
.wpcf7 form textarea{
	width: 100%;
	border:  solid 1px var(--main-color);
	padding: 10px 16px;
	background-color: #00000000;
	cursor: text;
	font-size: 16px;
	line-height: 19px;
	font-weight: lighter;
	font-family: 'Nunito';
	box-sizing: border-box;
}
.wpcf7 .half-left-input,
.wpcf7 .half-right-input{
	width: calc(50% - 15px);
}
.wpcf7 input[type=submit]{
	display: none;
}
.wpcf7 .action-button{
	margin: auto;
}
.wpcf7 .wpcf7-response-output,
.wpcf7-not-valid-tip{
	display: none !important;
}
.wpcf7 .wpcf7-not-valid,
.wpcf7-not-valid::placeholder{
	color: #FF0000;
}

/* BREADCRUMBS */
.bread-span{
	color: var(--accent-color);
}
.breadcrumbs-wrapper{
	margin-top: 24px;
}


/* FOOTER */
.site-footer{
	background-color: var(--secondary-bd-color);
	padding: 60px 0;
}
.site-footer *{
	color: var(--secondary-color);
}
.footer-content-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-contacts,
.footer-info{
	width: 100%;
	max-width: 290px;
}
.footer-map{
	width: 100%;
	max-width: 370px;
}
.footer-map .map-wrapper{
	width: 100%;
	height: 100%;
}
.site-footer h3{
	display: flex;
	margin-bottom: 18px;
}
.flex-span{
	display: flex;
}
.flex-span img{
	margin-right: 12px;
}
.site-footer span{
	margin-bottom: 12px;
}
.site-footer h3 img{
	margin-right: 16px;
}
.social-link{
	width: 32px;
	margin-right: 12px;
	display: inline-block;
}
.social-link img{
	width: 100%;
}
.social-link:hover{
	transform: scale(1.3)
}
.days-wrap{
	padding-left: 40px;
}
.days-wrap .flex-span{
	margin-bottom: 6px;
}
.site-footer .day-span{
	width: 50px;
	margin-bottom: 0;
}
.parking span{
	padding-left: 40px;
}



.acf-map {
    width: 100%;
    max-width: 370px;
    height: 100%;
}
.acf-map img {
   max-width: inherit !important;
}

@media only screen and (max-width: 920px) {
	.main-navigation{
		position: fixed;
		background-color: var(--secondary-color);
		width: 100%;
		height: 100%;
		top: 0;
		left: -110vw;
		z-index: 300;
		padding: 40px 60px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		transition: all 0.5s;
	}
	.menu-mobile{
		padding: 0;
		width: 100%;
		list-style: none;
		text-align: center;
	}
	.menu-mobile li{
		position: relative;
		font-family: Didot;
		font-style: normal;
		font-weight: normal;
		font-size: 48px;
		line-height: 61px;
		margin-bottom: 24px;
	}
	.menu-mobile .menu-item a{
		position: relative;
	}
	.menu-mobile .menu-item:nth-child(2n) a::before{
		left: 100%;
		transform: translateX(0);
	}
	.menu-mobile .menu-item a::before{
		display: block;
		width: fit-content;
		position: absolute;
		font-family: Didot;
		font-style: normal;
		font-weight: normal;
		font-size: 18px;
		line-height: 23px;
		color: var(--accent-color);
		top: 0;
		left: 0;
		transform: translateX(-100%);
		counter-increment: section; 
		content: '0'counter(section);
	}
	.menu-trigger{
		display: block;
	}
	.menu-mobile-logo{
		display: block;
	    text-align: center;
	    width: fit-content;
	    margin: auto;
	}
	.close-menu{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		width: 34px;
		height: 16px;
		padding: 0
	}
	.close-menu img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.menu-mobile-header{
		width: 100%;
		position: relative;
	}



	/* 
	titles
	*/
	.text-title1{
		font-size: 24px;
	}
	.text-title2{
		font-size: 18px;
	}
	.text-title3{
		font-size: 14px;
	}
	.text-title4{
		font-size: 16px;
	}
	.text-title5{
		font-size: 16px;
	}
	/* 
	CONTAINERS, WRAPPERS & CARDS
	*/
	.container-big,
	.container-small{
		max-width: 343px;
	}

	.grid-3,
	.grid-4{
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-card,
	.grid-3-card,
	.grid-4-card{	
		padding: 12px 10px;	
	}
	.grid-card h3,
	.grid-card h2{
		max-width: calc(100% - 72px);
	}
	.card-price-wrap::after{
		width: 16px;
		height: 8px;
	}
	.sale-label{
		top: 6px;
		right: 6px;
	}


	.sale-price{
		margin-left: 4px;
	}
	.wpcf7 .half-left-input,
	.wpcf7 .half-right-input{
		width: 100%;
	}
	.wpcf7 .input-span{
		font-size: 18px;
	}

	.breadcrumbs-wrapper{
		margin-top: 0px;
	}

	.footer-content-wrap{
		flex-direction: column;
	}
	.site-footer h3{
		font-size: 24px;
	}
	.theme-wrap{
		margin-bottom: 36px;
	}
}