* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  background-color: #fff;
  color: #000;
  font-family: Arial, sans-serif;
}

.header {
  /* padding: 1rem; */
  background-image: url("../img/band.jpg");
  width: 100%;
  height: 70vw;
  max-height: 680px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
}
/* .header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;

  background: rgb(251,15,134);
  background: -moz-linear-gradient(90deg, rgba(251,15,134,0.8841911764705882) 0%, rgba(251,15,134,0.1334908963585434) 100%);
  background: -webkit-linear-gradient(90deg, rgba(251,15,134,0.8841911764705882) 0%, rgba(251,15,134,0.1334908963585434) 100%);
  background: linear-gradient(90deg, rgba(251,15,134,0.8841911764705882) 0%, rgba(251,15,134,0.1334908963585434) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb0f86",endColorstr="#fb0f86",GradientType=1);
} */
.header .img {
  /* width: auto;
  height: 100%; */
}
.header.small {
  height: 25vw;
  background-position: 0 45%;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: rgb(251,15,134);
  background: -moz-linear-gradient(90deg, rgba(251,15,134,0.9841911764705882) 0%, rgba(251,15,134,0.4334908963585434) 100%);
  background: -webkit-linear-gradient(90deg, rgba(251,15,134,0.9841911764705882) 0%, rgba(251,15,134,0.4334908963585434) 100%);
  background: linear-gradient(90deg, rgba(251,15,134,0.9841911764705882) 0%, rgba(251,15,134,0.4334908963585434) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb0f86",endColorstr="#fb0f86",GradientType=1);
}

nav a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  padding: .5rem;
}
nav a.active {
  text-decoration: underline;
  pointer-events: none;
}
nav a.active,
nav a:hover {
  color: #000;
}

.content {
  max-width: 1000px;
  text-align: center;
  padding-top: 2rem;
  margin: 0 auto;
}
.content h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.content h2 {
  margin-bottom: 2rem;
}
.content h3 {
  margin-bottom: .5rem;
}
.content a {
  color: #000;
  text-decoration: none;
  font-style: italic;
  padding: .1rem 0;
}
.content a:hover {
  color: rgb(251,15,134);
}

.content .photos,
.content .photos img {
  width: 100%;
}

.content .photos .photo {
  margin-bottom: 1rem;
}

.content .contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.content .logo {
  padding: 0;
  width: 5rem;
  margin: 1rem auto;
}
.content .logo.invert {
  -webkit-filter: invert(100%); /* Safari/Chrome */
  filter: invert(100%);
}
.content .logo.big {
  width: 20rem;
}

.logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.logos .logo {
  width: 8rem;
}

section {
  margin-bottom: 5rem;
}
section:last-child {
  margin-bottom: 0;
}

.description {
  padding: 2rem 3rem;
  font-size: 1.2rem;
  line-height: 1.7rem;
  text-align: center;
}

.videoContainer {
  padding: 0 5rem;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.videoContainer .videoThumbnailHolder {
  width: 100%;
  display: grid;
  padding-bottom: 1rem;
  text-decoration: none;
  grid-column: 1 / span 2;
}
.videoContainer .videoThumbnailHolder:last-child {
  padding-bottom: 0;
}

.videoContainer .videoThumbnailHolder img {
  width: 100%;
}

/* .videoContainer .videoThumbnailHolder:first-child {
  grid-column: 1 / span 4;
} */

/* .videoContainer .videoThumbnailHolder:nth-child(2),
.videoContainer .videoThumbnailHolder:nth-child(3) {
  grid-column: 2 / span 2;
}
.videoContainer .videoThumbnailHolder:nth-child(4) {
  grid-column: 2;
}
.videoContainer .videoThumbnailHolder:nth-child(5) {
  grid-column: 3;
} */

.videoContainer .videoThumbnailHolder:before {
  display: none;
}

.videoContainer .videoThumbnailHolder img {
  grid-row: 1;
}
.videoContainer .videoThumbnailHolder .videoThumbnailOverlay,
.videoContainer .videoThumbnailHolder .videoThumbnailTitle {
  align-self: center;
  z-index: 1;
  text-align: center;
  grid-column: 1;
  grid-row: 1;
  font-weight: normal;
}
.videoContainer .videoThumbnailHolder .videoThumbnailTitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #000;
}
.videoContainer .videoThumbnailHolder .videoThumbnailTitle span {
  color: #FF6901;
}

.videoContainer .videoThumbnailHolder iframe {
  height: 23rem;
}
/* .videoContainer .videoThumbnailHolder:first-child iframe {
  height: 31rem;
}
.videoContainer .videoThumbnailHolder:nth-child(4) iframe,
.videoContainer .videoThumbnailHolder:nth-child(5) iframe {
  height: 12rem;
} */

.videoContainer .videoThumbnailHolder img,
.videoContainer .videoThumbnailHolder .videoThumbnailTitle {
  grid-row: auto;
}

.videoContainer.home {
  margin-bottom: 0;
}
.videoContainer.home .download {
  display: none;
}


.videoContainer .download {
  padding: 1rem;
  font-weight: bold;
  font-style: normal;
}

.servicesHolder {
  padding: 0 1rem;
  flex-direction: column;
}

.socials {
  height: 6rem;
  background-color: #000;
  padding: .75rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.socials a {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.socials a img {
  height: 100%;
}

.footer {
  padding-top: 1rem;
}

.footer .title {
  width: 15rem;
  margin: 2rem auto;
}
.footer .title img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .videoContainer .videoThumbnailHolder iframe {
    height: 40vw;
  }
  /* .videoContainer .videoThumbnailHolder:first-child iframe {
    height: 100%;
  } */
  /* .videoContainer .videoThumbnailHolder:nth-child(4) iframe,
  .videoContainer .videoThumbnailHolder:nth-child(5) iframe {
    height: 16vw;
  } */
}
@media only screen and (max-width: 850px) {

  .header.small {
    height: 50vw;
  }
  .header .img {
    height: auto;
    width: 100%;
  }
  nav {
    padding: .5rem;
  }
  nav a {
    font-size: 1.5rem;
  }
  .videoContainer {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 0;
  }
  .videoContainer .videoThumbnailHolder iframe {
    height: 44vw;
  }
  /*.videoContainer .videoThumbnailHolder:first-child iframe {
    height: 39.5vw;
  }
  .videoContainer .videoThumbnailHolder:nth-child(4) iframe,
  .videoContainer .videoThumbnailHolder:nth-child(5) iframe {
    height: 39.5vw;
  } */
  /* .videoContainer .videoThumbnailHolder {
    grid-column: 1 / span 2 !important;
  } */
}

@media only screen and (max-width: 600px) {
  .videoContainer .videoThumbnailHolder iframe {
    height: 50vw;
  }
  .videoContainer .videoThumbnailHolder .videoThumbnailTitle {
    font-size: .9rem;
  }
  .description {
    padding: 2rem 1.5rem;
  }
  .socials {
    height: 4rem;
  }
}
