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

:root {
    --green: #398078;
    --green2: #075b54;
	--red: #de5275;
    --red2: #a3162f;
}

html {
	font-size: 18px;
	line-height: 1.5;
}
body {
	background-color: #ffffff;
	font-family: 'PT Sans', 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 {
	font-weight: bold;
}

.col-title h2,
.title {
	position: relative;
	display: inline-block;
    font-size: 2rem;
    margin: 2em 0 1em 0;
    line-height: 1.2;
    font-weight: 800;

    background: linear-gradient(to right, #095c55, #387f77);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.col-title h2:after,
.title:after {
	content: '';
    position: absolute;
    bottom: -3px;
    width: 1.4em;
    height: 1px;
    left: -.3em;
    background-color: #8f8f8f;
}
.title.nomargin {
	margin: 0;
}
.col-title p {
	margin-bottom: .5rem;
}

a.btn {
    box-shadow: 0 0 0 2px var(--red);
    color: var(--red);
    display: inline-block;
    border-radius: 10px 0px 10px 0px;
    text-transform: uppercase;
    padding: 7px 20px;
    margin: 1rem 1rem 1rem 0;
    font-size: .95rem;
    font-weight: bold;
	background-color: #fff;

    -webkit-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}
a.btn:hover,
a.btn:focus {
	outline: none;
	color: #fff !important;
	box-shadow: inset 0 0 0 0px var(--red);
    background-color: var(--red);
}
a.btn-bold,
a.btn-bold:hover {
	background-color: var(--red);
	color: #fff !important;
	box-shadow: 0 0 0 2px var(--red);
}

.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.9rem;
	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: .8rem;
	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: .9rem;
}
.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;
}
#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.2rem;
}

#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) {
}