/*MAIN SETTINGS*/

html,body {
	margin:0;
	padding:0;
	font: 100% 'Poppins', sans-serif;
	color: #000;
	background-color:#fff;
	font-size: 18px;
}

#main-container {
	min-height:100%;
	position: absolute;
	width: 100%;
	overflow: hidden;
}

section {
	width:100%;
	margin: 0;
	padding: 0;
	position:relative;
}

section .container{
	position:relative;
	margin:0 auto;
	width:1200px;
	padding:0 30px;
	overflow: hidden;
}

.triangle {
	-webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	transition: all 0.2s ease;
}

@media only screen and (max-width: 1280px) {
	section .container{
		width:100%;
	}
}

@media only screen and (max-width: 960px) {
	html,body {
		font-size: 16px;
	}

    .triangle {
        height: 80px;
    }
}


/* GENERAL SETTINGS */
*, *::before, *::after {
    box-sizing: border-box;
}

a {
	text-decoration:none;
	outline:none;
}

img {
	border:0;
}

p {
	padding:0;
	margin:0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	font-weight: 700;
	line-height: 1.2em;
}

/* INPUTS AND BUTTONS */
input { 
	border: 0;
    font-size: 1.0em;
	font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    outline: none;
    height: 50px;
    line-height: 50px;
    -webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
    background: #f1f1f1;
	padding: 0 20px;
	font-family: 'Poppins', sans-serif;
}

input::placeholder {
	opacity:0.5;
}

textarea {
	display:block;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	padding: 20px;
	margin-bottom: 40px;
	border: solid 1px #064870;
	min-height: 140px;
	font-size: 0.9em;
	color: #000;
	outline: none;
}

textarea::placeholder {
	color: #999;
}

.checkbox-style {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	cursor: pointer;
	vertical-align:middle;
	background-color: #ebebeb;
	outline: none;
	margin-right: 10px;
    padding: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.checkbox-style:checked {
	background-image: url(../img/icon-checkbox-checked.svg);
}

.alert {
	display: block;
	color: #fff;
	padding: 20px 20px 20px 68px;
	background-position: 20px center;
	background-size: 28px 28px;
	background-repeat: no-repeat;
	text-align: left;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.alert.error {
	background-image: url(../img/icon-alert-error.svg);
	background-color: #F35844;
}

.alert.valid {
	background-image: url(../img/icon-alert-valid.svg);
	background-color: #00AEA8;
}

.button {
	background-color: #ed1e79;
	color: #fff;
    text-transform: uppercase;
    padding: 0 30px;
    font-size: 1.0em;
	font-weight: 500;
    letter-spacing: 0.05em;
    height: 50px;
    line-height: 50px;
    display: inline-block;
	transition:all 0.2s ease;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	outline: none;
}

.button:hover {
	background-color: #fc5ba8;
	-webkit-box-shadow: 0px 0px 10px 0px #ed1e79;
	-moz-box-shadow: 0px 0px 10px 0px #ed1e79;
	box-shadow: 0px 0px 10px 0px #ed1e79;
}

/* Credits */
#main-container.credits {
	color: #fff;
	background-color:#333;
	padding-bottom: 80px;
	transition:height 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	animation-direction: normal;
	animation-duration:8s;
	animation-iteration-count: infinite;
	animation-name: bgdcolor;
	animation-play-state: running;
	animation-fill-mode: forwards;
	animation-timing-function: ease;	
	-webkit-animation-direction: normal;
	-webkit-animation-duration:8s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-name: bgdcolor;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
}

#main-container.credits footer .signature.white {
	display: inline-block;
}

#main-container.credits footer .signature.blue {
	display: none;
}

.credits .credit-box {
	width: 800px;
	text-align: center;
}

.credits .credit-box .credit-img {
	height: 40px;
	margin-bottom: 40px;
	transition: 0.3s ease;
	margin-top: 40px;
}

.credits .credit-box h1 {
	margin-bottom: 10px;
	/*color:#F08F0F;*/
	font-size: 1.4em;
}

.credits .credit-box h2 {
	/*color:#F08F0F;*/
	font-weight: 300;
	font-size: 1.2em;
	margin-bottom: 40px;
}

.credits .credit-box p {
	font-size: 0.9em;
	text-align: left;
}

.credits .credit-box ul {
	font-size: 0.9em;
	text-align: left;
}

.credits .credit-box a {
	font-weight: bold;
	color: #fff;
}

.credits .credit-box a:hover {
	opacity: 0.8;
}

.credits .credit-box hr {
	border: 0 none;
	border-bottom: solid 1px #fff;
	margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {

	.credits .credit-box {
		width: 100%;
		margin: 0 30px;
	}

	.credits .credit-box .credit-img {
		height: 60px;
	}
}

/* ---------------------- FOOTER ---------------------- */
footer {
	position:relative;
	width: 100%;
	text-align: center;
}

footer .signature {
	display: inline-block;
	margin-bottom: 10px;
	height: 24px;
	transition: 0.3s ease;
}

footer .signature.white {
	display: none;
}

footer .signature:hover {
	opacity:0.8;
}

footer .footer-info {
	font-size: 0.7em;
}

footer .footer-info a {
	color: #000;
	font-weight: bold;
}

footer .footer-nav {
	list-style: none;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0 0 20px;
}

footer .footer-nav a {
	color: #000;
	font-size: 0.80em;
	margin: 0 10px;
}

@media only screen and (max-width: 960px) {
	footer .signature {
		height: 18px;
		margin-bottom: 20px;
	}
}

/* ---------------------- HEADER ---------------------- */
header {
	position: relative;
    width: 100%;
    background-color: #000;
    z-index: 100;
    transition: 0.3s ease;background-image: url(../img/head-bgd.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
    background-attachment: fixed;
    /* height: 700px; */
	display: flex;
	justify-content: center;
	align-items: center;
}

header .triangle {
	background-color: #ed1e79;
}

header .head-container {
	position: relative;
    justify-content: flex-start;
    margin: 0 auto;
    transition: all 0.2s ease;
    z-index: 10;
    color: #fff;
    /*text-align: center;*/
	padding: 180 20% 200px;
}

header .head-logo {
	height: 48px;
	margin-bottom: 40px;
    transition: 0.3s ease;
}

header .head-container h1 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

header .head-container h2 {
	font-weight: normal;
	margin-bottom: 0;
    font-size: 1.1em;
    line-height: 1.3em;
	color: #ED1E79;
}

header .head-container h2 span {
	font-size: 0.8em;
	margin-top: 20px;
	display: block;
	width: 50%;
	color:#fff;
	background-image: url(../img/icon-cloud.svg);
	background-repeat: no-repeat;
	background-position: left 5px;
	background-size: 30px;
	padding-left: 50px;
}

@media only screen and (max-width: 1280px) {
	header {
		/* height:650px; */
	}

	header .head-container {
		width:100%;
	}
}

@media only screen and (max-width: 1024px) {
	header {
		/* height:550px; */
	}

	header .head-triangle {
		height: 100px;
	}
}

@media only screen and (max-width: 960px) {
	header {
		/* height:450px; */
	}

	header .head-triangle {
		height: 50px;
	}

    header .head-container {
        padding: 120px 10% 140px;
    }

	header .head-logo {
		height: 36px;
	}

	header .head-container h1 {
		font-size: 1.3em;
	}

	header .head-container h2 span {
		width: 100%;
		background-image: none;
		padding-left: 0;
	}
}

/* FUCHSIA */
section.fuchsia {
	background-color: #ed1e79;
	color:#fff;
	padding-bottom: 120px;
}

section.fuchsia .img-container {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

section.fuchsia .img-container img {
    width: 48px;
    display: inline;
}

section.fuchsia h3, section.fuchsia h6 {
	text-transform: uppercase;
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: 1.4em;
	transition: .2s ease;
	margin: 0 auto 20px;
}

section.fuchsia .container {
    padding: 30px;
}

@media only screen and (max-width: 480px) {
	section.fuchsia h3 {
		font-size: 1.2em;
	}
}

section.fuchsia .triangle {
	background-color: #fff;
}

section.fuchsia .columns {
	column-count: 2;
	column-gap: 40px;
	transition: .2s ease;
	padding: 0 20px;
	margin-bottom: 30px;
}

@media only screen and (max-width: 680px) {
	section.fuchsia .columns {
		column-count: 1;
	}
}

section.fuchsia .action-container {
	width: 100%;
	display: block;
	display: flex;
	justify-content: center;
	border-top: solid 1px #ffffff;
	padding-top: 20px;
}

section.fuchsia .action-container .button {
	border: solid 2px #fff;
	margin-top: 20px;
}

section.fuchsia ul li .price-box {
	display: inline-block;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-color: #fff;
	color: #000;
	padding: 20px 20px 0;
}

section.fuchsia ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

section.fuchsia ul li {
	display: inline-block;
    float: left;
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
	transition: 0.2 ease;
	font-size: 0.9em;
}

section.fuchsia ul li name {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: 1.1em;
	margin-bottom: 20px;
	color: #ed1e79;
}

section.fuchsia ul li price {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 0.9em;
	margin-bottom: 20px;
	line-height: 1.3em;
}

section.fuchsia ul li price span {
	font-size: 2.5em;
}

section.fuchsia ul li hr {
	margin: 0 0 20px;
	border: 0;
	border-bottom: solid 1px #ccc;
}

@media only screen and (max-width: 960px) {
	section.fuchsia ul li {
		width: 100%;
	}
}

section.fuchsia .small-text {
	font-size: 0.7em;
	text-align: center;
}

/* SERVIZI */
section.servizi {
	padding-bottom: 90px;
}

section.servizi .img-container {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

section.servizi .img-container img {
    width: 48px;
    display: inline;
}

section.servizi h4 {
	text-transform: uppercase;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.4em;
	transition: .2s ease;
	margin: 20px 0 40px;
}

section.servizi ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

section.servizi ul li {
	display: inline-block;
	float: left;
	width: 33.33%;
	padding: 0 10px;
	margin-bottom: 20px;
	text-align: center;
	transition: 0.2s ease;
}

section.servizi ul li .content {
	display: block;
	width: 100%;
	height: 100%;
	padding:30px 20px 20px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background-color: #f2f2f2;
}

section.servizi ul li img {
	display: inline-block;
	margin-bottom: 20px;
	width: 48px;
}

section.servizi ul li h5 {
	text-transform: uppercase;
	font-size: 1.2em;
	border-bottom: solid 1px #ccc;
    padding-bottom: 20px;
}
section.servizi ul li p {
	margin-bottom: 0;
	text-align: left;
	font-size: 0.9em;
}

@media only screen and (max-width: 960px) {
	section.servizi ul li {
		width: 50%;
	}
}

@media only screen and (max-width: 680px) {
	section.servizi ul li {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	section.servizi h4 {
		font-size: 1.2em;
	}
}

section.servizi .triangle {
	background-color: #ebebeb;
}

/* TARGET*/
section.target {
	background-color: #ebebeb;
	padding: 60px 0 20px;
}

section.target h6 {
	text-transform: uppercase;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.1em;
	transition: .2s ease;
	margin: 0 0 20px;
}

section.target p {
	margin-bottom: 0;
	font-size: 0.9em;
	text-align: left;
}

section.target .img-container {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

section.target .img-container img {
    width: 48px;
    display: inline;
}

section.target .row {
	display: inline-block;
	float: left;
	width: 50%;
	padding: 0 20px;
	margin-bottom: 40px;
	text-align: center;
	transition: 0.2 ease;
}

@media only screen and (max-width: 680px) {
	section.target .row {
		width: 100%;
	}
}

/* CUSTOMERS */
section.customers {
    background-color: #ebebeb;
    padding-bottom: 150px;
}

.customers .triangle {
	background-color: #ed1e79;
}

section.customers .container {
    border-top: solid 1px #ccc;
}

section.customers h6 {
	text-transform: uppercase;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.4em;
	transition: 0.2s ease;
	margin: 20px 0 10px;
}

section.customers p {
	font-size: 0.9em;
	margin-bottom: 40px;
}

section.customers ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

section.customers ul li {
	display: inline-block;
    float: left;
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
	transition: 0.2 ease;
}

section.customers ul li .recensione {
	display: block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: solid 1px #ccc;
	padding: 20px 20px 0;
}

section.customers ul li a:hover {
    opacity: 0.8;
}

section.customers ul li img {
	display: inline-block;
    margin-bottom: 20px;
    width: 130px;
    max-height: 80px;
    opacity: 0.4;
    transition: 0.2s ease;
}

section.customers name {
	display: block;
	width: 100%;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
	color: #ed1e79;
}

section.customers ul li .recensione p {
	font-style: italic;
	margin-bottom: 20px;
}

section.customers .recensione p::after, section.customers .recensione p::before {
	content: "'";
}

section.customers .img-container {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
	margin-top: 40px;
}

section.customers .img-container img {
    width: 48px;
    display: inline;
}

@media only screen and (max-width: 960px) {
	section.customers ul li {
		width: 100%;
	}
}

@media only screen and (max-width: 680px) {
	section.customers ul li img {
		width: 100px;
        max-height: 60px;
	}
}

@media only screen and (max-width: 480px) {
	section.customers h6 {
		font-size: 1.2em;
	}
}

/* CONTATTI */
section.contatti {
	background-color: #fff;
	padding: 20px 0 60px;
}

section.contatti h6 {
	text-transform: uppercase;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.4em;
	transition: .2s ease;
	margin: 0 0 20px;
    color:#ed1e79;
}

section.contatti p {
	font-size: 0.9em;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

section.contatti .form-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 20%;
}

section.contatti .form-container input {
    width: auto;
    flex: 1 0;
    margin-right: 10px;
}

section.contatti .form-container .button {
    flex: none;
    align-items: flex-end;
    width: 100px;
    text-align: center;
    padding: 0;
}

section.contatti .input-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

section.contatti .input-box label {
    font-size: 0.8em;
}

section.contatti .input-box label a {
    color: #000;
    font-weight: bold;
}

@media only screen and (max-width: 720px) {
	section.contatti .form-container {
        padding: 0 10%;
    }
}

@media only screen and (max-width: 480px) {
	section.contatti .form-container {
        display: block;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    section.contatti .form-container input {
        width: 100%;
        flex: none;
        margin-right: 0px;
        margin-bottom: 20px;
        text-align: center;
    }

    section.contatti .form-container .button {
        flex: none;
        align-items:center;
        display: inline-block;
    }
}

section.contatti ul.contatti-list {
	display: block;
    width: 100%;
    padding: 0;
    margin:0;
}

section.contatti ul.contatti-list li {
	display: flex;
    float: left;
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
	transition: 0.2 ease;
}

section.contatti ul.contatti-list li a {
    color: #000;
    text-align: center;
    font-size: 0.85em;
	background-color: #f2f2f2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

section.contatti ul.contatti-list li a:hover {
    opacity: 0.8;
}

section.contatti ul.contatti-list li img {
	display: inline-block;
    margin-bottom: 20px;
    width: 48px;
    transition: 0.2s ease;
    display: inline-block;
    margin-bottom: 20px;
}

section.contatti ul.contatti-list li span {
    display: block;
}

section.contatti ul.contatti-list li strong {
    font-size: 1.2em;
}

@media only screen and (max-width: 680px) {
	section.contatti ul.contatti-list li {
        width: 100%;
    }
}

/* TEXT */
section.text-head {
	background-color: #333;
    color: #fff;
    padding: 60px 0 100px;
    text-align: center;
}

section.text-head img {
    height: 36px;
	margin-bottom: 40px;
    transition: 0.3s ease;
}

section.text-head h1 {
	text-transform: uppercase;
	margin-bottom: 5px;
}

section.text-head h2 {
	font-weight: 400;
	margin-bottom: 0;
    font-size: 1.1em;
}

section.text-head .triangle {
	background-color: #fff;
}

section.text {
	background-color: #fff;
	padding: 20px 0 40px;
}

section.text p {
	font-size: 0.9em;
    padding: 0 20px;
}

section.text h2 {
    padding: 0 20px;
}

section.text a {
    color:#ED1E79;
    font-weight: bold;
}

section.text .table-container {
    overflow-x: auto;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

section.text table {
    border-collapse: collapse;
}

section.text table th {
	background-color: #999;
    color: #fff;
    padding: 5px 10px;
    font-weight: normal;
}

section.text table tbody tr {
	color: #333;
}

section.text table tbody td {
	padding: 10px;
	font-size: 0.9em;
}

section.text table tbody tr:nth-child(even) {
	background-color: #f2f2f2;
}

section.text table tbody tr:nth-child(odd) {
	background-color: #e2e2e2;
}

@media only screen and (max-width: 1024px) {
    section.text-head {
        padding: 60px 0 80px;
    }

    section.text-head .triangle {
		height: 100px;
	}
}

@media only screen and (max-width: 960px) {    
    section.text-head {
		font-size: 0.9em;
	}

    section.text-head .triangle {
		height: 50px;
	}

    section.text-head img {
        height: 28px;
    }
}