*{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
body{
  background-color: #191919;
}
header{
  background-color: #191919;
  background-size: cover;
  background-position: center;
}

ul{
  list-style-type: none;
  display: grid;
  grid-template-columns: 120px 120px 120px 120px 130px;
  margin-right: 25px;
  grid-gap: 5px;
  justify-content: end;
  margin-top: 30px;
  animation: transitionIn 2.5s;
}
ul button{
  padding: 0px 10px;
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}
ul button a{
  text-decoration: none;
  font-weight: bold;
  color: #FFF;
  padding: 5px 7px;
  transition: 0.2s ease;
  cursor: pointer;
}
ul button a:hover{
  color: #57FFB3;
  position: relative;
  border-bottom: 4px solid #57FFB3;
}
ul button.active a{
  color: #57FFB3;
  position: relative;
  border-bottom: 4px solid #57FFB3;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: none;
}
.container{
  width: 100%;
}
.title{
  width: 100%;
  text-align: center;
  margin-top: 25px;
  animation: transitionIn 2.5s;
}
.title h1{
  color: #fff;
  text-align: center;
  font-size: 60px;
}
.subtitle{
  width: 85%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 500;
  animation: transitionIn 2.5s;
}
.subtitle>p{
  color: white;
  font-size: 15px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  opacity: 0.2;
}
.subtitle1{
  width: 100%;
  text-align: center;
  font-weight: 500;
  animation: transitionIn 2.5s;
}
.subtitle1>p{
  color: #d3d3d3;
  font-size: 1vw;
  padding-left: 10px;
  padding-right: 10px;
}
.subtitle1>p:hover{
  color: #57FFB3;
}
.text{
  font-weight: 500;
  text-align:center;
  width: 85%;
  font-size: 1.2vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: transitionIn 2.5s;
}
.text .first{
  color: #d3d3d3;
}
.text .second{
  color: #57FFB3;
}

.chavi{
  width: 100%;
}
img{
  width: 20%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  transition: 0.4s ease;
}

img:hover{
  transform: translateY(3%);
}
@keyframes transitionIn {
  from{
    opacity: 0;
    transform: translateY(-5%);
  }
  to{
    opacity: 1;
    transform: translateY(0%);
  }
}



/*media querry for portrait laptop potrait*/
@media only screen and (min-device-width: 701px) and (orientation: portrait){
.title{
  margin-top: 50px;
}
ul{
  justify-content: center;
  margin-right: 0px;
}

  img{
    width: 70%;
  }

  .subtitle>p{
    font-size: 23px;
  }
  .subtitle1>p{
    font-size: 2.5vw;
  }
  .text{
    font-size: 3vw;
  }

}



/*media querry for portrait mode in ipad*/
@media only screen and (max-device-width: 700px)and (orientation: portrait){
  .title{
    margin-top: 50px;
  }
  img{
    width: 70%;
  }
  ul{
    justify-content: center;
    margin-right: 0px;
  }

  .subtitle>p, .subtitle1>p{
    font-size: 10px;
  }
  .text{
    font-size: 1.2vw;
  }
}
