.title_slide {
  position: relative;
  height: 93vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 0 40px;
} 


body > div.title_slide > div:nth-child(1) p,
body > div.title_slide > div:nth-child(1) h1 {
  font-size: 5em;
  font-weight: 300;
  margin: 0;
  color: white;
  letter-spacing: -2px;
}

body > div.title_slide > div:nth-child(1) {
  max-width: 750px;
}


body > div.title_slide > div:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}


body > div.title_slide > div:nth-child(2) > div p {
  color: white;
  font-weight: lighter;
  font-size: 2rem;
  margin: 0;
  margin-bottom: 2rem;
}

body > div.title_slide > div:nth-child(2) > div > img {
  width: 5.5em;
  height: auto;
}

body > div.title_slide > div:nth-child(2) > button {
  color: #000000;
  padding: 0.3rem 2rem 0.4rem;
  box-shadow: 0 0 10px rgba(0, 247, 169, 0.047);
  border-radius: 50px;
  text-decoration: none;
  background-color: rgb(255, 255, 255);
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-family: inherit;
  border: none;
  font-weight: lighter;
  font-weight: 500;
  text-transform: uppercase;
}


body > div.title_slide > div:nth-child(2) > button:hover {
  background-color: black;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.097);
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

  @media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 812px)  {
    .title_slide {
      flex-direction: column;
      padding: 0 2rem;
      align-items: flex-start;
      height: fit-content;
      margin-bottom: 8rem;
      margin-top: 200px;
    }

    body > div.title_slide > div:nth-child(2) > div {
      flex-direction: row;
      margin-top: 2rem;
      margin-bottom: 3rem;
    }

  body > div.title_slide > div:nth-child(2) > button {
    background-color: #ffffff50;
  }

    body > div.title_slide > div:nth-child(2) > div img {
      height: 50px;
      width: auto;
      padding-top: 3px;
    }

    body > div.title_slide > div:nth-child(2) > div p {
      font-size: 2.5rem;
      margin: 0;
      margin-left: 1rem;
    }

    body > div.title_slide > div:nth-child(1) p,
body > div.title_slide > div:nth-child(1) h1 {
      font-size: 3.6em;
      max-width: 60%;
    }
  }














  .jobs {
    position: relative;
    margin: 0 1rem 3rem;
    background-color: #000000;
    color: white;
    padding-top: 3rem;
  }
  
  body > div.jobs > div {
    width: 100%;
  }
  
  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.4fr;    
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: center;
    align-items: center;
    padding: 0.5rem 0 0.7rem;
    margin: 0 1rem;
    border-top: white dashed 1.5px;
  }
  
  body > div.jobs > div > div:nth-child(4) > div:nth-child(1) {
    border-bottom: white dashed 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: -0.5px;
    font-size: 1rem;
    font-weight: lighter;
    justify-self: flex-start;
    margin-left: 5%;
    color: #c4c4c4;
  }
  
  body > div.jobs > div.job-grid > div > div:nth-child(1) > p:nth-child(4) {
    grid-area: 2 / 4 / 3 / 5;;
    letter-spacing: -1px;
    opacity: 0.5;
    font-size: 0.8rem;
    justify-self: center;
  }
  
  
  
  
  .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: 10rem;
    padding: 2rem 0 1rem;
    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(2, min-content);
    grid-auto-rows: min-content;
  }
  div.open-card.open > p:nth-child(2) {
    max-width: 800px;
  }
  
  @media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 812px)  {
    .open-card.open {
      padding: 2rem 0 2rem;
      overflow-y: scroll;
      margin: 0 1.5rem;
    }
  
    body > div.jobs > div.job-grid > div > div.open-card > p:nth-child(2) {
      max-width: 95%;
    }
  
    div.jobs > div.job-grid > div > div:nth-child(1) {
      margin: 0 1.5rem;
    }
  
    body > div.jobs > div > div:nth-child(4) {
      padding-bottom: 3rem;
    }
  
  }
  
  
  .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;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    font-weight: lighter;
  }
  
  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) {
  
  
  .jobs {
    margin: 0 40px 3rem;
    padding:  3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  }
  
 
















  .abt-sections {
  position: relative;
  padding: 0 1rem 3rem;
 }

 .founded {
  box-shadow: 0 0 2rem #00e7b129;
  background-color: rgb(0, 0, 0);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  color: #fff;
  flex-direction: column;
 }

 body > div.abt-sections > div > p:nth-child(1) > a {
  color: white;
  opacity: 0.8;
  font-size: 0.8rem;
  width: fit-content !important;
  height: fit-content !important;
 }

 .founded p:nth-child(1) {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.8rem;
  font-weight: lighter;
  opacity: 0.9;
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 1.5rem;
  width: 100%;
 }

.founded p svg {
  fill: white;
  margin-right: 0.5rem;
}

.founded p:nth-child(2) {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 0 2rem;
}

.founded div:nth-child(3) {
  width: 80%;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-left: 0.4rem;
  border-left: dotted white 1px;
}

body > div.abt-sections > div > div > p {
  height: fit-content;
  margin-bottom: 1rem !important;
}

.founded p:nth-child(4) {
  font-size: 0.83rem;
  font-weight: 600;
}.founded video,
.founded img.media-still {
  width: 100%;
  margin: 1rem 0 1rem;
  border-radius: 2px;
  box-shadow: 0 0 20px #0000004d;
  width: 100%;
  height: 100%;
}

body > div.abt-sections > div > a {
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: lighter;
  opacity: 0.9;
  color: white;
  width: 60%;
}

body > div.abt-sections > div > div > a {
  color: white;
}



@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {
  .abt-sections {
    padding-bottom: 0;
  }
}

@media only screen and (min-device-width: 800px) {
  .abt-sections {
    padding: 0rem 40px 3rem;
  }

  .founded {
    padding: 3rem;
    display: grid;
    grid-template-columns: 0.25fr 0.3fr 0.7fr 0.5fr;
    grid-template-rows: repeat(1, 0.5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .founded p:nth-child(1) {
    grid-area: 1 / 1 / 4 / 2;
    border-top: none;
    padding: 0;
    margin: 0;
    height: 2rem;
  }

  body > div.abt-sections > div > div > p {
    height: fit-content !important;
    opacity: 0.6 !important;
    font-size: 1
  }

  .founded p:nth-child(2) {
    grid-area: 1 / 2 / 2 / 4;
    font-size: 2.4rem ;
    margin-bottom: 1rem ;
  }

  .founded div:nth-child(3) {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    grid-area: 2 / 2 / 3 / 4;
    margin-top: 1rem;
    max-width: 600px;
  }

  .founded div:nth-child(3) H3 {
    font-weight: 200;
  }

  .founded p:nth-child(4) {
    font-size: 0.83rem;
    font-weight: 600;
    grid-area: 3 / 2 / 4 / 4;
    width: 80%;
    max-width: 550px;
  }

  body > div.abt-sections > div > a {
    grid: 3 / 2 / 4 / 4;
    margin-left: 100%;
    width: 200%;
    margin-top: 0.5rem;
  }

  body > div.abt-sections > div > div:nth-child(5) {
    grid-area: 3 / 4 / 4 / 5;
    width: 80%;
    margin-top: 0;
    max-width: 280px;

  }.founded video,
.founded img.media-still {
    height: fit-content;
    grid-area: 1 / 4 / 4 / 5;
    margin-top: 0.5rem;
    width: 95%;
    justify-self: left;
    align-self: center;
  }
}

@media only screen and (min-device-width: 1500px) {
  .founded p:nth-child(2) {
    font-size: 3vw;
    width: 90%;
  }
}







body > div.jobs > p {
  font-size: 4em;
  margin: 0;
  align-self: center;
  margin-bottom: 3rem;
  font-weight: lighter;
  letter-spacing: -2px;
  text-transform: uppercase;
  width: min-content !important;
  justify-self: center;
  margin-right: 80px;
  margin-left: 40px;
}

  @media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 812px)  {
    .jobs {
      margin-top: 5rem;
    }

    body > div.jobs > p {
      margin: 2rem 0 6rem;
    }

    body > div.news_insights_title {
      margin: 5rem 1rem 1rem;
      flex-direction: column;
    }

    body > div.news_insights_title > p.text {
      font-size: 3.5em !important;
    }


    body > div.news_insights_title > p:nth-child(2) {
      font-size: 0.9rem;
      width:  fit-content !important;
      text-align: left !important;
    }

    .jobs.two > div:nth-child(1) > p:nth-child(1) {
      margin-top: 0;
    }

    .jobs.two > div:nth-child(1) > p:nth-child(3) {
      margin-bottom: 3rem;
    }

    .jobs.two > div:nth-child(1) {
      margin-left: 2rem !important;
    } 

    .jobs.two > div:nth-child(1) {
      width: 70% !important;
    }

    body > div.insights_slide {
      margin-bottom: 8rem;
    }

  }




  body > div:nth-child(14) {
    flex-direction: row-reverse;
  }




  .jobs.two {
    background-color: white;
    color: black;
  }

  .jobs.two > div.job-grid > div > div:nth-child(1) {
    border-bottom: #000000 dashed 1.5px;
  }

  .jobs.two > div.job-grid > div > div:nth-child(1) > p:nth-child(3) {
    color: black;
  }

  .jobs.two > div.job-grid > div > div:nth-child(1) > p:nth-child(4) {
    opacity: 0.8;
    font-weight: 100;
  }

  .plus-line.horizontal.two, .plus-line.vertical.two {
    background-color: black;
    height: 3px;
  }

  .jobs.two > div.job-grid > div > div:nth-child(1) > p:nth-child(1) {
    font-weight: 450;
  }

  .jobs.two > div.job-grid > div > div:nth-child(1) > p:nth-child(3) {
    font-weight: 50;
  }

  .jobs.two > div:nth-child(1) {
    width: 50%;
    margin-left: 40px;
  }

  .jobs.two > div:nth-child(1) > p:nth-child(1) {
    font-size: 3rem;
    width: fit-content;
    font-weight: 500;
  }

  .jobs.two > div:nth-child(1) > p:nth-child(2) {
    font-weight: 500;
    width: 70%;
    max-width: 285px;
  }

  .jobs.two > div:nth-child(1) > p:nth-child(3) {
    margin-top: 3rem;
  }

  .jobs.two > div.job-grid > div > div.open-card.open > p:nth-child(2) {
    font-weight: 500;
    opacity: 1;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

.news_insights_title {
  position: relative;
  margin: 3rem 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

body > div.news_insights_title > p.text {
  margin: 0;
  color: white;
  letter-spacing: -4px;
  font-size: 5em;
  font-weight: 300;
}


body > div.news_insights_title > p:nth-child(2) {
  margin: 2rem 0;
  padding: 1rem;
  background-color: rgb(255, 255, 255);
  color: rgb(41, 41, 41);
  font-weight: lighter;
  width: 30%;
    text-align: right;
}

body > div.news_insights_title > p:nth-child(2) > a {
  font-weight: 600;
  color: rgb(0, 0, 0);
}






.core_values {
  position: relative;
  margin: 5rem 40px;
  display: flex;
  flex-direction: column;
  background-color: white;
  align-items: center;
  padding: 2rem 0 3rem;
}

body > div.core_values > div > div {
 display: flex;
 flex-direction: column;
 justify-content: baseline;
 align-items: center;
 width: 15%;
}

.core_values div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: baseline;
}

.core_values div div svg {
  height: 50px;
  width: auto;
}

body > div.core_values > div > div:nth-child(1) > svg {
  height: 40px;
}

body > div.core_values > p:nth-child(1) {
  margin-top: 0;
  font-weight: 800 !important;
}

.core_values div div p {
  text-align: center;
  font-size: 14px;
}

body > div.core_values > div > div > p:nth-child(2) {
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0;
}

body > div.core_values > p:nth-child(1) {
  font-weight: 400;
  text-transform: uppercase;
}

body > div.core_values > p:nth-child(2) {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  width: 25%;
  text-align: center;
  margin: 1rem 0 4rem;
}


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

    .core_values {
      padding: 2rem;
      margin: 4rem 1rem 5rem;
    }

    body > div.core_values > p:nth-child(2) {
      width: 100%;
    }

    body > div.core_values > div {
      flex-direction: column;
      align-items: center;
    }

    body > div.core_values > div > div {
      width: 100%;
      margin-bottom: 2rem;
    }

    body > div.core_values > div > div > p:nth-child(3) {
      width: 60%;
    }

    body > div.core_values > div > div > p:nth-child(2) {
      margin-top: 1rem;
    }

    body > div.core_values > p:nth-child(1) {
      font-size: 2em;
      padding-top: 2rem;
      margin: 0;
    }

    body > div.core_values > p:nth-child(2) {
      
    }
  }