@charset "UTF-8";
/**
 * PS Partner 2018
 * Author: Pretty Big Deal - Swecompetence AB
 * Imitation Is Suicide
 */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700");
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. Abstracts - Configuration and helpers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/**
 *  Main variables
 */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9. Modals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2. Vendors
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3. Base - Resetters and typography
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4. Layout - Frameword such as header, footer and sidebars
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/**
 *
 *  This is our modal base, there are three main wrappers to know about.
 *  .modal-bg is our backdrop
 *  .modal-inner-content is our inner modal content
 *  .modal-outer-contet contains any elements that should be viewed on top of the modal (close, navigation and so on).
 *
 *  $modal-outer-padding    is set in abstract/_variables.scss      The padding between the viewport and modal on mobile.
 *  $modal-width            is set in abstract/_variables.scss      The max width of the modal.
 *  $modal-backdrop-bg      is set in abstract/_variables.scss      The color of our backdrop.
 *  $modal-bg               is set in abstract/_variables.scss      The color of our modal.
 *  $modal-close-bg         is set in abstract/_variables.scss      The color of our close button.
 *  $modal-inner-padding-l  is set in abstract/_variables.scss      The amount of padding between the modal edge and content on large devices.
 *  $modal-inner-padding-s  is set in abstract/_variables.scss      The amount of padding between the modal edge and content on small devices.
 *
 */
.modal-wrapper.video .modal-bg .modal-outer-contet {
  max-width: 80% !important;
  background-color: #000000;
}

.modal-wrapper.video .modal-bg .modal-inner-content {
  max-width: 80% !important;
  background-color: #000000;
}

@media screen and (max-width: 640px) {
  .modal-wrapper.video .modal-bg .modal-outer-contet {
    max-width: 100% !important;
  }
  .modal-wrapper.video .modal-bg .modal-inner-content {
    max-width: 100% !important;
  }
}

.modal-wrapper {
  display: none;
}

.modal-wrapper.active {
  display: block;
}

.modal-wrapper .modal-bg {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-align-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-wrapper .modal-bg .modal-outer-contet {
  height: 1px;
  position: relative;
  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;
  max-width: 700px;
  width: 100%;
}

.modal-wrapper .modal-bg .modal-outer-contet .modal-close {
  width: 32px;
  height: 32px;
  top: -15px;
  right: -16px;
  background-color: #7BA2C4;
  border-radius: 50%;
  background-clip: padding-box;
  position: absolute;
  z-index: 400;
  cursor: pointer;
  background-image: url("../img/icon-cross.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.modal-wrapper .modal-bg .modal-outer-contet .modal-close:hover {
  background-color: #7BA2C4;
}

.modal-wrapper .modal-bg .modal-inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  max-width: 700px;
  max-height: 100%;
  border-radius: 4px;
  background-clip: padding-box;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.modal-wrapper .modal-bg .modal-inner-content .modal-close-text {
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: block;
  margin: calc(40px - 5px) 0px -7px 0px;
  color: #AFAFAF;
}

.modal-wrapper .modal-bg .modal-inner-content .modal-close-text:hover {
  color: #7BA2C4;
}

.modal-wrapper .modal-bg header {
  padding: 40px;
}

.modal-wrapper .modal-bg header h2 {
  font-size: 30px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
  margin: -6px 0px -6px 0px;
}

@media screen and (max-width: 1024px) {
  .modal-wrapper .modal-bg header h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .modal-wrapper .modal-bg header h2 {
    font-size: 21px;
    line-height: 25px;
  }
}

.modal-wrapper .modal-bg header p {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: center;
  margin: 6px 0px -6px 0px;
}

@media screen and (max-width: 1024px) {
  .modal-wrapper .modal-bg header p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  .modal-wrapper .modal-bg header p {
    font-size: 15px;
    line-height: 23px;
  }
}

.modal-wrapper .modal-bg .modal-content-wrap {
  padding: 40px;
  background-color: #f6f6f6;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .modal-wrapper .modal-bg .modal-inner-content .modal-close-text {
    margin: calc(30px - 5px) 0px -7px 0px;
  }
  .modal-wrapper .modal-bg header {
    padding: 30px;
  }
  .modal-wrapper .modal-bg .modal-content-wrap {
    padding: 30px;
    background-color: #f6f6f6;
  }
}

/**
 *  Connect - Sign up modal styles
 */
#modal-section-signup {
  height: 600px;
}

#modal-section-signup button {
  margin-bottom: 10px;
}

#modal-section-signup button:last-of-type {
  margin-bottom: 0px;
}

@media screen and (max-width: 1024px) {
  #modal-section-signup {
    height: 100vh;
  }
}

@media screen and (max-width: 640px) {
  #modal-section-signup {
    height: 100vh;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5. Pages - Page specific styling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.page-template-prod-management-template, .page-template-prod-leadership-template, .page-template-prod-tech-template {
  background-color: #353535;
  /* Staff box */
}

.page-template-prod-management-template .post-list-cat-wrap .bloglist-text, .page-template-prod-leadership-template .post-list-cat-wrap .bloglist-text, .page-template-prod-tech-template .post-list-cat-wrap .bloglist-text {
  background-color: #151515;
}

.page-template-prod-management-template .post-list-cat-wrap .bloglist-text a, .page-template-prod-leadership-template .post-list-cat-wrap .bloglist-text a, .page-template-prod-tech-template .post-list-cat-wrap .bloglist-text a {
  color: #ffffff;
}

.page-template-prod-management-template .post-list-cat-wrap .bloglist-text p, .page-template-prod-leadership-template .post-list-cat-wrap .bloglist-text p, .page-template-prod-tech-template .post-list-cat-wrap .bloglist-text p {
  color: #ffffff;
}

.page-template-prod-management-template .post-list-cat-wrap .bloglist-text .date, .page-template-prod-leadership-template .post-list-cat-wrap .bloglist-text .date, .page-template-prod-tech-template .post-list-cat-wrap .bloglist-text .date {
  color: #6b6b6b;
}

.page-template-prod-management-template .file-list-wrap, .page-template-prod-leadership-template .file-list-wrap, .page-template-prod-tech-template .file-list-wrap {
  background-color: #151515;
}

.page-template-prod-management-template .file-list-wrap h1, .page-template-prod-leadership-template .file-list-wrap h1, .page-template-prod-tech-template .file-list-wrap h1 {
  color: #ffffff;
}

.page-template-prod-management-template .file-list-wrap .file-title, .page-template-prod-leadership-template .file-list-wrap .file-title, .page-template-prod-tech-template .file-list-wrap .file-title {
  background-color: #353535;
}

.page-template-prod-management-template .file-list-wrap .file-title p, .page-template-prod-leadership-template .file-list-wrap .file-title p, .page-template-prod-tech-template .file-list-wrap .file-title p {
  color: #ffffff;
}

.page-template-prod-management-template section.file-list-wrap .file-item:hover p, .page-template-prod-leadership-template section.file-list-wrap .file-item:hover p, .page-template-prod-tech-template section.file-list-wrap .file-item:hover p {
  color: #bfbfbf !important;
}

.page-template-prod-management-template .main-content-wrapper, .page-template-prod-leadership-template .main-content-wrapper, .page-template-prod-tech-template .main-content-wrapper {
  margin-bottom: 60px;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap, .page-template-prod-leadership-template .main-content-wrapper .text-wrap, .page-template-prod-tech-template .main-content-wrapper .text-wrap {
  background-color: #151515 !important;
  border-radius: 0px;
  background-clip: padding-box;
  margin-bottom: 0px;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote {
  background-color: #000000;
  border: none;
  padding: 70px 70px;
  margin-left: -70px;
  width: calc(100% + 70px* 2);
  color: #ffffff;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote {
    font-size: 25px;
    line-height: 30px;
  }
}

.page-template-prod-management-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote p {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  margin: 0px;
  margin-bottom: 17px !important;
}

@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote p {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote p, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote p {
    font-size: 25px;
    line-height: 30px;
  }
}

.page-template-prod-management-template .main-content-wrapper .text-wrap blockquote p::before, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote p::before, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote p::before {
  content: "“";
  color: #157086;
  position: unset;
  top: unset;
  left: unset;
  width: unset;
  height: unset;
  background-image: none;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap blockquote p::after, .page-template-prod-leadership-template .main-content-wrapper .text-wrap blockquote p::after, .page-template-prod-tech-template .main-content-wrapper .text-wrap blockquote p::after {
  content: "”";
  color: #157086;
  position: unset;
  bottom: unset;
  right: unset;
  width: unset;
  height: unset;
  background-image: none;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap h1, .page-template-prod-management-template .main-content-wrapper .text-wrap h2, .page-template-prod-management-template .main-content-wrapper .text-wrap h3, .page-template-prod-management-template .main-content-wrapper .text-wrap h4, .page-template-prod-management-template .main-content-wrapper .text-wrap h5, .page-template-prod-leadership-template .main-content-wrapper .text-wrap h1, .page-template-prod-leadership-template .main-content-wrapper .text-wrap h2, .page-template-prod-leadership-template .main-content-wrapper .text-wrap h3, .page-template-prod-leadership-template .main-content-wrapper .text-wrap h4, .page-template-prod-leadership-template .main-content-wrapper .text-wrap h5, .page-template-prod-tech-template .main-content-wrapper .text-wrap h1, .page-template-prod-tech-template .main-content-wrapper .text-wrap h2, .page-template-prod-tech-template .main-content-wrapper .text-wrap h3, .page-template-prod-tech-template .main-content-wrapper .text-wrap h4, .page-template-prod-tech-template .main-content-wrapper .text-wrap h5 {
  color: #ffffff;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap p, .page-template-prod-leadership-template .main-content-wrapper .text-wrap p, .page-template-prod-tech-template .main-content-wrapper .text-wrap p {
  color: #bbbbbb;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap strong,
.page-template-prod-management-template .main-content-wrapper .text-wrap b, .page-template-prod-leadership-template .main-content-wrapper .text-wrap strong,
.page-template-prod-leadership-template .main-content-wrapper .text-wrap b, .page-template-prod-tech-template .main-content-wrapper .text-wrap strong,
.page-template-prod-tech-template .main-content-wrapper .text-wrap b {
  color: #ffffff;
}

.page-template-prod-management-template .main-content-wrapper .text-wrap ul, .page-template-prod-leadership-template .main-content-wrapper .text-wrap ul, .page-template-prod-tech-template .main-content-wrapper .text-wrap ul {
  color: #bbbbbb;
}

.page-template-prod-management-template .review-box .review-item, .page-template-prod-leadership-template .review-box .review-item, .page-template-prod-tech-template .review-box .review-item {
  background-color: #202020;
  border-radius: 0px;
  background-clip: padding-box;
  margin-bottom: 0px;
}

.page-template-prod-management-template .review-box .review-item .review-img, .page-template-prod-leadership-template .review-box .review-item .review-img, .page-template-prod-tech-template .review-box .review-item .review-img {
  width: 100%;
  height: 100%;
  background-color: #A9D0F2;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
}

.page-template-prod-management-template .review-box .review-item .review-text, .page-template-prod-leadership-template .review-box .review-item .review-text, .page-template-prod-tech-template .review-box .review-item .review-text {
  text-align: center;
  padding: 30px;
  width: 100%;
}

.page-template-prod-management-template .review-box .review-item .review-text h2, .page-template-prod-leadership-template .review-box .review-item .review-text h2, .page-template-prod-tech-template .review-box .review-item .review-text h2 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  margin-top: 35px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .review-box .review-item .review-text h2, .page-template-prod-leadership-template .review-box .review-item .review-text h2, .page-template-prod-tech-template .review-box .review-item .review-text h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  .page-template-prod-management-template .review-box .review-item .review-text h2, .page-template-prod-leadership-template .review-box .review-item .review-text h2, .page-template-prod-tech-template .review-box .review-item .review-text h2 {
    font-size: 18px;
    line-height: 22px;
  }
}

.page-template-prod-management-template .review-box .review-item .review-text h2::after, .page-template-prod-leadership-template .review-box .review-item .review-text h2::after, .page-template-prod-tech-template .review-box .review-item .review-text h2::after {
  content: "“";
  position: absolute;
  color: #157086;
  top: -35px;
  left: 0px;
  right: 0px;
  width: 100%;
  text-align: center;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .review-box .review-item .review-text h2::after, .page-template-prod-leadership-template .review-box .review-item .review-text h2::after, .page-template-prod-tech-template .review-box .review-item .review-text h2::after {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  .page-template-prod-management-template .review-box .review-item .review-text h2::after, .page-template-prod-leadership-template .review-box .review-item .review-text h2::after, .page-template-prod-tech-template .review-box .review-item .review-text h2::after {
    font-size: 25px;
    line-height: 30px;
  }
}

.page-template-prod-management-template .review-box .review-item .review-text h3, .page-template-prod-leadership-template .review-box .review-item .review-text h3, .page-template-prod-tech-template .review-box .review-item .review-text h3 {
  color: #ffffff;
}

.page-template-prod-management-template .review-box .review-item .review-text p, .page-template-prod-leadership-template .review-box .review-item .review-text p, .page-template-prod-tech-template .review-box .review-item .review-text p {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #bbbbbb;
}

@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .review-box .review-item .review-text p, .page-template-prod-leadership-template .review-box .review-item .review-text p, .page-template-prod-tech-template .review-box .review-item .review-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  .page-template-prod-management-template .review-box .review-item .review-text p, .page-template-prod-leadership-template .review-box .review-item .review-text p, .page-template-prod-tech-template .review-box .review-item .review-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

.page-template-prod-management-template .review-box .review-item .review-text p:last-of-type, .page-template-prod-leadership-template .review-box .review-item .review-text p:last-of-type, .page-template-prod-tech-template .review-box .review-item .review-text p:last-of-type {
  margin-bottom: 0px;
}

.page-template-prod-management-template .review-box .review-item .review-text strong, .page-template-prod-leadership-template .review-box .review-item .review-text strong, .page-template-prod-tech-template .review-box .review-item .review-text strong {
  color: #ffffff;
}

.page-template-prod-management-template .staff-description, .page-template-prod-leadership-template .staff-description, .page-template-prod-tech-template .staff-description {
  background-color: #151515 !important;
}

.page-template-prod-management-template .staff-description h4,
.page-template-prod-management-template .staff-description h2, .page-template-prod-leadership-template .staff-description h4,
.page-template-prod-leadership-template .staff-description h2, .page-template-prod-tech-template .staff-description h4,
.page-template-prod-tech-template .staff-description h2 {
  color: #ffffff;
}

.page-template-prod-management-template .staff-description p, .page-template-prod-leadership-template .staff-description p, .page-template-prod-tech-template .staff-description p {
  color: #bbbbbb;
}

.page-template-prod-management-template .staff-description ul, .page-template-prod-leadership-template .staff-description ul, .page-template-prod-tech-template .staff-description ul {
  color: #ffffff;
}

.page-template-prod-management-template .staff-description ul a, .page-template-prod-leadership-template .staff-description ul a, .page-template-prod-tech-template .staff-description ul a {
  color: #ffffff;
}

.page-template-prod-management-template .staff-description ul li, .page-template-prod-leadership-template .staff-description ul li, .page-template-prod-tech-template .staff-description ul li {
  color: #ffffff;
}

.page-template-prod-management-template .staff-description .staff-button, .page-template-prod-leadership-template .staff-description .staff-button, .page-template-prod-tech-template .staff-description .staff-button {
  background-color: #000000;
  width: 45px;
  height: 45px;
  display: block;
  display: inline-block;
  margin: 10px 5px 0px 5px;
}

.page-template-prod-management-template .staff-description .staff-button:hover, .page-template-prod-leadership-template .staff-description .staff-button:hover, .page-template-prod-tech-template .staff-description .staff-button:hover {
  background-color: #7BA2C4;
}

.page-template-prod-management-template .staff-description .staff-button.email, .page-template-prod-leadership-template .staff-description .staff-button.email, .page-template-prod-tech-template .staff-description .staff-button.email {
  background-image: url("../img/icon-envelope.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.page-template-prod-management-template .staff-description .staff-button.email:hover, .page-template-prod-leadership-template .staff-description .staff-button.email:hover, .page-template-prod-tech-template .staff-description .staff-button.email:hover {
  background-image: url("../img/icon-envelope-white.svg");
}

.page-template-prod-management-template .staff-description .staff-button.linkedin, .page-template-prod-leadership-template .staff-description .staff-button.linkedin, .page-template-prod-tech-template .staff-description .staff-button.linkedin {
  background-image: url("../img/icon-in.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.page-template-prod-management-template .staff-description .staff-button.linkedin:hover, .page-template-prod-leadership-template .staff-description .staff-button.linkedin:hover, .page-template-prod-tech-template .staff-description .staff-button.linkedin:hover {
  background-image: url("../img/icon-in-white.svg");
}

body.management {
  background-color: #353535;
}

body.management .main-content {
  background-color: #151515;
}

/**
 *  Tablet and mobile styles
 */
@media screen and (max-width: 1024px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote {
    margin-left: -50px;
    width: calc(100% + 50px* 2);
    padding: 50px 70px;
  }
}

/**
 *  Mobile only styles
 */
@media screen and (max-width: 640px) {
  .page-template-prod-management-template .main-content-wrapper .text-wrap blockquote {
    margin-left: -30px;
    width: calc(100% + 30px* 2);
    padding: 30px 70px;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6. Components - Such as buttons, avatars and inputs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.gateway-section {
  margin-top: 40px;
}

.gateway-section .gateway-box {
  padding: 20px 20px 32px 20px;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  background-clip: padding-box;
  position: relative;
  top: 0px;
  -webkit-box-shadow: 0px 10px 17px -4px rgba(65, 79, 102, 0.13);
  box-shadow: 0px 10px 17px -4px rgba(65, 79, 102, 0.13);
}

.gateway-section .gateway-box article header {
  padding: 0px;
}

.gateway-section .gateway-box article header h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1024px) {
  .gateway-section .gateway-box article header h2 {
    font-size: 17px;
    line-height: 24px;
  }
}

@media screen and (max-width: 640px) {
  .gateway-section .gateway-box article header h2 {
    font-size: 16px;
    line-height: 21px;
  }
}

.gateway-section .gateway-box article p {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .gateway-section .gateway-box article p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  .gateway-section .gateway-box article p {
    font-size: 14px;
    line-height: 22px;
  }
}

.gateway-section .gateway-box article button {
  cursor: pointer;
  position: absolute;
  font-size: 15px;
  bottom: 0px;
  width: 100%;
  left: 0px;
  right: 0px;
  margin-bottom: 25px;
  color: #7BA2C4;
}

.gateway-section .gateway-box article button.arrow {
  display: none;
}

.gateway-section .gateway-box:hover {
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  background-color: #f6f9fb;
  top: -7px;
  -webkit-box-shadow: 0px 25px 18px -4px rgba(65, 79, 102, 0.1);
  box-shadow: 0px 25px 18px -4px rgba(65, 79, 102, 0.1);
}

.gateway-section .gateway-box:hover article button {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .gateway-section {
    margin-top: 50px;
  }
  .gateway-section .cell {
    margin-top: 30px;
  }
}

@media screen and (max-width: 640px) {
  .gateway-section {
    margin-top: 30px;
  }
  .gateway-section .cell {
    margin-top: 10px;
  }
  .gateway-section .gateway-box {
    position: relative;
    padding: 15px 20px;
  }
  .gateway-section .gateway-box article header h2 {
    margin: 0px 30px 0px 0px;
    text-align: left;
  }
  .gateway-section .gateway-box article p {
    margin: 0px 30px 0px 0px;
    text-align: left;
  }
  .gateway-section .gateway-box article button {
    display: none;
  }
  .gateway-section .gateway-box article button.arrow {
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    left: unset;
    margin: 0px;
    background-image: url("../img/arrow-down.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
  }
  .gateway-section .gateway-box:hover {
    top: 0px;
  }
}

/* JUMBOTRON 2.0 */
.page-template-listjobs-template .jumbotron-section {
  margin-bottom: 50px;
}

.jumbotron-section.dark .jumbotron-tint-wrap {
  background-color: rgba(0, 0, 0, 0.5);
}

.jumbotron-section.dark .jumbotron-tint-wrap header h1, .jumbotron-section.dark .jumbotron-tint-wrap header h2 {
  color: #ffffff;
}

.jumbotron-section.dark .jumbotron-tint-wrap header p {
  color: #ffffff;
}

.jumbotron-section {
  background-color: #7BA2C4;
  width: 100%;
  min-height: 100vh;
  /*overflow: hidden;*/
  text-align: center;
  position: relative;
}

.jumbotron-section .arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 40px;
  left: 50%;
  margin-left: -10px;
  z-index: 3;
}

.jumbotron-section .bounce {
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

.jumbotron-section.no-media {
  height: 60vh !important;
}

.jumbotron-section.no-text .jumbotron-tint-wrap {
  background-color: transparent;
}

.jumbotron-tint-wrap {
  background-color: rgba(255, 255, 255, 0.3);
  /*min-height:100vh;*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-align-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.jumbotron-tint-wrap .jumbotron-text {
  width: 100%;
  padding: 100px 0px;
}

@media screen and (max-width: 1024pxs) {
  .jumbotron-tint-wrap .jumbotron-text {
    padding: 50px 0px;
  }
}

@media screen and (max-width: 640px) {
  .jumbotron-tint-wrap .jumbotron-text {
    padding: 50px 0px;
  }
}

.jumbotron-tint-wrap header {
  width: 100%;
  text-align: center;
  padding: 0px 50px;
}

.jumbotron-tint-wrap header .product-logo {
  width: 150px;
  margin-bottom: 20px;
}

.jumbotron-tint-wrap header .jubmo-logo {
  margin-bottom: 20px;
  width: 150px;
}

.jumbotron-tint-wrap header h1, .jumbotron-tint-wrap header h2 {
  font-size: 56px;
  line-height: 58px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}

@media screen and (max-width: 1024px) {
  .jumbotron-tint-wrap header h1, .jumbotron-tint-wrap header h2 {
    font-size: 56px;
    line-height: 58px;
  }
}

@media screen and (max-width: 640px) {
  .jumbotron-tint-wrap header h1, .jumbotron-tint-wrap header h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.jumbotron-tint-wrap header p {
  font-size: 20px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0px;
}

@media screen and (max-width: 1024px) {
  .jumbotron-tint-wrap header p {
    font-size: 17px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  .jumbotron-tint-wrap header p {
    font-size: 16px;
    line-height: 25px;
  }
}

.jumbotron-tint-wrap header .jumbo-cta-wrap {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 640px) {
  .jumbotron-tint-wrap {
    padding: 30px 0px;
  }
}

/* MOBILE DOWN */
@media screen and (max-width: 640px) {
  .jumbotron-tint-wrap header .product-logo {
    width: 80px;
  }
}

/* VIDEO */
.jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: 100vh;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.js .jquery-background-video {
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

.js .jquery-background-video.is-visible {
  opacity: 1;
}

/* HIDE VIDEO FOR IE 11 AND DOWN */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .my-background-video {
    display: none !important;
  }
}

.masonry-wrap {
  -webkit-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 25px;
          column-gap: 25px;
}

@media screen and (max-width: 1024px) {
  .masonry-wrap {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media screen and (max-width: 640px) {
  .masonry-wrap {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

.portfolio-wrap {
  margin: 60px 0px;
}

.portfolio-item {
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
  border-radius: 4px;
  background-clip: padding-box;
  margin-bottom: 25px;
  background-color: #fff;
}

.portfolio-item .portfolio-logo {
  width: 100%;
  display: block;
  padding: 50px;
  text-align: center;
  border-bottom: 1px solid #f6f6f6;
}

.portfolio-item .portfolio-logo img {
  margin: 0px auto;
}

.portfolio-item .portfolio-list {
  display: block;
  width: 100%;
  margin: 0px;
  padding: 30px;
  list-style: none;
}

.portfolio-item .portfolio-list li {
  display: block;
  background-color: #fff;
  width: 100%;
  padding-left: 20px;
  position: relative;
}

.portfolio-item .portfolio-list li:before {
  content: "●";
  position: absolute;
  left: 0px;
  color: #A9D0F2;
}

@media screen and (max-width: 1024px) {
  .portfolio-wrap {
    margin: 40px 0px;
  }
}

@media screen and (max-width: 640px) {
  .portfolio-wrap {
    margin: 20px 0px;
  }
  .portfolio-item .portfolio-logo {
    padding: 20px;
  }
}

.latest-posts-section {
  padding: 100px 0px;
}

.latest-posts-section .latest-post-wrap {
  background-color: #ffffff;
  border-radius: 5px;
  background-clip: padding-box;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
}

.latest-posts-section .latest-post-wrap .latest-post-text {
  padding: 25px 25px;
}

.latest-posts-section .latest-post-wrap .latest-post-text header h2 {
  margin: 0px 0px 5px 0px;
}

.latest-posts-section .latest-post-wrap .latest-post-text p {
  margin: 0px;
}

.latest-posts-section .latest-post-wrap .latest-post-text footer p {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  color: #949494;
}

@media screen and (max-width: 1024px) {
  .latest-posts-section {
    padding: 50px 0px;
  }
}

@media screen and (max-width: 640px) {
  .latest-posts-section {
    padding: 30px 0px;
  }
}

.post-list-cat-wrap {
  border-radius: 3px;
  background-clip: padding-box;
  overflow: hidden;
  margin-bottom: 20px;
}

.post-list-cat-wrap .bloglist-text {
  background-color: #fff;
  border-radius: 0px 0px 3px 3px;
  background-clip: padding-box;
  border-bottom: unset !important;
}

.read-more-cat {
  margin-top: 10px !important;
}

@media screen and (max-width: 640px) {
  .read-more-cat {
    margin-bottom: 30px !important;
    width: 100%;
  }
}

.cat-header {
  margin: 30px auto -40px auto;
}

.cat-header section {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  background-clip: padding-box;
}

.cat-header section h1 {
  margin: 0px;
  padding: 0px;
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

@media screen and (max-width: 1024px) {
  .cat-header section h1 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  .cat-header section h1 {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .cat-header {
    margin: -15px auto -55px auto;
  }
}

@media screen and (max-width: 640px) {
  .cat-header {
    margin: -20px auto -65px auto;
  }
}

.main-content-wrapper {
  margin-top: 50px;
}

.main-content-wrapper .grid-container .grid-x {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-content-wrapper .text-wrap {
  background-color: #ffffff;
  padding: 70px;
  border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 25px;
}

.main-content-wrapper .text-wrap > *:last-child {
  margin-bottom: 0px;
}

.main-content-wrapper .text-wrap.recap-box {
  margin-bottom: 30px;
  text-align: center;
}

.main-content-wrapper .text-wrap.recap-box h2 {
  font-size: 30px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .main-content-wrapper .text-wrap.recap-box h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .main-content-wrapper .text-wrap.recap-box h2 {
    font-size: 21px;
    line-height: 25px;
  }
}

.main-content-wrapper .text-wrap.recap-box p {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #838383;
}

@media screen and (max-width: 1024px) {
  .main-content-wrapper .text-wrap.recap-box p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  .main-content-wrapper .text-wrap.recap-box p {
    font-size: 15px;
    line-height: 23px;
  }
}

.review-box .review-item {
  background-color: #ffffff;
  border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 25px;
  overflow: hidden;
}

.review-box .review-item .review-img {
  width: 100%;
  height: 100%;
  background-color: #A9D0F2;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
}

.review-box .review-item .review-text {
  text-align: center;
  padding: 30px;
  width: 100%;
}

.review-box .review-item .review-text h2 {
  font-size: 20px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
  margin: 0px 0px 2px 0px;
}

@media screen and (max-width: 1024px) {
  .review-box .review-item .review-text h2 {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  .review-box .review-item .review-text h2 {
    font-size: 15px;
    line-height: 23px;
  }
}

.review-box .review-item .review-text h3 {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #484848;
}

@media screen and (max-width: 1024px) {
  .review-box .review-item .review-text h3 {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  .review-box .review-item .review-text h3 {
    font-size: 15px;
    line-height: 23px;
  }
}

.review-box .review-item .review-text p {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #838383;
}

@media screen and (max-width: 1024px) {
  .review-box .review-item .review-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  .review-box .review-item .review-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

.review-box .review-item .review-text p:last-of-type {
  margin-bottom: 0px;
}

.valign-center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-align-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/**
 *  Tablet and mobile styles
 */
@media screen and (max-width: 1024px) {
  .main-content-wrapper .text-wrap {
    padding: 50px;
  }
}

/**
 *  Mobile only styles
 */
@media screen and (max-width: 640px) {
  .main-content-wrapper .text-wrap {
    padding: 30px;
  }
}

section.file-list-wrap {
  background-color: #ffffff;
  border-radius: 5px;
  background-clip: padding-box;
  padding: 30px 30px 20px 30px;
}

section.file-list-wrap h1 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  section.file-list-wrap h1 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  section.file-list-wrap h1 {
    font-size: 18px;
    line-height: 22px;
  }
}

section.file-list-wrap .file-item {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
}

section.file-list-wrap .file-item:hover p {
  color: #000000 !important;
}

section.file-list-wrap .file-title {
  background-color: #f6f6f6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-align-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 10px 15px;
}

section.file-list-wrap .file-title p {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  margin: 0px;
}

section.file-list-wrap .file-type {
  background-color: #7BA2C4;
  padding: 10px 10px;
}

section.file-list-wrap .file-type img {
  max-width: 50px;
  width: 100%;
}

section.file-list-wrap .file-type-img {
  background-color: #7BA2C4;
  padding: 0px;
}

section.file-list-wrap .file-type-img img {
  max-width: 50px;
  width: 100%;
}

#gdpr-callout {
  right: 0px;
  bottom: 0px;
  left: 0px;
  position: fixed;
  padding: 0px 100px 0px;
  display: none;
  z-index: 200;
}

#gdpr-callout .gdpr-content {
  background-color: #ffffff;
  border-radius: 3px 3px 0px 0px;
  background-clip: padding-box;
  overflow: hidden;
  padding: 40px;
  max-width: 1300px;
  margin: 0px auto;
  -webkit-box-shadow: 0px 0px 46px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 46px -1px rgba(0, 0, 0, 0.08);
}

#gdpr-callout .gdpr-content h2 {
  margin-bottom: 10px;
}

#gdpr-callout .gdpr-content #gdpr-accept {
  margin-left: 20px;
}

#gdpr-callout .gdpr-content .gdpr-text-wrap {
  padding: 0px 120px 0px 0px;
}

@media screen and (max-width: 1024px) {
  #gdpr-callout {
    padding: 0px 10px;
  }
  #gdpr-callout .gdpr-content {
    padding: 40px;
    text-align: center;
  }
  #gdpr-callout .gdpr-content .gdpr-text-wrap {
    padding: 0px 20px 0px 20px;
  }
  #gdpr-callout .gdpr-content h2 {
    width: 100%;
    text-align: center;
  }
  #gdpr-callout .gdpr-content p {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  #gdpr-callout .gdpr-content button {
    margin: 0px auto;
  }
}

@media screen and (max-width: 640px) {
  #gdpr-callout {
    padding: 0px 0px;
  }
  #gdpr-callout .gdpr-content {
    padding: 40px;
    text-align: center;
  }
  #gdpr-callout .gdpr-content .gdpr-text-wrap {
    padding: 0px 0px 0px 0px;
  }
  #gdpr-callout .gdpr-content #gdpr-accept {
    margin-left: 0px;
    margin-top: 15px;
  }
  #gdpr-callout .gdpr-content button {
    width: 100%;
  }
  #gdpr-callout .gdpr-content p {
    margin-bottom: 10px;
  }
}

.job-scroller-wrap {
  height: 60px;
  width: 100%;
  overflow: hidden;
}

#webTicker {
  height: 60px;
  background-color: #ffffff;
  border-bottom: 1px solid #f6f6f6;
  margin: 0;
}

#webTicker li {
  margin: 0px 10px;
  display: inline-block;
}

#webTicker img {
  height: 39px;
  margin-top: 10px;
  display: block;
  float: left;
  margin-right: 10px;
}

#webTicker a {
  line-height: 60px;
  font-size: 13px;
  color: #c3c3c3;
  display: inline-block;
  height: 100%;
}

#webTicker a:hover {
  color: #838383;
}

/**
 *  Staff box fore sidebar and listing
 */
.staff-item {
  border-radius: 5px;
  background-clip: padding-box;
  overflow: hidden;
}

.staff-grid {
  margin-left: 10px;
  margin-right: 10px;
}

.staff-img-wrap {
  overflow: hidden;
  border-radius: 3px 3px 0px 0px;
  background-clip: padding-box;
  position: relative;
}

.staff-img-wrap img {
  width: 100%;
}

.staff-img-wrap .staff-image-second {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

.staff-img-wrap:hover .staff-image-second {
  opacity: 1;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

.staff-cell {
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 0px 0px 3px 3px;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 3px 17px -6px rgba(0, 0, 0, 0.095);
  box-shadow: 0px 3px 17px -6px rgba(0, 0, 0, 0.095);
}

.staff-description {
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 0px 0px 5px 5px;
  background-clip: padding-box;
  padding: 30px;
}

.staff-description .staff-title {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .staff-description .staff-title {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  .staff-description .staff-title {
    font-size: 14px;
    line-height: 22px;
  }
}

.staff-description p {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .staff-description p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  .staff-description p {
    font-size: 14px;
    line-height: 22px;
  }
}

.staff-description .staff-title {
  margin-top: -16px;
}

.staff-description h4, .staff-description h2 {
  font-size: 20px;
  font-weight: 500;
  color: #4A4A4A;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  margin-top: 0px;
  text-align: center;
  margin-bottom: 15px;
}

.staff-description ul {
  list-style: none;
  margin: 10px 0px;
  padding: 0px;
}

.staff-description ul a {
  font-size: 15px;
}

.staff-description ul li {
  font-size: 15px;
  margin: 2px 0px;
  word-break: break-all;
  text-align: center;
}

.staff-description ul li img {
  margin-right: 10px;
  margin-top: -5px;
}

.staff-description .staff-button {
  background-color: #f6f6f6;
  width: 45px;
  height: 45px;
  display: block;
  display: inline-block;
  margin: 10px 5px 0px 5px;
}

.staff-description .staff-button:hover {
  background-color: #7BA2C4;
}

.staff-description .staff-button.email {
  background-image: url("../img/icon-envelope.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.staff-description .staff-button.email:hover {
  background-image: url("../img/icon-envelope-white.svg");
}

.staff-description .staff-button.linkedin {
  background-image: url("../img/icon-in.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.staff-description .staff-button.linkedin:hover {
  background-image: url("../img/icon-in-white.svg");
}

.office-cell {
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 0px 0px 3px 3px;
  background-clip: padding-box;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 17px -6px rgba(0, 0, 0, 0.095);
  box-shadow: 0px 3px 17px -6px rgba(0, 0, 0, 0.095);
}

.office-cell h2 {
  color: #7BA2C4;
  margin-top: -16px;
}

.office-cell ul {
  list-style: none;
  padding: 0px;
  margin: 30px 0px -5px 0px;
}

.office-cell ul img {
  margin-top: -3px;
  margin-right: 6px;
}

.office-cell .office-text-wrap {
  padding: 40px;
}

.office-map {
  width: 100%;
  height: 350px;
}

/**
 *  Tablet and mobile styles
 */
@media screen and (max-width: 1024px) {
  #selected-staff {
    display: none;
  }
}

/**
 *  Mobile only styles
 */
/**
 *  List of available positions / jobs
 */
a:hover .servicelist-img img {
  opacity: 0.8;
}

a:hover .servicelist-content h2 {
  color: #7BA2C4;
}

a:hover .servicelist-content .servicelist-infobox div {
  color: #838383 !important;
}

.servicelist-section {
  margin-bottom: 80px;
  margin-top: 30px;
}

.servicelist-section .grid-container {
  /*padding: 0px 30px;*/
}

.servicelist-section .grid-container .grid-x {
  margin-bottom: 20px;
}

.servicelist-img {
  background-color: #ffffff;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  background-clip: padding-box;
  border-right: 2px solid #F6F6F6;
  padding: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-align-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.servicelist-img img {
  width: 100%;
}

.servicelist-content {
  padding: 30px 30px 10px 30px;
  float: left;
  background-color: #ffffff;
  border-radius: 0px 5px 5px 0px;
  background-clip: padding-box;
  height: 100%;
}

.servicelist-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #434343;
  font-size: 22px;
  line-height: 27px;
  margin: 0px 0px 15px 0px;
  word-wrap: break-word;
}

.servicelist-content p {
  margin: 0px 0px 20px 0px !important;
  display: block;
  padding: 0px;
}

.servicelist-infobox {
  margin-bottom: 0px;
}

.servicelist-infobox div {
  font-size: 14px;
  color: #838383;
}

.servicelist-infobox span {
  color: #7BA2C4;
}

.filter-section {
  background-color: #f6f6f6;
  margin-bottom: 20px;
}

.filter-section .filter-label {
  float: left;
  color: #434343;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-left: 10px;
}

.filter-section .filter-section-content {
  background-color: #ffffff;
  border-radius: 5px;
  background-clip: padding-box;
  padding: 11px;
}

.filter-section .filter-checkbox-wrap {
  cursor: pointer;
  background-color: #EDEDED;
  border-radius: 5px;
  background-clip: padding-box;
  float: right;
  height: 36px;
  line-height: 36px;
  margin-left: 10px;
  color: #B8B8B8;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 0px 10px;
}

.filter-section .filter-checkbox-wrap .checkbox-text {
  float: left;
}

.filter-section .filter-checkbox-wrap .checkbox-box {
  float: left;
  background-color: #ffffff;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background-clip: padding-box;
  margin: 5px -4px 0px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.filter-section .filter-checkbox-wrap:hover {
  background-color: #A9D0F2;
  color: #ffffff;
}

.filter-section .filter-checkbox-wrap.active {
  cursor: pointer;
  background-color: #7BA2C4;
  border-radius: 5px;
  background-clip: padding-box;
  float: right;
  height: 36px;
  line-height: 36px;
  margin-left: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 0px 10px;
}

.filter-section .filter-checkbox-wrap.active .checkbox-box {
  background-image: url("../img/check-blue.svg");
}

.filter-section .filter-checkbox-wrap.active:hover {
  background-color: #7BA2C4;
}

.filter-section .filter-checkbox-wrap.selected {
  cursor: pointer;
  background-color: #7BA2C4;
  color: #ffffff;
}

.filter-section .filter-checkbox-wrap.selected:hover {
  background-color: #7BA2C4;
}

.filter-dropdown-main:hover {
  border-radius: 5px 5px 0px 0px;
  background-clip: padding-box;
}

.checkbox-dropdown-wrap {
  position: absolute;
  margin-left: -10px;
  overflow: hidden;
  border-radius: 0px 5px 5px 5px;
  background-clip: padding-box;
  display: none;
}

.checkbox-dropdown-wrap .filter-checkbox-wrap {
  clear: both;
  margin: -1px 0px 0px 0px;
  width: 100%;
  border-radius: 0px;
  background-clip: padding-box;
}

.checkbox-dropdown-wrap .filter-checkbox-wrap .checkbox-box {
  margin: 5px 10px 0px -4px !important;
}

.checkbox-dropdown-wrap .filter-checkbox-wrap.active {
  border-radius: 0px;
  background-clip: padding-box;
  margin-left: 0px;
}

.notify-wrap {
  background-color: #ffffff;
  border-radius: 100px;
  background-clip: padding-box;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  color: #7BA2C4;
  display: inline-block;
  margin: 0px 0px 0px 10px;
  line-height: 21px;
  text-align: center;
  font-size: 12px;
}

.filter-checkbox-wrap:hover .checkbox-dropdown-wrap {
  display: block;
}

/**
 *  Tablet and mobile styles
 */
@media screen and (max-width: 1024px) {
  .servicelist-img {
    padding: 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    -webkit-align-content: center;
    -webkit-justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
  .servicelist-content h2 {
    font-size: 22px !important;
    line-height: 27px;
    word-wrap: break-word;
  }
}

/**
 *  Mobile only styles
 */
@media screen and (max-width: 640px) {
  .filter-section .filter-label {
    width: 100%;
  }
  .filter-section .filter-checkbox-wrap {
    float: left;
    margin-bottom: 10px;
  }
  .filter-section .filter-checkbox-wrap.active {
    float: left;
  }
  .filter-section .filter-checkbox-wrap .checkbox-box {
    display: none;
  }
  .servicelist-section .servicelist-content p {
    display: none;
  }
  .servicelist-section .grid-container {
    padding: 0px 20px;
  }
  .servicelist-img {
    border-radius: 5px 5px 0px 0px;
    background-clip: padding-box;
    border: none;
    border-bottom: 2px solid #f6f6f6;
    padding: 10px 30px;
  }
  .servicelist-content {
    border-radius: 0px 0px 5px 5px;
    background-clip: padding-box;
    float: unset;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Shame - I whis this wasn't here
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
html, body {
  margin: 0px;
  padding: 0px;
  background-color: #f6f6f6;
}

.ingress {
  font-size: 19px;
  line-height: 27px;
}

.grid-container {
  max-width: 1124px;
}

.grid-x {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.clear {
  clear: both;
}

.subtitle {
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #434343;
  margin: 0px 0px 10px 0px;
}

.noscroll {
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0px;
  bottom: 0px;
}

#site-wrapper {
  position: relative;
}

.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.admin-bar #top-menu {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar #top-menu {
    top: 32px;
  }
}

.pull-left {
  display: none !important;
}

h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #7BA2C4;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 25px;
    line-height: 30px;
  }
}

h2 {
  font-size: 30px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #484848;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  h2 {
    font-size: 21px;
    line-height: 25px;
  }
}

h3 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #484848;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #484848;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  h4 {
    font-size: 17px;
    line-height: 24px;
  }
}

@media screen and (max-width: 640px) {
  h4 {
    font-size: 16px;
    line-height: 21px;
  }
}

p {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #484848;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  p {
    font-size: 15px;
    line-height: 23px;
  }
}

p.ingress {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  p.ingress {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  p.ingress {
    font-size: 15px;
    line-height: 23px;
  }
}

ul {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
  color: #484848;
}

@media screen and (max-width: 1024px) {
  ul {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  ul {
    font-size: 15px;
    line-height: 23px;
  }
}

ol {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
  color: #484848;
}

@media screen and (max-width: 1024px) {
  ol {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  ol {
    font-size: 15px;
    line-height: 23px;
  }
}

p strong {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
  color: #000000;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  p strong {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  p strong {
    font-size: 15px;
    line-height: 23px;
  }
}

p b {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
  color: #000000;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  p b {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  p b {
    font-size: 15px;
    line-height: 23px;
  }
}

blockquote {
  display: block;
  width: 100%;
  background-color: #86ADCF;
  border: 10px solid #7BA2C4;
  text-align: center;
  padding: calc(70px / 2) 70px;
  margin: 0px;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

@media screen and (max-width: 1024px) {
  blockquote {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  blockquote {
    font-size: 25px;
    line-height: 30px;
  }
}

blockquote p {
  font-size: 30px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0px;
  margin-bottom: 0px;
}

@media screen and (max-width: 1024px) {
  blockquote p {
    font-size: 25px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  blockquote p {
    font-size: 21px;
    line-height: 25px;
  }
}

blockquote p::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 27px;
  height: 27px;
  background-image: url("../img/quote-l.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

blockquote p::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 20px;
  width: 27px;
  height: 27px;
  background-image: url("../img/quote-r.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 1024px) {
  h1 {
    margin-bottom: 20px;
  }
  h2 {
    margin-bottom: 20px;
  }
  h3 {
    margin-bottom: 20px;
  }
  h4 {
    margin-bottom: 20px;
  }
  p {
    margin-bottom: 20px;
  }
  p.ingress {
    margin-bottom: 20px;
  }
  ul {
    margin-bottom: 20px;
  }
  ol {
    margin-bottom: 20px;
  }
  p strong {
    margin-bottom: 20px;
  }
  p b {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 640px) {
  h1 {
    margin-bottom: 15px;
  }
  h2 {
    margin-bottom: 15px;
  }
  h3 {
    margin-bottom: 15px;
  }
  h4 {
    margin-bottom: 15px;
  }
  p {
    margin-bottom: 15px;
  }
  p.ingress {
    margin-bottom: 15px;
  }
  ul {
    margin-bottom: 15px;
  }
  ol {
    margin-bottom: 15px;
  }
  p strong {
    margin-bottom: 15px;
  }
  p b {
    margin-bottom: 15px;
  }
}

.button {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  margin: 0px;
  padding: 12px 30px 12px 30px;
  border: 3px solid #7BA2C4;
  color: #7BA2C4;
  border-radius: 100px;
  background-clip: padding-box;
  /*height:50px; line-height:50px;*/
  outline: none;
}

.button:hover, .button:active, .button:focus {
  color: #ffffff;
  background-color: #7BA2C4;
}

.button.full-width {
  width: 100%;
}

.button.secondary {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  margin: 0px;
  padding: 0px 30px;
  border: 3px solid #A9D0F2;
  color: #A9D0F2;
  border-radius: 100px;
  background-clip: padding-box;
  height: 50px;
  line-height: 43px;
}

.button.secondary:hover {
  color: #ffffff;
  background-color: #A9D0F2;
}

.button.secondary:active, .button.secondary:focus {
  color: #A9D0F2 !important;
  background-color: transparent !important;
}

.button.white {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  margin: 0px;
  padding: 0px 30px;
  border: 3px solid #ffffff;
  color: #ffffff;
  border-radius: 100px;
  background-clip: padding-box;
  height: 50px;
  line-height: 43px;
}

.button.white:hover, .button.secondary:active, .button.secondary:focus {
  color: #7BA2C4;
  background-color: #ffffff;
}

.button.black {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  margin: 0px;
  padding: 0px 30px;
  border: 3px solid #000000;
  color: #000000;
  border-radius: 100px;
  background-clip: padding-box;
  height: 50px;
  line-height: 43px;
}

.button.black:hover, .button.black:active, .button.black:focus {
  color: #ffffff;
  background-color: #000000;
}

.section-wrap {
  padding: 100px 0px;
}

.section-wrap header.section-title {
  display: block;
  margin-bottom: 40px;
}

.section-wrap header.section-title h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #484848;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .section-wrap header.section-title h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  .section-wrap header.section-title h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.section-wrap header.section-title p {
  font-size: 20px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #6f6f6f;
  margin: 0px;
}

@media screen and (max-width: 1024px) {
  .section-wrap header.section-title p {
    font-size: 17px;
    line-height: 26px;
  }
}

@media screen and (max-width: 640px) {
  .section-wrap header.section-title p {
    font-size: 16px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .section-wrap {
    padding: 60px 0px;
  }
  .section-wrap header.section-title {
    display: block;
    margin-bottom: 30px;
  }
  .section-wrap header.section-title h2 {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 640px) {
  .section-wrap {
    padding: 40px 0px;
  }
  .section-wrap header.section-title {
    display: block;
    margin-bottom: 20px;
  }
  .section-wrap header.section-title h2 {
    margin-bottom: 3px;
  }
}

body.dark nav ul li a {
  color: #ffffff;
}

body.dark .button.black {
  border: 3px solid #7BA2C4;
  color: #7BA2C4;
}

body.dark .button.black:hover, body.dark .button.black:active, body.dark .button.black:focus {
  color: #ffffff;
  background-color: #7BA2C4;
}

body.dark nav.active {
  background-color: #151515;
}

body.dark nav ul li.current-menu-item > a {
  color: #7BA2C4 !important;
}

body.dark nav ul li:hover {
  background-color: #101010;
}

body.dark nav ul li:hover a:hover {
  color: #7BA2C4;
}

body.dark nav ul li.menu-button:hover, body.dark nav ul li.language:hover {
  background-color: transparent !important;
}

body.dark .sub-menu {
  background-color: #101010;
}

body.dark .sub-menu .sub-menu {
  background-color: #0b0b0b;
}

body.dark .sub-menu .sub-menu li:hover {
  background-color: #0b0b0b;
}

#top-menu-mobile {
  display: none;
}

.hamburger {
  display: none;
}

nav {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 90px;
  z-index: 10;
  /*@include animate(background 0.2s ease-in-out);*/
}

nav #logo_light {
  width: 146px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 22px 0px 0px 22px;
  display: block;
}

nav #logo_dark {
  width: 146px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 22px 0px 0px 22px;
  display: none;
}

nav #logo_square {
  width: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 10px 0px 0px 10px;
}

nav.active #logo_light {
  display: none;
}

nav.active #logo_dark {
  display: block;
}

nav.active {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 20px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 20px 6px rgba(0, 0, 0, 0.05);
}

nav.active ul li a {
  color: #BABABA;
}

nav ul {
  margin: 0px;
  padding: 0px;
  display: block;
  float: right;
}

nav ul li {
  display: block;
  float: left;
}

nav ul li.current-menu-item > a {
  color: #000000;
}

nav ul li a {
  height: 90px;
  display: block;
  padding: 0px 12px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 90px;
  color: #6b6b6b;
  /*@include animate(color 0.2s ease-in-out);*/
}

nav ul li:hover {
  background-color: #fafafa;
  /*@include animate(background 0.4s ease-in-out);*/
}

nav ul li:hover.menu-button {
  background-color: transparent;
}

nav ul li:hover.language {
  background-color: transparent;
}

nav ul li:hover a:hover {
  color: #000000;
}

.language-flag {
  width: 36px;
  margin: -3px 0px 0px 10px;
}

nav .menu-button {
  margin-left: 15px;
}

nav .menu-button .button {
  margin: 23px 0px 0px 0px;
  padding: 0px 15px;
  height: 42px;
  line-height: 37px;
}

.language {
  margin-right: 13px;
}

.nojumbo {
  margin-top: 90px;
  padding-top: 1px;
}

.nojumbo nav {
  background-color: #ffffff;
}

.nojumbo nav #logo_light {
  display: none;
}

.nojumbo nav #logo_dark {
  display: block;
}

.nojumbo nav ul li a {
  color: #BABABA;
}

.max-menu {
  background-color: red;
  position: relative;
}

.max-menu .max-menu-sub {
  background-color: lime;
  display: inline-block;
  width: 100%;
  position: relative;
}

.max-menu .max-menu-sub li {
  display: inline-block;
  width: 100%;
}

.max-menu .max-menu-sub li a {
  display: inline-block;
  width: 100%;
}

#top-menu li:hover .sub-menu {
  display: block;
}

.sub-menu {
  position: absolute;
  width: 300px;
  display: block;
  float: left;
  background-color: #fafafa;
  display: none;
  -webkit-box-shadow: 0px 7px 36px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 7px 36px 2px rgba(0, 0, 0, 0.07);
}

.sub-menu li {
  float: left;
  width: 100%;
}

.sub-menu li a {
  float: left;
  width: 100%;
  line-height: 20px;
  height: unset;
  padding: 25px 20px;
}

.sub-menu li:hover {
  background-color: #fafafa;
}

.sub-menu .sub-menu {
  float: left;
  width: 100%;
  position: unset;
  background-color: whitesmoke;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.sub-menu .sub-menu li {
  float: left;
  width: 100%;
}

.sub-menu .sub-menu li a {
  float: left;
  width: 100%;
  padding: 25px 20px 25px 35px;
}

.sub-menu .sub-menu li:hover {
  background-color: whitesmoke;
}

.main-content-section {
  margin-top: 75px;
}

.home .main-content {
  margin-bottom: 0px;
  padding: 80px 0px;
}

@media screen and (max-width: 1024px) {
  .home .main-content {
    padding: 50px 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .home .main-content {
    padding: 30px 20px !important;
  }
}

.main-content {
  background-color: #ffffff;
  padding: 60px 70px 30px 70px;
  border-radius: 5px;
  background-clip: padding-box;
}

@media screen and (max-width: 1024px) {
  .main-content {
    padding: 40px 50px 40px 50px;
  }
}

@media screen and (max-width: 640px) {
  .main-content {
    padding: 20px 20px 20px 20px;
  }
}

.job-metadata-container {
  background-color: #f6f6f6;
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  text-align: center;
}

.job-metadata-container h3 {
  margin: -5px 0px 10px 0px;
}

.job-metadata-container .servicelist-infobox {
  margin: 0px 0px 13px 0px;
}

.job-single-header-wrap {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #f6f6f6;
  padding: 0px 30px 0px 30px;
}

.job-single-header-wrap .servicelist-img {
  border: none;
  height: 100%;
}

.job-single-header-wrap .job-meta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
}

.job-single-header-wrap.job-top {
  margin: 0px;
  padding: 30px;
}

.job-single-header-wrap.job-top .job-metadata-container {
  margin: 0px;
}

.single-job-share {
  text-align: center;
  margin: -10px 0px 25px 0px;
}

.main-content.blog-list img {
  width: 100%;
}

.main-content.blog-list h2 a {
  color: red !important;
}

.category-list {
  padding: 0px;
}

.category-list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.category-title {
  text-align: center;
  display: block;
  width: 100%;
  border-bottom: 2px solid #f6f6f6;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 0px;
}

.categories ul {
  padding: 10px 0px;
  display: block;
}

.categories ul li a {
  display: block;
  width: 100%;
  padding: 5px 20px;
}

.categories ul li a:hover {
  font-weight: 500;
}

.single-page-img img {
  width: 100%;
}

.bloglist-section {
  margin-top: 75px;
}

.bloglist-content {
  background-color: #ffffff;
}

.bloglist-text {
  padding: 27px 50px 40px 50px;
  border-bottom: 2px solid #f6f6f6;
}

.bloglist-text h2 {
  margin-bottom: 24px;
}

.bloglist-text h2 a {
  color: #7BA2C4;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1024px) {
  .bloglist-text h2 a {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) {
  .bloglist-text h2 a {
    font-size: 25px;
    line-height: 30px;
  }
}

.bloglist-text h2 a:hover {
  color: #94b8d8;
}

.bloglist-text .date {
  display: block;
  font-size: 13px;
}

.text-section {
  background-color: #ffffff;
  margin: 0px;
}

.text-section h2, .text-section header h2 {
  color: #7BA2C4;
  margin: -18px 0px 40px 0px;
}

.text-section header p {
  color: #424242;
  font-weight: 500;
  margin: -7px 0px 40px 0px;
  font-size: 19px;
}

.text-section p {
  margin: 0px 0px 30px 0px;
}

.text-section p:last-of-type {
  margin-bottom: 0px;
}

.text-divider-section {
  background-color: #7BA2C4;
  margin: 0px;
  text-align: center;
}

.text-divider-section header.section-title {
  margin-bottom: 0px;
}

.text-divider-section header.section-title h2 {
  color: #ffffff;
}

.text-divider-section header.section-title p {
  color: #ffffff;
}

.text-divider-section header.section-title a {
  margin-top: 15px;
}

@media screen and (max-width: 1024px) {
  .text-divider-section header.section-title {
    padding: 30px 0px;
  }
}

@media screen and (max-width: 640px) {
  .text-divider-section header.section-title {
    padding: 30px 0px;
  }
}

.product-section {
  margin: 0px;
  text-align: center;
}

.product-section .product-frontpage-wrap {
  position: relative;
  margin-bottom: 30px;
  display: block;
  background-color: #7BA2C4;
}

.product-section .product-frontpage-wrap .logo-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  z-index: 1;
}

.product-section .product-frontpage-wrap .button {
  margin-top: 20px;
}

.product-section .product-frontpage-wrap header h3 {
  color: #7BA2C4;
  margin: -13px 0px 15px 0px;
}

.product-section .product-frontpage-wrap header p {
  color: #3F586F;
  font-weight: 500;
  margin: -8px 0px 15px 0px;
  font-size: 19px;
}

.product-section .product-frontpage-wrap .product-cover {
  margin-bottom: 0px;
  opacity: 0.5;
}

.product-section .product-frontpage-wrap:hover .product-cover {
  opacity: 0.2;
}

.statistics-section {
  text-align: center;
  background-color: #f6f6f6;
}

.statistics-section .stats-number .digit {
  font-size: 56px;
  line-height: 58px;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  color: #484848;
}

@media screen and (max-width: 1024px) {
  .statistics-section .stats-number .digit {
    font-size: 56px;
    line-height: 58px;
  }
}

@media screen and (max-width: 640px) {
  .statistics-section .stats-number .digit {
    font-size: 30px;
    line-height: 35px;
  }
}

.statistics-section .stats-number p {
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .statistics-section .stats-number p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 640px) {
  .statistics-section .stats-number p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 1024px) {
  .statistics-section .stats-number .digit {
    font-size: 70px;
    line-height: 70px;
  }
}

.box50 {
  background-color: #f6f6f6;
  padding: 80px 0px;
}

.box50-content {
  background-color: #ffffff;
  border-radius: 5px;
  background-clip: padding-box;
  padding: 40px;
  text-align: center;
}

.box50-content p {
  margin-bottom: 20px;
}

.page-template-frontpage-template #footer-social {
  margin-top: 0px !important;
}

footer {
  background-color: #ffffff;
}

footer p {
  margin: 0px;
  color: #838383;
}

#footer-social {
  padding: 80px 0px;
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  #footer-social {
    margin-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  #footer-social {
    margin-top: 10px;
  }
}

#footer-logo-square {
  width: 100px !important;
}

.footer-social-icon {
  margin: 30px 9px 0px 9px;
  display: inline-block;
}

#footer-menu {
  background-color: #7BA2C4;
  padding: 80px 0px;
}

#footer-menu h5 {
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

#footer-menu p {
  color: #B6D4EE;
}

#footer-menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

#footer-menu ul li {
  margin: 0px;
  padding: 0px;
}

#footer-menu ul li a {
  color: #B6D4EE;
}

#footer-menu ul li a:hover {
  color: #ffffff;
}

#footer-bottom {
  text-align: center;
  padding: 15px 0px;
}

.footer-trust {
  text-align: center;
}

.footer-badge-1 {
  width: 113px;
  display: block;
  margin: 0px auto 40px auto;
}

.footer-badge-2 {
  width: 120px;
  display: block;
  margin: 0px auto;
}

.newsletter-wrapper {
  text-align: right;
}

.newsletter-wrapper h5 {
  text-align: right;
}

.newsletter-wrapper p {
  text-align: right;
}

.newsletter-input {
  background-color: #B6D4EE;
  border: none;
  color: #335B7F;
  height: 52px;
  line-height: 52px;
  border-radius: 6px;
  background-clip: padding-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 0px 17px;
  margin-top: 13px;
  margin-bottom: 20px;
}

.newsletter-input::-webkit-input-placeholder {
  color: #6B98C0;
}

.newsletter-input:-moz-placeholder {
  color: #6B98C0;
}

.newsletter-input::-moz-placeholder {
  color: #6B98C0;
}

.newsletter-input:-ms-input-placeholder {
  color: #6B98C0;
}

.newsletter-input:hover, .newsletter-input:focus, .newsletter-input:active {
  background-color: #B6D4EE;
  border: none;
  color: #335B7F;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pagination {
  width: 100%;
}

.pagination .current {
  background-color: #7BA2C4;
}

.pagination span {
  float: left;
  padding: 15px 23px !important;
  color: #838383;
}

.pagination a {
  float: left;
  padding: 15px 23px !important;
  color: #838383;
}

.pagination a:hover {
  color: #7BA2C4;
  background-color: #f6f6f6;
}

@media screen and (max-width: 1024px) {
  body {
    margin-top: 60px;
  }
  .language.mobile-flag {
    float: right;
    width: 60px;
    height: 60px;
    margin: 0px;
  }
  .language.mobile-flag a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .language.mobile-flag a:hover {
    background-color: #f6f6f6;
  }
  .language.mobile-flag a img {
    margin: 17px 0px 0px 12px;
  }
  #top-menu-mobile {
    background-color: #f6f6f6;
    display: block;
    position: fixed;
    height: auto;
    background-color: #f6f6f6;
  }
  #top-menu-mobile.expanded {
    height: 100%;
  }
  #top-bar {
    background-color: #ffffff;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    -webkit-box-shadow: 0px 2px 20px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 20px 6px rgba(0, 0, 0, 0.05);
  }
  #menu-mobile-items {
    background-color: #f6f6f6;
    overflow-y: scroll;
    height: calc(100% - 60px);
    display: none;
    -webkit-overflow-scrolling: touch;
  }
  .hamburger {
    width: 60px;
    height: 60px;
    float: right;
    display: block;
    background-image: url("../img/hamburger.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .hamburger:hover {
    background-color: #f6f6f6;
  }
  #top-bar #logo_square {
    display: block;
    width: 40px;
    top: 0px;
    left: 0px;
  }
  #menu-mobile-items .menu-button {
    padding: 20px;
  }
  #menu-mobile-items .menu-button a {
    width: 100%;
    padding: 10px 0px;
  }
  #menu-mobile-items ul {
    list-style: none;
    width: 100%;
  }
  #menu-mobile-items ul li {
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
    border-top: 1px solid #f6f6f6;
  }
  #menu-mobile-items ul li a {
    color: #7BA2C4;
    margin: 0px;
    padding: 0px;
    height: auto;
    line-height: unset;
    padding: 15px 20px 15px 20px;
  }
  #menu-mobile-items .sub-menu {
    display: block !important;
    position: unset;
  }
  #menu-mobile-items .sub-menu li {
    background-color: #f6f6f6;
    border-top: 1px solid #ececec;
  }
  #menu-mobile-items .sub-menu li a {
    padding-left: 40px;
  }
  #menu-mobile-items .sub-menu li .sub-menu li {
    background-color: #eaeaea;
    border-top: 1px solid #dcdcdc;
  }
  #menu-mobile-items .sub-menu li .sub-menu li a {
    padding-left: 60px;
  }
  #wpadminbar {
    margin-top: 60px;
    z-index: 50;
  }
  #top-menu {
    display: none;
  }
  .main-content-section {
    margin-top: 30px;
  }
  .job-metadata-container {
    padding: 30px 30px 30px 30px;
    margin-bottom: 20px;
  }
  .job-metadata-container h3 {
    margin: -5px 0px 10px 0px;
  }
  .job-metadata-container .servicelist-infobox {
    margin: 0px 0px 13px 0px;
  }
  .section-wrap {
    padding: 50px 20px;
  }
  .text-section header h2 {
    margin: -14px 0px 30px 0px;
  }
  .text-section header p {
    margin: -5px 0px 30px 0px;
  }
  .text-section p {
    margin: -16px 0px 0px 0px;
  }
  .text-divider-section header h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin: -18px 0px 24px 0px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .text-divider-section header h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 640px) {
  .text-divider-section header h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .text-divider-section header p {
    margin: -13px 0px 10px 0px;
  }
  .newsletter-wrapper {
    text-align: left;
  }
  .newsletter-wrapper h5 {
    text-align: left;
  }
  .newsletter-wrapper p {
    text-align: left;
  }
  .box50 {
    padding: 40px 0px;
  }
  #footer-social {
    padding: 30px 0px;
  }
  #footer-menu {
    padding: 30px 20px;
  }
  #footer-bottom p {
    font-size: 13px !important;
  }
  .footer-men-1 {
    margin-bottom: 30px;
  }
  .footer-men-2 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  .job-single-leader-container {
    background-color: red;
    position: fixed;
    margin: 0px;
    padding: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
  .job-single-leader-container .job-single-header-wrap {
    margin: 0px;
    padding: 0px;
    border: none;
  }
  .job-single-leader-container .servicelist-infobox {
    display: none;
  }
  .job-single-leader-container .job-metadata-container {
    background-color: #7BA2C4;
    padding: 20px;
  }
  .job-single-leader-container .job-metadata-container h3 {
    color: #ffffff;
    font-size: 15px;
    display: none;
  }
  .job-single-leader-container .job-metadata-container .button {
    border-color: #ffffff;
    color: #ffffff;
  }
  .job-single-leader-container .job-metadata-container .button:hover {
    background-color: #ffffff;
    color: #7BA2C4;
  }
  .main-content-section {
    margin-top: 20px;
  }
  .job-metadata-container {
    padding: 30px 30px 30px 30px;
    margin-bottom: 10px;
  }
  .job-metadata-container h3 {
    margin: -5px 0px 10px 0px;
  }
  .job-metadata-container .servicelist-infobox {
    margin: 0px 0px 13px 0px;
  }
  .job-metadata-container button {
    width: 100%;
  }
  .single-job-share {
    margin: -10px 0px 0px 0px;
  }
  .section-wrap {
    padding: 30px 20px;
  }
  .text-section header h2 {
    margin: -10px 0px 20px 0px;
  }
  .text-section header p {
    margin: -5px 0px 20px 0px;
  }
  .text-section p {
    margin: -14px 0px 0px 0px;
  }
  .product-section header h3 {
    font-size: 25px !important;
    margin: -4px 0px 20px 0px;
  }
  .product-section header p {
    margin: -8px 0px 0px 0px;
  }
  .product-section .product-cover {
    margin-bottom: 20px;
  }
  .product-section a.button {
    margin: 0px 0px 20px 0px;
  }
  .text-divider-section header h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin: -10px 0px 24px 0px;
  }
}

@media screen and (max-width: 640px) and (max-width: 1024px) {
  .text-divider-section header h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 640px) and (max-width: 640px) {
  .text-divider-section header h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media screen and (max-width: 640px) {
  .text-divider-section header p {
    margin: -13px 0px 10px 0px;
  }
  .box50 {
    padding: 20px 0px 0px 0px;
  }
  .box50-content {
    margin-bottom: 20px;
  }
  #footer-bottom p {
    font-size: 10px !important;
  }
  .footer-badge-1 {
    width: 113px;
    display: inline-block;
    margin: 0px 30px 40px 0px;
  }
  .footer-badge-2 {
    width: 120px;
    display: inline-block;
    margin: 0px 0px 40px 30px;
  }
  .footer-social-icon {
    width: 40px;
    margin: 20px 5px 0px 5px;
  }
}
/*# sourceMappingURL=main.css.map */