/* SKELETON OVERRIDE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
  font-family: 'minimal-mono', Courier, Courier New, monospace;
  color: #000000;
  font-size: 1.8em; /* currently ems cause chrome bug misinterpreting rems on body element */
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 1600px !important;
  position: relative;
}

.container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 80%;
  background-color: rgba(8, 120, 130, 0.1);
  top: 0;
  left: 50%;
  margin-left: -40%;
  display: block;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.loaded .container::before {
  opacity: 1;
}

h1 { font-size: 4.2rem; font-weight: 700; line-height: normal;  letter-spacing: normal; }
h2 { font-size: 3.4rem; font-weight: 700; line-height: normal; letter-spacing: normal; }
h3 { font-size: 2.9rem; font-weight: 700; line-height: normal;  letter-spacing: normal; }
h4 { font-size: 2.4rem; font-weight: 700; line-height: normal; letter-spacing: normal; }
h5 { font-size: 1.8rem; font-weight: 700; line-height: normal;  letter-spacing: normal; }
h6 { font-size: 1.5rem; font-weight: 700; line-height: normal;  letter-spacing: normal; }

@media (min-width: 550px) {
  h1 { font-size: 4.9rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.4rem; }
  h4 { font-size: 2.9rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

a {
  color: #087883;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #669e7b;
}

button,
.button {
  margin-bottom: 1.1rem; 
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.3rem; 
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.1rem; 
}

hr {
  margin-top: 2.9rem;
  margin-bottom: 3.4rem;
}

/* COMMON
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body.loading {
  opacity: 0;
}

body.menu-hidden[style]{
  height: 100% !important;
}

strong {
  font-weight: 700;
}

img {
  width: 100%;
  height: auto;
}

a.read-more {
  font-weight: 700;
  color: #000;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

a.read-more::before {
  content: "";
  display: inline-block;
  margin-right: 0.8rem;
  height: 1.5rem;
  width: 4.9rem;
  background-image: url(images/arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(0.3rem);
  transform: translateY(0.3rem);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a.read-more:hover::before {
  margin-right: 1.1rem;
}

@media (min-width: 750px) {
  .translate {
    margin-top: 50%;
  }
  .translate-negative {
    margin-top: -50%;
  }
}

.highlighted {
  font-size: 2.1rem;
}

.smaller {
  font-size: 1.5rem !important;
}

.close {
  cursor: pointer;
  width: 3.4rem;
  height: 3.4rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.close:active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.close .bar {
  width: 3.4rem;
  height: 0.2rem;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.1rem;
  cursor: pointer;
}

.close .bar1 {
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: center;
  transform: rotate(45deg);
  transform-origin: center;
}

.close .bar2 {
  -webkit-transform: rotate(-45deg);
  -webkit-transform-origin: center;
  transform: rotate(-45deg);
  transform-origin: center;
}

.wrap {
  position: relative;/* rimuovere alla riattivazione dello smoth scroll */
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded .wrap {
  opacity: 1;
}

.tags {
  list-style: none;
  font-weight: 700;
  font-size: 1.5rem;
}

@media (min-width: 1000px) {
  .tags {
    font-size: 1.8rem;
  }
}

.tags li {
  display: inline-block;
  margin-left: 0.8rem;
  margin-bottom: 0;
}

.blog-utilities .tags li {
  margin-right: 0.8rem;
  margin-left: 0;
}

.tags li:first-child {
  margin-left: 0;
}

.blog-utilities .tags li:last-child {
  margin-right: 0;
}

.tags li a::before {
  content: "#";
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.logo {
  position: fixed;
  z-index: 9999;
  top: 2.1rem;
  left: 2.1rem;
}

@media (min-width: 750px) {
  .logo {
    top: 4.2rem;
    left: 4.2rem;
  }
}

@media (min-width: 1200px) {
  .logo {
    top: 3vw;
    left: 3vw;
  }
}

.logo h1 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.logo a {
  color: #000;
  text-decoration: none;
}

.menu-trigger {
  cursor: pointer;
  position: fixed;
  top: 2.1rem;
  right: 2.1rem;
  z-index: 9999;
  -webkit-transition: opacity 0.3s ease-out, translateX 0.3s ease-out 0.3s;
  transition: opacity 0.3s ease-out, translateX 0.3s ease-out 0.3s;
}

.menu-hidden .menu-trigger {
  display: none;
}

@media (min-width: 1000px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger .bar {
  position: absolute;
  height: 0.2rem;
  width: 4.2rem;
  background-color: #000;
  top: 0.4rem;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menu-trigger .bar2 {
  top: 1.3rem;
  left: 0;
}

.menu-opened .menu-trigger .bar2 {
  top: 0.5rem;
  left: 0;
}

.menu-trigger .label {
  text-transform: lowercase;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1.8rem;
  width: 4.2rem;
}

.menu-opened .menu-trigger .label {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

nav {
  position: fixed;
  top: 8.9rem;
  right: 6.8rem;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.menu-opened nav {
  opacity: 1;
  z-index: 999;
}

nav::before {
  content: "";
  width: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.menu-opened nav::before {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 998;
  background-color: rgba(255,255,255,0.9);
  opacity: 1;
}

@media (min-width: 1000px) {
  nav {
    top: 4.2rem;
    right: 4.2rem;
    opacity: 1;
    z-index: 999;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (min-width: 1200px) {
  nav {
    top: 3vw;
    right: 3vw;
  }
}

nav ul {
  list-style: none;
  margin-bottom: 0;
  position: relative;
  z-index: 999;
}

nav ul li {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: right;
}

nav a {
  color: #000 !important;
  text-decoration: none !important;
  display: inline-block;
}

nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 0.2rem;
  background-color: #000;
  -webkit-transform: translateY(-0.3rem);
  transform: translateY(-0.3rem);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav a:hover::after {
  width: 98%;
}

.utility {
  position: fixed;
  z-index: -1;
  opacity: 0;
  bottom: 2.1rem;
  right: 6.8rem;
  -webkit-transition: opacity 0.3s ease-in-out 0s;
  transition: opacity 0.3s ease-in-out 0s;
}

.menu-opened .utility {
  opacity: 1;
  z-index: 999;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.3s ease-in-out 0.8s;
  transition: opacity 0.3s ease-in-out 0.8s;
}

@media (min-width: 1000px) {
  .utility {
    bottom: 4.2rem;
    right: 4.2rem;
    z-index: 999;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.3s ease-in-out 1.3s;
    transition: all 0.3s ease-in-out 1.3s;
  }
  .loaded .utility {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .utility {
    bottom: 3vw;
    right: 3vw;
  }
}

.utility ul {
  list-style: none;
  margin-bottom: 0;
  position: relative;
}

.utility ul li {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: right;
}

/* CONTENT
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.intro {
  padding-top: 21vh;
}

.intro .container::before {
  height: 110%;
  top: -10%;
}

.home .intro .container::before {
  height: 105%;
  top: -5%;
}

.page-title h1 {
  font-size: 7vw;
  margin-bottom: 8vh;
  margin-left: -1vw;
  line-height: 1.3;
}

@media (min-width: 1000px) {
  .page-title h1 {
    line-height: 1;
  }
}

.home .page-title h1,
.page-template-home .page-title h1 {
  font-size: 13vw;
}

@media (min-width: 1000px) {
  .page-template-chi-sono .page-title h1 {
    font-size: 6vw;
  }
  .single-post .page-title h1 {
    font-size: 5vw;
  }
}

.page-subtitle {
  margin-top: 5vh;
}

@media (min-width: 750px) {
  .page-subtitle {
    margin-top: 0;
  }
}

.page-subtitle h2 {
  font-size: 2.1rem;
  font-weight: 700;
}

.page-name h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.page-name h2::before {
  content: "";
  width: 4.2rem;
  height: 0.2rem;
  background-color: #000;
  display: inline-block;
  margin-right: 1.3rem;
  -webkit-transform: translateY(-0.3rem);
  transform: translateY(-0.3rem);
}

.goto-chi {
  font-size: 1.5rem;
}

.intro .module {
  margin-top: 21vh;
}

.page-template-home .intro .module .translate {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .page-template-home .intro .module .translate {
    margin-top: 50%;
  }
}

.page-template-home .intro .module .columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .page-template-home .intro .module .columns {
    margin-left: 4%;
  }
  .page-template-home .intro .module .columns:first-child {
    margin-left: 0%;
  }
  .page-template-home .intro .module .six.columns {
    width: 48%;
  }
  .page-template-home .intro .module .five.columns {
    width: 39.3333333333%;
  }
}

.page-template-home .intro .module .offset-by-one.columns {
  margin-left: 0;
}

@media (min-width: 1200px) {
  .page-template-home .intro .module .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }
}

.intro .module h2 {
  font-weight: 400;
  font-size: 2.9rem;
}

@media (min-width: 750px) {
  .intro .module h2 {
    font-size: 3.4rem;
  }
}

.intro .module p {
  margin-bottom: 5vh;
}

.intro .module.even {
  text-align: right;
}

@media (min-width: 1200px) {
  .page-template-home .intro .module.even {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-align-content: flex-start;
    align-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}


.article .module {
  padding-top: 21vh;
}

.article .module:first-child {
  padding-top: 13vh;
}

@media (min-width: 1000px) {
  .article .module:first-child {
    padding-top: 21vh;
  }
}

.profile-block {
  margin-bottom: 5vh;
}

.page-template-servizi .article .module,
.page-template-mindfulness .article .module {
  padding-top: 8vh;
}

.page-template-servizi .article .module.services ,
.page-template-mindfulness .article .module.mindfulness-service {
  padding-top: 0;
}

@media (min-width: 750px) {
  .page-template-servizi .article .module.services ,
  .page-template-mindfulness .article .module.mindfulness-service {
    padding-top: 8vh;
  }
}

.page-template-chi-sono .article .module h2 {
  font-size: 2.1rem;
}

@media (min-width: 1200px) {
  .page-template-chi-sono .article .module h2 {
    font-size: 2.4rem;
  }
}

.page-template-servizi .article .module h2,
.page-template-mindfulness .article .module h2,
.article .services h2 {
  font-size: 1.8rem;
}

@media (min-width: 1200px) {
  .page-template-servizi .article .module h2,
  .page-template-mindfulness .article .module h2,
  .article .services h2 {
    font-size: 2.4rem;
  }
}

.page-template-mindfulness .mindfulness-article {
  text-align: right;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.page-template-mindfulness .article .module.mindfulness-article h2 {
  font-weight: 400;
  font-size: 3.4rem;
}

@media (min-width: 750px) {
  .page-template-mindfulness .article .module.mindfulness-article h2 {
    font-weight: 400;
    font-size: 4.2rem;
  }
}

.article p {
  font-size: 1.8rem;
  background-color: transparent;
}

@media (min-width: 1000px) {
  .article p {
    font-size: 2.1rem;
  }
}

.single-post .article h2,
.single-post .article h3,
.single-post .article h4 {
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.single-post .article ul {
  list-style-position: outside;
  list-style-type: disc;
  font-size: 1.8rem;
  padding-left: 2.4rem;
  background-color: transparent;
}

@media (min-width: 1000px) {
  .single-post .article ul {
    font-size: 2.1rem;
  }
}

@media (min-width: 750px) {
  .page-template-chi-sono .profile-triggers .four.columns,
  .page-template-mindfulness .mindfulness-service .four.columns {
    width: 48%;
  }
  .page-template-servizi .services .three.columns,
  .page-template-mindfulness .mindfulness-service .four.columns {
    width: 30.6666666667%;
  }
}

@media (min-width: 1000px) {
  .page-template-chi-sono .profile-triggers .four.columns {
    width: 30.6666666667%;
  }
  .page-template-servizi .services .three.columns {
    width: 22%;
  }
}

.excerpt .page-title h1 {
  font-size: 8vw;
  margin-bottom: 5vh;
  margin-left: -1vw;
  line-height: 1;
  text-align: right;
}

.page-template-home .excerpt h1 {
  margin-top: 13vh;
}

@media (min-width: 1200px) {
  .page-template-home .excerpt h1 {
    margin-top: 0;
  }
}

.excerpt .article {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 750px) {
  .excerpt .article {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.page-template-home .excerpt .article:nth-child(odd) {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.excerpt .article.first {
  margin-top: 0;
}

@media (min-width: 750px) {
  .excerpt .article .four.columns {
    width: 39.3333333333%;
  }
}

@media (min-width: 1200px) {
  .excerpt .article .four.columns {
    width: 30.6666666667%;
  }
}

.post-item {
  text-align: right;
  margin-bottom: 13vh;
  -webkit-transform: translateY(4.2rem);
  transform: translateY(4.2rem);
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(.23,.09,.24,.98);
  transition: all 0.8s cubic-bezier(.23,.09,.24,.98);
}

.loaded .post-item {
  opacity: 1;
  -webkit-transition: all 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
  transition: all 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
}

.post-item.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.8s cubic-bezier(.23,.09,.24,.98) 0s;
  transition: all 0.8s cubic-bezier(.23,.09,.24,.98) 0s;
}

.post-item .feat-image {
  width: 100%;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-item .feat-image::after {
  content: "";
  display: block;
  padding-bottom: 130%;
}

.post-item .date {
  padding-right: 0.3rem;
  margin-top: 2.1rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

@media (min-width: 1000px) {
  .post-item .date {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}

.post-item .title {
  padding-right: 0.3rem;
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 1200px) {
  .post-item .title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1400px) {
  .post-item .title {
    font-size: 2.9rem;
  }
}

nav.posts-navigation {
  position: static;
}

.blog-utilities h2 {
  font-size: 2.9rem;
}

.blog-utilities {
  margin-top: 13vh;
  margin-bottom: 21vh;
}

.contatti .container {
  position: relative;
  padding-bottom: 8vh;
}

@media (min-width: 1200px) {
  .contatti .container {
    padding-bottom: 21vh;
  }
}

.page-template-chi-sono .contatti .container,
.single-post .contatti .container {
  padding-top: 21vh;
}

.page-template-servizi .contatti .container,
.page-template-minfulness .contatti .container {
  padding-top: 13vh;
}

.cv {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255,255,255,1);
  overflow-y: scroll;
  -webkit-transition: all 0.3s cubic-bezier(.23,.09,.24,.98);
  transition: all 0.3s cubic-bezier(.23,.09,.24,.98);
}

.cv.show {
  opacity: 1;
  visibility: visible;
  z-index: 9998;
  -webkit-transition: opacity 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
  transition: opacity 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
}

.cv .close {
  position: fixed;
  z-index: 9998;
  top: 2.1rem;
  right: 2.1rem;
}

@media (min-width: 750px) {
  .cv .close {
    top: 4.2rem;
    right: 4.2rem;
  }
}

@media (min-width: 1200px) {
  .cv .close {
    top: 3vw;
    right: 3vw;
  }
}

.cv .container {
  margin-top: 8vh;
  padding-top: 8vh;
  margin-bottom: 8vh;
  padding-bottom: 8vh;
}

.cv h3 {
  font-size: 6vw;
  margin-bottom: 13vh;
}

.cv ul {
  list-style-position:outside;
  list-style-type: disc;
}

@media (min-width: 750px) {
  .contatti .offset-by-four.columns {
    margin-left: 0;
  }
  .contatti .four.columns {
    width: 48%;
  }
}

@media (min-width: 1200px) {
  .contatti .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .contatti .four.columns {
    width: 30.6666666667%;
  }
}


.contatti .page-title {
  margin-top: 8vh;
}

.page-template-mindfulness .contatti .page-title {
  margin-top: 21vh;
}

.contatti .page-title h1 {
  font-size: 3.4rem;
  margin-bottom: 5vh;
  margin-left: -1vw;
  line-height: 1;
  text-align: left;
}

@media (min-width: 1000px) {
  .contatti .page-title h1 {
    font-size: 6vw;
  }
}

.contatti .phone {
  margin-bottom: 3vh;
}

.contatti .address {
  margin-top: 5vh;
}

@media (min-width: 750px) {
  .contatti .address {
    margin-top: 0;
  }
}

.contatti h5 {
  margin-bottom: 1.3rem;
}

.contatti p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .contatti p {
    font-size: 1.8rem;
  }
}

footer {
  padding: 2.1rem;
}

@media (min-width: 750px) {
  footer {
    padding: 4.2rem;
  }
}

@media (min-width: 1200px) {
  footer {
    padding: 3vw;
  }
}

footer .copy {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0;
  margin-top: 2.1rem;
  width: 100%;
}

@media (min-width: 1000px) {
  footer .copy  {
    width: 50%;
    font-size: 1.5rem;
    margin-top: 0;
  }
}

.circle {
  position: absolute;
  /* position: fixed; ripristinare alla riattivazione dello scroll */
  -webkit-animation-name: floatMe;
  animation-name: floatMe;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.circle-1 {
  right: 13vw;
  top: -8vh;
  width: 13rem;
  z-index: -1;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@media (min-width: 750px) {
  .circle-1 {
    width: 21rem;
  }
}

@media (min-width: 1000px) {
  .circle-1 {
    width: 21vw;
  }
}

.circle-2 {
  left: -5vw;
  top: 100vh;
  width: 13rem;
  z-index: -1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media (min-width: 750px) {
  .circle-2 {
    width: 18rem;
  }
}

@media (min-width: 1000px) {
  .circle-2 {
    width: 18vw;
  }
}

.page-template-mindfulness .circle-2 {
  top: 49vh;
  left: 87vw;
}

.page-template-blog .circle-2,
.tag .circle-2 {
  top: 49vh;
}

.page-template-home-temporanea .circle-2 {
  top: 49vh;
  left: 87vw;
  width: 13rem;
}

@media (min-width: 1000px) {
  .page-template-home-temporanea .circle-2 {
    width: 13vw;
  }
}

.circle-3 {
  right: -8vw;
  top: 160vh;
  width: 13rem;
  z-index: -1;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

@media (min-width: 750px) {
  .circle-3 {
    width: 21rem;
  }
}

@media (min-width: 1000px) {
  .circle-3 {
    width: 21vw;
    right: 21rem;
  }
}

@media (min-width: 1000px) {
  .page-template-chi-sono .circle-3 {
    right: 3rem;
  }
}

.page-template-mindfulness .circle-3 {
  top: 180vh;
  right: 89vw;
}

.page-template-home-temporanea .circle-3 {
  top: 89vh;
  right: 89vw;
}

.circle-4 {
  left: 85%;
  top: 190vh;
  width: 8rem;
  z-index: -1;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@media (min-width: 750px) {
  .circle-4 {
   width: 13rem;
  }
}

@media (min-width: 1000px) {
  .circle-4 {
    left: 55%;
    width: 13vw;
  }
}

.page-template-mindfulness .circle-4 {
  top: 160vh;
  left: 5%;
}

@media (min-width: 1000px) {
  .page-template-chi-sono .circle-4 {
    left: 70%;
  }
}

.circle-5 {
  left: 75%;
  bottom: 55vh;
  width: 13rem;
  z-index: -1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media (min-width: 750px) {
  .circle-5 {
     width: 18rem;
  }
}

@media (min-width: 1000px) {
  .circle-5 {
    left: 0;
    width: 18vw;
  }
}

.circle-6 {
  left: 85%;
  bottom: 34vh;
  width: 8rem;
  z-index: -1;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@media (min-width: 1000px) {
  .circle-6 {
    width: 13rem;
  }
}

@media (min-width: 1000px) {
  .circle-6 {
    width: 13vw;
  }
}

@media (min-width: 1200px) {
  .circle-6 {
    left: 21%;
  }
}

@-webkit-keyframes floatMe {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-1.3rem);
    transform: translateY(-1.3rem);
  }
  50% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
  }
  75% {
    -webkit-transform: translateY(1.3rem);
    transform: translateY(1.3rem);
  }
  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
  }
}

@keyframes floatMe {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-1.3rem);
    transform: translateY(-1.3rem);
  }
  50% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
  }
  75% {
    -webkit-transform: translateY(1.3rem);
    transform: translateY(1.3rem);
  }
  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
  }
}

.aivalability-form {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255,255,255,1);
  overflow-y: scroll;
  background-color: #CCE2E3;
  -webkit-transition: all 0.3s cubic-bezier(.23,.09,.24,.98);
  transition: all 0.3s cubic-bezier(.23,.09,.24,.98);
}

.aivalability-form.show {
  opacity: 1;
  visibility: visible;
  z-index: 9998;
  -webkit-transition: opacity 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
  transition: opacity 0.8s cubic-bezier(.23,.09,.24,.98) 0.3s;
}

.aivalability-form .close {
  position: fixed;
  z-index: 9998;
  top: 2.1rem;
  right: 2.1rem;
}

@media (min-width: 750px) {
  .aivalability-form .close {
    top: 4.2rem;
    right: 4.2rem;
  }
}

@media (min-width: 1200px) {
  .aivalability-form .close {
    top: 3vw;
    right: 3vw;
  }
}

.aivalability-form .container {
  margin-top: 21vh;
}

.aivalability-form .container::before {
  display: none;
}

.aivalability-form h5 {
  margin-bottom: 0.8rem;
  margin-left: -0.2ewm;
  font-size: 2.9rem;
}

@media (min-width: 750px) {
  .aivalability-form h5 {
    font-size: 4.2rem;
  }
}

.aivalability-form .request {
  font-size: 1.5rem;
  margin-top: 5vh;
}

@media (min-width: 750px) {
  .aivalability-form .request {
    margin-top: 0;
  }
}


.aivalability-form .request h5 {
  margin-bottom: 3vh;
}

.aivalability-form .phone {
  margin-bottom: 5vh;
}

.aivalability-form .request div {
  margin-bottom: 1.3rem;
}

.aivalability-form textarea {
  min-height: 89px;
  width: 100%;
  -webkit-transition: all 0.8s cubic-bezier(.23,.09,.24,.98);
  transition: all 0.8s cubic-bezier(.23,.09,.24,.98);
}

.aivalability-form textarea:focus {
  min-height: 199px;
  border: 0;
  border-radius: 0;
}

.aivalability-form input[type="email"], .aivalability-form input[type="number"], .aivalability-form input[type="search"], .aivalability-form input[type="text"], .aivalability-form input[type="tel"], .aivalability-form input[type="url"], .aivalability-form input[type="password"], .aivalability-form input[type="date"] {
  height: 4.2rem;
  border: 0;
  border-radius: 0;
  padding: 6px 10px;
}

.aivalability-form input[type="email"], .aivalability-form input[type="number"], .aivalability-form input[type="search"], .aivalability-form input[type="text"], .aivalability-form input[type="tel"], .aivalability-form input[type="url"], .aivalability-form input[type="password"] {
  width: 100%;
}

.aivalability-form input[type="checkbox"] {
  margin-bottom: 0;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border: 0;
}

.aivalability-form .submit {
  margin-top: 3.4rem;
}

.aivalability-form input[type="submit"] {
  color: #000;
  font-weight: 700;
  line-height: 37px;
  border-radius: 0;
  border-color: #000;
}

.aivalability-form label {
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
}

.aivalability-form .screen-reader-response {
  display: none;
}

.aivalability-form .wpcf7-not-valid-tip,
.aivalability-form .wpcf7-validation-errors {
  color: red;
}

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
