@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;
}

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

.header {
  max-width: 100vw;
  width: 100vw;
  font-size: 1rem;
  padding-top: 15vh;
  padding-bottom: 5vh;
  background-color: #000;
  position: relative;
}

.header__brand {
  position: absolute;
  top: 2.6vh;
  left: 5vw;
  width: 12.7em;
  z-index: 1000;
}

.header__head {
  color: #fff;
  width: 70vw;
  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.5em;
  font-weight: 500;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 400ms;
  opacity: 0;
}

.header__nav {
  font-size: 1.2em;
  margin-bottom: 6vh;
  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: #d29723;
}

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

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

/*********************
*     ACTIVITIES
*********************/
.activities {
  font-size: 1rem;
  height: 71.2vh;
  width: 100vw;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  overflow: visible;
}

.activities__arrow {
  width: 3.07vw;
  height: 4.72vh;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 500;
  transform: translateX(-50%);
}

.activities__item {
  height: 100%;
  position: relative;
  transition: 1000ms ease;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding-top: 22.6vh;
}

.activities__item--left,
.activities__item--right {
  width: 22.5vw;
  z-index: 100;
}

.activities__item--left {
  order: 1;
}

.activities__item--right {
  order: 3;
}

.activities__item--middle {
  width: 22.5vw;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  z-index: 200;
  order: 2;
  background-position: 30% center;
}

.activities__item--middle::before,
.activities__item--middle::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #d29723;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 300;
  transition: 1000ms ease;
}

.activities__item--middle::before {
  clip-path: polygon(10% 0, calc(10% + 0.5vw) 0, 0.5vw 100%, 0 100%);
  -webkit-clip-path: polygon(10% 0, calc(10% + 0.5vw) 0, 0.5vw 100%, 0 100%);
}

.activities__item--middle::after {
  clip-path: polygon(
    calc(100% - 0.5vw) 0,
    100% 0,
    90% 100%,
    calc(90% - 0.5vw) 100%
  );
  -webkit-clip-path: polygon(
    calc(100% - 0.5vw) 0,
    100% 0,
    90% 100%,
    calc(90% - 0.5vw) 100%
  );
}

.activities__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: rgba(210, 151, 35, 0.7);
}

.activities__body {
  width: 19.7vw;
  position: relative;
  z-index: 500;
  transition: 1000ms ease;
}

.activities__icon {
  width: 6.51vw;
  height: 6.51vw;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 6vh;
}

.activities__icon img {
  width: 80%;
}

.activities__name {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.46em;
  font-weight: 700;
  transition: font-size 1000ms ease;
}

/* HIGHLIGHTED PART */

.activities__item--highlighted {
  width: 65vw;
}

.activities__item--left--highlighted,
.activities__item--right--highlighted {
  z-index: 150;
  background-position: center center;
}

.activities__item--left--highlighted ~ .activities__item--middle,
.activities__item--right--highlighted ~ .activities__item--middle {
  margin: 0 -20vw;
}

.activities__item--middle--highlighted {
  clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
  -webkit-clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
  margin: 0 -20vw;
}

.activities__item--middle--highlighted::before {
  clip-path: polygon(3.5% 0, calc(3.5% + 0.5vw) 0, 0.5vw 100%, 0 100%);
  -webkit-clip-path: polygon(3.5% 0, calc(3.5% + 0.5vw) 0, 0.5vw 100%, 0 100%);
}

.activities__item--middle--highlighted::after {
  clip-path: polygon(
    calc(100% - 0.5vw) 0,
    100% 0,
    96.5% 100%,
    calc(96.5% - 0.5vw) 100%
  );
  -webkit-clip-path: polygon(
    calc(100% - 0.5vw) 0,
    100% 0,
    96.5% 100%,
    calc(96.5% - 0.5vw) 100%
  );
}

.activities__item--highlighted .activities__overlay {
  background: none;
}

.activities__item--highlighted .activities__body {
  width: 100%;
}

.activities__item--highlighted .activities__name {
  font-size: 2.06em;
}

/*********************
*     ACTIVITY
*********************/
.activity {
  max-width: 100vw;
  width: 100vw;
  font-size: 1rem;
  display: none;
}

.activity--selected {
  display: block;
}

.fields {
  max-width: 100vw;
  width: 100vw;
  color: #fff;
  padding: 20vh 0;
  background-color: #000;
}
.fields__title {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 2vh;
}

.fields__subtitle {
  text-align: center;
  font-size: 1.66em;
  font-weight: 500;
  width: 50vw;
  margin: 0 auto;
  margin-bottom: 7vh;
}

.fields__row {
  width: 60vw;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18vw 18vw 18vw;
  row-gap: 5vh;
  justify-content: space-between;
}

#telecom .fields__row {
  width: 39vw;
  grid-template-columns: 18vw 18vw;
}

.fields__row--telecom {
  grid-template-columns: 18vw 18vw;
  column-gap: 2.5vw;
  justify-content: center;
}

.fields__row:not(:last-child) {
  margin-bottom: 5vh;
}

.fields__item {
  width: 100%;
  height: 36.57vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 2vh;
  padding-bottom: 5vh;
  position: relative;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}

.fields__item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: #000;
  border: 1px solid #999;
}

.fields__row .fields__item:not(:last-child) {
  margin-right: 2.1vw;
}

.fields__item__icon {
  width: 6vw;
  height: 6vw;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 50;
}

.fields__item__icon--white {
  width: 6vw;
  height: 6vw;
  background-position: center center;
  background-size: cover;
  display: none;
  position: relative;
  z-index: 50;
}

.fields__item__name {
  width: 70%;
  font-size: 1.66em;
  height: 6vh;
  text-align: center;
  position: relative;
  z-index: 50;
  line-height: 1.2em;
}

.fields__item__button {
  width: 3vw;
  height: 3vw;
  background-color: #d29723;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 50;
}

.fields__item__button img {
  width: 50%;
}

.fields__item__text {
  display: none;
  height: 10vh;
  overflow-y: auto;
  width: 90%;
  font-size: 1em;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 50;
  line-height: 1.5em;
}

.fields__item--open::after {
  background: rgba(210, 151, 35, 0.5);
  border: none;
}

.fields__item--open .fields__item__icon {
  display: none;
}

.fields__item--open .fields__item__icon--white {
  display: block;
}

.fields__item--open .fields__item__button {
  display: none;
}

.fields__item--open .fields__item__text {
  display: block;
}

.description {
  width: 100%;
  max-width: 100%;
  padding: 15vh 10vw;
  padding-bottom: 25vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.description__body {
  color: #777777;
  width: 27vw;
  height: auto;
}

.description__title {
  font-size: 2.33em;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 5vh;
  transform: translateX(-100%);
  opacity: 0;
}

.description__text {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4em;
  transform: translateX(-100%);
  opacity: 0;
}

.description__cover {
  width: 35vw;
  height: 49vh;
  overflow: hidden;
}

.description__cover:hover img {
  transform: scale(1.1);
}

.description__cover img {
  width: 100%;
  height: 100%;
  transition: transform 1000ms ease;
}

.footer {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-top: 20vh;
  padding-left: 15vw;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
}

.footer::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.9;
}

.footer__block {
  background-color: #d29723;
  position: relative;
  z-index: 50;
  padding-left: 3vw;
  padding-top: 7vh;
  padding-right: 6vw;
  padding-bottom: 5vh;
}

.footer__quotes {
  position: relative;
  width: 6vw;
  height: 6vw;
  background-image: url('../assets/svg/quote.svg');
  background-position: center center;
  background-size: cover;
  margin-bottom: 4vh;
}

.footer__quotes:hover {
  animation: bounceUp 1000ms;
}

@keyframes bounceUp {
  0%,
  20%,
  53%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -2em, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -1em, 0);
  }
  90% {
    transform: translate3d(0, -0.2em, 0);
  }
}

.footer__quotes::before {
  position: absolute;
  width: 10vw;
  height: 10vw;
  background-image: url('../assets/svg/quote.svg');
  background-position: center center;
  background-size: cover;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0.2;
}

.footer__text {
  width: 25vw;
  color: #fff;
  font-size: 1.6em;
  line-height: 1.5em;
  font-weight: 300;
  letter-spacing: 0.1em;
  transform: translateX(-30%);
  opacity: 0;
}

.footer__text strong {
  font-weight: 500;
}

.footer__guy {
  height: 140%;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 500;
}

.fade-in {
  animation: fadeIn 1500ms ease forwards;
}

@keyframes fadeIn {
  from {
    transform: translateX(-30%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 770px) {
  .footer__guy {
    display: none;
  }
}

@media only screen and (max-width: 1366px) {
  .header {
    font-size: 0.71rem;
  }
  .activities {
    font-size: 0.71rem;
  }
  .activity {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .header {
    font-size: 0.66rem;
  }
  .activities {
    font-size: 0.66rem;
  }
  .activity {
    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;
  }
  .activities {
    font-size: 0.53rem;
  }
  .activity {
    font-size: 0.53rem;
  }
  .fields__title {
    font-size: 2.3em;
  }
  .fields__subtitle {
    font-size: 1.9em;
  }
  .fields__row {
    width: 80vw;
    grid-template-columns: 23vw 23vw 23vw;
  }
  .fields__row--telecom {
    grid-template-columns: 23vw 23vw;
    column-gap: 5vw;
    justify-content: center;
  }
  .fields__item__icon {
    width: 8vw;
    height: 8vw;
  }
  .fields__item__name {
    font-size: 2em;
  }
  .fields__item__text {
    font-size: 1.2em;
  }
  .description {
    padding-bottom: 15vh;
  }
  .description__body {
    width: 30vw;
  }
  .description__text {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 768px) {
  .brand {
    top: 2.6vh;
    left: 10vw;
    width: 20vw;
  }
  .header {
    font-size: 1rem;
  }
  .header__head {
    width: 75vw;
  }
  .activities {
    font-size: 1rem;
    height: 60vh;
  }
  .activities__arrow {
    width: 7vw;
    height: 5vh;
  }
  .activities__icon {
    width: 10vw;
    height: 10vw;
  }
  .activities__name {
    opacity: 0;
  }
  .activities__item--highlighted .activities__name {
    opacity: 1;
  }
  .fields__subtitle {
    width: 80vw;
    font-size: 1.6em;
    line-height: 1.5em;
  }
  .fields__row,
  .fields__row--telecom {
    width: 45vw;
    grid-template-columns: 45vw;
    justify-content: center;
  }
  .fields__item {
    height: 35vh;
  }
  .fields__item__button {
    width: 5vw;
    height: 5vw;
  }
  .fields__item__icon {
    width: 10vw;
    height: 10vw;
  }
  .description {
    flex-direction: column;
  }
  .description__title,
  .description__text {
    opacity: 1;
    transform: translateX(0);
  }
  .description {
    padding: 10vh 15vw;
  }
  .description__body {
    width: 100%;
    margin-bottom: 5vh;
  }
  .description__cover {
    width: 100%;
    height: 50vh;
  }
  .footer {
    padding-top: 10vh;
  }
  .footer__block {
    width: 70vw;
    height: auto;
    padding: 5vh 5vw;
  }
  .footer__text {
    opacity: 1;
    transform: translateX(0);
    font-size: 1.3em;
    width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.54rem;
  }
  .activities {
    font-size: 0.54rem;
    height: 50vh;
  }
  .activity {
    font-size: 0.54rem;
  }
  .fields__row,
  .fields__row--telecom {
    width: 55vw;
    grid-template-columns: 55vw;
  }
  .fields__item__button {
    width: 7vw;
    height: 7vw;
  }
  .fields__item__icon {
    width: 15vw;
    height: 15vw;
  }
  .description__cover {
    height: 35vh;
  }
}
