/* 
----- C O L O R S -----
*/

/*
  primary: #1E1E1E
  secondary: #8B1571

  true-black: #000
  black: #1E1E1E
  white: #FFF

  gray: #7E7E7E
  gray-2: #AEAEAE
  gray-3: #C6C6C6
  gray-4: #D9D9D9

  purple: #8B1571
  purple-2: #691056
  purple-3: #BB1E98
*/


/* 
----- B R E A K P O I N T S -----
*/

/*
  $sm-breakpoint: 640px;
  $md-breakpoint: 1024px;
  $lg-breakpoint: 1366px;
  $xlg-breakpoint: 1440px;
*/


/* 
----- F O N T S -----
*/

/* Brix Sans - Medium */
@font-face {
  font-family: 'Brix Sans';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: 
  url('/src/fonts/brix-sans/brix-sans-medium.woff2') format('woff2'),
  url('/src/fonts/brix-sans/brix-sans-medium.woff') format('woff'),
  url('/src/fonts/brix-sans/brix-sans-medium.otf') format('otf'),
  url('/src/fonts/brix-sans/brix-sans-medium.ttf') format('truetype');
}

/* Brix Sans - Light */
@font-face {
  font-family: 'Brix Sans';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: 
    url('/src/fonts/brix-sans/brix-sans-light.woff2') format('woff2'),
    url('/src/fonts/brix-sans/brix-sans-light.woff') format('woff'),
    url('/src/fonts/brix-sans/brix-sans-light.otf') format('otf'),
    url('/src/fonts/brix-sans/brix-sans-light.ttf') format('truetype');
}


/* 
----- S T Y L E -----
*/

/* 
--- COMMONS ---
*/

html {
  color: #1E1E1E;
  font-size: 62.5%;
  font-variant-numeric: lining-nums;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  font-display: swap;
}

body {
  font-family: 'Brix Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  background-color: #1E1E1E;
}

.a-svg {
  height: 1.2rem;
  width: 1.2rem;
}

.g-4 {
  gap: 1.5rem;
}
.gx-4 {
  row-gap: 1.5rem;
}
.gy-4 {
  column-gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}
.gx-5 {
  row-gap: 3rem;
}
.gy-5 {
  column-gap: 3rem;
}

.g-6 {
  gap: 6rem;
}
.gx-6 {
  row-gap: 6rem;
}
.gy-6 {
  column-gap: 6rem;
}



/* 
--- TYPOGRAPHY ---
*/

h1, .a-h1, 
h2, .a-h2, 
h3, .a-h3,
h4, .a-h4,
h5, .a-h5 {
  color: #7E7E7E;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 0;
}

h1, .a-h1 {
  color: #FFF;
}

h1, .a-h1,
h2, .a-h2 {
  font-weight: 300;
  font-size: 3rem;
}

h3, .a-h3 {
  font-weight: 300;
  font-size: 2.4rem;
}

h4, .a-h4 {
  font-weight: 500;
  font-size: 1.2rem;
  color: #7E7E7E;
}

h5, .a-h5 {
  font-weight: 500;
  font-size: 1rem;
}

p, .a-p {
  color: #7E7E7E;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: .02em;
  margin-bottom: 0;
}

p.-small,
.a-p.-small {
  font-size: 1.2rem;
  line-height: 1.4;
}

p.-big,
.a-p.-big {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2;
  color: #1E1E1E;
}

p.-bold,
.a-p.-bold,
strong,
b {
  font-weight: 700;
}

p.-italic,
.a-p.-italic,
em,
i {
  font-style: italic;
}

p.-uppercase,
.a-p.-uppercase {
  letter-spacing: .2em;
  text-transform: uppercase;
}

legend {
  display: inline-flex;
  gap: 1rem;
}

hr {
  border-color: #7E7E7E;
}

@media screen and (min-width: 1366px) {
  h1, .a-h1,
  h2, .a-h2 {
    font-size: 4.2rem;
  }
}


/* 
--- LINK ---
*/

a {
  text-decoration: none;
}

.a-link {
  position: relative;
  overflow: hidden;
  color: #1E1E1E;
  font-size: 1.2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .25s cubic-bezier(.55, 0, .1, 1);
}

.a-link .a-buttonField__text {
  position: relative;
  z-index: 3;
}

.a-link.-c-white {
  color: #FFF;
}

.a-link.-c-gray {
  color: #7E7E7E;
}

.a-link:hover:not([aria-disabled]),
.a-link.-hover,
.a-link.-active {
  outline: none;
  color: #BB1E98;
}


/* 
--- BUTTON ---
*/

.a-button {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  width: 100%;
  background-color: #1E1E1E;
  color: #FFF;
  font-size: 1.2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: none;
  transition: background-color .25s cubic-bezier(.55, 0, .1, 1);
}

.a-button .a-buttonField__text {
  position: relative;
  z-index: 3;
}

.a-button:hover:not([aria-disabled]),
.a-button.-hover,
.a-button:focus {
  outline: none;
  background-color: #BB1E98;
}


/* 
--- BREADCRUMB ---
*/

.o-breadcrumb__steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  justify-items: center;
  justify-content: center;
  counter-reset: section;
  overflow: hidden;
}
.o-breadcrumb__steps::before {
  content: "";
  width: 100%;
  border-bottom: 1px solid #BB1E98;
}
.o-breadcrumb__steps::after {
  content: "";
  width: 200%;
  border-bottom: 1px solid #AEAEAE;
}
.o-breadcrumb__step {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 3rem 0;
  color: #AEAEAE;
  align-items: center;
}
.o-breadcrumb__step::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: -50%;
  border-bottom: 1px solid #AEAEAE;
}
.o-breadcrumb__step .a-svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #AEAEAE;
}
.o-breadcrumb__step .a-step {
  color: #AEAEAE;
}
.o-breadcrumb__step .a-step::before {
  content: counter(section, decimal-leading-zero);
  counter-increment: section;
}
/* states */
.o-breadcrumb__step.-done .a-step,
.o-breadcrumb__step.-done .a-svg {
  color: #1E1E1E;
}
.o-breadcrumb__step.-active .a-step {
  color: #BB1E98;
}
.o-breadcrumb__step.-done::before,
.o-breadcrumb__step.-active::before {
  border-color: #BB1E98;
}

/* mobile */
.o-breadcrumb-mobile {
  display: grid;
  position: relative;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  justify-items: center;
  overflow: hidden;
}
.o-breadcrumb-mobile::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #AEAEAE;
}
.o-breadcrumb-mobile__progress {
  content: "";
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #BB1E98;
}
.o-breadcrumb-mobile__position {
  color: #BB1E98;
}
.o-breadcrumb-mobile__separator {
  color: #AEAEAE;
}
.o-breadcrumb-mobile__end {
  color: #AEAEAE;
}

/* 
--- FORM ---
*/

.form-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1E1E1E;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.form-control {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 1.5rem;
  color: #1E1E1E;
  border: 1px solid #D9D9D9;
  border-radius: 0;
}

.form-control::placeholder {
  color: #D9D9D9;
}

.form-control:hover {
  border-color: #c0c0c0;
  box-shadow: unset;
}

.form-control:focus {
  border-color: #1E1E1E;
  box-shadow: unset;
}


/* 
--- CHECKBOX ---
*/

.a-inputField {
  /* COMMON */
  width: 100%;
}

.a-inputField__label {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
  justify-content: space-between;
  padding-bottom: .5rem;
}

.a-inputField__label__secondary,
.a-inputField__label abbr {
  color: #AEAEAE;
}

.a-inputField__content,
.a-inputField__options {
  position: relative;
}

.a-inputField__checkbox:checked + .a-inputField__checkIcon {
  background-color: #BB1E98;
  border-color: #BB1E98;
}
.a-inputField__checkbox:checked + .a-inputField__checkIcon + .a-inputField__value {
  color: #BB1E98;
  
}
.a-inputField__checkbox:checked + .a-inputField__checkIcon .a-checked {
  transform: scale(1) rotate(0deg);
}

.a-inputField__buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.a-inputField__buttons.-row {
  flex-direction: row;
}

.a-inputField__button {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 1.6rem 1.5rem;
  border: 1px solid #D9D9D9;
  background-color: #FFF;
  transition: border-color .25s cubic-bezier(.55, 0, .1, 1);
}
.a-inputField__button.-hover,
.a-inputField__button:hover {
  border-color: #c0c0c0;
}

.a-inputField__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.a-inputField__checkIcon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 1rem;
  border: 1px solid #1E1E1E;
  border-radius: 50%;
  transition:
    background-color .25s cubic-bezier(.55, 0, .1, 1),
    border-color .25s cubic-bezier(.55, 0, .1, 1);
}

.a-inputField__checkIcon .a-checked {
  transition: transform .4s cubic-bezier(.44, 0, .34, 1.37);
  transform: scale(0) rotate(90deg);
}
.a-inputField__value {
  color: #1E1E1E;
  font-size: 1.4rem;
  /* font-size: 1rem;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase; */
  transition: color .25s cubic-bezier(.55, 0, .1, 1);
}

/* checked icon */
.a-checked {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
.a-checked::after,
.a-checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: #FFF;
}
.a-checked::before {
  width: 20%;
  height: 1px;
  border-radius: 1px 0 0 1px;
}
.a-checked::after {
  width: 50%;
  height: 1px;
  border-radius: 0 1px 1px;
}
.a-checked::before {
  transform: translate(-125%, 30%) rotate(45deg);
}
.a-checked::after {
  transform: translate(-35%, -25%) rotate(-45deg);
}


/* 
--- HEADER ---
*/

.o-header {
  padding: 6rem 0 6rem;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
}

.a-svg.-logo {
  width: 100%;
  max-width: 16rem;
  height: auto;
  color: #FFF;
}

@media screen and (min-width: 1366px) {
  .o-header {
    padding: 12rem 0 6rem;
  }
}

/* 
--- FOOTER ---
*/

.o-footer {
  padding: 9rem 0 6rem;
}

@media screen and (min-width: 1366px) {
  .o-footer {
    padding: 9rem 0 12rem;
  }
}

.o-menu {
  display: grid;
  row-gap: 3rem
}

.o-footer {
  display: grid;
  row-gap: 3rem
}

.o-footer__informations {
  display: grid;
  gap: 3rem 5.55556%
}

.o-footer__informations__logo {
  order: 1;
  margin-top: 3rem
}

.o-footer__informations__logo .a-svg {
  width: 100%;
  max-width: 4rem;
  height: 4.6rem
}

.a-svg.-logo-simple {
  color: #FFF;
}

@media only screen and (min-width: 641px) {
  .o-footer__informations {
    grid-template-columns:27.77778% 27.77778% 33.33333%;
  }

  .o-footer__informations__logo {
    grid-column: 1/4;
    grid-row: 1/2;
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
}

.o-footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  align-items: end;
  column-gap: 5.55556%;
}

.o-footer__bottom__nav__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.o-footer__bottom__copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  line-height: 1;
}

@media only screen and (min-width: 641px) {
  .o-footer__bottom__nav__links {
    flex-direction:row;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 1025px) {
  .o-footer__bottom {
    grid-template-columns: 1fr 2fr;
    row-gap: 9rem;
  }

  .o-footer__bottom__copyright {
    justify-content: flex-end;
    text-align: right;
  }
}

@media only screen and (min-width: 1025px) {
  .o-footer {
    row-gap: 6rem;
  }
}

@media only screen and (min-width: 1025px) {
  .o-menu {
    row-gap: 12rem;
  }
}

/* 
--- FORM ---
*/

.o-form .modal-header {
  padding: 3rem;
}
.o-form .modal-title {
  color: #1E1E1E;
}

.o-form .modal-body {
  padding: 2rem 3rem;
}

.o-form .modal-body p {
  line-height: 1.6;
}

.o-form.-loading .o-form__submit {
  display: none;
}