@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Open-sans", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #313131;
}

p.negative {
  color: #FFF;
}

.txt-center {
  text-align: center;
}

@media (max-width: 768px) {
  .txt-center-mob {
    text-align: center;
  }
}

.headline {
  font-size: 28px;
  line-height: 1.2;
  color: #212D46;
  font-weight: 700;
  margin: 0.5rem 0;
  text-decoration: none;
}
.headline__white {
  color: #FFF;
}
.headline__cyan {
  color: #1CA2B0;
}
.headline__red {
  color: #e53f49;
}
.headline__green {
  color: #7CBF1D;
}
.headline__orange {
  color: #d4951f;
}
.headline__normal {
  font-weight: 400;
}
.headline__uppercase {
  text-transform: uppercase;
}
.headline__center {
  text-align: center;
}
.headline__right {
  text-align: right;
}
.headline__logo {
  font-size: 46px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .headline__logo {
    font-size: 36px;
  }
}
.headline__1 {
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .headline__1 {
    font-size: 32px;
  }
}
.headline__2 {
  font-size: 34px;
}
@media (max-width: 768px) {
  .headline__2 {
    font-size: 28px;
  }
}
.headline__3 {
  font-size: 28px;
}
@media (max-width: 768px) {
  .headline__3 {
    font-size: 26px;
  }
}
.headline__4 {
  font-size: 26px;
}
@media (max-width: 768px) {
  .headline__4 {
    font-size: 24px;
  }
}
.headline__5 {
  font-size: 22px;
}
@media (max-width: 768px) {
  .headline__5 {
    font-size: 20px;
  }
}
.headline__6 {
  font-size: 18px;
}
@media (max-width: 768px) {
  .headline__6 {
    font-size: 18px;
  }
}
.headline__7 {
  font-size: 16px;
}

@media (min-width: 768px) {
  a.headline:hover {
    text-decoration: underline;
  }
}

.cyan {
  color: #1CB1C6;
}

.copy-big {
  font-size: 1rem;
  font-weight: 300;
  color: #313131;
}
.copy-big__black {
  color: #313131;
}

strong {
  font-weight: 700;
}

.x-small {
  font-size: 0.8rem;
}

.xx-small {
  font-size: 0.7rem;
}

.em {
  font-size: 120%;
  font-weight: 500;
}

.grey {
  color: grey;
}

.blank {
  padding-bottom: 3rem;
}

.simple-list {
  padding: 0;
}
.simple-list li {
  font-weight: 300;
  list-style: none;
  position: relative;
  padding-left: 1rem;
  margin: 0.75rem 0;
  color: #313131;
}
.simple-list li:before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: 0.375rem;
  left: 0;
  background: #e53f49;
}
.simple-list__small {
  font-size: 0.9rem;
}

.list {
  padding: 0;
  padding-bottom: 1.2rem;
}
.list li {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1rem;
  list-style: none;
  padding: 0.75rem 0;
  color: #313131;
  font-weight: 300;
}
.list li:before {
  display: block;
  margin-right: 0.5rem;
  margin-top: 0.12rem;
}

span {
  display: inline;
}

.list__negative li {
  font-size: 1rem;
  padding: 0.375rem 0;
}

.list-icon {
  width: 100%;
  max-width: 80px;
  margin: 0 auto 1rem 0;
}
.list-icon__neg {
  transform: scale(0.8);
}

.hr-1 {
  border: 0;
  border-bottom: 1px solid #ff7800;
  margin-bottom: 2rem;
}

button:focus {
  outline: none;
}

.btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  padding: 0.5rem 1.375rem;
  cursor: pointer;
  background: transparent;
  z-index: 2;
  transition: 0.2s;
  overflow: hidden;
}
.btn__outline {
  color: #212D46;
  border: 2px solid #1CB1C6;
}
.btn__outline:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #1CB1C6;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .btn__outline:hover {
    color: #FFF;
  }
  .btn__outline:hover:before {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.btn__outline__white {
  color: #FFF;
  border: 2px solid #1CB1C6;
}
.btn__outline__white:before {
  background: #1CB1C6;
}
@media (min-width: 768px) {
  .btn__outline__white:hover {
    color: #212D46;
  }
}
.btn__filled {
  color: #FFF;
  border: 2px solid #e53f49;
  background: #e53f49;
}
.btn__filled:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #212D46;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .btn__filled:hover {
    color: #FFF;
  }
  .btn__filled:hover:before {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.btn__small {
  font-size: 0.9rem;
  font-weight: 500;
}
.btn:focus {
  outline: none;
}

a {
  color: inherit;
}

.cuore {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #eaeaea;
  margin: 0 0.4rem 0 0.3rem;
  transform: scale(0.6) rotate(45deg) translateY(0.2rem);
}
.cuore:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #eaeaea;
  border-radius: 50%;
}
.cuore:after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #eaeaea;
  border-radius: 50%;
}

#msgcookies {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  display: flex;
  flex-flow: column;
  padding: 2rem;
  color: #313131;
  font-size: 1rem;
  background-color: #eaeaea;
  border-radius: 1rem;
  line-height: 1.4rem;
  z-index: 99999;
  box-shadow: 0 12px 20px -14px #925e5e;
}
@media (min-width: 768px) {
  #msgcookies {
    flex-flow: row;
  }
}
#msgcookies .wrapper1 {
  width: 80%;
  max-width: 960px;
}
@media (max-width: 768px) {
  #msgcookies .wrapper1 {
    width: 60%;
  }
}
#msgcookies .wrapper2 {
  width: 20%;
}

#msgcookies a {
  display: inline-block;
  font-weight: 600;
  color: #2B97D0;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  #msgcookies a {
    margin: 0;
  }
}

#msgcookies a:nth-child(2) {
  margin-right: 20px;
}

#msgcookies a:hover {
  color: #F18A21;
}

#msgcookies .cookie-btn {
  text-decoration: none;
  padding: 0.3rem 2rem;
  margin: 5px 0 0 10px;
  background: #2B97D0;
  border: 2px solid #2B97D0;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 3rem;
}

.header {
  position: relative;
  text-align: center;
}
.header .logo {
  position: absolute;
  top: 0.5rem;
  left: 3rem;
  width: 240px;
}
@media (max-width: 768px) {
  .header .logo {
    width: 180px;
    top: 0.25rem;
    left: 0.25rem;
  }
}
.header .picture-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: -100;
}
.header .picture-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlap {
  display: block;
  width: 250px;
  margin: 0 auto 2rem 0;
  padding-top: 1rem;
}
@media (min-width: 480px) {
  .logo-overlap {
    padding: 0;
    width: 320px;
  }
}

img {
  display: block;
}

.shape {
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  background-color: #212D46;
}
.shape__white {
  background-color: #FFF;
}
.shape__grey {
  background: #eaeaea;
}
.shape__lgrey {
  background-color: #FAFAFA;
}
.shape__cyan {
  background-color: #1CB1C6;
}
.shape__top {
  top: -1px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.shape__bottom {
  bottom: -1px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.shape__fixed {
  transition: 0.3s;
  background-color: #1CA2B0;
  position: fixed;
  z-index: 998;
  top: -100px;
}
.shape__fixed:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  position: absolute;
  top: -6px;
  left: 0;
  background: #212D46;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
}
.shape__fixed__scrolled {
  top: 0;
}

section {
  background: #FFF;
  position: relative;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 0;
}
.wrapper__has-padding {
  padding: 8rem 1rem 1rem;
}
@media (max-width: 480px) {
  .wrapper__has-padding-mobile {
    padding: 8rem 1rem 1rem;
  }
}
.wrapper__first {
  padding-top: 0;
}

.video-cover {
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
}
.video-cover:hover {
  opacity: 0.8;
}

.opzioni-box-container .opzioni-box {
  padding: 2rem 0.75rem 0.75rem;
  position: relative;
  border: 1px solid #eaeaea;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .opzioni-box-container .opzioni-box {
    margin-bottom: 3rem;
  }
  .opzioni-box-container .opzioni-box:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .opzioni-box-container .opzioni-box:hover .icon-container span {
    margin-top: -4rem;
    opacity: 0;
  }
  .opzioni-box-container .opzioni-box:hover .icon-container img {
    opacity: 1;
  }
}
.opzioni-box-container .opzioni-box .icon-container {
  position: absolute;
  top: -2rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  background: #FFF;
  transition: 0.2s;
  overflow: hidden;
}
.opzioni-box-container .opzioni-box .icon-container span {
  font-size: 2rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.opzioni-box-container .opzioni-box .icon-container img {
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .opzioni-box-container .opzioni-box__neg {
    border: 1px solid #e53f49;
  }
  .opzioni-box-container .opzioni-box__neg span {
    color: #e53f49;
  }
}
@media (min-width: 768px) {
  .opzioni-box-container .opzioni-box__neg {
    border: 1px solid #212D46;
  }
  .opzioni-box-container .opzioni-box__neg span {
    color: #212D46;
  }
  .opzioni-box-container .opzioni-box__neg p {
    transition: 0.2s;
  }
  .opzioni-box-container .opzioni-box__neg:hover {
    border: 1px solid #e53f49;
  }
  .opzioni-box-container .opzioni-box__neg:hover p {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .opzioni-box-container .opzioni-box__pos {
    border: 3px solid #7CBF1D;
  }
  .opzioni-box-container .opzioni-box__pos span {
    color: #7CBF1D;
  }
}
@media (min-width: 768px) {
  .opzioni-box-container .opzioni-box__pos {
    box-shadow: 0 20px 30px -16px #77b1ae;
    border: 3px solid #1CA2B0;
  }
  .opzioni-box-container .opzioni-box__pos span {
    color: #1CA2B0;
  }
  .opzioni-box-container .opzioni-box__pos:hover {
    border: 3px solid #7CBF1D;
    box-shadow: 0 20px 40px -16px #4a821885;
  }
}
@media (min-width: 480px) {
  .opzioni-box-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .opzioni-box-container .opzioni-box {
    width: 32%;
  }
}

section.sect3 {
  background: #eaeaea;
}
section.sect3 .negative-box {
  margin-top: 0.5rem;
}

.flex-start {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.flex-end {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: stretch;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.col-50 {
  width: 50%;
}
@media (max-width: 768px) {
  .col-50 {
    width: 100%;
  }
}
.col-50__down {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .col-50__pad-left {
    padding-left: 1rem;
  }
  .col-50__pad-right {
    padding-right: 1rem;
  }
}

.col-20 {
  width: 20%;
}
@media (max-width: 768px) {
  .col-20 {
    width: 100%;
  }
}
.col-20__down {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .col-20__pad-left {
    padding-left: 0.75rem;
  }
  .col-20__pad-right {
    padding-right: 0.75rem;
  }
}

.col-25 {
  width: 100%;
}
@media (min-width: 768px) {
  .col-25 {
    width: 25%;
  }
  .col-25__pad-left {
    padding-left: 0.75rem;
  }
  .col-25__pad-right {
    padding-right: 0.75rem;
  }
}

.col-80 {
  width: 80%;
}
.col-80__pad-left {
  padding-left: 2rem;
}

.col-30 {
  width: 100%;
}
@media (min-width: 768px) {
  .col-30 {
    width: 33.333%;
  }
}

.col-60 {
  width: 100%;
}
@media (min-width: 768px) {
  .col-60 {
    width: 66.666%;
  }
}

.blue-bg {
  background-color: #212D46;
}

.sad-guy {
  width: 40%;
  margin: 2rem;
}
@media (max-width: 768px) {
  .sad-guy {
    margin: 0 0 0 auto;
  }
}

.happy-guy {
  width: 40%;
}
@media (max-width: 768px) {
  .happy-guy {
    margin: 0 auto;
  }
}

.winner-guy {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .winner-guy {
    width: 30%;
  }
}

.lg-bg {
  background-color: #FAFAFA;
}

.arrow-bg {
  margin: 1rem 0;
  width: 100%;
}
@media (max-width: 768px) {
  .arrow-bg {
    display: none;
  }
}

@media (min-width: 768px) {
  .servizi-description {
    font-size: 1;
    opacity: 0;
    transform: translateY(-1rem);
    transition: 0.2s;
  }
}

.servizi {
  padding: 0 0.5rem;
}
.servizi .photo-container {
  display: block;
  width: 100%;
  height: 200px;
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}
.servizi .photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  transform: scale(1);
}

@media (min-width: 768px) {
  .servizi {
    width: 33%;
    cursor: pointer;
  }
  .servizi .photo-container {
    -webkit-clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
    clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
  }
  .servizi .title {
    transform: translateY(1rem);
    transition: 0.2s;
  }

  .servizi:hover .title {
    transform: translateY(0);
    transition: 0.2s;
  }
  .servizi:hover .servizi-description {
    transform: translateY(0);
    opacity: 1;
  }
  .servizi:hover .photo-container img {
    transform: scale(1.1);
  }
}
.video-link {
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  background: #7CBF1D;
  color: #FFF;
}
@media (min-width: 768px) {
  .video-link {
    transition: 0.2s;
  }
  .video-link:hover {
    opacity: 0.6;
  }
}

.pricetable-video-link {
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  background: #7CBF1D;
  color: #FFF;
}
@media (max-width: 768px) {
  .pricetable-video-link {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .pricetable-video-link {
    font-size: 0.675rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.4rem;
    transition: 0.2s;
  }
  .pricetable-video-link:hover {
    opacity: 0.6;
  }
}

.pricetable-btn {
  width: 100%;
  height: 100%;
  border: none;
  padding: 1rem 0;
  font: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
.pricetable-btn:hover {
  opacity: 0.5;
}
.pricetable-btn__green {
  background: #D6D92E;
  color: #212D46;
}
.pricetable-btn__cyan {
  background: #1CB1C6;
  color: #212D46;
}
.pricetable-btn__blue {
  background: #212D46;
  color: #FFF;
}

.pricetable-container {
  padding: 5rem 0 6rem;
}
.pricetable-container p {
  margin: 0;
}
@media (max-width: 768px) {
  .pricetable-container p {
    font-size: 1rem;
  }
}
.pricetable-container .title {
  padding-top: 1.5rem;
}
.pricetable-container .table-title {
  margin: 0;
  padding: 0 0 1rem;
  position: relative;
  z-index: 2;
}
.pricetable-container .table-title span {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricetable-container .table-title__negative {
  color: #FFF;
}
.pricetable-container .table-offer {
  margin: 0.375rem 0;
}
.pricetable-container .table-offer .number {
  font-size: 2rem;
  font-weight: 300;
}
.pricetable-container .table-offer .uppercase {
  text-transform: uppercase;
}
.pricetable-container .table-offer .uppercase__margin {
  display: inline-block;
  margin-left: 0.5rem;
}
.pricetable-container .table-offer .small {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.pricetable-container .col-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.5rem 0;
}
.pricetable-container .col-title__small {
  font-size: 0.9rem;
  font-weight: 300;
}
.pricetable-container .p-row {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid #c1c1c1;
}
.pricetable-container .p-row:first-child {
  border-bottom: none;
}
.pricetable-container .p-row:last-child {
  border-bottom: none;
}
.pricetable-container .p-row__hover:hover {
  opacity: 0.6;
}
.pricetable-container .p-col {
  width: 25%;
  padding: 0.5rem 0.375rem;
  position: relative;
}
.pricetable-container .p-col:nth-child(2):after {
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  background: transparent;
  background: linear-gradient(90deg, rgba(7, 7, 28, 0.25) 0%, rgba(14, 21, 42, 0.14) 35%, rgba(14, 21, 42, 0) 90%);
  position: absolute;
  top: 0;
  right: -18px;
  z-index: 2;
}
.pricetable-container .p-col:nth-child(3):after {
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  background: transparent;
  background: linear-gradient(90deg, rgba(7, 7, 28, 0.25) 0%, rgba(14, 21, 42, 0.14) 35%, rgba(14, 21, 42, 0) 90%);
  position: absolute;
  top: 0;
  right: -18px;
  z-index: 2;
}
.pricetable-container .p-col__center {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.pricetable-container .p-col__1 {
  text-align: center;
  background-color: #FAFAFA;
}
.pricetable-container .p-col__1 .taglio {
  background-color: #D6D92E;
}
.pricetable-container .p-col__2 {
  text-align: center;
  background-color: #eaeaea;
}
.pricetable-container .p-col__2 .taglio {
  background-color: #1CA2B0;
}
.pricetable-container .p-col__3 {
  text-align: center;
  background-color: #FAFAFA;
}
.pricetable-container .p-col__3 .taglio {
  background-color: #212D46;
}
.pricetable-container .p-col__last {
  padding: 0;
}
.pricetable-container .p-col .flex-row-center {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.pricetable-container .p-col .flex-row-center .uppercase {
  transform: translateY(0.2rem) !important;
}

.taglio {
  position: absolute;
  top: -0.8rem;
  left: -1px;
  width: calc(100% + 2px);
  height: 5rem;
  z-index: 1;
  transform: rotate(-6deg) skew(-6deg);
}
.taglio__green {
  background: #D6D92E;
}
.taglio__cyan {
  background: #1CA2B0;
}
.taglio__blue {
  background: #212D46;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot__green {
  background: #D6D92E;
}
.dot__cyan {
  background: #1CA2B0;
}
.dot__blue {
  background: #212D46;
}

.dash {
  width: 12px;
  height: 3px;
}
.dash__green {
  background: #D6D92E;
}
.dash__cyan {
  background: #1CA2B0;
}
.dash__blue {
  background: #212D46;
}

#close_pricetable {
  position: sticky;
  display: block;
  margin: 0 0 0 auto;
  top: 0;
}

#pricetable {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 86%;
  overflow-y: scroll;
  border-radius: 6px;
  box-shadow: 0 0 300px 200px rgba(21, 24, 46, 0.502);
  z-index: 99;
  padding: 0 0 4rem;
}
#pricetable .wrapper {
  padding-left: 0;
  padding-right: 0;
}
#pricetable .padding-side {
  padding-left: 1rem;
  padding-right: 1rem;
}
#pricetable .eukinaction {
  width: 100%;
}
@media (max-width: 768px) {
  #pricetable .eukinaction {
    padding: 0 1rem 1rem;
  }
}
@media (min-width: 768px) {
  #pricetable .eukinaction {
    padding-left: calc(25% + .5rem);
  }
}

.mob-pricetable-slider {
  width: 100%;
}
.mob-pricetable-slider .flex-row-center {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.mob-pricetable-slider .flex-row-center .uppercase {
  transform: translateY(0.2rem) !important;
}
.mob-pricetable-slider .spacer {
  padding: 4rem 1rem 2rem;
}
.mob-pricetable-slider .slide {
  position: relative;
  padding: 0;
  box-shadow: 0 5px 10px -10px #b38d8f;
  transition: 0.2s;
}
.mob-pricetable-slider .slide__first {
  background: #FAFAFA;
}
.mob-pricetable-slider .slide__second {
  background: #eaeaea;
}
.mob-pricetable-slider .slide__third {
  background: #FAFAFA;
}
.mob-pricetable-slider .slide .price-title {
  font-size: 1.4rem;
}
.mob-pricetable-slider .slide .slide-header {
  position: relative;
}
.mob-pricetable-slider .slide .taglio {
  top: -1rem;
}
.mob-pricetable-slider .check-list {
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.mob-pricetable-slider .check-list li {
  position: relative;
  font-size: 0.975rem;
  list-style: none;
  padding: 0.35rem 0 0.35rem 1.8rem;
}
.mob-pricetable-slider .check-list li:before {
  content: url("../_img/check-mob.svg");
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  left: 0.25rem;
}
.mob-pricetable-slider button {
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 1rem 0;
  border: none;
  color: #FFF;
  background: dodgerblue;
}

.mob-pricetable-slider .slick-active .slide {
  box-shadow: 0 13px 20px -10px #b38d8f;
  transform: translateY(-0.5rem);
}

#corsi-section {
  margin-top: 2rem;
  background: #FAFAFA;
}

.flex-corsi-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.corsi-box {
  width: 100%;
  padding: 0.5rem;
  background: #eaeaea;
}
@media (max-width: 480px) {
  .corsi-box {
    margin-bottom: 1rem;
  }
}
@media (min-width: 480px) {
  .corsi-box {
    width: calc(33% - 1rem);
    margin: 0.5rem;
  }
}

.scroll-corsi {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 2px;
  background: #212D46;
  color: #FFF;
  cursor: pointer;
}
@media (max-width: 768px) {
  .scroll-corsi {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .scroll-corsi {
    font-size: 0.675rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.4rem;
    transition: 0.2s;
  }
  .scroll-corsi:hover {
    opacity: 0.6;
  }
}

.azienda-video {
  width: 100;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .azienda-video {
    padding: 1rem 0.5rem 1rem 1rem;
    margin-left: 2rem;
    background: #FAFAFA;
  }
}

.play-btn {
  position: relative;
  display: block;
  width: 8rem;
  height: 8rem;
  padding: 0.275rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 6px solid #D6D92E;
  cursor: pointer;
}
@media (min-width: 768px) {
  .play-btn {
    width: 6rem;
    height: 6rem;
  }
}
.play-btn:after {
  background: #D6D92E;
}
.play-btn:focus {
  outline: none;
}
.play-btn:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.2s;
  z-index: 0;
}
@media (min-width: 768px) {
  .play-btn {
    width: 8rem;
    height: 8rem;
    padding: 0.5rem;
  }
  .play-btn:hover:after {
    width: 100%;
    left: 0;
  }
  .play-btn:hover span {
    transform: translateY(1rem);
    opacity: 0;
  }
  .play-btn:hover img {
    transform: translateY(-1rem) scale(2.2);
    opacity: 1;
  }
}
.play-btn span {
  position: relative;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.1;
  z-index: 1;
  transition: 0.2s;
  transform: translateY(0.4rem);
  opacity: 1;
  color: #212D46;
}
.play-btn img {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  transform: translateY(-2rem) scale(2.2);
  opacity: 0;
}
.play-btn__white span {
  color: #FFF;
}

.video-wrapper-old {
  visibility: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60vw;
  padding-top: 33.72vw;
  background: #151515;
  z-index: 997;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px #212D46;
}
@media (max-width: 768px) {
  .video-wrapper-old {
    width: 90vw;
    padding-top: 51vw;
  }
}
.video-wrapper-old__visible {
  display: block;
  animation: videoIn 0.4s both ease;
}
.video-wrapper-old iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes videoIn {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    box-shadow: 0 0 5px #212D46;
  }
  90% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4);
  }
}
@keyframes videoOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4);
  }
  10% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    box-shadow: 0 0 5px #212D46;
  }
}
.video-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 996;
  background: #212D46;
}
.video-bg .modal-header {
  width: 100%;
  padding: 0.5rem 0;
  background: #FFF;
}
.video-bg .modal-header img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.pic-container {
  width: 100%;
  margin-top: 20%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}
.pic-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .video-section {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.video-section .video-thumb-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .video-section .video-thumb-wrap {
    margin: 0.5rem;
    width: calc(50% - 1rem);
    cursor: pointer;
  }
}
@media (min-width: 768px) {
  .video-section .video-thumb-wrap {
    width: calc(25% - 1rem);
    transition: 0.3s;
  }
  .video-section .video-thumb-wrap:hover .video-thumb img {
    opacity: 0.6 !important;
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .video-section .video-thumb-wrap__tutorial {
    width: calc(33.333% - 1rem);
  }
}
.video-section .video-thumb {
  position: relative;
  width: 100%;
  padding-top: 53%;
  overflow: hidden;
}
.video-section .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .video-section .video-thumb img {
    transition: 0.6s;
  }
}
.video-section .icons {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.5rem 0 0;
}
.video-section .icons .icon {
  position: relative;
}
.video-section .icons .ico1 .label {
  background: #eaeaea;
  color: #212D46 !important;
}
.video-section .icons .ico1 .tooltip {
  width: 180px;
}
@media (min-width: 768px) {
  .video-section .icons .ico1:hover .tooltip {
    transform: translate(-50%, -66px);
    opacity: 1;
  }
}
.video-section .icons .ico2 .label {
  background: #f9bd4c;
  color: #212D46 !important;
}
.video-section .icons .ico2 .tooltip {
  width: 120px;
}
@media (min-width: 768px) {
  .video-section .icons .ico2:hover .tooltip {
    transform: translate(-50%, -66px);
    opacity: 1;
  }
}
.video-section .icons .ico3 .label {
  background: #e53f49;
}
.video-section .icons .ico3 .tooltip {
  width: 180px;
}
@media (min-width: 768px) {
  .video-section .icons .ico3:hover .tooltip {
    transform: translate(-50%, -66px);
    opacity: 1;
  }
}
.video-section .icons .tooltip {
  position: absolute;
  font-size: 0.9rem;
  background: #212D46;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 0;
  left: 50%;
  color: #FFF;
  transform: translate(-50%, -60px);
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
}

.label {
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  border-radius: 4px;
  padding: 2px 6px;
  color: #FFF;
  font-weight: bold;
}

._video-thumb {
  cursor: pointer;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.webinar-section {
  width: 100%;
}

.webinar-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  padding-left: 2.5%;
}
.webinar-wrapper .img {
  width: 50%;
}
.webinar-wrapper .img img {
  width: 100%;
  display: block;
}
.webinar-wrapper .img__1 {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}
.webinar-wrapper .img__2 {
  position: absolute;
  top: 4rem;
  left: 45%;
  z-index: 1;
}

.heading {
  margin: 0.25rem 0 0.75rem;
  font-weight: normal;
}
.heading__bold {
  font-weight: bold;
}
.heading__uppercase {
  font-weight: uppercase;
}
.heading__dark {
  color: #020202;
}
.heading__light {
  color: #f2f2f2;
}
.heading__center {
  text-align: center;
}
.heading__1 {
  font-size: 20px;
}
@media (min-width: 576px) {
  .heading__1 {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .heading__1 {
    font-size: 24px;
  }
}
.heading__2 {
  font-size: 18px;
}
@media (min-width: 576px) {
  .heading__2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .heading__2 {
    font-size: 22px;
  }
}
.heading__3 {
  font-size: 16px;
}
@media (min-width: 576px) {
  .heading__3 {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .heading__3 {
    font-size: 20px;
  }
}

.title {
  font-size: 24px;
  line-height: 1.1;
  margin: 0.25rem 0 0.75rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .title {
    font-size: 42px;
  }
}
.title__bold {
  font-weight: bold;
}
.title__uppercase {
  font-weight: uppercase;
}
.title__dark {
  color: #020202;
}
.title__light {
  color: #f2f2f2;
}

._title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.75rem 0 0.5rem;
}

._description {
  font-size: 0.9rem;
  margin-top: 0;
}

#_title::first-letter {
  text-transform: capitalize;
}

.hr {
  margin-top: 2rem;
  border: none;
  border-bottom: 1px solid #2E2E2E;
  opacity: 0.2;
}

.btn-close-video {
  font-size: 1rem;
  font-weight: bold;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  padding: 0.5rem;
  margin: 0;
  background: transparent;
}
@media (min-width: 768px) {
  .btn-close-video {
    transition: 0.2s;
    cursor: pointer;
  }
  .btn-close-video:hover {
    color: #1CB1C6;
  }
  .btn-close-video:hover img {
    transform: translateX(-4px);
  }
}
.btn-close-video img {
  display: block;
  margin-right: 8px;
  transition: 0.2s;
}

.video-wrapper {
  padding: 2rem 0;
  width: 100%;
}

.fade-in {
  animation: fadeIn 1s both;
  animation-delay: 0.2s;
}
.fade-in .video-container {
  transform: translateY(0);
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.video-container {
  width: 100%;
  background: black;
  transform: translateY(10rem);
  opacity: 0;
  transition: 0.8s;
}

.main-text-wrapper {
  width: 60%;
  padding-left: 2rem;
}

.divider {
  border-bottom: 1px solid #dadada;
  margin: 1rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .button-container {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .button-download-container {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0.5rem;
  }
}

._download {
  background: #1CB1C6;
  border-color: #1CB1C6;
}

.clienti {
  background: #eaeaea;
}

.clienti-slider-wrapper {
  width: 100%;
  padding: 0 0 2rem;
}
.clienti-slider-wrapper *:focus {
  outline: none;
}
.clienti-slider-wrapper .slide {
  width: 100%;
  display: flex !important;
  flex-flow: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.clienti-slider-wrapper .slide img {
  width: 50%;
  height: auto;
  display: block;
  align-self: center;
}
@media (min-width: 768px) {
  .clienti-slider-wrapper .slide img {
    width: 25%;
    margin: 0;
    padding: 0.25rem;
  }
}

.recensioni {
  position: relative;
}
.recensioni .wrap {
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .recensioni .wrap {
    position: relative;
  }
}
.recensioni .img-shape {
  position: absolute;
  left: 0;
  top: 2rem;
  height: 500px;
  width: 75%;
  z-index: -1;
  -webkit-clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
}
@media (max-width: 768px) {
  .recensioni .img-shape {
    -webkit-clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  }
}
.recensioni .img-shape img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recensioni-slider-wrapper *:focus {
  outline: none;
}
.recensioni-slider-wrapper .slide {
  padding: 0 0.75rem;
}
.recensioni-slider-wrapper .slide p {
  font-size: 1.1rem;
}
.recensioni-slider-wrapper .slide .nome {
  position: relative;
}
.recensioni-slider-wrapper .slide .nome:before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 4px;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}
.recensioni-slider-wrapper .slide .nome p:first-child {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}
.recensioni-slider-wrapper .slide .nome p:last-child {
  font-size: 18px;
  margin: 0.25rem 0 0;
}

.slider-nav {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0.75rem;
  margin-top: 1rem;
}

.arrows {
  cursor: pointer;
}

.slick-dots {
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .slick-dots {
    padding: 0 1rem;
  }
}
.slick-dots li {
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #212D46;
  opacity: 0.2;
  transition: 0.2s;
  cursor: pointer;
}
.slick-dots li:nth-child(even) {
  margin: 0 0.5rem;
}
.slick-dots li button {
  display: none;
}
@media (max-width: 768px) {
  .slick-dots li {
    display: inline-block;
  }
  .slick-dots li:nth-child(even) {
    margin: 0 0.5rem;
  }
}
.slick-dots .slick-active {
  opacity: 1;
  background: #212D46;
}

.app-img {
  width: 90%;
  margin: 1rem 0 0 auto;
}
@media (max-width: 768px) {
  .app-img {
    width: 70%;
    margin-top: 2rem;
  }
}

footer {
  position: relative;
  background: #FAFAFA;
  padding: 4rem 0 0;
}
footer .hr {
  display: none;
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 1rem 2rem;
  }
  footer .hr {
    display: block;
    margin-bottom: 2rem;
    border-bottom: 1px solid #E4E6E7;
  }
}
footer .col-25 {
  padding: 0 0.5rem;
}
footer p {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  footer p {
    text-align: center;
  }
}
footer p.deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E4E6E7;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer a {
    display: block;
    text-align: center;
  }
}
footer .logo {
  display: block;
  width: 90%;
  max-width: 300px;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  footer .logo {
    margin: 1rem auto 0;
  }
}
footer .banner-olivetti {
  display: block;
  width: 60%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  footer .banner-olivetti {
    width: 60%;
  }
}
@media (max-width: 768px) {
  footer .footer-loghi-wrapper {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: space-between;
    flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer-loghi-wrapper img {
    display: block;
    width: 50%;
    border: 2px solid #eaeaea;
  }
  footer .footer-loghi-wrapper .first-img {
    display: block;
    width: 100% !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  footer .footer-loghi-wrapper {
    text-align: center;
  }
  footer .footer-loghi-wrapper img {
    display: inline-block;
    height: 55px;
    width: auto;
    border: 4px solid #FFF;
  }
}
@media (min-width: 768px) {
  footer .footer-loghi-wrapper {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: space-between;
    flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer-loghi-wrapper img {
    display: block;
    width: 50%;
    border: 2px solid #eaeaea;
  }
  footer .footer-loghi-wrapper .first-img {
    display: block;
    width: 100% !important;
  }
}
footer .privacy {
  font-size: 0.9rem;
  text-decoration: none;
}
footer .footer-list {
  padding: 0;
}
@media (max-width: 768px) {
  footer .footer-list {
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    padding: 2rem 0;
  }
}
footer .footer-list li {
  padding: 0.375rem 0;
  list-style: none;
}
@media (max-width: 768px) {
  footer .footer-list li {
    text-align: center;
  }
}
footer .footer-list li a {
  font-size: 0.9rem;
  color: #FFF;
  transition: 0.2s;
}
@media (min-width: 768px) {
  footer .footer-list li a:hover {
    color: #212D46;
  }
}
footer .footer-list li .active {
  color: #212D46 !important;
}

.fascia-w2e {
  position: relative;
  background-color: #212D46;
}
.fascia-w2e p {
  font-size: 0.9rem;
  color: #eaeaea;
}
.fascia-w2e .small {
  opacity: 0.5;
}
.fascia-w2e a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .fascia-w2e .flex-between {
    flex-flow: column;
    text-align: center;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.flex-between {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #212D46;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch !important;
  /* Lo scorrimento continua per un pò */
  display: none;
}
@media (max-width: 768px) {
  .popup {
    padding-bottom: 16rem;
  }
}
.popup .logo {
  width: 60%;
  max-width: 200px;
  margin: 1rem auto 0;
}

.close-form-container {
  height: 60px;
  width: 100%;
  background-color: #FAFAFA;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.close-form-container .close {
  width: 60px;
  height: 60px;
  background: #F4F4F4;
  cursor: pointer;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.form-container {
  max-width: 620px;
  width: auto;
  margin: 2rem auto 0;
  position: relative;
  background: #FAFAFA;
}
.form-container .form-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 1rem 0 2rem;
  padding: 0 1rem;
  line-height: 2.4rem;
  text-align: center;
  color: #313131;
}

.f-row {
  width: 100%;
  margin: 0 0 0.5rem;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.f-col {
  position: relative;
  margin: 0 0.5rem 0.25rem 0.5rem;
}
@media (max-width: 768px) {
  .f-col {
    margin: 0 0 0.5rem 0;
    width: 100%;
  }
}
.f-col:first-child {
  margin-left: 0;
}
.f-col:last-child {
  margin-right: 0;
}
.f-col__25 {
  width: 25%;
}
@media (max-width: 768px) {
  .f-col__25 {
    width: 50%;
  }
}
.f-col__50 {
  width: calc(50% - 1rem);
}
@media (max-width: 768px) {
  .f-col__50 {
    width: 100%;
  }
}
.f-col__100 {
  width: 100%;
}
@media (max-width: 768px) {
  .f-col__100 {
    width: 100%;
  }
}
.f-col label {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  color: #2E2E2E;
  padding: 0 0.25rem;
  transform: translate(0.5rem, 0.7rem);
}
.f-col input {
  font-weight: 700;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  width: 100%;
  border: none;
  border-bottom: 1px solid #b4b4b4;
  background: #FAFAFA;
  padding: 1rem 1rem 0.5rem;
  border-radius: 0;
  font-size: 1.4rem;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .f-col input:hover {
    border-color: #1CA2B0;
  }
}
.f-col input:focus {
  outline: none;
  border-color: #1CA2B0;
}
@media (min-width: 768px) {
  .f-col input {
    font-size: 1rem;
  }
}
.f-col textarea {
  font-weight: 700;
  -webkit-appearance: none;
  width: calc(100% - 1rem);
  margin-left: 0.5rem;
  border: none;
  border-bottom: 1px solid #b4b4b4;
  background: transparent;
  padding: 1rem 1rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  transition: 0.2s;
  resize: none;
}
@media (min-width: 768px) {
  .f-col textarea:hover {
    border-color: #1CB1C6;
  }
}
.f-col textarea:focus {
  outline: none;
  border-color: #2E2E2E;
}
@media (min-width: 768px) {
  .f-col textarea {
    font-size: 1rem;
  }
}
.f-col button {
  padding: 1rem 2rem;
  width: 100%;
}
.f-col img.aspam {
  width: 100%;
  max-width: 100px;
  margin: 0;
  transform: translateY(0.75rem);
}
.f-col .aspam-txt {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 0 0 1rem;
  color: #2E2E2E;
}
.f-col .privacy-txt {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0 0 0 1rem;
  color: #2E2E2E;
}

span.error {
  position: absolute;
  left: 0;
  bottom: -1.3rem;
  font-size: 0.85rem;
  padding: 0.1rem 0.7rem;
  background: red;
  color: #FFF;
}
@media (max-width: 768px) {
  span.error {
    font-size: 0.75rem;
    bottom: -1.3rem;
  }
}

@media (max-width: 768px) {
  .hidden-desk {
    display: block;
  }

  .hidden-mob {
    display: none;
  }

  .padding-bottom-mob {
    padding-bottom: 9rem !important;
  }
}
@media (min-width: 768px) {
  .hidden-desk {
    display: none;
  }

  .hidden-mob {
    display: block;
  }
}
.header-video-container {
  position: relative;
  width: 100%;
}
.header-video-container .shape {
  height: 35px;
}
.header-video-container video {
  width: 100%;
  display: block;
  margin: 0;
}
.header-video-container .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(6, 15, 43, 0.7);
  transition: 0.2s;
  z-index: 4;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 12px 10px -5px rgba(8, 8, 48, 0);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.header-video-container .play-icon:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 12px 10px -5px rgba(8, 8, 48, 0.351);
}
.header-video-container .play-icon img {
  width: 60%;
  display: block;
  margin: 0;
}

.sezione-corsi {
  background: #1CB1C6;
}

.filtri-container {
  padding-top: 12px;
  border-bottom: 1px solid #d7d92d;
}

.tab-btn {
  background: transparent;
  padding: 5px 2px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  border-bottom: 4px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.tab-btn:hover {
  color: #eff120;
}
.tab-btn__active {
  border-bottom: 4px solid #eff120;
  color: #eff120;
}
@media (min-width: 768px) {
  .tab-btn:nth-child(even) {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .tab-btn {
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
  }
}

.corsi-tab-container {
  width: 100%;
  padding-top: 40px;
}
.corsi-tab-container .corso-tab {
  width: 100%;
}
@media (min-width: 768px) {
  .corsi-tab-container .corso-tab {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.corsi-tab-container .corso-box {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .corsi-tab-container .corso-box {
    width: 33%;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.corsi-tab-container .corso-box .content {
  padding: 20px 0 0;
}
.corsi-tab-container .corso-box .content p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .corsi-tab-container .corso-box .content {
    padding: 0 20px 0 12px;
  }
}
.corsi-tab-container .corso-box .content .corso-title {
  color: #FFF;
  font-size: 22px;
  font-weight: Bold;
  margin-bottom: 6px;
}

.pricertable-img-container {
  width: 100%;
}

.pricetable-img {
  width: 100%;
}

#show_pricetable {
  margin: 20px auto 0;
  display: block;
}

.sezione-korner {
  background: #1CB1C6;
}

.plus .titoletto {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
  color: #130D38;
}
.plus .titoletto:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  display: inline-block;
  background: #130D38;
}
.col__25 {
  width: 100%;
}
@media (min-width: 768px) {
  .col__25 {
    width: 25%;
    padding: 0 15px;
  }
}
.col__50 {
  width: 100%;
}
@media (min-width: 768px) {
  .col__50 {
    width: 50%;
    padding: 0 15px;
  }
}

/*# sourceMappingURL=style.css.map */
