@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&display=swap');

:root {
    --red: #d20a11;
    --gray: #c9c7cc;
}

html {
	font-size: 18px;
	line-height: 1.6;
}
body {
	background-color: #ffffff;
	font-family: 'Barlow', Arial, sans-serif;
	font-weight: 300;
	color: #000000;	
}

hr {
	height:1px;
	border:0;
	border-top: 1px solid #eee;
	margin: 30px 0 40px 0;
	clear: both;
}
strong {
	font-weight: bold;
}

::selection {
	background: var(--red);
	text-shadow: none;
	color: #fff;
}

h1, h2, h3 {
	font-weight: bold;
}

.title {
	display: block;
	font-size: 2.2em;
	line-height: 1.2;
	margin: 2em 0 1em 0;
	color:  var(--red);
	text-align: center;
	text-transform: uppercase;
}


a.btn {
    display: inline-block;
    cursor: pointer;
    padding: 6px 25px;
    margin: 1rem 0;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: .9em;
    border-radius: 20px;
    margin-right: .5rem;
}
a.btn1 {
    color: #fff;
    background: linear-gradient(120deg, #ff3265, #9c27b0);
    background-size: 300% 100%;
    -webkit-transition: background .4s ease-in-out;
	transition: background .4s ease-in-out;
}
a.btn1:hover,
a.btn1:focus {
	background-size: 100% 100%;
}
a.btn2 {
    color: #ff3265;
    box-shadow: inset 0 0 0 2px #ff3265;
}
a.btn2:hover,
a.btn2:focus {
	outline: none;
	color: #fff;
	box-shadow: inset 0 0 0 0px #ff3265;
    background: #ff3265;
    background: linear-gradient(120deg, #ff3265, #9c27b0);
}


.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; }


.bgcover {
	background-color: #fafafa;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.bgcontain {
	background-color: #fafafa;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.text-stroke {
	-webkit-text-stroke: 1px black;
	color: white;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


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

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	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) }



/* 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(../img/icons/arrow-left.svg);
	background-repeat: no-repeat;
	background-position: center;
	display: none;
}
.post-pagination .page-numbers.next {
	background-image: url(../img/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 {
	display: flex;
	background: #000;
	color: #fff;
	font-size: 13px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
#cookiebar > div {
	padding: 1rem;

	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-align: center;
    align-items: center;
}
#cookiebar .cookie-txt {
	width: 100%;
}
#cookiebar .cookie-txt p {
	padding: 0;
	margin: 0;
}
#cookiebar .cookie-txt a {
	text-decoration: underline;
	color: #fff;
}
#cookiebar .cookie-btn {
	cursor: pointer;
	border-left: 1px solid #444;
	text-align: center;
	font-weight: bold;
}
@media (max-width: 767px) {
	#cookiebar {
	    -ms-flex-direction: column;
	    flex-direction: column;
	}
	#cookiebar .cookie-btn {
		border-left: none;
		border-top: 1px solid #444;
		-webkit-box-pack: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important;
	}
}



/* 404 */
.p404 {
    background-image: url(../img/icons/404.svg);
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 100px;
    margin: 200px 0;
    text-align: center;
    font-size: 2.5rem;
    line-height: 120%;
}
.p404 small {
	display: block;
	font-size: 1.2em;
}

#map {
    position: absolute !important;
    overflow: hidden !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* PRIVACY PAGE */
.privacy-policy {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #777;
}
.privacy-policy p {
	margin: 0 0 10px 0;
}
.privacy-policy ul {
	padding-left: 30px;
	margin: 0 0 10px 0;
}
.privacy-policy li {
	list-style: initial;
}
.privacy-policy hr {
    border-top: 1px solid #ddd;
    width: 100%;
    margin: 30px 0;
}
.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3 {
	font-size: 1.6em;
	color: #222;
	margin-bottom: 10px;
	font-weight: bold;
	font-family: inherit;
}
.privacy-policy h2 {
	font-size: 1.2em;
}
.privacy-policy h3 {
	font-size: 1em;
	margin: 0;
}
.privacy-policy strong,
.privacy-policy b {
	color: #222;
	font-weight: normal;
}
.privacy-policy a,
.privacy-policy a:hover,
.privacy-policy a:visited {
	color: inherit;
	text-decoration: underline;
}


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

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