*::selection {
  background-color: rgba(22, 78, 14, 0.5);
}

img::selection {
  background-color: transparent;
}

body {
  background-color: rgb(13, 13, 13);
  font-family: "MuseoModerno", cursive;
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40%;
  left: auto;
  gap: 10px;
}

.box {
  padding: 30px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (0px <= width <= 767px) {
  .hero {
    height: 80vh;
  }
}

h1 {
  font-family: "MuseoModerno", cursive;
  color: #fff;
  width: auto;

  font-size: 1.75rem;
}

#about {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  height: auto;
}

.about-box {
  padding: 50px;
}

.about-box p {
  font-size: 1.25rem;
  text-align: center;
  color: rgb(190, 190, 190);
}

.about-box h2 {
  color: #fff;
  font-size: 3rem;
}

.section-title-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.section-title-img {
  height: 50px;
}

@media (0px <= width <= 938px) {
  .about-container {
    flex-direction: column;
  }
  .about-box {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .about-box:nth-child(2) {
    padding-bottom: 60px;
  }
}

.music-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h2 {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 2.25rem;

  color: #fff;
}

#music {
  height: 100vh;
  background-image: url(images/team_bg.svg);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (0px <= width <= 938px) {
  #music {
    background-image: url(images/team_bg__mobile.svg);
  }
}

.fb {
  background: linear-gradient(to right, #0164e1, #16a4fb);
  color: #fff;
  margin: 5px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.fb::selection {
  background-color: transparent;
}

#music h6 {
  font-size: 1.5rem;
  text-align: center;
  color: #b6b6b6;
}

.music-box {
  margin: 10px;
  padding: 10px;
}

.fb-logo {
  max-height: 150px;
  border-radius: 50%;

  transform: scale(1) translateY(0px) rotate(0);

  transition: all 0.4s;
}

@media (0px <= width <= 938px) {
  .fb-logo {
    max-height: 100px;
  }
  .section-title-container {
    justify-content: center;
  }
}

.fb-logo:hover {
  transform: scale(0.9) translateY(10px) rotate(360deg);
}

#team {
  height: 130vh;
  background: radial-gradient(
    circle,
    rgba(3, 93, 26, 0.3) 0%,
    rgba(13, 13, 13, 1) 55%
  );
}

.team-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.team-box:first-child {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.team-box h2 {
  color: #fff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.swiper:first-child,
.swiper:last-child {
  transform: translateY(30px);
}

@media (0px <= width < 1024px) {
  .swiper:first-child,
  .swiper:last-child {
    transform: translateY(0px);
  }

  .container {
    flex-direction: column;
  }

  #team {
    margin-top: 200px;
    height: 140vh;
  }
}

.grey {
  color: #bbbbbb;
  font-size: larger;
}

#up {
  background-color: rgba(13, 13, 13, 0.8);
  padding: 10px 20px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px 1px rgb(13, 13, 13);

  transition: all 0.4s;
  transform: translateY(100px);
}

#up:hover {
  border: 1px 1px rgba(13, 13, 13, 0);
  background-color: rgba(13, 13, 13, 0);
  backdrop-filter: blur(0px);
}

.scrollUp {
  height: 100px;
}

@media (0px <= width < 1024px) {
  #up {
    transform: translateY(40px);
  }

  .scrollUp {
    height: 50px;
  }
}

.up-container {
  width: 90vw;

  display: flex;
  justify-content: end;
}

.nav__item {
  color: #cccccc;
}
