.index-page__intro-section {
  width: 100%;
  background-image: url("/images/gsbe-building.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.index-page__intro-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 168, 166, 0.51);
  z-index: -1;
}

.index-page__intro-section__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.index-page__logo-image {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
}

.index-page__site-title {
  text-align: center;
  color: #fff;
  /* font-weight: 400; */
  margin-bottom: 40px;
  margin-top: 0px;
  font-size: 22px;
  text-shadow: 2px 2px #000;
}

.index-page__remote-resources-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin-top: 0px;
  padding-left: 0px;
  width: 100%;
}

.index-page__remote-resources-item {
  margin-bottom: 20px;
  width: 100%;
}

.index-page__remote-resources-link {
  display: block;
  text-decoration: none;
  /* color: rgba(0, 168, 166, 1); */
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.1s ease;
}

.index-page__remote-resources-name {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-page__remote-resources-name::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.index-page__remote-resources-telegram-link {
  background-color: #039be6;
}

.index-page__remote-resources-telegram::before {
  background-image: url("/images/telegram.png");
}

.index-page__remote-resources-facebook-link {
  background-color: #6aaff4;
}

.index-page__remote-resources-facebook::before {
  background-image: url("/images/facebook.png");
}

.index-page__remote-resources-instagram-link {
  background-color: #592a7b;
}

.index-page__remote-resources-instagram::before {
  background-image: url("/images/instagram.png");
}

.index-page__remote-resources-youtube-link {
  background-color: #f20000;
}

.index-page__remote-resources-youtube::before {
  background-image: url("/images/youtube.png");
}

.index-page__remote-resources-linkedin-link {
  background-color: #013469;
}

.index-page__remote-resources-linkedin::before {
  background-image: url("/images/linkedin.png");
}

.index-page__remote-resources-web-site-link {
  background-color: #4d58d6;
}

.index-page__remote-resources-web-site::before {
  background-image: url("/images/web.png");
}

@media screen and (max-width: 800px) {
  .index-page__logo-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .index-page__site-title {
    margin-bottom: 30px;
    font-size: 20px;
    text-shadow: 2px 2px #000;
  }

  .index-page__remote-resources-link {
    padding: 0.8rem;
  }

  .index-page__remote-resources-name {
    font-size: 1rem;
  }
}