:root {
	font-size: 13px;
}

html,
body {
	background: white;
	font-family: var(--font-family-1);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	color: black;
	overflow-x: hidden;
}
html.lock,
body.lock {
	overflow: hidden;
}

@media(min-width: 768px) {
	:root {
		font-size: 14px;
    }
}

@media(min-width: 992px) {
	:root {
		font-size: 16px;
	}
}


a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}

*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}

.pe-auto{
    pointer-events: all !important;
}

.container,
.container-fluid {
	position: relative;
	width: 100%;
	padding: 0 20px;
}
.container.container-full {
	max-width: 1700px; /* Layouts' fullscreen */
}

.container.container-sm {
	max-width: 870px; /* 830 + 40 padding */
}

@media(min-width: 1200px) {
	.container {
		max-width: 1260px; /* 1220 + 40 padding */
	}


}

/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/
.button,
.button:hover,
.button:focus {
	display: inline-block;
    padding: 14px 20px;
	font-size: 1rem;
	font-weight: 500;
    color: var(--white);
	line-height: 1;
    position: relative;
	border: none;
	margin: 0;
	transition: var(--transition);
}

.button[disabled] {
	opacity: 0.5;
	pointer-events: none;
}


.button::before,
.button.button-fill:hover::before,
.button.button-fill:focus::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	left: auto;
	background-color: var(--primary);
	width: 100%;
	transition: var(--transition);
	border-radius: 24px;

}

.button:hover::before,
.button:focus::before,
.button.button-fill::before {
	transform: scale(1.05);
}

.button.full{
	color: #fff;
	background-color: var(--primary);
	border: 1px solid var(--primary);

}

.button.full,
.button.full:hover,
.button.full:focus {
	border-width: 1px;
	font-size: 14px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	padding: 19px 25px;
}

.template .button.full,
.template .button.full:hover,
.template .button.full:focus {
	padding: 25px 47px 24px;
}

.button > span {
	position: relative;
	z-index: 2;
	font-size: inherit !important;
	color: inherit !important;
	word-spacing: opacity;
}

.text-center {
    justify-content: center;
}

.text-right {
    justify-content: end;
}

.text-left {
    justify-content: start;
}

.link,
.link:hover,
.link:focus {
	display: inline-block;
	position: relative;
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: .1em;
}
.link:hover,
.link:focus {
	color: var(--black);
}

.link {
	text-transform: none;
	padding-right: calc(42px + 25px);
	overflow: visible !important;
}
.link::after {
	content: "";
	width: 42px;
    height: 32px;
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	-webkit-mask-image: url(/assets/img/svg/arrow.svg);
	mask-image: url(/assets/img/svg/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--primary);
	transition: var(--transition);
}
.link.link-arrow.link-reverse::after {
	right: auto;
	left: 0;
	transform: rotate(180deg);
}
.link:hover::after,
.link:focus::after {
	transform: translateX(5px);
}
.link.link-arrow.link-reverse:hover::after,
.link.link-arrow.link-reverse:focus::after {
	transform: rotate(180deg) translateX(5px);
}

.button-play {
	display: block;
	padding: 20px;
	position: relative;
	cursor: pointer;
	transition: var(--transition);
	pointer-events: all;
}

.button-play::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 50%;
	transition: var(--transition);
}

.button-play::before {
	content: '';
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 5.5px 0 5.5px 9px;
	border-color: var(--transparent) var(--transparent) var(--transparent) #ffffff;
}

.button-play:hover {
	transform: scale(1.05);
}

@media(min-width: 768px) {
    .button,
	.button:hover,
	.button:focus {
		font-size: 1rem;
		padding: 16.5px 30px;
	}

	.button.full,
	.button.full:hover,
	.button.full:focus {
		padding: 22px 35px;
	}

	.template .button.full,
	.template .button.full:hover,
	.template .button.full:focus {
		padding: 25px 47px 24px;
	}

	.link {
		padding-right: calc(57px + 25px);
	}

	.link::after {
		width: 57px;
		height: 43px;
	}

	.button-play {
		padding: 25px;
	}

	.button-play::before {
		left: 51%;
		border-width: 6.5px 0 5.5px 10px;
	}
}

/******************************/
/********** BAR INFO **********/
/******************************/
.bar-info{
    width: 100%;
    position: relative;
    background-image: linear-gradient(to right, #fff465, #6d8027);
    padding: 7px 0 7px;
	transition: var(--transition);
	min-height: 38px;
}

.bar-info > div{
    margin: auto;
	padding: 0 15px;
}

.bar-info p{
    font-size: 11px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    margin: 0;
}

@media(min-width:768px){
	.bar-info p{
		font-size: 14px;
		line-height: 1;
	}
}

@media(min-width:1200px){
	.bar-info p{
		line-height: 1.71;
	}
}

/****************************/
/********** HEADER **********/
/****************************/
.bar-info + header:not(.fixed){
    top: 0;
}
.bar-info + header.open,
header.open{
    top: 0 !important;
}

header {
	position: absolute;
	top: 0;left: 0;
	right: 0;
    width: 100%;
	font-size: 0;
	z-index: 10;
    padding: 7px 0px;
    display: flex;
	justify-content: space-between;
	background-color: white;
	align-items: center;
	box-shadow: 3.5px 6.1px 18px 0 rgba(0, 0, 0, 0.04);
	z-index: 999;
	font-family: var(--font-family-1);
}

.bar-info + header{
	position: absolute;
}

.bar-info + header.fixed,
header.fixed{
	position: fixed;
	top: 0 !important;
}

header .logo{
    position:relative;
    width: 114px;
    height: auto;
	margin-left: 22px;
	z-index: 10;
}

header .logo img{
    width: 114px;
    height: 46px;
}

header .logo + div{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 32px;
	justify-content: end;
}

header .upper {
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition);
    justify-content: flex-end;
	gap: 30px;
	z-index: 1;
}

header .search {
    padding: 0;
    margin-right: 0;
    cursor: pointer;
    display: flex;
    position: relative;
    transition: var(--transition);
    opacity: 1;
	width: 22px;
	height: 22px;
}

.search.on {
    width: 220px;
}

header .search form {
    margin: 0;
    position: relative;
    transition: var(--transition);
    width: 100%;
}

header .search .search-icon::before,
header .search-mobile button {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: none;
    -webkit-mask-image: url(/assets/img/svg/search.svg);
	mask-image: url(/assets/img/svg/search.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--blackgrey);
	transition: var(--transition);
}

header .search input,
header .search-mobile input{
	background: none;
	border: none;
	pointer-events: none;
	width: 0;
	font-weight: 300;
	color: var(--blackgrey);
	opacity: 0;
	height: 22px;
	font-size: 14px;
	border-radius: 0;
	padding: 0;
}

header .search-mobile input{
	pointer-events: all;
	opacity: 1;
	width: 100%;
	border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 10px 20px;
    height: auto;
}

header .search.on input{
	pointer-events: all;
	opacity: 1;
	width: 200px;
}

header .search form::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -6px;
    right: 0;
    transition: var(--transition);
    background-color:var(--primary);
    opacity: 0;
}

header .search.on form::before{
	opacity: 1;
}

header .bag{
	position: relative;
	width: 17px;
	height: 22px;
	display: flex;
}

header .bag::before {
    content: '';
    width: 17px;
	height: 22px;
    background: none;
    -webkit-mask-image: url(/assets/img/svg/bag.svg);
	mask-image: url(/assets/img/svg/bag.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--blackgrey);
	display: flex;
    align-items: center;
    justify-content: center;
	transition: var(--transition);
}

header .search:hover::before,
header .bag:hover::before{
	background-color: var(--green);
}

header .bag span{
	position: absolute;
	width: 14px;
	height: 14px;
	top: -7px;
	right: -14px;
	pointer-events: none;
	color: white;
	font-size: 10px;
  	font-weight: normal;
	display: flex;
	align-items: center;
	justify-content: center;

}

header .bag span > i{
	position: relative;
	color: white;
	font-size: 10px;
  	font-weight: normal;
	font-style: normal;
}

header .bag span::before{
	content: "";
	position: absolute;
	background-color: #dcd856;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

header .upper .language{
	transition: var(--transition);
	display:flex;
	height: 100%;
	align-items: center;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	font-family: var(--font-family-1);
	color: var(--blackgrey);
	font-size: 13px;
}

header .upper .language span{
	font-size: 13px;
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: normal;
	text-align: right;
	color: var(--blackgrey);
	display: block;
	position: relative;
	padding-right: 19px;
	transition: var(--transition-color);
	font-family: var(--font-family-1);
}

header .upper .language span::after{
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 11px;
  	height: 6px;
	mask-image: url(/assets/img/svg/arrow-lang.svg);
	-webkit-mask-image: url(/assets/img/svg/arrow-lang.svg);
	-webkit-mask-position: center;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	background-color: var(--blackgrey);
	-webkit-mask-size: cover;
	mask-size: cover;
	transition: var(--transition);
}

header .upper .language span:hover{
	color: var(--primary)
}


header .upper .language span:hover::after{
	background-color: var(--primary);
}

header .upper .language ul{
	list-style: none;
	padding: 0;
	background-color: var(--white);
	position: absolute;
	
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
header .upper .language:hover > ul{
	opacity: 1;
	pointer-events: all;
}

header .upper .language ul{
	top: 100%;
	left: -25px;
}

header .upper .language ul li{
	padding: 5px 30px 5px 25px;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 2;
}
header .upper .language ul li + li{
	padding-top: 0;
	padding-bottom: 17px;
}

header .upper .language ul li a{
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	color: var(--blackgrey);
	transition: var(--transition-color);
	font-family: var(--font-family-1);
}

header .upper .language ul li:hover a{
	color: var(--primary);
}

@media(min-width: 769px) {

  header .upper .language_container ul{
    top: 20px;
  }
}
@media(max-width: 375px) {
header .upper{
	gap: 20px;
}

}

header .upper .menu-toggle {
	position: relative;
	margin-left: auto;
	width: 31px;
	height: 31px;
	display: block;
}

header .upper .menu-toggle span {
	position: absolute;
	top: 0;bottom: 0;
	left: auto;right: 0;
	margin: auto;
	width: 31px;
	height: 2px;
	background-color: var(--blackgrey);
	border-radius: 2px;
	transition: inherit;
}
header .upper .menu-toggle span:first-child {
	transform: translateY(-5px);
}
header .upper .menu-toggle span:last-child {
	transform: translateY(8px);
}

header:not(.open) .upper .menu-toggle:hover span:last-child{
	width: 21px;
}

header.open .upper .menu-toggle span {
	width: 31px;
}
header.open .upper .menu-toggle span:first-child {
	transform: rotate(45deg);
}
header.open .upper .menu-toggle span:nth-child(2) {
	opacity: 1;
}
header.open .upper .menu-toggle span:last-child {
	transform: rotate(-45deg);
}
header.open {
    z-index: 20;
    transition: none;
}

header.open:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: white;
	width: 100%;
	height: 100%;
}


@media (min-width: 992px){

	header::before {
		content: "";
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: var(--black);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
	}

	header.open::before {
		opacity: .75;
		pointer-events: auto;
	}
}

@media(min-width:1260px){
	header:not(.mobile_g){
		padding-bottom: 0;
	}
	header .right-wrapper:not(.mobile) .upper .menu-toggle {
		margin-left: 30px;
		display: none;
	}

	header:not(.open) .right-wrapper:not(.mobile) .upper .menu-toggle:hover span:last-child,
	header:not(.open) .right-wrapper:not(.mobile) .upper .menu-toggle:focus span:last-child {
		transform: translate(0px, 8px);
	}
}

header > div:last-of-type{
	margin-right: 22px;
}
header .menu > ul{
	list-style: none;
	display: flex;
	justify-content: right;
	font-size: 15px;
	font-weight: normal;
	letter-spacing: normal;
	color: var(--blackgrey);
	gap: 25px;
	margin-bottom: 0;
	flex-direction: column;
	padding: 0;
}
header .menu ul{
	list-style: none;
}

header .menu > ul li > h3,
header .menu > ul li > .h3{
	font-size: 17px;
	font-weight: normal;
	letter-spacing: normal;
	color: var(--blackgrey);
	margin: 0;
	text-align: center;
	font-family: var(--font-family-1);
}

header .menu > ul li > h3 a,
header .menu > ul li > .h3 a{
	font-family: var(--font-family-1);
	font-size: 17px;
	font-weight: normal;
	letter-spacing: normal;
	color: var(--blackgrey);
	transition: var(--transition-color);
}

header .menu ul li {
    position: relative;
    margin: 0;
}

header .menu ul li.active h3 a,
header .menu ul li:hover h3 a,
header .menu ul li.active .h3 a,
header .menu ul li:hover .h3 a{
	color: var(--primary);
	font-family: var(--font-family-1);
}

.search-mobile{
	display: none;
}

header.open .right-wrapper.mobile .search-mobile > form{
	position: relative;
}
header.open .right-wrapper.mobile .search-mobile > form button{
	top: 10px;
	right: 22px;
}

header .right-wrapper.mobile .menu {
	overflow-y: auto;
	background: white;
	top: 0px;
	left: 100%;
	height: 100vh;
	width: 100vw;
	pointer-events: none;
	opacity: 0;
	transition: var(--transition);
	position: fixed;
	padding: 30px 22px 50px;
}
header.open .right-wrapper.mobile .menu {
	opacity: 1;
	pointer-events: all;
	left: 0;
}

header .right-wrapper.mobile .menu > ul{
	margin-top: 170px;
	padding: 0;
}

header .right-wrapper.mobile .upper .search {
	display: none;
}

header.open .right-wrapper.mobile .search-mobile{
	display: block;
	position: absolute;
	top: 135px;
	width: 40%;
	left: 0;
	z-index: 99;
	padding: 0 30px;
}

@media(max-width:1259px){
	header .menu {
		overflow-y: auto;
		background: white;
		top: 0px;
		left: 100%;
		height: 100vh;
		width: 100vw;
		pointer-events: none;
		opacity: 0;
		transition: var(--transition);
		position: fixed;
		padding: 30px 30px 50px;
	}
	header.open .menu {
		opacity: 1;
		pointer-events: all;
		left: 0;
	}

	header .menu > ul{
		margin-top: 170px;
		padding: 0;
	}

	header .upper .search {
		display: none;
	}

	header.open .right-wrapper.mobile .search-mobile{
		display: block;
		position: absolute;
		top: 135px;
		width: 40%;
		left: 0;
		z-index: 99;
		padding: 0 30px;
	}

}


@media(max-width:992px){
	header .menu {
		overflow-y: auto;
		background: white;
		top: 70px;
		left: 100%;
		height: calc(100vh - 70px);
		width: 100vw;
		pointer-events: none;
		opacity: 0;
		transition: var(--transition);
		position: fixed;
		padding: 30px 30px 50px;
	}
	header.open .menu {
		opacity: 1;
		pointer-events: all;
		left: 0;
	}

	header .menu > ul{
		margin-top: 100px;
		padding: 0;
	}

	header .upper .search {
		display: none;
	}

	header.open .search-mobile{
		display: block;
		position: absolute;
		top: 50px;
		width: 40%;
		left: 0;
		z-index: 99;
		padding: 0 30px;
	}

}

@media(min-width:768px){
	header{
		padding: 21px 0px 24px;
	}
	

	header.open .menu > ul li > h3,
	header.open .menu > ul li > .h3{
		font-size: 17px;
	}
	header.open .logo img{
		width: 173px;
		height: 71px;
	}
	header .logo{
		width: 173px;
		height: 71px;
		margin-left: 30px;
	}
	header .logo img{
		width: 173px;
		height: 71px;
	}
	header > div:last-of-type{
		margin-right: 22px;
	}
}

@media(min-width:1260px){
	header .right-wrapper:not(.mobile) .menu{
		display: block;
	}

	header .right-wrapper:not(.mobile) .menu > ul{
		flex-direction: row;
	}

	header .right-wrapper:not(.mobile) .menu > ul li > h3,
	header .right-wrapper:not(.mobile) .menu > ul li > .h3,
	header .right-wrapper:not(.mobile) .menu > ul li > h3 a,
	header .right-wrapper:not(.mobile) .menu > ul li > .h3 a{
		font-size: 15px;
	}

}


@media(max-width:650px){
	header.open .right-wrapper.mobile .search-mobile{
		position: relative;
		width: 100%;
		top: 55px;
		padding: 0 0 40px;
	}

	header .right-wrapper.mobile .menu > ul{
		margin-top: 70px;
	}
}


.content .banner ul li a,
header .menu > ul li.sub ul li a,
.template.has-sidebar .sidebar > div .nav > li > a{
	transition: var(--transition-color);
}
header .menu > ul li.sub ul {
	transition: var(--transition);
	flex-direction: column;
	margin: 0;
	padding: 0;
}
header .menu > ul li.sub li.sub > ul {
	margin-left: 20px;

}

header .menu > ul li.sub li.sub.open > ul {
	margin-top: 15px;
}

header .menu > ul li.sub ul li {
    font-size: 14px;
	font-weight: 400;
    line-height: 1.2;
    color:var(--black);
	text-transform: none;
	padding: 8px 0;
	transition: var(--transition);
	border: 0;
	position: relative;
}
header .menu > ul li.sub.open h3 a,
header .menu > ul li.sub.open .h3 a,
header .menu > ul li.sub ul li:hover,
header .menu > ul li.sub ul li:focus,
header .menu > ul li.sub ul li.active {
	color: var(--primary);
}
header .menu > ul li.sub ul li + li:last-child {
	margin-bottom: 15px;
}


header .menu ul li span {
	position: absolute;
	top: 5px;
	right: 0;
	width: 15px;
	height: 15px;
	padding: 5px;
	mask-image: url(/assets/img/svg/arrow_drop.svg);
	-webkit-mask-image: url(/assets/img/svg/arrow_drop.svg);
	mask-position: center;
	-webkit-mask-position: center;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 16px;
	-webkit-mask-size: 16px;
	background-color: var(--primary);
	transition: var(--transition);
	transform: rotate(-90deg);
}
header .menu > ul > li > span {
	top: 19px;
}
header .menu ul li.sub ul li span {
	width: 13px;
	height: 15px;
	mask-size: 14px;
	-webkit-mask-size: 14px;
}

header.open .menu > ul{
	gap: 0;
}

@media(max-width:767px){
	header .menu > ul > li > span {
		top: 21px;
	}

	header .menu > ul ul > li > span{
		top: 1px;
	}
}

header .right-wrapper.mobile .menu > ul li {
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
}

header .right-wrapper.mobile .menu > ul li + li {
	border-top: 0;
	border-bottom: 1px solid #e3e3e3;
}

header .right-wrapper.mobile .menu > ul li.sub ul {
	max-height: 0;
	overflow: hidden;
}

header .right-wrapper.mobile .menu > ul li.sub ul li{
	border: none;
}
header .right-wrapper.mobile .menu > ul li.sub ul li{
	padding-top: 0;
	margin-top: 8px;
}
header .right-wrapper.mobile .menu > ul li.sub.open > ul {
	max-height: none;
	margin-bottom: 10px;
}

header .right-wrapper.mobile .menu > ul li.sub.open > span {
	transform: rotate(0deg) translateY(2px);
}

header .right-wrapper.mobile .menu > ul li > h3,
header .right-wrapper.mobile .menu > ul li > .h3 {
	padding: 18px 0;
}



@media(min-width: 1260px) {

	header .right-wrapper:not(.mobile) .menu ul {
		flex-direction: initial;
		gap: 25px;
	}

	header .right-wrapper:not(.mobile) .menu > ul > li{
		padding-bottom: 24px;
	}
	header .right-wrapper:not(.mobile) .menu > ul li.sub ul {
		position: absolute;
		opacity: 0;
		pointer-events: none;
		background-color: #ffffff;
		padding: 20px 0;
		gap: 5px;
		margin: 0;
	}
	header .right-wrapper:not(.mobile) .menu > ul > li.sub > ul {
		top: 100%;
		left: -30px;
		min-width: 250px;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	}
	header .right-wrapper:not(.mobile) .menu > ul li.sub li.sub > ul {
		top: -20px;
		left: 100%;
		min-width: 180px;
		margin: 0;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	}
	header .right-wrapper:not(.mobile) .menu > ul li.sub:hover > ul,
	header .right-wrapper:not(.mobile) .menu > ul li.sub:focus > ul {
		opacity: 1;
		pointer-events: auto;
	}

	header .right-wrapper:not(.mobile) .menu > ul li.sub ul li {
		padding: 0px 30px;
	}
	header .right-wrapper:not(.mobile) .menu > ul li.sub ul li:last-child {
		margin: 0;
	}

	header .right-wrapper:not(.mobile) .menu > ul li.sub ul li a {
		display: inline-block;
		padding: 5px 0;
		white-space: nowrap;
		padding-right: 10px;
	}

	header .right-wrapper:not(.mobile) .menu ul li span {
		right: 20px;
	}
	header .right-wrapper:not(.mobile) .menu > ul > li > span {
		display: none;
	}

}


header  .right-wrapper:not(.mobile) .menu > ul{
	gap: 17px;
}
header .right-wrapper.mobile .menu > ul li > h3,
header .right-wrapper.mobile .menu > ul li > .h3{
	font-size: 15px;
	text-align: left;
}


/**********************************************/
/************** BLOG SECTION ***************/
/**********************************************/
.related-section,
.hp-blog {
    position: relative;
    margin: auto;
    max-width: 1400px;
    padding: 0 40px;
}

.hp-blog{
	margin:130px auto
}

.hp-blog .container{
	max-width: 100%;
	width: 100%;
}

.blog-section.article .container-blog > a,
.hp-blog .container > a {
    position: relative;
    margin-bottom: 40px;
    margin-left: auto;
}
.hp-blog .container > a h2{
	font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--black)
}

@media(min-width:768px){
	.hp-blog .container > a h2{
		font-size: 3.75rem;
		line-height: 1;
	}
}
.blog-section.article .container-blog,
.hp-blog .container {
    margin: auto;
}

.blog-section.article .container-blog .content-blog,
.hp-blog .container .content-blog {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.blog-section.article .container-blog .content-blog .blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog,
.hp-blog .container .blog,
.content.blog .template .items .article {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blog-section.article .container-blog .content-blog .blog .img-blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog,
.hp-blog .container .blog .img-blog,
.content.blog .template .article .img-blog {
    padding-top: 69%;
    overflow: hidden;
    position: relative;
    display: block;
	border-radius: 50px;
}

.blog-section.article .container-blog .content-blog .blog img,
.blog-section .blog-container .blog-wrapper .blog-list .blog img,
.hp-blog .container .blog .img-blog img,
.content.blog .template .article .img-blog img {
    transition: var(--transition);
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-section.article .container-blog .content-blog .blog .img-blog:hover a img,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog:hover a img,
.hp-blog .container .blog .img-blog:hover a img,
.content.blog .template .article .img-blog:hover img {
    transform: scale(1.05);
}

.blog-section.article .container-blog .content-blog .blog .mid-content,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content,
.hp-blog .container .blog .mid-content,
.content.blog .template .mid-content {
    display: flex;
    margin-top: 18px;
    gap: 10px;
	justify-content: center;
	transition: var(--transition-color);
}


.blog-section.article .blog .date-blog,
.blog-section.article .blog .tag-blog,
.blog-section.article .blog-article-desc > div:last-of-type,
.blog-section.article .blog-article-desc > div:first-of-type,
.blog-section .blog-container .blog-wrapper .blog-list .blog .date-blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog .tag-blog,
.blog-section .slider-blog-content .date-blog,
.blog-section .slider-blog-content .tag-blog,
.hp-blog .container .blog .mid-content .tag-blog,
.hp-blog .container .blog .mid-content .date-blog,
.content.blog .mid-content .tag-blog,
.content.blog .mid-content .date-blog {
    font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 2px;
    text-transform: uppercase;
	color: #b8b7b7;
    transition: var(--transition-color);
}

.content.blog .mid-content .tag-blog > a {
	transition: var(--transition-color);
}


.blog-section.article .container-blog .content-blog .blog .mid-content .tag-blog,
.blog-section.article .blog-page-title .blog-article-desc > div:last-of-type,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content .tag-blog,
.hp-blog .container .blog .mid-content .tag-blog,
.content.blog .mid-content .tag-blog {
    color: var(--primary);
	border-bottom: 1px dotted transparent;
}

.blog-section.article .container-blog .content-blog .blog .mid-content .tag-blog:hover,
.blog-section.article .blog-page-title .blog-article-desc > div:last-of-type:hover,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content .tag-blog:hover,
.hp-blog .container .blog .mid-content .tag-blog:hover,
.content.blog .mid-content .tag-blog:hover {
    border-bottom: 1px dotted currentColor;
}

.blog-section.article .container-blog .content-blog .blog > p,
.blog-section .blog-container .blog-wrapper .blog-list .blog > p,
.hp-blog .container .blog > p,
.content.blog .article > p {
    font-family: var(--font-family-1);
    font-size: 1.75rem;
    font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.36;
	letter-spacing: normal;
	text-align: left;
	color: var(--blackgrey);
    margin: 10px 0 auto 0;
    padding: 0;
	text-align: center;
}

.content.blog .template .article > p a{
	font-family: var(--font-family-1);
    font-size: 1.75rem;
    font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.36;
	letter-spacing: normal;
	text-align: left;
	color: var(--blackgrey);
	text-align: center;
	border: none;
	transition: var(--transition-color);
}

.hp-blog .container .blog > p,
.content.blog .article > p {
    font-weight: 300;
}

.blog-section.article .container-blog .content-blog .blog > p a:hover,
.blog-section .blog-container .blog-wrapper .blog-list .blog > p a:hover,
.hp-blog .container .blog > p a:hover,
.content.blog .article > p a:hover{
	color: var(--primary);
}

.blog-section.article .container-blog .content-blog .blog .img-blog a,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog a,
.hp-blog .container .blog .img-blog a,
.content.blog .template .article .img-blog a{
	isolation: isolate;
 	transform: translateZ(0);
}

.content.blog .banner ul li a:hover{
	color: white;
	opacity: .4;
}


@media(max-width: 767px) {

    .hp-blog {
        padding: 0;
		margin: 50px auto 40px;
    }

    .hp-blog .container .content-blog {
        gap: 30px;
        flex-direction: column;
    }

    .hp-blog .container > a {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hp-blog .container > a > span {
        width: 17px;
        height: 14px;
        margin-left: 16px;
        margin-block: -2px;
    }

    .hp-blog .container .blog .mid-content {
        margin-top: 20px;
    }

    .hp-blog .container .blog .mid-content .tag-blog,
    .hp-blog .container .blog .mid-content .date-blog {
        font-size: 0.788rem;
        letter-spacing: 0.55px;
    }

    .hp-blog .container .blog>p {
        font-size: 1.6rem;
        line-height: 1.42;
        margin: 7px 0 0 0;
        padding: 0;
    }

	.blog-section.article .container-blog .content-blog .blog .img-blog,
	.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog,
	.hp-blog .container .blog .img-blog,
	.content.blog .template .article .img-blog {

		border-radius: 35px;
	}

}


/**********************************************/
/******************* FOOTER *******************/
/**********************************************/

footer {
	/* background: rgba(209, 207, 81,.12); */
	background: url(/assets/img/svg/bg-footer.svg) no-repeat;
	background-position: top;
	background-size: 100%;
	padding: 195px 0 0;
	font-size: 0.75rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 3.67;
	letter-spacing: normal;
	text-align: left;
	margin-top: 100px;
	z-index: 9;
	position: relative;
}

footer .sheets{
	max-width: 1224px;
	position: absolute;
    display: block;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
	top: 0;
}
footer .sheets:after{
	content: "";
	background: url(/assets/img/svg/sheets.svg) no-repeat;
	background-size: contain;
	width: 237px;
  	height: 230px;
	position: absolute;
	top: 0px;
	right: 0;
	-webkit-animation: hortela 1s infinite  alternate;
    animation: hortela 1s infinite  alternate;

}

@-webkit-keyframes hortela {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

@keyframes hortela {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
footer .subscrible{
	max-width: 1200px;
	margin: auto;
	margin-bottom: 120px;
	padding: 0 22px;
}
footer .subscrible a,
footer .subscrible a:hover{
	font-size: 3.75rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-align: left;
	color: var(--darkgreen);
	opacity: 1;
	transition: var(--transition-color);
}



footer a {
	color: var(--darkgreen);
	border-bottom: 1px dotted transparent;
	transition: var(--transition-color);
}

footer .contacts-footer a:hover,
footer .about-footer a:hover {
	border-bottom: 1px dotted currentColor;
}

footer .footer-container {
	display: flex;
	max-width: 1200px;
	margin: auto;
	padding: 0 22px 60px;
	flex: 1;
}

footer .footer-container .about-footer .links {
	display: flex;
	flex-direction: column;
	padding-top: 25px;
}

footer .footer-container .about-footer .certification {
	line-height: 2;
}

footer .footer-container .about-footer,
footer .footer-container .contacts-footer {
	font-size: 1rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	color: var(--darkgreen);
	display: flex;
	flex-direction: column;
}

footer .footer-container p{
	margin-bottom: 1.6rem;
}
footer .footer-container p strong{
	font-weight: bold;
}

footer .footer-container p:last-of-type{
	margin-bottom: 0;
}

footer .footer-container .contacts-footer .phone-footer {
	padding-top: 25px;
}

footer .footer-container .social-box {
	display: flex;
	gap: 30px;
	align-items: center;
	height: 30px;
}

footer .socials-footer{
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
}

footer .footer-container .social-box a {
	position: relative;
	color: var(--darkgrey);
	font-size: 26px;
	transition: var(--transition);
	width: 35px;
	text-align: center;
	line-height: normal;
}

footer .footer-container .social-box a:hover{
	color: var(--primary);
	opacity: 1;
}


footer .under-footer2{
	width: 100%;
	background-color: #889633;
	padding: 0 22px;
}
footer .under-footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
	padding: 55px 0;
}

footer .under-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	color: white;
}

footer .under-footer ul li:not(:last-of-type):after{
	content: "|";
	display: inline-block;
	margin: 0 6px;
}
footer .under-footer,
footer .under-footer ul li:not(:last-of-type):after,
footer .under-footer a{
	font-size: .875rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	color: white;
}

footer .under-footer a:hover{
	opacity: .6;
}

@media(max-width: 992px) {

	footer {
		padding: 75px 0px 0;
		margin-top: 75px;

	}

	footer .subscrible a,
	footer .subscrible a:hover{
		font-size: 2.75rem;
	}

	footer .subscrible{
		margin-bottom: 40px;
		padding: 0 25px;
	}
	footer .sheets:after{
		width: 150px;
		height: 150px;
		top: -20px;
		right: 22px;
	}

	

	footer .footer-container {
		flex-direction: column;
		align-items: center;
		padding-bottom: 0px;
	}

	footer .footer-container .about-footer .links {
		justify-content: center;
		display: flex;
		flex-direction: column;
		line-height: 2;
		align-items: center;
		text-align: center;
		padding-bottom: 60px;
	}

	footer .footer-container .contacts-footer {
		line-height: 1.43;
		text-align: center;
		align-items: center;
		gap: 0px;
	}


	footer .footer-container .about-footer .certification {
		text-align: center;
	}

	footer .footer-container .about-footer {
		align-items: center;
		margin-top: 0px;
		line-height: 1.43;
		text-align: center;
		margin-bottom: 20px;
	}

	footer .footer-container .social-box a {
		font-size: 21px;
		width: 31px;
	}

	footer .under-footer {
		padding-top: 44px;
		flex-direction: column;
		align-items: center;
		gap: 27px;
	}

	footer .under-footer ul{
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	footer .under-footer ul li:not(:last-of-type):after{
		content: none;
	}

	footer .under-footer ul li:first-of-type{
		margin-top: 10px;
		order: 1;
	}

	footer .footer-container .contacts-footer,
	footer .footer-container .about-footer,
	footer .under-footer,
	footer .under-footer ul li:not(:last-of-type):after,
	footer .under-footer a {
		font-size: 1.05rem;
	}

}

@media(max-width: 767px) {

	footer .sheets:after{
		width: 100px;
		height: 100px;
		top: -20px;
		right: 22px;
	}

	

}

@media(min-width: 1024px) {
	footer .footer-container .about-footer{
		flex: 1;
		margin-left: 125px;
	}

	footer .footer-container {

		padding: 0 22px 60px;

	}
}

@media(min-width: 1224px) {

	footer .subscrible{
		padding: 0;
	}
	footer .footer-container {

		padding: 0 0px 60px;

	}
}


/*******************************************/
/********** CONTENT PAGE TEMPLATE **********/
/*******************************************/
.content {
	height: 100%;
}


@media(min-width: 768px) {

	.content {
		min-height: calc(100vh - 495px);
	}
	

}

/******************************************/
/********** CONTENT CONTACT SHOP **********/
/******************************************/

.content .template.contact {
	background-color:white;
	padding: 35px 0 0;
	margin: 0;
}

.content .template.contact .form input,
.content .template.has-quote .form input{
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.28px;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
	background-color: rgba(255, 255, 255, 0);
	color: var(--blackgrey);
	border: 1px solid #d1cf51;
}


.content .template.contact .form .input-wrapper label,
.content .template.has-quote .form .input-wrapper label {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.28px;
	color: var(--blackgrey);
	left: 32px;
	top: 0;
	z-index: 1;
}

.content .template.contact .form .input-wrapper.select-wrapper label,
.content .template.has-quote .form .input-wrapper.select-wrapper label  {
	z-index: 3;
}

.content .template.contact .form .input-wrapper input:focus + label,
.content .template.contact .form .input-wrapper input[placeholder] + label,
.content .template.contact .form .input-wrapper textarea:focus + label,
.content .template.contact .form .input-wrapper textarea[placeholder] + label,
.content .template.contact .form .input-wrapper.filled label,
.content .template.has-quote .form .input-wrapper input:focus + label,
.content .template.has-quote .form .input-wrapper input[placeholder] + label,
.content .template.has-quote .form .input-wrapper textarea:focus + label,
.content .template.has-quote .form .input-wrapper textarea[placeholder] + label,
.content .template.has-quote .form .input-wrapper.filled label {
	padding: 5px;
	background-color: #ffffff;
	font-size: 11px;
	color: #767575;
	transform: translateY(0);
	z-index: 1;
}

.content .template.contact .form .input-wrapper .custom-select.isSelected .placeholder,
.content .template.has-quote .form .input-wrapper .custom-select.isSelected .placeholder {
	background-color: rgba(255, 255, 255, 0);
	color: var(--blackgrey) !important;
}

.content .template.has-quote .form .input-wrapper .custom-select.isSelected .placeholder {
	border-color: #fcfcf6 !important;
}

.content .template.contact .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::before,
.content .template.contact .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::after,
.content .template.has-quote .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::before,
.content .template.has-quote .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::after {
	background-color: var(--blackgrey);
}

.content .template.contact .form .custom-select .placeholder,
.content .template.contact .form select.custom-select,
.content .template.has-quote .form .custom-select .placeholder,
.content .template.has-quote .form select.custom-select {
	border: 1px solid #d1cf51;
    border-radius: 30px;
	padding: 19px 0;
	padding-left: 32px;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: var(--blackgrey);
	z-index: 3;
}

.content .template.contact .form .custom-select .placeholder::before,
.content .template.has-quote .form .custom-select .placeholder::before {
	width: 10px;
    height: 10px;
	right: 32px;
}


.content .template.contact .form .custom-select .options-wrapper,
.content .template.has-quote .form .custom-select .options-wrapper {
	border-left: 1px solid #d1cf51;
    border-right: 1px solid #d1cf51;
    border-bottom: 1px solid #d1cf51;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    /* padding-top: 20px; */
	margin-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    /* margin-top: -3px; */
	background-color: #ffffff;
}

.content .template.contact .form .custom-select.open .placeholder,
.content .template.has-quote .form .custom-select.open .placeholder {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content .template.contact .form .custom-select .options-wrapper .options > div,
.content .template.has-quote .form .custom-select .options-wrapper .options > div {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: var(--blackgrey);
	padding-left: 0;
	transition: var(--transition);
}

.content .template.contact .form .custom-select .options-wrapper .options > div:hover,
.content .template.has-quote .form .custom-select .options-wrapper .options > div:hover {
	color: var(--primary);
}

.content .template.contact .form textarea,
.content .template.has-quote .form textarea {
	font-family: var(--font-family-1);
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: var(--blackgrey);
	border: 1px solid #d1cf51;
    border-radius: 30px;
    padding-left: 32px;
}

.content .template.contact .form input.not-filled,
.content .template.contact .form textarea.not-filled,
.content .template.contact .form select.not-filled + .custom-select .placeholder,
.content .template.has-quote .form input.not-filled,
.content .template.has-quote .form textarea.not-filled,
.content .template.has-quote .form select.not-filled + .custom-select .placeholder {
	border: 2px solid var(--warning);
}

.content .template.contact .form select.not-filled + .custom-select.open .placeholder,
.content .template.has-quote .form select.not-filled + .custom-select.open .placeholder {
	border-bottom: 0;
}

.content .template.contact .form select.not-filled + .custom-select .options-wrapper,
.content .template.has-quote .form select.not-filled + .custom-select .options-wrapper {
	border-left: 2px solid var(--warning);
	border-bottom: 2px solid var(--warning);
	border-right: 2px solid var(--warning);
}

.content .template .form .warning {
	padding-left: 25px;
}

.content .template .form .warning::before {
	content: initial;
}

.content .template .form .checkbox-wrapper {
	align-items: center;
}

.content .template .form input[type='checkbox'] + label,
.content .template .form input[type='radio'] + label {
	border: 1px solid #d1cf51;
	width: 24px;
	height: 24px;
}

.content .template.has-sidebar .form input[type='checkbox'] + label,
.content .template.has-sidebar .form input[type='radio'] + label {
	background-color: rgba(255, 255, 255, 0);
}

.content .template .form input[type='checkbox'] + label::before {
	border-right: 2px solid var(--blackgrey);
	border-bottom: 2px solid var(--blackgrey);
}

.content .template.contact .form label a,
.content .template.has-quote .form label a {
	color: var(--primary);

	font-weight: bold;
}

.content .template .form input[type='checkbox'] + label + label,
.content .template .form input[type='radio'] + label + label {
	font-family: var(--font-family-1);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.28px;
	text-align: left;
	color: var(--blackgrey);
}

.content .template.contact .form .button,
.content .template.has-quote .form .button {
	padding: 21px 30px;
}

.content.contact-us .template.contact .form .button {
	padding: 21px 65px;
}

.content .template.contact .form .button::before ,
.content .template.has-quote .form .button::before {
	border-radius: 30px;
}

.content .template.contact .form p.h2,
.content .template.has-quote .form p.h2{
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: normal;
	text-align: center;
	
}

.content .template.contact .form p.h2,
.content .template.has-quote .form p.h2{
	font-size: 2.55rem;
	line-height: 1.3;
}

.content .template.has-quote .template{
	margin: 0;
}
.content .template.has-quote .template .container{
	padding: 0;
}

@media(max-width:767px){
	.content .template.contact .form .row > div + div:not(.lower),
	.content .template.has-quote .form .row > div + div:not(.lower){
		padding: 0;
	}
	.content .template.contact .form .row,
	.content .template.has-quote .form .row {
		margin: -2px;
	}

	.content .template .form input[type='checkbox'] + label + label, .content .template .form input[type='radio'] + label + label{
		font-size: 1rem;
	}
	.content .template.contact .form .button,
	.content .template.has-quote .form .button{
		width: 100%;
	}
}
	


@media (min-width: 768px) {
	.content .template.has-quote {
		padding: 0;
	}

	.content:not(.news) .template.contact{
		padding: 100px 0 0;
	}

	.content .template.contact .form .row,
	.content .template.has-quote .form .row {
		margin: 25px -13px -15px;
	}

	.content .template.contact .form .row > div,
	.content .template.has-quote .form .row > div {
		padding: 15px 13px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(even),
	.content .template.has-quote .form .row > div.col-12.col-md-6:nth-child(even) {
		padding-right: 22.5px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(odd),
	.content .template.has-quote .form .row > div.col-12.col-md-6:nth-child(odd) {
		padding-left: 22.5px;
	}

	.content .template.contact .form p.h2,
	.content .template.has-quote .form p.h2{
		font-size: 2.7rem;
	}

}

.content .template.contact .form .row > div.lower p small{
	font-weight: 100;
	font-size: 13px;
}

@media (min-width: 992px) {


	.content .template.contact .form .row > div,
	.content .template.has-quote .form .row > div {
		padding: 9px 13px;
	}

	.content .template.contact .form .row > div.lower,
	.content .template.has-quote .form .row > div.lower {
		padding-top: 41px;
		padding-bottom: 31px;
	}

	.content .template.contact .form .row > div.lower{
		padding-top: 15px;
		flex-direction: column;
	}

}

/**************************/
/********** FORM **********/
/**************************/


.form {
	position: relative;
}

.content .template .form .row {
    margin: -10px;
}
.content .template .form .row > div {
    padding: 10px;
    font-size: 0;
}

.content .template .form .honey-input,
form .honey-input {
	position: fixed;
	top: -100%;
	left: -100%;
}

.content .template .form label {
	display: block;
	font-size: 16px;
	font-weight: 500;
    color: var(--black);
    line-height: 1;
    margin: 0;
}
.content .template .form .col-4 label {
	width: calc(300% + 40px);
}
.content .template .form label a {
	color: var(--primary);
	border-bottom: 1px solid currentColor;
}
.content .template .form label a:hover,
.content .template .form label a:focus {
	border-bottom: 1px solid transparent;
}

.content .template .form span {
	display: block;
	font-size: 14px;
	color: var(--grey);
	line-height: 1;
}
.content .template .form .lower span {
	font-style: italic;
}

.content .template .form .input-wrapper {
    padding-top: 12px;
    position: relative;
}
.content .template .form .input-wrapper label {
    position: absolute;
    top: 0;
    transform: translateY(31px);
    pointer-events: none;
    transition:  all 0.2s ease-out;
}
.content .template .form .input-wrapper input:focus + label,
.content .template .form .input-wrapper input[placeholder] + label,
.content .template .form .input-wrapper textarea:focus + label,
.content .template .form .input-wrapper textarea[placeholder] + label,
.content .template .form .input-wrapper.filled label {
    transform: translateX(0);
    font-size: 12px;
}

.content .template .form input,
.content .template .form textarea,
.content .template .form select {
	appearance: none;
	-webkit-appearance: none;
	font-family: var(--font-family-2);
	font-size: 16px;
	font-weight: 400;
	color: var(--grey);
	line-height: 1;
	width: 100%;
	padding: 15px 0;
	background-color: transparent;
    border: none;
    border-bottom: 1px solid #d0d1d1;
    resize: none;
}
.content .template .form input.not-filled,
.content .template .form textarea.not-filled {
    border-bottom: 1px solid var(--warning);
}
.content .template .form textarea {
	line-height: 1.5;
}
.content .template .form select {
	line-height: 1.4;
}

.content .template .form .warning {
    font-size: 14px;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 10px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.content .template .form .warning::before {
    content: "!";
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--warning);
    border-radius: 100%;
    font-size: 17px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.content .template .form .checkbox-wrapper {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.content .template .form input[type='checkbox'],
.content .template .form input[type='radio'] {
	display: none;
}
.content .template .form input[type='checkbox'] + label,
.content .template .form input[type='radio'] + label {
	display: inline-block;
	vertical-align: middle;
	height: 23px;
	width: 23px;
	background-color: transparent;
	cursor: pointer;
	position: relative;
	border: 1px solid #d1cf51;
	transition: var(--transition);
	border-radius: 5px;
}
.content .template .form input[type='radio'] + label {
	border-radius: 100%;
}
.content .template .form input[type='checkbox'].not-filled + label,
.content .template .form input[type='radio'].not-filled + label {
	border: 1px solid var(--warning);
}
.content .template .form input[type='checkbox'] + label::before,
.content .template .form input[type='radio'] + label::before {
	content: "";
	position: absolute;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}
.content .template .form input[type='checkbox'] + label::before {
	top: -2px;bottom: 0;
	left: 0;right: 0;
	width: 5px;
	height: 10px;
	border-right: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	transform: rotate(45deg);
}
.content .template .form input[type='radio'] + label::before {
	top: 0;bottom: 0;
	left: 0;right: 0;
	width: 7px;
	height: 7px;
	background-color: var(--black);
	border-radius: 100%;
}
.content .template .form input[type='checkbox']:checked + label::before,
.content .template .form input[type='radio']:checked + label::before {
	opacity: 1;
}

.content .template .form input[type='checkbox']:checked + label::after{
	background: none;
	border-right: none;
    border-bottom: none;
}

.content .template .form input[type='checkbox'] + label + label,
.content .template .form input[type='radio'] + label + label {
	display: inline-block;
	padding-left: 10px;
	color: var(--grey);
    font-weight: 300;
	line-height: 1.25;
	flex: 1;
	margin-top: 2px;
	cursor: pointer;
	max-width: inherit;
}

.content .template .form .lower {
	display: flex;
	flex-wrap: wrap;
}
.content .template .form .lower span {
	min-width: 100%;
	align-self: flex-end;
	font-weight: 500;
}


@media(min-width: 768px) {

    .content .template .form .row {
        margin: -15px -10px;
    }
    .content .template .form .row > div {
        padding: 15px 10px;
	}
}

/*******************************/
/********** Glossary **********/
/*****************************/

.template.glossary .description .container{
	padding: 0;
}

.listing .accordion .description .template-module {
    margin: 25px 0 40px;
}

.listing .accordion .description .template-module:first-of-type{
	margin-top: 0;
}

.content .template.glossary .select-wrapper {
	max-width: 303px;
	margin: 0 auto 75px;
}

.listing .filter > div::before, .listing .filter .line {
	display: none;
}

.content .template.glossary .custom-select .placeholder,
.content .template.glossary select.custom-select {
	border: 1px solid #e8e7ae;
	border-radius: 30px;
	padding: 19px 0;
	padding-left: 32px;
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
	cursor: pointer;
	z-index: 3;
}

.content .template.glossary .custom-select.open .placeholder {
	border-bottom: 1px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content .template.glossary .custom-select.isSelected .placeholder {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: #ffffff !important;
    pointer-events: none;
	white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 50px;
}


.content .template.glossary .custom-select.has-reset .placeholder > div.reset {
    width: 18px;
    height: 18px;
    right: 30px;
    top: 0;
    overflow: visible;
}

.content .template.glossary .custom-select .options-wrapper {
	border-left: 1px solid #e8e7ae;
    border-right: 1px solid #e8e7ae;
    border-bottom: 1px solid #e8e7ae;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
}

.content .template.glossary .custom-select .options-wrapper .options > div {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
	transition: var(--transition);
	padding-left: 0;
}

.content .template.glossary .custom-select .options-wrapper .options > div:hover {
	color: var(--primary);
}

.listing .filter.glossary-filter > div {
	font-family: var(--font-family-1);
	font-size: 17.5px !important;
	font-weight: bold !important;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.51;
	letter-spacing: normal;
	text-align: center;
	color: var(--primary);
}

.listing .filter.glossary-filter > div.active,
.listing .filter.glossary-filter > div:hover {
	color: var(--blackgrey);
}

.listing .filter.glossary-filter > div.disabled {
	color: #e7e7e7;
}

.content .template.glossary .custom-select.has-reset .placeholder > div.reset,
.content.blog .template .custom-select.has-reset .placeholder > div.reset,
.content .template .listing.listing-card .header .custom-select .placeholder > div.reset {
    width: 18px;
    height: 18px;
    right: 30px;
    top: 0;
    overflow: visible;
}

.content .template.glossary .custom-select.has-reset .placeholder > div.reset::before,
.content .template.glossary .custom-select.has-reset .placeholder > div.reset::after,
.content .template .listing.listing-card .header .custom-select .placeholder > div.reset::before,
.content .template .listing.listing-card .header .custom-select .placeholder > div.reset::after,
.content.blog .custom-select.has-reset .placeholder > div.reset::before,
.content.blog .custom-select.has-reset .placeholder > div.reset::after {
    width: 9px;
    bottom: auto;
    height: 2px;
    transition: all 0.2s ease-in-out;
    background-color: #252420;
}

.content .template.glossary .custom-select.has-reset .placeholder > div.reset::before,
.content .template .listing.listing-card .header .custom-select .placeholder > div.reset::before,
.content.blog .custom-select.has-reset .placeholder > div.reset::before {
    border-radius: 1px;
    transform-origin: 50%;
    left: 4px;
    transform: translateX(-25%) rotate(45deg) scaleX(0.9);
    top: 9px;
}

.content .template.glossary .custom-select.has-reset .placeholder > div.reset::after,
.content .template .listing.listing-card .header .custom-select .placeholder > div.reset::after,
.content.blog .custom-select.has-reset .placeholder > div.reset::after {
    border-radius: 1px;
    transform-origin: 50%;
    transform: translateX(25%) rotate(-45deg) scaleX(0.9);
    top: 9px;
    left: 5px;
}

.content .template.glossary .custom-select.has-reset.isSelected .placeholder > div.reset::before,
.content.blog .custom-select.has-reset.isSelected .placeholder > div.reset::before {
    transform: translateX(5px) rotate(-45deg) scaleX(2);
    background-color: #ffffff;
    top: 8px;
    left: -2px;
}

.content .template.glossary .custom-select.has-reset.isSelected .placeholder > div.reset::after,
.content.blog .custom-select.has-reset.isSelected .placeholder > div.reset::after {
    transform: translateX(3px) rotate(45deg) scaleX(2);
    background-color: #ffffff;
    left: 0px;
    top: 8px;
}

/*****************************************************/
/********** ARTICLE LISTING PAGE W/ SIDEBAR **********/
/*****************************************************/

.content .template.has-sidebar.has-sidebar-right {
    padding: 40px 0 0;
}
.content .template.has-sidebar.has-sidebar-left {
    padding: 0 0 40px;
}

.content .template.has-sidebar .container {
	display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content .template.has-sidebar .container > div:not(.sidebar) {
	flex: 1;
}
.content .template.has-sidebar.has-sidebar-left .container > div:not(.sidebar) {
    padding-top: 40px;
}


@media(min-width: 768px) {
    .content .template.has-sidebar.has-sidebar-right,
    .content .template.has-sidebar.has-sidebar-left {
        padding: 20px 0;
    }

    .content .template.has-sidebar .container {
		flex-direction: initial;
	}
	.content .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
		padding-right: 60px;
	}
	.content .template.has-sidebar.has-sidebar-left .container > div:not(.sidebar) {
        padding-top: 0;
		padding-left: 60px;
	}
}

@media(min-width: 992px) {
	.content .template.has-sidebar.has-sidebar-right,
    .content .template.has-sidebar.has-sidebar-left {
        padding: 0;
    }

    .content .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
        padding-right: 80px;
    }
    .content .template.has-sidebar.has-sidebar-left .container > div:not(.sidebar) {
        padding-left: 80px;
    }
}

/*****************************/
/********** SIDEBAR **********/
/*****************************/

@media (min-width: 1200px){
	.content.blog .template .container {
		max-width: 1064px;
	}
}

.content .template.has-sidebar .sidebar {
    margin: 0 -20px;
    width: calc(100% + 40px);
    padding: 40px 20px;
}
.content.blog .template.has-sidebar .sidebar {
    margin-top: 40px;
}

/********** BLOG LISTING SIDEBAR **********/


.content.blog .template .sidebar .input-wrapper{
    margin-bottom: 20px;
}

.content.blog .template .form .input-wrapper{
	padding: 0;
}

.content.blog .template .sidebar .form input {
	font-size: 14px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	color: var(--blackgrey);
	padding: 21px 30px;
	padding-right: 53px;
	border: 1px solid #e8e7ae;
	border-radius: 38px;
}


.content.blog .template .sidebar .form label {
	font-size: 0;
	width: 0;
	height: 0;
}

.content.blog .template .sidebar .form [submit] {
	position: absolute;
	width: 70px;
	height: 61px;
	top: 0;right: 0;
}
.content.blog .template .sidebar .form [submit]::before {
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	background-image: url(/assets/img/svg/lupe.svg)
}

.content.blog .template .sidebar .h4 {
	color: var(--black);
}

.content.blog .template .sidebar ul {
    padding: 0;
    margin: 1em 0 2em;
    display: flex;
    flex-wrap: wrap;
}
.content.blog .template .sidebar ul:last-child {
	margin-bottom: 0;
}
.content.blog .template .sidebar ul li {
    flex-basis: 50%;
	max-width: 50%;
	font-size: .875rem;
	padding: 3px 0;
}
.content.blog .template .sidebar ul li::before {
	content: normal;
}

.content.blog .template .sidebar ul li a {
	border-bottom: 1px solid transparent;
}
.content.blog .template .sidebar ul li a:hover, .content.blog .template .sidebar ul li a:focus {
	border-bottom: 1px solid currentColor;
}

.content.blog .template .custom-select .placeholder,
.content.blog .template select.custom-select {
    border: 1px solid #e8e7ae;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: var(--blackgrey);
    cursor: pointer;
    z-index: 3;
}



.content.blog .template .custom-select .options-wrapper {
    border-left: 1px solid #e8e7ae;
    border-right: 1px solid #e8e7ae;
    border-bottom: 1px solid #e8e7ae;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
}

.content.blog .template .custom-select .options-wrapper .options > div{
	font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
    transition: var(--transition);
    padding-left: 0;
}

.content.blog .template .custom-select.open .placeholder {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.content.blog .template .custom-select.isSelected .placeholder{
	border: 1px solid var(--primary);
	background: var(--primary);
	color: white;
	pointer-events: none;
}



@media(min-width: 768px) {
	.content .template.has-sidebar .sidebar {
        margin: 0;
        width: 247px;
	    padding: 0 0 45px;
	}

	.content.blog .template .sidebar ul {
        margin: 0;
        margin-bottom: 3em;
        display: block;
	}
	.content.blog .template .sidebar ul li {
		max-width: none;
	}

	.content.blog .template.has-sidebar .sidebar{
		width: 303px;
	}

	.content .template.has-sidebar-right .listing .article {
		padding: 35px 0 46px;
	}
}

@media(max-width:767px){
	.content.blog .template.has-sidebar .container > div:not(.sidebar){
		order: 2;
	}
	.content.blog .template.has-sidebar .sidebar{
		margin-top: 0;
		padding-top: 0;
	}
}


/***************************************/
/********** BLOG CONTENT PAGE **********/
/***************************************/

.content.article .banner h1 + div{
	font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 2px;
	text-align: left;
	color: #b8b7b7;
	text-align: center;
	text-transform: uppercase;
	display: block;
}

.content.article .banner h1 + div a{
	color: var(--primary);
	margin-left: 20px;
	border-bottom:1px dotted transparent
}

.content.article .banner h1 + div a:hover{
	border-bottom:1px dotted currentColor
}

.content.article .banner h1{
	font-size: 33px;
}

.content.article .template-module:first-child img{
	border-radius: 50px;
}

/********** LOWER DETAILS SECTION (BLOG LISTING item inherits from here) **********/

.content.article .listing + .article-nav{
	margin-top: 100px;
}

.content .article-nav {
	background: var(--primary);
    margin-top: 20px;
    padding: 45px 0;
}

.content .article-nav .row {
    margin: -10px;
}
.content .article-nav .row > div {
    padding: 10px
}
.content .article-nav .row > div:nth-child(2) {
    text-align: center;
}
.content .article-nav .row > div:last-child {
	text-align: right;
}
.content .article-nav .row > div a {
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 0.41;
	letter-spacing: normal;
	color: white;
}
.content .article-nav .row > div a:hover,
.content .article-nav .row > div a:focus {
	opacity: .5;
}
.content .article-nav .row > div.disabled a {
	opacity: .25;
	pointer-events: none;
}

.content .article-nav .row > div.prev a,
.content .article-nav .row > div.next a {
	font-size: 0;
	padding-left: 40px;
	position: relative;
}
.content .article-nav .row > div.prev a::before,
.content .article-nav .row > div.next a::before {
	content: "";
	position: absolute;
	top: -9px;bottom: 0;
    margin: auto;
	-webkit-mask-image: url(/assets/img/svg/arrow.svg);
	mask-image: url(/assets/img/svg/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: white;
	height: 28px;
    width: 37px;
}

.content .article-nav .row > div.prev a {
	padding-left: 30px;
}
.content .article-nav .row > div.prev a::before {
	left: 0;
	transform: rotate(180deg);
}

.content .article-nav .row > div.next a {
	padding-right: 30px;
	padding-left: 0;
}
.content .article-nav .row > div.next a::before {
	right: 0;
}

.related .container > p {
    font-size: 30px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
    margin-bottom: 35px;
}


@media(min-width: 992px) {

	.content.article .banner h1{
		font-size: 50px;
	}

    .content .article-nav .row > div.prev a{
		padding-left: 53px;
	}
	.content .article-nav .row > div.next a {
		padding-right: 53px;
	}

	.content .article-nav .row > div.prev a::before, .content .article-nav .row > div.next a::before {
		width: 34px;
		height: 26px;
	}

	.related.hp-blog{
		margin: 100px auto;
	}

	.related .container > p {
		font-size: 60px;
		margin-bottom: 65px;
	}
}

@media(min-width: 768px) {
	.content .article-nav {
		margin-top: 30px;
        padding: 58px 0;
	}

	.content .article-nav .row > div:nth-child(2) {
        order: initial;
    }

	.content .article-nav .row > div.prev a,
	.content .article-nav .row > div.next a {
		font-size: 22px;
	}

	.content .article-nav .row > div.prev a::before,
	.content .article-nav .row > div.next a::before {
		top: 0;
		height: 28px;
    	width: 37px;
	}

	
}

.content.contacts{
	background: #fcfcf5;
}

.content.contacts .banner+.template{
	padding-bottom: 100px;
}
@media(min-width:768px){
	.content.contacts .banner+.template{
		padding-bottom: 155px;
	}
	.news .container.container-sm {
		max-width: 530px;
	}
}

.shop.product .template{
	margin-top: 35px;
}
.shop.product .quantidades{
	margin-top: 45px;
}
.shop.product .quantidades > div,
.content .template .listing .product-inline .details > div{
	display: flex;
	width: 100%;
	align-items: center;
	font-size: 16px;
	font-weight: normal;
	line-height: 2;
	letter-spacing: normal;
	text-align: left;
	color: var(--blackgrey);
	border-top:1px solid #e8e7ae;
	padding: 8px 5px;
}

.content .template .listing .product-inline .details > div{
	border: none;
}
.shop.product .quantidades > div:last-of-type{
	border-bottom:1px solid #e8e7ae;
}

.shop.product .quantidades > div strong,
.content .template .listing .product-inline .details > div strong{
	font-weight: bold;
}

.shop.product .quantidades > div div:nth-of-type(1),
.content .template .listing .product-inline .details > div div:nth-of-type(1){
	width: 40px;
	margin-right: 30px;
	text-align: center;
}
.shop.product .quantidades > div div:nth-of-type(2),
.shop.product .quantidades > div div:nth-of-type(3),
.content .template .listing .product-inline .details > div div:nth-of-type(2),
.content .template .listing .product-inline .details > div div:nth-of-type(3){
	flex: 1;
}

@media(min-width:768px){
	.shop.product .quantidades > div{
		padding-right: 0;
		min-height: 68px;
	}
	.shop.product .quantidades > div div:nth-of-type(2){
		flex: .6;
	}
}

@media(max-width:768px){
	.content .template .listing .product-inline .details > div{
		flex-wrap: wrap;
	}
	.content .template .listing .product-inline .details > div div:nth-of-type(4){
		margin: 0 0 0 auto;
	}
	.content .template .listing .product-inline .details > div div:nth-of-type(4) > div{
		margin-top: 10px;
	}
	.content .template.has-quote .listing .product-inline .details > div div:nth-of-type(4) > div{
		margin-top: 0px;
		padding: 11px 40px;
	}
}

.content .template .listing .product-inline .details > div div:nth-of-type(2){
	max-width: 85px;
}

.shop.product .quantidades > div div:nth-of-type(4) > div,
.content .template .listing .product-inline .details > div div:nth-of-type(4) > div{
	width: auto;
	margin-right: 0px;
	text-align: center;
}

.content .template .listing .product-inline .details > div div:nth-of-type(1).amostra,
.shop.product .quantidades > div div:nth-of-type(1).amostra{
	width: 15px;
  	height: 26px;
	content: "";
	-webkit-mask-image: url(/assets/img/svg/icon-sample.svg);
	mask-image: url(/assets/img/svg/icon-sample.svg);
	background-color: #e8e7b0;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center;
	-webkit-mask-position: center;
	z-index: 1;
	margin-left: 9px;
	margin-right: 40px;
	margin-top: 10px;
	margin-bottom: 10px;

}

.content .template .listing .product-inline .details > div div:nth-of-type(4) > div{
	background: white;
}

.shop.product .quantidades > div img.garrafa,
.content .template .listing .product-inline .details > div img.garrafa{
	height: 40px;
}
.shop.product .quantidades > div img.garrafao,
.content .template .listing .product-inline .details > div img.garrafao{
	height: 43px;
}
.shop.product .quantidades > div img.bidao,
.content .template .listing .product-inline .details > div img.bidao{
	height: 43px;
}

.content .product-page .product-details{
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-details span{
	font-size: 13px;
	font-weight: 300;
	letter-spacing: normal;
	text-align: right;
	color: #b8b7b7;
}

.template.product-page .listing .accordion > div:first-of-type > h3{
	font-size: 20px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.3;
}

.template.product-page .listing .accordion.open > div:first-child h3,
.template.product-page .listing .accordion > div:hover h3{
	color: currentColor;
}

.template.product-page .listing .accordion > div:hover .toggle{
    transform: scale(1.15);
}

.template.product-page .listing .accordion > div p{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #2f302e;
}

.product-page .slider .tns-slide-active{
	z-index: 2;
}

@media(min-width:768px){
	.template.product-page .listing .accordion > div:first-of-type > h3{
		font-size: 22px;
		line-height: 1.45;
	}

	.shop.product .quantidades > div img.garrafa,
	.content .template .listing .product-inline .details > div img.garrafa{
		height: 43px;
	}
	.shop.product .quantidades > div img.garrafao,
	.content .template .listing .product-inline .details > div img.garrafao,
	.shop.product .quantidades > div img.bidao,
	.content .template .listing .product-inline .details > div img.bidao{
		height: 50px;
	}
}

/**********************************/
/******* HP-PRODUCTS-SLIDER ******/
/********************************/


.product_category {
    margin-top: 120px;
    margin-bottom: 120px;
	position: relative;
}

.product_category .slider .slide img {
    width: 100%;
    max-height: 630px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
    object-position: 20% 0;
}

.product_category .slider .slide > div > a{
	display: block;
	overflow: hidden;
	border-radius: 50px;
	isolation: isolate;
 	transform: translateZ(0);
}
.product_category .slider .slide div > a img{
	transition: var(--transition);
}
.product_category .slider .slide div > a:hover img{
	transform: scale(1.05) !important;
}

.product_category .slider .slide > div{
    position: relative;
}

.product_category .slider .slide .pslider-image-title{
    position: absolute;
    bottom: 60px;
    left:0;
    right: 0;
    text-align: center;
	padding: 0 80px;
	pointer-events: none;
}


.product_category .slider .slide.title-slide {
	margin: 118px 30px 0 30px ;
}

.product_category .slider .slide.title-slide .pslider-content {
	max-width: 350px;
}

.product_category .slider .slide.title-slide .pslider-content .pslider-title h2 {
	font-family: var(--font-family-1);
	font-size: 2.75rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}

.product_category .slider .slide.title-slide .pslider-content .pslider-desc {
	margin-top: 30px;
}

.product_category .slider .slide.title-slide .pslider-content .pslider-desc p {
	font-family: var(--font-family-1);
	font-size: 1.25rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: -0.5px;
	text-align: left;
	color:var(--blackgrey);
}

.product_category .slider-arrows {
	position: absolute;
    margin: 0 0 50px;
    display: flex;
    opacity: 1;
    transition: var(--transition);
	gap: 35px;
}

.product_category .slider-arrows > div::before {
    content: "";
    position: absolute;
    background-color: var(--primary);
    -webkit-mask-image: url(/assets/img/svg/arrow.svg);
    mask-image: url(/assets/img/svg/arrow.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    width: 57px;
    height: 43px;
    -webkit-mask-size: cover;
    transition: var(--transition);
}

.product_category .slider-arrows > div::before {
    background-color: var(--primary);
    width: 57px;
    height: 43px;
}


.product_category .slider-arrows > div:first-of-type::before {
	transform: rotate(180deg);
}
.product_category .slider-arrows > div:last-of-type{
    margin-top: 50px;
}
.product_category .slider-arrows > div:last-of-type::before {
	right: 0;
}

.product_category .slider .slide .pslider-image-title h4 {
	margin: 15px 0 0 0;
	font-family: var(--font-family-1);
	font-size: 2.5rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	color: white;
}

.product_category .slider .slide .button {
	margin-top: 25px;
    color: var(--blackgrey);
	pointer-events: all;
	transition: var(--transition-color);
}

.product_category .slider .slide .button::before{
    background-color: white;
}


@media (max-width: 992px) {
	.product_category {
		margin-top: 100px;
	}

	.product_category .slider .slide.title-slide {
		margin: 70px 30px 0 30px;
	}

	.product_category .slider .slide img {
		max-height: 500px;
	}
}

@media (max-width: 768px) {
	.product_category {
		margin-top: 60px;
        margin-bottom: 60px;
	}

	.product_category .slider .slide.title-slide {
		margin: 0px 30px;
	}

	.product_category .slider .slide.title-slide .pslider-content {
		max-width: 280px;
	}

	.product_category .slider .slide.title-slide .pslider-content .pslider-title h2 {
		font-size: 35px;
	}

	.product_category .slider .slide .pslider-image-title{
		padding: 0 20px;
	}

	.product_category .tns-outer{
		padding-bottom: 30px !important;
		position: relative;
	}

	.product_category .tns-nav{
		display: flex;
		justify-content: center;
		width: 100%;
		position: absolute;
		bottom: 0;
	}


	.product_category .tns-nav button{
		width: 6px;
		height: 6px;
		background: var(--primary);
		z-index: 1;
		transition: var(--transition);
		border: none;
		outline: none;
		padding: 0;
		margin: 0;
		border-radius: 100%;
		margin: 0 12.5px;
	}

	.product_category .tns-nav button.tns-nav-active{
		background: var(--blackgrey);
	}

}

@media (max-width: 600px) {
	.product_category .slider-arrows{
		display: none;
		margin: 0 auto;
		top: auto;
		bottom: 45px;
		width: 50%;
	}
	.product_category .slider-arrows > div{
		width: 0;
		height: 0;
		margin: 0;
	}

	.product_category .slider-arrows > div::before {
		width: 45px;
		height: 33px;
	}

	.product_category .slider-arrows > div:last-of-type{
		margin-top: 0;
	}
}

.content.subcategoryProducts .banner{
	background-color: #fcfcf6;
}
.content .product_subcategory {
    min-height: 220px;
    overflow: hidden;
    position: relative;
	z-index: 1;
	align-items: center;
	padding-left: 0;
    padding-right: 0px;
}

.content .product_subcategory .slider-arrows {
	display: none;
}

.content .product_subcategory .tns-slider{
	margin: 0 auto;
}


.product_subcategory > .tns-outer{
	display: contents;
}

.content .product_subcategory{
    -webkit-mask-image: url(/assets/img/svg/bg-banner.svg);
    mask-image: url(/assets/img/svg/bg-banner.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-position: bottom;
    -webkit-mask-position: bottom;
	background-color: #fcfcf6;
	padding-top: 15px;
}
@media(min-width:768px){
	.content .product_subcategory {
		min-height: 370px;
		padding-left: 85px;
		padding-right: 85px;
		padding-top: 40px;
	}
	.content .product_subcategory .slider-arrows {
		display: flex;
		top: 60px;
		bottom: auto;
	}
}
@media(min-width:1700px){
	.content .product_subcategory{
		min-height: 420px;
	}
}
.content .product_subcategory .slider .slide{
	text-align: center;
}
.content .product_subcategory .slider .slide div:first-of-type {
    content: "";
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: var(--primary);
    height: 74px;
    width: 74px;
	margin: 0 auto 10px;
}

.content .product_subcategory .slider .slide div.title{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.6px;
	text-align: center;
	color: var(--blackgrey);
	transition: var(--transition);
	position: relative;
	margin: 0 10px 15px;
}

.content .product_subcategory .slider-arrows > div{
	width: 24px;
	height: 46px;
	transition: var(--transition);
	margin: 20px;
}

.content .product_subcategory .slider-arrows > div:hover{
	transform: translateX(5px);
}

.content .product_subcategory .slider-arrows > div:hover:first-of-type{
	transform: translateX(-5px);
}

.content .product_subcategory .slider-arrows > div::before {
    -webkit-mask-image: url(/assets/img/svg/slider-arrow-fine.svg);
    mask-image: url(/assets/img/svg/slider-arrow-fine.svg);
    background-color: var(--primary);
}

.content .product_subcategory .slider-arrows > div.prev-arrow::before{
	transform: rotate(180deg);
}

.content .product_subcategory .slider .slide.active a:before,
.content .product_subcategory .slider .slide a:hover:before{
	content: "";
	background: #f6f5dc;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 57.5px;

}

.content .product_subcategory .slider .slide a:hover:before{
	transition: var(--transition);
	opacity: .5;
}

.content .product_subcategory .slider .slide a{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	max-width: 175px;
	width: 100%;
	position: relative;
	/* padding: 20px 15px; */
	padding: 20px 0px;
}

@media(min-width:768px){
	.content .product_subcategory .slider .slide div.title{
		font-size: 24px;
		margin: 0 10px;
		/* max-width: 120px; */
	}
	.content .product_subcategory .slider .slide div:first-of-type {
		height: 94px;
		width: 94px;
		margin: 0 auto 20px;
	}

	.content .product_subcategory .slider .slide.active a:before,
	.content .product_subcategory .slider .slide a:hover:before{
		height: 222px;
		border-radius: 87.5px;
	}

	.content .product_subcategory .tns-ovh,
	.content .product_subcategory .slider .slide a{
		height: 222px;
	}

	.content .product_subcategory .slider-arrows > div{
		margin: 40px;
	}
}

.products_relations{
	margin-top: 40px;
}

.products_relations .tns-outer{
    position: relative;
    margin-top: 31px;
}

.products_relations .tns-outer > .tns-nav {
    position: relative;
    text-align: center;
    z-index: 10;
    margin-bottom: 40px;
}

.products_relations .tns-outer{
    display: flex;
    flex-direction: column;
}

.products_relations .tns-outer .tns-nav{
    order: 3;
    margin-top: 20px;
}

.products_relations h2{
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--black)
}

.products_relations > div:first-of-type{
	position: relative;
	display: flex;
	margin: 0 22px;
	flex-direction: column;
}

.products_relations .slider-arrows {
    position: relative;
    top: 20px;
    bottom: 0;
    left: auto;
    right: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    width: 60%;
	margin: 0 auto;
}
.products_relations .slider-arrows > div{
	width: 57px;
	height: 40px;
	margin: 0 15px;
}
.products_relations .slider-arrows > div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(/assets/img/svg/arrow.svg);
    mask-image: url(/assets/img/svg/arrow.svg);
    background-color: var(--primary);
}
.products_relations .slider-arrows > div:first-of-type::before{
	transform: rotate(180deg);
}

.products_relations > div:last-of-type{
    display: flex;
    margin-top: 30px;
    flex-direction: column;
}

.products_relations > div > div img + div{
    width: 100%;
}

.products_relations > div > div.slider{
    border:1px solid var(--primary);

}
.products_relations > div > div.slider > div {
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.products_relations div.slider > div{
    padding: 25px !important;
	text-align: center;
}

.products_relations .new{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
	z-index: 10;
}
.products_relations .new::before {
    content: attr(data-name);
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.products_relations .new::after{
    content: "";
    background: var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
}

.products_relations .amostra,
.content .product-page .banner .amostra{
    position: absolute;
    top: 11px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
	z-index: 10;
	padding: 5px 15px;
}

.content .product-page .banner .amostra{
	position: relative;
	width: fit-content;
	margin-bottom: 10px;
	top: 0px;
}
.products_relations .amostra::before,
.content .product-page .banner .amostra::before{
	content: "";
	width: 13px;
  	height: 25px;
	-webkit-mask-image: url(/assets/img/svg/icon-sample.svg);
	mask-image: url(/assets/img/svg/icon-sample.svg);
	background-color: var(--primary);
	-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
	z-index: 1;
	margin-right: 9px;

}
.products_relations .amostra span,
.content .product-page .banner .amostra span {
    font-size: 12.5px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	text-transform: uppercase;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.products_relations .amostra::after,
.content .product-page .banner .amostra::after{
    content: "";
    background: #6e8027;
    width: 100%;
    height: 100%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
    position: absolute;
}


.products_relations p{
    margin: 0;
    padding: 0;
}
.products_relations p.category{
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 2px;
    text-align: left;
    color: var(--primary);
    margin-bottom: 7px;
    margin-top: 29px;
}
.products_relations p.product{
    font-size: 22px;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: normal;
    text-align: left;
    color: var(--blackgrey);
}
.products_relations p.scientific{
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: italic;
    line-height: 2.29;
    letter-spacing: normal;
    text-align: left;
    color: #b8b7b7;
}
.products_relations .slider{
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
	display: flex;
	/* flex-direction: column; */
	margin: 0 auto;
}

.products_relations p.price_list{
	font-size: 16px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: normal;
	text-align: left;
	color: #2f302e;
	margin-top: 4px;
}

.products_relations p.price_list span{
	font-weight: bold;
}

.products_relations .slider div.card{
	position: relative;
}
.products_relations .slider div.card > div{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.template.has-sidebar .listing-card .items .card a.img,
.related-products .related-container > div a.img,
.products_relations .slider > div.card a.img{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 100%;
    max-width: 550px;
	isolation: isolate;
	transform: translateZ(0);
}

.template.has-sidebar .listing-card .items .card a > img{
	border-radius: 100%;
	overflow: hidden;
}

.template.has-sidebar .listing-card .items .card a > img,
.related-products .related-container > div a > img,
.products_relations .slider > div.card a > img{
	transition: var(--transition);
}

.template.has-sidebar .listing-card .items .card a.img:hover img,
.related-products .related-container > div a:hover > img,
.products_relations .slider > div.card a.img:hover img{
	transform: scale(1.05) !important;
}


@media(min-width:768px){

	.products_relations{
		margin-top: 80px;
	}

	.products_relations > div:first-of-type{
		flex-direction: row;
		margin: 0 50px;
	}

	.products_relations .slider-arrows {
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: 0;
		display: flex;
		align-items: center;
		pointer-events: none;
		width: auto;
		justify-content: end;
	}


    .products_relations > a{
        margin-left: 50px;
    }

    .products_relations  h2{
        font-size: 3.75rem;
        line-height: 1;
    }

    .products_relations > div{
        margin-top: 50px;
        max-height: 910px;
        height: 100%;
        flex-direction: row;
    }

	.products_relations > div:last-of-type{
		margin: 0;
	}

	.products_relations .slider{
		flex-direction: row;
	}


    .products_relations div.slider > div{
        padding: 50px !important;
    }



    .products_relations .slider > div img{
        max-width: 550px;
        width: 100%;
		transition: var(--transition);
    }

    .products_relations .slider > div.card{
        border-left:1px solid var(--primary);

		border-bottom: none;
		border-top: none;
    }


}

@media(min-width:1024px){
    .products_relations div.slider > div{
        padding: 51px !important;
    }
}


@media(min-width:1224px){
    .products_relations div.slider > div{
        padding: 80px !important;
    }
    .products_relations div.slider .highlights + div{
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
}
@media(min-width:1624px){
	.products_relations div.slider > div{
        padding: 100px !important;
    }
    .products_relations div.slider .highlights + div{
        gap: 40px;
    }
}


.products_relations .slider > div.card + .card{
	border-left:1px solid var(--primary);
}

.products_relations .slider > div.card + .card:last-of-type{
	border-right:0px solid var(--primary);
}

.content.search h2{
	margin-bottom: 1em;
}

.swal-button:focus,
.swal-button:hover{
	outline: none;
}
.swal-button {
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 25px;
    font-weight: normal;
    font-size: 14px;
    padding: 13px 30px;
    margin: 0;
    cursor: pointer;
	border: none !important;
	box-shadow: none !important;
}

.swal-footer {
	text-align: center;
	padding: 8px 16px 25px;
}

.swal-button:not([disabled]):hover{
	background-color: #6e8027;
	color: #fff;
}

.card .highlights{
    position: absolute;
    top: 11px;
    right: 11px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.card .highlights div{
    position: relative;
    width: 45px;
    height: 45px;
    font-size: 11px;
    font-weight: normal;
    line-height: 45px;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.card .highlights div.bio{
    width: 37px;
}

.card .highlights div::after,
.card .highlights div.bio::after{
    content: attr(data-name);
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--white);
    z-index: -1;
    position: relative;
}

.card .highlights div.bio::after{
	position: absolute;
}

.card .highlights .new::after{
    background: #6e8027;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    top:0;
    left:0;
	content: attr(data-name);
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--white);
    z-index: -1;
	display: flex;
	align-items: center;
    justify-content: center;
}

.card .highlights .bio::after{
    content: "";
    width: 100%;
    height: 100%;
    background: none;
    -webkit-mask-image: url(/assets/img/svg/bio.svg);
    mask-image: url(/assets/img/svg/bio.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:0;
    left:0;
}

@media(max-width:767px){

    .card .highlights{
        top: 5px;
        right: 6px;
    }

    .card .highlights div {
        position: relative;
        width: 35px;
        height: 35px;
        font-size: 9px;
        font-weight: normal;
        line-height: 35px;
        letter-spacing: 0.2px;
        text-align: center;
        color: var(--white);
        z-index: 1;
    }


    .card .highlights div.bio {
        width: 29px;
    }

	.products_relations .slider > div.card:last-of-type{
		border-right:1px solid var(--primary);
	}

}

.tns-item,
.tns-item .subtitle *,
.tns-item .subtitle a.button,
.tns-item img,
.hp-product-slider .slider .slide .pslider-image-title {
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.content.shop.product .template .listing+.listing{
	margin-top: 0;
}

.content.shop.product .template .listing+.listing > hr:first-of-type{
	display: none;
}

.content.shop.product .listing+.listing .items:first-of-type  hr:first-of-type{ display: none;}
.content.shop.product .template .listing .file .link::after{
	width: 37px;
    height: 28px;
	right: 0;
}
.content.shop.product .template .listing .file .link{
	padding-right: 0;
}

@media(max-width:992px){
	.template.has-sidebar.single-item .listing-card.products .items.row{
		align-items: center;
	}

	.template.has-sidebar.open .sidebar > div{
		z-index: 998 !important;
	}
	.template.has-sidebar .sidebar > a.toggle-option{
		z-index: 999 !important;
	}

	.template.has-sidebar.open .sidebar > a.toggle-option > span{
		display: none;
	}

	.template.has-sidebar .sidebar > div:first-of-type{
		padding-top: 130px !important;
	}

}

@media(max-width:660px){
	.template.has-sidebar .sidebar > div:first-of-type{
		padding-top: 100px !important;
	}
	.content.blog .template.has-sidebar.has-sidebar-right,
	.blog .template.has-sidebar .sidebar > div:first-of-type{
		padding-top: 0px !important;
	}

	.content.blog .template .sidebar .input-wrapper{
		margin-bottom: 1rem;
	}

	.banner.no-img .container{
		margin-top: 70px !important;
	}

	.content.blog .template.has-sidebar .sidebar{
		padding-bottom: 10px;
	}

	.content.blog .listing .article{
		padding: 30px 0 5px;
	}

	.content.article .banner h1 + div{
		margin-top: 20px;
	}
}

.projeto2020{
	position: relative;
	z-index: 9;
	transition: var(--transition);
	text-align: center;
	padding: 6px;
	opacity: 1;
	background-color: #fafafa;
}

.projeto2020.desktop{
	display: none;
}

.projeto2020.mobile{
	display: block;
}

.projeto2020.desktop.remove{
	opacity: 0;
}

.projeto2020 img{
	height: 35px;
}

.projeto2020_footer{
	z-index: 9;
	margin-top: 30px;
	margin-bottom: 25px;
}

.projeto2020_footer img{
	max-height: 36px;
	height: 100%;
}

@media(min-width:768px){
	.projeto2020{
		position: relative;
		top:0;
		width: auto;
		padding: 0px 12px;
		display: block;
		background: none;
	}
	.projeto2020.desktop{
		display: block;
	}
	.projeto2020.mobile{
		display: none;
	}
	.projeto2020 img{
		height: 40px;
	}
	
}

@media(min-width:992px){
	.projeto2020_footer{
		z-index: 9;
		position: absolute;
		bottom: 0;
		margin-bottom: 0;
	}

	.projeto2020_footer img{
		max-height: 56px;
		height: 100%;
	}

	footer .socials-footer{
		align-items: end;
		margin-top: 0px;
	}
}

@media(min-width:768px){
	.cart_page .listing .header{
		margin-bottom: 59px;
	}
}

.contacts .template-module a[href^="tel:"]{
	color: var(--black);
}