@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed&display=swap');
:root {
    --primary-color: rgba(13,110,139, 0.75);
    --overlay-color: rgba(0, 0, 0, 0.9);
    --menu-speed: 0.75s;
    --headline-size: 1em;
    --headline-padding: 10px 60px 10px 10px;
    --headline-title: 1.1em;
    --color-blue-logo: #2f4c8e;
    --section-padding: 0 50px 0 10px;
    --section-column-width: 100%;
    --video-w: 320px;
    --color-success: #28a745;
    --color-danger: #dc3545;
    --vantaggi-text-size: .7em;
    --h1-size: 1.9em;
    --h2-size: 1.5em;
    --text-cta: 1.2em;
}
@media screen and (min-width: 480px) and (min-height: 400px) {
    :root {
        --headline-size: 1.2em;
        --headline-padding: 10px 60px 10px 20px;
        --headline-title: 1.3em;
        --video-w: 480px;
        --vantaggi-text-size: .9em;
        --h1-size: 2.5em;
        --h2-size: 1.7em;
    }
}
@media screen and (min-width: 640px) and (min-height: 400px) {
    :root {
        --headline-size: 1.5em;
        --headline-padding: 10px 70px;
        --headline-title: 1.6em;
        --section-padding: 0 50px 0 50px;
        --section-column-width: 50%;
        --video-w: 640px;
        --vantaggi-text-size: 1.1em;
        --h1-size: 3em;
        --h2-size: 2em;
        --text-cta: 1.5em;
    }
}
* {
	box-sizing: border-box;
	margin: 0;
}

html {
	font-size: 112.5%;
	line-height: 1.6;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 'Ubuntu Condensed', Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1, .h1, h2, h3 {
	font-family: 'Ubuntu Condensed', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1, .h1 {
	font-size: var(--h1-size);
}

h2, .h2 {
	font-size: var(--h2-size);
}

h3, .h3 {
	font-size: 1.5em;
}

h2, h3 {
	margin-top: 2em;
	margin-bottom: 1em;
}

h2:first-child,
h3:first-child {
	margin-top: 1em;
}

pre {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

p {
	margin-top: 1em;
	margin-bottom: 1em;
}

header {
	position: relative;
	top:0;
}
.header-full {
    height: 100vh;
}
.header-small {
    height: 200px;
}

section > :last-child {
	margin-bottom: 2em;
}

section {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	background: white;
	padding: var(--section-padding);
}

table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	margin-left: -0.5em;
	margin-right: -0.5em;
	margin-bottom: 2em;
}

th, td {
	padding: 0.25em 0.5em;
	text-align: left;
	border: 1px solid #eee;
}
li {
    list-style: none;
}

[data-rellax],
[data-rellax-container] {
	width: 100%;
	height: 100%;
}

[data-rellax] {
	will-change: transform, opacity;
	backface-visibility: hidden;
}

[data-rellax-container] {
	overflow: hidden;
}

[data-rellax-container] [data-rellax] {
	transition: opacity .3s ease-out;
	opacity: 0;
}

.js [data-rellax-container] [data-rellax] {
	opacity: 1;
}
#logox > img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    transform: scale(1.8);
    background: rgba(255,255,255,.5);
    border-radius: 5px;
    padding: 3px;
    z-index: 997;
}
.c-bully {
    z-index: 997 !important;
}

.menu-wrap {
    position:fixed;
    top: 5px;
    right: 65px;
    z-index: 998;
}
.menu-wrap .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    cursor:pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}
.menu-wrap .ham {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: rgba(0,0,0,.1); /*var(--primary-color)*/;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
/* ham line */
.menu-wrap .ham > div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.menu-wrap .ham > div:before,
.menu-wrap .ham > div:after {
    content: '';
    position: absolute;
    z-index: 998;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

.menu-wrap .ham > div:after {
    top: 10px;
}

/* toggler animate */
.menu-wrap .toggler:checked + .ham > div {
    transform: rotate(135deg);
}
/* turn lines into X */
.menu-wrap .toggler:checked + .ham > div:before,
.menu-wrap .toggler:checked + .ham > div:after {
    top: 0;
    transform: rotate(90deg);
}
/* rotate on hover when checked */
.menu-wrap .toggler:checked:hover + .ham > div {
    transform: rotate(225deg);
}
/* show menu */
.menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: var(-menu-speed);
}
.menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-wrap .menu > div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}
.menu-wrap .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
}
.menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}
.main-headline {
    position: absolute;
    top: 100px;
    left: 0;
    color: #000;
    z-index: 1;
    padding: var(--headline-padding);
    font-size: var(--headline-size);
    text-align: justify;
    background: rgba(255,255,255,0.7);
}
.main-headline b {
    color: green;
}
.main-headline span {
    font-size: var(--headline-title);
    font-weight: bold;
    color: var(--color-blue-logo);
    text-transform: uppercase;
}
.section-content {
    display: flex;
    flex-wrap: wrap;
}
.section-one,
.section-two {
    flex: var(--section-column-width);
}
.section-two {
    text-align: justify;
}
.video-w {
    width: 95%;
}
.btn {
    display: block;
    width: 100%;
    font-weight: 400;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    cursor: pointer;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.text-success {
    color: var(--color-success);
}
.text-danger {
    color: var(--color-danger);
}
.text-cta {
    font-size: var(--text-cta);
}
.arrow {
    position: relative;
    top: 20px;
    left: 10px;
}
.vantaggi {
    /*background:var(--color-blue-logo);
    color:#fff;*/
}
.vantaggi h2 {
    font-size: var(--headline-title);
}
.section-vantaggi {
    flex: var(--section-column-width);
    font-size: var(--vantaggi-text-size);
}
.check-mark {
    font-size: 1.8em;
    color: var(--color-success);
    font-weight: bold;
}
.bg-opaco {
    position: absolute;
    top:0; left: 0;
    text-align: center;
    background: rgba(0,0,0,.8);
    width: 100vw;
    height: 100%;
    padding: 10px;
}
.center {
    text-align:center;
}
/*form*/
.form-div {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}
.input-field {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.textarea-field {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  resize: none;
}
.rellax-element.rellax-hidden {
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
}

.header-content-wrap {
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;

	padding-left: 2em;
	padding-right: 2em;
}

.header-content {
    text-align: center;
}

.content-wrap {
	justify-content: flex-start;
	align-content: center;
	max-width: 44em;
	margin-left: auto;
	margin-right: auto;
}

.c-button {
	display: inline-block;
	padding: 0.5em 1em;
	border: 1px solid currentColor;
	border-radius: 0.25em;
	background: none;
	font: inherit;
	text-decoration: none;
	color: inherit;
}

.c-button + .c-button {
	margin-left: 0.5em;
}

.c-button--primary {
	background: white;
	color: black;
}

[data-rellax] {
	transform: translate3d(0,0,0);
	will-change: transform;
	background-color: #444;
}

.fill {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.js-slider img {
	height: 100%;
	object-fit: cover;
}

.color-dark {
	color: #444;
}

.rellax-hidden {
	opacity: 0;
}

.slick-list,
.slick-track {
	height: 100%;
}