:root {
  --header-height: 50px;
  --base-padding: 10px;
  --border-radius: 20px;
  --font-size-xl: 25px;
  --font-size-base: 21px;
  --font-size-sm: 18px;
  --font-size-xs: 16px;
  --font-size-xxs: 12px;
  --font-weight-base: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --accent-color: #ed1c24;
  --accent-color-dark: #d9000d;
  --black: #333;
  --white: #fff;
  --gray: #f2f3f4;
  --border-color: #dedede;
  --border-color-dark: #c9c9c9;
}

.dark-bg {
  background: #333;
  color: #fff;
}

.red-bg {
  background: #f60020;
  color: #fff;
}

.xdark-bg {
  background: #1d1d1b;
  color: #fff;
}

.gray-bg {
  background: #e6e6e6;
}

.white-bg {
  background: #fff;
}

.text-light-gray {
  color: #dedede;
}

#head-slideshow {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #head-slideshow .centered-content {
    align-items: end;
  }
  #head-slideshow .slide-caption {
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 600;
    margin-bottom: 140px;
  }
  #head-slideshow.b2b .slide-caption {
    margin-bottom: 58px;
  }
  #head-slideshow.b2c .slide-caption {
    margin-bottom: 100px;
  }
}

#header-logo {
  float: left;
}

#main-menu {
  display: flex;
  align-items: center;
  flex: 1;
}
#main-menu > div {
  flex: 1;
}

#menu-cnt {
  display: flex;
  justify-content: end;
}
#menu-cnt ul {
  display: flex;
}
#menu-cnt li:not(#hamburger) {
  display: none;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 50px;
}
@media screen and (min-width: 768px) {
  #menu-cnt li#hamburger {
    display: none;
  }
  #menu-cnt li:not(#hamburger) {
    display: initial;
  }
}

#layout-content,
#layout-header,
#layout-footer {
  width: 100%;
}

.grid-0,
.grid-1,
.grid-2,
.grid-2b {
  width: 100%;
  margin: auto;
}

.grid-1,
.grid-2,
.grid-2b {
  padding: 0 30px;
}

@media screen and (min-width: 768px) {
  .grid-0 {
    max-width: none;
  }

  .grid-1 {
    max-width: 1350px;
    padding: 0 16px;
  }

  .grid-2 {
    max-width: 768px;
    padding: 0 16px;
  }

  .grid-2b {
    max-width: 1170px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .full-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 960px) {
  .grid-2 {
    max-width: 960px;
  }
}
@media screen and (min-width: 1100px) {
  .grid-2 {
    max-width: 980px;
  }
}
.text-xs {
  font-size: var(--font-size-xs);
}

.text-xxs {
  font-size: var(--font-size-xxs);
}

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

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
}

.flex-row.centered {
  justify-content: center;
}

.flex-row.responsive {
  flex-wrap: wrap;
}

.flex-row.extremes {
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .b2b .flex-row.extremes {
    gap: 45px;
  }
}
@media screen and (min-width: 768px) {
  .flex-row.extremes {
    gap: 80px;
  }
}

.flex-cell {
  flex: 1;
  display: flex;
}

.centered-content .flex-cell {
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.flex-cell.text-center {
  justify-content: center;
}
.flex-cell.content-left {
  justify-content: flex-start;
}
.flex-cell.content-right {
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .b2b .content-left {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .responsive.two-per-row .flex-cell {
    flex-basis: 50%;
  }

  .responsive.one-per-row .flex-cell {
    flex-basis: 100%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  margin: 0;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  padding: 0;
  color: #1c1c1c;
  font-family: "Titillium Web", sans-serif;
}
h4{
  font-family: "Titillium Web", sans-serif;

}
@media screen and (max-width: 767px) {
  body {
    font-size: 25px;
    line-height: 32px;
  }
}

h1,
h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
  margin-top: 25px;
  line-height: 1em;
}

.inline li {
  display: inline;
}

.unstyled li {
  list-style-type: none;
}

.text-regular {
  font-weight: var(--font-weight-base);
}

#layout-container {
  display: flex;
  min-height: 100vh;
  /*doppio del padding del body*/
  flex-direction: column;
}

#layout-header {
  left: 0;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 0 5px -2px grey;
}

#hamburger > img {
  height: 20px;
  position: relative;
  cursor: pointer;
  top: 2px;
}

#header-logo {
  height: 30px;
}

#layout-footer {
  margin: auto;
  padding: 55px 14px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-base);
  line-height: 0.9rem;
}
@media screen and (max-width: 767px) {
  #layout-footer {
    padding: 45px 22px;
  }
}

#layout-content {
  padding-top: var(--header-height);
  /*header height*/
  margin: auto;
  position: relative;
  flex: 1;
  width: 100%;
}

.white-box {
  background-color: var(--white);
  color: var(--black);
  border-radius: 10px;
  border-color: var(--border-color);
  border-style: solid;
  border-width: 1px;
  width: 100%;
}

button {
  height: 55px;
  width: 225px;
  background-color: var(--accent-color-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.08s ease-in;
  font-size: 22px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  button {
    height: 45px;
    width: 195px;
    font-size: 19px;
  }
}

.clickable {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .extremes > div {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
}
a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

a.active {
  border-bottom: 2px solid var(--accent-color);
}

.text-regular {
  font-weight: var(--font-weight-base);
}

input:focus-within,
textarea:focus-within {
  outline: none !important;
}

.hidden {
  display: none !important;
}

[data-anim*=idx-]:not(.showing) {
  transform: translate3d(30px, 0, 0);
  opacity: 0;
  transition: all 0.2s;
}

[data-anim*=idx-].showing {
  transform: translate3d(0px, 0, 0);
  opacity: 1;
  transition: all 0.2s;
}

.slide {
  height: calc(100vh - 50px);
  background-color: #222;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  /*background-image: url(../imgs/hero/h1m.jpg);*/
}
@media screen and (min-width: 768px) {
  .slide {
    /*background-image: url(../imgs/hero/h1.jpg);*/
    height: 600px;
  }
}
.b2b .slide {
  /*background-image: url(../imgs/hero/h2m.jpg);*/
}
@media screen and (min-width: 768px) {
  .b2b .slide {
    /*background-image: url(../imgs/hero/h2.jpg);*/
  }
}
.slide .slide-caption {
  font-size: 57px;
  line-height: 4.3rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .slide .slide-caption {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: bold;
  }
}

#slide1 {
  /*background-image: url(../imgs/hero/h3-3m.jpg);*/
}
@media screen and (min-width: 768px) {
  #slide1 {
    /*background-image: url(../imgs/hero/sl3-3.jpg);*/
  }
}

#slide2 {
  /*background-image: url(../imgs/hero/h3-2m.jpg);*/
}
@media screen and (min-width: 768px) {
  #slide2 {
    /*background-image: url(../imgs/hero/sl3-2.jpg);*/
  }
}

#slide3 {
  /*background-image: url(../imgs/hero/h3-1m.jpg);*/
}
@media screen and (min-width: 768px) {
  #slide3 {
    /*background-image: url(../imgs/hero/sl3-1.jpg);*/
    background-position: center;
  }
}

.b2c .splide__arrows {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .b2c .splide__pagination {
    bottom: 20px;
  }
}
.b2c .splide__pagination .splide__pagination__page {
  background: transparent;
  border: 1px solid white;
  margin: 4px;
  width: 16px;
  height: 16px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .b2c .splide__pagination .splide__pagination__page {
    margin: 4px;
    width: 12px;
    height: 12px;
  }
}
.b2c .splide__pagination .splide__pagination__page.is-active {
  background: white;
  transform: scale(1);
}
@media screen and (min-width: 768px) {
  .b2c .splide__pagination {
    bottom: 32px;
  }
}

.figcaption {
  position: relative;
  overflow: hidden;
}
.figcaption.b2c {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .figcaption.b2c {
    padding: 30px;
  }
}
.figcaption iframe {
  width: 100%;
}
.figcaption .caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}
.figcaption .caption p {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.7rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .figcaption .caption p {
    font-size: 30px;
    line-height: 32px;
  }
}

#stats-cnt > div {
  padding: 18px;
}
@media screen and (max-width: 767px) {
  #stats-cnt > div {
    padding: 10px 18px;
  }
}

.stats-circle {
  position: relative;
}
.stats-circle .caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 8px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.stats-circle .caption .title {
  font-size: 20vw;
  line-height: 19vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .stats-circle .caption .title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media screen and (min-width: 960px) {
  .stats-circle .caption .title {
    font-size: 100px;
    line-height: 100px;
  }
}
@media screen and (min-width: 1100px) {
  .stats-circle .caption .title {
    font-size: 106px;
    line-height: 94px;
  }
}
.stats-circle .caption .info {
  text-align: center;
  font-size: 2.8vw;
  line-height: 3.2vw;
}
@media screen and (min-width: 768px) {
  .stats-circle .caption .info {
    font-size: 11px;
    line-height: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .stats-circle .caption .info {
    font-size: 14px;
    line-height: 1.2rem;
  }
}
@media screen and (min-width: 1100px) {
  .stats-circle .caption .info {
    font-size: 16px;
    line-height: 1.2rem;
  }
}

.padding {
  padding: 30px;
}

.vertical-padding {
  padding: 20px 0;
}

.img-responsive {
  max-width: 100%;
}
@media screen and (min-width: 1170px) {
  .img-responsive.responsive-height {
    height: 100%;
  }
}

.img-small {
  height: 22px;
}
@media screen and (min-width: 768px) {
  .img-small {
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .splide__pagination {
    bottom: 1vw;
  }
}

.splide__pagination__page {
  background: transparent;
  border: 1px solid black;
  margin: 1px;
  opacity: 1;
  width: 8px;
  height: 8px;
}
.b2b .splide__pagination__page {
  border: 1px solid white;
}
@media screen and (min-width: 768px) {
  .splide__pagination__page {
    border-width: 2px !important;
    margin: 0 4px;
    width: 20px;
    height: 20px;
  }
}
.splide__pagination__page.is-active {
  background: black;
  transform: scale(1);
}
.b2b .splide__pagination__page.is-active {
  background: white;
  transform: scale(1);
}

.splide__arrow {
  top: 43%;
  background: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.b2b .splide__arrow {
  top: 50%;
}
@media screen and (max-width: 768px) {
  .splide__arrow {
    display: none;
  }
}
.splide__arrow svg {
  display: none !important;
}

.splide__arrow--next {
  background-image: url(../imgs/icons/arrow-dx.png);
}
@media screen and (min-width: 768px) {
  .splide__arrow--next {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .splide__arrow--next {
    display: initial;
    right: -2em;
  }
}
@media screen and (min-width: 1100px) {
  .splide__arrow--next {
    right: -5em;
  }
}

.splide__arrow--prev {
  background-image: url(../imgs/icons/arrow-sx.png);
}
@media screen and (min-width: 768px) {
  .splide__arrow--prev {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .splide__arrow--prev {
    display: initial;
    left: -2em;
  }
}
@media screen and (min-width: 1100px) {
  .splide__arrow--prev {
    left: -5em;
  }
}

.grid-container2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  align-items: center;
  grid-template-areas: "about empty" "social-title social-icons" "policy .";
}
@media screen and (min-width: 768px) {
  .grid-container2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "about empty social-title social-icons" "about empty policy .";
  }
}

.about {
  grid-area: about;
}
@media screen and (min-width: 768px) {
  .about {
    padding-right: 35px;
  }
}

.empty {
  grid-area: empty;
}

.social-title {
  grid-area: social-title;
}

.policy {
  grid-area: policy;
}
@media screen and (max-width: 767px) {
  .policy {
    align-self: flex-start;
  }
}

.social-icons {
  grid-area: social-icons;
  position: relative;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .social-icons {
    bottom: 0px;
  }
  .social-icons .flex-cell {
    justify-content: flex-end;
  }
}

.social-title,
.policy,
.social-icons {
  font-size: 1rem;
}
  @media screen and (min-width: 768px) {
  .social-title,
.policy,
.social-icons {
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .social-title,
.policy,
.social-icons {
    font-size: 13px;
  }
}

hr {
  border: 1px solid #222;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  hr {
    margin-top: -20px;
  }
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }
}

h6 {
  font-size: 13px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  h6 {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-main-grid {
    padding: 0 6px;
  }
}

#about-btn {
  padding-top: 10px;
  background-color: #222;
  font-weight: 600;
  display: inline-block;
  width: 170px;
  height: 80px;
  display: flex;
  padding-left: 15px;
  font-size: 28px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #about-btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #about-btn {
    font-size: 23px;
    height: 60px;
    margin-bottom: 26px;
    padding-top: 6px;
  }
}

#excuses-slider {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #excuses-slider {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#excuses-slider.b2b {
  margin-top: 37px;
  margin-bottom: 50px;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (min-width: 768px) {
  #excuses-slider.b2b {
    margin-top: 70px;
    margin-bottom: 70px;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.arrow-icon {
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 8px;
  width: 20px;
}
@media screen and (min-width: 768px) {
  .arrow-icon {
    margin-top: 14px;
  }
}
#about-btn:hover .arrow-icon {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

button.primary {
  overflow: hidden;
  z-index: 1;
  transition: 0.08s ease-in;
}
button.primary.inverse {
  width: 175px;
  height: 40px;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0px;
  background-color: white;
  color: var(--accent-color);
}
button.primary.inverse::before {
  background: white;
  background: -webkit-linear-gradient(-45deg, white 0, white 100%);
  background: -webkit-linear-gradient(315deg, white 0, white 100%);
  background: linear-gradient(135deg, white 0, white 100%);
}
button.primary.inverse:hover {
  background-color: white;
  transition: 0.08s ease-in;
}

button.primary:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  -webkit-transition: right 0.2s ease-in;
  transition: right 0.2s ease-in;
  background: #ab000a;
  background: -webkit-linear-gradient(-45deg, #ab000a 0, #e20613 100%);
  background: -webkit-linear-gradient(315deg, #ab000a 0, #e20613 100%);
  background: linear-gradient(135deg, #ab000a 0, #e20613 100%);
}

*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

button.primary:hover:before {
  right: 0;
}

button.primary:hover {
  background-color: #e20613;
  transition: 0.08s ease-in;
}

#company-footer a {
  color: #1779ba !important;
}

.offScreen {
  transition: all 0.5s;
  transform: translate3d(0px, -800px, 0);
}

#mobile-menu {
  transition: all 0.3s;
  position: fixed;
  z-index: 999;
  width: 100vw;
  padding-bottom: 30px;
  background: white;
  color: inherit;
  left: 0;
  top: 50px;
  flex: 1;
  box-shadow: 0 0 5px -2px grey;
}
#mobile-menu ul {
  flex-direction: column;
  display: flex;
  padding-left: 30px;
}
#mobile-menu ul li {
  margin-left: 0 !important;
  font-size: 1rem !important;
  margin-top: 10px;
}
#mobile-menu li:not(#hamburger) {
  display: initial;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 50px;
}

.section-text {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .section-text {
    margin-bottom: 40px;
  }
  .section-text h3 {
    font-size: 23px;
  }
  .section-text p {
    font-size: 22px;
    line-height: 28px;
  }
}

.stats-section {
  margin-top: 40px;
}

#circles-bg-cnt {
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: url(../imgs/circle-bg.png), url(../imgs/circle-bg.png);
  background-position: -150px -9%, 130px 95%;
  background-size: 400px;
}
@media screen and (min-width: 768px) {
  #circles-bg-cnt {
    background-position: -150px -26%, 130% 130%;
    background-size: 370px;
  }
}
@media screen and (min-width: 1025px) {
  #circles-bg-cnt {
    background-position: 0px -50%, 100% 120%;
    background-size: 420px;
  }
}

.circles-bg {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .circles-bg {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .circles-bg {
    padding-top: 42px;
    padding-bottom: 40px;
  }
}
.circles-bg .video-title {
  margin-bottom: 30px;
}
.circles-bg .video-title h4 {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .circles-bg .video-title h4 {
    margin-bottom: 0px;
    font-size: 18px;
  }
}
.circles-bg .video-title p {
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .circles-bg .video-title p {
    line-height: 25px;
    font-size: 17px;
  }
}

.b2c .video-title h4 {
  margin-bottom: 16px;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .b2c .video-title h4 {
    margin-bottom: 12px;
    font-size: 25px;
  }
}
.b2c .video-title p {
  font-size: 29px;
  line-height: 38px;
}
@media screen and (max-width: 767px) {
  .b2c .video-title p {
    font-size: 20px;
    line-height: 27px;
  }
}

#form-section {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #form-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  #form-section {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  #form-section {
    padding-top: 0;
    padding-left: 25px;
    padding-right: 10px;
  }
}
#form-section img {
  height: 115px;
}
@media screen and (min-width: 768px) {
  #form-section img {
    height: 170px;
  }
}
@media screen and (max-width: 767px) {
  #form-section .small-text-cnt {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 75%;
  }
}
#form-section h5 {
  font-size: 34px;
  margin-bottom: 27px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #form-section h5 {
    font-size: 31px;
    margin-bottom: 17px;
  }
}
#form-section p {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #form-section p {
    font-size: 22px;
  }
}

/* Responsive utilities */
@media screen and (max-width: 767px) {
  .show-mobile {
    display: initial;
  }

  .hide-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .show-tablet {
    display: initial;
  }

  .hide-tablet {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .show-desktop {
    display: initial;
  }

  .hide-desktop {
    display: none;
  }
}
#content-boxes {
  margin-top: 80px;
  margin-bottom: 128px;
}
@media screen and (max-width: 960px) {
  #content-boxes {
    margin-top: 40px;
    margin-bottom: 36px;
  }
  #content-boxes .full-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 960px) {
  .reverse-on-mobile {
    flex-direction: column-reverse;
  }
}

.form-sim-cnt {
  padding-top: 7px;
}
.form-sim-cnt b {
  font-weight: 600;
}
.form-sim-cnt h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 53px;
  margin-top: 0;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .form-sim-cnt h1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .form-sim-cnt h1 {
    font-size: 46px;
    line-height: 53px;
  }
}
.form-sim-cnt label {
  letter-spacing: 1px;
  display: block;
  font-size: 24px;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .form-sim-cnt label {
    font-size: 22px;
    margin-bottom: 0;
  }
}
.form-sim-cnt label,
.form-sim-cnt input,
.form-sim-cnt select {
  font-weight: 200;
}
.form-sim-cnt label,
.form-sim-cnt button {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .form-sim-cnt label,
.form-sim-cnt button {
    margin-top: 13px;
  }
}
.form-sim-cnt button {
  margin-top: 40px;
}
.form-sim-cnt input,
.form-sim-cnt select {
  font-family: "Titillium Web", sans-serif;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  font-size: 24px;
  padding-bottom: 2px;
  letter-spacing: 1px;
}
.form-sim-cnt select {
  width: 80%;
  outline: none !important;
}
@media screen and (max-width: 767px) {
  .form-sim-cnt select {
    width: 100%;
  }
}
.form-sim-cnt input {
  width: 50%;
}

.text-thin {
  font-weight: 400;
}

.sim-container {
  flex: 1;
  display: flex;
  position: relative;
  align-items: center;
  color: #1c1c1c;
  justify-content: flex-end;
  padding: 30px;
  padding-left: 40px;
}
.sim-container .absolute {
  position: absolute;
}
.sim-container .absolute strong {
  display: block;
  color: #f60020;
}
.sim-container .absolute small {
  font-size: 24px;
}
.sim-container .absolute.top {
  top: 40px;
}
.sim-container .absolute.top strong {
  font-size: 47px;
  margin-bottom: 7px;
}
.sim-container .absolute.bottom {
  bottom: 18px;
}
.sim-container .absolute.bottom strong {
  font-size: 64px;
  font-weight: 700;
  margin-top: 12px;
}

#simulator {
  flex: 2;
}
#simulator .circle {
  margin: auto;
  position: relative;
}
#simulator .circle .img-months,
#simulator .circle .img-device {
  height: auto;
  max-width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#text-content {
  height: 100%;
  position: relative;
  flex: 1;
}

.circle-cnt {
  position: relative;
  text-align: center;
}
.circle-cnt .circle-progress {
  width: 275px;
  height: auto;
}
.circle-cnt .circle-progress-circle {
  stroke-width: 16px;
  stroke: #fdd9db;
}
.circle-cnt .circle-progress-value {
  stroke-width: 16px;
  stroke: #f60020;
}
.circle-cnt .circle-progress-text {
  display: none !important;
}

.ref-circle {
  position: absolute;
  width: 235px;
  height: 235px;
  border-radius: 50%;
  border: 1px solid;
  left: 0;
  right: 0;
  margin: auto;
  top: 20px;
  z-index: 999;
}

.circle-cnt,
.ref-circle,
.progress,
.circle-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.img-months {
  position: relative;
}

.text-uppercase {
  text-transform: uppercase;
}

#product-text strong {
  text-transform: capitalize;
}

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




@media screen and (max-width: 768px) {

.mag_hero,.menuhero{
  background-size: cover !important;
}
.mag_hero{
  height: 210px !important;
}
.menulogo{
  position: absolute;
  margin:0 auto;
  top:50px;
  left:0;
  right: 0;
  width:96% !important;
  text-align: center;
}

.menulogo img{
  height:50px !important;
}
.mag_cat_menu{
  padding-top:130px !important;
}
.menuhero{
  min-height: 200px !important;
}
.menuhero .grid-container{
  padding:0 !important;
}
.reverse{
  flex-direction: column-reverse;
}
.mag_cat_menu{
  
}
#header-logo{
  display: none;
}
#header-logo-m{
  display: block !important;
}
.row2 a{
  padding-top:0px !important;
  padding-bottom:20px !important;
}
.magcorrelati{
  font-size:24px !important;
}

.magaccordionbtn {
  position: absolute;
  right: 0px !important;
  top: 28px !important;
}
.listanews .grid-x{
  margin-bottom:20px !important;
}
.summarytitle {
  font-size: 24px !important;
  font-weight: bold !important;
}
.grid-container{
  padding:0 !important;
}
.section-text {
  margin: 35px 0 !important;
}
}

.accordion-title {
  border:none;
	border-bottom: 1px solid #333 !important;
  }
  .accordion-title:focus, .accordion-title:hover {
	background-color: #fff !important;
  }
  .accordion-title::before {
	position: absolute;
	top: 25% !important;
  }
  .accordion-content {
  
  }
  :last-child:not(.is-active) > .accordion-title {
    border:none;
    border-bottom: 1px solid #333 !important;
  }

.download-pdf{margin:30px -20px 30px 0;padding:.625rem;background-color:#f3f3f3;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;position:relative;}
.download-pdf .text{font-size:1.125rem;line-height:1.5625rem;color:#333;margin-right:1.875rem;margin-left:.625rem}
@media screen and (max-width:39.99875em){.download-pdf .text{max-width:11.25rem}
}.download-pdf .pdf{width:1.25rem;height:1.25rem;background-image:url(../img/icon/mini/pdf.svg);background-repeat:no-repeat;background-size:cover}
.download-pdf .dwn{width:1.25rem;height:1.25rem;background-image:url(../img/icon/mini/download.svg);background-repeat:no-repeat;background-size:cover;position:absolute;right:.625rem;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}


#about-btn,#mag-btn {
  padding-top: 10px;
  background-color: #222;
  font-weight: 600;
  display: inline-block;
  width: 170px;
  height: 80px;
  display: flex;
  padding-left: 15px;
  font-size: 28px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #about-btn,#mag-btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #about-btn,#mag-btn {
    font-size: 23px;
    height: 60px;
    margin-bottom: 26px;
    padding-top: 6px;
  }
}

#about-btn:hover .arrow-icon,#mag-btn:hover .arrow-icon {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.cookiemon__close-button,.cookiemon__confirm-button {
  overflow: auto;
}