@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100;300;400;500;700&display=swap");
:root {
  --container: 1250px;
  --color-white: #FFFFFF;
  --color-grey-1: #e4e4e4;
  --color-black: #000000;
  --color-primary: #008A83;
  --color-secondary: #FFCF00;
  --font-level-h1: clamp(1.875rem, -0.0833rem + 6.2667vw, 4.8125rem);
  --font-level-h2: clamp(1.25rem, 0.4167rem + 2.6667vw, 2.5rem);
  --font-level-h3: clamp(1.125rem, 0.5rem + 2vw, 2.0625rem);
  --font-level-h4: clamp(1.0625rem, 0.7292rem + 1.0667vw, 1.5625rem);
  --font-level-p: clamp(0.9375rem, 0.6066rem + 0.5882vw, 1.0625rem);
  --font-level-subtitle: clamp(1.25rem, 0.4228rem + 1.4706vw, 1.5625rem);
  --font-level-button: 1rem;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.spacing {
  height: 100vh;
  background-color: grey;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

h1 {
  font-family: var(--font-poppins);
  font-size: var(--font-level-h1);
  line-height: normal;
  font-weight: 700;
}

h2 {
  font-family: var(--font-poppins);
  font-size: var(--font-level-h2);
  line-height: normal;
  font-weight: 700;
}

h4, .subtitle {
  font-family: var(--font-poppins);
  font-size: var(--font-level-h4);
  line-height: normal;
  font-weight: 600;
}

p {
  font-family: var(--font-inter);
  font-size: var(--font-level-p);
  line-height: normal;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--color-primary);
  font-family: var(--font-poppins);
  font-size: var(--font-level-button);
  color: var(--color-white);
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, color 0.2s ease-in-out, padding 0.2s ease-in-out;
}
.btn-primary:hover {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--color-secondary);
  font-family: var(--font-poppins);
  font-size: var(--font-level-button);
  color: var(--color-black);
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, color 0.2s ease-in-out, padding 0.2s ease-in-out;
}
.btn-secondary:hover {
  background-color: var(--color-white);
  border: 2px solid var(--color-secondary);
  color: var(--color-black);
}/*# sourceMappingURL=global.css.map */














/* HERO*/
section.hero_section .hero_wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
  }
  section.hero_section .hero_wrapper .video_wrapper {
    position: absolute;
    inset: 0;
    background-color: red;
    z-index: -1;
  }
  section.hero_section .hero_wrapper .video_wrapper .video-js {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background: var(--color-grey-1);
  }
  section.hero_section .hero_wrapper .video_wrapper .video-js .vjs-tech {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.hero_section .hero_wrapper .hero_container {
    text-align: center;
    flex-direction: column;
    display: flex;
    gap: 2rem;
    margin-top: 10%;
  }
  section.hero_section .hero_wrapper .hero_container .title_box, section.hero_section .hero_wrapper .hero_container .para_box {
    overflow: hidden;
  }
  section.hero_section .hero_wrapper .hero_container .title_box {
    padding: 5px 0;
  }
  section.hero_section .hero_wrapper .hero_container h1 {
    line-height: 4rem;
    transform: translateY(120%);
    opacity: 0;
  }
  section.hero_section .hero_wrapper .hero_container h1 span {
    color: var(--color-primary);
  }
  section.hero_section .hero_wrapper .hero_container p {
    opacity: 0;
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(-100%);
  }
  section.hero_section .hero_wrapper .hero_container .button_wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
  }/*# sourceMappingURL=style.css.map */






  section.title_section {
    padding: 8rem 1rem;
  }
  section.title_section .title_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.1;
  }
  section.title_section .title_wrapper .subtitle {
    color: var(--color-primary);
  }
  
  section.cards-engagement {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  section.cards-engagement .cards_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(0, 320px));
    grid-gap: 30px;
    height: 100%;
  }
  @media (min-width: 576px) {
    section.cards-engagement .cards_grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: minmax(0, 320px) minmax(0, 320px);
    }
  }
  @media (min-width: 1000px) {
    section.cards-engagement .cards_grid {
      grid-template-columns: 1fr 0.7fr 0.7fr;
      grid-template-rows: minmax(0, 320px) minmax(0, 320px);
    }
  }
  section.cards-engagement .card {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    container-type: inline-size;
  }
  section.cards-engagement .card .content_wrapper {
    position: absolute;
    padding: 2rem;
    z-index: 2;
  }
  section.cards-engagement .card .content_wrapper h4 {
    color: var(--color-white);
  }
  section.cards-engagement .card .content_wrapper p {
    color: var(--color-white);
  }
  section.cards-engagement .card .cross_wrapper {
    position: absolute;
    z-index: 2;
    background-color: var(--color-white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    bottom: 1rem;
    right: 1rem;
    transition: background-color 0.2s ease-in-out;
  }
  section.cards-engagement .card .cross_wrapper svg {
    fill: black;
    transition: fill 0.2s ease-in-out;
  }
  section.cards-engagement .card:nth-child(1) {
    grid-area: 1/1/2/2;
    transform: translateY(100px);
  }
  section.cards-engagement .card:nth-child(1) .content_wrapper {
    bottom: 0;
    max-width: 70%;
  }
  section.cards-engagement .card:nth-child(2) {
    grid-area: 2/1/3/2;
    transform: translateY(300px);
  }
  section.cards-engagement .card:nth-child(2) .content_wrapper {
    top: 0;
    max-width: 90%;
  }
  section.cards-engagement .card:nth-child(3) {
    grid-area: 3/1/4/2;
  }
  section.cards-engagement .card:nth-child(3) .content_wrapper {
    bottom: 0;
    max-width: 85%;
  }
  section.cards-engagement .card:nth-child(4) {
    grid-area: 4/1/5/2;
    transform: translateY(300px);
  }
  section.cards-engagement .card:nth-child(4) .content_wrapper {
    bottom: 0;
    max-width: 85%;
  }
  @media (min-width: 576px) {
    section.cards-engagement .card:nth-child(1) {
      grid-area: 1/1/2/2;
    }
    section.cards-engagement .card:nth-child(2) {
      grid-area: 1/2/2/3;
    }
    section.cards-engagement .card:nth-child(3) {
      grid-area: 2/1/3/2;
    }
    section.cards-engagement .card:nth-child(4) {
      grid-area: 2/2/3/3;
    }
  }
  @media (min-width: 1000px) {
    section.cards-engagement .card:nth-child(1) {
      grid-area: 1/1/3/2;
    }
    section.cards-engagement .card:nth-child(2) {
      grid-area: 1/2/3/3;
    }
    section.cards-engagement .card:nth-child(3) {
      grid-area: 1/3/2/4;
    }
    section.cards-engagement .card:nth-child(4) {
      grid-area: 2/3/3/4;
    }
  }
  section.cards-engagement .card::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    inset: 0;
    z-index: 1;
    border-radius: 15px;
    border: 0px solid var(--color-yellow);
    transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  section.cards-engagement .card img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  section.cards-engagement .card:hover::after {
    border: 5px solid var(--color-secondary);
    background-color: rgba(0, 0, 0, 0.3);
  }
  section.cards-engagement .card:hover .cross_wrapper {
    background-color: var(--color-secondary);
  }
  
  section.video-clip-section {
    position: relative;
    height: 100vh;
  }
  section.video-clip-section .video-clip-container {
    position: absolute;
    inset: 0;
    transform: scaleX(0.5) scaleY(0.5);
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    border-radius: 15px;
  }
  section.video-clip-section .video-clip-container .video_container {
    position: absolute;
    inset: 0;
    transform: scaleX(2) scaleY(2);
    transition: transform 0.5s ease-in-out;
  }
  section.video-clip-section .video-clip-container .video_container video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.video-clip-section .my-video-dimensions {
    height: 100%;
    width: 100%;
  }
  
  section.testimonial_section .testimonial_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
  }
  section.testimonial_section .testimonial_wrapper .testimonial_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: scale(2);
    transform-origin: center center;
    z-index: -1;
  }
  section.testimonial_section .testimonial_wrapper .mask {
    position: absolute;
    z-index: 1;
  }
  section.testimonial_section .testimonial_wrapper .mask__left {
    height: 100%;
    width: 20%;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #f5f5f5, hsla(0, 0%, 96%, 0));
  }
  section.testimonial_section .testimonial_wrapper .mask__top {
    height: 30%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, #f5f5f5, hsla(0, 0%, 96%, 0));
  }
  section.testimonial_section .testimonial_wrapper .mask__right {
    height: 100%;
    width: 20%;
    top: 0;
    right: 0;
    background-image: linear-gradient(-90deg, #f5f5f5, hsla(0, 0%, 96%, 0));
  }
  section.testimonial_section .testimonial_wrapper .mask__bottom {
    height: 30%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(0deg, #f5f5f5, hsla(0, 0%, 96%, 0));
  }
  section.testimonial_section .testimonial_wrapper .testimonial_container .testimonial_bloc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  section.testimonial_section .testimonial_wrapper .testimonial_container .testimonial_bloc .pretitle-1 {
    font-size: 14px;
    font-family: var(--font-inter);
  }
  section.testimonial_section .testimonial_wrapper .testimonial_container .testimonial_bloc .title {
    font-size: 40px;
    font-family: var(--font-inter);
    text-align: center;
  }
  section.testimonial_section .testimonial_wrapper .testimonial_container .testimonial_bloc .title strong {
    font-size: 55px;
  }
  section.testimonial_section .testimonial_wrapper .testimonial_container .testimonial_bloc a.btn-primary {
    margin-top: 40px;
  }/*# sourceMappingURL=style.css.map */
  