.article {
    position: relative;
    max-width: 280px;
    padding: 15px;
    background: url(../img/bgbgbg.png);
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  

  .article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.3s ease-in-out;
  }
  

  .article:hover::before {
    animation: shineArticle 1.8s ease forwards;
  }
  
  @keyframes shineArticle {
    0% {
      left: -100%;
    }
    100% {
      left: 120%;
    }
  }
  
.article:hover{
    transition: 0.3s;
    opacity: 0.7;
}

.article-name{
    max-width: 280px;
    white-space: normal;
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.article-podrobnee{
    color: white;
    font-weight: 600;
    padding: 10px;
    background: linear-gradient(to top, #ff09f5, #ff4747);
    border-radius: 15px;
    margin-top: 10px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-obj{
    font-weight: 400;
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}


.article1{
    background: url(../img/artic1.png);
}

.article2{
    background: url(../img/artic2.png);
}

.article3{
    background: url(../img/artic3.png);
}

.article4{
    background: url(../img/artic4.png);
}

.article5{
    background: url(../img/artic5.png);
}

.article6{
    background: url(../img/artic6.png);
}
.article7{
    background: url(../img/artic7.png);
}

.article8{
    background: url(../img/artic8.png);
}

.article9{
    background: url(../img/artic9.png);
}

.article10{
    background: url(../img/artic10.png);
}


.article-flex{
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
}

@media screen and (max-width: 1320px){
    .article-flex{
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .article{
        margin: 0px;
    }
}

@media screen and (max-width: 1000px){
    .article-flex{
        grid-template-columns: repeat(2, auto);
    }
}

@media screen and (max-width: 740px){
    .block-small-description{
        white-space: normal;
    }
}

@media screen and (max-width: 690px){
    .article-flex{
        grid-template-columns: repeat(1, auto);
    }
}


.burger-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    background-color: white;
    z-index: 999;
  }
  
  .burger-menu.open {
    display: flex;
  }


  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .header-nav-left-side {
      display: none;
    }
  }