@import url('https://fonts.googleapis.com/css?family=Lato');
html, body {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Merriweather", sans-serif;
}

/* start of header */

.header{
    margin: 0;
    height: 100px;
    background-color: #FFB347;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    padding-right: 45px;
    flex-wrap: wrap;
  }
  
  .header-title {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    color: white;
   }
   
   .header-title img {
     height: 85px;
     padding: 8.5px;
   }
   
   .header-title h1{
     padding: 10px;
   }

  .nav a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
  }
  
  .nav a:hover{
    color: #FFDF9E;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
  }
  
  .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    
  }
  
  .nav li {
    margin-left: 25px;
    font-size: 25px;
  }
/* end of header */

/*****************************/

/* start of main */

.main {
    padding: 10px;
    margin: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.main h1 {
    font-size: 50px;
}

.main p {
  margin-right: 20px;
  font-size: 30px;
  line-height: 1.5;
  color: rgb(68, 67, 67);
}

.main .apply-button {
  background-color: #FFDF9E;
  color: rgb(68, 67, 67);
  font-family: 'Merriweather';
  text-align: center;
  width: 300px;
  height: 75px;
  border:0;
  padding: 17px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 35px;
  margin: 0;
  top: 50%;
  font-weight: bold;
}

.apply-button:hover{
  background-color: #fdc554;
}


.monitor {
  width:475px;
  height: 250px;
  overflow-y:scroll;
  border: solid 1em #333;
  border-radius:.5em;
  margin-top: -15px;
  background-color: rgb(180, 179, 179);
  background-image: url("../jpg/sl_boys-2.jpg");
  background-size: 610px;
  background-position: center;
  background-position-x: 3px;
  background-repeat: no-repeat;
  padding: 4em;
}

.stand:before {
  content:"";
  display:block;
  position:relative;
  background: #222;
  width: 150px;
  height: 50px;
  top: 445px;
  left:240px;
}

.stand:after {
   content:"";
   display:block;
   position:relative;
   background:#333;
   border-top-left-radius:.5em;
   border-top-right-radius:.5em;
   width: 300px;
   height: 15px;
   top: 50px;
   left: 160px;
}

/* some lines to jazz it up */
.line {
    background-color: #FFB347;
    height: 10px;
    margin-top: 38px;
  }

  .line2 {
    background-color: #FFDF9E;
    height: 30px;
  }

/* end of main */

/*****************************/

/* start of 'steps' (application steps) */

.banner-left {
    background: #FFB347;
    padding: 20px;
    padding-left: 50px;
    font-size: 45px;
    text-align: center;
    position: relative;
    margin-left: -50px;
    width: 800px;

  }
  
  .banner-left:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 46px solid transparent;
    border-right: 40px solid white;
    position: absolute;
    right: 0;
    top: 0;
  }

  .steps-wrapper .banner-left {
      font-size: 50px;
      color: white;
      text-shadow: 1px 0px gray;
  }

  .steps-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
  }


  .step {
    border: solid 5px #FFB347;
    padding: 0px 20px;
    margin: 20px;
    border-radius: 15px;
  }

  .step-title {
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    margin: 0 45px;
    margin-top: 20px;
    flex-grow: 1;
  }

  .number-circle {
    font-family: 'Lato';
    display: inline-block;
    border-radius: 50%;
    background-color:#FFB347;
    margin: 0%;
    margin-right: 15px;
    width: 50px;
    font-size: 40px;
    text-align: center;
    color: white;
  }

  .step-title h1{
    display: inline-block;
    margin: 0%;
    font-size: 40px;
    text-align: center;
    color: black;
  }

  .step .clarify {
      line-height: 1.5;
      color: #333;
      font-size: 25px;
      padding: 0 20px;
     
  }

  .step button {
    background-color: #ffb54d;
    color: rgb(68, 67, 67);
    font-family: 'Merriweather';
    width: 200px;
    height: 50px;
    border:0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 23px;
    content:"";

    display:block;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;

  }

  .step button:hover{
      background-color: #ff9a0b;
  }


/* end of 'steps' */

/*****************************/

/* start of extra questions section */

.faq {
  width: 100%;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 140%;
  opacity: 0.3;
  opacity: 1;
  display: grid;
  place-items: center;
  border-top: 10px dotted #FFDF9E;
}

.card {
  margin-top: 50px;
}
.acc-container {
  padding: 0 2rem;
}

.acc-btn {
  width: 100%;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  cursor: pointer;
  background: inherit;
  border: none;
  outline: none;
  text-align: left;
  transition: all 0.5s linear;
  width: 90%;
  font-family: "Merriweather", sans-serif;
}

.acc-btn:after {
  content: "\27A4";
  background-color: #ffb54d;
  border-radius: 50%;
  padding: 10px;
  padding-bottom: 18px;
  padding-left: 12px;
  height: 20px;
  text-align: center;
  color: white;
  float: right;
  transition: all 0.3s linear;
}

.acc-btn:hover{
  background-color: #fde3be;
}
.acc-btn.is-open:after {
  transform: rotate(90deg);
}

.acc-btn:hover, .acc-btn.is-open {
  color: #000;
  font-weight: bold;
}

.acc-content {
  max-height: 0;
  color: rgba(0,0,0,0.75);
  font-size: 1.5rem;
  margin: 0 2rem;
  padding-left: 1rem;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  border-bottom: 1px solid #ccc;
  font-family: "Merriweather", sans-serif;
}


.questions-2 {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 30px;
  font-style: oblique;
}


.questions-2 a {
  text-decoration: none;
  color: #ff9a0b;
  font-family: 'Merriweather';
  cursor: pointer;
  font-weight: bold;
}

.questions-2 a:hover{
  color: #b67418;
}

/* end of extra questions section */

/*****************************/

/* start of coordinators section */


.coordinators {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;

}


.coordinators h1{
    text-align: center;
    margin: 10px 0px;
}

.coordinators p {
    line-height: 1.75;
    margin: 20px 15%;
    font-size: 20px;

}

.coordinators a {
    text-decoration: none;
    color: darkorange;
    font-size: 20px;
}

.coordinators a:hover {
  cursor: pointer;
}

.ribbon {
    padding: 15px;
    height: 50px;
    background: #FFB347;
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    max-width: 600px;
    display: block;
    margin: 20px auto;
    margin-top: 45px;
  }


  .ribbon h1 {
    text-align: center;
    margin: auto;
    display: block;
  }
/* end of coordinators section */

/*****************************/

/* start of footer */

.footer{
  background-color: #FFB347;
  padding: 10px;
  margin-top: 100px;

}

.footer-items {
  display: flex;
  justify-content: left;
  color: white;
  overflow: auto;
  
}

.footer-items a {
  padding: 40px;
  text-decoration: none;
  color: white;
}


.footer-items a:hover{
  color: rgb(245, 216, 153);
  transform: scale(0.9,0.9);
  transition: all 0.3s;
}

/* end of footer */
