
body > header > div > div.head-col.c3 > a.jumble.book {
    background: linear-gradient(45deg, #01755a, #00e7b1);
}


.title-slide {
    max-width: 100vw;
    height: fit-content;
    position: relative;
    margin: 25vh 1rem 3rem;
  }

  body > div.title-slide > div > p:nth-child(1) {
    margin-top: 0rem;
    display: inline-block;
    font-size: calc(100vw / 5.1); 
    white-space: nowrap;    font-weight: 500;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    background-color: #fff;
    width: fit-content;
    padding: 0 5px;
    background: linear-gradient(-45deg, #ffffff 25%, #6a6a6a0c, #ffffff, #ffffff, #ffffff);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    height: fit-content;
  }

  body > div.title-slide > div > div {
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 0.5fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 0 7% 0 5%;
  }

  body > div.title-slide > div > div > p:nth-child(1) {
    text-transform: uppercase;
    font-weight: lighter;
    font-size: 1.8rem;
    grid-area: 1 / 2 / 2 / 3;
    justify-self: flex-end;
    width: fit-content;
    text-align: right;
    margin-top: 0;
  }

  body > div.title-slide > div > div > p:nth-child(2) {
    font-size: 0.75rem;
    width: 80%;
    text-align:left;
    justify-self: flex-start;
    align-self: baseline;
    grid-area: 1 / 1 / 2 / 2;
    margin: 0;
    opacity: 0.6;
  }

  body > div.title-slide > div > div > svg.bi.bi-arrow-down-circle-fill {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: flex-end;
    height: 5rem;
    width: 5rem;
    background: linear-gradient(-45deg, #ffffff 25%, #6a6a6a0c, #02a17c, #02634c, #029472);
    background-size: 400% 400%;
    animation: gradient 6s ease infinite;
    box-shadow: 0 0 2rem #01ba8fa7;
    border-radius: 50px;
    position: relative;
   }


 body > div.title-slide > div > div > svg:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
    align-self: last baseline;
  }

  @media only screen 
  and (min-device-width: 800px) {
    body > div.title-slide > div > p:nth-child(1) {
      font-size: 9vw;
      margin-left: 0.2em;
    }

    body > div.title-slide > div {
      display: flex;
      flex-direction: row;
    }
  }




















  .jobs {
    position: relative;
    margin: 0 1rem 3rem;
    background-color: #000000;
    color: white;
    padding-top: 3rem;
  }


  .title-box {
    display: grid;
    flex-direction: column;
    margin: 0 0 3.5rem;
  }

  .jobs .title-box:nth-child(1) p:nth-child(1) {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    justify-self: center;
    margin-left: -30%;
    text-transform: uppercase;
  }
  .jobs .title-box:nth-child(1) p:nth-child(2) {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    justify-self: center;
    margin-left: 20%;
    text-transform: uppercase;
  } 


  body > div.jobs > div.job-grid > div > div > p {
    font-size: 2rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: -1px;
    grid-area: 1 / 1 / 2 / 4;
    justify-self: flex-start; 
  }

  div.jobs > div.job-grid > div > div:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 0.5fr;    
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: center;
    align-items: center;
    padding: 0.5rem 0 1rem;
    margin: 0 1rem;
    border-top: white dotted 1.5px;
  }


  .plus-container {
    grid-area: 1 / 4 / 2 / 5;
    display: inline-block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: relative;
  }
  .plus-line {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    height: 1.5px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.3s ease;
  }
  .vertical {
    transform: translate(-50%, -50%);
  }


  body > div.jobs > div.job-grid > div > div:nth-child(1) > p:nth-child(3) { 
    grid-area: 2 / 1 / 3 / 3;
    letter-spacing: -1px;
    font-size: 0.8rem;
    justify-self: flex-start;
    margin-top: 10%;
  }

  body > div.jobs > div.job-grid > div > div:nth-child(1) > p:nth-child(4) {
    grid-area: 2 / 3 / 3 / 5;;
    letter-spacing: -1px;
    opacity: 0.5;
    font-size: 0.8rem;
    justify-self: flex-end;
    margin-top: 10%;
  }




  .open-card {
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: cubic-bezier(.64,-0.13,.37,1.09) 1s;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, min-content);
    grid-auto-rows: min-content;
  }
  .open-card.open {
    height: 15rem;
    padding: 1rem 0;
    margin: 0 1rem;
    transition: cubic-bezier(.64,-0.13,.37,1.09) 1s;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, min-content);
    grid-auto-rows: min-content;
  }


.horizontal {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: cubic-bezier(.64,-0.13,.37,1.09) 1s;
}

.horizontal.open {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: cubic-bezier(.64,-0.13,.37,1.09) 1s
}

body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(1) {
  font-size: 1.3rem;
  letter-spacing: -1px !important;
  grid-area: 1 / 1 / 2 / 3;
  margin-bottom: 0.8rem;
}

body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(2) {
  font-size: 1rem;
  letter-spacing: 0px !important;
  opacity: 0.5;
  grid-area: 2 / 1 / 3 / 3;
}

body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(3) {
  font-size: 0.7rem;
  letter-spacing: 0px !important;
  opacity: 0.5;
  grid-area: 3 / 1 / 4 / 3;
  margin-bottom: 1.5rem;
}

body > div.jobs > div.job-grid > div> div.open-card > p:nth-child(5) {
  font-size: 1.2rem;
  letter-spacing: 0px !important;
  grid-area: 4 / 1 / 5 / 2;
  align-self: center;
}

body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(6) {
  font-size: 0.7rem;
  letter-spacing: 0px !important;
  opacity: 0.5;
  grid-area: 4 / 2 / 5 / 3;
  justify-self: flex-start;
  align-self: center;
}

body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(3) {
  margin-bottom: 1rem;
}

.apply-btn {
  grid-area: 5 / 1 / 6 / 3 !important; 
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.3rem 1rem 0.6rem;
  margin-top: 1.25rem;
  background-color: white;
  color: black;
  border-radius: 2px;
  text-decoration: none;
}

.apply-btn svg {
  height: 2.8rem;
  width: auto;
  margin-top: 0.3rem;
}

.apply-btn > p {
  margin: 0;
  color: black;
}








@media only screen 
and (min-device-width: 800px) {
  .title-slide {
    height: 50vh;
    margin: 100px 40px 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  body > div.title-slide > div > p {
    margin-bottom: 0;
  }

  body > div.title-slide > div > div > p:nth-child(2) {
    font-size: 1vw;
    justify-self: flex-end;
    align-self: center;
  }

  body > div.title-slide > div > div > p:nth-child(1) {
    font-size: calc(2vw + 1rem) !important;
    align-self: center;
    margin-bottom: 5%;
  }

  body > div.title-slide > div {
    height: min-content;
    margin-top: 5%;
  }

  .jobs {
    margin: 0 40px 8rem;
    padding:  3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .title-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-box p {
    width: fit-content;
    font-size: calc(2rem + 5vw) !important; 
  }
}
















body > div.jobs > div.job-grid > div:nth-child(2) > div:nth-child(1), body > div.jobs > div.job-grid > div:nth-child(4) > div:nth-child(1),  body > div.jobs > div.job-grid > div:nth-child(3) > div:nth-child(1), body > div.jobs > div.job-grid > div:nth-child(1) > div:nth-child(1){
  opacity: 0.4;
  pointer-events: none;
  cursor: none;
}

body > div.jobs > div.job-grid > div > div:nth-child(1) > p:nth-child(4) {
  opacity: 1;
}

body > div.jobs > div.job-grid > div > div:nth-child(1) > p:nth-child(3) {
  letter-spacing: -.5px;
}


@media only screen 
and (min-device-width: 320px) 
and (max-device-width: 812px) 
and (-webkit-min-device-pixel-ratio: 2) {


        body > div.title-slide > div > div > p:nth-child(1) {
            justify-self: center;
            margin-left: 20%;
        }

        body > div.title-slide > div > div > svg.bi.bi-arrow-down-circle-fill {
            justify-self: center;
            width: 4rem !important;
            height: 3rem !important;
            margin-left: 40%;
        }
}