@import url(https://fonts.googleapis.com/css?family=Roboto:regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

* {
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  :focus, :active {
    outline: none;
  }
  
  a:focus, a:active {
    outline: none;
  }
  
  nav, footer, header, aside {
    display: block;
  }
  
  html, body {
    height: 100%;
     width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  
  }
  body._lock{
    overflow: hidden;
  }
  input, button, textarea {
    font-family: inherit;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  button {
    cursor: pointer;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  a, a:visited {
    text-decoration: none;
    
  }
  
  a:hover {
    text-decoration: none;
  }
  
  ul li {
    list-style: none;
  }
  
  img {
    vertical-align: top;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  /*--------------------*/
  
  body{
  background-color: #121214;
    font-family: "Roboto";
  font-weight: 500;
  color: white;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  min-width: 320px;
  position: relative;
  }
  .wrapper{
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: clip;
   
  }
  [class*="__container"]{
    max-width: 1220px;
     margin: 0 auto;
    padding: 0px 15px;
  }
  .main{
    flex: 1 1  auto;
  
  }
 /*Header*/
 .header {
  position: fixed;
 background-color: #121214;
 
  width: 100%;
 top: 0;
 left: 0;
  z-index: 10;
}
.header__container {
  display: flex;
  align-items: center;
  column-gap: 35px;
  align-items: center;
  min-height: 70px;
  padding-top: 20px;
  padding-bottom: 20px;

}
.header__logo {
}
.header__menu {
font-size: 20px;
 align-items: center;

}

.menu {
}
.menu__icon {
}


.menu__body{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
}
.menu__header {
 
}
.header-menu {
}
.menu__list {
   display: flex;
   flex-wrap: wrap;
   gap: 29px;
   flex: 1 1 auto ;
   margin-right: 200px;
}
.header-menu__item {
}
.header-menu__link {
  color: #A6A8AD;
}
.header-menu__link:hover {
  color: #878a92;
  text-decoration: underline;
}
.header__buttons {
  display: flex;
  justify-content: flex-end;
  font-size: 20px;
  flex-wrap: wrap;
 gap: 24px;
 flex: 1 1 auto;

}
.buttons-header {
  
}

.buttons-header__button1 {
}
.button {
  padding: 10px 19px;
}
.button1__link {
  color: #A6A8AD;
  padding: 10px 19px;
}
.button1__link:hover {
 text-decoration: underline;
}
.buttons-header__button2 {

  
}
.button2 {
}
.button2__link {
  color: #121214;
  background: #fff;
  padding: 10px 19px;
border-radius: 20px;
transition: all 0.2s ease 0.2s;
}
.button2__link:hover {
  color: #121214;
  background: #cfcccc;
  padding: 10px 15px;
}

.header__under-content {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 20px ;
  background: #0033FF;

}
.header__under-content a{
  color: #ece6e6;
}
.header__under-content a:hover{
 text-decoration: underline;
}


.menu__icon{
  display: none;
}

@media(max-width: 987px){
  .header__container{
    margin: 10px 0px;
  }
  .header__under-content{
    font-size: 19px;
  }
}
@media(max-width: 600px){
.header__buttons{
justify-content: flex-start;
}
.menu__list{
  margin-left: 0px;
}

.button1__link{
  font-size: 30px;
  padding: 15px 25px;
}
.button2__link{
  font-size: 30px;
  padding: 15px 25px;
}
.header__logo{
  display: flex;
  flex: 1 1 auto;
}
  .menu__list{
    display: flex;
   flex-direction: column;
  }
  .menu__link{
    font-size: 30px;
  }
  .menu__icon{
    z-index: 5;
    display: block;

    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    display: block;
    height: 18px; 
    position: relative;
    z-index: 5;
  }
  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after{
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0.3s;
    background: #fff;
  }
  .menu__icon::before,
  .menu__icon::after{
    content: "";
  }
  .menu__icon::before{
    top: 0;
  }
  .menu__icon::after{
    bottom: 0;
  }
  .menu__icon span{
    top: 50%;
    transform: scale(1)  translate(0px, -50%);
  }
  .menu__icon._active span{
    transform: scale(0)  translate(0px, -50%);
  }
  .menu__icon._active::before{
   top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after{
    bottom: 50%;
     transform: rotate(45deg) translate(0px, 50%);
   }
  .menu__body{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 30px;
    transform: translate(-100% ,0px);
    background: #121214;
    padding: 100px 30px 30px 30px;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body._active{
    transform: translate(0px, 0px);
  }
  .menu__list > li{
    margin: 0px 0p 30px 0px;
  }
  .menu__list > li:last-child{
    margin-bottom: 0;
  }

}

@media(max-width: 380px){
.header__container{
  justify-content: center;
}
}


/*Main*/
.page__main{
 margin-top: 100px;
}
.main__container{



}
.page__main{
 position: relative;

}

.main__fon {
  margin: 0px 0px 50% 0px;
position: absolute;
  width: 100%;
  height: 100%;
 top: 0;
 left: 0;
}
.main__fon img{
  position: absolute;

  width: 100%;
  height: 100%;

  left: 0;
  object-fit: cover;
 
}

.main__content{
  color: #000;
  position: relative;
  z-index: 2;
padding: 210px 0px 300px 0px;
}
.title{
  font-size: 80px;
  color: #fff;
}
.main__title {
font-size: 72px;
max-width: 595px;
margin-bottom: 25px;
line-height: 72px;
z-index: 100px;
color: #fff;
}
.main__title.show{
  transform: translate(0px, 0px);
  opacity: 1;
}

.main__text {
  font-family: "Roboto";
  color: #fff;
  line-height: 24px;
  margin-bottom: 60px; 
  max-width: 420px;
  font-size: 20px;
 
}

.main__button {
 
}
.button-main {
}
.button-main__link {
  color: #fff;
  border-radius: 10px;
 
   background: #0033FF;
  padding: 16px 30px;
  font-size: 20px;
  top: 0;
  position: relative;
  transition: all 0.3s ease 0.2s;
}


.button-main__link:hover{
  top: 3px;
  box-shadow: 0 20px 40px 0 rgb(6, 54, 248, 0.5);
  font-size: 15px;

 
}




.button__link span{

}
.page__main{


}

@media(max-width: 621px){
  .main__title{
    
    font-size: 60px;
  }
}
@media(max-width: 350px){
  .main__title{
    
    font-size: 50px;
  }
}

/*Sounds*/


.sounds__main {
  padding-top: 118px;
  padding-bottom: 118px;
}
.sounds {
}
.sounds__container {
  display: flex;
  flex-wrap: wrap;
    align-items: center;
    gap: 150px;
}
.sounds__content {

}
.content {
}
.content__sounds {
margin-bottom: 20px;
}
.content-sounds__link{
  color: #A6A8AD;
}
.content-sounds__link:hover{
 text-decoration: underline;
}
.content__title {
  font-size: 28px;
  margin-bottom: 20px;
}
.content__text {
  max-width: 374px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.content__button {

}
.button-content {
}
.button-content__link {
  color: #fff;
  border-radius: 10px;
 
   background: #0033FF;
  padding: 9px 27px;
  font-size: 16px;
  top: 0;
  position: relative;
  transition: all 0.3s ease 0.2s;
}
.button-content__link:hover{
  top: 3px;
  box-shadow: 0 20px 40px 0 rgb(6, 54, 248, 0.5);
  font-size: 15px;
}


.sounds__images{
  max-width: 100%;
  position: relative;
}
.sounds__images img{

  max-width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-50px);
  }
  100% {
      transform: translateY(0);
  }
}
@media(max-width: 1180px){
 .sounds__container{
  display: flex;
  justify-content: center;
 }
}
/*Connected*/
.connected__container{
 text-align: right;
}
.connected__content{
  
}
.connected__title{
  padding-left: 20px;
}
.connected__text{
  max-width: 422px;
}
.span1{
  padding-left: 20px;
}
.span2{
  padding-left: 125px;
}
@media(max-width: 1180px){
  .connected__title{
   
  }
  .connected__container{
    flex-direction: column-reverse;
  }
}
@media(max-width: 440px){
  .connected__title{
    padding-left: 0px;
  }
  .span1{
    padding-left: 0px;
  }
  .span2{
    padding-left: 0px;
  }
}

/*Gear*/
.gear__container{

}
.gear__content{

}
.content__gear{

}
.gear__title{
  max-width: 363px;

}
.gear__text{
max-width: 424px;
}
/*Technology*/
.technology__image img{

}

/*Splice*/
.splice__main {
  padding-top: 60px;
  padding-bottom: 120px;
}
.splice {
}
.splice__container {
}
.splice__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.splice__items {
  display: flex;
  flex-wrap: wrap;
 
  gap: 10px;
}
.items-splice {
}
.items-splice__item {
  padding: 40px 50px;
  border-radius: 10px;
}
.item-splice {
  background: #fff;
}
.item-splice__image {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  max-width: 100%;
}
.item-splice__image img{
  border-radius: 55%;
  max-width: 100%;
}
.item-splice__text {
  max-width: 285px;
  color: #000;
  margin-bottom: 20px;
  line-height: 25px;
  font-size: 20px;
}
.item-splice__name {
}
.item-splice__name-link {
  color: #767676;
  font-size: 14px;
}
.item-splice__name-link:hover {
  text-decoration: underline;
}
@media(max-width: 1205px){
  .items-splice{
    justify-content: center;
  }
}
/*Try*/

.try{

}
.try__container{

}
.try__content{

  align-items: center;
text-align: center;

}
.try__title{
  font-size: 52px;
  margin-bottom: 100px;
  line-height: 72px;
  z-index: 100px;
  color: #fff;
}
.try-buttom__link{
padding: 10px 24px ;
}
/*Footer*/
.footer {
  padding-top: 80px ;
  padding-bottom: 60px ;
}
.footer__container {
}
.footer__items {
  display: flex;
  flex-wrap: wrap;
  gap: 82px;
}
.footer__items2 {
}
.footer__item1 {
  margin-bottom: 20px;
}
.footer__title {
  font-size: 20px;
}
.footer-item__link{
  margin-top: 20px;
}
.footer__link {
  color: #A6A8AD;
font-size: 12px;
margin-top: 20px;
}
.footer__link:hover {
 text-decoration: underline;
}
.link-footer{
  max-width: 160px;
}
.link-footer2{
  max-width: 130px;
}
.footer__item {
}

.under__footer {
  margin-top: 80px;
}
.footer-under {
display: flex;
flex-wrap: wrap;

}
.footer-under__text{
  margin-right: 20px;
  color: #A6A8AD;
}
.footer-under__link{
  margin-right: 20px;
  color: #A6A8AD;
}
.footer-under__link:hover{
 text-decoration: underline;
}
