.h1 {
    font-size: 8rem;
    font-weight: 300;
  }
  
  .h2 {
    font-size: 4.2rem;
  }
  
  .h3 {
    font-size: 3.2rem;
  }
  
  .h4 {
    font-size: 2rem;
  }
  
  .light {
    font-weight: 300;
  }
  
  .automotive__header {
    height: 100%;
    min-height: 80vh;
    background-color: black;
    color: #fc3;
    padding: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent)), url("../img/auto-main.jpg");
    background-image: linear-gradient(to top, black, transparent), url("../img/auto-main.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 10px solid #fc3;
  }
  
  .automotive__info {
    background-color: black;
    color: white;
    padding: 3vw;
  }
  
  .automotive__info .h4 {
    margin-bottom: 2rem;
  }
  
  .course__title {
    padding: 3vw;
    background-color: black;
    color: #fc3;
    position: relative;
  }
  
  .course__title::after {
    content: '';
    height: 100%;
    width: 30%;
    border-top: 5px solid #fc3;
    border-left: 5px solid #fc3;
    border-bottom: 5px solid #fc3;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .course__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  
  @media only screen and (max-width: 800px) {
    .course__wrapper {
      -ms-grid-columns: 1fr;
          grid-template-columns: 1fr;
    }
  }
  
  .course__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  
  .course__list {
    list-style: none;
    padding: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .course__list--single {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .modules {
    padding: 3vw;
    background-color: black;
    color: white;
  }
  
  .modules__single {
    margin-bottom: 15rem;
  }
  
  .modules__single--1 {
    background-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(rgba(0, 0, 0, 0.9)), to(black)), url("../img/auto1.jpg");
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.9), black), url("../img/auto1.jpg");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }
  
  .modules__single--2 {
    text-align: right;
    margin-left: auto;
    padding: 5vw 0;
    background-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(rgba(0, 0, 0, 0.9)), to(black)), url("../img/auto2.jpg");
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.9), black), url("../img/auto2.jpg");
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
  }
  
  @media only screen and (max-width: 800px) {
    .modules__single--2 {
      padding: 0;
    }
  }
  
  .modules__single--3 {
    background-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(rgba(0, 0, 0, 0.6)), to(black)), url("../img/auto4.jpeg");
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.6), black), url("../img/auto4.jpeg");
    padding: 5vw 0;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }
  
  @media only screen and (max-width: 800px) {
    .modules__single--3 {
      padding: 0;
      background-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(rgba(0, 0, 0, 0.7)), to(black)), url("../img/auto4.jpeg");
      background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.7), black), url("../img/auto4.jpeg");
    }
  }
  
  .modules .h2 {
    margin-bottom: 3rem;
  }
  
  .modules__list {
    list-style: none;
  }
  
  .modules__list li {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  
  .misc {
    padding: 3vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  
  @media only screen and (max-width: 800px) {
    .misc {
      -ms-grid-columns: 1fr;
          grid-template-columns: 1fr;
      grid-row-gap: 3rem;
    }
  }
  
  .misc .h3 {
    margin-bottom: 2rem;
  }
  
  .misc li {
    font-size: 1.6rem;
  }
  
  .ctx {
    padding: 3vw;
    background-color: black;
    color: #fc3;
  }