@charset "UTF-8";
/*
Theme Name: CDN
Text Domain: quarter-cdn
*/
/* OLDER */
/* repetitive colors */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
.bg-blanco {
				background-color: #ffffff;
}

.bg-gris {
				background-color: #E4E4E4;
}

.image-background {
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				width: 100%;
				height: 100%;
}
.image-background img {
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
}

/*
tr( duracion, propiedades, delay)
*/
/*
tre( duracion, propiedades, delay)
a diferencia de tr(), tre tiene un easign aplicado que hace la animacion mas natural
*/
/*
fade( x, y, defaulttransition, delay );
Añade transformacion x e y, y opacity 0 al elemento.
Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
Tambien se puede pasar un porcentaje
defaulttransition aplica la variable $transition-default definida en _variables.scss
delay aplica un delay multiplicando el valor por $transition-default-delay para hacer aparecer los elementos de forma escalonada
*/
.in {
				--fade-opacity: 1;
				--fade-transform: translateX(0px) translateY(0px);
				--p100: 100%;
				--v1: 1;
}

/*
fadein();
Aplica transformX(0px), transformY(0px) y opacity 1 para hacer aparecer el objecto
*/
/*
Se usa igual que fade, pero crea un loop para animar los elementos de forma ordenada
*/
/* Text Block Custom Style */
html {
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
				height: -webkit-fill-available;
}

*,
*::before,
*::after {
				-webkit-box-sizing: inherit;
				        box-sizing: inherit;
}

* {
				margin: 0;
				padding: 0;
				border: none;
				text-decoration: none;
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
}

body {
				font-family: "Raleway", sans-serif;
				font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
				color: #2E486B;
				background-color: #F3F3F9;
}
body img {
				max-width: 100%;
				height: auto;
				line-height: 0;
}
body ul li {
				list-style: none;
}

.site-content {
				padding-top: 160px;
}
@media only screen and (max-width: 900px) {
				.site-content {
								padding-top: 150px;
				}
}
@media only screen and (max-width: 600px) {
				.site-content {
								padding-top: 130px;
				}
}

section {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
}

.hidden {
				display: none;
}

.title-row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				margin-bottom: 30px;
				position: relative;
}
.title-row::before, .title-row::after {
				position: absolute;
				top: 0;
				right: 100%;
				width: 50vw;
				height: 100%;
				background-color: #F3F3F9;
				z-index: 1;
				content: "";
}
.title-row::after {
				right: auto;
				left: 100%;
}
.title-row h2 {
				text-transform: uppercase;
				position: relative;
				color: #2E486B;
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				font-weight: 700;
				margin-bottom: 0;
}
.title-row h2::after {
				position: absolute;
				left: calc(100% + 30px);
				top: 50%;
				-webkit-transform: translateY(-50%);
				        transform: translateY(-50%);
				width: calc(100vw - (100% + 30px));
				height: 2px;
				background-color: #2E486B;
				content: "";
}

input[type=text],
input[type=email],
input[type=search],
input[type=submit],
textarea,
button {
				font-family: "Raleway", sans-serif;
				-webkit-appearance: none;
				   -moz-appearance: none;
				        appearance: none;
				border-radius: 0;
}

button {
				background-color: transparent;
}
button.js-accordion-open {
				padding: 10px 15px;
				background-color: #ffffff;
				color: #333;
				border: 1px solid #333;
				cursor: pointer;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				width: 100%;
				font-size: 18px;
				-webkit-transition: all 0.5s ease;
				transition: all 0.5s ease;
}
button.js-accordion-open svg {
				width: 40px;
				height: 40px;
				position: absolute;
				top: 1px;
				right: 1px;
}
button.js-accordion-open svg path.fondo {
				fill: transparent;
}
button.js-accordion-open:hover, .js-open button.js-accordion-open {
				background-color: #2E486B;
				border-color: #2E486B;
				color: #ffffff;
}
button.js-accordion-open:hover svg path.fondo, .js-open button.js-accordion-open svg path.fondo {
				fill: #2E486B;
}
button.js-accordion-open:hover svg path.vertical, .js-open button.js-accordion-open svg path.vertical {
				display: none;
}
button.js-accordion-open:hover svg path.horizontal, .js-open button.js-accordion-open svg path.horizontal {
				fill: #ffffff;
}

select {
				font-family: "Raleway", sans-serif;
}

h1,
.h1,
.h1 p {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h1,
				.h1,
				.h1 p {
								font-size: 32px;
				}
}
@media only screen and (max-width: 600px) {
				h1,
				.h1,
				.h1 p {
								font-size: 28px;
				}
}

h2,
.h2,
.h2 p {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				margin-bottom: 8px;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h2,
				.h2,
				.h2 p {
								font-size: 30px;
				}
}
@media only screen and (max-width: 600px) {
				h2,
				.h2,
				.h2 p {
								font-size: 26px;
				}
}

h3,
.h3,
.h3 p {
				font-size: 35px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h3,
				.h3,
				.h3 p {
								font-size: 28px;
				}
}
@media only screen and (max-width: 600px) {
				h3,
				.h3,
				.h3 p {
								font-size: 24px;
				}
}

h4,
.h4,
.h4 p {
				font-size: 30px;
				font-family: "Raleway", sans-serif;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h4,
				.h4,
				.h4 p {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				h4,
				.h4,
				.h4 p {
								font-size: 20px;
				}
}

h5,
.h5,
.h5 p {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h5,
				.h5,
				.h5 p {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				h5,
				.h5,
				.h5 p {
								font-size: 18px;
				}
}

h6,
.h6,
.h6 p {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				h6,
				.h6,
				.h6 p {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				h6,
				.h6,
				.h6 p {
								font-size: 16px;
				}
}

a {
				color: #333;
				-webkit-transition: all 0.3s ease;
				transition: all 0.3s ease;
}

b,
strong,
strong * {
				font-weight: 600;
}

:hover {
				-webkit-transition: all 0.3s ease;
				transition: all 0.3s ease;
}

.row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
}
@media only screen and (min-width: 900px) {
				.row {
								-webkit-box-orient: horizontal;
								-webkit-box-direction: normal;
								    -ms-flex-direction: row;
								        flex-direction: row;
								-webkit-box-pack: center;
								    -ms-flex-pack: center;
								        justify-content: center;
				}
}

.container {
				max-width: 1290px;
				margin: 0 auto;
				padding: 0 15px;
				width: 100%;
				position: relative;
				z-index: 1;
}
.container.default_block.audio {
				padding: 20px 0;
}
.container.default_block .wp-block-cover {
				color: #ffffff;
				padding: 20px 0;
}
.container.default_block:first-of-type {
				margin-top: 30px;
}
.container.default_block:last-of-type {
				margin-bottom: 0px;
}
.container.default_block.heading {
				margin-bottom: 40px;
				padding-top: 39.5px;
}
@media only screen and (max-width: 767px) {
				.container.default_block.heading {
								margin-bottom: 30px;
				}
}
.container.default_block.heading h1 {
				font-size: 60px;
				font-weight: 600;
				line-height: 1;
				letter-spacing: 0.667px;
}
@media only screen and (max-width: 767px) {
				.container.default_block.heading h1 {
								font-size: 48px;
				}
}
.container.default_block.heading h2 {
				font-weight: 600;
				line-height: 1.22;
}
.container.default_block.heading h3 {
				font-weight: 600;
				line-height: 1.57;
}
.container.default_block.heading h5 {
				font-weight: 400;
				line-height: 1.5;
}
.container.default_block p {
				font-size: 16px;
				line-height: 1.75;
				margin-bottom: 1em;
}
.container.default_block a:hover {
				text-decoration: none;
}
.container.default_block.separator {
				margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
				.container.default_block.separator {
								margin-bottom: 30px;
				}
}
.container.default_block.separator .wp-block-separator {
				border: none;
				border-top: 1px solid #BDBFC1;
				background-color: #BDBFC1;
}
.container.default_block.list {
				margin-bottom: 30px;
}
.container.default_block.list:first-of-type {
				margin-bottom: 0;
}
.container.default_block.list .container {
				padding: 0;
}
.container.default_block.list ul {
				padding-left: 15px;
}
.container.default_block.list ul li {
				list-style: initial;
				font-size: 16px;
				line-height: 1.5;
}
.container.default_block.list ol {
				padding-left: 15px;
}
.container.default_block.list ol li {
				list-style: decimal;
				font-size: 16px;
				line-height: 1.5;
}
.container.default_block.list-item {
				margin: 0;
				font-size: 16px;
				line-height: 1.5;
}
.container.default_block.list-item:first-of-type {
				margin: 0;
}
.container.default_block.gallery .wp-block-gallery {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
				grid-template-columns: repeat(6, 1fr);
				-ms-grid-rows: auto;
				grid-template-rows: auto;
				gap: 20px 20px;
				    grid-template-areas: "w50 w50 w50 w50r w50r w50r" "w70 w70 w70 w70 w30r w30r" "w100 w100 w100 w100 w100 w100" "w30 w30 w70r w70r w70r w70r" "w30l w30l w30c w30c w30-r w30-r";
}
@media only screen and (max-width: 767px) {
				.container.default_block.gallery .wp-block-gallery {
								display: -webkit-box;
								display: -ms-flexbox;
								display: flex;
				}
}
.container.default_block.gallery .container.image.default_block figure {
				height: 100%;
}
.container.default_block.gallery .container.image.default_block img {
				height: 100%;
				max-height: 360px;
				min-height: 360px;
				-o-object-fit: cover;
				   object-fit: cover;
				-o-object-position: center;
				   object-position: center;
}
.container.default_block.gallery .container.image.default_block:nth-child(1) {
				-ms-grid-row: 1;
				-ms-grid-column: 1;
				-ms-grid-column-span: 5;
				grid-area: w50;
}
.container.default_block.gallery .container.image.default_block:nth-child(2) {
				-ms-grid-row: 3;
				-ms-grid-column: 1;
				-ms-grid-column-span: 7;
				grid-area: w70;
}
.container.default_block.gallery .container.image.default_block:nth-child(3) {
				-ms-grid-row: 3;
				-ms-grid-column: 9;
				-ms-grid-column-span: 3;
				grid-area: w30r;
}
.container.default_block.gallery .container.image.default_block:nth-child(4) {
				-ms-grid-row: 1;
				-ms-grid-column: 7;
				-ms-grid-column-span: 5;
				grid-area: w50r;
}
.container.default_block.gallery .container.image.default_block:nth-child(5) {
				-ms-grid-row: 5;
				-ms-grid-column: 1;
				-ms-grid-column-span: 11;
				grid-area: w100;
}
.container.default_block.gallery .container.image.default_block:nth-child(6) {
				-ms-grid-row: 7;
				-ms-grid-column: 1;
				-ms-grid-column-span: 3;
				grid-area: w30;
}
.container.default_block.gallery .container.image.default_block:nth-child(7) {
				-ms-grid-row: 7;
				-ms-grid-column: 5;
				-ms-grid-column-span: 7;
				grid-area: w70r;
}
.container.default_block.gallery .container.image.default_block:nth-child(8) {
				-ms-grid-row: 9;
				-ms-grid-column: 1;
				-ms-grid-column-span: 3;
				grid-area: w30l;
}
.container.default_block.gallery .container.image.default_block:nth-child(9) {
				-ms-grid-row: 9;
				-ms-grid-column: 5;
				-ms-grid-column-span: 3;
				grid-area: w30c;
}
.container.default_block.gallery .container.image.default_block:nth-child(10) {
				-ms-grid-row: 9;
				-ms-grid-column: 9;
				-ms-grid-column-span: 3;
				grid-area: w30-r;
}
.container.default_block.gallery .container.default_block {
				padding: 0;
				margin: 0;
}
.container.default_block.gallery .container.default_block:first-of-type {
				margin-top: 0;
}
.container.default_block.gallery .container.default_block:last-of-type {
				margin-bottom: 0;
}
.container.default_block.gallery .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
				width: 100%;
}
@media only screen and (max-width: 767px) {
				.container.default_block.gallery .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
								width: 100%;
				}
}
.container.default_block.quote {
				position: relative;
				padding: 20px 0;
}
.container.default_block.quote .paragraph {
				margin: 0;
				font-style: italic;
}
.container.default_block.quote .paragraph p {
				font-size: 24px;
				font-weight: 700;
				line-height: 1;
}
.container.default_block.quote .paragraph p:before {
				content: "❝";
				margin-right: 5px;
}
.container.default_block.quote .paragraph p:after {
				content: "❞";
}
.container.default_block.quote cite {
				padding: 0 15px;
}
.container.default_block.image {
				margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
				.container.default_block.image {
								margin-bottom: 40px;
				}
}

.centerDiv {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
}

.iframe-wrapper {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				padding-top: 56.25%;
				position: relative;
}
.iframe-wrapper iframe {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
}

.section-name {
				color: #BDBFC1;
				font-family: "Raleway", sans-serif;
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-weight: 700;
				line-height: 1;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
				width: 100%;
				border-top: 1px solid #BDBFC1;
				padding: 17px 0 0;
}
@media only screen and (max-width: 1050px) {
				.section-name {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.section-name {
								font-size: 16px;
				}
}

.tagline {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				line-height: 1;
				margin-top: 19px;
}
@media only screen and (max-width: 1050px) {
				.tagline {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.tagline {
								font-size: 18px;
				}
}

.section-title {
				line-height: 1.75;
}

.decoration-lines {
				position: absolute;
				top: 0;
				left: 0;
				z-index: 0;
				width: 100%;
				height: 100%;
				overflow: hidden;
}
.decoration-lines svg {
				position: relative;
}

#js-loading {
				text-align: center;
				padding-top: 60px;
}
#js-loading:after {
				width: 48px;
				height: 48px;
				border: 5px solid #FFF;
				border-bottom-color: transparent;
				border-radius: 50%;
				display: inline-block;
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
				-webkit-animation: rotation 1s linear infinite;
				        animation: rotation 1s linear infinite;
				content: "";
				margin: 0 auto -50px auto;
}
@-webkit-keyframes rotation {
				0% {
								-webkit-transform: rotate(0deg);
								        transform: rotate(0deg);
				}
				100% {
								-webkit-transform: rotate(360deg);
								        transform: rotate(360deg);
				}
}
@keyframes rotation {
				0% {
								-webkit-transform: rotate(0deg);
								        transform: rotate(0deg);
				}
				100% {
								-webkit-transform: rotate(360deg);
								        transform: rotate(360deg);
				}
}

.acf-map {
				display: block;
				width: 100%;
				height: 400px;
				margin-bottom: 0px;
}

.widget-dolar {
				position: relative;
				background-color: #2E486B;
				padding: 16px 0;
				color: #ffffff;
}
.widget-dolar__title {
				color: #ffffff;
				font-size: 22px;
				font-weight: 700;
				text-align: center;
				padding: 8px;
}
.widget-dolar__col {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				gap: 10px;
				width: 50%;
				float: left;
				padding: 0 8px;
				font-size: 16px;
}
.widget-dolar__col__title {
				font-size: 16px;
				font-weight: 700;
				text-align: center;
}
.widget-dolar__value {
				font-size: 16px;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				text-align: center;
}
.widget-dolar__value span {
				font-weight: 700;
}

.bar-gris {
				background-color: #BDBFC1;
				color: #0F0F19;
}
.bar-gris::after, .bar-gris::before,
.bar-gris h2::after,
.bar-gris .button--title {
				background-color: #BDBFC1;
}
.bar-gris .button--title,
.bar-gris h2 {
				color: #0F0F19;
}
.bar-gris .button--title::after,
.bar-gris h2::after {
				background-color: #0F0F19;
}

.bar-azul {
				background-color: #2E486B;
				color: #ffffff;
}
.bar-azul::after, .bar-azul::before,
.bar-azul h2::after,
.bar-azul .button--title {
				background-color: #2E486B;
}
.bar-azul .button--title,
.bar-azul h2 {
				color: #ffffff;
}
.bar-azul .button--title::after,
.bar-azul h2::after {
				background-color: #ffffff;
}

.bar-negro {
				background-color: #333;
				color: #ffffff;
}
.bar-negro::after, .bar-negro::before,
.bar-negro h2::after,
.bar-negro .button--title {
				background-color: #333;
}
.bar-negro .button--title,
.bar-negro h2 {
				color: #ffffff;
}
.bar-negro .button--title::after,
.bar-negro h2::after {
				background-color: #ffffff;
}

.futbol {
				position: relative;
				overflow: hidden;
				padding: 30px 0;
}
.futbol .row {
				width: 100%;
				gap: 30px;
}
.futbol__item {
				color: #ffffff;
				position: relative;
}
@media only screen and (min-width: 900px) {
				.futbol__item {
								max-width: 50%;
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 calc(50% - 15px);
								        flex: 0 0 calc(50% - 15px);
				}
}
.futbol__item .post-item__image {
				display: block;
				width: 100%;
				position: relative;
}
.futbol--colon {
				background-color: #0F0F19;
}
.futbol--union {
				background-color: #C82D2D;
}
.futbol__header {
				position: relative;
				font-size: 32px;
				font-weight: 400;
				padding: 10px 90px;
				font-family: "Oswald", sans-serif;
}
.futbol__header img {
				position: absolute;
				width: 60px;
				height: auto;
				top: 10px;
				left: 15px;
				z-index: 9;
}
.futbol__header .text-link {
				position: absolute;
				right: 10px;
				top: 10px;
				color: #ffffff;
				border: none;
				background: transparent;
				z-index: 1;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 4px;
}
.futbol__header .text-link:hover {
				text-decoration: underline;
}
.futbol__header .text-link svg {
				width: 24px;
}
.futbol__header .text-link svg path {
				fill: #ffffff;
}
.futbol a:has(h3) {
				text-decoration: none;
}
.futbol__title {
				font-size: 18px;
				font-weight: 700;
				padding: 15px;
				color: #ffffff;
}

.full {
				position: relative;
				padding: 30px 0;
				overflow: hidden;
}
.full .row {
				gap: 30px;
}
.full__col {
				max-width: 100%;
				position: relative;
}
@media only screen and (min-width: 900px) {
				.full__col {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 66%;
								        flex: 0 0 66%;
								max-width: 66%;
				}
				.full__col .title-row::after {
								display: none;
				}
}
.full__col h2::after {
				display: none;
}
.full__col__items {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 20px;
				max-width: 100%;
				overflow: hidden;
				margin-bottom: 30px;
}
@media only screen and (min-width: 900px) {
				.full__col__items {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
.full__col__items .post-item__meta {
				display: none;
}
@media only screen and (min-width: 900px) {
				.full aside {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 calc(33% - 30px);
								        flex: 0 0 calc(33% - 30px);
				}
}
.full aside .banner_col {
				width: 100%;
				margin-bottom: 20px;
}
.full aside .banner_col a, .full aside .banner_col .banner__image {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
}
.full aside .banner_col a img, .full aside .banner_col .banner__image img {
				width: 100%;
}

.contact {
				position: relative;
				padding: 30px 0;
}
.contact__form {
				width: 100%;
				max-width: 600px;
}
.contact .form-group {
				position: relative;
				margin-bottom: 20px;
}
.contact .form-group .form-control {
				padding: 12px;
				font-size: 16px;
				font-weight: 400;
				color: #0F0F19;
				width: 100%;
				border: 1px solid #ccc;
}

.site-logo {
				display: block;
				width: 100%;
				max-width: 300px;
				line-height: 0;
}
.site-logo img {
				width: 100%;
				height: auto;
}
@media only screen and (max-width: 900px) {
				.site-logo {
								max-width: 200px;
				}
}

.scrolled .site-logo {
				max-width: 250px;
}
@media only screen and (max-width: 900px) {
				.scrolled .site-logo {
								max-width: 200px;
				}
}

.site-menu {
				/*.header__mobile & {
				 	display: block;
				}*/
}
.site-menu ul {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				gap: 10px;
}
.site-menu ul li a {
				color: #333;
				text-transform: uppercase;
				font-weight: 500;
				font-size: 16px;
				text-decoration: none;
}
.site-menu ul li.current-menu-item a, .site-menu ul li.current_page_item a, .site-menu ul li:hover a {
				color: #2E486B;
				font-weight: 700;
}
@media only screen and (max-width: 1050px) {
				.site-menu {
								display: none;
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								-webkit-box-pack: start;
								    -ms-flex-pack: start;
								        justify-content: flex-start;
								-webkit-box-align: start;
								    -ms-flex-align: start;
								        align-items: flex-start;
				}
}
.js-open .site-menu {
				background-color: #ffffff;
				position: fixed;
				top: 130px;
				left: 0;
				width: 100dvw;
				height: 100dvh;
				z-index: 2;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				padding: 30px;
}
.js-open .site-menu ul {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
}

/*
  .submenu {
    position: absolute;
    top: 37px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 70px;
    background: $white;
    filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
    display: none;

    @include responsive('tablet-h') {
      &.active {
        transform: translate(0, 0);
      }
    }

    .back-btn {
      display: none;

      @include responsive('tablet-h') {
        display: block;
        position: absolute;
        top: 67px;
        left: 20px;
        @include fontsizes(h5);
        background: none;
        padding-left: 23px;

        &:before {
          position: absolute;
          top: 0;
          left: 0;
          width: 8px;
          height: 15px;
          background: url(images/arrow-right.svg) center/contain no-repeat;
          content: '';
          transform: rotate(180deg);
        }
      }
    }

    &__item {
      &:hover {
        .submenu__title {
          color: $secondary-color;
        }
      }
    }

    &__image {
      position: relative;
      width: 100%;
      padding-top: 62.5%;
      margin-bottom: 10px;
      display: none;

      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    &__title {
      text-align: center;
      width: 100%;
      @include fontsizes(h6);
      color: $primary-color;
    }

    &--list {

      @include responsive('tablet-h') {
        display: block;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        transform: translate(100%, 0);
        background: #fff;
        z-index: 2;
        padding: 20px;
        padding-top: 114px;
        transition: all 0.5s ease;
        overflow-y: scroll;
      }

      .submenu__item {
        display: block;
        width: 207px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #D2D4D5;

        @include responsive('tablet-h') {
          width: 100%;
          padding-bottom: 25px;
          margin-bottom: 25px;

          .submenu__title {
            text-align: left;
          }
        }

        &:nth-last-child(2) {
          margin: 0;

          @include responsive('tablet-h') {
            border: none;
          }
        }
      }
    }

    &--banners {
      top: 37px;
      left: 50vw;
      width: 1290px;
      max-width: 100vw;
      padding: 46px 70px;
      transform: translate(-50%, 0);
      margin-left: -60px;
      display: none;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;

      @include responsive('desktop-s') {
        width: 100vw;
      }

      @include responsive('tablet-h') {
        display: block;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        transform: translate(100%, 0);
        background: #fff;
        z-index: 3;
        padding: 0 10px;
        padding-top: 114px;
        transition: all 0.5s ease;
        overflow-y: scroll;
        margin-left: 0;
        padding-bottom: 30px;
      }

      .submenu__item {
        width: 25%;
        padding: 18px 10px;

        @include responsive('tablet-h') {
          float: left;
          width: 50%;
          padding: 0 10px 23px 10px;

          &:nth-child(1) {
            width: 100%;
          }
        }
      }

      .submenu__image {
        display: block;
      }
    }
  }*/
.responsive__btn {
				position: relative;
				z-index: 11;
				width: 28px;
				height: 22px;
				position: relative;
				-webkit-transform: rotate(0deg);
				transform: rotate(0deg);
				-webkit-transition: 0.5s ease-in-out;
				transition: 0.5s ease-in-out;
				cursor: pointer;
				display: none;
}
.responsive__btn span {
				display: inline-block;
				background: #2E486B;
				width: 100%;
				height: 2px;
				-webkit-transition: all 0.5s ease;
				transition: all 0.5s ease;
				position: absolute;
				left: 0;
}
.responsive__btn span:nth-child(1) {
				top: 0px;
}
.responsive__btn span:nth-child(2), .responsive__btn span:nth-child(3) {
				top: 9px;
}
.responsive__btn span:nth-child(4) {
				top: 18px;
}
.responsive__btn.burger_menu {
				display: block;
}
@media only screen and (max-width: 1050px) {
				.responsive__btn {
								display: block;
				}
}

.menu-responsive-open .responsive__btn span:nth-child(1) {
				top: 9px;
				width: 0%;
				left: 50%;
}
.menu-responsive-open .responsive__btn span:nth-child(2) {
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
}
.menu-responsive-open .responsive__btn span:nth-child(3) {
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
}
.menu-responsive-open .responsive__btn span:nth-child(4) {
				top: 9px;
				width: 0%;
				left: 50%;
}
.menu-responsive-open .site-menu.burger_menu {
				display: block;
}
.menu-responsive-open .header__bottom {
				-webkit-transform: translate(0, 0);
				        transform: translate(0, 0);
}

.megamenu {
				position: absolute;
				top: 100%;
				left: 0;
				width: 100%;
				background: #ffffff;
				display: none;
				max-height: calc(100vh - 141px);
				overflow-y: auto;
				-webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
				        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media only screen and (max-width: 1050px) {
				.megamenu {
								position: static;
								margin-top: 18px;
				}
}
.megamenu__cols {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				gap: 100px;
				padding: 26px 15px;
				max-width: 1272px;
				margin: 0px auto;
}
@media only screen and (max-width: 1050px) {
				.megamenu__cols {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								gap: 30px;
				}
}
.megamenu__group {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
				-ms-flex-item-align: start;
				    align-self: flex-start;
				width: 50%;
}
@media only screen and (max-width: 1200px) {
				.megamenu__group {
								width: 100%;
				}
}
.megamenu__title {
				color: #0F0F19;
				font-size: 18px;
				font-weight: 700;
				letter-spacing: 1px;
				text-transform: uppercase;
				width: 100%;
				margin-bottom: 26px;
}
@media only screen and (max-width: 1050px) {
				.megamenu__title {
								margin-bottom: 16px;
				}
}
.megamenu__list {
				width: 50%;
}
@media only screen and (max-width: 767px) {
				.megamenu__list {
								width: 100%;
				}
}
.megamenu__lnk {
				color: #0F0F19;
				font-size: 13px;
				font-weight: 700;
				line-height: 2.76;
				letter-spacing: -0.2px;
				text-decoration: none;
				white-space: nowrap;
				text-align: left;
}
.megamenu__lnk:hover, .megamenu__lnk.current {
				color: #333;
}
.megamenu_sublist {
				display: none;
				padding-left: 20px;
}
.megamenu_sublist a {
				color: #0F0F19;
				font-size: 13px;
				line-height: 2;
				letter-spacing: -0.2px;
				text-decoration: none;
}
.megamenu_sublist a:hover, .megamenu_sublist a.current {
				color: #333;
}
.megamenu .has-childs {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				width: 100%;
				cursor: pointer;
				gap: 15px;
}
.megamenu .has-childs.current {
				color: #333;
}
.megamenu__lnk-icon {
				-webkit-transform: rotate(180deg);
				        transform: rotate(180deg);
				-webkit-transition: all 0.3s ease;
				transition: all 0.3s ease;
}
.megamenu .js-open .megamenu__lnk-icon {
				-webkit-transform: rotate(0);
				        transform: rotate(0);
}
.megamenu__wrapper {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding: 10px 0;
}
.megamenu__wrapper .text-link {
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				text-transform: none;
				margin-top: 0px;
				margin-bottom: 15px;
}
.megamenu__wrapper .text-link.current {
				color: #333;
}
.megamenu__wrapper .text-link:hover {
				color: #2E486B;
}

.site-search {
				position: relative;
				border: 1px solid #0F0F19;
				border-radius: 4px;
				overflow: hidden;
				max-width: 150px;
}
.header__mobile-group .site-search {
				display: block;
				padding: 22px 0;
}
.site-search .search-form {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding: 0;
}
.site-search .search-form label {
				width: 100%;
}
.site-search .search-form input[type=search] {
				width: 100%;
}
@media only screen and (max-width: 750px) {
				.site-search .search-form input[type=search] {
								width: 75px;
				}
}
.site-search .wc-block-product-search .wc-block-product-search__fields {
				-webkit-box-orient: horizontal;
				-webkit-box-direction: reverse;
				    -ms-flex-direction: row-reverse;
				        flex-direction: row-reverse;
}
.site-search form input[type=search] {
				width: 125px;
				height: 26px;
				padding: 0;
				font-size: 16px;
				font-weight: 500;
				color: #0F0F19;
				background-color: #ffffff;
				padding: 0 4px;
}
@media only screen and (max-width: 750px) {
				.site-search form input[type=search] {
								width: 75px;
								font-size: 14px;
				}
}
.site-search form input[type=search]:focus {
				outline: none;
}
.site-search form input[type=search]::-webkit-input-placeholder {
				color: #0F0F19;
}
.site-search form input[type=search]::-moz-placeholder {
				color: #0F0F19;
}
.site-search form input[type=search]:-ms-input-placeholder {
				color: #0F0F19;
}
.site-search form input[type=search]::-ms-input-placeholder {
				color: #0F0F19;
}
.site-search form input[type=search]::placeholder {
				color: #0F0F19;
}
.site-search form .search-submit {
				width: 26px;
				height: 26px;
				background: none;
				text-indent: -5000px;
				overflow: hidden;
				cursor: pointer;
				background-image: url(images/search.svg);
				background-position: center center;
				background-repeat: no-repeat;
				margin: 0;
				-ms-flex-negative: 0;
				    flex-shrink: 0;
				padding: 0 4px;
}
.site-search img {
				position: absolute;
				top: 10px;
				right: 15px;
				z-index: -1;
}

.socials {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 10px;
}
@media only screen and (max-width: 600px) {
				.socials {
								gap: 4px;
				}
}
.socials a {
				display: block;
				width: 24px;
				height: 24px;
}
.socials a svg {
				display: block;
				width: 100%;
				height: 100%;
}
.socials a svg path {
				fill: #ffffff;
}
.socials a:hover {
				opacity: 0.5;
}

.button {
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				cursor: pointer;
				height: auto;
				line-height: 1;
				font-size: 15px;
				font-weight: 400;
				font-family: "Raleway", sans-serif;
				padding: 15px 28px;
				-webkit-transition: 0.5s ease;
				transition: 0.5s ease;
				border-radius: 0;
				text-decoration: none;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				gap: 20px;
				/* default */
				background-color: transparent;
				color: #2E486B;
}
.button svg {
				width: 32px;
				height: 18px;
}
.button.button--white {
				background-color: #ffffff;
}
.button:hover {
				background-color: #2E486B;
				color: #ffffff;
				gap: 24px;
}
.button:hover svg path {
				fill: #ffffff;
}
.button.button--blue {
				background-color: #2E486B;
				color: #ffffff;
}
.button.button--blue svg path {
				fill: #ffffff;
}
.button.button--blue:hover {
				background-color: transparent;
				color: #2E486B;
}
.button.button--blue:hover svg path {
				fill: #2E486B;
}
.button.button--line {
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				cursor: pointer;
				height: auto;
				line-height: 1;
				font-size: 15px;
				font-weight: 400;
				font-family: "Raleway", sans-serif;
				padding: 15px 28px;
				-webkit-transition: 0.5s ease;
				transition: 0.5s ease;
				border-radius: 0;
				text-decoration: none;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				gap: 20px;
				/* default */
				background-color: transparent;
				color: #2E486B;
				border: 1px solid #2E486B;
				background: transparent;
				color: #2E486B;
}
.button.button--line svg {
				width: 32px;
				height: 18px;
}
.button.button--line.button--white {
				background-color: #ffffff;
}
.button.button--line:hover {
				background-color: #2E486B;
				color: #ffffff;
				gap: 24px;
}
.button.button--line:hover svg path {
				fill: #ffffff;
}
.button.button--line.button--blue {
				background-color: #2E486B;
				color: #ffffff;
}
.button.button--line.button--blue svg path {
				fill: #ffffff;
}
.button.button--line.button--blue:hover {
				background-color: transparent;
				color: #2E486B;
}
.button.button--line.button--blue:hover svg path {
				fill: #2E486B;
}
.button.button--line:hover {
				background: #333;
				color: #ffffff;
}
.button.button--line:hover svg path {
				fill: #ffffff;
}
.button.button--line.js-open {
				background: #333;
				color: #ffffff;
}
.button.button--line.js-open svg path {
				fill: #ffffff;
}
.filters .button.button--line {
				padding: 10px 20px;
				width: 100%;
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
				.filters .button.button--line {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.filters .button.button--line {
								font-size: 18px;
				}
}
.filters .dropdown-menu .button.button--line {
				padding-left: 20px;
				width: calc(100% - 20px);
}

.text-link {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
				width: 100%;
				margin-top: 16px;
				color: #333;
				font-size: 14px;
				font-weight: 700;
				line-height: normal;
				letter-spacing: 1px;
				text-transform: uppercase;
				text-decoration: none;
}
.text-link:hover {
				color: #ffffff;
}

.button--title {
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				cursor: pointer;
				height: auto;
				line-height: 1;
				font-size: 15px;
				font-weight: 400;
				font-family: "Raleway", sans-serif;
				padding: 15px 28px;
				-webkit-transition: 0.5s ease;
				transition: 0.5s ease;
				border-radius: 0;
				text-decoration: none;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				gap: 20px;
				/* default */
				background-color: transparent;
				color: #2E486B;
				border: none;
				background: #F3F3F9;
				color: #2E486B;
				font-size: 24px;
				font-weight: 600;
				position: relative;
				z-index: 1;
				text-align: right;
}
.button--title svg {
				width: 32px;
				height: 18px;
}
.button--title.button--white {
				background-color: #ffffff;
}
.button--title:hover {
				background-color: #2E486B;
				color: #ffffff;
				gap: 24px;
}
.button--title:hover svg path {
				fill: #ffffff;
}
.button--title.button--blue {
				background-color: #2E486B;
				color: #ffffff;
}
.button--title.button--blue svg path {
				fill: #ffffff;
}
.button--title.button--blue:hover {
				background-color: transparent;
				color: #2E486B;
}
.button--title.button--blue:hover svg path {
				fill: #2E486B;
}
.button--title:hover {
				background: #2E486B;
				color: #ffffff;
}
.button--title:hover svg path {
				fill: #2E486B;
}

.footer-form__form .gform_wrapper.gravity-theme .gfield, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield {
				position: relative;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]), .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]) {
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				cursor: pointer;
				height: auto;
				line-height: 1;
				font-size: 15px;
				font-weight: 400;
				font-family: "Raleway", sans-serif;
				padding: 15px 28px;
				-webkit-transition: 0.5s ease;
				transition: 0.5s ease;
				border-radius: 0;
				text-decoration: none;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				gap: 20px;
				/* default */
				background-color: transparent;
				color: #2E486B;
				padding: 16px 20px;
				background-color: #ffffff;
				color: #2E486B;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]) svg, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]) svg {
				width: 32px;
				height: 18px;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--white, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--white {
				background-color: #ffffff;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):hover, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):hover {
				background-color: #2E486B;
				color: #ffffff;
				gap: 24px;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):hover svg path, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):hover svg path {
				fill: #ffffff;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue {
				background-color: #2E486B;
				color: #ffffff;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue svg path, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue svg path {
				fill: #ffffff;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue:hover, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue:hover {
				background-color: transparent;
				color: #2E486B;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue:hover svg path, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]).button--blue:hover svg path {
				fill: #2E486B;
}
@media only screen and (max-width: 767px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]), .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]) {
								font-size: 16px;
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus-visible, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus-visible {
				outline: 2px solid #C82D2D;
}
@media only screen and (max-width: 767px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus-visible, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus-visible {
								width: calc(100% - 4px);
								margin-left: 2px;
				}
}
@media only screen and (max-width: 767px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):focus {
								width: calc(100% - 4px);
								margin-left: 2px;
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-webkit-input-placeholder, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-webkit-input-placeholder {
				opacity: 1;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-moz-placeholder, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-moz-placeholder {
				opacity: 1;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]):-ms-input-placeholder, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]):-ms-input-placeholder {
				opacity: 1;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-ms-input-placeholder, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit])::-ms-input-placeholder {
				opacity: 1;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit])::placeholder, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit])::placeholder {
				opacity: 1;
}
@media only screen and (max-width: 767px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield.large, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.large {
								width: calc(100% - 4px);
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--width-third, .footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--width-half, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--width-third, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--width-half {
				width: 100%;
}
@media only screen and (max-width: 750px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--width-third, .footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--width-half, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--width-third, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--width-half {
								-ms-grid-column-span: 12;
								grid-column: span 12;
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield.two-third, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.two-third {
				-ms-grid-column-span: 8;
				grid-column: span 8;
}
@media only screen and (max-width: 750px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield.two-third, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.two-third {
								-ms-grid-column-span: 12;
								grid-column: span 12;
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--type-submit, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--type-submit {
				-ms-grid-column-span: 4;
				grid-column: span 4;
}
@media only screen and (max-width: 750px) {
				.footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--type-submit, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--type-submit {
								-ms-grid-column-span: 12;
								grid-column: span 12;
				}
}
.footer-form__form .gform_wrapper.gravity-theme .gfield.gfield--type-submit .gform-button, .contact__inner__grid__column .gform_wrapper.gravity-theme .gfield.gfield--type-submit .gform-button {
				width: 100%;
}

.contact__inner__grid__column .gform_wrapper.gravity-theme .gform_fields {
				gap: 20px;
}
.contact__inner__grid__column .gform_wrapper.gravity-theme .gfield {
				position: relative;
}
.contact__inner__grid__column .gform_wrapper.gravity-theme .gfield input:not([type=submit]) {
				background-color: #E3E2EE;
}
.contact__inner__grid__column .gform_wrapper.gravity-theme .gform_footer, .contact__inner__grid__column .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .gform_page_footer {
				margin: 0px 0 0;
				padding: 20px 0 0;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
}
.contact__inner__grid__column .gform_wrapper.gravity-theme .gform_footer input, .contact__inner__grid__column .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .gform_page_footer input {
				-ms-flex-item-align: end;
				    align-self: flex-end;
				min-width: 220px;
}

/*
// hide antispam honeypot
.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
	display: none;
	position: absolute;
	left: -9000px;
}
*/
.post-cont .post-thumbnail {
				width: 100%;
				padding-top: 67.25%;
				position: relative;
				margin-bottom: 19px;
}
.post-cont .post-thumbnail a {
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				width: 100%;
				height: 100%;
}
.post-cont .post-thumbnail a img {
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
}
.post-cont .post-thumbnail a img {
				width: 100%;
				height: 100%;
}
.post-cont__date {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				color: #585858;
				margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
				.post-cont__date {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.post-cont__date {
								font-size: 16px;
				}
}
.post-cont__title {
				display: block;
				width: 100%;
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				color: #2E486B;
				margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
				.post-cont__title {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.post-cont__title {
								font-size: 18px;
				}
}
.post-cont__title:hover {
				color: #333;
}
.post-cont__link {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				color: #2E486B;
				text-decoration: underline;
}
@media only screen and (max-width: 1050px) {
				.post-cont__link {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.post-cont__link {
								font-size: 16px;
				}
}
.post-cont__link:hover {
				color: #333;
}

.archive-cont__list {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr 50px 1fr 50px 1fr;
				grid-template-columns: repeat(3, 1fr);
				grid-gap: 40px 50px;
}
@media only screen and (max-width: 1050px) {
				.archive-cont__list {
								padding: 0 20px;
				}
}
@media only screen and (max-width: 900px) {
				.archive-cont__list {
								-ms-grid-columns: 1fr 50px 1fr;
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (max-width: 600px) {
				.archive-cont__list {
								-ms-grid-columns: 1fr;
								grid-template-columns: repeat(1, 1fr);
				}
}

.single-header__title {
				margin: 0 auto;
				width: 985px;
				max-width: 100%;
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				margin-bottom: 8px;
				text-align: center;
}
@media only screen and (max-width: 1050px) {
				.single-header__title {
								font-size: 30px;
				}
}
@media only screen and (max-width: 600px) {
				.single-header__title {
								font-size: 26px;
				}
}
.single-header__introduction {
				margin: 0 auto;
				width: 773px;
				max-width: 100%;
				font-size: 30px;
				font-family: "Raleway", sans-serif;
				line-height: 1.2;
				color: #585858;
				text-align: center;
				margin-top: 30px;
}
@media only screen and (max-width: 1050px) {
				.single-header__introduction {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				.single-header__introduction {
								font-size: 20px;
				}
}
.single-header__date {
				margin: 0 auto;
				width: 773px;
				max-width: 100%;
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				color: #585858;
				text-align: center;
				margin-top: 30px;
}
@media only screen and (max-width: 1050px) {
				.single-header__date {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.single-header__date {
								font-size: 16px;
				}
}
.single-header .post-thumbnail {
				margin-top: 70px;
				width: 100%;
}
.single-header .post-thumbnail img {
				width: 100%;
				height: auto;
}

.single-content {
				padding: 80px 0 168px 0;
}
.single-content__cont {
				margin: 0 auto;
				width: 620px;
				max-width: 100%;
}
.single-content__cont h1,
.single-content__cont h2,
.single-content__cont h3,
.single-content__cont h4,
.single-content__cont h5,
.single-content__cont h6 {
				color: #2E486B;
				font-weight: 400;
}
.single-content__cont h1 {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h1 {
								font-size: 32px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h1 {
								font-size: 28px;
				}
}
.single-content__cont h2 {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				margin-bottom: 8px;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h2 {
								font-size: 30px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h2 {
								font-size: 26px;
				}
}
.single-content__cont h3 {
				font-size: 35px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h3 {
								font-size: 28px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h3 {
								font-size: 24px;
				}
}
.single-content__cont h4 {
				font-size: 30px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h4 {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h4 {
								font-size: 20px;
				}
}
.single-content__cont h5 {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h5 {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h5 {
								font-size: 18px;
				}
}
.single-content__cont h6 {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont h6 {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont h6 {
								font-size: 16px;
				}
}
.single-content__cont p {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				line-height: 1.4;
				margin-bottom: 1em;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont p {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont p {
								font-size: 18px;
				}
}
.single-content__cont .post-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				position: relative;
				overflow: hidden;
				height: 100%;
}
.single-content__cont .post-item__cont {
				text-decoration: none;
}
.single-content__cont .post-item__cont a {
				text-decoration: none;
}
.single-content__cont .post-item__meta, .single-content__cont .post-item__info, .single-content__cont .post-item__cats {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 18px;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
}
.single-content__cont .post-item__date, .single-content__cont .post-item__cats a {
				display: block;
				color: #0F0F19;
				font-size: 14px;
				font-weight: 400;
				line-height: normal;
				letter-spacing: 0.875px;
				margin-top: 11.23px;
				font-style: normal;
				text-decoration: none;
}
.single-content__cont .post-item__meta {
				margin-bottom: 15px;
}
.single-content__cont .post-item__image {
				position: relative;
				overflow: hidden;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
}
.single-content__cont .post-item__image img {
				display: block;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
				aspect-ratio: 16/9;
}
.single-content__cont .post-item__image:hover img {
				-webkit-transform: scale(1.1);
				        transform: scale(1.1);
}
.single-content__cont .post-item__image:hover h4 {
				color: #C82D2D;
}
.single-content__cont .post-item__title {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
				font-family: "Raleway", sans-serif;
				color: #2E486B;
				font-weight: 700;
				line-height: 1.33;
				letter-spacing: 0.667px;
				text-decoration: none;
				margin-top: 11.23px;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont .post-item__title {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont .post-item__title {
								font-size: 18px;
				}
}
.single-content__cont .post-item__text {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				color: #0F0F19;
				display: block;
				margin-top: 21.22px;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont .post-item__text {
								font-size: 16px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont .post-item__text {
								font-size: 16px;
				}
}
.single-content__cont .post-item .text-link {
				margin-top: 10px;
}
.single-content__cont ul,
.single-content__cont ol {
				padding-left: 15px;
				margin-bottom: 28px;
				line-height: 1.6;
}
.single-content__cont ul li {
				list-style: disc;
}
.single-content__cont a {
				color: #2E486B;
}
.single-content__cont a:hover {
				text-decoration: underline;
}
.single-content__cont blockquote {
				padding-left: 30px;
				border-left: 3px solid #2E486B;
}
.single-content__cont blockquote p {
				font-size: 30px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single-content__cont blockquote p {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				.single-content__cont blockquote p {
								font-size: 20px;
				}
}
.single-content__cont img {
				width: 100%;
				height: 100%;
				max-width: 100%;
				margin: 0 0 28px 0;
}
.single-content__cont .alignleft {
				float: left;
				max-width: 50%;
				margin-right: 30px;
}
@media only screen and (max-width: 750px) {
				.single-content__cont .alignleft {
								max-width: 100%;
				}
}
.single-content__cont .aligncenter {
				margin: 30px auto;
				display: block;
}
.single-content__cont .alignright {
				float: right;
				max-width: 50%;
				margin-left: 30px;
}
@media only screen and (max-width: 750px) {
				.single-content__cont .alignright {
								max-width: 100%;
				}
}

@media only screen and (max-width: 1050px) {
				.latest_news {
								padding: 0 0 0 33px;
				}
}
.latest_news__cont {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr 50px 1fr 50px 1fr;
				grid-template-columns: repeat(3, 1fr);
				grid-gap: 40px 50px;
}
@media only screen and (max-width: 600px) {
				.latest_news__cont {
								width: 100%;
								padding-right: 27%;
				}
}
.latest_news__cont .slick-list {
				overflow: visible;
}
.latest_news__cont .slick-slide {
				margin-right: 40px;
}
.latest_news__cont .slick-dots {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				margin: 0 7px 0 23.5px;
				width: 100vw;
				padding: 0 30px;
				margin-left: -30px;
				margin-top: 48px;
				text-align: center;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
}
.latest_news__cont .slick-dots li {
				margin: 0 23.5px;
				position: relative;
}
.latest_news__cont .slick-dots li * {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.latest_news__cont .slick-dots li * {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.latest_news__cont .slick-dots li * {
								font-size: 16px;
				}
}
.latest_news__cont .slick-dots li:before {
				position: absolute;
				left: -17px;
				top: 4px;
				width: 12px;
				height: 12px;
				border: 1px solid #2E486B;
				content: "";
				cursor: pointer;
}
.latest_news__cont .slick-dots li.slick-active:before {
				border: 1px solid #333;
				background: #333;
}
.latest_news .posts_grid__cont {
				-ms-grid-columns: (1fr)[4];
				grid-template-columns: repeat(4, 1fr);
}
.latest_news .post-cont .post-thumbnail {
				width: 100%;
				padding-top: 67.25%;
				position: relative;
				margin-bottom: 19px;
}
.latest_news .post-cont .post-thumbnail img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
}

.footer-form {
				padding: 56px 0 52px 0;
				background: #0F0F19;
				color: #ffffff;
				position: relative;
}
.footer-form__lines svg {
				position: absolute;
				left: auto;
				right: 0;
				width: 79vw;
}
.footer-form .quick-contact {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				gap: 30px;
}
@media only screen and (min-width: 900px) {
				.footer-form .quick-contact {
								-webkit-box-orient: horizontal;
								-webkit-box-direction: normal;
								    -ms-flex-direction: row;
								        flex-direction: row;
								-webkit-box-pack: justify;
								    -ms-flex-pack: justify;
								        justify-content: space-between;
				}
}
.footer-form__title {
				max-width: 380px;
				width: 100%;
}
.footer-form__title h4 {
				color: #ffffff;
				font-weight: 600;
				font-size: 35px;
				letter-spacing: 0.778px;
				text-transform: uppercase;
				font-family: "Oswald", sans-serif;
}
.footer-form__title h4 span {
				display: inline-block;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield_validation_message,
.footer-form__form .gform_wrapper.gravity-theme .validation_message,
.footer-form__form .gform_wrapper.gravity-theme .gform_validation_errors {
				background: #C82D2D;
				color: #ffffff;
				border: none;
				border-radius: 0px;
				-webkit-box-shadow: none;
				        box-shadow: none;
				margin-bottom: 10px;
				margin-top: 10px;
				padding: 8px;
				position: relative;
				width: 100%;
				font-size: 15px;
				font-weight: 700;
				line-height: 1.2;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield_validation_message h2,
.footer-form__form .gform_wrapper.gravity-theme .validation_message h2,
.footer-form__form .gform_wrapper.gravity-theme .gform_validation_errors h2 {
				color: #ffffff;
				font-weight: 700;
				font-size: 15px;
				line-height: 1.2;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield_validation_message,
.footer-form__form .gform_wrapper.gravity-theme .validation_message {
				margin-bottom: 0;
}
.footer-form__form .gform_wrapper.gravity-theme .gform_footer {
				margin: 0px 0 0;
				padding: 0px 0;
}
.footer-form__form .gform_wrapper.gravity-theme .gform_fields {
				gap: 20px;
				max-width: 700px;
}
.footer-form__form .gform_wrapper.gravity-theme .gform-button {
				padding-top: 0;
				padding-bottom: 0;
}
.footer-form__form .gform_wrapper.gravity-theme .gfield input:not([type=submit]) {
				-webkit-transition: none;
				transition: none;
}

.breadcrumb,
.woocommerce-breadcrumb {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
				color: #585858;
				width: 100%;
				text-align: center;
}
@media only screen and (max-width: 1050px) {
				.breadcrumb,
				.woocommerce-breadcrumb {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.breadcrumb,
				.woocommerce-breadcrumb {
								font-size: 16px;
				}
}
.breadcrumb span,
.breadcrumb a,
.woocommerce-breadcrumb span,
.woocommerce-breadcrumb a {
				display: inline-block;
				position: relative;
				color: #585858;
				margin: 0 15px 15px 15px;
}
.breadcrumb span:before,
.breadcrumb a:before,
.woocommerce-breadcrumb span:before,
.woocommerce-breadcrumb a:before {
				position: absolute;
				top: 0;
				left: -15px;
				width: 1px;
				height: 100%;
				background: #585858;
				content: "";
}
.breadcrumb span:nth-child(1):before,
.breadcrumb a:nth-child(1):before,
.woocommerce-breadcrumb span:nth-child(1):before,
.woocommerce-breadcrumb a:nth-child(1):before {
				display: none;
}
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover {
				color: #2E486B;
}

.service {
				padding: 0px;
}
.service .hero--page__title {
				color: #ffffff;
}
.service__faqs {
				padding: 0;
				padding-top: 105px;
				position: relative;
}
@media only screen and (max-width: 900px) {
				.service__faqs {
								padding-top: 50px;
				}
}
.service__faqs--title {
				color: #333;
				text-transform: uppercase;
				font-weight: 600;
				max-width: 380px;
				line-height: 1.22;
}
.service__faqs__grid {
				padding-top: 50px;
				padding-bottom: 50px;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				gap: 60px;
}
@media only screen and (min-width: 900px) {
				.service__faqs__grid {
								padding-top: 80px;
								padding-bottom: 100px;
								display: -ms-grid;
								display: grid;
								-ms-grid-columns: 1fr 4.7% 1fr;
								grid-template-columns: repeat(2, 1fr);
								gap: 80px 4.7%;
				}
}
.service__faqs__grid--item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				gap: 40px;
				position: relative;
				overflow: hidden;
}
.service__faqs__grid--item--title {
				font-family: "Oswald", sans-serif;
				padding-top: 10px;
				border-top: 1px solid #2E486B;
				font-weight: 600;
}
.service__faqs__grid--item--cont {
				line-height: 1.5;
				font-weight: 400;
				font-size: 16px;
}
.service__grid {
				position: relative;
				padding: 77px 0 100px 0;
				overflow: hidden;
}
.service__grid .tagline {
				margin-top: 0;
}
.service__grid--title {
				color: #333;
				text-transform: uppercase;
				font-weight: 600;
				margin-top: 8px;
				max-width: 380px;
				line-height: 1.22;
}
.service__grid__steps {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				padding-top: 61px;
				position: relative;
				gap: 60px;
}
@media only screen and (min-width: 900px) {
				.service__grid__steps {
								display: -ms-grid;
								display: grid;
								-ms-grid-columns: 1fr 4.7% 1fr 4.7% 1fr;
								grid-template-columns: repeat(3, 1fr);
								gap: 4.7%;
				}
}
.service__grid__steps .step-number {
				font-size: 70px;
				color: #BDBFC1;
				font-weight: 300;
				line-height: 80px; /* 80% */
				text-transform: uppercase;
				font-family: "Oswald", sans-serif;
}
@media only screen and (min-width: 900px) {
				.service__grid__steps .step-number {
								font-size: 100px;
				}
}
.service__grid__steps .step-title {
				margin-top: 25px;
				padding-top: 12px;
				border-top: 1px solid #2E486B;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-weight: 700;
}
.service__grid__steps .step-cont {
				margin-top: 23px;
				line-height: 1.5;
				font-size: 16px;
}
.service .included-services {
				position: relative;
				padding-top: 100px;
}
.service .included-services--title {
				text-transform: uppercase;
				font-weight: 600;
				margin-top: 10px;
				line-height: 1.22;
}
.service .included-services__grid {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				padding-top: 50px;
				position: relative;
				gap: 60px;
}
@media only screen and (min-width: 900px) {
				.service .included-services__grid {
								padding-top: 100px;
								display: -ms-grid;
								display: grid;
								-ms-grid-columns: 1fr 4.7% 1fr 4.7% 1fr;
								grid-template-columns: repeat(3, 1fr);
								gap: 4.7%;
				}
}
.service .included-services__grid .service-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				position: relative;
}
.service .included-services__grid .service-item--title {
				padding-top: 12px;
				border-top: 1px solid #2E486B;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-weight: 700;
}
.service .included-services__grid .service-item--cont {
				margin-top: 23px;
				line-height: 1.5;
				font-size: 16px;
}

.producto {
				position: relative;
				padding: 80px 0;
}
.producto__row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				padding-bottom: 40px;
}
@media only screen and (min-width: 600px) {
				.producto__row {
								-webkit-box-orient: horizontal;
								-webkit-box-direction: normal;
								    -ms-flex-direction: row;
								        flex-direction: row;
								-webkit-box-pack: justify;
								    -ms-flex-pack: justify;
								        justify-content: space-between;
								-webkit-box-align: center;
								    -ms-flex-align: center;
								        align-items: center;
								gap: 40px;
				}
}
.producto__imagen {
				width: 100%;
}
@media only screen and (min-width: 600px) {
				.producto__imagen {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 50%;
								        flex: 0 0 50%;
				}
}
@media only screen and (min-width: 900px) {
				.producto__imagen {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 30%;
								        flex: 0 0 30%;
				}
}
.producto__imagen img {
				width: 100%;
				height: auto;
}
.producto__mini {
				width: 100%;
}
@media only screen and (min-width: 600px) {
				.producto__mini {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 50%;
								        flex: 0 0 50%;
				}
}
@media only screen and (min-width: 900px) {
				.producto__mini {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 70%;
								        flex: 0 0 70%;
				}
}
.producto__mini .cat-wrapper {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 10px;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
}
.producto .descripcion_corta {
				color: #333;
				font-weight: 500;
				line-height: 1.5;
}
.producto__fotos {
				position: relative;
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
				grid-template-columns: repeat(4, 1fr);
				gap: 5px;
				padding-top: 80px;
}
@media only screen and (max-width: 1050px) {
				.producto__fotos {
								-ms-grid-columns: (1fr)[3];
								grid-template-columns: repeat(3, 1fr);
				}
}
@media only screen and (max-width: 750px) {
				.producto__fotos {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (max-width: 600px) {
				.producto__fotos {
								-ms-grid-columns: (1fr)[1];
								grid-template-columns: repeat(1, 1fr);
				}
}
.producto__fotos a {
				position: relative;
}
.producto__fotos a img {
				width: 100%;
				height: 100%;
				aspect-ratio: 1;
				-o-object-fit: cover;
				   object-fit: cover;
}

.hero {
				/* General hero definitions */
				position: relative;
				width: 100%;
				overflow: hidden;
}
.hero--title {
				color: #ffffff;
				line-height: 1;
				font-weight: 300;
}
.hero--title strong {
				font-weight: 700;
}
.hero--simple {
				margin-top: 141px;
				min-height: 405px;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				background-color: #2E486B;
}
@media only screen and (max-width: 1050px) {
				.hero--simple {
								margin-top: 65px;
				}
}
.hero--simple__lines svg {
				position: absolute;
				right: 0;
				bottom: 0;
}
.hero--simple__image:before {
				content: "";
				background: rgba(15, 15, 25, 0.3);
				width: 100%;
				height: 100%;
				position: absolute;
				left: 0;
				top: 0;
				z-index: 1;
}
.hero--simple__cont {
				height: 100%;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				padding-top: 94px;
}
@media only screen and (max-width: 767px) {
				.hero--simple__cont {
								padding-top: 0;
								-webkit-box-align: center;
								    -ms-flex-align: center;
								        align-items: center;
				}
}
.hero--simple__cont--center {
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding-top: 0;
}
.hero--simple__cont--center .hero--simple__title {
				margin-top: 0;
				-webkit-line-clamp: 3;
}
.hero--simple__tagline {
				color: #ffffff;
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				line-height: 1.3;
}
@media only screen and (max-width: 1050px) {
				.hero--simple__tagline {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.hero--simple__tagline {
								font-size: 18px;
				}
}
.hero--simple__title {
				font-size: 100px;
				color: #ffffff;
				font-weight: 300;
				line-height: 1;
				text-transform: uppercase;
				margin-top: 24px;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
}
@media only screen and (max-width: 767px) {
				.hero--simple__title {
								font-size: 64px;
								-webkit-line-clamp: 4;
				}
}
.hero--page {
				min-height: 200px;
				background-color: #333;
}
.hero--page__lines {
				width: 50%;
}
.hero--page__lines svg {
				position: absolute;
				left: 0;
				top: 0;
}
.hero--page .container {
				height: 100%;
}
.hero--page__cont {
				height: 100%;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				min-height: 200px;
}
.hero--page__tagline, .hero--page__title {
				color: #ffffff;
}

.header {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				position: fixed;
				top: 0;
				left: 0;
				z-index: 10;
				color: #2E486B;
				background-color: #ffffff;
				-webkit-transition: all 0.5s ease 0.2s;
				transition: all 0.5s ease 0.2s;
				-webkit-box-shadow: 0 6px 24px -6px rgba(0, 0, 0, 0.32);
				        box-shadow: 0 6px 24px -6px rgba(0, 0, 0, 0.32);
}
.header__topbar {
				width: 100%;
				background-color: #2E486B;
				padding: 10px 0;
				color: #ffffff;
}
.header__topbar .row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				-ms-flex-direction: row;
				    flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 20px;
}
@media only screen and (max-width: 600px) {
				.header__topbar .row {
								gap: 4px;
				}
}
.header__topbar__col {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
				gap: 10px;
}
@media only screen and (max-width: 600px) {
				.header__topbar__col {
								gap: 4px;
				}
}
.header__topbar__col.right {
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
}
.header__topbar__name {
				text-transform: uppercase;
				font-size: 18px;
}
.header__topbar__name strong {
				font-weight: 900;
}
@media only screen and (max-width: 600px) {
				.header__topbar__name {
								font-size: 16px;
								letter-spacing: -0.05em;
				}
}
@media only screen and (max-width: 375px) {
				.header__topbar__name {
								font-size: 14px;
				}
}
@media only screen and (max-width: 600px) {
				.header__topbar__data {
								font-size: 12px;
								letter-spacing: -0.05em;
				}
}
.header__menu {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				width: 100%;
				padding: 15px 0;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
}
@media only screen and (max-width: 600px) {
				.header__menu {
								gap: 15px;
				}
}
.header__menu .end {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 20px;
}
.header__mobile {
				opacity: 0;
				position: absolute;
				left: 100%;
				top: 100%;
				background: #0F0F19;
				color: #ffffff;
				width: 100%;
				padding: 0 15px 22px 15px;
				border-top: 1px solid #BDBFC1;
				-webkit-transition: all 0.3s ease;
				transition: all 0.3s ease;
				height: calc(100vh - 66px);
				overflow-y: auto;
}
.header__mobile .button {
				height: 42px;
				width: 100%;
				max-width: 600px;
				text-align: center;
				padding: 0;
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				font-size: 18px;
				margin: 22px auto;
}
.header__mobile .header__top-link {
				text-align: center;
				font-size: 20px;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				padding: 22px 0;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
				.header__mobile .header__top-link {
								font-size: 16px;
				}
}
.header__mobile .header__top-email {
				text-align: center;
				font-size: 20px;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				padding: 22px 0;
}
@media only screen and (max-width: 600px) {
				.header__mobile .header__top-email {
								font-size: 16px;
				}
}
.header__mobile-group {
				text-align: center;
}
.header.hide {
				top: -200px;
				opacity: 0;
}

.menu-responsive-open .header__mobile {
				opacity: 1;
				left: 0;
}

.menu-responsive-open .hide {
				top: 0;
				opacity: 1;
}

.error_template {
				padding: 200px 0;
}
.error_template .page-content {
				width: 50%;
				margin-top: 20px;
}
@media only screen and (max-width: 600px) {
				.error_template .page-content {
								width: 100%;
				}
}

.site-main {
				margin-top: 203px;
}
@media only screen and (max-width: 1050px) {
				.site-main {
								margin-top: 113px;
				}
}

.site-footer {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				background-color: #2E486B;
				color: #ffffff;
				position: relative;
				padding: 40px 0;
}
.site-footer__row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding-top: 40px;
				gap: 20px;
}
@media only screen and (min-width: 900px) {
				.site-footer__row {
								-webkit-box-orient: horizontal;
								-webkit-box-direction: normal;
								    -ms-flex-direction: row;
								        flex-direction: row;
								-webkit-box-pack: justify;
								    -ms-flex-pack: justify;
								        justify-content: space-between;
				}
}
.site-footer__column {
				-webkit-box-flex: 0;
				    -ms-flex: 0 1 25%;
				        flex: 0 1 25%;
}
.site-footer__column:last-child {
				-webkit-box-flex: 0;
				    -ms-flex: 0 0 calc(75% - 20px);
				        flex: 0 0 calc(75% - 20px);
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
}
@media only screen and (min-width: 900px) {
				.site-footer__column:last-child {
								-webkit-box-align: end;
								    -ms-flex-align: end;
								        align-items: flex-end;
				}
}
@media only screen and (max-width: 900px) {
				.site-footer__column {
								-webkit-box-flex: 0;
								    -ms-flex: 0 1 100%;
								        flex: 0 1 100%;
								width: 100%;
				}
				.site-footer__column > img {
								width: 100%;
				}
}
.site-footer .site-logo {
				max-width: 200px;
}
@media only screen and (max-width: 900px) {
				.site-footer .site-logo {
								margin: 0 auto;
				}
}
.site-footer__menu {
				margin-bottom: 10px;
				width: 100%;
}
.site-footer__menu ul {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				width: 100%;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 20px;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
}
@media only screen and (min-width: 900px) {
				.site-footer__menu ul {
								-webkit-box-align: center;
								    -ms-flex-align: center;
								        align-items: center;
								-webkit-box-pack: end;
								    -ms-flex-pack: end;
								        justify-content: flex-end;
				}
}
.site-footer__menu li {
				margin-bottom: 8px;
				font-size: 16px;
				line-height: 1.42;
				font-weight: 700;
}
.site-footer__menu li a {
				color: #ffffff;
				text-decoration: none;
				font-size: 16px;
				text-transform: uppercase;
}
.site-footer__menu li a:hover {
				text-decoration: underline;
}
.site-footer__menu li a:empty {
				display: none;
}
.site-footer .socials {
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
}
.site-footer .socials a {
				width: 36px;
				height: 36px;
				border-radius: 50px;
				background-color: #2E486B;
}
.site-footer .socials a svg {
				width: 36px;
				height: 36px;
}
.site-footer .socials a svg path {
				fill: #ffffff;
}
.site-footer .socials a svg g path {
				fill: #2E486B;
}

.copyright {
				background-color: #0F0F19;
				font-size: 14px;
				font-weight: 300;
				color: #ffffff;
				text-align: center;
				line-height: 1;
				letter-spacing: 0.875px;
				padding: 8px 0;
}

/*!
 * Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
				--fa-style-family-brands: "Font Awesome 6 Brands";
				--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
				font-family: "Font Awesome 6 Brands";
				font-style: normal;
				font-weight: 400;
				font-display: block;
				src: url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
				font-weight: 400;
				font-family: "Font Awesome 6 Brands";
				font-style: normal;
}

.fa-vimeo-v:before {
				content: "\f27d";
}

.fa-square-instagram:before {
				content: "\e055";
}

.fa-instagram-square:before {
				content: "\e055";
}

.fa-google:before {
				content: "\f1a0";
}

.fa-linkedin-in:before {
				content: "\f0e1";
}

.fa-square-twitter:before {
				content: "\f081";
}

.fa-twitter-square:before {
				content: "\f081";
}

.fa-square-youtube:before {
				content: "\f431";
}

.fa-youtube-square:before {
				content: "\f431";
}

.fa-square-vimeo:before {
				content: "\f194";
}

.fa-vimeo-square:before {
				content: "\f194";
}

.fa-square-pinterest:before {
				content: "\f0d3";
}

.fa-pinterest-square:before {
				content: "\f0d3";
}

.fa-facebook-f:before {
				content: "\f39e";
}

.fa-spotify:before {
				content: "\f1bc";
}

.fa-facebook-messenger:before {
				content: "\f39f";
}

.fa-tiktok:before {
				content: "\e07b";
}

.fa-square-facebook:before {
				content: "\f082";
}

.fa-facebook-square:before {
				content: "\f082";
}

.fa-linkedin:before {
				content: "\f08c";
}

.fa-vimeo:before {
				content: "\f40a";
}

.fa-instagram:before {
				content: "\f16d";
}

.fa-facebook:before {
				content: "\f09a";
}

.fa-whatsapp:before {
				content: "\f232";
}

.fa-youtube:before {
				content: "\f167";
}

.fa-twitter:before {
				content: "\f099";
}

.fa-square-whatsapp:before {
				content: "\f40c";
}

.fa-whatsapp-square:before {
				content: "\f40c";
}

/**
 * Swiper 9.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 13, 2023
 */
@font-face {
				font-family: "swiper-icons";
				src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
				font-weight: 400;
				font-style: normal;
}
:root {
				--swiper-theme-color: #007aff;
				/*
				--swiper-preloader-color: var(--swiper-theme-color);
				--swiper-wrapper-transition-timing-function: initial;
				*/
}

.swiper,
swiper-container {
				margin-left: auto;
				margin-right: auto;
				position: relative;
				overflow: hidden;
				list-style: none;
				padding: 0;
				/* Fix of Webkit flickering */
				z-index: 1;
				display: block;
}

.swiper-vertical > .swiper-wrapper {
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
}

.swiper-wrapper {
				position: relative;
				width: 100%;
				height: 100%;
				z-index: 1;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-transition-property: -webkit-transform;
				transition-property: -webkit-transform;
				transition-property: transform;
				transition-property: transform, -webkit-transform;
				-webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
				        transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
				-webkit-box-sizing: content-box;
				        box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
				-webkit-transform: translate3d(0px, 0, 0);
				        transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
				-ms-touch-action: pan-y;
				    touch-action: pan-y;
}

.swiper-vertical {
				-ms-touch-action: pan-x;
				    touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
				-ms-flex-negative: 0;
				    flex-shrink: 0;
				width: 100%;
				height: 100%;
				position: relative;
				-webkit-transition-property: -webkit-transform;
				transition-property: -webkit-transform;
				transition-property: transform;
				transition-property: transform, -webkit-transform;
				display: block;
}

.swiper-slide-invisible-blank {
				visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
				height: auto;
}

.swiper-autoheight .swiper-wrapper {
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				-webkit-transition-property: height, -webkit-transform;
				transition-property: height, -webkit-transform;
				transition-property: transform, height;
				transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
				-webkit-transform: translateZ(0);
				        transform: translateZ(0);
				-webkit-backface-visibility: hidden;
				        backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
				-webkit-perspective: 1200px;
				        perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
				-webkit-transform-style: preserve-3d;
				        transform-style: preserve-3d;
}

.swiper-3d {
				-webkit-perspective: 1200px;
				        perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
				-webkit-transform-style: preserve-3d;
				        transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				pointer-events: none;
				z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
				background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
				background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
				background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
				background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
				background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
				background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
				background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
				background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
				background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
				overflow: auto;
				scrollbar-width: none; /* For Firefox */
				-ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
				display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
				scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
				-ms-scroll-snap-type: x mandatory;
				    scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
				-ms-scroll-snap-type: y mandatory;
				    scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
				content: "";
				-ms-flex-negative: 0;
				    flex-shrink: 0;
				-webkit-box-ordinal-group: 10000;
				    -ms-flex-order: 9999;
				        order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
				scroll-snap-align: center center;
				scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
				-webkit-margin-start: var(--swiper-centered-offset-before);
				        margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
				height: 100%;
				min-height: 1px;
				width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
				-webkit-margin-before: var(--swiper-centered-offset-before);
				        margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
				width: 100%;
				min-width: 1px;
				height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
				width: 42px;
				height: 42px;
				position: absolute;
				left: 50%;
				top: 50%;
				margin-left: -21px;
				margin-top: -21px;
				z-index: 10;
				-webkit-transform-origin: 50%;
				        transform-origin: 50%;
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
				border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
				border-radius: 50%;
				border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
				-webkit-animation: swiper-preloader-spin 1s infinite linear;
				        animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
				--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
				--swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
				0% {
								-webkit-transform: rotate(0deg);
								        transform: rotate(0deg);
				}
				100% {
								-webkit-transform: rotate(360deg);
								        transform: rotate(360deg);
				}
}

@keyframes swiper-preloader-spin {
				0% {
								-webkit-transform: rotate(0deg);
								        transform: rotate(0deg);
				}
				100% {
								-webkit-transform: rotate(360deg);
								        transform: rotate(360deg);
				}
}
.featured {
				position: relative;
				padding: 0 0 50px;
				overflow: hidden;
				/*
				    &.related_news{
				        margin-top: 0;
				        padding-top: 20px;
				        color: $white;
				        .section-title{
				            color: $white;
				            margin-bottom: 50px;
				        }
				    }
				    */
}
.featured__grid {
				position: relative;
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 10px 20px;
				width: 100%;
				max-width: 100%;
				overflow: hidden;
}
@media only screen and (min-width: 750px) {
				.featured__grid {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
.featured__grid__item {
				position: relative;
}
.featured__grid__item .post-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				gap: 18px;
				border-bottom: 2px solid #2E486B;
				padding-bottom: 10px;
}
.featured__grid__item .post-item a {
				text-decoration: none;
}
.featured__grid__item .post-item a:hover .post-item__title {
				color: #0F0F19;
}
@media only screen and (min-width: 750px) {
				.featured__grid__item .post-item {
								display: -ms-grid;
								display: grid;
								-ms-grid-columns: 1fr 20px 1fr;
								grid-template-columns: repeat(2, 1fr);
								gap: 20px;
				}
}
.featured__grid__item .post-item__text {
				display: none;
}
@media only screen and (min-width: 750px) {
				.featured__grid__item:first-child {
								-ms-grid-row-span: 3;
								grid-row: span 3;
								height: 100%;
				}
				.featured__grid__item:first-child__image {
								aspect-ratio: 4/3;
				}
}
@media only screen and (min-width: 750px) and (min-width: 750px) {
				.featured__grid__item:first-child .post-item {
								border-bottom: none;
								display: -webkit-box;
								display: -ms-flexbox;
								display: flex;
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								gap: 18px;
				}
}
@media only screen and (min-width: 750px) {
				.featured__grid__item:first-child .post-item__title {
								font-size: 35px;
								font-family: "Raleway", sans-serif;
								font-weight: 400;
								font-weight: 700;
				}
}
@media only screen and (min-width: 750px) and (max-width: 1050px) {
				.featured__grid__item:first-child .post-item__title {
								font-size: 28px;
				}
}
@media only screen and (min-width: 750px) and (max-width: 600px) {
				.featured__grid__item:first-child .post-item__title {
								font-size: 24px;
				}
}
.featured__grid__item:last-child .post-item {
				border-bottom: none;
}

.blog__grid {
				position: relative;
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 20px;
				padding-bottom: 40px;
				width: 100%;
				max-width: 100%;
				overflow: hidden;
}
@media only screen and (min-width: 750px) {
				.blog__grid {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (min-width: 900px) {
				.blog__grid {
								-ms-grid-columns: (1fr)[3];
								grid-template-columns: repeat(3, 1fr);
				}
}
.blog__grid__item {
				position: relative;
}

.destacadas-full {
				position: relative;
				padding-bottom: 80px;
				overflow: hidden;
}
.destacadas-full .row {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 30px;
}
@media only screen and (min-width: 750px) {
				.destacadas-full .row {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (min-width: 900px) {
				.destacadas-full .row {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (min-width: 900px) {
				.destacadas-full .row.col-3 {
								-ms-grid-columns: (1fr)[3];
								grid-template-columns: repeat(3, 1fr);
				}
}
.destacadas-full .post_grid_item {
				position: relative;
}

.post-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				position: relative;
				overflow: hidden;
				height: 100%;
}
.post-item__cont {
				text-decoration: none;
}
.post-item__cont a {
				text-decoration: none;
}
.post-item__meta, .post-item__info, .post-item__cats {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 18px;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
}
.post-item__date, .post-item__cats a {
				display: block;
				color: #0F0F19;
				font-size: 14px;
				font-weight: 400;
				line-height: normal;
				letter-spacing: 0.875px;
				margin-top: 11.23px;
				font-style: normal;
				text-decoration: none;
}
.post-item__meta {
				margin-bottom: 15px;
}
.post-item__image {
				position: relative;
				overflow: hidden;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
}
.post-item__image img {
				display: block;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
				aspect-ratio: 16/9;
}
.post-item__image:hover img {
				-webkit-transform: scale(1.1);
				        transform: scale(1.1);
}
.post-item__image:hover h4 {
				color: #C82D2D;
}
.post-item__title {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
				font-family: "Raleway", sans-serif;
				color: #2E486B;
				font-weight: 700;
				line-height: 1.33;
				letter-spacing: 0.667px;
				text-decoration: none;
				margin-top: 11.23px;
}
@media only screen and (max-width: 1050px) {
				.post-item__title {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.post-item__title {
								font-size: 18px;
				}
}
.post-item__text {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				color: #0F0F19;
				display: block;
				margin-top: 21.22px;
}
@media only screen and (max-width: 1050px) {
				.post-item__text {
								font-size: 16px;
				}
}
@media only screen and (max-width: 600px) {
				.post-item__text {
								font-size: 16px;
				}
}
.post-item .text-link {
				margin-top: 10px;
}

.blog .filters {
				position: relative;
				padding-bottom: 40px;
}
.blog .filters button {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				padding: 8px 8px;
				border: 1px solid #333;
				border-radius: 8px;
				cursor: pointer;
}
@media only screen and (max-width: 1050px) {
				.blog .filters button {
								font-size: 16px;
				}
}
@media only screen and (max-width: 600px) {
				.blog .filters button {
								font-size: 16px;
				}
}
.blog .filters button:hover, .blog .filters button.active {
				background-color: #333;
				color: #ffffff;
}
.blog .row {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 20px;
				padding-bottom: 40px;
}
@media only screen and (min-width: 750px) {
				.blog .row {
								-ms-grid-columns: (1fr)[2];
								grid-template-columns: repeat(2, 1fr);
				}
}
@media only screen and (min-width: 900px) {
				.blog .row {
								-ms-grid-columns: (1fr)[3];
								grid-template-columns: repeat(3, 1fr);
				}
}
.blog .blogpagination {
				width: 100%;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 10px;
}
.blog .blogpagination .page-numbers {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				padding: 8px 8px;
				border: 1px solid #333;
				border-radius: 8px;
				cursor: pointer;
}
@media only screen and (max-width: 1050px) {
				.blog .blogpagination .page-numbers {
								font-size: 16px;
				}
}
@media only screen and (max-width: 600px) {
				.blog .blogpagination .page-numbers {
								font-size: 16px;
				}
}
.blog .blogpagination .page-numbers:hover, .blog .blogpagination .page-numbers.active {
				background-color: #333;
				color: #ffffff;
}

.single:not(body),
.blog {
				position: relative;
				padding: 40px 0;
}
.single:not(body) .row,
.blog .row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 20px;
}
@media only screen and (min-width: 900px) {
				.single:not(body) .row,
				.blog .row {
								-webkit-box-orient: horizontal;
								-webkit-box-direction: normal;
								    -ms-flex-direction: row;
								        flex-direction: row;
								-webkit-box-pack: justify;
								    -ms-flex-pack: justify;
								        justify-content: space-between;
								-webkit-box-align: start;
								    -ms-flex-align: start;
								        align-items: flex-start;
				}
}
.single:not(body) .row .post-single h1,
.single:not(body) .row .post-single h2,
.single:not(body) .row .post-single h3,
.single:not(body) .row .post-single h4,
.single:not(body) .row .post-single h5,
.single:not(body) .row .post-single h6,
.blog .row .post-single h1,
.blog .row .post-single h2,
.blog .row .post-single h3,
.blog .row .post-single h4,
.blog .row .post-single h5,
.blog .row .post-single h6 {
				color: #2E486B;
				font-weight: 400;
}
.single:not(body) .row .post-single h1,
.blog .row .post-single h1 {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h1,
				.blog .row .post-single h1 {
								font-size: 32px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h1,
				.blog .row .post-single h1 {
								font-size: 28px;
				}
}
.single:not(body) .row .post-single h2,
.blog .row .post-single h2 {
				font-size: 36px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
				margin-bottom: 8px;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h2,
				.blog .row .post-single h2 {
								font-size: 30px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h2,
				.blog .row .post-single h2 {
								font-size: 26px;
				}
}
.single:not(body) .row .post-single h3,
.blog .row .post-single h3 {
				font-size: 35px;
				font-family: "Raleway", sans-serif;
				font-weight: 400;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h3,
				.blog .row .post-single h3 {
								font-size: 28px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h3,
				.blog .row .post-single h3 {
								font-size: 24px;
				}
}
.single:not(body) .row .post-single h4,
.blog .row .post-single h4 {
				font-size: 30px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h4,
				.blog .row .post-single h4 {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h4,
				.blog .row .post-single h4 {
								font-size: 20px;
				}
}
.single:not(body) .row .post-single h5,
.blog .row .post-single h5 {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h5,
				.blog .row .post-single h5 {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h5,
				.blog .row .post-single h5 {
								font-size: 18px;
				}
}
.single:not(body) .row .post-single h6,
.blog .row .post-single h6 {
				font-size: 18px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single h6,
				.blog .row .post-single h6 {
								font-size: 17px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single h6,
				.blog .row .post-single h6 {
								font-size: 16px;
				}
}
.single:not(body) .row .post-single p,
.blog .row .post-single p {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				line-height: 1.4;
				margin-bottom: 1em;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single p,
				.blog .row .post-single p {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single p,
				.blog .row .post-single p {
								font-size: 18px;
				}
}
.single:not(body) .row .post-single .post-item,
.blog .row .post-single .post-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				width: 100%;
				position: relative;
				overflow: hidden;
				height: 100%;
}
.single:not(body) .row .post-single .post-item__cont,
.blog .row .post-single .post-item__cont {
				text-decoration: none;
}
.single:not(body) .row .post-single .post-item__cont a,
.blog .row .post-single .post-item__cont a {
				text-decoration: none;
}
.single:not(body) .row .post-single .post-item__meta, .single:not(body) .row .post-single .post-item__info, .single:not(body) .row .post-single .post-item__cats,
.blog .row .post-single .post-item__meta,
.blog .row .post-single .post-item__info,
.blog .row .post-single .post-item__cats {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 18px;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
}
.single:not(body) .row .post-single .post-item__date, .single:not(body) .row .post-single .post-item__cats a,
.blog .row .post-single .post-item__date,
.blog .row .post-single .post-item__cats a {
				display: block;
				color: #0F0F19;
				font-size: 14px;
				font-weight: 400;
				line-height: normal;
				letter-spacing: 0.875px;
				margin-top: 11.23px;
				font-style: normal;
				text-decoration: none;
}
.single:not(body) .row .post-single .post-item__meta,
.blog .row .post-single .post-item__meta {
				margin-bottom: 15px;
}
.single:not(body) .row .post-single .post-item__image,
.blog .row .post-single .post-item__image {
				position: relative;
				overflow: hidden;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
}
.single:not(body) .row .post-single .post-item__image img,
.blog .row .post-single .post-item__image img {
				display: block;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
				aspect-ratio: 16/9;
}
.single:not(body) .row .post-single .post-item__image:hover img,
.blog .row .post-single .post-item__image:hover img {
				-webkit-transform: scale(1.1);
				        transform: scale(1.1);
}
.single:not(body) .row .post-single .post-item__image:hover h4,
.blog .row .post-single .post-item__image:hover h4 {
				color: #C82D2D;
}
.single:not(body) .row .post-single .post-item__title,
.blog .row .post-single .post-item__title {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				-webkit-transition: all 0.6s ease-out;
				transition: all 0.6s ease-out;
				-webkit-transition-delay: 0;
				        transition-delay: 0;
				font-family: "Raleway", sans-serif;
				color: #2E486B;
				font-weight: 700;
				line-height: 1.33;
				letter-spacing: 0.667px;
				text-decoration: none;
				margin-top: 11.23px;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single .post-item__title,
				.blog .row .post-single .post-item__title {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single .post-item__title,
				.blog .row .post-single .post-item__title {
								font-size: 18px;
				}
}
.single:not(body) .row .post-single .post-item__text,
.blog .row .post-single .post-item__text {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				color: #0F0F19;
				display: block;
				margin-top: 21.22px;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single .post-item__text,
				.blog .row .post-single .post-item__text {
								font-size: 16px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single .post-item__text,
				.blog .row .post-single .post-item__text {
								font-size: 16px;
				}
}
.single:not(body) .row .post-single .post-item .text-link,
.blog .row .post-single .post-item .text-link {
				margin-top: 10px;
}
.single:not(body) .row .post-single ul,
.single:not(body) .row .post-single ol,
.blog .row .post-single ul,
.blog .row .post-single ol {
				padding-left: 15px;
				margin-bottom: 28px;
				line-height: 1.6;
}
.single:not(body) .row .post-single ul li,
.blog .row .post-single ul li {
				list-style: disc;
}
.single:not(body) .row .post-single a,
.blog .row .post-single a {
				color: #2E486B;
}
.single:not(body) .row .post-single a:hover,
.blog .row .post-single a:hover {
				text-decoration: underline;
}
.single:not(body) .row .post-single blockquote,
.blog .row .post-single blockquote {
				padding-left: 30px;
				border-left: 3px solid #2E486B;
}
.single:not(body) .row .post-single blockquote p,
.blog .row .post-single blockquote p {
				font-size: 30px;
				font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 1050px) {
				.single:not(body) .row .post-single blockquote p,
				.blog .row .post-single blockquote p {
								font-size: 25px;
				}
}
@media only screen and (max-width: 600px) {
				.single:not(body) .row .post-single blockquote p,
				.blog .row .post-single blockquote p {
								font-size: 20px;
				}
}
.single:not(body) .row .post-single img,
.blog .row .post-single img {
				width: 100%;
				height: 100%;
				max-width: 100%;
				margin: 0 0 28px 0;
}
.single:not(body) .row .post-single .alignleft,
.blog .row .post-single .alignleft {
				float: left;
				max-width: 50%;
				margin-right: 30px;
}
@media only screen and (max-width: 750px) {
				.single:not(body) .row .post-single .alignleft,
				.blog .row .post-single .alignleft {
								max-width: 100%;
				}
}
.single:not(body) .row .post-single .aligncenter,
.blog .row .post-single .aligncenter {
				margin: 30px auto;
				display: block;
}
.single:not(body) .row .post-single .alignright,
.blog .row .post-single .alignright {
				float: right;
				max-width: 50%;
				margin-left: 30px;
}
@media only screen and (max-width: 750px) {
				.single:not(body) .row .post-single .alignright,
				.blog .row .post-single .alignright {
								max-width: 100%;
				}
}
@media only screen and (min-width: 900px) {
				.single:not(body) .row .post-single,
				.blog .row .post-single {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 calc(75% - 20px);
								        flex: 0 0 calc(75% - 20px);
				}
}
.single:not(body) .row .post-single > img,
.blog .row .post-single > img {
				width: 100%;
				height: auto;
				-o-object-fit: cover;
				   object-fit: cover;
}
@media only screen and (min-width: 900px) {
				.single:not(body) .row .sidebar,
				.blog .row .sidebar {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 25%;
								        flex: 0 0 25%;
				}
}
.single:not(body) .row .sidebar--banners,
.blog .row .sidebar--banners {
				position: relative;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				gap: 20px;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				-ms-grid-column-align: start;
				    justify-self: start;
}

.most {
				position: relative;
				padding: 40px 20px;
				background-color: #2E486B;
				color: #ffffff;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				gap: 10px;
				margin-bottom: 20px;
}
.most h4 {
				font-size: 20px;
				font-family: "Raleway", sans-serif;
				display: block;
				border-bottom: 1px solid #ffffff;
}
@media only screen and (max-width: 1050px) {
				.most h4 {
								font-size: 19px;
				}
}
@media only screen and (max-width: 600px) {
				.most h4 {
								font-size: 18px;
				}
}
.most a {
				color: #ffffff;
				text-decoration: none;
				padding-bottom: 10px;
				margin-bottom: 10px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.5);
				line-height: 1.5;
}
.most a:hover {
				text-decoration: underline;
}

.banners {
				position: relative;
				padding: 20px 0;
}
.banners .banner {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
}
.banners .banner.banner_ancho {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				width: 100%;
				gap: 20px;
}
@media only screen and (max-width: 1050px) {
				.banners .banner.banner_ancho {
								-ms-flex-wrap: wrap;
								    flex-wrap: wrap;
								-webkit-box-pack: justify;
								    -ms-flex-pack: justify;
								        justify-content: space-between;
				}
}
@media only screen and (max-width: 1050px) {
				.banners .banner.banner_ancho > a {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 100%;
								        flex: 0 0 100%;
				}
}
@media only screen and (max-width: 1050px) {
				.banners .banner.banner_ancho > .widget, .banners .banner.banner_ancho > .widget-dolar {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 calc(50% - 10px);
								        flex: 0 0 calc(50% - 10px);
				}
				.banners .banner.banner_ancho > .widget iframe, .banners .banner.banner_ancho > .widget-dolar iframe {
								width: 100%;
				}
}
.banners .banner.banner_ancho img {
				max-width: 100%;
}
@media only screen and (min-width: 1050px) {
				.banners .banner.banner_col {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 45%;
								        flex: 0 0 45%;
								max-width: 45%;
				}
}
@media only screen and (min-width: 1050px) {
				.banners.banner--3 .banner_col {
								-webkit-box-flex: 0;
								    -ms-flex: 0 0 calc(33% - 15px);
								        flex: 0 0 calc(33% - 15px);
								max-width: calc(33% - 15px);
				}
}
.banners__row {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 30px;
}
@media only screen and (max-width: 600px) {
				.banners__row {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								gap: 20px;
				}
}
/*# sourceMappingURL=style.css.map */