@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --secondary: #063247;
  --primary: #39aed3;
  --white: white;
  --color: #2a2a2a;
  --smoke: #e1f0f7;
  --paragraph: #57585a;
  --dark1: #373737;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--secondary);
  font-family: Lexend Deca, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

h1 {
  letter-spacing: -4px;
  text-wrap: balance;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 100%;
}

h2 {
  letter-spacing: -3px;
  text-wrap: balance;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 100%;
}

h3 {
  letter-spacing: -3px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 100%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}

p {
  margin-bottom: 10px;
}

.row {
  flex-wrap: wrap;
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
}

.row.row-align-center {
  align-items: center;
}

.row.row-justify-center, .row.row-hero {
  justify-content: center;
}

.col {
  flex: none;
  width: 100%;
  max-width: 100%;
  margin-left: -1rem;
  margin-right: -1rem;
}

.col.col-12 {
  max-width: 100%;
}

.col.col-6 {
  max-width: 50%;
}

.col.col-6.col-grid-ref {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: rotate(-7deg)translate(-2px);
}

.col.col-6.col-ref-hero {
  justify-content: center;
  height: 100%;
  padding-top: 16rem;
  padding-bottom: 8rem;
  display: flex;
}

.col.col-3 {
  max-width: 25%;
}

.col.col-9 {
  max-width: 75%;
}

.col.col-4 {
  max-width: 33.33%;
}

.col.col-8 {
  max-width: 66.66%;
}

.color-block {
  border: 1px solid #000;
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  margin-right: 5px;
  display: inline-block;
}

.color-block.primary {
  background-color: var(--primary);
}

.color-block.secondary {
  background-color: var(--secondary);
}

.col-dummy {
  background-color: #00000024;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

.section.section-footer {
  color: var(--white);
}

.section.section-copyright {
  background-color: var(--color);
  color: var(--white);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section.section-hero {
  color: var(--white);
  background-color: #0000;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.section.section-white {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white);
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.section.section-grey {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--smoke);
  background-image: linear-gradient(#fff9, #fff9);
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.section.section-grey.meta {
  background-color: #e1f0f700;
  background-image: none;
  margin-top: -5rem;
  margin-bottom: -5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.contain {
  width: 100%;
  max-width: 1500px;
  position: relative;
}

.contain.nav-contain {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.contain.hero {
  flex: 1;
  max-width: 100%;
  height: 100%;
}

.cta {
  border: 2px solid var(--primary);
  color: var(--secondary);
  background-color: #0000;
  padding: 1rem 2rem;
  font-size: 21px;
  font-weight: 600;
  line-height: 100%;
}

.cta.tel {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.cta.ghost {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--white);
  background-color: #06324730;
}

.center {
  text-align: center;
}

.margin-top {
  margin-top: 20px;
}

.margin-bottom {
  margin-bottom: 20px;
}

.flex-block {
  justify-content: space-between;
}

.info-wtapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.navbar {
  color: var(--white);
  background-color: #0000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: fixed;
  inset: 0% 0% auto;
}

.div-block {
  border: 3px solid var(--primary);
  border-radius: 100%;
  width: 56px;
  height: 56px;
  padding: 8px;
  position: relative;
}

.heading {
  font-size: 5rem;
}

.intro {
  text-align: center;
  text-wrap: balance;
  font-family: Lexend Deca, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 116%;
}

.outline {
  color: #0000;
  -webkit-text-fill-color: var(--secondary);
  -webkit-text-stroke-color: white;
  -webkit-text-stroke-width: 2px;
  display: inline-block;
}

.subtitle {
  color: var(--smoke);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.fa-brand {
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-weight: 400;
}

.social-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
}

.social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.footer-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.flex-block-2 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.flex-block-2.flex-hero {
  align-items: center;
}

.flex-block-2.flex-venter {
  justify-content: flex-start;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.link {
  border-bottom: 4px solid var(--primary);
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.image {
  object-fit: contain;
  width: 100%;
}

.brand {
  width: 150px;
}

.nav-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-block-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  overflow: scroll;
}

.comp-slide {
  background-color: var(--white);
  border-radius: 1rem;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  overflow: hidden;
}

.comp-slide.active {
  box-shadow: 0 8px 25px 5px var(--smoke);
}

.div-block-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template: "Area-2 Area"
                 ". ."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ref-wrapper {
  aspect-ratio: 1;
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ref-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.flex-block-4 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 910px;
  height: 100%;
  display: block;
}

.comp-img-wrapper {
  aspect-ratio: 4 / 5;
  border-bottom-left-radius: 1.5rem;
  margin-top: -1.5rem;
  margin-left: 104px;
  margin-right: -1.5rem;
  padding-bottom: 0%;
  position: relative;
  overflow: hidden;
}

.image-3 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.h1-hero {
  text-align: center;
  font-size: clamp(2.8rem, 6vw, 7.8rem);
}

.image-4 {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.text-span {
  color: var(--primary);
  letter-spacing: -2px;
  font-weight: 800;
}

.fa {
  font-family: "Fa 400", Arial, sans-serif;
}

.flex-block-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.ref-flex-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: auto;
  padding-left: 6rem;
  padding-right: 6rem;
}

.mask {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: 1 0 100%;
  align-items: stretch;
  width: 33.33%;
  max-width: 450px;
  display: flex;
  overflow: visible;
}

.hide {
  display: none;
}

.ico-slide {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.footer-logo {
  width: 350px;
}

.footer-link {
  color: var(--white);
}

.flex-block-6 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  font-size: .8rem;
}

.text-span-2 {
  color: var(--primary);
}

.flex-block-7 {
  justify-content: flex-start;
  align-items: center;
}

.image-comp-anim {
  width: 50%;
  position: absolute;
  inset: auto 10% 0% auto;
  box-shadow: 0 9px 20px -13px #0632475c;
}

.body {
  background-color: var(--secondary);
  background-image: linear-gradient(#063247fa, #063247fa), url('../images/meta-bg.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.div-block-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 2rem;
  flex-flow: column;
  max-width: 50vh;
  min-height: 65vh;
  padding: 2rem;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
  overflow: auto;
}

.insta-wrapper {
  aspect-ratio: 1;
  flex: none;
  width: 250px;
  position: relative;
  overflow: hidden;
}

.insta-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.insta-post {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
}

.comp-list {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 120%;
}

.ico-competences {
  width: 6rem;
  margin-bottom: 2rem;
}

.h3-comp {
  text-transform: capitalize;
  margin-top: 0;
}

.comp-desc-wrapper {
  margin-top: -97px;
}

.bg-competences {
  z-index: -1;
  opacity: .1;
  width: 100%;
  position: absolute;
  top: -2%;
  left: -20%;
  transform: rotate(-9deg);
}

.insta-post-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
  overflow: visible;
  transform: rotate(-3deg);
}

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

@media screen and (max-width: 991px) {
  .row {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .row.row-hero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: center;
  }

  .col.col-6.col-md-1 {
    max-width: 25%;
  }

  .col.col-6.col-md-2 {
    max-width: 50%;
  }

  .col.col-6.col-md-3 {
    max-width: 75%;
  }

  .col.col-6.col-md-4 {
    max-width: 100%;
  }

  .col.col-6.col-grid-ref {
    z-index: 5;
    max-width: 100%;
    height: auto;
    margin-bottom: -4rem;
    position: relative;
    left: auto;
    transform: rotate(-2deg);
  }

  .col.col-6.col-ref-hero {
    max-width: 100%;
    padding-top: 12.7rem;
    padding-bottom: 2rem;
  }

  .col.col-md-2 {
    max-width: 50%;
  }

  .col.col-md-3 {
    max-width: 75%;
  }

  .col.col-md-4 {
    max-width: 100%;
  }

  .col.col-md-1 {
    max-width: 25%;
  }

  .section.section-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section.section-hero {
    min-height: auto;
    padding-bottom: 0;
    overflow: visible;
  }

  .col-md-4 {
    max-width: 100%;
  }

  .col-md-3 {
    max-width: 75%;
  }

  .col-md-2 {
    max-width: 50%;
  }

  .col-md-1 {
    max-width: 25%;
  }

  .info-wtapper {
    text-align: center;
    flex-flow: column;
  }

  .intro {
    text-align: center;
    font-size: 1.5rem;
  }

  .footer-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .flex-block-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    align-items: center;
    padding-left: 0;
  }

  .div-block-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template: "Area-2"
                   "Area"
                   / 1fr;
  }

  .ref-wrapper {
    flex: 1;
    width: 33.33%;
  }

  .ref-flex {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    width: 100%;
    height: auto;
    min-height: auto;
    transform: none;
  }

  .h1-hero {
    text-align: center;
    font-size: clamp(2.8rem, 10vw, 10rem);
  }

  .ref-flex-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    flex: none;
    width: 100%;
    display: flex;
  }

  .mask {
    width: 100%;
    max-width: 380px;
  }
}

@media screen and (max-width: 767px) {
  .row.row-hero {
    align-items: center;
  }

  .col.col-sm-2 {
    max-width: 100%;
  }

  .col.col-sm-1 {
    max-width: 50%;
  }

  .contain.nav-contain {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
  }

  .flex-block-2.flex-hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-menu {
    background-color: #c8c8c800;
  }

  .flex-block-5 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: flex-start;
  }

  .insta-wrapper {
    width: 180px;
  }

  .menu-button {
    margin-left: auto;
  }

  .menu-button.w--open {
    color: var(--primary);
    background-color: #0000;
  }
}

@media screen and (max-width: 479px) {
  .col.col-xs-2 {
    max-width: 100%;
  }

  .col.col-xs-1 {
    max-width: 50%;
  }

  .cta.ghost {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .info-wtapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .intro {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: .75rem;
    line-height: 110%;
  }

  .footer-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .flex-block-2.flex-hero {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .flex-block-2.flex-venter {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .body {
    max-width: 100%;
  }

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


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}