/*
==================================================================
Theme Name: Soplas
Version: 1.0
Author: Neobrand
Author URI: https://neobrand.com
==================================================================
*/

:root {
	--blue: #0045c1;
	--grey: #f1f1f3;
	--black: #050505;
	--gray : #585858;
}


/* General */

html,body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Poppins', sans-serif;
	transition: opacity 720ms ease;
}

body.loading {
	opacity: 0;
	transition: opacity 0ms ease;
}

main figure {
	margin: 0;
}

::-moz-selection {
	color: #fff;
	background: var(--blue);
	text-shadow: 0 0 0 transparent;
}

::selection {
	color: #fff;
	background: var(--blue);
	text-shadow: 0 0 0 transparent;
}

::placeholder {
	color: var(--black);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--black);
}

::-ms-input-placeholder {
	color: var(--black);
}

p {
	width: 100%;
	margin: 0 0 20px 0;
	font-size: 19px;
	font-family: 'Poppins', sans-serif;
	line-height: 26px;
}

* > p:last-child {
	margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6 {
	width: 100%;
	margin: 0;
	float: left
}

h2,h3,h4 {
	font-size: 34px
}

h2 strong,
h3 strong,
h4 strong {
	color: var(--blue)
}

ul,
li {
	list-style: none
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Poppins', sans-serif
}

a {
	color: var(--blue);
	font-weight: 500;
	text-decoration: none;
}

#sidebar img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* Header */

#header {
	width: 100%;
	height: 80px;
	background-color: white;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	display: flex;
	justify-content: center;
	float: left;
	position: sticky;
	top: 0;
	z-index: 10;
}

#header nav {
	width: 100%;
	max-width: 1365px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header nav #mobile {
	display: none;
}

#header nav #menu-main.showdown {
	opacity: 1;
	pointer-events: all;
	top: 80px;
}

#header nav > a {
	width: 140px;
}

#header nav div:nth-child(2) {
	display: flex;
	justify-content: center;
}

#header nav div:nth-child(2) ul {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

#header nav div:nth-child(2) ul li {
	margin: 0 15px;
	font-weight: bolder;
}

#header nav div:nth-child(2) ul li a {
	font-size: 13px;
	color: var(--black);
	text-transform: lowercase;
}

#header nav div:nth-child(2) ul li.active {
	color: var(--blue);
}

#header nav > ul {
	height: 100%;
	display: flex;
	align-items: center;
}

#header nav > ul > li {
	height: 100%;
	padding: 0 25px;
	display: flex;
	align-items: center;
}

#header nav a img {
	margin-top: 10px;
}

#header nav > ul > li:not(:last-child) a {
	text-transform: lowercase;
	transition: color .3s ease-in;
}

#header nav > ul > li.current {
	position: relative;
}

#header nav > ul > li.current::before {
	content: url('images/list-h.svg');
	transform: translateX(-50%);
	position: absolute;
	top: 10px;
	left: 50%;
}

#header nav > ul > li.current a,
#header nav > ul > li:not(:last-child) a:hover {
	color: var(--blue);
}

#header nav > ul > li:last-child {
	width: 227px;
	padding: 0;
	margin-left: 25px;
	position: relative;
}

.loading #header nav > ul > li:last-child {
	display: none;
}

#header nav > ul > li:last-child > span {
	width: 100%;
	height: 100%;
	font-size: 24px;
	background-color: var(--blue);
	color: #fff;
	cursor: pointer;
	pointer-events: none;
	transform: scale(0);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 280ms ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

#header nav > ul > li:last-child > span.show {
	transform: scale(1);
	opacity: 1;
}

#header nav > ul > li a {
	width: 100%;
	color: black;
}

#header nav > ul > li:last-child > a {
	height: 100%;
	padding: 0 15px;
	font-weight: 900;
	background-color: var(--blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

#header nav > ul > li:last-child > form {
	width: 100%;
	border: 20px solid var(--blue);
	border-top: 0;
	border-bottom: 0;
	background-color: var(--blue);
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	display: flex;
	flex-direction: column;
	transform: translateY(-100%);
	transition: all 560ms ease;
	visibility: hidden;
	position: absolute;
	top: 0;
	z-index: 0;
}

#header nav > ul > li:last-child > form.active {
	top: 80px;
	transform: translateY(0);
}

#header nav > ul > li:last-child > form > div:first-child {
	width: 100%;
	overflow: hidden;
	float: left;
}

#header nav > ul > li:last-child > form div div {
	display: block;
	position: relative;
	transition: all 280ms ease;
}

#header nav > ul > li:last-child > form ul {
	width: 100%;
	opacity: 0;
	transition: all 280ms ease;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: minmax(min-content, max-content);
	gap: 10px;
	float: left;
}

#header nav > ul > li:last-child > form ul.active {
	opacity: 1;
}

#header nav > ul > li:last-child > form ul li:first-child {
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #fff;
}

#header nav > ul > li:last-child > form ul li:not(:first-child) {
	width: 100%;
	height: 100%;
	margin: 0;
}

#header nav > ul > li:last-child > form ul.high {
	animation-name: highlight;
	animation-duration: 520ms;
}

@keyframes highlight {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.95);
		opacity: 0.75;
	}

	100% {
		transform: scale(1);
	}

}

#header nav > ul > li:last-child > form ul li label:not([for="accept"]) {
	width: 100%;
	height: 60px;
	padding: 0 10px;
	background-color: #fff;
}

#header nav > ul > li:last-child > form ul li input:not([type="radio"], [type="checkbox"]) {
	width: 100%;
	height: 42px;
	padding: 0 15px;
	font-size: 14px;
	border: 0;
}

#header nav > ul > li:last-child > form ul li {
	cursor: pointer;
	position: relative;
}

#header nav > ul > li:last-child > form ul li.active,
#header nav > ul > li:last-child > form ul li:not(:first-child):hover {
	color: var(--blue);
}

#header nav > ul > li:last-child > form ul li label {
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#header nav > ul > li:last-child > form ul li label input {
	width: 16px;
	height: 16px;
	opacity: 0;
	position: absolute;
	top: 10px;
	left: 1px;
}

#header nav > ul > li:last-child > form ul li textarea {
	width: 100%;
	height: 120px;
	padding: 15px;
	border: 0;
	resize: none;
	font-size: 14px;
}

#header nav > ul > li:last-child > form ul li label[for="accept"] {
	width: 100%;
	margin-bottom: 10px;
	font-size: 12px;
	color: #fff;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	gap: 10px;
}

#header nav > ul > li:last-child > form ul li label[for="accept"]::before {
	content: '';
	min-width: 16px;
	min-height: 16px;
	border: 1px solid #fff;
}

#header nav > ul > li:last-child > form ul li label[for="accept"]::after {
	content: '';
	width: 14px;
	height: 14px;
	background-color: #fff;
	opacity: 0;
	transition: all 280ms ease;
	position: absolute;
	left: 2px;
}

#header nav > ul > li:last-child > form ul li label[for="accept"].checked::after {
	opacity: 1;
}

#header nav > ul > li:last-child > form ul li label[for="accept"] a {
	width: auto;
	text-decoration: underline;
	display: inline-block;
}

#header nav > ul > li:last-child > form ul li label[for="accept"] span {
	width: 100%;
}

#header nav > ul > li:last-child > form ul li button {
	width: 100%;
	height: 42px;
	padding: 0 20px;
	font-size: 17px;
	color: white;
	background-color: var(--black);
	border: 0;
	text-align: left;
	display: flex;
	align-items: center;
	transition: all 280ms ease;
	cursor: pointer;
}

#header nav > ul > li:last-child > form ul li button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

#header nav > ul > li:last-child > form ul li button i {
	margin-right: 10px;
}

#header nav > ul > li:last-child > form > div:last-child {
	width: calc(100% + 40px);
	margin-left: -20px;
	padding-top: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 14px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
}

#header nav > ul > li:last-child > form > div:last-child::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}

#header nav > ul > li:last-child > form > div:last-child::after {
	content: '';
	width: 1px;
	height: calc(100% + 10px);
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
}

#header nav > ul > li:last-child > form > div a {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 280ms ease;
}

#header nav > ul > li:last-child > form > div a.disabled {
	opacity: 0.25;
	cursor: not-allowed;
}

#header nav > ul > li:last-child > form > div.success {
	width: 0;
	height: 100%;
	padding: 20px 0;
	background-color: var(--blue);
	color: #fff;
	overflow: hidden;
	transition: all 280ms ease;
	position: absolute;
	top: 0;
	right: -20px;
	z-index: 3;
}

#header nav > ul > li:last-child > form > div.success.active {
	width: calc(100% + 40px);
	padding: 20px;
}

#header nav > ul > li:last-child > form > div.success h3 {
	margin-bottom: 20px;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 5px;
}

#header nav > ul > li:last-child > form > div.success p {
	font-size: 14px;
	line-height: 1.4;
}

#header nav > ul > li:last-child > form > div:last-child a:first-child i {
	margin-right: 5px;
}

#header nav > ul > li:last-child > form > div:last-child a:last-child i {
	transform: translateY(1px);
	margin-left: 5px;
}

/* Main */

main,
.company main,
.regular {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	float: left;
}

main #banner {
	width: 100%;
	min-height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #e2e3e7;
	position: relative;
}

main #banner > article {
	max-width: 1365px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 2.1fr;
	align-items: center;
	gap: 50px;
}

main #banner > article figure{
	width: 500px;
	justify-self: center;
}

main #banner .info {
	position: relative;
	z-index: 2;
}

main #banner .info h2 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

main #banner .info h1 {
	font-size:  54px;
	line-height: 1.1;
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 10px;
}

main #banner .info h1 span {
	font-weight: bolder;
}

main #banner .info p {
	font-size: 19px;
	line-height: 28px;
	margin-bottom: 30px;
}

main #showcase {
	background-color: var(--grey);
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 140px 0px 90px;
}

main #showcase > article {
	width: 100%;
	max-width: 1365px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}

main #showcase figure {
	width: calc(60% + 50px);
	position: absolute;
	top: -50px;
	left: 0;
}

main #showcase .showcaseinfo {
	width: 45%;
	background-color: white;
	z-index: 2;
}

main #showcase .showcaseinfo h2,
main #exposition .expoinfo h2 {
	font-size: 35px;
	margin-top: 0;
}

main section h2 span {
	color: var(--blue);
}

main #showcase .showcaseinfo p,
main #exposition .expoinfo p {
	font-size: 18px;
	line-height: 23px;
	color: var(--gray);
}

main #exposition,
main #sector,
.company #description {
	width: 100%;
	background-color: var(--grey);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
}

main #exposition > article,
.company #description > article {
	width: 100%;
	max-width: 1365px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-block: 85px;
}

main #exposition > article {
	padding-bottom: 0;
	gap: 30px;
}

main #exposition article .expoinfo {
	width: 50%;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 25px;
	padding-bottom: 85px;
}

main #exposition .expoimg {
	width: 50%;
}

main #exposition > article figure{
	display: flex;
	justify-content: center;
	max-width: 600px;
}

main #exposition figure img {
	mix-blend-mode: multiply;
	max-width: 700px;
}

main #subscribe {
	width: 100%;
	background: url("images/backSubcribe.png") center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 0;
}

#cta,
#quality {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--blue);
	padding: 60px 0;
}

main #subscribe > article,
#cta > div,
#quality > div {
	max-width: 955px;
	width: 100%;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
}

#cta .subButton,
#quality .subButton {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

main #subscribe .subButton {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}

#cta h4,
#quality h4 {
	font-size: 34px;
	font-weight: bolder;
	color: white;
}

#cta a,
#quality a {
	font-size: 17px;
	padding: 20px 26px;
	color: white;
	border: 1px solid white;
}

main #subscribe p {
	font-size: 22px;
	line-height: 27px;
	margin-bottom: 10px;
}

main #subscribe h2 {
	font-size: 34px;
	line-height: 46px;
	color: var(--blue);
}

main #sector {
	background-color: var(--grey);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 90px 0;
}

main #sector article,
.company #values article {
	width: 100%;
	max-width: 1365px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

main #sector article:first-child > div {
	padding: 0 !important;
	gap: 0;
}

main #gallery {
	background-color: var(--grey);
	width: 100%;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4,1fr);
	grid-template-rows: auto;
	grid-auto-flow: dense;
	padding: 0 30px;
}

main #gallery figure img,
main #sector figure img,
main #showcase img {
	object-fit: cover;
	transition: all .3s ease-in-out;
}

.home main #showcase figure img {
	height: 500px;
}

main #showcase .showcaseinfo {
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	padding: 50px;
	gap: 25px;
}

main #gallery figure {
	overflow: hidden;
}

main #gallery figure:nth-child(6n+3) {
	grid-column: 3 / span 2;
}

main #gallery figure:nth-child(6n+4) {
	grid-column: 1 / span 2;
}

main #products{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 25px;
	background-color: var(--grey);
	padding-top: 90px;
	padding-inline:  30px;
}

main #products > div {
	width: 100%;
    max-width: 1365px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}


main #products .our_items{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 30px;
}

main #products .info{
	gap: 20px;
}

main #products .categories a{
	color: black;
	transition: all 280ms ease;
} 

main #products .categories a:hover{
	color: var(--blue);
}

main #products .title{
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

main #products article{
	display: flex;
	flex-direction: column;
	background-color: white;
}

main #products article .info {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 25px;
}

main #products .info h3 {
	text-align: center;
	line-height: 1;
	flex:  1 1 auto;
}

.home main #products .info .categories {
	display: flex;
	justify-content: center;
	align-items: center;
}

main #products article .info .categories{
	width: 100%;
	display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 2px solid #eaeaea;
    transition: all 280ms ease;
}

main #products article h3 a{
	font-size: 20px;
	line-height: 1;
    font-weight: 600;
	color: black;
	transition: all 280ms ease;
}

main #products article h3:hover a{
	color: var(--blue);
}

main #sector article:nth-child(2),.company #description .place {
	width: 100%;
	padding: 0 0 90px;
	max-width: 1365px;
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
}

.company #description .place {
	padding: 90px 0 0;
	align-items: center;
}

main #sector article:nth-child(2) > *,.company #description .place > * {
	grid-row-start: 1;
	grid-column-start: 1;
}

main #sector article:nth-child(2) > div,.company #description .place > div {
	background-color: white;
	z-index: 1;
	width: 50%;
}

main #sector article:nth-child(2) > div p {
	hyphens: auto;
}

main #sector article:nth-child(2) figure,.company #description .place figure {
	width: 100%;
	padding-left: 30%;
}

main #sector article:last-child {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 450px;
	gap: 30px;
}

main #sector article:last-child div {
	height: 100%;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
}

main #sector article:last-child figure {
	overflow: hidden;
	height: 100%;
}

main #sector article > div {
	width: 100%;
}

main #sector .buySector {
	display: grid;
	grid-template-columns: 4fr 1fr;
	gap: 30px;
}

main #sector .buySector figure {
	height: 400px;
}

main #sector article:first-child  .buySector div {
	padding: 50px 0;
}

main #sector article:first-child .sectorList {
	width: 65%;
	padding: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: white;
	margin-left: auto;
	gap: 50px;
	transform: translateY(-90px);
}



main #sector article .sectorList ul {
	display: flex;
	flex-direction: column;
}

main #sector article .sectorList ul li {
	font-size: 18px;
	line-height: 30px;
}

main #sector article .sectorList ul li::before,
.regular section article ul li::before {
	content: url('images/list.svg');
	margin-right: 5px;
}

main #sector article > div,
.company #description .place > div {
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 25px;
}

main section article div * {
	margin-bottom: 0;
}

/* botones */

#cookie-notice .cn-button[data-cookie-set="accept"]{
	color: white;
	background-color: var(--blue);
	padding: 10px;

}

main section article div a.button,
#contact form button,
p.button a {
	width: 225px;
	height: 60px;
	color: white;
	padding: 0 20px;
	font-size: 17px;
	border: 0;
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
	float: left;
}

main section article div a.button::before,
#contact form button::before, 
.products #categories a::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: var(--blue);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

main section article div a.button::after,
#contact form button::after, 
.products #categories a::after {
	content: '';
	width: 0%;
	height: 100%;
	background-color: var(--black);
	transform: skew(-45deg);
	transition: all 560ms ease;
	position: absolute;
	top: 0;
	left: -20%;
	z-index: -1;
}

main section article div a.button:hover::after,
#contact form button:hover::after,
.products #categories a:hover::after,
.products #categories a.current::after {
	width: calc(100% + 15px);
}

/* Page Company */

.company main,
.medio main {
	padding: 0;
	background-color: var(--grey);
}

#about article {
	max-width: 955px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 30px;
}

#about>article {
	padding: 90px 30px;
}

#about>article>div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#about h1 {
	color: var(--black);
	font-size: 27px;
}

.company #description article:first-child figure {
	position: relative;
}

.company #description article:first-child figure i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 130px;
}

.company #values,
.medio #environment {
	padding: 90px 0;
}

.company #values {
	max-width: 1365px;
}

.company #description article:first-child {
	padding: 0 !important;
}

.company #values> div:first-child {

	width: 70%;
	padding: 0 0 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.company #values article > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.company #values article,
.products #items,
.medio #environment {
	width: 100%;
	max-width: 1365px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.company #values article > div > div {
	display: grid;
	grid-template-columns: 1fr 5fr;
	align-content: center;
	background-color: white;
	height: 100%;
	padding: 50px;
	gap: 25px;
}

.company #values article > div:nth-child(2n-1) figure {
	order: -1;
}

.company #values article > div figure {
	height: 100%;
}

.company #values article > div figure img {
	object-fit: cover;
}

.company #values article > div h3 {
	color: var(--blue);
	font-size: 58px;
}

.company #values article > div  h4 {
	font-size: 27px;
	margin-bottom: 15px;
}


/* Productos */

#bannerHeader {
	width: 100%;
}

#bannerHeader figure {
	height: 100%;
}

.products #categories {
	width: 100%;
	padding: 0 20px;
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	grid-template-rows: 200px;
	grid-auto-rows: 200px;
	gap: 20px;
	float: left;
}

.products #categories a {
	padding: 35px;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: var(--blue);
	z-index: 1;
	overflow: hidden;
}

.products #categories article {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 500px;
	gap: 20px;
}

.products #categories a img {
	width: 80px;
	height: 80px;
	margin-right: 20px;
}

.products #categories article > div {
	display: flex;
	justify-content: flex-start;
	background-color: var(--blue);
}

/* .products #items h1,
.products #items .description {
	margin-bottom: 30px;
} */

.products .description {
	padding-top: 60px;
	background-color: white;
	padding: 50px;
	margin-top: 50px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%)
}

.products .description h2 {
	font-size: 27px;
	padding-bottom: 20px;
}

.products .description p {
	font-size: 16px;
}

.products #items > .loop {
	width: 100%;
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	justify-content: center;
	gap: 20px;
}

.products #items > .loop {
}

.products,.blog,.contact,.regular {
	background-color: var(--grey);
}

.products #items .filter {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.products #items {
	padding: 90px 0;
}

.products #items > div:first-child {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.products #items .materials {
	height: 60px;
	padding: 20px 50px 20px 20px;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	background-color: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	position: relative;
}

.products #items .materials::before {
	content: '\f0b0';
	width: 50px;
	height: 100%;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	color: #fff;
	background-color: #0045c1;
	transform: translateX(-100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.products #items .materials::after {
	content: '';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--black);
	transform: translateY(-50%);
	transition: all 280ms ease;
	position: absolute;
	top: 50%;
	right: 20px;
}

.products #items .materials.active::after {
	transform: rotate(180deg) translateY(5px);
}

.products #items .materials div {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 280ms ease;
	position: absolute;
	top: 100%;	
	left: 0;
	z-index: 3;
}

.products #items .materials.active div {
	opacity: 1;
	pointer-events: all;
}

.products #items .materials a {
	width: 100%;
	padding: 20px;
	border-top: 1px solid #f2f2f2;
	color: var(--black);
}

.products #items .materials a.active {
	color: var(--blue);
}

.products #items .materials a:not([class]):hover {
	color: #fff;
	background-color: var(--blue);
}

.products h1 span,
.products #items h2 span {
	color: var(--blue);
}

.products #items div:nth-child(2) h4 {
	color: var(--blue);
	font-size: 24px;
	padding: 0;
}

.products #items article {
	max-width: 450px;
	background-color: white;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.products #categories article > div h3 {
	color: white;
	font-weight: 500;
}

.products main #items div > article figure {
	max-height: 100%;
	margin: 0;
	transition: all 560ms ease;
	position: relative;
}

.products main #items div > article figure .ref {
	width: fit-content;
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px;
	background-color: white;
}

.products main #items div > article.active figure {
	transition: all 360ms ease;
	max-height: 0%;
	opacity: 0;
}

.products main #items div > article figure img {
	object-fit: cover;
}

.products main #items div > article .content {
	width: 100%;
	flex: 1 1 auto;
	padding: 25px;
	transition: all 280ms ease;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.products main #items div > article.active .content {
	gap: 10px;
}

.products main #items div > article .content .info {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 2px solid #eaeaea;
	transition: all 280ms ease;
}

.products main #items div > article.active .content .info {
	padding-top: 15px;
}

.products main #items div > article .content .info .tecn {
	cursor: pointer;
	transition: all 280ms ease;
}

.products main #items div > article .content .info .tecn:hover {
	color: var(--blue);
}

.products main #items div > article .content h3 {
	flex: 1 1 auto;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	transition: all 280ms ease;
}
.products main #items div > article .content h3 a{
	color: #000;
}

.products main #items div > article .content h3:hover a{
	color: var(--blue)
}

.products main #items div > article.active .content h3 {
	font-size: 20px;
}

.products main #items div > article .content span.more {
	text-align: center;
	color: var(--blue);
	font-weight: 500;
	transition: all 280ms ease;
	cursor: pointer;
}

.products main #items div > article .content span.more:hover {
	color: var(--black);
}

.products main #items div > article .specs,
.product .specs {
	width: 100%;
	height: 0;
	border-top: 1px solid #f2f2f2;
	opacity: 0;
	display: flex;
	flex-direction: column;
	overflow: scroll;
	scrollbar-color: #0A4C95 #C2D2E4;
	transition: all 280ms ease 0ms;
	background-color: #fff;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
}

.products main #items div > article .specs::-webkit-scrollbar,
.product .specs {
	width: 5px;
}

.products main #items div > article .specs::-webkit-scrollbar-track,
.product .specs{
	background: #f1f1f1;
}

.products main #items div > article .specs::-webkit-scrollbar-thumb,
.product .specs{
	background: #888;
}

.products main #items div > article .specs::-webkit-scrollbar-thumb:hover,
.product .specs{
	background: #555;
}

.products main #items div > article.active .specs {
	height: calc(100% - 89px);
	opacity: 1;
	pointer-events: all;
	transition: all 280ms ease 140ms;
	top: 105px;
}

.products main #items div > article .close {
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
	cursor: pointer;
	opacity: 0;
	transform: scale(0);
	pointer-events: none;
	transition: all 320ms ease;
}

.products main #items div > article.active .close {
	opacity: 1;
	pointer-events: all;
	transform: scale(1);
}

.products main #items div > article.active .specs .close  i {
	font-size: 22px;
	color: black;
}

.products main #items div > article .specs .row,
#product .specs .row {
	width: 100%;
	display: flex;
}

.products main #items div > article .specs .row span,
#product .specs .row span {
	min-width: 50%;
	max-width: 50%;
	padding: 10px 25px;
	font-size: 14px;
}

.products main #items div > article .specs .row span:first-child,
#product .specs .row span:first-child {
	border-bottom: 1px solid #fff;
	background-color: #f2f2f2;
}

.products main #items div > article .specs .row span:last-child,
#product .specs .row span:last-child {
	border-bottom: 1px solid #f2f2f2;
}

.products main #items div > article .specs .row:first-child span,
#product .specs .row:first-child span {
	border-top: 1px solid #f2f2f2;
}

.products main #items div > article .specs .row:last-child span,
#product .specs .row:last-child span {
	border-bottom: 0;
}

.products main #items div > article .specs .row:nth-last-child(-n+3),
#product .specs .row:nth-last-child(-n+3) {
	flex-direction: column;
}

.products main #items div > article .specs .row:nth-last-child(-n+3) span,
#product .specs .row:nth-last-child(-n+3) span {
	min-width: 100%;
	max-width: 100%;
}

.products main #items div > article .specs .row:nth-last-child(-n+3) span i,
#product .specs .row:nth-last-child(-n+3) span i {
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 1px solid var(--grey);
	float: left;
} 


/* Producto */

#product article {
	justify-content: flex-start;
}

#product .box {
	border: 1px solid #f2f2f2;
}

#product #sidebar {
	height: fit-content;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 100px;
}

#product .specs {
	padding: 20px;
}

#product .specs {
	background-color: #fff;
}

#product .related-products {
	width: 100%;
}

#product .related-products > p {
	margin: 0 0 20px 0;
	font-size: 22px;
	line-height: 1;
}

#product .related-products > p strong span {
	color: black;
}

#product .related-products > div {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

#product .related-products article {
	padding: 0;
	box-shadow: none;
	background-color: #f2f2f2;
	display: flex;
	flex-direction: column;
}

#product .related-products article h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

#product .related-products article h3 a {
	color: black;
}

#product .related-products article h3 a:hover {
	color: var(--blue);
}

#product .related-products article figure {
	width: 100%;
}

#product .related-products article .info {
	flex:  1 1;
	width: 100%;
	background-color: #fff;
	padding: 25px;
}

/* Sostenibilidad */

.medio #environment article {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	grid-template-rows: repeat(2, 350px);
	gap: 20px;
	grid-auto-rows: 350px;
}

.medio #environment div p strong {
	color: var(--blue);
	font-weight: 600;
}

.medio #environment article div {
	background-color: white;
	padding: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.medio #environment {
	padding: 0 0 90px 0;
}

.medio #environment > article figure img {
	object-fit: cover;
}


/* Blog */
	
.blog #intro {
	width: 100%;
	max-width: 1365px;
	padding-top: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	}

.blog #intro h1 {
	width: fit-content;
	line-height: 1;
}

.blog #intro h1 span {
	color: var(--blue);
}

.blog .categories {
	height: 60px;
	padding: 20px 50px 20px 20px;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	background-color: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	position: relative;
}

.blog .categories::before {
	content: '\f02e';
	width: 50px;
	height: 100%;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	color: #fff;
	background-color: #0045c1;
	transform: translateX(-100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.blog .categories::after {
	content: '';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--black);
	transform: translateY(-50%);
	transition: all 280ms ease;
	position: absolute;
	top: 50%;
	right: 20px;
}

.blog .categories.active::after {
	transform: rotate(180deg) translateY(5px);
}

.blog .categories div {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 280ms ease;
	position: absolute;
	top: 100%;	
	left: 0;
	z-index: 3;
}

.blog .categories.active div {
	opacity: 1;
	pointer-events: all;
}

.blog .categories a {
	width: 100%;
	padding: 20px;
	border-top: 1px solid #f2f2f2;
	color: var(--black);
}

.blog .categories a.active {
	color: var(--blue);
}

.blog .categories a:not([class]):hover {
	color: #fff;
	background-color: var(--blue);
}

.blog #articles {
	width: 100%;
	max-width: 1365px;
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(3,1fr );
	gap: 20px;
	padding-bottom: 90px;
}

.blog #articles article {
	background-color: white;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.blog #articles article figure {
	height: 250px;
}

.blog #articles article figure img {
	object-fit: cover;
}

.blog #articles article h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	transition: all 280ms ease;
}

.blog #articles article h3 a {
	color: black;
}

.blog #articles article .content {
	width: 100%;
	height: 100%;
	padding: 25px;
	transition: all 280ms ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.blog #articles article .content .info {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 2px solid #eaeaea;
	transition: all 280ms ease;
}

.blog #articles article .content a {
	transition: all 280ms ease;
}

.blog #articles article .content a:hover,
.blog #articles article .content .info a[rel="category"]:hover {
	color: var(--blue);
}

.blog #articles article .content .info a[rel="category"] {
	color: black;
}

.blog #articles article .content .info a.more {
	font-weight: 500;
}

.blog #articles article .content .info a.more i {
	max-width: 0;
	overflow: hidden;
	transition: all 280ms ease;
	transform: translateY(3px);
}

.blog #articles article .content .info a.more:hover i {
	max-width: 20px;
}

#pagination {
	padding-bottom: 90px;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 5px;
	grid-column: 1 / -1;
}

#pagination span,
#pagination a {
	width: 40px;
	aspect-ratio: 1/1;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	display: flex;
	align-items: center;
	justify-content: center;
}

#pagination .dots {
	background-color: transparent;
	box-shadow: none;
}

.products #pagination {
	padding-bottom: 0;
}

#post,
#product {
	width: 100%;
	max-width: 1365px;
	padding-block: 90px;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 50px;
}

#post article{
	padding: 0;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	display: flex;
	flex-direction: column;
}

#product > article {
	padding: 0;
	background-color: #f2f2f2;
	box-shadow: none;
	display: flex;
	gap: 60px;
	flex-direction: column;
}

#post article header,
#product article header {
	width: 100%;
	padding: 50px;
	background-color: var(--blue);
	overflow: hidden;
	position: relative;
}

#product article > .product_info {
	width: 100%;
	display: grid;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

#product article > .others_products{
	width: 100%;
}

#product article header {
	padding-top: 0;
	padding-left: 0;
	padding-bottom: 0;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 40px;
}

#post article header .info,
#product article header .info {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	z-index: 1;
}

#product article header .info {
	justify-content: center;
}

#post article header .info h1,
#product article header .info h1 {
	padding: 0;
	background-color: transparent;
	color: #fff;
	text-align: left;
}

#post article header .info .meta,
#product article header .info .meta {
	color: #fff;
	display: flex;
	gap: 10px;
}

#post article header .info .meta span:not(:last-child)::after,
#product article header .info .meta span:first-child::after {
	content: '\2013';
	margin-left: 10px;
}

#post article header .info .meta span i,
#product article header .info .meta span i {
	margin-right: 5px;
}

#post article header .info .share a,
#post article header .info .meta a,
#product article header .info .meta a {
	color: #fff;
}

#post article header .share,
#product article header .share {
	display: none;
	gap: 10px;
}

#post article header figure {
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

#product article header figure {
	width: 320px;
	height: 320px;
	cursor: pointer;
}

#post article header figure img,
#product article header figure img {
	object-fit: cover;
}

#product article header figure a {
	line-height: 1;
	padding: 10px;
	border-radius: 5px;
	background-color: #fff;
	position: absolute;
	top: 10px;
	left: 10px;
}

#product article figure#amplified {
	width: 100%;
	height: 100%;
	padding: 100px;
	background-color: rgb(0 0 0 / 85%);
	opacity: 0;
	pointer-events: none;
	transition: all 560ms ease;
	position: fixed;
	inset: 0;
	z-index: 10;
}

#product article figure#amplified.active {
	opacity: 1;
	pointer-events: all;
}

#product article figure#amplified a {
	line-height: 1;
	padding: 10px;
	font-size: 35px;
	color: white;
	border-radius: 5px;
	opacity: 0;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 999;
	transform: translateX(20px);
	transition: all 280ms ease;
}

#product article figure#amplified a:hover{
	color: var(--blue);
}

#product article figure#amplified.active a {
	opacity: 1;
	transform: translateX(0);
}

#product article figure#amplified img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transform: scale(0.9);
	opacity: 0;
	transition: all 560ms ease;
}

#product article figure#amplified.active img {
	transition-delay: 280ms;
	opacity: 1;
	transform: scale(1);
}

#product article figure#amplified figcaption {
	width: 100%;
	padding-bottom: 20px;
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	transition: all 560ms ease;
	opacity: 0;
	transform: translateY(20px);
	position: absolute;
	bottom: 0;
	left: 0;
}

#product article figure#amplified.active figcaption {
	transition-delay: 560ms;
	opacity: 1;
	transform: translateY(0);
}


#post article,
#product article {
	position: relative;
}

#post article header.fixed,
#product article header.fixed {
	padding: 20px;
	transform: translateY(-100%);
	animation-name: slideDown;
	animation-duration: 280ms;
	animation-fill-mode: forwards;
	position: sticky;
	top: 80px;
}

#post article header.fixed,
#product article header.fixed {
	padding: 20px;
	transform: translateY(-100%);
	animation-name: slideDown;
	animation-duration: 280ms;
	animation-fill-mode: forwards;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	position: sticky;
	top: 80px;
	z-index: 3;
}

@keyframes slideDown {
	from {transform: translateY(-100%);}
	to {transform: translateY(0%);}
}

#post article header.fixed .info,
#product article header.fixed .info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

#post article header.fixed .info .share,
#product article header.fixed .info .share {
	display: flex;
}

#post article header.fixed .info h1,
#product article header.fixed .info h1 {
	font-size: 18px;
}

#post article header.fixed .info .meta,
#product article header.fixed .info .meta {
	display: none;
}

#post article .content,
#product article .content {
	padding: 50px;
	display: flex;
	flex-direction: column;
}

#post article .content p:not(:last-child),
#product article .content p:not(:last-child) {
	margin-bottom: 20px;
}

#post #sidebar {
	height: fit-content;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	position: sticky;
	top: 100px;
	padding-bottom: 20px;
}

#sidebar #related {
	width: 100%;
}

#sidebar #related .widget-title,
#sidebar .categories .widget-title,
#sidebar .widget-title {
	margin: 0 0 20px 0;
	font-size: 22px;
	line-height: 1;
}

#sidebar #related .widget-title strong,
#sidebar .categories .widget-title strong,
#sidebar .widget-title strong {
	color: black;
}

#sidebar #related .widget-title span,
#sidebar .categories .widget-title span,
#sidebar .widget-title span {
	color: var(--blue);
}

#sidebar #related article {
	margin-bottom: 20px;
	border-bottom: 2px solid #eaeaea;
	box-shadow: none;
}

#sidebar #related article:last-child{
	border: none;
}

#sidebar #related article figure {
	margin-bottom: 10px;
}

#sidebar #related article h3 {
	font-size: 20px;
}

#sidebar .categories{
	padding-bottom: 20px;
}

#sidebar .categories a{
	width: fit-content;
	background-color: var(--blue);
	color: white;
	padding: 5px 10px;
}

#sidebar .categories > div{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}


/* Contacto */

.contact #contact {
	max-width: 955px;
	width: 100%;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	padding: 90px 0 90px;
	align-items: flex-start;
}

.contact .forminator-field a {
	color: var(--blue);
}

.contact #contact article {
	grid-column-start: 1;
	grid-row-start: 1;
}

.contact #contact h1 {
	font-size: 40px;
}

.contact #contact h1 {
	color: white;
}

.contact #contact article:first-child {
	width: 100%;
	margin-top: 50px;
	background-color: var(--blue);
}

.contact #contact .info {
	width: 33%;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 25px;
}

.contact #contact .info a {
	color: white;
	font-weight: 500;
	z-index: 2;
}

.contact #contact article:nth-child(2) {
	display: flex;
	justify-content: flex-end;
}

.contact #contact article:nth-child(2) > div {
	background-color: white;
	width: 60%;
	transform: translateX(-50px);
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	padding: 50px;
}

.contact #contact .info .social {
	font-size: 20px;
	gap: 20px;
	display: flex;
}

.contact form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact form input:not([type="checkbox"],[type="submit"]) {
	width: 100%;
	height: 50px;
	padding-left: 15px;
	border: 2px solid #eaeaea;
	transition: border-color 280ms ease;
}

.contact form textarea {
	width: 100%;
	height: 100px;
	padding: 15px;
	border: 2px solid #eaeaea;
	transition: border-color 280ms ease;
	resize: none;
}

.contact form input.wpcf7-not-valid,
.contact form textarea.wpcf7-not-valid {
	border-color: #ff5722;
}

.contact .last {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact .last .wpcf7-list-item {
	margin-left: 0;
}

.contact .last [data-name="acceptance"] label {
	cursor: pointer;
	display: flex;
	gap: 10px;
}

.contact .last [data-name="acceptance"] label span {
	transform: translateY(1px);
}

.contact .last [data-name="acceptance"] label span a i {
	opacity: 0;
	transform: translateY(-1px) translateX(-10px) scale(1);
	font-size: 12px;
	transition: all 280ms ease;
}

.contact .last [data-name="acceptance"] label span a:hover i {
	opacity: 1;
	transform: translateY(-1px) translateX(0) scale(1);
}

.contact .last [data-name="acceptance"] label input {
	width: 19px;
	height: 19px;
	opacity: 0;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
}

.contact .last [data-name="acceptance"] label::before,
.contact .last [data-name="acceptance"] label::after {
	content: '';
}

.contact .last [data-name="acceptance"] label::before {
	min-width: 15px;
	height: 15px;
	border: 2px solid #eaeaea;
}

.contact .last [data-name="acceptance"] label::after {
	width: 11px;
	height: 11px;
	background-color: var(--blue);
	transform: translateX(4px) scale(0);
	opacity: 0;
	transition: all 280ms ease;
	align-self: center;
	position: absolute;
}

.contact .last [data-name="acceptance"] label.active::after {
	transform: translateX(4px) scale(1);
	opacity: 1;
}

.contact .last button {
	cursor: pointer;
	display: flex;
	gap: 10px;
}

.contact .last button:disabled {
	opacity: 0.25;
	filter: grayscale(1);
	pointer-events: none;
}

.contact .last .wpcf7-spinner {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	opacity: 1;
	background-color: rgb(255 255 255 / 95%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.contact .last .wpcf7-spinner::before {
	display: none;
}

.contact .last .wpcf7-spinner::after {
	content: '';
	width: 50px;
	height: 50px;
	background-image: url('images/list-h.svg');
	background-size: contain;
	background-repeat: no-repeat;
	animation-name: sending;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

@keyframes sending {
	0% {transform: rotate(360deg);}
	50% {transform: rotate(0deg);}
	70% {transform: rotate(0deg);}
}

.contact .policy {
	font-size: 14px;
	cursor: pointer;
}

.contact .policy .showinfo {
	color: #333;
}

.contact .policy p {
	margin-top: 5px;
	font-size: 12px;
	line-height: 1;
	color: #999;
	display: none;
}

#contact form .wpcf7-not-valid-tip {
	display: none;
}

#contact form .wpcf7-response-output {
	padding: 20px 0 0 0;
	margin: 0;
	border: 0;
	border-top: 2px solid #ccc;
	text-align: center;
}

#contact form.sent .wpcf7-response-output {
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 5;
	font-size: 18px;
	font-weight: 600;
	color: var(--blue);
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.regular section article {
	width: 100%;
	max-width: 955px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 50px;
	box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
	background-color: white;
}

.regular > #content {
	margin: 90px 0;
}

.regular h1 {
	font-size: 22px;
	text-align: center;
	width: 100%;
	padding: 50px;
	color: #fff;
	background-color: var(--blue);
}

.regular h2 {
	font-size: 22px;
	margin-bottom: 20px;
}

.regular h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

.regular h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.regular p {
	font-size: 18px;
	line-height: 1.5;
}

.regular section article ul,
.regular section article ol {
	margin-left: 25px;
	margin-bottom: 25px;
}

.regular section article ul li,
.regular section article ol li {
	width: 100%;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 25px;
	display: flex;
	align-content: flex-start;
}

.regular section article ol {
	list-style: none;
	counter-reset: item;
}

.regular section article ol li {
	counter-increment: item;
}

.regular section article ol li::before {
	min-width: 24px;
	height: fit-content;
	aspect-ratio: 1/1;
	margin-right: 10px;
	font-size: 14px;
	font-weight: 600;
	content: counter(item);
	background: var(--blue);
	border-radius: 100%;
	color: white;
	text-align: center;
	display: inline-block;
}

.regular section article a{
	color: var(--blue);
}

.regular section article ol li {
	display: inline-block;
}


/* Footer */

#footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
}

#footer > div {
	width: 100%;
	max-width: 1365px;
	padding: 90px 0 30px;
	display: flex;
	flex-wrap: wrap;
}

#footer #footernav {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#footer #footernav > div a img {
	width: 140px;
}

#footer #footernav ul {
	display: flex;
}

#footer #footernav ul li {
	margin: 0 15px;
}

#footer #footernav ul li a {
	color: white;
	font-weight: bolder;
}

#footer > div .info {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 30px;
}

#footer > div .info > div {
	display: flex;
	width: 50%;
	gap: 20px;
}

#footer > div .info a {
	color: var(--black);
}

#footer > div .info a span {
	font-weight: bolder;
}

#footer > div .info p {
	margin: 10px 0 5px;
	font-size: 16px;
}

#footer > div .info i {
	font-size: 25px;
	font-weight: lighter;
	margin: 10px 10px 0 0;
	color: var(--black);
}

#footer > div .info div:nth-child(2) {
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#footer > div .info div:last-child p {
	margin: 0;
}

#footer > div .info div:last-child h5 {
	font-weight: bolder;
	color: var(--black);
	margin-bottom: 10px;
	font-size: 15px;
}

#footer > div .bottombar::before {
	content: '';
	display: inline-block;
	background-color: var(--black);
	width: 100%;
	height: 2px;
	margin: auto;
	margin-bottom: 30px;
}

#footer > div .bottombar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#footer > div .bottombar div:nth-child(2) {
	display: flex;
	align-items: center;
}

#footer > div .bottombar div span {
	font-weight: 700;
}

#footer > div .bottombar div a,
#footer > div .bottombar div span {
	font-size: 15px;
	color: var(--black);
	display: inline-block;
	transition: all 280ms ease;
}

#footer > div .bottombar div a:not(:last-child)::after,#footer > div .bottombar div span::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 13px;
	background-color: var(--black);
	margin: 0 5px;
}

#footer > div .bottombar div a:hover {
	color: var(--blue);
}

#footer #neobrand {
	width: 16px;
	overflow: hidden;
	transition: all 280ms ease;
	float: right;
	position: relative;
	top: -2px;
}

#footer #neobrand img {
	width: auto;
	height: 20px;
	float: left;
}

body{opacity:1;}

.grecaptcha-badge{
	opacity: 0;
	pointer-events: none;
}

#cdti {
	width: 100%;
	padding-block: 50px;
	background-color: var(--grey);
	display: flex;
	justify-content: center;
}

#cdti > div {
	width: 100%;
	max-width: 1365px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

#cdti > div > div:not(:first-child) {
	width: 100%;
	padding-top: 30px;
	border-top: 1px solid #ccc;
}

#cdti .feder {
	width: 70%;
	display: flex;
	gap: 30px;
}

#cdti .kit-digital {
	width: 30%;
	display: flex;
	justify-content: center;
}

#cdti .kit-digital figure {
	max-width: 340px;
}

#cdti .feder > figure {
	max-width: 300px;
	mix-blend-mode: multiply;
}

#cdti > div p {
	font-size: 0.8em;
	line-height: 1.4;
}