*{
    margin: 0;
    padding:0;
}
body {
    zoom: 100%;
    opacity:0.9;
     z-index: 5;
     
     }
     /*Стилизация бургер-меню*/
  /*Стиль кнопки*/
    /* скрываем чекбокс */
#menu__toggle {
    opacity: 0;
  }/* стилизуем кнопку */
  .menu__btn {
    display: flex; /* используем flex для центрирования содержимого */
    align-items: center;  /* центрируем содержимое кнопки */
    position: fixed;
    top: 40px; /*положение бургера*/
    left: 40px;  
    width: 40px;
    height: 40px;  
    cursor: pointer;
    z-index: 1;
  }/* добавляем "гамбургер" */
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;  width: 100%;
    height: 2px;  background-color: #4e4d43;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }

/* контейнер меню */
.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    opacity: 0.8;
    left: -100%;  width: 300px;
    height: 100%;  margin: 0;
    padding: 80px 0;  list-style: none;
    text-align: left;  background-color: #fafdff;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  }/* элементы меню */
  .menu__item {
    display: block;
    padding: 12px 24px;  color: #333;  font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 400;  text-decoration: none;
      }
     /*Раскрытие меню*/ 
  .menu__item:hover {
    background-color: #CFD8DC;
  }

  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    transition-duration: .25s;
  }.menu__box {
    transition-duration: .25s;
  }.menu__item {
    transition-duration: .25s;
  }

/*конец бургер-меню*/
p {
    width: 70%;
    margin: auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: large;
    padding-top: 1em;
    justify-content: left;
    text-align: justify;
    text-indent: 1em;

}
.afisha {
    display: block;
    text-align: center;
    padding-top: 2em;
}
.afisha img{
width: 50%;
height: auto;

}


h2 {
  padding: 1em 0;
  font-family: monospace;
  text-align: center;
  text-transform: uppercase;
  font-size: x-large;

}
h3 {padding: 1em 0;
    font-family: monospace;
    text-align: center;
}

/*Галерея*/
.main-proj {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  justify-content: center;
  align-items: center;
  
}
.main-proj:last-child {
  width: 1em;
}
.proj img {
  width: 12em;
  height: auto;
  padding: 0.5em;
  margin: 0;
}
        
button {
     
  display: inline-flex;
  margin: 5px;
  text-decoration: none;
  position: relative;
  font-size: 10px;
  line-height: 10px;
  padding: 12px 30px;
  color: #2d2c2a;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Roboto', Тahoma, sans-serif;
  background: #e8ca74;
  cursor: pointer;
  border: 2px solid #BFE2FF;
  overflow: hidden;
  z-index: 1;    
}
button:hover,
button:active,
button:focus {
  color: #FFF;
}
button:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-top: 50px solid #2D6B9F;
  transition: transform 0.5s;
  transform: translateX(-100%);
  z-index: -1;
}
button:hover:before,
button:active:before,
button:focus:before {
  transform: translateX(0);
}  

.silfut {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  
}
.silfut img {
  width: 3em;
  height: auto;
  padding-left: 1em;
}

.cont {
  display: flex;
  flex-direction: row;
 
}
.cont p {
  text-indent: 0;
}
.rep {
  display: flex;
  flex-wrap: wrap;
  
  list-style-type: none;
  padding: 0;
  justify-content: center;
  align-items: center;
    }
  .rep img {
    width: 18em;
    height: auto;
    margin:  0.5em;
   /* border: 3px solid rgb(93, 88, 73);*/
  }
  
  .rep a {
    text-decoration: none;
  }
  .rep1 {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0 2em;
    justify-content: center;
    align-items: center;
    }
    .rep1 img {
      width: 18em;
      height: auto;
      margin: 0.3em 0.5em;
      /*border: 3px solid rgb(93, 88, 73);*/
    }
    
      
    
    .rep1 a {
      text-decoration: none;
    } 
    .rep2 {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0 2em;
    justify-content: center;
    align-items: baseline;
    }
    .rep2 img {
      width: 18em;
      height: auto;
      margin: 0.3em 0.5em;
      /*border: 3px solid rgb(93, 88, 73);*/
    }
    
      
    
    .rep2 a {
      text-decoration: none;
    } 
    video {
      display: block;
      justify-items: center;
      justify-content: center;
      width: 60%;
      margin-left: auto;
      margin-right: auto;
      height: auto;
      text-align: center;
    }