:root {
  --color-primary:   #714ea0;
  --color-secondary: #f5f5f5;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --font-main: "Open Sans", sans-serif;
  

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;


  --width-contet: 72rem;
}



* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-left: 0;
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
html, body {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
[data-aos], .parallax {
  will-change: transform, opacity;
  backface-visibility: hidden;
}


h2.section__title {
  font-size: 2.5rem;
}
@media only screen and (max-width: 767px) {
  h2.section__title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}


p {
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 1.2rem;
  }
}

a{
  text-decoration: none;
}

.fa-solid {
  color: ;
}



h2.title--huge {
  font-size: 8rem;
}

@media only screen and (max-width: 767px) {
  h2.title--huge {
    font-size: 3rem;
  }
}