@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@font-face {
  font-family: Benzin;
  src: url(../fonts/benzin-bold.ttf);
}
header.navbar-active-always {
  background: rgba(0, 0, 0, 0.4784313725);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.main .satellite {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.main .satellite .satellite__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .satellite .satellite__header h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__header h1 {
    font-size: 24px;
    line-height: 33.05px;
  }
}
.main .satellite .satellite__header p {
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__header p {
    font-size: 24px;
    text-align: left;
  }
}
.main .satellite .satellite__main {
  display: flex;
  justify-content: space-between;
  gap: 110px;
}
@media screen and (max-width: 992px) {
  .main .satellite .satellite__main {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__main {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
.main .satellite .satellite__main .satellite__preview {
  position: relative;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__main .satellite__preview .satellite__image {
    width: 100%;
    max-width: 333px;
  }
}
.main .satellite .satellite__main .satellite__preview .satellite__icon {
  position: absolute;
  top: 0;
  left: 0;
}
.main .satellite .satellite__main .satellite__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main .satellite .satellite__main .satellite__info .satellite__info__row {
  display: flex;
  border-bottom: 1px solid #115EFB;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__main .satellite__info .satellite__info__row {
    flex-direction: column;
  }
}
.main .satellite .satellite__main .satellite__info .satellite__info__row .satellite__info__title {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  max-width: 35%;
  width: 100%;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__main .satellite__info .satellite__info__row .satellite__info__title {
    max-width: 100%;
  }
}
.main .satellite .satellite__main .satellite__info .satellite__info__row .satellite__info__about {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  padding: 10px 0;
}
.main .satellite .satellite__desc {
  display: flex;
  flex-direction: column;
}
.main .satellite .satellite__desc .satellite__desc__text {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.main .satellite .satellite__desc .satellite__desc__list {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.main .satellite .satellite__desc .satellite__desc__list ul {
  padding: 0 0 0 16px;
}
.main .satellite .satellite__desc .satellite__collapse-btn {
  display: none;
  background-color: transparent;
  border: none;
  color: #115EFB;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  padding-left: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .main .satellite .satellite__desc .satellite__collapse-btn {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .satellite__desc__text-hidden {
    display: none;
  }
}

.satellite__link-underscore-hidden {
  text-decoration: none;
}

.satellite__link-underscore-white {
  color: #FFFFFF;
}

footer {
  position: relative !important;
  z-index: 10 !important;
}

.stars, .twinkling, .clouds {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.stars {
  background: #000000 url(../assets/stars.png) repeat top center;
  z-index: 0;
  animation: move-stars-back 400s linear infinite;
}

.twinkling {
  background: transparent url(../assets/twinkling.png) repeat top center;
  z-index: 1;
  -webkit-animation: move-twink-back 200s linear infinite;
  animation: move-twink-back 200s linear infinite;
}

.clouds {
  background: transparent url(../assets/space.png) repeat-x top center;
  z-index: 3;
  -webkit-animation: move-clouds-back 100s linear infinite;
  animation: move-clouds-back 100s linear infinite;
}

@-webkit-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@-webkit-keyframes move-stars-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 8000px;
  }
}
@-webkit-keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

/*# sourceMappingURL=satellites.css.map */
