* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: degular, sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav {
  position: fixed;
  padding: 5px;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;

  .nav__logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 75px;

    img {
      width: 70%;
      cursor: pointer;
    }

  }

  .bolt_text {
    font-weight: 900;
  
  }
  
  .black_font {
    color: black;
  }
  


  .nav__menu {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;

    svg {
      fill: white;
      cursor: pointer;
    }
  }
}


.ollll {
 

}


.active {
  transition: 0.25s transform;
  transform: translateX(calc(100vw - 300px)) !important;
}

.collapsed {
  transition: 0.25s transform;
  transform: translateX(-300px);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  transition: 0.25s transform;
  z-index: 10000;
  top: 0;

  transform: translateX(100vw);
  width: 300px;
  box-sizing: border-box;
  height: 100vh;
  background: linear-gradient(120deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);

  ul {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    list-style: none;
    padding-bottom: 30px;

    li {
      font-size: 24px;
      color: white;
      font-weight: 400;
      cursor: pointer;
      position: relative;

      a {
        color: white;
        text-decoration: none;
      }

      &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: white;
        transition: all .5s;
      }

      &:hover::after {
        width: 100%;
      }
    }

    .close-menu {
      align-self: flex-end;
      fill: white;
      width: 10%;
      cursor: pointer;
    }
  }

  .socials-menu {
    position: relative;

    li {
      position: relative;

      &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: white;
        transition: all .5s;
      }

      &:hover::after {
        width: 100%;
      }
    }
  }

  .socials-menu::before {
    content: '';
    position: absolute;
    width: 80%;
    top: -4vh;
    left: 10%;
    height: 20px;
    border-top: solid 2px white;
  }
}

.sections-wrapper {
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: 0.25s transform;

}

.section {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 4vh;
  line-height: 4.5vh;
  color: #FFF;
  scroll-snap-align: start;
  height: 100vh;


  .section-text {
    width: 80%;
    cursor: pointer;


    .darkText {
      color: black;
    }

    :nth-child(2) {
      display: block;
      margin: 15px 0;
    }

    &:hover .arrow {
      animation: arrowAnimation 1s ease-in-out;
    }
  }

}

.culture-section__text {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 100%;
  font-size: 4vh;
  line-height: 4.5vh;
  transform: translateY(-50%);
  padding: 0 7.5%;
  gap: 20px;

    .culture-section__text-copy {
      font-size: 16px;
      line-height: 24px;
    }
}


.carousel {
  height: 100%;
  width: 100%;
}

.carousel-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;

  ::after {
    content: '';
    display: block;
    clear: both;
  }
}

.carousel__fade .carousel-item__pos-next {
  left: 0;
  opacity: 0;
}

.carousel__fade .carousel-item__next {
  transform: none;
  transition: opacity .5s ease-in-out;
  opacity: 1;
}

.carousel__fade .carousel-item__active.carousel-item__next {
  opacity: 0;
}


.carousel-item {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  margin-right: -100%;
  display: none;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.carousel-item__pos-next {
  left: 100%;
}

.carousel-item__next {
  transform: translateX(-100%);
  transition: transform .5s ease-in-out;
}


.carousel-item__active {
  display: block;
}

.carousel-item__active,
.carousel-item-first__active,
.carousel-item__pos-next {
  display: block;
}

.culture-second-section {
  color: white;
  padding: 80px 7.5%;
  font-size: 4vh;
  line-height: 4.5vh;
  background: linear-gradient(270deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);

    span {
      color: #55FF9E;
    }
}

.culture-section-photos {
  width: 100%;
  padding: 80px 40px;

  .culture-section-photos__item {
    width: 100%;
    position: relative;

      .culture-section-photos__item__info {
        display: none;
      }
  }

    img {
      width: 100%;
      padding: 20px;
      height: 100%;
      object-fit: cover;
    }
}

.culture-ambition-section {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: white;
  padding: 80px 7.5%;
  gap: 20px;
  font-size: 4vh;
  line-height: 4.5vh;

    .culture-ambition-section__title {
      color: #55FF9E;
    }

    .culture-ambition-section__subcopy {
      font-size: 16px;
      line-height: 24px;
    }
}

.date-img {
  width: 100%;
}

@keyframes scrollLeftAnimation {
  to {
    left: -100%;
  }
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #55FF9E;
  position: relative;
  width: 100%;
  padding: 10px 0;
  height: 50px;
  overflow: hidden;
  text-wrap: nowrap;

  .banner__element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    width: 500px;
    top: 0;
    left: max(calc(320px * 6), 100%);
    margin-left: 10px;
    animation: scrollLeftAnimation 25s linear infinite;

    .arrow-down {
      width: 4.5%;
    }
  }
}

.first-banner {
  animation-delay: calc(25s / 5 * (5 - 1) * -1) !important;
}

.second-banner {
  animation-delay: calc(25s / 5 * (5 - 2) * -1) !important;
}

.third-banner {
  animation-delay: calc(25s / 5 * (5 - 3) * -1) !important;
}

.fourth-banner {
  animation-delay: calc(25s / 5 * (5 - 4) * -1) !important;
}

.fifth-banner {
  animation-delay: calc(25s / 5 * (5 - 5) * -1) !important;
}



footer {
  background-color: #FF3B00;
  box-shadow: inset 0px 25px 30px -13px rgba(0, 0, 0, 0.3);
  display: flex;
  width: 100%;
  font-size: 15px;
  line-height: 15px;
  padding: 10px;

  a {
    text-decoration: none;
  }

  .footer__left {
    width: 50%;

    .footer__email {
      color: white;
      font-weight: 500;
      padding-bottom: 5px;
    }

    .terms-privacy {
      a {
        color: #dbdbdb;
        opacity: 0.5;
      }

      a:hover {
        opacity: 1;
        border-bottom: 1px solid;
      }
    }
  }

  .footer__right {
    display: flex;
    gap: 10px;

    a {
      color: white;
    }

    a:hover {
      text-decoration: underline;
    }
  }

}

@media (min-width: 970px) {
  .culture-section__text {
    width: 80%;

    .culture-section__text-title {
      font-size: 6vw;
      line-height: 6.5vw;
    }

    .culture-section__text-copy {
      font-size: 24px;
      line-height: 32px;
    }
}

  .culture-second-section {
    .culture-second-section__copy {
      font-size: 6vw;
      line-height: 6.5vw;
    }
  }

  .banner {
    height: 100px;

    .banner__element {
      font-size: 50px;
      line-height: 70px;
    }
  }

  .culture-ambition-section {
    font-size: 6vw;
    line-height: 6.5vw;

      .culture-ambition-section__copy {
        width: 90%;
      }

      .culture-ambition-section__subcopy {
        width: 60%;
        font-size: 24px;
        line-height: 32px;
        margin: 5vw 0;
      }
  }

  .culture-section-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

      img {
        padding: 0;
      }

      .culture-section-photos__item__info {
            display: flex!important;
            flex-direction: column;
            align-items: start;
            justify-content: flex-end;
            color: white;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px;
            font-size: 24px;
            line-height: 32px;

              .culture-section-photos__info__title { 
                display: none;
              }
              .culture-section-photos__info__copy {
                font-weight: bold;
                display: none;
              }
      }
        .culture-section-photos__item__info:hover {
          .culture-section-photos__info__title {
              display: block;
            }
            .culture-section-photos__info__copy {
              display: block;
            }
            transition: all 0.5s ease;
            background-color: rgba(0, 0, 0, 0.4);
        }
  }

  footer {
    padding: 40px;
    justify-content: space-between;

    .footer__left {
      display: flex;
      gap: 30px;

      p {
        font-size: 24px;
      }

      .terms-privacy {
        a {
          font-size: 24px;
        }
      }
    }

    .footer__right {
      gap: 20px;

      a {
        font-size: 24px;
      }
    }
  }

}