
@font-face {
  font-family:"sofia-pro-bold";
  src:url("https://use.typekit.net/af/5d97ff/00000000000000007735f999/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/5d97ff/00000000000000007735f999/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/5d97ff/00000000000000007735f999/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
  }
  
  @font-face {
  font-family:"sofia-pro-extra-light";
  src:url("https://use.typekit.net/af/bb213c/00000000000000007735f995/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n2&v=3") format("woff2"),url("https://use.typekit.net/af/bb213c/00000000000000007735f995/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n2&v=3") format("woff"),url("https://use.typekit.net/af/bb213c/00000000000000007735f995/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n2&v=3") format("opentype");
  font-display:auto;font-style:normal;font-weight:200;font-stretch:normal;
  }
  
  @font-face {
  font-family:"sofia-pro-light";
  src:url("https://use.typekit.net/af/2e2409/00000000000000007735f990/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"),url("https://use.typekit.net/af/2e2409/00000000000000007735f990/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"),url("https://use.typekit.net/af/2e2409/00000000000000007735f990/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
  }
  
  @font-face {
  font-family:"sofia-pro-regular";
  src:url("https://use.typekit.net/af/b718ff/00000000000000007735f98d/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/b718ff/00000000000000007735f98d/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/b718ff/00000000000000007735f98d/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
  }

html {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

body {
  background-color: #212121;
  box-sizing: content-box;
}

body, h1, h2, p {
  margin: 0;
  padding: 0; }

/*
* Made by Erik Terwan
* 24th of November 2015
* All rights reserved
*
*
* If you are thinking of using this in
* production code, beware of the browser
* prefixes.
*/

#menuToggle a
{
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #c4b29c;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 30px;
  left: 30px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

.frame {
  -webkit-box-shadow:inset 0px 0px 0px 10px black;
  -moz-box-shadow:inset 0px 0px 0px 10px  black;
  box-shadow:inset 0px 0px 0px 10px black;
}

#contact-panel {
  position: fixed;
  z-index: 999; /* under overlay */
  background-color: black;
  width: 100%;
  height: 50px;
  text-align: center;
  transition: top .5s;
  top: -60px
}

@media screen and (max-width: 414px) {
  #menuToggle {
    top: 20px;
    left: 20px;
  }
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  height: 100vh;

  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  font-family:"sofia-pro-light";
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.swiper-navigation:last-of-type {
  margin-bottom: 30px !important;
}
.swiper-wrapper {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .swiper-wrapper {
    margin-top: 20px !important;
  }
  .swiper-container:last-of-type {
    margin-bottom: 20px
  }
}
@media screen and (max-width: 640px) {
  .swiper-wrapper {
    margin-top: 15px !important;
  }
  .swiper-container:last-of-type {
    margin-bottom: 15px
  }
}
@media screen and (max-width: 414px) {
  .swiper-wrapper {
    margin-top: 10px !important;
  }
  .swiper-container:last-of-type {
    margin-bottom: 10px
  }
}
.swiper-slide {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.swiper-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 15px;
  margin: 0 auto;
  margin-top: 5px;
  width: 87%;
}
.swiper-bullets {
  margin: 0 auto;
}
.swiper-pagination-bullet {
  background-color: white !important;
  margin: 0 3px;
}
.swiper-arrow {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 414px) {
  .swiper-arrow {
    display:none;
  }
}
.swiper-slide-next {
  cursor: url('../images/_shared/cursor-right.svg'), auto;
}
.swiper-slide-prev {
  cursor: url('../images/_shared/cursor-left.svg'), auto;
}
/*/////////////////////////*/
.logo-head {
  width: 65%;
}
@media screen and (max-width: 900px), (max-height: 900px) {
  .logo-head {
    width: 60%;
  }
}
@media screen and (max-width: 700px), (max-height: 700px) {
  .logo-head {
    width: 75%;
  }
}
@media screen and (max-width: 500px), (max-height: 500px) {
  .logo-head {
    width: 80%;
  }
}
.menutop {
  font-family:"sofia-pro-extra-light";
  font-size: 36px;
  padding-top: 40px;
  text-align: center;
  color: darkgray;
  display: none;
}
@media screen and (max-width: 768px) {
  .menutop {
    font-size: 28px;
  }
}
/*/////////////////////////*/
.title {
  font-family:"sofia-pro-light";
  font-size: 43px;
  /*padding: 0 120px;*/
  text-align: center;
  line-height: 52px;
  margin-bottom: 60px;
}
.text {
  font-family:"sofia-pro-extra-light";
  font-size: 40px;
  padding: 0 120px;
  text-align: center;
  line-height: 52px;
}
.icon {
  width: 100px; height: 100px;
  margin-bottom: 20px;
}
.button-white a {
  font-size: 30px;
  margin-top:50px;
  text-decoration: none;
  background-color: #272727;
  color: darkgray;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  display: block;
  padding: 0 30px;
  transition: background-color 1s;
}
.button-white a:hover {
  background-color: #3e3e3e;
}
.contact {
  display: none;
  background-color: black;
}
.contact .icon {
  width:200px;
  height: 200px;
}
@media screen and (max-width: 1112px), (max-height: 1112px) {
  .title {
    font-size: 35px;
    line-height: 45px;
  }
  .text {
    font-size: 32px;
    line-height: 42px;
    padding: 0 90px;
  }
}
@media screen and (max-width: 760px), (max-height: 760px) {
  .icon {
    width: 80px; height: 80px;
  }
  .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 50px;
  }
  .text {
    font-size: 28px;
    line-height: 35px;
    padding: 0 70px;
  }
}
@media screen and (max-width: 650px), (max-height: 650px) {
  .icon {
    width: 70px; height: 70px;
    margin-bottom: 15px;
  }
  .title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
  }
  .text {
    font-size: 25px;
    line-height: 29px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 500px), (max-height: 500px) {
  .icon {
    width: 65px; height: 65px;
    margin-bottom: 13px;
  }
  .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .text {
    font-size: 20px;
    line-height: 26px;
    padding: 0 30px;
  }
  .contact .icon {
    width:150px;
    height: 150px;
  }
}
@media screen and (max-width: 414px), (max-height: 414px) {
  .icon {
    width: 50px; height: 50px;
    margin-bottom: 10px;
  }
  .title {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  .text {
    font-size: 18px;
    line-height: 24px;
    padding: 0 20px;
  }
  .button-white a {
    font-size: 25px;
    margin-top:25px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 375px), (max-height: 375px) {
  .icon {
    width: 50px; height: 50px;
    margin-bottom: 10px;
  }
  .title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 22px;
  }
  .text {
    font-size: 17px;
    line-height: 22px;
    padding: 0 18px;
  }
  .contact .icon {
    width:120px;
    height: 120px;
  }
  .button-white a {
    font-size: 20px;
    margin-top:30px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 20px;
  }
}
/*/////////////////////////*/
.citation {
  font-family: "Times New Roman", Times, serif;
  font-size: 43px;
  font-style: italic;
  padding: 0 170px;
}
@media screen and (max-width: 1112px), (max-height: 1112px) {
  .citation {
    font-size: 40px;
    padding: 0 120px;
  }
}
@media screen and (max-width: 900px), (max-height: 900px) {
  .citation {
    font-size: 36px;
    padding: 0 90px;
  }
}
@media screen and (max-width: 760px), (max-height: 760px) {
  .citation {
    font-size: 30px;
    line-height: 38px;
    padding: 0 80px;
  }
}
@media screen and (max-width: 650px), (max-height: 650px) {
  .citation {
    font-size: 26px;
    line-height: 30px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 550px), (max-height: 550px) {
  .citation {
    font-size: 22px;
    line-height: 26px;
    padding: 0 35px;
  }
}
@media screen and (max-width: 500px), (max-height: 500px) {
  .citation {
    font-size: 20px;
    line-height: 24px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 375px), (max-height: 375px) {
  .citation {
    font-size: 18px;
    line-height: 21px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 320px), (max-height: 320px) {
  .citation {
    font-size: 16px;
    line-height: 19px;
    padding: 0 25px;
  }
}
/*/////////////////////////*/
.author, .source {
    font-family:"sofia-pro-regular";
    padding: 0 120px;
    text-align: center;
    margin-top: 100px;
}
.author {
  font-size: 26px;
}
.source {
  font-size: 24px;
}
.parentheses {
  margin-top: 18px;
  font-size: 25px;
  line-height: 32px;
  color: #303030;
}
.contact-link {
  font-family:"sofia-pro-regular";
  display: block;
  position: absolute;
  bottom:50px;
  border-bottom: dotted 1px white;
  font-size: 20px;
}
.contact-link2 {
  font-family:"sofia-pro-regular";
  display: inline-block;
  position: relative;
  border-bottom: dotted 1px white;
  font-size: 20px;
  padding-top: 10px;
}
@media screen and (max-width: 1112px), (max-height: 1112px) {
  .author, .source {
    font-size: 20px;
    padding: 0 100px;
    margin-top: 70px;
  }
  .parentheses {
    font-size: 25px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px), (max-height: 768px) {
  .author, .source {
    font-size: 20px;
    padding: 0 30px;
    margin-top: 30px;
  }
  .parentheses {
    margin-top: 12px;
    font-size: 23px;
    line-height: 29px;
  }
  .contact-link  {
    font-size: 18px;
    bottom:30px;
  }
}
@media screen and (max-width: 500px), (max-height: 500px) {
  .author, .source {
    font-size: 16px;
    padding: 0 30px;
    margin-top: 30px;
  }
  .parentheses {
    margin-top: 10px;
    font-size: 15px;
    line-height: 15px;
    line-height: 20px;
  }
  .contact-link  {
    font-size: 13px;
    bottom:20px;
  }
}
@media screen and (max-width: 375px), (max-height: 375px) {
  .contact-link  {
    font-size: 14px;
    bottom:18px;
  }
}
@media screen and (max-width: 320px), (max-height: 320px) {
  .author, .source {
    font-size: 14px;
    padding: 0 25px;
    margin-top: 25px;
  }
  .parentheses {
    margin-top: 10px;
    font-size: 13px;
    line-height: 19px;
  }
}
/*/////////////////////////*/
.button {
  font-family:"sofia-pro-light";
  font-size: 30px;
  line-height: 60px;
  height: 60px;
  padding: 0 30px;
  text-align: center;
  background-color: #CECDCD;
  border-radius: 30px;
}
/*/////////////////////////*/
.job-intro {
  width:100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.job-intro-image {
  flex-basis: 75%;
  overflow: hidden;
  text-align: center;
  padding-top:50px;
}
.job-intro-image img {
  max-width:100%;
  max-height:100%;
}
.job-intro-text {
  flex-basis: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* for the border */
  border-top: 1px solid black;
  width: 90%;
}
@media screen and (max-width: 1024px), (max-height: 1024px) {
  .job-intro-image {
    flex-basis: 78%;
    padding-top: 40px;
  }
  .job-intro-text {
    flex-basis: 22%;
  }
}
@media screen and (max-width: 414px), (max-height: 414px) {
  .job-intro-image {
    padding-top: 20px;
  }
}
/*/////////////////////////*/
.job-intro-text-title {
  font-family:"sofia-pro-light";
  font-size: 52px;
  margin-top: -15px;
}
.job-intro-text-specs {
  font-family:"sofia-pro-regular";
  font-size: 20px;
}
.job-intro-text-specs strong {
  font-family:"sofia-pro-bold";
}
@media screen and (max-width: 1024px), (max-height: 1024px)  {
  .job-intro-text-title {
    font-size: 43px;
    margin-top: -10px;
  }
  .job-intro-text-specs {
    font-size: 17px;
  }
}
@media screen and (max-width: 900px), (max-height: 900px)  {
  .job-intro-text-title {
    font-size: 38px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 800px), (max-height: 800px)  {
  .job-intro-text-title {
    font-size: 35px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 600px), (max-height: 600px)  {
  .job-intro-text-title {
    font-size: 30px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 500px), (max-height: 500px)  {
  .job-intro-text-title {
    font-size: 26px;
    margin-top: -5px;
  }
  .job-intro-text-specs {
    font-size: 14px;
  }
}
@media screen and (max-width: 414px), (max-height: 414px)  {
  .job-intro-text-title {
    font-size: 22px;
    margin-top: -3px;
  }
  .job-intro-text-specs {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px), (max-height: 400px)  {
  .job-intro-text-title {
    font-size: 20px;
    margin-top: -3px;
  }
  .job-intro-text-specs {
    font-size: 10px;
  }
}
@media screen and (max-width: 320px), (max-height: 320px)  {
  .job-intro-text-title {
    font-size: 19px;
    margin-top: 0;
  }
  .job-intro-text-specs {
    display: none;
  }
}

/*/////////////////////////*/
.icon-close {
  position:absolute;
  top:15px;
  left: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 999;
}
.popup {
  display: none;
  position: fixed;
  background-color: black;
  max-width: 90%;
  max-height: 80%;
  z-index: 9999;
  top: 50%;
  left: 50%;
  padding: 50px;
  border-radius: 20px;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  text-align: center;
  color: white;
  border: 1px solid #232323;
}
.popup a {
  color: white;
  text-decoration: none;
}
.popup a:hover {
  color: #c4b29c;
}
.popup-title {
  font-family:"sofia-pro-light";
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.popup-text {
  font-family:"sofia-pro-extra-light";
  font-size: 24px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 20px;
}
.popup-text-small {
  font-size: 20px;
  color: lightgray;
  line-height: 26px;
}
@media screen and (max-width: 414px)  {
  .popup {
    padding: 30px;
  }
  .popup a {
    font-size: 18px;
  }
  .popup-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 320px)  {
  .popup {
    padding: 20px;
  }
  .popup a {
    font-size: 16px;
  }
  .popup-title {
    font-size: 22px;
  }
  .popup-text-small {
    font-size: 16px;
    line-height: 20px;
  }
}

/*/////////////////////////*/
.copyright {
  font-family:"sofia-pro-regular";
  font-size: 13px;
  position: absolute;
}
.copyright-bottom {
  bottom: 10px;
}
.copyright-right {
  right: 10px;
}
@media screen and (max-width: 768px), (max-height: 768px)  {
  .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 414px), (max-height: 414px)  {
  .copyright {
    font-size: 11px;
  }
}
@media screen and (max-width: 375px), (max-height: 475px)  {
  .copyright {
    font-size: 10px;
  }
}

/*/////////////////////////*/
.rotation {
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
