
@keyframes top__block-main-img-free-anim {   
  0% {     
    transform: rotate(0deg) scale(1); 
  }
  40% {
    transform: rotate(150deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(2);
  }
  60% {
    transform: rotate(210deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
body {
  font-family: 'Cakra';
  color: white;
}
h1,h2,h3,h4,h5 {
  text-align: center;
}
.header {
  width: 90vw;
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 5%;
  z-index: 9999;
  transition: .3s ease;
}
.header_active {
  background: #000000e8;
  border-radius: 0 0 30px 30px
}
.header__nav {
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  margin: 0 10px;
  transition: .3s ease;
}
.header__nav_services {
  border-radius: 30px;
  border: 2px solid #29a4c9;
}
.header__nav:hover {
  color: #29a4c9;
}

.main {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  background: #0b0b0b;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px 40px 0 0;
  margin: 0 auto;
  overflow: visible;
  flex-direction: column;
}


@media screen and (max-width: 700px) {
  .header {
    width: 100vw;
    left: 0;
    justify-content: space-around;
  }
  .header__nav {
    padding: 10px 15px;
    font-size: 18px;
  }
  .main {
    
  }
  
  .footer {
    
  }
  
}
