





/* Модельное окно */
.modal{
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.58); 
}
.modal-content{
background-color: #fefefe;
margin: 5% auto;
border: 1px solid #888;
width: 70%;
border-radius: 5px;
animation-name: animate;
animation-duration: 0.5s;
}
.modal-header{
  padding: 10px 25px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.507);
  display: grid;
  grid-gap: 1vw;
  grid-template-columns: 1fr 1fr;
}
.modal-captain{
  display: flex;
align-items: center;
font-size: 20px;
font-weight: 600;
}
@keyframes animate{
  from{ margin-top: -80px; opacity:0;}
  to{opacity:1;}
}

.modal-text{
  padding: 25px;
}
.close{
  color: rgba(0, 0, 0, 0.822);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  text-align: end;
}

.slider_img{
height: 80vh;
}