/****************** SERVICES ********************/
.service-section{
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(../images/services.jpg);
  background-size: cover;
  background-position: center;
  padding: 10px 8%;
  position: relative;
}
.service-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  margin-top: 4rem;
}
.service-content h1{
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 10px 10px;
  max-width: 650px;
  text-transform: uppercase;
}
.service-content h3{
  font-weight: 500;
  font-size: 1.5rem;
  margin: 15px;
  text-transform: uppercase;
  color: #db0001;
}
.services{
  display: grid;
  grid-template-columns: 30vw auto 30vw;
  gap: 1rem;
  margin: 2rem 0.5rem;
}
.service-list{
  margin: 10px auto;
}
.training, .sessions{
  margin: 10px auto;
}
.service-list h2, .sessions h2, .training h2{
  font-size: 1.8rem;
  color: var(--color-red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-list ul li{
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 0.6rem;
}
.sessions h3, .service-list h3{
  text-transform: uppercase;
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.sessions p, .service-list p, .training p{
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
}
.sessions em{
  color: var(--color-red);
  cursor: pointer;
}
.sessions span{
  color: var(--color-red);
  font-weight: 600;
}
.offer{
  margin-bottom: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.price{
  margin-bottom: 15px;
  font-size: 16px;
  color: #db0001;
}
hr{
  border: 1px solid #ccc;
  width: 100%;
}
.tribute-section{
  margin: 2rem auto;
  padding: 1rem 4rem;
  line-height: 1.5;
}
.tribute-section h1,h2,h3,h4,h5{
  color: #db0001;
  margin: 5px 0;
}
.tribute-section span{
  color: #db0001;
  cursor: pointer;
}

/*-------------RESPONSIVENESS---------*/
@media only screen and (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
    margin: 1.2rem 0.6rem;
  }
  .service-list {
    float: left;
    margin: 1rem 0;
  }
  .service-content h1{
    font-size: 2rem;
    line-height: 1.4;
    width: 80vw;
    letter-spacing: 1px;
    padding: 4px 2px;
    margin-bottom: 8px;
  }
  .service-content b{
    font-size: 0.9rem;
    font-weight: bolder;
  }
  .service-content h3{
    font-size: 1.3rem;
    font-weight: 500;
    width: 70vw;
  }
  .sessions h2, .service-list h2, .training h2{
    font-size: 1.4rem;
  }
  .tribute-section{
    padding: 1rem 2rem;
  }
}
