#page1 .scroll-bottom {
  position: absolute;
  font-size: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 20px;
  animation: dscroll 1.3s alternate-reverse infinite;
}

#page1 .scroll-bottom a {
  color: #FFC64B;
}

#page1 .scroll-bottom a i {
  -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.705));
          filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.705));
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

#page1 .scroll-bottom a i:hover {
  color: white;
  -webkit-filter: drop-shadow(none);
          filter: drop-shadow(none);
}

#page1 .main-flex {
  min-height: calc(100vh - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../storage/nit.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

#page1 .main-flex .main-text {
  margin: -10px 100px 100px 100px;
  font-family: "Jost";
  width: 800px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: page1_text_animation 1.5s forwards;
          animation: page1_text_animation 1.5s forwards;
}

#page1 .main-flex .main-text h1 {
  font-size: 60px;
  color: white;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.605);
}

#page1 .main-flex .main-text p {
  color: #ffffff;
  text-shadow: 0 0 5px black;
  font-size: 20px;
  margin-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 10px;
  border-radius: 10px;
}

#page1 #astro-img {
  position: absolute;
  bottom: 18%;
  width: 30%;
  right: 11%;
  -webkit-animation: img_animation 2s infinite alternate linear;
          animation: img_animation 2s infinite alternate linear;
}

@media (max-width: 930px) {
  #page1 .main-flex {
    justify-content: center;
    align-items: center;
    padding: 0 30px;
  }
  #page1 .main-flex h1 {
    padding-top: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.705);
  }
  #page1 .main-flex .main-text {
    margin: 0;
    width: max-content;
  }
  #page1 #astro-img {
    display: none;
  }
}

@media (max-width: 800px) {
  #page1 .main-flex
  {
    display: block;
  }
  #page1 .main-flex .main-text
  {
    width: 100%;
  }
  #page1 .main-flex .main-text h1 {
    font-size: 43px;
  }
  #page1 .main-flex .main-text p {
    font-size: 18px;
  }
  #page1 .main-flex .main-text .btn-gr button {
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  #page1 .main-flex {
    padding: 10px;
  }
  #page1 .main-flex .main-text h1 {
    font-size: 25px;
  }
  #page1 .main-flex .main-text h1::after {
    bottom: -5px;
  }
  #page1 .main-flex .main-text p {
    font-size: 15px;
  }
  #page1 .main-flex .main-text .btn-gr {
    display: block;
    padding: 0;
  }
  #page1 .main-flex .main-text .btn-gr button {
    font-size: 13px;
    width: 100%;
    height: 35px;
  }
  #page1 .main-flex .main-text .btn-gr .btn-default-stroke {
    margin: 10px 0 0 0;
  }
}

@-webkit-keyframes page1_text_animation {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-filter: opacity(100);
            filter: opacity(100);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes page1_text_animation {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-filter: opacity(100);
            filter: opacity(100);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes img_animation {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes img_animation {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes dscroll {
  0% {
    -webkit-transform: translateY(-30px) translateX(-50%);
            transform: translateY(-30px) translateX(-50%);
  }
  100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
}

@keyframes dscroll {
  0% {
    -webkit-transform: translateY(-30px) translateX(-50%);
            transform: translateY(-30px) translateX(-50%);
  }
  100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
}
/*# sourceMappingURL=style-1.css.map */
