@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body, html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-X: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}


.brand {
  position: absolute;
  top: 2.6vh;
  left: 5vw;
  width: 15vw;
  z-index: 1000;
}

/************************
*         HEADER
************************/
.header {
  max-width: 100vw;
  width: 100vw;
  position: relative;
  background-size: cover;
  background-position: center center;
  font-size: 1rem;
  padding: 15vh 0;
  background-image: url("../assets/img/7845.png");
}

.header::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100;
  z-index: 10;
  background-color: rgba(210, 151, 35, 0.6);
  content: '';
}

.header__head {
  position: relative;
  z-index: 50;
  color: #FFF;
  width: 50vw;
  margin: 0 auto;
  text-align: center;
}

.header__title {
  font-size: 3.3em;
  font-weight: 500;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 200ms;
  opacity: 0;
}

.header__subtitle {
  font-size: 1.6em;
  line-height: 1.8em;
  font-weight: 500;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 400ms;
  opacity: 0;
}

.header__nav {
  font-size: 1.2em;
  font-weight: 300;
  animation: fade 1500ms forwards;
  animation-delay: 600ms;
  opacity: 0;
}

.header__nav a {
  color: #FFF;
  text-decoration: none;
  display: inline-block;
}

.header__nav a:not(:last-child) {
  margin-right: 0.5em;
}

.header__nav a:hover {
  color: #111;
}

.header__nav span {
  margin-right: 0.5em;
}

@keyframes fade {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/************************
*       project-progress
************************/
.project-progress {
  max-width: 100vw;
  width: 100vw;
  background-color: #F6F6F6;
  padding-top: 10vh;
  padding-bottom: 30vh;
  position: relative;
  z-index: 100;
}

.project-progress__title {
  color: #D29723;
  font-size: 3em;
  font-weight: 500;
  text-align: center;
}

.project-progress__steps {
  width: 50vw;
  height: 50vh;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
}

.project-progress__project {
  width: 20vw;
  height: 30vh;
  background-color: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  transition: 800ms ease;
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-progress__project__title {
  font-size: 2.33em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6em;
  transition: 800ms ease;
}

.project-progress__project__list {
  width: 0;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  transition: 800ms ease;
}

.project-progress__project__item {
  display: flex;
  align-items: center;
  font-size: 1.33em;
  font-weight: 300;
  line-height: 1.5em;
}

.project-progress__project__item:not(:last-child) {
  margin-bottom: 2vh;
}

.project-progress__project__item span {
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 100%;
  background-color: #D29723;
  margin-right: 1vw;
}

.project-progress__project--highlighted {
  width: 27vw;
  height: 100%;
}

.project-progress__project--highlighted .project-progress__project__title {
  color: #D29723;
  font-size: 2.6em;
}

.project-progress__project--highlighted .project-progress__project__list {
  width: 80%;
}

/************************
*       EXPERTISE
************************/
.expertise {
  max-width: 100vw;
  width: 100vw;
  background-color: #000;
  padding: 30.65vh 14.48vw;
  padding-bottom: 4vh;
  color: #FFF;
  position: relative;
  z-index: 0;
}

.expertise__presentation {
  font-size: 1.47em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 4vh;
}

.expertise__block {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.expertise__item {
  width: 35.10vw;
  height: auto;
  display: none;
}

.expertise__item--selected {
  display: block;
}

.expertise__item__title {
  color: #D29723;
  font-size: 2.33em;
  font-weight: 500;
  margin-bottom: 2vh;
  line-height: 1.4em;
}

.expertise__item__description {
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 4vh;
  line-height: 1.5em;
  min-height: 15vh;
}

.expertise__item__details {
  width: 100%;
  height: auto;
  min-height: 30vh;
}

.expertise__item__detail {
  width: 100%;
  background-color: #000;
  border: 1px solid #FFF;
  padding: 1vh 1vw;
  border-radius: 0.2em;
}

.expertise__item__detail--open {
  background-color: #D29723;
  border: 1px solid #D29723;
}

.expertise__item__detail--open .expertise__item__detail__button {
  background-color: #FFF;
}

.expertise__item__detail--open [data-sign="plus"] {
  display: none;
}

.expertise__item__detail--open [data-sign="minus"] {
  display: flex !important;
}

.expertise__item__detail--open .expertise__item__detail__body {
  display: block;
}

.expertise__item__detail__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.expertise__item .expertise__item__detail:not(:last-child) {
  margin-bottom: 1vh;
}

.expertise__item__detail__name {
  font-size: 1.33em;
  font-weight: 500;
  width: 90%;
}

.expertise__item__detail__button {
  width: 1.25vw;
  height: 1.25vw;
  background-color: #D29723;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.expertise__item__detail__button img {
  width: 60%;
}

[data-sign="minus"] {
  display: none;
}

[data-sign="minus"] img {
  margin-top: 1vh;
}

.expertise__item__detail__body {
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 300;
  width: 90%;
  margin-top: 1.5vh;
  display: none;
}

.expertise__selector {
  width: auto;
  height: auto;
  padding-top: 5vh;
}

.expertise__selector__item {
  display: flex;
  align-items: center;
}

.expertise__selector__item:not(:last-child) {
  margin-bottom: 3vh;
}

.expertise__selector__item input[type=radio] {
  display: none;
}
  
.expertise__selector__item label {
  font-size: 1.66em;
  font-weight: 400;
  cursor: pointer;
  width: 20vw;
  line-height: 1.2em;
}

.expertise__selector__radio {
  width: 1.2vw;
  height: 1.2vw;
  border-radius: 100%;
  border: 1px solid #FFF;
  cursor: pointer;
  margin-right: 2.5vw;
  position: relative;
}

.expertise__selector__radio--checked {
  transform: scale(1.5);
  box-shadow: 0 0 35px 20px rgba(210, 151, 35, 0.3);
}

.expertise__selector__radio--checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 100%;
  background-color: #D29723;
  width: 70%;
  height: 70%;
  content: '';
}

.expertise__selector__radio--checked ~ label {
  color: #D29723;
  font-size: 2.33em;
  font-weight: 500;
}

/************************************
*         MAKINGS
************************************/

.makings {
  font-size: 1rem;
  width: 100vw;
  max-width: 100vw;
  background-color: #000;
  color: #FFF;
  position: relative;
}

.makings__title {
  color: #D29723;
  font-size: 2.33em;
  font-weight: 500;
  width: 71vw;
  margin: 0 auto;
  line-height: 1.4em;
}

.makings__description {
  font-size: 1em;
  line-height: 1.5em;
}

.makings__carousel {
  width: 71vw;
  height: 31vh;
  margin: 0 auto;
  transform: translateY(5vh);
  /* border: 1px solid #D29723; */
}

.makings__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2.5vh 0;
  overflow: hidden;
}

.makings__inner {
  width: 100%;
  height: 100%;
}

.makings__slide {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.34vw;
}

.makings__card {
  width: 100%;
  height: 100%;
  perspective: 70em;
}

.makings__card:hover .makings__card__container {
  transform: rotateY(-0.5turn);
}

.makings__card__container {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1000ms ease;
  transform-style: preserve-3d;
}

.makings__card__front,
.makings__card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.makings__card__back {
  transform: rotateY(.5turn);
}

.makings__card__content {
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.makings__card__content::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background: linear-gradient(360deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0));
  z-index: 10;
}

.makings__card__body {
  width: 100%;
  height: 100%;
  z-index: 20;
  position: relative;
  padding: 2vh 1.5vw;
  display: flex;
}

.makings__card__front .makings__card__body {
  flex-direction: column;
  justify-content: flex-end;
}

.makings__card__back .makings__card__body {
  align-items: center;
  justify-content: center;
}

.makings__card__title,
.makings__card__date,
.makings__card__paragraph,
.makings__card__button {
  transform: translateZ(3em);
}

.makings__card__title,
.makings__card__date,
.makings__card__paragraph {
  font-weight: 300;
  width: 70%;
  line-height: 1.5em;
}

.makings__card__title {
  font-size: 1.2em;
  margin-bottom: 0.5vh;
}

.makings__card__date {
  font-size: 0.53em;
  margin-bottom: 0.5vh;
}

.makings__card__paragraph {
  font-size: 0.73em;
}

.makings__card__button {
  background-color: #D29723;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.makings__card__button--mobile {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: none !important;
}

.makings__card__button img {
  width: 60%;
}

.makings__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1vw;
  cursor: pointer;
}

.makings__arrow--left {
  left: -5%;
}

.makings__arrow--right {
  right: -5%;
}

.footer {
  max-width: 100vw;
  width: 100vw;
  height: auto;
  background-color: #fff;
  padding-top: 10vh;
  padding-left: 14vw;
  font-size: 1rem;
  display: flex;
}

.footer__cover {
  height: auto;
  width: 25vw;
  background-image: url('../assets/img/9925.png');
  background-position: 10% center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__content {
  width: 35vw;
  padding-top: 20vh;
  padding-bottom: 25vh;
}

.footer__paragraph {
  font-weight: 500;
  font-size: 1.9em;
  line-height: 1.5em;
  margin-bottom: 5vh;
}

.footer__link {
  font-size: 1.6em;
  color: #D29723;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  background-color: #FFF;
  border-radius: 2em;
  border: 1px solid #D29723;
  padding: 1vh 2vw;
  transition: 500ms ease;
}

.footer__link:hover {
  background-color: #D29723;
  color: #FFF;
}

/**************************
*       MODALS
**************************/
.modal__cover {
  margin: 0 auto;
  width: 15vw;
  height: 15vw;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3vh;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
}

.modal__cover img {
  width: 100%;
}

.modal__paragraph {
  line-height: 1.5em;
}

.modal__list {
  margin-left: 5vw;
}


@media only screen and (max-width: 1366px) {
  .header {
    font-size: 0.71rem;
  }
  .project-progress {
    font-size: 0.71rem;
  }
  .expertise {
    font-size: 0.71rem;
  }
  .makings {
    font-size: 0.71rem;
  }
  .footer {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .header {
    font-size: 0.66rem;
  }
  .project-progress {
    font-size: 0.66rem;
  }
  .expertise {
    font-size: 0.66rem;
  }
  .makings {
    font-size: 0.66rem;
  }
  .footer {
    font-size: 0.66rem;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    font-size: 0.53rem;
  }
  .header__title,
  .header__subtitle,
  .header__nav {
    animation: none;
    opacity: 1;
  }

  .project-progress {
    font-size: 0.53rem;
  }
  .project-progress__steps {
    width: 50vw;
    height: 40vh;
  }
  .project-progress__project {
    width: 20vw;
    height: 25vh;
    padding: 5vh 0;
  }
  .project-progress__project__item:not(:last-child) {
    margin-bottom: .5vh;
  }
  .project-progress__project--highlighted {
    width: 27vw;
    height: 100%;
  }

  .expertise {
    font-size: 0.53rem;
  }

  .makings {
    font-size: .53rem;
  }
  .makings__card:hover .makings__card__container {
    transform: rotateY(0);
  }
  .makings__card__back {
    display: none;
  }
  .makings__card__button--mobile {
    display: flex !important;
  }
  .makings__card__title {
    font-size: 1.4em;
  }

  .footer {
    font-size: 0.53rem;
  }
  .footer__cover {
    width: 25vw;
  }
}

@media only screen and (max-width: 768px) {
  .brand {
    left: 10vw;
    width: 20vw;
  }

  .header {
    font-size: 1rem;
  }
  .header__head {
    width: 70vw;
  }

  .project-progress {
    font-size: 1rem;
  }
  .project-progress__steps {
    width: 80vw;
    height: 35vh;
  }
  .project-progress__project {
    width: 37vw;
    height: 100%;
    justify-content: center;
    transition: none;
  }

  .project-progress__project__title {
    width: 70%;
    transition: none;
  }

  .project-progress__project__list {
    height: 0;
    white-space: normal;
    transition: none;
  }  
  .project-progress__project--highlighted {
    width: 37vw;
    justify-content: space-between;
  }
  .project-progress__project--highlighted .project-progress__project__title {
    font-size: 2em;
    width: 100%;
  }  
  .project-progress__project--highlighted .project-progress__project__list {
    width: 80%;
    height: auto;
  }

  .expertise {
    font-size: 1rem;
    padding: 0 10vw;
    padding-top: 30vh;
    padding-bottom: 10vh;
  }
  .expertise__presentation {
    font-size: 1.3em;
    margin-bottom: 6vh;
  }
  .expertise__block {
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
  .expertise__selector {
    width: 100%;
    height: auto;
    padding-top: 0;
    display: flex;
    overflow-x: auto;
    margin-bottom: 5vh;
  }
  .expertise__selector__item {
    text-align: center;
    padding: 0 1vw;
    font-size: .9em;
  }
  .expertise__selector__item:not(:last-child) {
    border-right: 1px solid #FFF;
  }
  .expertise__selector__radio {
    display: none;
  }
  .expertise__selector__item label {
    font-size: 1.4em;
    line-height: 1.5em;
    width: 25vw;
  }

  .expertise__item {
    width: 100%;
  }
  .expertise__item__title {
    font-size: 2em;
    margin-bottom: 4vh;
  }
  .expertise__item__description {
    font-size: 1.2em;
    height: auto;
    min-height: 0;
  }
  .expertise__item__details {
    min-height: 0;
  }
  .expertise__item__detail {
    padding: 1.5vh 2vw;
  }
  .expertise__item__detail__name {
    font-size: 1.1em;
  }
  .expertise__item__detail__button {
    width: 3vw;
    height: 3vw;
  }

  .makings {
    font-size: 1rem;
  }
  .makings__title {
    font-size: 2em;
    width: 80vw;
  }
  .makings__carousel {
    width: 80vw;
  }
  .makings__card__title,
  .makings__card__date,
  .makings__card__paragraph {
    width: 90%;
  }
  .makings__card__title {
    font-size: 1.2em;
  }
  .makings__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    cursor: pointer;
  }
  .makings__arrow--left {
    left: -7%;
  }
  .makings__arrow--right {
    right: -7%;
  }
  .makings__card__button--mobile {
    display: flex !important;
    width: 5vw;
    height: 5vw;
  }

  .footer {
    font-size: 1rem;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 5vh;
    justify-content: space-between;
  }
  .footer__content {
    width: 40vw;
    padding-top: 15vh;
    padding-bottom: 20vh;
  }
  .footer__cover {
    width: 40vw;
  }
  .footer__paragraph {
    font-size: 1.6em;
  }
  .footer__link {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.53rem;
  }
  .project-progress {
    font-size: 0.53rem;
  }
  .project-progress__project {
    padding: 7vh 0;
  }
  .expertise {
    font-size: 0.53rem;
  }
  .makings {
    font-size: .53rem;
  }
  .makings__card__title {
    font-size: 1.3em;
  }
  .footer {
    font-size: 0.53rem;
  }
  .footer__cover {
    display: none;
  }  
  .footer__content {
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    text-align: center;
  }
}