* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: degular, sans-serif;
    font-weight: 400;
    font-style: normal;
}



.work-section__imgs-item__info__copy {
  color: white;
  font-weight: 500;

}


.asoo {
  font-style: italic;
  font-size: 25px;
  line-height: 30px;
 
} 

.work-section__imgs-item__info__title {
  font-weight: 900;

}

.bolt_text {
  padding-top:100px ;
  font-size: 60px;
  line-height: 55px;
  font-weight: bold;
}



.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 {
      fill: white;
      cursor: pointer;
    }
  }
}

.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;
  display: flex;
  flex-direction: column;
  transition: 0.25s transform;
  align-items: center;
  justify-content: center;

}

.text_big {
  font-size: 6vw;

}

.green-text {

  font-size: 30px;
  color: #55FF9E;

}




.section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4vh;
  line-height: 4.5vh;
  color: #FFF;
  scroll-snap-align: start;
  height: 100vh;
  padding-bottom: 30px;


  .section-text {
    width: 80%;
    cursor: pointer;
    text-shadow: 2px 2px black;
 

    .darkText {
      color: black;
    }

    :nth-child(2) {
      display: block;
      margin: 15px 0;
    }

    &:hover .arrow {
      animation: arrowAnimation 1s ease-in-out;
    }
  }

}



.work-section {
  display: flex;
  flex-direction: column;
  background: url("/photo/AOM-2/Изображение\ WhatsApp\ 2024-10-19\ в\ 20.12.56_7b627745.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.work-section__imgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  padding: 20px;
  background-color: black;

    .work-section__imgs-item {
      position: relative;
      width: 100%;       
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

}

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) {


 

  .work-section__imgs {
    padding-bottom: 20px;
      .work-section__imgs-item__info {
          display: flex;
          flex-direction: column;
          gap: 20px;         
          color: white;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          padding: 20px;
          font-size: 24px;
          line-height: 32px;
      
          .work-section__imgs-item__info__title {
            
            font-weight: bold;
            display: none
          }
          .work-section__imgs-item__info__copy {
            display: none;
          }
        }

      
        .work-section__imgs-item__info:hover {
            .work-section__imgs-item__info__title {
              display: block;
              
          }
          .work-section__imgs-item__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;
      }
    }
  }

}