::selection {
  color: rgb(255, 255, 255);
  background-color: #d0021b;
}

/* --------------- HEADER -------------- */

header.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  color: #fff;
  background-image: url("../assets/img/header-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0px -6rem 10rem -6rem #000000;
}
header.masthead img.logo {
  width: 23rem;
  margin-bottom: 0;
}

header.masthead .masthead-heading {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffffd1;
  font-style: italic;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
@media (min-width: 768px) {
  header.masthead img.logo {
    width: 40rem;
  }
  header.masthead .masthead-heading {
    font-size: 1.2rem;
  }
}

/* --------------- PAGE-SECTION -------------- */

.page-section {
  padding: 3rem;
}
.page-section h2.section-heading {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2E2E2E;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.page-section h3.section-subheading {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #666666;
  font-family: "PT Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-bottom: 3rem;
}
.page-section h3.section-subheading a button {
  margin: 0.1rem 0rem;
  padding: 2px 7px;
  border-radius: 0.8rem;
  border: none;
  font-style: italic;
  font-weight: 500;
  background-color: #d0021b;
  color: #fff;
  transition-duration: 1000ms;
}
.page-section h3.section-subheading a button:hover {
  background-color: #a90417;
}

/* --------------- SERVICES / PRESTATIONS -------------- */

#services {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
#services .services-body h4 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 1.4rem;
  color: #2E2E2E;
}
#services .services-body p {
  font-family: "PT Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  color: #666666;
  line-height: 1.6rem;
  font-style: italic;
  text-align: justify;
}
#services .services-body .aster {
  font-size: 1.2rem;
  color: #b1b1b1;
}
#services .services-body .services-link {
  display: flex;
  align-items: center;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-decoration: none;
  color: #212121;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1.1px;
  font-size: 0.8rem;
}
#services .services-body .services-link:hover {
  text-decoration: underline;
}
#services .services-body .services-link > .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  position: relative;
  transform: rotate(-45deg);
  margin-left: 0.2rem;
  transition: all .4s ease;
}
#services .services-body .services-link > .arrow::before {
  display: block;
  background-color: #d0021b;
  width: 3px;
  transform-origin: bottom right;
  height: 2px;
  position: absolute;
  opacity: 0;
  bottom: calc(-2px / 2);
  transform: rotate(45deg);
  transition: all .3s ease;
  content: "";
  right: 0;
}
#services .services-body .services-link:hover > .arrow {
  transform: rotate(-45deg) translate(4px, 4px);
  border-color: #d0021b;
}
#services .services-body .services-link:hover > .arrow::before {
    opacity: 1;
    width: 10px;
}


/* --------------- AUDIOCARDS -------------- */


#audiocard .audiocard-item .audiocard-link {
  position: relative;
  display: block;
  margin: 0 auto;
}
#audiocard .audiocard-item .audiocard-link .audiocard-hover {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(transparent, #00000071);
  justify-content: center;
  opacity: 0;
  transition: opacity ease-in-out 0.20s;
  border-radius: 0.3rem;
}
#audiocard .audiocard-item .audiocard-link:hover .audiocard-hover {
  opacity: 0.7;
}

#audiocard .audiocard-item img {
  border-radius: 0.3rem;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.186);
}
#audiocard .audiocard-item .audiocard-link .audiocard-hover .audiocard-hover-content {
  font-size: 4rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#audiocard .audiocard-item .player {
  background-color: transparent;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 0.7rem;
}
#audiocard .audiocard-item .player audio {
  width: 100%;
}

.btn-social {
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 100%;
}
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: #666666;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}