/*RESET*/
:root {
    --especialFont: 'Poppins', sans-serif;
    --regularText: #222222;
    --grayText: #565656;
    --accentColor: #76c043;
    --linkColor: #747474;
    --linkWeight: 600;
    --boxShadow: 0px 0px 5px #cccccc;
    --boxRadius: 5px;
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing:antialiased;
	text-rendering: optimizeLegibility;
    background-repeat: no-repeat;
}
html, body, header, main, footer, section, article, iframe, div, p, form, input, ul, li, h1, h2, h3, table, th, td {
	margin: 0px;
	padding: 0px;
}
object, iframe, table, img {
	outline: none;
	border: none;
}
body {
	font-family: var(--especialFont);
	font-size: 12px;
	color: var(--regularText);
}
table {
	border-collapse: collapse;
}
li {
	list-style: none;
}
a {
    text-decoration: none;
}
/*RESET*/

/*TEMPLATE*/
@media (max-width:600px) {
    .phone {
        display: block;
    }
    .desktop {
        display: none;
    }    
}
@media (min-width:601px) {
    .phone {
        display: none;
    }
    .desktop {
        display: block;
    }    
}
img.center {
    margin: 20px auto;
    display: block;
    max-width: 75%;
}
.video {
    max-width: 600px;
    margin: 20px auto;
}
.embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 30px;
}
.embed iframe,
.embed object,
.embed embed,
.embed .powa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
header {
    width: 100%;
    height: 70px;
    box-shadow: var(--boxShadow);
    position: fixed;
    background: white;
    z-index: 100;
}
header .content {
    position: relative;
}
header .logo {
    height: 50px;
    position: absolute;
    top: 10px;
    left: 10px;
}
header .logo img {
    height: 100%;
}
header nav {
    position: absolute;
    right: 10px;
    top: 10px;
}
header nav li {
    line-height: 50px;    
    display: inline-block;
    vertical-align: top;
}
header nav li a {
    height: 50px;
    display: block;
    font-weight: var(--linkWeight);
    margin-left: 20px;
    font-size: 13px;
    color: var(--linkColor);
}
header nav li a.button {
    padding: 0 10px;
    color: white;
    background-color: var(--accentColor);
}
header nav li a.button.download {
    padding-left: 40px;
    background-image: url(../img/download.svg);
    background-position: 10px center;
}
header nav li a.active {
    color: var(--accentColor);
}
header nav li a.menu {
    width: 20px;
    margin-right: 5px;
    background-image: url(../img/menu.svg);
    background-size: 20px;
    background-position: center;
    cursor: pointer;
}
.nav {
    display: none;
    background-color: var(--accentColor);
}
.nav li a {
    display: block;
    text-align: center;
    color: white;
    font-weight: var(--linkWeight);
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav li a.active {
    opacity: 0.5;
}
main {
    padding: 70px 0 40px 0;
    background-image: linear-gradient(to top, #ebebeb 0px, white 20px);
}
main .content {
    width: 90%;
    max-width: 950px;
    margin: auto;
    margin-top: 30px;
}
main .content.center {
    text-align: center;
}
main .content h1 {
    font-size: 22px;
    margin-bottom: 15px;
}
main .content p {
    font-size: 15px;
    margin-bottom: 20px;
}
footer {
    padding: 20px 0;
}
footer .content {
    width: 90%;
    max-width: 950px;
    margin: auto;
    text-align: center;
}
footer p {
    color: var(--grayText);
    margin-bottom: 15px;
}
footer p.credit {
    margin-top: 20px;
    font-size: 10px;
    font-weight: bold;
    color: #a0a0a0;
}
footer p.credit img {
    margin-bottom: -5px;   
}
footer nav li a {
    display: inline-block;
    line-height: 30px;
    color: var(--linkColor);
    font-weight: var(--linkWeight);
    padding-left: 30px;
    background-position: left center;
}
footer nav li a.facebook {
    background-image: url(../img/facebook.svg);
    background-size: 12px;    
}
footer nav li a.instagram {
    background-image: url(../img/instagram.svg);
    background-size: 16px;
}
footer nav li a.whatsapp {
    background-image: url(../img/whatsapp.svg);
    background-size: 20px;
}
footer nav li a.telephone {
    background-image: url(../img/phone.svg);
    background-size: 18px;
}
footer nav li a.mail {
    background-image: url(../img/mail.svg);
    background-size: 17px;
}
/*TEMPLATE*/

/*CONTENT*/
.list {
    text-align: center;
    vertical-align: top;
    margin-bottom: 30px;
}
.list li {
    display: inline-block;    
    vertical-align: top;
}
.list li.open {
    width: 295px;
    margin: 10px;
    box-shadow: var(--boxShadow);
    background: white;
    padding: 20px;
    cursor: pointer;
    font-weight: var(--linkWeight);
    font-size: 13px;
    color: var(--linkColor);    
}
.list li.open img {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}
.list li.open i {
    font-size: 13px;
    margin-left: 5px;
    color: var(--accentColor);
}
.list li.modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    z-index: 200;
}
.list li.modal i {
    font-size: 25px;
    margin-left: 5px;
    color: var(--accentColor);
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}
.list li.modal ul {
    width: 90%;
    max-height: 80vh;
    left: 5%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    box-shadow: var(--boxShadow);
    padding: 40px 20px 20px 20px;
    text-align: left;
    overflow: scroll;
}
.list li.modal p a {
    color: var(--accentColor);
    text-decoration: underline;
}
.list li.modal h1 {
    font-size: 20px;
}
.list li.modal h1 em {
    font-weight: bold;
    color: var(--grayText);
    font-size: 13px;
    margin-left: 10px;
}
.list li.modal img {
    width: 40%;
    float: right;
    margin-left: 20px;
}
@media (max-width:700px) {
    .list li.modal img {
        width: 100%;
        float: none;
        margin: 0 0 10px 0;
    }    
}
.items {
    margin: 20px 0;
    text-align: center;
}
.items li {
    margin: 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}
.items li img {
    width: 100%;
    max-width: 150px;
    display: block;
    margin: auto;
}
.items li img, .items li i {
    font-size: 40px;
    color: #7fc9ff;
    display: block;
}
.button a {
    margin: 10px auto 40px auto;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
    background-color: var(--accentColor);
}
.sections {
    margin-bottom: 30px;
}
.sections li {
    display: inline-block;
    margin: 5px;
}
.sections li a {
    display: block;
    color: var(--accentColor);
    font-weight: bold;
    padding: 15px;
    background-color: white;
    border: 1px solid var(--accentColor);
}
.sections li a.active {
    color: white;
    background-color: var(--accentColor);
    border: 1px solid var(--accentColor);    
}
.map {
    padding: 10px;
    box-shadow: var(--boxShadow);
    display: block;
    margin: auto;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

/*SLIDER*/
.slider {
    text-align: left;
    position: relative;
    margin-bottom: 30px;
}
.slide {
    display: none;
}
.slide img {
    width: 100%;
    margin-bottom: 10px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
}
.next {
    position: absolute;
    right: -20px;
}
.prev {
    position: absolute;
    left: -20px;
}
.dots {
    text-align: center;
    clear: both;
}
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.dot.active {
    background-color: #717171;
}