@font-face {
  font-family: 'Norman';
  src: url('../fonts/Norman-Regular.woff2') format('woff2'),
       url('../fonts/Norman-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Stelvio Grotesk';
  src: url('../fonts/StelvioGrotesk-Light.woff2') format('woff2'),
       url('../fonts/StelvioGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Stelvio Grotesk';
  src: url('../fonts/StelvioGrotesk-Medium.woff2') format('woff2'),
       url('../fonts/StelvioGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
	--color1: #ff3265;
	--color2: #FF5722;
	--radius: 3px;
	--shadow: 0px 2px 10px rgb(0 0 0 / 15%);
	--gap: 2rem;
}

html {
	font-size: 24px;
	line-height: 1.2;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	font-family: 'Stelvio Grotesk', Arial, sans-serif;
	font-weight: 300;
	color: #000000;	
}
::selection {
	background: #000;
	text-shadow: none;
	color: #fff;
}
strong {
	font-family: 'Stelvio Grotesk', Arial, sans-serif;
	font-weight: 500;
}



/* TXT */
.col-split {
	column-count: 2;
	column-gap: 1rem;
}
.txt-center {
	text-align: center;
}
.txt h1 {
  font-size: 2em;
  padding-bottom: .5em;
  font-weight: bold;
}
.txt h2,
.txt h3 {
  font-size: 1.6em;
  padding-top: 1em;
  padding-bottom: .6em;
  font-weight: bold;
}
.txt p {
  padding-bottom: .3em;
}
.txt strong {
	font-weight: bold;
}
.txt img {
	margin-bottom: 1rem;
}
.txt ul {
  list-style: circle;
  margin-bottom: 1em;
  padding-left: 2em;
}
.txt ol {
  list-style: decimal;
  margin-bottom: 1em;
  padding-left: 2em;
}
.txt li {
  list-style: inherit;
}


.txt a,
.txt a:visited {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;

  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.txt a:hover,
.txt a:focus {
  color: #ff3265;
  text-decoration: underline;
  outline: none;
}







/* TITLE */
h1.title {
	position: relative;
	display: inline-block;
	font-size: 3em;
	margin: 1em 0;
	line-height: 1.2;
	letter-spacing: 1px;
	font-weight: bold;

	color: white;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h1.title:after {
	content: '';
	position: absolute;
	width: 2em;
	height: 1px;
	left: 0;
	bottom: 0;
	z-index: -1;
	background-color: #000;
}


hr {
  height: 1px;
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #eee;
  clear: both;
}


/* BTN */
a.btn {
	display: inline-block;
	cursor: pointer;
	padding: 6px 25px;
	margin: 1rem 0;
	text-decoration: none;
	font-weight: 600;
	border-radius: 20px;
	margin-right: .5rem;
	box-shadow: inset 0 0 0 2px #000;
}
a.btn:hover,
a.btn:focus {
	outline: none;
	color: #fff;
	background-color: #000;
	text-decoration: none;
}


.spacer20  { width:100%; height: 20px; }
.spacer40  { width:100%; height: 40px; }
.spacer60  { width:100%; height: 60px; }
.spacer80  { width:100%; height: 80px; }
.spacer100 { width:100%; height: 100px; }
.spacer120 { width:100%; height: 120px; }
.spacer140 { width:100%; height: 140px; }
.spacer160 { width:100%; height: 160px; }
.spacer180 { width:100%; height: 180px; }
.spacer200 { width:100%; height: 200px; }
.spacer400 { width:100%; height: 400px; }

@media (max-width: 767px) {

	.spacer40,
	.spacer60,
	.spacer80 {
		height: 40px;
	}

	.spacer120,
	.spacer160 {
		height: 40px;
	}

}


/* SWIPER SCROLL */
.swiper-scroll-1,
.swiper-scroll-2,
.swiper-scroll-3,
.swiper-scroll-4,
.swiper-scroll-5 {
	position: relative;
}
.swiper-scroll-1 .swiper-slide {
	width: 100%;
	margin: 0 1rem 0 0;
}
.swiper-scroll-2 .swiper-slide {
	width: calc(50% - .5rem);
	margin: 0 1rem 0 0;
}
.swiper-scroll-3 .swiper-slide {
	width: calc(33.33% - .66rem);
	margin: 0 1rem 0 0;
}
.swiper-scroll-4 .swiper-slide {
	width: calc(25% - .75rem);
	margin: 0 1rem 0 0;
}
.swiper-scroll-5 .swiper-slide {
	width: calc(20% - .80rem);
	margin: 0 1rem 0 0;
}
.swiper-scroll-2 .swiper-slide:last-of-type,
.swiper-scroll-3 .swiper-slide:last-of-type,
.swiper-scroll-4 .swiper-slide:last-of-type,
.swiper-scroll-5 .swiper-slide:last-of-type {
	margin: 0;
}
@media (max-width: 1240px) {
	.swiper-scroll-5 .swiper-slide {
		width: calc(33.33% - .66rem);
	}
}
@media (max-width: 991px) {
	.swiper-scroll-2 .swiper-slide,
	.swiper-scroll-3 .swiper-slide,
	.swiper-scroll-4 .swiper-slide,
	.swiper-scroll-5 .swiper-slide {
		width: calc(50% - .5rem);
	}
}
@media (max-width: 767px) {
	.swiper-scroll-1 .swiper-slide,
	.swiper-scroll-2 .swiper-slide,
	.swiper-scroll-3 .swiper-slide,
	.swiper-scroll-4 .swiper-slide,
	.swiper-scroll-5 .swiper-slide {
		width: calc(80% - 1rem);
	}
}



/* SWIPER FADE */
.swiper-fade {
	position: relative;
	margin-bottom: 1rem;
}
.swiper-fade .swiper-slide {
}


/* SOCIAL */
.social {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 4px;
	background-color: #000;
	background-repeat: no-repeat;
	border-radius: 50%;

	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.social:hover,
.social:focus {
	filter: invert(100%);
}
.social.facebook { background-image: url(../img/social/facebook.svg) }
.social.instagram { background-image: url(../img/social/instagram.svg) }
.social.linkedin { background-image: url(../img/social/linkedin.svg) }
.social.whatsapp { background-image: url(../img/social/whatsapp.svg) }
.social.email { background-image: url(../img/social/email.svg) }


/* WPML */
.language-selector {}
.language-selector a {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	margin: 4px;
	border-radius: 50%;
	background-color: #000;
	color: #fff !important;
}
.language-selector a:hover,
.language-selector a:focus {
	filter: invert(100%);
}


/* PAGINATION */
.post-pagination {
	display: block;
	clear: both;
	font-size: 0;
	text-align: center;
	font-size: 0.9em;
	margin: 20px 0;
}
.post-pagination .page-numbers {
	display: inline-block;
	text-decoration: none;
	line-height: 40px;
	width: 30px;
	text-align: center;
}
.post-pagination a:hover {
	text-decoration: none;
	box-shadow: inset 0px -2px 0px #dedede;
}
.post-pagination span.current {
	box-shadow: inset 0px -2px 0px #9a9a9a;
    font-weight: bold;
}
.post-pagination .page-numbers.prev {
	background-image: url(../icons/arrow-left.svg);
	background-repeat: no-repeat;
	background-position: center;
	display: none;
}
.post-pagination .page-numbers.next {
	background-image: url(../icons/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center;
}
.post-pagination-max {
	text-align: center;
	font-size: .8em;
	color: #888;
}
.post-noresult {
	text-align: center;
}



/* SINGLE TAGS LIST */
.post-tags {
	margin: 20px 0;
}
.post-tags li {
	display: inline-block;
	border: 1px solid #ddd;
	margin: 0 5px 5px 0;
	font-size: .9em;
}
.post-tags li a {
	padding: 7px;
	display: block;
}
.post-tags li a:hover {
	background-color: #444;
	color: #fff;
	text-decoration: none;
}


/* COOKIE BAR */
#cookiebar {
	position: fixed;
	bottom: 0;
	left: 0;
	display: block;
	padding: 2rem;
	background: #fff;
	font-size: 14px;
	width: 100%;
	z-index: 9999;
}
#cookiebar .cookie-wrap {
	max-width: 992px;
	margin: 0 auto;
}
#cookiebar .cookie-txt {
	width: 100%;
}
#cookiebar .cookie-txt p {
	padding: 0;
	margin: 0;
	padding-bottom: 1rem;
}
#cookiebar .cookie-txt strong {
	font-weight: 600;
}
#cookiebar .cookie-txt a {
	text-decoration: underline;
}
#cookiebar .cookie-btn {
	text-align: right;
}
#cookiebar .cookie-btn > * {
	cursor: pointer;
	background-color: #a7a7a7;
	text-align: center;
	font-weight: 600;
	color: #fff;
	padding: 8px 32px;
	display: inline-block;
	border-radius: 100px;
	margin-left: 10px;
}
#cookiebar #cookie-btn-1 {
	background-color: #0073CE;
}

@media (max-width: 767px) {
}


/* 404 */
body.error404 main {
	background-color: #e35f5d;
	color: #fff;
}
.p404 {
	background-image: url('../icons/404.svg');
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 100px;
	margin: 100px 0;
	text-align: center;
	font-size: 1.2rem;
}
.p404 strong {
	text-transform: uppercase;
	font-size: 1.2em;
}



/* PRIVACY PAGE */
.privacy-policy {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}
.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy a,
.privacy-policy strong {
	color: #222;
}


/* MD - tablet landscape */
@media (max-width: 991px) {
}

/* SM - tablet portrait */
@media (max-width: 767px) {
}