* {
margin: 0;
padding: 0;
}

body {
background-color: #EEE;

}
#hero{
background-image: url('IMG_7045.jpg');
background-size: cover;
background-position: center;
}
.typing{
    width: 100%!important; 
    display: block!important;
}

.hero-content{
    height: 100vh; 
    background-color: rgba(0, 0, 0, 0.486);
}
.button{
  text-decoration: none;
  color : black ;
  font-size: 15px;
  border : 1px solid #000;
  border-radius: 5px;
  padding: 7px;
}
.button:hover{
  color : white;
  background: black;
}

.fly-in-text {
list-style: none;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}

.fly-in-text li {
color: white;

display: inline-block;
margin-right:50px;
font-family: Open Sans, Arial;
font-weight: 300;
font-size: 4em;
opacity: 1;
transition: all 2.5s ease;
}

@media screen and (max-width: 1275px) {
  .fly-in-text li {
  margin-right:30px;
  font-weight: 300;
  font-size: 3em;
}
}

@media screen and (max-width: 900px) {
  .fly-in-text li {
  margin-right:20px;
  font-weight: 300;
  font-size: 3em;
}
}

@media screen and (max-width: 768px) {
  .fly-in-text li {
display: inline-block;
  margin-right:20px;
  font-weight: 300;
  font-size: 2em;
  /* text-align: center; */
      /* margin: 0 auto; */
      margin-top: 8px;
}
.chev{
    display: block!important;
}
.icon-scroll{
    display: none;
}
}
@media screen and (max-width: 642px) {
  .fly-in-text li {
display: inline-block;
margin-right: 0px;
  font-weight: 300;
  font-size: 2em;
  text-align: center;
      /* margin: 0 auto; */
      margin-top: 8px;
}
}
@media screen and (max-width: 421px) {
  .fly-in-text li {
display: inline-block;
margin-right: 10px;
  font-weight: 200;
  font-size: 1em;
  text-align: center;
      /* margin: 0 auto; */
      margin-top: 8px;
}
}
.hidden{
    opacity: 0!important;
}

.fly-in-text li:last-child {
margin-right: 0;
}

.fly-in-text.hidden li {
opacity: 0;
}

.fly-in-text.hidden li:nth-child(1) {
transform: translateX(-200px) translateY(-200px);
}
.fly-in-text.hidden li:nth-child(2) {
transform: translateX(20px) translateY(100px);
}
.fly-in-text.hidden li:nth-child(3) {
transform: translateX(-150px) translateY(-80px);
}
.fly-in-text.hidden li:nth-child(4) {
transform: translateX(10px) translateY(-200px);
}
.fly-in-text.hidden li:nth-child(5) {
transform: translateX(-300px) translateY(200px);
}
.fly-in-text.hidden li:nth-child(6) {
transform: translateX(80px) translateY(-20px);
}
.fly-in-text.hidden li:nth-child(7) {
transform: translateX(30px) translateY(200px);
}
/* .fly-in-text.hidden li:nth-child(8) {
transform: translateX(30px) translateY(2500px);
} */
.fly-in-text.hidden li:nth-child(8) {
transform: translateX(3000px) translateY(00px);
}

.fly-in-text.hidden li:nth-child(9) {
    transform: translateX(3000px) translateY(120px);
}

*::-webkit-scrollbar {
    width: 3px;
  }
  
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: rgb(41, 41, 41);
    border-radius: 20px;
    border: 3px solid rgb(158, 158, 158);
  }



  /* scroll icon anmation  */
  .icon-scroll,
  .icon-scroll:before {
    position: absolute;
    left: 50%;
  }
  .icon-scroll {
    width: 40px;
    height: 70px;
    margin-left: -80px;
    top: 65%;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
  }
  .icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
            animation-name: scroll;
  }
  @-webkit-keyframes scroll {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateY(46px);
    }
  }
  @keyframes scroll {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateY(46px);
    }
  }
  
  .chev{
    position: absolute;
    display: none;
    left: 50%;
    top: 58%;
  }
  
  .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
  }
  
  .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
  }
  
  .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
  }
  
  @keyframes move {
    25% {
      opacity: 1;
  
    }
    33% {
      opacity: 1;
      transform: translateY(30px);
    }
    67% {
      opacity: 1;
      transform: translateY(40px);
    }
    100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
  }
  
  .text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
  }
  
  @keyframes pulse {
    to {
      opacity: 1;
    }
  }

  /* image stack  */
  image-stack>p {
    font-size: 20px;
    font-family: sans-serif;
    color: #6439a9;
  }
  
  
  .image-stack {
    position: relative;
    width: 100%;
  }
  
  .image-stack__item--bottom {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    z-index: -1;
  }
  
  .image-stack__item--top {
    padding-top: 20px;
    padding-right: 20%;
    width: 80%;
  }
  
  .image-stack>img {
    width: 100%;
    display: block;
  }
  
    /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #45505b;
  }
  
  .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #0563bb;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }

  .invert-img{
      filter: invert(1);
  }