@font-face {
  font-family: Aeonik;
  src: url(../fonts/Aeonik/Aeonik-Regular.woff);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
  scroll-padding-top: 110px;
}
html {
  overflow-x: hidden;
}
body {
  background-color: white;
  color: #818181;
  font-size: 16px;
  overflow-x: hidden;
  font-family: Aeonik, sans-serif;
}

a{
  color: #500AB4;
}
a:not(.btn-link):hover{
  color: #500AB4;
  opacity: 0.9;
}

/**
 * BOOTSTRAP
 */
 @media (min-width: 1880px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1800px !important;
  }
}
@media (max-width: 575px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100% !important;
    padding: 0 25px !important;
  }
}

@media (min-width: 576px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100% !important;
    padding: 0 75px !important;
  }
}

@media (min-width: 1300px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100% !important;
    padding: 0 150px !important;
  }
}

/**
 * SCROLLBAR
 */
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: white;
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #500AB4; 
  border-radius: 10px;
  box-shadow: inset 0 0 5px black; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #28055A; 
}

/**
 * TYPOGRAPHY
 */
h1 {
  font-size: 4em;
  line-height: 1;
  font-family: Aeonik, sans-serif;
  color: #500AB4;
}
h3 {
  font-size: 2.5em;
  line-height: 1;
  font-family: Aeonik, sans-serif;
  color: #500AB4;
}
h4 {
  font-size: 2em;
  line-height: 1;
  font-family: Aeonik, sans-serif;
  color: #500AB4;
}
.color-white{
  color: white;
}
.color-primary{
  color: #500AB4;
}
.color-azure{
  color: #00C8C3;
}

/**
 * UTILITIES
 */
.page-container{
  min-height: 100vh;
  padding: 0;
}
.thank-you-container{
  height: 100vh;
  padding-top: 110px;
}
.m-partial {
  margin-top: 6em;
  margin-bottom: 6em;
}
.p-partial {
  padding-top: 6em;
  padding-bottom: 6em;
}
.bg-primary{
  background-color: #500AB4 !important;
}

.divisor-line{
  border-top: 1px solid #E5E5E5;
}

/**
 * BUTTONS
 */
.white-btn {
  color: #FFFFFF;
  background-color: transparent;
  padding: 0.4em 1.5em;
  border: 1px solid white;
  border-radius: 2em;
  /* Animation left to right*/
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, #AAE687)) right;
  background: linear-gradient(to left, transparent 50%, #AAE687 50%) right;
  background-size: 200% 200%;
  -webkit-transition: .4s ease-out;
  transition: .4s ease-out;
}
.white-btn:hover {
  color: #500AB4;
  border-color: #AAE687;
  background-position: left;
}

header .white-btn{
  border: 1px solid #a885da;
}

.green-btn {
  color: #AAE687;
  background-color: transparent;
  padding: 0.4em 1.5em;
  border: 1px solid #AAE687;
  border-radius: 2em;
  /* Animation left to right*/
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, #AAE687)) right;
  background: linear-gradient(to left, transparent 50%, #AAE687 50%) right;
  background-size: 200% 200%;
  -webkit-transition: .4s ease-out;
  transition: .4s ease-out;
}
.green-btn:hover{
  color: #500AB4;
  border-color: #AAE687;
  background-position: left;
}
.home-banner .green-btn:hover{
  box-shadow: 0px 0px 20px #00000075;
}

.violet-btn {
  color: white;
  background-color: transparent;
  padding: 0.4em 1.5em;
  border: 1px solid #500AB4;
  border-radius: 2em;
  /* Animation left to right*/
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #500AB4), color-stop(50%, #AAE687)) right;
  background: linear-gradient(to left, #500AB4 50%, #AAE687 50%) right;
  background-size: 200% 200%;
  -webkit-transition: .4s ease-out;
  transition: .4s ease-out;
}
.violet-btn:hover{
  color: #500AB4;
  border-color: #AAE687;
  background-position: left;
}
#requirements .violet-btn{
  width: 15em;
}

.number-texts-block{
  position: relative;
  min-height: calc( 100vh - 150px );
}
.number-texts-block .texts{
  z-index: 2;
}
.number-texts-block::after{
  content: '';
  position: absolute;
  background-image: url("../media/images/right-Image.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  top: 5em;
  bottom: 0;
  right: 0;
  left: 0;
  max-height: 70vh;
  z-index: 0;
}
.number-texts-block.right::after{
  background-image: url("../media/images/left-Image.png");
  background-position: bottom left;
}
.number-circle{
  background-color: #AAE687;
  border: 1px solid #AAE687;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  /* width: auto;
  height: 100%; */
  max-height: 4em;
}
@supports not (aspect-ratio: 1 / 1) {
  .number-circle{
    background-color: #AAE687;
    border: 1px solid #AAE687;
    border-radius: 50%;
    width: 4em;
    height: 4em;
  }
}
/* Minimum aspect ratio */
@media (aspect-ratio: 1/1) {
  .number-circle{
    position: relative;
    background-color: #AAE687;
    border: 1px solid #AAE687;
    border-radius: 50%;
    max-height: 4em;
  }
}

/**
 * HEADER
 */
 header {
  background-color: #500AB4;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

header.bb-white {
  border-bottom: 1px solid;
  border-color: rgba(255,255,255,0.5);
}

header a {
  text-decoration: none;
}

header a:hover {
  text-decoration: none;
}

header #header-logo {
  position: relative;
  height: 110px;
  z-index: 100;
}

header #header-logo .logo-link .logo-header {
  width: auto;
  height: 45px;
  margin: 15px 0;
}

header #header-logo .logo-link .logo-header:hover {
  opacity: 0.9;
}

@media (max-width: 576px) {
  header #header-logo .logo-link .logo-header {
    max-width: 120px;
    height: auto;
  }
}

/**
 * FOOTER
 */
footer {
  background-color: #500AB4;
  color: white;
  position: relative;
  width: 100%;
  bottom: 0px;
}

footer img.logo-footer {
  width: auto;
  max-height: 2.1em;
}

footer img.logo-footer:hover {
  opacity: 0.6;
}

footer h3 {
  letter-spacing: 4.8px;
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: white !important;
  text-decoration: underline;
}

footer .bt-white {
  border-top: 1px solid;
  border-color: rgba(255, 255, 255, 0.3);
}
footer .bb-white {
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.3);
}
footer .br-white {
  border-right: 1px solid;
  border-color: white;
}

footer .site-link {
  letter-spacing: 3.6px;
}

footer .site-link:hover {
  opacity: 1;
}

@media (max-width: 576px) {
  footer {
    background-image: none;
  }
}

@media (max-width: 767px) {
  footer {
    text-align: start !important;
  }
  footer #bottom-footer {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .number-texts-block::after{
    display: none !important;
  }
  .call-to-action{
    text-align: center !important;
  }
}

@media (max-width: 991px) {
  .number-texts-block::after{
    display: none !important;
  }
}

.footer-location {
  height: auto;
  margin-right: 1em;
}

.footer-location .map-icon {
  width: auto;
  height: 20px;
}

.footer-social {
  height: auto;
  margin-right: 1em;
}

.footer-social .social-icon {
  width: auto;
  height: 16px;
}

.footer-social .social-link {
  border: 1px solid white;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
}

.footer-social .social-link:hover {
  text-decoration: none;
  background-color: #AAE687;
  border-color: #AAE687;
}

.bottom-links {
  letter-spacing: 1;
}

/**
 * HOME PAGE
 */
.home-banner{
  height: 100vh;
  padding-top: 110px;
  background-color: #500AB4;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

span.uln-scribble,
span.uln-scribble-2,
span.enf-scribble,
span.circ-scribble{
  position: relative;
}
span.uln-scribble::after {
  position: absolute;
  background: url("../media/images/Sottolineatura.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  bottom: -0.1em;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.4em;
}
span.uln-scribble-2::after {
  position: absolute;
  background: url("../media/images/Sottolineatura_2.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  bottom: -0.25em;
  left: 0;
  right: -0.5em;
  width: 105%;
  height: 0.5em;
}

span.enf-scribble::after {
  position: absolute;
  background: url("../media/images/Enfasi.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  bottom: -0.7em;
  right: -0.7em;
  width: 1em;
  height: 1em;
}

span.circ-scribble::after {
  position: absolute;
  background: url("../media/images/Cerchiatura.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  top: -5%;
  left: -13%;
  width: 130%;
  height: 130%;
}

#requirements{
  position: relative;
  background-color: #FAFAFA;
  min-height: 10em;
}
#requirements::before{
  position: absolute;
  background: url("../media/images/Freccia.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  bottom: 2em;
  left: 0;
  width: 15em;
  height: 8em;
  transform: rotate(180deg);
}
#requirements::after{
  position: absolute;
  background: url("../media/images/Freccia.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  top: 2em;
  right: 0;
  width: 15em;
  height: 8em;
}

#requirements input[type="text"],
#requirements input[type="email"]{
  background-color: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 0.4em;
  height: 2em;
  padding: 0.3em 0.5em;
  color: #14202C;
}
#requirements input[type="checkbox"]{
  opacity: 0.3;
}
#requirements input[type=checkbox]:checked {
  opacity: 1 !important;
}

.req-content{
  z-index: 2;
}
.req-fields-text{
  font-size: 13px;
}

.call-to-action{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/**
 * THANK YOU PAGE
 */
#thank-you-page .btn-link{
  display: none !important;
}

.confirm-img{
  max-height: 6em;
}

.hide-on-desktop{
  display: none;
}
@media all and (max-width:1400px){
 h1{
   font-size: 3.5em;
 }
}
@media all and (max-width:1200px){
  h1{
    font-size: 3em;
  }
}
@media all and (max-width:768px){
  h1 {
    font-size: 2.2em;
  }
  h3 {
    font-size: 2em;
  }
  p{
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .hide-on-mobile{
      display: none !important;
  }
  .show-on-mobile{
    display: block !important;
  }
}