* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: degular, sans-serif;
  font-weight: 400;
  font-style: normal;
}


 .bolt_text {
    font-weight: 900;
    text-shadow: -1px 0px black;
  
  }


  .text_bolt_3 {
    
  
    font-weight: bold;
}
  
  
  .black_font {
    color: black;
  }


html {
  overflow-y: scroll;
  /* scroll-snap-type: y mandatory; */
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 100vw;
}

nav {
  position: fixed;
  padding: 5px;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;

  .nav__logo {
    position: absolute;
    top: 15px;
    left: 5px;
    width: 100px;
    height: 75px;

      img {
        width: 70%;
      
        /* height: 100%; */
        cursor: pointer;
      }
    
    }

    .nav__menu {
      position: fixed;
      top: 15px;
      right: 15px;
      width: 30px;
  
      svg {
        fill: white;
        cursor: pointer;
      }
    }
}

.active {
    transition: 0.25s transform;
    transform: translateX(calc(100vw - 300px)) !important;
}

.collapsed {
  transition: 0.25s transform; 
  transform: translateX(-300px); 
}

@keyframes border_anim {
  0% {
    width: 0%;
  }

  100% {
    width: 50%;
  }
}

.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 {
  scroll-snap-align: start;
  height: 100vh;
}

.slider {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  transition: 0s ease-in;
}

.slider-img {
  img {
    width: 100%;
    object-fit: cover;
    
  }
}




.section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4cqb;
  line-height: 4.5vh;
  color: #FFF;
  scroll-snap-align: start;
  height: 100vh;


  .section-text {
   
    
    width: 80%;
    cursor: pointer;


      .darkText {
        color: black;
        font-size: 5vw;
        
      }

      :nth-child(2) {
          display: block;
          margin: 15px 0;
        }

      &:hover .arrow {
        animation: arrowAnimation 1s ease-in-out;
      }
  }

}

.section-text_fourth {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 100%;
  font-size: 4vh;
  line-height: 4.5vh;
  transform: translateY(-50%);
  padding: 0 7.5%;

    div {
      display: block;
    }
}

.second {
  background: linear-gradient(270deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);
}

.third {
  background: url("./photo/973c3d1507483f408314bc126db6e720.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.arrow {
  display: inline-block;
  width: 6vh;
  fill: rgb(146, 241, 146);
  cursor: pointer;  
}


@keyframes arrowAnimation {
    0% {
    transform: translate3d(0, 0, 0) scaleX(1);
    }
  
    25% {
      transform: translate3d(10%, 0, 0) scaleX(1.5);
    }
  
    50% {
    transform:translate3d(5%, 0, 0) scaleX(1.2);
    }

    75% {
      transform: translate3d(10%, 0, 0) scaleX(1.5);
    }
  
  
    100% {
    transform: translate3d(0, 0, 0) scaleX(1);
    }
}

/* carousel */

.carousel-first {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-inner-first {
  display: flex;
  height: 100%;
  width: 100%;

  img {
    /* display: block; */
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }
}

.carousel-first-item {
  position: relative;

    .carousel-first-title {
      position: absolute;
      font-size: 21px;
      
      bottom: 5%;
      left: 5%;
        a {
          color: black;
          text-decoration: none;
          background-color: #55FF9E;
          padding: 7px 7px 5px 7px;
        }

        a:hover {
          background: transparent;
          color: white;
          border-bottom: 1px solid #55FF9E;
        }
    }
}

@keyframes progressbar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.navigation-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

    .dot {
      height: 0.5vw;
      width: 20%;
      margin: 0 2px;
      display: inline-block;
      border: none;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.3);
        /* background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3)50%); */
      opacity: 1;
      cursor: pointer;
      
      
    }
    .active-dot {
      background: linear-gradient(to right, rgba(255, 255, 255, 0.3)50%, rgba(255, 255, 255, 0.6) 50%);
      animation: progressbar 3s ease infinite;
      background-size: 200% 100%;
      background-position: right;


    }
}

/* section 4 */

.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;
}

@keyframes scrollLeftAnimation {
  to {
    left: -100%;
  }
}


.fifth {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #55FF9E;
  position: relative;
  width: 100%;
  padding: 10px 0;
  height: 5%;
  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 / 6 * (6 - 1) * -1) !important;
}

.second-banner {
  animation-delay: calc(25s / 6 * (6 - 2) * -1) !important;
}

.third-banner {
  animation-delay: calc(25s / 6 * (6 - 3) * -1) !important;
}

.fourth-banner {
  animation-delay: calc(25s / 6 * (6 - 4) * -1) !important;
}

.fifth-banner {
  animation-delay: calc(25s / 6 * (6 - 5) * -1) !important;
}

.sixth-banner {
  animation-delay: calc(25s / 6 * (6 - 6) * -1) !important;
}

.logos-wrapper {
  padding:  0 7.5%;
  height: 70%;

  .logos__title {
      color: black;
      font-size: 16px;
      line-height: 24px;
      width: 100%;
    }
}

.logos {
  display: flex;
  flex-direction: column;

    .logos__row {
      display: flex;
      align-content: center;
      justify-content: center;

        img {
            width: 30%;
          }
    }
  
}



.sixth {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 175vh;

  background: linear-gradient(120deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);

  .section-wrapper {
      padding: 13vh 7.5% 0 7.5%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 15px;
    }

    .sixth__title {
      font-size: 4vh;
      line-height: 4.5vh;
      font-weight: unset;
      color: white;
    }

    .sixth__copy {
      font-size: 16px;
      line-height: 24px;
    }

    .contact__column {
      width: 100%;

      .column__title {
        font-size: 15px;
        line-height: 18px;
        font-weight: 700;
        padding-bottom: 15px;
      }

      p {
        font-size: 15px;
        line-height: 18px;
          a {
            text-decoration: none;
            color: white;
          }
          a:hover {
            border-bottom: 2px solid white;
          }
      }
    }

    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%;
          gap: 10px;
            .terms-privacy {
              a {
                color: #dbdbdb;
                opacity: 0.5;
              } 
              a:hover {
                opacity: 1;
                border-bottom: 1px solid;
              }
            }
        }

        .footer__right {
          display: flex;
          gap: 5px;
            a {
              color: white;
            }
            a:hover {
              text-decoration: underline;
            }
        }
      /* height: 70px;
      width: 100vh; */
    }
} 

/* 
@media (max-width: 1799px) {
  .banner {
    height: 6%;
    .banner__element {
      font-size: 32px;
      width: 200px;
      left: max(calc(300px * 6), 100%);
      line-height: 50px;

        .arrow-down {
            width: 3%;
          }
    }
  }

} */


@media (min-width: 970px) {
  .section-text {
    width: 95;
    font-size: 6vw;
    line-height: 6.5vw;

      :nth-child(2) {
        display: inline !important; 
      }
  }

  .logos-wrapper {
    .logos__title {
        width: 60%;
        font-size: 24px;
        line-height: 32px;
      }
  }
 
  .sixth {
    .sixth__title {
      font-size: 6vw;
      line-height: 6.5vw;
      display: inline-block;
      width: 60%;
      
    }

    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;
        }
      }
    }

    .sixth__copy {
      width: 75%;
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 40px;
    }

    .columns-wrapper {
      width: 100%;
      display: flex;
      align-items: start;
      justify-content: start;


        :nth-child(1) {
          width: 50%;
          p {
            width: 100%;
          }
        }

        :nth-child(2), :nth-child(3)  {
          width: 30%;
        }
    }

    .contact__column {
      .column__title {
        font-size: 1.5vw;
          line-height: 1.8vw;
      }
      p {
        font-size: 1.4vw;
        line-height: 1.8vw;
      }

    }
  }
 
  .section-text_fourth {
      width: 80%;
      font-size: 6vw;
      line-height: 6.5vw;
        div {
          display: inline;
        }
  }

  .banner {
    height: 7%;
      .banner__element {
      
          font-size: 60px;
          line-height: 70px;
          width: 100%;
      }
 
  }

} 