@charset "UTF-8";
/* CSS Document */
body,
h1,
h2,
h3,
h4,
h5,
p {
font-family: 'DM Sans', sans-serif;
}


/*----------------------head------------------------*/



.iframely-embed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: white;
}

#app {
  z-index: 0;
}


#app {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding-bottom: 4vmin;
  height: 95vh;
  width: 100%;
  background: #87c5c0;
  color: #fff;
}



.title {
  padding-left: 1em;
  padding-top: 2em;
  grid-column: 1/-1;
  grid-row: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 10vw;
  width: 100%;
  z-index: 2;
  text-transform: uppercase;
  line-height: 10vw;
  text-shadow: 3px 3px 5px #36363647;
}
.title > .title-inner {
  display: inline-block;
}
.back-head-img{
   background-size: cover; 
   height: 100vh;
}
@-webkit-keyframes text-clip {
  from {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes text-clip {
  from {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes outer-left {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}
@keyframes outer-left {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes inner-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: none;
  }
}
@keyframes inner-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: none;
  }
}
.cafe,
.mozart {
  -webkit-animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
          animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title-inner {
  display: inline-block;
  -webkit-animation: inner-left 1s 1s ease both;
          animation: inner-left 1s 1s ease both;
}

.cafe-inner {
  display: inline-block;
  -webkit-animation: inner-left 1s 1s ease both, text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
          animation: inner-left 1s 1s ease both, text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.mozart-inner {
  -webkit-animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
          animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title {
  -webkit-animation: outer-left 1s 1s ease both;
          animation: outer-left 1s 1s ease both;
}

.cafe > .cafe-inner {
  display: inline-block;
}

.mozart {
  display: inline-block;
}

.image {
  grid-row: 1;
  grid-column: 2;
  margin-left: -2rem;
  opacity: 1;
  -webkit-animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
          animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
}
@-webkit-keyframes image-in {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes image-in {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.image img {
  display: block;
  width: 100%;
  height: auto;
}

.padding-img-head{
  padding:0px;
  margin:0px;
}


/*-------------------------------------------Button-------------------------------------------------*/

.btn {      background-color: #71b8b0;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            position: relative;
            border-radius: 0 !important;
            border: none;
            transition:all 0.3s ease 0s;
            margin-top: 1rem;
        }
        .btn:hover,
        .btn.active:hover{
            color: #ffffff;
        }
        .btn:before{
            content: "";
            position: absolute;
            top: -7px;
            left: 0;
            background-color:#f9a2da;
            width: 30%;
            height: 4px;
            transition:all 0.3s ease 0s;
        }
        .btn:after{
            content: "";
            position: absolute;
            bottom: -7px;
            right: 0;
            background-color:#f9a2da;
            width: 30%;
            height: 4px;
            transition:all 0.3s ease 0s;
        }
        .btn:hover:before,
        .btn:hover:after,
        .btn.active:before,
        .btn.active:after{
            width: 100%;
        }

.btn-cv{
   font-size: 14px;

}

/*--------------------------------------------Card------------------------------*/

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px solid rgba(0,0,0,.125);
    border-radius: 1rem;
    box-shadow: 3px 3px 10px #DCDCDC;
    margin-top:10px;
    margin-bottom:10px;
}

.nome-card{
  font-size: calc(18px + (32 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.mansione-card{
  font-size: calc(15px + (22 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.verticaltext{
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.titolo-staff{
  font-size: calc(40px + (120 - 40) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  margin-left: 1px;
}

.back-green-ver{
  background-image: url(../img/back-txt-green-ver.svg);
  background-position:top left;
  background-size: auto;
  background-repeat: no-repeat;
}

/*--------------------------------------------------Footer----------------------------------------*/

.backfoot{
  background-color: #71b8b0; 
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.titolocontatti{
  font-size: calc(25px + (60 - 25) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  color:#fff;
}
.txt-foot{
  font-size: calc(14px + (24 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color:#fff;
}

.txt-foot:hover{
  font-size: calc(14px + (24 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color:#fff;
  text-decoration: none;
  background-image: url(../img/back-drop-green.svg);
  background-position:left;
  background-size: auto;
  background-repeat: no-repeat;
  transition-duration: 1s;
}

/*--------------------------------------------------Navbar----------------------------------------*/

.back-nav1 {
    background-image: url(../img/nav/nav1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
}
.back-nav2 {
    background-image: url(../img/nav/nav2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
}
.back-nav3 {
    background-image: url(../img/nav/nav3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
}
.back-nav4 {
    background-image: url(../img/nav/nav4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
}
.megamenu-li {
  position: static;
}

.megamenu {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 15px;
}

.bg-light{
 background-color: #71b8b0!important;
}

.navbar {
  padding-top: 2px;
  padding-bottom: 2px;
  z-index: 1000!important;
}
.navbar-light .navbar-nav .nav-link {
  padding-top: 1px;
  padding-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    padding-right:2rem;
}
.brd-nav{
  border-left: 3px solid #fcd1ed;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0rem 0;
    margin: .0rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    border-radius: .25rem;
    box-shadow: 3px 3px 10px #DCDCDC;
}
.dropdown-item {
  font-family: 'DM Sans', sans-serif;
    color: #16181b;
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    padding-right: 2rem;
    text-transform: uppercase;
    transition-duration: 1s;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    font-weight: 900;
    text-decoration: none;
    background-color: #fff;
    background-image: url(../img/back-drop-green.svg);
  background-position:left;
  background-size: auto;
  background-repeat: no-repeat;
  transition-duration: 1s;
}

.nav-2{
 background-color: #fff!important;
}

.navbar-light .navbar-nav .link-navgiu {
    font-family: 'DM Sans', sans-serif;
    color: #444242;
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    padding-right: 2rem;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .link-navgiu:hover {
    font-family: 'DM Sans', sans-serif;
    color: #444242;
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 900;
    padding-right: 2rem;
    text-transform: uppercase;
    text-decoration: none;
    background-image: url(../img/back-drop-pink.svg);
  background-position:left;
  background-size: auto;
  background-repeat: no-repeat;
  transition-duration: 1s;
}

/*=================================================================
    Banner
==================================================================*/
.popup {
    height: auto;
    position: fixed;
    z-index: 99999;
    right: 0px;
    bottom: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.50);
    background: #0000;
    font-family: 'Roboto Condensed', sans-serif;
    display: none;
}
.banner-content {
    background-color: #fff;
    padding: 3rem;
    text-align: center;
}
.banner-content h3 {
    letter-spacing: 2px;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 25px;
    margin: 5px 0;
    font-weight: 600;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
}
.divisore {
    border-bottom: dashed 10px #009ED6;
}
.banner-content a {
    color: #fff;
}
.banner-content a:hover {
    color: #fff;
}
.popup i {
    font-size: 2.5em;
    position: absolute;
    padding: 10px;
    color: #000;
    z-index: 999;
}
.popup i:hover {
    cursor: pointer;
    color: rgba(238, 123, 0, 1);
}
.back-popup {
    background-image: url(../img/servizi/popup.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
}
.back-dentiera{
  background-image: url(../img/dentiera.jpg);
  background-position:center;
  background-size: cover;
  background-repeat:none;
  border:2rem solid #FFFFFF;
}
.back-1foto{
  background-image: url(../img/1foto.png);
  background-position:center;
  background-size: 100%;
  background-repeat:none;
  border:2rem solid #FFFFFF;
}
.back-focus-servizi{
  background-position:center;
  background-size: cover;
  background-repeat:none;
  border:2rem solid #FFFFFF;
}
.back-servizi{
  background-image: url(../img/servizi.jpg);
  background-position:center;
  background-size: cover;
  background-repeat:none;
  border:2rem solid #FFFFFF;
}
.back-assistenza{
  background-image: url(../img/assistenza.jpg);
  background-attachment: fixed;
  background-position:right;
  background-size: contain;
  background-repeat:no-repeat;
  border:2rem solid #FFFFFF;
}

.back-assistenza-mobile{
  background-image: url(../img/assistenza.jpg);
  background-position:right center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 20rem;
  border:2rem solid #FFFFFF;
}

.box-foto-studio{
  padding: 0.5rem;
}

.back-studio{
  background-image: url(../img/studio.jpg);
  background-position:center;
  background-size: cover;
  background-repeat:none;
  border:2rem solid #FFFFFF;
}

.back-pagodil{
  background-image: url(../img/pagodil2.jpg);
  background-position:center;
  background-size: 100%;
  background-repeat:no-repeat;
  border:2rem solid #FFFFFF;
}

.back-pink{
  background-image: url(../img/back-txt-pink.svg);
  background-position:left bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.back-green{
  background-image: url(../img/back-txt-green.svg);
  background-position:right bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.back-pink-dx{
  background-image: url(../img/back-txt-pink-dx.svg);
  background-position:right bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.back-green-sx{
  background-image: url(../img/back-txt-green-sx.svg);
  background-position:left bottom;
  background-size: auto;
  background-repeat: no-repeat;
}




.box-1testo{
  padding-top: 14rem;
  padding-bottom: 10rem;
  padding-left: 2rem;
  padding-right:10rem;
}

.box-servizi-h2{
  padding-top: 6rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right:2rem;
}

.box-servizi-icn{
  padding-top: 6rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right:1rem;
}

.box-testo-servizi{
  padding-top: 14rem;
  padding-bottom: 10rem;
  padding-left: 10rem;
  padding-right:2rem;
}
.box-img-servizi{
  padding-top: 14rem;
  padding-bottom: 10rem;
  padding-left: 4rem;
  padding-right:2rem;
}


.box-estetica{
  padding-top: 14rem;
  padding-bottom: 10rem;
  padding-left: 6rem;
  padding-right:6rem;
}


.box-call{
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 3rem;
  padding-right:3rem;
}
.back-appuntamento{
  background-color: #71b8b0; 
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-right: 2rem;
}


.txt{
  font-size: calc(14px + (24 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}
.txt-evid{
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.txt-servizi{
  font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}

.txt-servizi:hover{
  font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  background-image: url(../img/back-txt-green.svg);
  background-position:left;
  background-size: auto;
  background-repeat: no-repeat;
  transition-duration: 1s;
}
.brd-serv{
  border-bottom:1px solid #E6E6E6;
  border-right:1px solid #E6E6E6;

  padding-top: 1rem;
  padding-bottom: 0.01rem;
}

.titoloh2{
  font-size: calc(25px + (60 - 25) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.sup-title{
  font-size: calc(18px + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.titolo-h1-pag{
  font-size: calc(40px + (80 - 40) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  line-height: calc(30px + (80 - 30) * ((100vw - 300px) / (1920 - 300)));
}
.titolo-servizi{
  font-size: calc(50px + (120 - 50) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.titolo-call{
  font-size: calc(16px + (40 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
}
.sottotitolo-call{
  font-size: calc(17px + (32 - 17) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}

.titolo-appuntamento{
  font-size: calc(30px + (120 - 30) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(20px + (75 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  text-align: right;
  color:#fff;
  text-shadow: 3px -3px 5px #3e3e3e4d;
}
.sp-call{
  padding-top: 6rem;
  padding-bottom:6rem;
}
.sp-staff{
  padding-top: 6rem;
  padding-bottom:6rem;
}





#mapid { height: 520px; }
@media only screen and (max-width: 1400px) {
  .box-testo-servizi {
    padding-top: 14rem;
    padding-bottom: 10rem;
    padding-left: 4rem;
    padding-right: 2rem;
}
.box-img-servizi{
  padding-top: 14rem;
  padding-bottom: 10rem;
  padding-left: 4rem;
  padding-right:2rem;
}

}
@media only screen and (max-width: 1200px) {
.box-1testo {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
.box-servizi-h2 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 2rem;
}
.box-servizi-icn {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 0rem;
}

.icn2 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 0rem;
    padding-right: 1rem;
}
.btn{
                margin-bottom: 10px !important;
            }
.box-call {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.box-testo-servizi {
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
.box-img-servizi{
  padding-top: 1rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right:2rem;
}
.back-dentiera{
  border:0rem solid #FFFFFF;
}
.back-focus-servizi{
  background-position: center;
    background-size: cover;
    background-repeat: none;
    border: 2rem solid #FFFFFF;
    height: 30rem;
}
.back-servizi {
    background-image: url(../img/servizi.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
    border: 2rem solid #FFFFFF;
    height: 30rem;
}
.back-studio {
    background-image: url(../img/studio.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: none;
    border: 2rem solid #FFFFFF;
    height: 30rem;
}

.back-1foto{
  background-position:center;
  background-size: 100%;
  height: 20rem;
}

.box-estetica{
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right:2rem;
}



.back-pagodil{
  background-image: url(../img/pagodil2.jpg);
  background-position:center;
  background-size: 100%;
  background-repeat:no-repeat;
  border:2rem solid #FFFFFF;
  border-bottom:0rem;
  height: 30rem;
}
.sp-call {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.titolo-staff{
  font-size: calc(40px + (120 - 40) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  margin-left: -15px;
}
.back-appuntamento {
    background-color: #71b8b0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
}
#app {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding-bottom: 4vmin;
    height: 38vh;
    width: 100%;
    background: #87c5c0;
    color: #fff;
}


.title {
  padding-left: 1em;
  padding-top: 6rem;
  grid-column: 1/-1;
  grid-row: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 10vw;
  width: 100%;
  z-index: 2;
  text-transform: uppercase;
  line-height: 10vw;
  text-shadow: 3px 3px 5px #36363647;
}

.back-head-img{
   background-size: cover; 
   height: 40vh;
}
.card-body {
    padding: 0.7rem;
}
.nome-card {
    padding-top: 0.5rem;
}
.popup {
    width: 90vw;
    height: auto;
    position: fixed;
    z-index: 99999;
    right: 0px;
    bottom: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.50);
    background: #0000;
    font-family: 'Roboto Condensed', sans-serif;
}
.banner-content {
    background-color: #fff;
    padding: 1rem;
    text-align: center;
}
.btn {
    background-color: #71b8b0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    border-radius: 0 !important;
    border: none;
    transition: all 0.3s ease 0s;
    margin-top: 1rem;
}
}
@media only screen and (max-width: 900px) {
}