/*
Site: 		
Url: 		
Autor: 		MonWebPro.com
Version: 	
*/

@font-face {
	font-family: 'icomoon';
	src:  url('fonts/icomoon.eot?b2om2p');
	src:  url('fonts/icomoon.eot?b2om2p#iefix') format('embedded-opentype'),
	url('fonts/icomoon.ttf?b2om2p') format('truetype'),
	url('fonts/icomoon.woff?b2om2p') format('woff'),
	url('fonts/icomoon.svg?b2om2p#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
.icon {
	font-family: 'icomoon';
}

html, body {
	width: 100%;
	height: 100%;
}
div.clearboth {
	width: 100%; 
	height: 0;
	clear: both; 
	float: none;
}

/* HEADER */
header {
	width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    font-family: "Montserrat", sans-serif;
}
header nav {
	width: auto;
    height: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
header.mini nav {
	background: rgba(255, 255, 255, 1.0);
    padding: 0 60px;
    height: 40px;
    border-radius: 0 0 90px 90px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
}
header nav ul {
    width: auto;
    height: 100%;
	list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
header nav a.mini {
    display: none;
}
header nav ul li {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
}
header nav ul li a {
    display: block;
    width: auto;
    height: 100%;
    line-height: 60px;
    margin: 0;
    padding: 0 15px;
    font-size: 1.3em;
    color: #111;
    text-decoration: none;
    transition: 0.5s;
}
header.mini nav ul li a {
    line-height: 40px;
}
header nav ul li a.active {
    font-weight: bolder;
    color:#d837be;
}
header nav ul li a:hover {
    color: #6B5896;
    transition: 0.5s;
}
header nav ul li a strong {
    font-weight: 300;
}


/*** MAIN ***/
main {
    width: 100%;
}

/*** FOOTER ***/
footer {
	width: 100%;
    background: rgba(242, 234, 230, 0.7);
    background: rgba(242, 234, 248,0.7);
}
footer ul.social {
    background: rgb(242, 234, 248,1);
	width: 100%;
    height: 50px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}
footer ul.social a {
    color: #000;
    text-decoration: none;
    padding: 0 15px;
}
footer div.footer {
    width: 100%;
    height: auto;
    text-align: center;
}

footer ul.footer {
	width: 100%;
    height: auto;
    display: flex;
    list-style: none;
    margin: 5px 0;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}
footer ul.footer a {
    color: #000;
    text-decoration: none;
    padding: 0 15px;
}

div.legal p {
    font-size: 0.8em;
    padding: 10px;
}
div.legal p, div.legal a {
    color: rgba(0, 0, 0, 0.5);
}

footer div.logo img {
    width: 100px;
    height: 100px;
    margin: 20px 0;
    cursor: pointer;
}


@media screen and (max-width: 560px) {
    header nav {
        width: 100%;
    }
    header.mini nav {
        border-radius: 0;
        box-shadow: none;
    }

    header nav a.mini {
        display: flex;
        position: fixed;
        top: 0;
        left:50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 2em;
        background: -webkit-linear-gradient(90deg, #d837be, #999);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    header nav ul,
    header.mini nav ul {
        display: block;
        display: none;
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        height: calc(100vh - 40px);
        overflow: auto;
        background: #fff;
    }
    header nav ul li {
        height: 50px;
        width: 100%;
    }
    header nav ul li a {
        height: 50px;
        line-height: 50px;
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 400px) {
    footer ul.footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 240px) {
    footer ul.footer {
        display: block;
    }
}