@charset "UTF-8";
/* CSS Document */
body,
h1,
h2,
h3,
h4,
h5,
p {
font-family: 'Poppins', sans-serif;
}
.off{
font-weight: 700;
font-size: calc(40px + (50 - 40) * ((100vw - 300px) / (1920 - 300)));
}
.titolo-display{
color:#000;
font-weight: 600;
font-size: calc(70px + (180 - 70) * ((100vw - 300px) / (1920 - 300)));
line-height: calc(60px + (110 - 60) * ((100vw - 300px) / (1920 - 300)));
}
.titolo-h1{
color:#000;
font-weight: 600;
font-size: calc(8px + (12 - 8) * ((100vw - 300px) / (1920 - 300)));
margin-bottom: 0px;
}
.box-h1{
padding-left: 2rem;
padding-top: 6px;
padding-bottom:5px;
}
.btn-menu{
color:#000;
font-weight: 600;
padding-top: 5px;
font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
margin-bottom: 0px; 
background-color: transparent;
border:0px;
margin-right:1rem;
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0rem;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #fff;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    clear: both;
    font-weight: 400;
    color: #212529;
    font-weight: 500;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-align: right;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #212529;
    text-decoration: none;
    background-color: #fff;
}
.back-menu{
  background-image: url(../img/back-menu.svg);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 1s;
}
.back-menu:hover{
  background-image: url(../img/back-menu.svg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 1s;
}

.box{
padding-top: 0rem;
padding-bottom: 2rem;
padding-left: 1rem;
}
.product__disc {
width: 100vh;
height: 94vh;
background: #7698BD;
animation: showDisc 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
}
.product__disc--content {
position: absolute;
padding-top: 25%;
padding-left: 60%;
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
flex-direction: column;
animation: fadeContent 1s ease-in-out forwards;
animation-delay: 1s;
opacity: 0;
}
.disc__content--about {
width: 100%;
}



.titolo-h2{
color:#7698BD;
font-weight: 700;
font-size: calc(90px + (160 - 90) * ((100vw - 300px) / (1920 - 300)));
line-height: calc(90px + (140 - 90) * ((100vw - 300px) / (1920 - 300)));
}

.sottotitolo-h2{
color:#404040;
font-weight: 700;
font-size: calc(18px + (34 - 18) * ((100vw - 300px) / (1920 - 300)));
line-height: calc(16px + (46 - 16) * ((100vw - 300px) / (1920 - 300)));
margin-top: 1rem;

}
 .box-tit-h2{
  padding-top:7rem;
  padding-left:7rem;
    padding-bottom:0rem;
}
.box-7rem{
  padding:7rem;
  padding-top: 3rem;
}

.box-storia{
  padding:7rem;
  margin-top: -16rem;
}
.box-staff{
  padding:4rem;
  margin-top: 2rem;
}
.sp-img{
  padding-bottom:2rem;
}
.tit-txt{
  font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 800;
}
.txt{
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}
.box-txt-servizi{
  background-color: #1c1c1c;
  padding:3rem;
  margin-top: 4rem;
}
.box-1-serv{
  padding:2rem;
}
.txt-servizi{
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}
.tit-servizio{
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color:#7698BD;
}
.nol{
  padding-top: 1rem;
}
/*
keyframes
*/
@keyframes showDisc {
0% {
width: 0px;
left: 450px;
}
100% {
width: 100%;
left: 450px;
}
}
@keyframes fadeContent {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*-----------------------------------Video Back----------------------------------------------*/
.video-background-holder {
position: relative;
background-color: #222222;
height: 60vh;
min-height: 25rem;
width: 100%;
overflow: hidden;
}
.video-background-holder video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 0;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.video-background-content {
position: relative;
z-index: 2;
}
.video-background-overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #fff;
opacity: 0;
z-index: 1;
}
.box-video{
  padding: 2rem;
  margin-top: -15rem;
}

.box-parallax{
  margin-top: -8rem;
}

.vertical-txt{
  writing-mode: vertical-rl;
text-orientation: mixed;
margin-left:0px;
padding-left:0px;
}

.txt-vertical{
  color:#404040;
  font-weight: 600;
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.sp-foot{
  padding-top:2rem;
  padding-bottom:2rem;
}
.titolo-big-contatti{
  font-size: calc(35px + (55 - 35) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(40px + (60 - 40) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 800;
}
.titolo-contatti{
  font-size: calc(18px + (18 - 18) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
}
a{
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color:#212121;
  text-decoration: none;
}

a:hover{
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400; 
  color:#99ACB2;
  text-decoration: none;
}
.white{
color:#fff;
}
.nopadding{
padding:0px;
margin:0px;
}
#mapid { height: 520px; }
@media only screen and (max-width: 1400px) {
  .box-tit-h2 {
    padding-top: 7rem;
    padding-left: 2rem;
    padding-bottom: 0rem;
}
  .box-7rem {
    padding-left: 2rem;
    padding-right: 4rem;
    padding-top: 3rem;
}
.box-1-serv {
    padding: 0.5rem;
}
.box-storia {
    background-color: #fff;
    padding: 3rem;
    padding-top: 1rem;
}
.box-video{
  padding: 2rem;
  margin-top: -12rem;
}
  .dropdown-menu{
  left: -20px!important;
}
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 900px) {

.product__disc--content {
    position: absolute;
    padding-top: 100%;
    padding-left: 16%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    animation: fadeContent 1s ease-in-out forwards;
    animation-delay: 1s;
    opacity: 0;
}
.box {
    padding-top: 0rem;
    padding-bottom: 2rem;
    padding-left: 0rem;
}
.box-video {
    padding: 1rem;
    padding-top: 0rem;
    margin-top: 0rem;
}

.box-storia {
    padding: 2rem;
    margin-top: 0rem;
}
.box-7rem {
    padding-left: 2rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.box-staff {
    padding: 2rem;
    margin-top: 0rem;
}

.sp-img{
  padding-bottom:2rem;
}
.brd-img{
  height: 7px;
}
.dropdown-menu{
  left: -70px!important;
}
.titolo-contatti{
  padding-top: 2rem;
}
}