@import "../fontawesome/css/all.min.css";
@import "fonts.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
p,
li {
  font-family: "Avenir", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p.hero-content-title {
  font-family: "Nohemi", sans-serif;
}

:root {
  --ea-orange: #f66800;
  --ea-black: #070707;
  --ea-darkgray: #232323;
  --ea-gray: #9d9d9d;
  --ea-white: #ffffff;
  --font-size-xxlarge: 72px;
  --font-size-xlarge: 48px;
  --font-size-large: 38px;
  --font-size-medium: 26px;
  --font-size-small: 22px;
  --font-size-large-paragraph: 24px;
  --font-size-medium-paragraph: 18px;
  --font-size-small-paragraph: 16px;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

[data-scroll-section] {
  position: relative;
}

*.button-style-1 {
  background-color: var(--ea-orange);
  padding: 1rem 3rem;
  border-radius: 4rem;
  margin: 0.1rem 0;
  text-decoration: none;
  color: var(--ea-white);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-align: center;
}
*.button-style-1:hover {
  background-color: var(--ea-white);
  color: var(--ea-black);
}

*.button-style-2 {
  background-color: var(--ea-white);
  color: var(--ea-black);
  padding: 1rem 3rem;
  margin: 0.1rem 0;
  border-radius: 4rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  outline: solid 1px white;
  text-align: center;
}
*.button-style-2:hover {
  background-color: transparent;
  color: var(--ea-white);
}

section.index-hero {
  display: flex;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  padding-left: 4rem;
  background-color: var(--ea-black);
}
section.index-hero .hero-content {
  width: 50vw;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
section.index-hero .hero-content .hero-content-texts {
  width: 60%;
  z-index: 4;
}
section.index-hero .hero-content .hero-content-texts p {
  visibility: hidden;
}
section.index-hero .hero-content .hero-content-texts span {
  visibility: hidden;
}
section.index-hero .hero-content .hero-content-texts .hero-content-title {
  font-size: 3rem;
  color: var(--ea-white);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
section.index-hero .hero-content .hero-content-texts .hero-content-title span {
  font-size: 3rem;
  color: var(--ea-orange);
}
section.index-hero .hero-content .hero-content-links {
  display: flex;
  gap: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
  z-index: 3;
  visibility: hidden;
}
section.index-hero .hero-image-container {
  width: 50vw;
  height: 100vh;
  position: relative;
  margin-right: 2rem;
}
section.index-hero .hero-image-container img {
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  opacity: 0;
  right: 0.5rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

section.index-section1 {
  width: 100vw;
  height: -moz-max-content;
  height: max-content;
  padding: 3rem 0;
  background-color: var(--ea-darkgray);
  display: flex;
  gap: 2rem;
}
section.index-section1 .index-section1-images-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 50%;
  margin-right: 2rem;
}
section.index-section1 .index-section1-images-container img {
  width: 60%;
  min-width: 400px;
  max-width: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.index-section1 .index-section1-texts {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 8rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
section.index-section1 .index-section1-texts h2 {
  font-size: 3rem;
  color: var(--ea-white);
  text-align: left;
  position: relative;
}
section.index-section1 .index-section1-texts h2 span {
  color: var(--ea-orange);
}
section.index-section1 .index-section1-texts h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--ea-white);
  position: absolute;
  bottom: 96px;
  left: 1rem;
  transform: translateX(-50%);
}
section.index-section1 .index-section1-texts p {
  font-size: 1.25rem;
  color: var(--ea-white);
  text-align: left;
  width: 60%;
}
section.index-section1 .index-section1-texts a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
}

section.index-section2 {
  width: 100vw;
  background-color: var(--ea-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 8rem;
}
section.index-section2 .index-section2-texts {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
section.index-section2 .index-section2-texts .index-section2-title {
  font-size: 3rem;
  color: var(--ea-white);
  text-align: left;
}
section.index-section2 .index-section2-texts .index-section2-title span {
  color: var(--ea-orange);
}
section.index-section2 .index-section2-gallery {
  display: flex;
  gap: 2rem;
  height: 100%;
  width: 100%;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(50% - 1rem);
  height: 32rem;
  border-radius: 1rem;
  position: relative;
  text-decoration: none;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-tags {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  z-index: 2;
  position: relative;
  margin: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-tags .index-section2-gallery-item-tag {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: var(--ea-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-tags .index-section2-gallery-item-tag i.material-icons {
  font-size: 1.25rem;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  z-index: 2;
  position: relative;
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-texts h3 {
  font-size: 1.5rem;
  color: var(--ea-orange);
}
section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-texts p {
  font-size: 1rem;
  color: var(--ea-white);
}

section.index-section3 {
  width: 100vw;
  background-color: var(--ea-darkgray);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 12rem;
}
section.index-section3 div.index-section3-texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
section.index-section3 div.index-section3-texts h2 {
  font-size: 3rem;
  color: var(--ea-white);
}
section.index-section3 div.index-section3-texts h2 span {
  color: var(--ea-orange);
}
section.index-section3 div.index-section3-texts p {
  font-size: 1.25rem;
  color: var(--ea-white);
  width: 60%;
}
section.index-section3 div.index-section3-texts ul {
  list-style: none;
  padding: 0;
}
section.index-section3 div.index-section3-texts ul li {
  margin-bottom: 0.5rem;
  color: var(--ea-white);
  position: relative;
  padding-left: 1.5rem;
}
section.index-section3 div.index-section3-texts ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--ea-orange);
  border-radius: 50%;
}
section.index-section3 div.index-section3-texts a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
}
section.index-section3 div.index-section3-images {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
section.index-section3 div.index-section3-images img.index-section3-image1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
}
section.index-section3 div.index-section3-images img.index-section3-image2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  z-index: 1;
}

section.index-section4 {
  display: flex;
  flex-direction: column;
  padding: 8rem;
  gap: 4rem;
  background-color: var(--ea-black);
}
section.index-section4 div.index-section4-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.index-section4 div.index-section4-top div.index-section4-top-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section.index-section4 div.index-section4-top div.index-section4-top-left h2 {
  font-size: 3rem;
  color: var(--ea-white);
  text-align: left;
}
section.index-section4 div.index-section4-top div.index-section4-top-left h2 span {
  color: var(--ea-orange);
}
section.index-section4 div.index-section4-top div.index-section4-top-left p {
  font-size: 1.25rem;
  color: var(--ea-white);
  width: 60%;
}
section.index-section4 div.index-section4-top div.index-section4-top-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.index-section4 div.index-section4-top div.index-section4-top-right a {
  width: -moz-max-content;
  width: max-content;
}
section.index-section4 div.index-section4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}
section.index-section4 div.index-section4-grid div.index-section4-grid-item {
  background-color: var(--ea-black);
  padding: 1rem;
  color: var(--ea-white);
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid #6a6a6a;
}
section.index-section4 div.index-section4-grid div.index-section4-grid-item:hover {
  background-color: var(--ea-dark-gray);
}
section.index-section4 div.index-section4-grid div.index-section4-grid-item i {
  margin-bottom: 1rem;
  font-size: 2rem;
}
section.index-section4 div.index-section4-grid div.index-section4-grid-item h3 {
  font-size: 1.5rem;
  color: var(--ea-orange);
}
section.index-section4 div.index-section4-grid div.index-section4-grid-item p {
  font-size: 1rem;
  color: var(--ea-gray);
  width: 100%;
  text-align: left;
  padding: 0;
  margin-bottom: 1rem;
}

section.index-section5 {
  padding: 12rem;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../../assets/images/paysage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
section.index-section5 div.index-section5-texts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 80%;
}
section.index-section5 div.index-section5-texts h2 {
  font-size: 2.5rem;
  color: var(--ea-white);
  text-align: left;
}
section.index-section5 div.index-section5-texts h2 span {
  color: var(--ea-orange);
}
section.index-section5 div.index-section5-texts p {
  font-size: 1rem;
  color: var(--ea-white);
  width: 60%;
}
section.index-section5 div.index-section5-texts a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
}

section.index-section6 {
  padding: 8rem;
  background-color: var(--ea-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
section.index-section6 h2 {
  font-size: 3rem;
  color: var(--ea-white);
  text-align: center;
}
section.index-section6 h2 span {
  color: var(--ea-orange);
}
section.index-section6 div.index-section6-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  margin: 8rem 0;
}
section.index-section6 div.index-section6-items .index-section6-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
section.index-section6 div.index-section6-items .index-section6-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
section.index-section6 div.index-section6-items .index-section6-item p {
  font-size: 1rem;
  color: var(--ea-white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  *.button-style-1 {
    padding: 0.5rem 1.5rem;
  }
  *.button-style-2 {
    padding: 0.5rem 1.5rem;
  }
  body.index {
    display: flex;
    flex-direction: column;
  }
  section.index-hero {
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    padding-left: unset;
    padding-right: unset;
  }
  section.index-hero h1 {
    width: 80%;
  }
  section.index-hero p {
    font-size: 1rem;
  }
  section.index-hero .index-hero-btns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  section.index-hero .index-hero-btns a {
    width: 100%;
    text-align: center;
  }
  section.index-hero div.hero-content {
    position: absolute;
    width: 100vw;
    top: 20%;
    gap: 0;
  }
  section.index-hero div.hero-content div.hero-content-texts {
    width: 100%;
    text-align: center;
  }
  section.index-hero div.hero-content div.hero-content-texts p.hero-content-title {
    width: 100%;
  }
  section.index-hero div.hero-content div.hero-content-links {
    width: calc(100% - 4rem);
    margin: 2rem;
    justify-content: center;
  }
  section.index-hero div.hero-image-container img {
    right: unset;
    left: 50%;
    bottom: 0;
    height: 50%;
  }
  section.index-section1 {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  section.index-section1 .index-section1-images-container {
    width: 100%;
    margin-right: unset;
  }
  section.index-section1 .index-section1-images-container img {
    width: 100%;
    max-width: 400px;
    min-width: 0;
  }
  section.index-section1 .index-section1-texts {
    width: 100%;
    text-align: center;
    gap: 2rem;
  }
  section.index-section1 .index-section1-texts h2 {
    font-size: 2rem;
  }
  section.index-section1 .index-section1-texts p {
    width: 100%;
    font-size: 1rem;
  }
  section.index-section2 {
    padding: 2rem;
  }
  section.index-section2 .index-section2-texts {
    flex-direction: column;
  }
  section.index-section2 .index-section2-texts .index-section2-title {
    font-size: 2rem;
    margin: 2rem 0;
  }
  section.index-section2 .index-section2-gallery {
    flex-direction: column;
    gap: 1rem;
  }
  section.index-section2 .index-section2-gallery .index-section2-gallery-item {
    width: 100%;
    height: 20rem;
    overflow: hidden;
    justify-content: flex-end;
  }
  section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-texts h3 {
    font-size: 1.25rem;
  }
  section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-texts p {
    font-size: 0.875rem;
  }
  section.index-section2 .index-section2-gallery .index-section2-gallery-item .index-section2-gallery-item-tags {
    display: none;
  }
  section.index-section3 {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  section.index-section3 div.index-section3-texts {
    width: 100%;
  }
  section.index-section3 div.index-section3-texts h2 {
    font-size: 2rem;
  }
  section.index-section3 div.index-section3-texts p {
    width: 100%;
    font-size: 1rem;
  }
  section.index-section3 div.index-section3-images {
    width: 100%;
    height: auto;
  }
  section.index-section3 div.index-section3-images img.index-section3-image1,
  section.index-section3 div.index-section3-images img.index-section3-image2 {
    height: auto;
    width: 200px;
  }
  section.index-section4 {
    padding: 2rem;
  }
  section.index-section4 div.index-section4-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section.index-section4 div.index-section4-top div.index-section4-top-left {
    width: 100%;
  }
  section.index-section4 div.index-section4-top div.index-section4-top-left h2 {
    font-size: 2rem;
  }
  section.index-section4 div.index-section4-top div.index-section4-top-left p {
    width: 100%;
    font-size: 1rem;
  }
  section.index-section4 div.index-section4-top div.index-section4-top-right {
    width: 100%;
  }
  section.index-section4 div.index-section4-top div.index-section4-top-right a {
    margin-top: 2rem;
  }
  section.index-section4 div.index-section4-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  section.index-section5 {
    padding: 4rem 2rem;
    height: auto;
  }
  section.index-section5 div.index-section5-texts {
    width: 100%;
    text-align: center;
  }
  section.index-section5 div.index-section5-texts h2 {
    font-size: 2rem;
  }
  section.index-section5 div.index-section5-texts p {
    width: 100%;
    font-size: 1rem;
  }
  section.index-section6 {
    padding: 4rem 2rem;
  }
  section.index-section6 h2 {
    font-size: 2rem;
  }
  section.index-section6 div.index-section6-items {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  section.index-section6 div.index-section6-items .index-section6-items {
    margin: 2rem 0;
  }
  section.index-section6 div.index-section6-items .index-section6-items .index-section6-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  section.index-section6 div.index-section6-items .index-section6-items .index-section6-item img {
    max-height: 150px;
  }
}/*# sourceMappingURL=styles.css.map */