* {
  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;

}

.black_font {
  color: black;
}

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;
    }

  }

  .nav__menu {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;

    svg {
      cursor: pointer;
      fill: white;
    }
  }
}

.active {
  transition: 0.25s transform;
  transform: translateX(calc(100vw - 300px)) !important;
}



.text_margin {
  display: block;
  padding-right: 20px;

}

.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;
  justify-content: center;
  position: relative;
  font-size: 4vh;
  line-height: 4.5vh;
  color: #FFF;
  scroll-snap-align: start;
  


  .section-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 140px 7.5% 80px 7.5%;
    width: 95%;

      .strategy-section__title {
        font-size: 60px;
        line-height: 55px;
        font-weight: bold;
      }

      .strategy-section__italic {
        font-style: italic;
        font-size: 25px;
        line-height: 30px;
        padding-bottom: 30px;
      }
  }
    .strategy-section__p {
      font-size: 30px;
      line-height: 35px;
    }

    .text-bold {
      font-weight: bold;
    }

    .green-arrow-down {
      color: rgb(146, 241, 146);
    }
}

.strategy-section {
  display: flex;
  flex-direction: column;
}

.strategy-black-section {
  padding: 80px 7.5%;
  background-color: black;
  display: flex;
  flex-direction: column;
  gap: 12vh;

    .strategy-black-section__item {
      display: flex;
      flex-direction: column;
      gap: 12vh;
      font-size: 32px;
      line-height: 40px;

        .strategy-black-section__item-title {
          color: #55FF9E;
        }
    }
}

@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 / 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;
}

.strategy-section__photos {
  display: flex;
  flex-direction: column;
  padding: 80px 40px;

    img {
      padding: 20px;
      width: 100%;
    }
}

.strategy-section__contacts {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 7.5% 80px 7.5%;

    .strategy-section__contacts__title {
      color: #FF3B00;
      font-size: 6vw;
      line-height: 6.5vw;
      font-weight: bold;
    }

    .strategy-section__contacts__link a{
      text-decoration: none;
      color: black;
      font-size: 16px;
      line-height: 24px;
      border-bottom: 1px solid #55FF9E; 
     
    }
}

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;
  /* margin-top: 20px; */

  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;
    }
  }

}

.bg {
  background: linear-gradient(270deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);
}

@media (min-width: 970px) {

.section {
  .section-text {
      padding: 140px 7.5% 80px 7.5%;

      .strategy-section__title {
        font-weight: 700;
        font-size: 6vw;
        line-height: 5vw;
      }
      .strategy-section__italic {
        font-size: 3vw;
        text-wrap: nowrap;
        line-height: 3.5vw;
        padding-bottom: 40px;
      }

      .strategy-section__p {
        font-size: 3vw;
        line-height: 3.5vw;
      }
      .last-p {
        padding-top: 30px;
      }
  }
}  


  .strategy-section__photos {
    flex-direction: row;
  }

  .strategy-section__contacts {
    .strategy-section__contacts__link a {
      font-size: 24px;
      line-height: 32px;
    }
  }

  .bg {
    width: 100%;
  }

  .strategy-black-section {
    .strategy-black-section__item {
      font-size: 40px;
      line-height: 45px;
      gap: 10vh;
    }
  }

  .banner {
    height: 100px;

      .banner__element {
        font-size: 60px;
        line-height: 70px;
      }
  }

  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;
      }
    }
  }

}