/*
	Theme Name:			puntogres
	Description:		Theme designed by jojoitsoft.com
	Theme URI:			
	Author:				JOJOITSOFT 
	Author URI:			jojoitsoft.com
	Version:			1.0.31
    Text Domain:        puntogres
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
	--Main-Black: #45464b;
	--Main-Sea-Color: #0A9396;
	--Main-White: #FFF;
	--Light-Grey: #EDEDED;
	--Dark-Grey: #B8B8B8;
	--Dark: #202027;
	--Yellow: #FC0;
	--Open-Sans: "Open Sans", sans-serif;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
    font-optical-sizing: auto;
    font-style: normal;
    cursor: default;
    scroll-behavior: smooth;
	background-color: var(--Main-White);
	font-family: "Inter", sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
	position: relative;
}

input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0;border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
img{vertical-align: top;}

.container{
	max-width: 1300px;
	margin: 0 auto;
}
.container-fluid{
	width: 100%;
}
main{
    flex-grow: 1;
}
.main-button{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 8px;
	border-radius: 8px;
	background: var(--Main-Sea-Color, #0A9396);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
	color: var(--Main-White, #FFF);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; 
}
.second-button{
	display: flex;
	padding: 16px 8px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	background: var(--Main-Black, #000);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
	color: var(--Main-White, #FFF);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
}
.content-container{
	margin-top: 40px;
	margin-bottom: 40px;
	color: var(--Dark, #202027);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
}
.content-container a{
	color: #0A9396;
	text-decoration: underline;
}
.bg-white{
	background-color: var(--Main-White);
}
.content{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
a{
	color: inherit;
}
.main{
	padding-top: 70px;
}

@media screen and (max-width: 1300px){
	section{
		padding: 0 10px;
	}
}
/* --- Header START --- */
header{
	min-height: 84px;
	width: 100%;
	background-color: #45464ba2;
	color: var(--Main-White);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.under-development{
	align-self: center;
	font-size: 22px;
	padding: 3px 6px;
	background-color: var(--Main-Sea-Color);
	color: var(--Main-White);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 6px auto;
}
.header-container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	min-height: 84px;
	height: 100%;
	position: relative;
	width: 100%;
}
.header-container .grid-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	flex-grow: 1;
	align-items: center;
}
.header-container .grid-container .item{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	width: 100%;
}
@media screen and (max-width: 992px){
	.header-container .grid-container{
		display: none;
	}
}
.logo-wrapper{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}
.logo-cer{
	aspect-ratio: 1/1;
	width: 60px;
	overflow: hidden;
}
.logo-cer img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* Logo START */
.logo{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.logo a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}
.logo a img{
	max-height: 100%;
	width: auto;
}
.logo span{
	font-size: 38px;
	font-weight: 600;
}
/* Logo END */
/* Menu START */
.topnav{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.topnav .menu{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2px;
}
.topnav .menu li{
	list-style: none;
	display: flex;
	padding: 12px;
	justify-content: center;
	align-items: center;
	color: var(--Main-White);
}
.topnav .menu li a{
	color: inherit;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
}
.topnav .vertical{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--Main-White);
	gap: 3px;
}

.topnav .vertical span{
	color: inherit;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
}
/* Menu END */
/* Address START */
.header-container address{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.header-container address a{
	color: var(--Main-White);
	font-style: normal;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; 
	text-transform: uppercase;
}
/* Adress END */
.right-box{
	position: relative;
}
/* Social START */
.right-box .social{
	display: inline-flex;
	gap: 24px;
}
/* Social END */
/* Mobile Menu START */
.mobile-menu-button{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	cursor: pointer;
}
.mobile-menu{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 15px;
	width: 300px;
	height: auto;
	background-color: var(--Main-Sea-Color);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0 0 8px 0;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
	display: none;
}
#closeMobileMenu{
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.mobile-menu nav ul{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.mobile-menu nav li{
	list-style: none;
	color: var(--Main-White);
}
.mobile-menu nav li a{
	color: var(--Main-White);
	font-style: normal;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; 
	text-transform: uppercase;
}
.mobile-menu nav a.vertical{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-top: 10px;
	color: var(--Main-White);
}
.mobile-menu address{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-top: 24px;
}
.mobile-menu address a{
	color: var(--Main-White);
	font-style: normal;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; 
	text-transform: uppercase;
}
.mobile-menu address .info{
	display: inline-flex;
	gap: 10px;
}
.mobile-menu address .info svg{
	min-width: 24px;
	height: 24px;
}
.mobile-menu .social{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}
.mobile-menu .grid-container{
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 24px;
}
/* Mobile Menu END */
@media screen and (max-width: 992px){
	.topnav,
	.header-container address,
	.right-box{
		display: none;
	}
	.header-container{
		justify-content: center;
	}
	.mobile-menu-button{
		display: block;
	}
}
/* --- Header END --- */

/* --- Main START --- */

/* breadcrumb START */
.breadcrumb{
	width: 100%;
	margin-top: 24px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}
.breadcrumb a{
	color: var(--Dark-Grey, #B8B8B8);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}
.breadcrumb a.active{
	color: var(--Main-Black, #000);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	pointer-events: none;
}
.breadcrumb span{
	color: var(--Dark-Grey, #B8B8B8);
}
/* breadcrumb END */

/* -- Front Page START -- */
/* Hero START */
.hero{
	height: 600px;
	background-image: url("/wp-content/themes/Puntogres/assets/img/bg-front.webp");
	background-size: cover;
	background-position: center;
}
.hero .item-box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}
.hero .item-box h2{
	color: var(--Main-White, #FFF);
	font-size: clamp(28px, 4vw, 40px);
	font-style: normal;
	font-weight: 600;
	line-height: clamp(36px, 4vw, 48px); 
	max-width: 600px;
}
.hero .item-box small{
	color: var(--Main-White, #FFF);
	font-size: clamp(14px, 2vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(20px, 3vw, 28px);
	max-width: 630px;
	margin-top: 12px;
}
.hero .item-box .main-button{
	margin-top: 16px;
}
@media screen and (max-width: 992px){
	.hero{
		height: 535px;
	}
}
/* Hero END */
/* About START */
.about{
	padding-top: 60px;
	padding-bottom: 60px;
}
.about .item-box{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.about .item-box .title{
	color: var(--Main-Black, #000);
	font-size: clamp(20px, 3vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(28px, 2vw, 32px);
	text-transform: uppercase;
}
.about .item-box .grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap : 120px;
	margin-top: 32px;
}
.about .item-box .grid .item{
	grid-column: span 1;
}
.about .item-box .grid .item:nth-child(1){
	color: var(--Dark, #202027);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}
.about .item-box .grid .item:nth-child(2){
	color: var(--Dark, #202027);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
}
.custom-link{
	align-self: flex-end;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.custom-link i{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.custom-link span{
	color: var(--Main-Black, #000);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-decoration-line: underline;
	text-transform: uppercase;
}
@media screen and (max-width: 768px){
	.about{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.about .item-box .grid{
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 24px;
	}
	.about .item-box .grid .item:nth-child(1),
	.about .item-box .grid .item:nth-child(2){
		color: var(--Dark, #202027);
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 22px; /* 157.143% */
	}
	.custom-link{
		align-self: center;
		margin-top: 24px;
	}
}
/* About END */
/* Why Choose Us START */
.why-choose-us{
	padding-top: 40px;
	padding-bottom: 40px;
	background: var(--Light-Grey, #EDEDED);
}
.why-choose-us .item-box{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.why-choose-us .item-box .title{
	color: var(--Main-Black, #000);
	font-size: clamp(20px, 3vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(28px, 2vw, 32px);
	text-transform: uppercase;
}
.why-choose-us .item-box .grid{
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.why-choose-us .item-box .grid .item{
	grid-column: span 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}
.why-choose-us .item-box .grid .item .sub-title{
	color: var(--Main-Black, #000);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; 
}
@media screen and (max-width: 768px){
	.why-choose-us .item-box .grid{
		grid-template-columns: 1fr;
	}
	.why-choose-us .item-box .grid{
		align-self: center;
	}
}
/* Why Choose Us END */
.bg{
	background-image: url("/wp-content/themes/Puntogres/assets/img/bg.webp");
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 992px){
	.bg{
		background-image: none;
		padding-top: 40px;
	}
}
/* Our categories START */
.our-categories{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 100px;
}
.our-categories .title{
	color: var(--Main-Black, #000);
	font-size: clamp(20px, 3vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(28px, 2vw, 32px);
	text-transform: uppercase;
}
.our-categories .description{
	margin-top: 32px;
	color: var(--Dark, #202027);
	font-size: clamp(14px, 2vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(22px, 3vw, 28px);
	max-width: 532px;
}
/* Slider START */
/* Slider START */
.slider{
	padding-top: 100px;
	padding-bottom: 100px;
	background: transparent;
	position: relative;
}
.slider .slider-container{
	width: 100%;
	height: 672px;
	overflow-x: hidden;
	display: flex;
	align-items: center;
}
.slider .slider-container .item-box{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	transition: all 0.5s ease-in-out;
}
.slider .slider-container .item-box .item{
	height: 535px;
	z-index: 3;
	transition: transform 0.5s;
}
.slider .slider-container .item-box .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider .slider-container .item-box .item.second{
	transform: scale(1.25);
	z-index: 2;
}
.slider .slider-container .item-box .item.first{
	z-index: 1;
}
.slider .slider-buttons{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
	position: absolute;
	bottom: 100px;
	right: 20%;
}
.slider .slider-buttons i{
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}
.slider .slider-buttons i:hover{
	cursor: pointer;
	border-radius: 6px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 992px){
	.slider{
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.slider .slider-container{
		height: auto;
	}
	.slider .slider-buttons{
		bottom: 0px;
		left: 50%;
		transform: translateX(-50%);
	}
	.slider .slider-container .item-box .item{
		height: 488px;
	}
}
/* Slider END */
/* Our categories END */
/* Portfolio START */
.portfolio{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.portfolio .title{
	color: var(--Main-Black, #000);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px; /* 133.333% */
	text-transform: uppercase;
}
.portfolio .description{
	color: var(--Dark, #202027);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
	max-width: 523px;
	margin-top: 32px;
}
.portfolio .portfolio-list{
	margin-top: 40px;
}
.portfolio .portfolio-list td{
	padding: 5px 15px;
}
.portfolio .portfolio-list a{
	color: var(--Dark, #202027);
	font-size: clamp(14px, 2vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 125% */
	text-transform: uppercase;
}
.portfolio .portfolio-list a:hover{
	text-decoration-line: underline;
}
.portfolio .img-box{
	width: 100%;
	margin-top: 12px;
	overflow: hidden;
	height: 600px;
}
.portfolio .img-box .items{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	transition: all 0.5s ease-in-out;
	height: 100%;
}
.portfolio .img-box .items .item{
	flex: 0 0 100%;
	transition: all 0.5s;
	height: 100%;
}
.portfolio .img-box .items img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.portfolio .second-button{
	margin-top: 24px;
	align-self: center;
	margin-bottom: 74px;
}
@media screen and (max-width: 992px){
	.portfolio{
		margin-top: 24px;
	}
	.portfolio .img-box{
		height: 400px;
	}
	.portfolio .second-button{
		margin-bottom: 14px;
	}
}
@media screen and (max-width: 576px){
	.portfolio .img-box{
		height: 300px;
	}
	.portfolio .portfolio-list{
		justify-content: center;
	}
	.portfolio .portfolio-list td{
		padding: 5px;
	}
}
/* Portfolio END */
/* CTA section START */
.cta{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	gap: 16px;
	padding-top: 64px;
	padding-bottom: 64px;
}
.cta .text-box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 522px;
}
.cta .text-box .title{
	width: 100%;
	color: var(--Main-Black, #000);
	font-size: clamp(20px, 4vw, 40px);
	font-style: normal;
	font-weight: 600;
	line-height: clamp(28px, 4vw, 48px);
}
.cta .text-box .description{
	margin-top: 16px;
	width: 100%;
	color: var(--Dark, #202027);
	font-size: clamp(16px, 2vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
}
.cta .text-box .second-button{
	margin-top: 32px;
	width: 307px;
}
.cta .counter-box{
	flex-grow: 1;
	overflow: hidden;
	border-radius: 24px;
	height: 276px;
	z-index: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.cta .counter-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
    height: 100%;
	background-size: cover;
    background-position: center;
    z-index: -1; 
	background-image: url('/wp-content/themes/Puntogres/assets/img/counter.webp');
	filter: brightness(40%);
}
.cta .counter-box .counter{
	color: var(--Main-White, #FFF);
	text-align: center;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 74px; /* 115.625% */
	text-transform: uppercase;
}
.cta .counter-box small{
	color: var(--Main-White, #FFF);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	text-align: center;
}
.cta .counter-box .discount{
	position: absolute;
	top: 2%;
	right: 10%;
}
@media screen and (max-width: 992px){
	.cta{
		flex-direction: column;
		padding-top: 14px;
		padding-bottom: 34px;
	}
}
/* CTA section END */
/* Reviews START */
.reviews{
	padding-top: 40px;
	padding-bottom: 40px;
	background: var(--Light-Grey, #EDEDED);
}
.reviews .main-box{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.reviews .main-box .title{
	color: var(--Main-Black, #000);
	font-size: clamp(20px, 3vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(28px, 2vw, 32px);
	text-transform: uppercase;
}
.reviews .main-box ._wrapper{
	margin-top: 32px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	width: 100%;
}
.reviews .main-box ._wrapper .description{
	max-width: 523px;
	color: var(--Dark, #202027);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
}
.reviews .slider-buttons{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.reviews .slider-buttons i{
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}
.reviews .slider-buttons i:hover{
	cursor: pointer;
	border-radius: 6px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.reviews .main-box .slider-container{
	margin-top: 24px;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	align-items: center;
}
.reviews .main-box .slider-container .item-box{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	transition: all 0.5s ease-in-out;
	width: 100%;
}
.reviews .main-box .slider-container .item-box .item{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 24px;
	border-radius: 12px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.reviews .main-box .slider-container .item-box .item .img-box{
	width: 100%;
	height: 212px;
	overflow: hidden;
	border-radius: 12px;
}
.reviews .main-box .slider-container .item-box .item .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reviews .main-box .slider-container .item-box .item .rating{
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 6px;
}
.reviews .main-box .slider-container .item-box .item .content{
	margin-top: 24px;
	flex-grow: 1;
	color: var(--Dark, #202027);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}
.reviews .main-box .slider-container .item-box .item .author{
	margin-top: 6px;
	color: var(--Dark-Grey, #B8B8B8);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}
/* Reviews END */
/* Contact form START */
.contact-form{
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	gap: 120px;
}
.contact-form .left{
	display: flex;
	padding: 32px 24px;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 24px;
	background: var(--Main-Black, #000);
	min-width: 412px;
	max-width: 412px;
}
.contact-form .left .title{
	color: var(--Main-White, #FFF);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px; /* 128.571% */
}
.contact-form .left .description{
	margin-top: 16px;
	color: var(--Dark-Grey, #B8B8B8);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
}
.contact-form .left .info{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 25px;
	width: 100%;
}
.contact-form .left .info.phone{
	margin-top: 120px;
}
.contact-form .left .info.email,
.contact-form .left .info.location{
	margin-top: 24px;
}
.contact-form .left .info svg{
	min-width: 24px;
}
.contact-form .left .info span{
	color: var(--Main-White, #FFF);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}
.contact-form .right{
	flex-grow: 1;
	width: 100%;
}
.contact-form .right form{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
}
.contact-form .right form .title{
	grid-column: span 2;
	color: var(--Main-Black, #000);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px; /* 128.571% */
}
.contact-form .right form .item{
	grid-column: span 1;
}
.contact-form .right form .item.radio-buttons,
.contact-form .right form .item.message{
	grid-column: span 2;
}
.contact-form .right form .item label{
	color: var(--Dark-Grey, #B8B8B8);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}
.contact-form .right form .item input{
	display: flex;
	padding: 4px 4px 12px 4px;
	flex-direction: column;
	align-items: flex-start;
	border-bottom: 0.5px solid var(--Main-Black, #000);
	width: 100%;
}
.contact-form .right form .item.radio-buttons p{
	color: var(--Main-Black, #000);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 142.857% */
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item.first{
	margin-left: 0;
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item > label{
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #0A9396;
    border-radius: 50%;
    background-color: white;
    position: relative;
    cursor: pointer;
    box-sizing: border-box; 
    margin: 0; 
	padding: 0;
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item input[type="radio"]:checked {
    background-color: #0A9396;
    border: 2px solid #0A9396;
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}
.contact-form .right form .item.radio-buttons .wpcf7-list-item > label > span{
	color: var(--Main-Black, #000);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}
.contact-form .right form .message p label{
	width: 100%;
	color: var(--Main-Black, #000);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}
.contact-form .right form .message p textarea{
	width: 100%;
	border-bottom: 0.5px solid var(--Main-Black, #000);
	display: flex;
	padding: 4px 4px 12px 4px;
	height: 78px;
}
.contact-form .right form .button{
	grid-column: span 2;
}
.contact-form .right form .button p{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.contact-form .right form .button p input{
	display: flex;
	width: 307px;
	padding: 16px 8px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	background: var(--Main-Black, #000);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
	color: var(--Main-White, #FFF);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
}
.contact-form .right form  .wpcf7-response-output{
	width: 100%;
	grid-column: span 2;
	text-align: center;
}
@media screen and (max-width: 1300px) {
	.contact-form{
		gap: 20px;
	}
}
@media screen and (max-width: 1200px) {
	.contact-form .right form .item{
		grid-column: span 2;
	}
}
@media screen and (max-width: 992px) {
	.contact-form{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.contact-form .left{
		min-width: 100%;
		max-width: 100%;
	}
	.contact-form .right form{
		grid-template-columns: 1fr;
	}
	.contact-form .right form .title{
		grid-column: span 1;
	}
	.contact-form .right form .wpcf7-form-control.wpcf7-radio{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
	}
	.contact-form .right form .item.radio-buttons .wpcf7-list-item{
		margin-left: 0;
	}
}
@media screen and (max-width: 576px) {
	.contact-form .right form .button p{
		justify-content: center;
	}
}
/* Contact form END */
/* -- Front Page END -- */

/* --Category START-- */
/* description START */
.description{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.description h3{
	color: var(--Main-Black, #000);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px; /* 133.333% */
	text-transform: uppercase;
}
.description p{
	color: var(--Dark, #202027);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
}
/* description END */
/* cat-nav START */
.cat-nav{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	flex-wrap: wrap;
}
.cat-nav .category-button{
	display: flex;
	flex-direction: column;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 8px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
	color: var(--Dark, #202027);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
}
.cat-nav .category-button.current{
	background: var(--Main-Black, #000);
	color: var(--Main-White, #FFF);
}
/* cat-nav END */
/* query-container START */
.query-container{
	margin-top: 40px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	grid-auto-rows: auto;
}
.query-container p.no-posts{
	grid-column: span 3;
	font-size: 18px;
}
@media screen and (max-width: 992px) {
	.query-container{
		grid-template-columns: repeat(4, 1fr);
	}
}
/* query-container END */
/* --Category END-- */

/* --- Main END --- */

/* -- loopitems START -- */
.item.post{
	width: 100%;
	display: flex;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	border-radius: 12px;
	background: var(--Main-White, #FFF);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
	height: auto;
	grid-column: span 1;
}
@media screen and (max-width: 992px) {
	.item.post{
		grid-column: span 2;
	}
}
@media screen and (max-width: 576px) {
	.item.post{
		grid-column: span 4;
	}
}
.item.post:hover{
	transform: translateY(-5px);
	transition: all 0.3s ease-in-out;
}
.item.post .image-box{
	width: 100%;
	aspect-ratio: 1.83/1;
	overflow: hidden;
	border-radius: 12px;
}
.item.post .image-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item.post .title{
	margin-top: 24px;
	color: var(--Dark, #202027);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
}
.item.post .excerpt{
	margin-top: 8px;
	color: var(--Dark-Grey, #B8B8B8);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
	flex-grow: 1;
}
/* -- loopitems END -- */

/* --- Footer START --- */
footer{
	background-color: var(--Light-Grey);
	padding-top: 16px;
	padding-bottom: 16px;
}
.footer-container{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.footer-menu{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
}
.footer-menu .menu{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
}
.footer-menu .menu li{
	list-style: none;
}
.footer-menu .menu li a{
	color: var(--Main-Black, #000);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 125% */
	text-transform: uppercase;
}
.footer-menu .vertical{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3px;
	color: var(--Dark);
}
.footer-menu .vertical a{
	color: inherit;
}
.footer-menu .certificate{
	width: auto;
	height: auto;
	max-height: 90px;
}
.footer-container address{
	align-self: flex-end;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 256px;
}
.footer-container address .item{
	display: inline-flex;
	align-items: center;
	gap: 24px;
}
.footer-container address .item small{
	color: var(--Dark, #202027);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}
.footer-container address .item span{
	color: var(--Dark, #202027);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}
.bottom-box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
	width: 100%;
}
.bottom-box .copyright{
	color: var(--Dark, #202027);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 166.667% */
	text-transform: uppercase;
}
.bottom-box .center-container{
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 24px;
}
.bottom-box .center-container .item p{
	font-size: 12px;
}
.bottom-box .privacy-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--Main-Sea-Color);
}
.bottom-box .privacy-container a{
	text-wrap: nowrap;
}
.bottom-box .social{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
}
@media screen and (max-width: 992px) {
	footer{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.footer-container .logo{
		align-self: center;
	}
	.footer-menu{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.footer-menu .menu{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
	}
	.footer-menu .vertical{
		justify-content: flex-start;
		align-items: flex-start;
	}
	.footer-container address{
		align-self: flex-start;
		max-width: none;
	}
	.bottom-box{
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 24px;
		width: 100%;
	}
	.footer-container .social{
		align-self: center;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 24px;
	}
	.bottom-box :nth-child(2){
		order: 1;
	}
}
@media screen and (max-width: 768px) {
	.bottom-box .center-container{
		grid-template-columns: 1fr;
		width: 100%;
	}
}
/* --- Footer END --- */

/* 404 page START */
.not-found{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	height: 100%;
}
.not-found h3{
	font-size: 68px;
	font-style: normal;
	font-weight: 600;
	line-height: 56px; /* 112.5% */
	text-transform: uppercase;
	color: var(--Main-Sea-Color);
}
.not-found small{
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 150% */
}
/* 404 page END */

/* pagination START */
.pagination-container{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	grid-column: span 3;
	margin-top: 24px;
}
.pagination-container .nav-links{
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.pagination-container a{
	padding: 10px;
	border-radius: 6px;
	border: 1px solid var(--Light-Grey, #EDEDED);
	background: var(--Main-White, #FFF);
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--Main-Black, #000);
	font-family: var(--Open-Sans);
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.pagination-container a:has(svg){
	padding: 0;
}
.pagination-container span{
	padding: 10px;
	border-radius: 6px;
	background: var(--Main-Sea-Color, #0A9396);
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--Main-White, #FFF);
	font-family: var(--Open-Sans);
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
/* pagination END */