*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior:smooth;
}
header{
  position: fixed;
  background-color: rgba(0, 0, 0, 0.445);
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

header .brand{
  color:#fff;
  font-size: 32px;
  font-weight: 700px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}
header .brand .img{
  margin-right: 20px;
}
header .navigation{
  position: relative;
}
header .navigation a{
  color:#fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: .5s ease; 
}
header .navigation a:hover{
  color:rgb(0, 255, 251);
}
section{
  padding: 100px;
}
.home{
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: url(./img/back1.jpg) no-repeat;
  background-size: cover;
  background-position:center;
  background-attachment: fixed;
}
.home .content{
  max-width: 800px;
}
.home .content h2{
  color:#fff;
  font-size: 40px;
  font-weight: 500;
}
.home .content h2 span{
  font-size: 60px;
  font-weight: 600;
}
.animated{
  height: 70px;
  overflow: hidden;
  position: relative;
}
.animated h3{
  color: rgb(255, 0, 0);
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 1px;
}
.animated h3:nth-child(1){
  animation: text-move 10s infinite;
}
@keyframes text-move {
  0%{
    margin-top: 0;
  }
  25%{
    margin-top: -70px;
  }
  50%{
    margin-top: 0;
  }
  75%{
    margin-top: -70px;
  }
  100%{
    margin-top: 0;
  }
  
}
.btn{
  color:#fff;
  background-color: rgb(12, 89, 102);
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 20px;
  margin: 30px 0;
  transition: .6s ease;
}
.btn:hover{
  background: #fff;
  color: #009227;
}
.media-icons a{
  color: #fff;
  font-size: 25px;
  margin-right: 30px;
}

@media (max-width:1040px) {
  header{
    padding: 12px 20px;
  }
  header .navigation{
    display: none;
  }

  header .navigation.active{
    z-index: 888;
    position: fixed;
    background-color: #fff;
    top: 0;
    right: 0;
    width: 300px;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.445);
    transition: .3s ease;
  }

  header.sticky{
    background-color: rgba(6, 14, 98, 0.98);
    padding: 10px 40px;
    transition: 0.4 ease;
  }

  header .navigation a{
    color: #010101;
    font-size: 22px;
    margin: 10px;
    padding: 0 20px;
    border-radius: 20px;
  }
  header .navigation a:hover{
    background-color: blueviolet;
  }
  .menu-btn{
    position: absolute;
    background:url(./img/menu.png) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    right: 0;
    margin: 0 20px;
    cursor: pointer;
    transition: .4s ease;
  }
  .menu-btn.active{
    z-index: 999;
    background: url(./img/close.png) no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.2s ease;
    filter: invert(10);
  }
  section{
    padding: 80px 20px;

  }
 
  .section-title{
    font-size: 36px;
  }
  .home .content h2{
    font-size: 25px;
  }
  .home .content h3{
    font-size: 35px;
  }
  .section-title{
    font-size: 36px;
  }
  
}