*{
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
    display: block;
}
@font-face {
    font-family: 'Futura PT Book';
    font-style: normal;
    font-weight: normal;
    src: local('Futura PT Book'), url('futura-pt-webfont/FuturaCyrillicBook.woff') format('woff');
    }
body{
    font-family: Futura PT Book;
}
a{
    font-family: Futura PT Book;
    color: #000000;
}
nav{
    height: 50px;
    background-color: rgba(0, 0, 0, 0.439);
    position: fixed;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.text1{
    padding: 10%;
    
}
button {
    background-color: #9F2C2C;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    font-family: Futura PT Book;
    font-size: 110%;
    margin-top: 1%;
    margin-bottom: 1%;
  }
.apple1{
    width: 50%;
}
.logo{
    height: 50px;
}
header{
    height: 100vh;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.headervideo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.apples1{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: left;
    font-size: 3vh;
}
.apples2{
    display:flex;
    flex-wrap:wrap;
    gap:3vh;
    align-items:flex-start;
    margin:5vw;
}
.apples2{
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}
.apples2 > div{
    display: flex;
    flex-direction: column;
}
.apples2 h1{
    margin: 2vh;
}
.apples2 p{
    margin-top: 5%;
    max-width: 80vh;
    font-size: 150%;
}
.apples3{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:2vh;
    margin:5vh;
    height: 100vh;
}
.apples3 h1{
    font-size:3vh;
    margin:0;
}
.apples3 p{
    margin-top: 5%;
    max-width: 80vh;
    font-size: 150%;
}
.apples3 div{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.info{
    position: relative;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
main{
    height: 300vh;
    background-color: rgb(255, 255, 255);
    position: relative;
    /* top: -50px;
    left: 50px; */
}
.blok{
    background-color: blue;
    position: absolute;
    top: 0;
    left: 0;
}
footer{
    height: 50px;
}
.footer {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-top: 0.1vh solid #000;
    border-bottom: 0.1vh solid #000;
    margin: 5vh 0;
}
.footer > div {
    flex: 1;
    padding: 5vh;
    border-right: 0.1vh solid #000;
    font-size: 120%;
}
/* NAV */
.nav {
    padding: 1rem;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 0.2rem;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    background-color: #ffffff;
    height: 0;
    transition: all 0.3s ease-in;
    top: 50px;
    left: 0;
    overflow: hidden;
  }
  .nav > .nav-list > li {
    width: 100%;
    margin-top: 1.5rem;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(100vh - 50px);
  }
  nav input{
    opacity: 0%;
  }
