* {
  box-sizing: border-box;
}

body {
  font-family: "aktiv-grotesk-thin", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #000000;
  background: #ffffff;
  font-size: 22px;
  margin: 0;
  letter-spacing: 0;
}
body.on-load {
  overflow-y: hidden;
  min-height: 101vh;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:focus {
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: #ffffff;
}

h1 {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  margin: 0;
}
@media (min-width: 992px) {
  h1 {
    font-size: 6.4vw;
  }
}

h2 {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  margin: 0;
}
@media (min-width: 992px) {
  h2 {
    font-size: 4.75vw;
    line-height: 1.3;
  }
}

h3 {
  font-size: 32px;
  line-height: 1.375;
  margin: 0;
}

h4 {
  font-size: 2.75vw;
  line-height: 1.1;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}
p.big-p {
  font-size: 32px;
  line-height: 1.375;
}

.background-image-container {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.light-background {
  background: #ffffff;
}

.light-underline {
  border: 1px solid #ffffff;
}

.dark-background {
  background: #000000;
}

.white-font {
  color: #ffffff;
}

.black-font {
  color: #000000;
}

.blue-font {
  color: #0f4eed;
}

.blue-background {
  background: #0f4eed;
}

.blue-underline {
  border: 1px solid #0f4eed;
}

.grey-background {
  background: #9e9e9e;
}

.grey-underline {
  border: 1px solid #9e9e9e;
}

.image-hidden {
  opacity: 0;
  width: 100%;
  display: block;
}

.underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.underline:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  bottom: -5px;
  background: #ffffff;
  height: 2px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.underline:hover:after, .underline:focus:after, .underline:active:after {
  left: 0;
  right: auto;
  width: 100%;
  z-index: 1;
}

.underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.underline:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  bottom: -5px;
  background: #ffffff;
  height: 2px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.underline:hover:after, .underline:focus:after, .underline:active:after {
  left: 0;
  right: auto;
  width: 100%;
  z-index: 1;
}

.short-underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.short-underline:after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: 100%;
  z-index: 1;
  bottom: -5px;
  background: #000000;
  height: 1px;
}

.slider {
  overflow: hidden;
}
.slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slider .slider-inner {
  position: relative;
}
.slider .slider-background-image-wrapper {
  margin-top: 85px;
}
.slider .slider-background-image-wrapper > div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}
@media (min-width: 768px) {
  .slider .slider-background-image-wrapper {
    position: absolute;
    width: 50%;
    right: 0;
    height: 90%;
    top: 5%;
    margin-top: 0;
  }
}
.slider .slider-background-image-wrapper > div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}
.slider .slick-dots {
  left: 7vw;
  text-align: left;
}
.slider .slick-dots li {
  width: 11vw;
  height: 6px;
  max-width: 65px;
}
.slider .slick-dots li:first-child {
  margin-left: 0;
}
.slider .slick-dots li button {
  width: 100%;
  height: 100%;
}
.slider .slick-dots li button:before {
  color: transparent;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background: #ffffff;
}
.slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.loader {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  background: #ffffff;
  z-index: 2;
}
.loader #lottie {
  width: 150px;
}

#back-to-top {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 4vw;
  z-index: 99;
  border: none;
  outline: none;
  font-size: 25px !important;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 10px 10px 11px;
  border-radius: 50%;
  box-shadow: 1px 1px 5px #000000;
  background-color: #ffffff;
}

#back-to-top:hover {
  background-color: #ffffff;
}

.app-container {
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding-right: 7vw;
  padding-left: 7vw;
  margin-right: auto;
  margin-left: auto;
}
.container .row {
  display: flex;
  flex-wrap: wrap;
}

.top-block {
  margin-top: 73px;
}

.half-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .half-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.less-half-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .less-half-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }
}

.more-half-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .more-half-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
  }
}

.half-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .half-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.third-block {
  width: 100%;
}
@media (min-width: 768px) {
  .third-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

.two-thirds-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .two-thirds-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
  }
}

.quarter-block {
  width: 100%;
}
@media (min-width: 768px) {
  .quarter-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.one-fifth-block {
  width: 100%;
}
@media (min-width: 768px) {
  .one-fifth-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.full-block {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.hero-block .half-block {
  padding-bottom: 50px;
}
.hero-block .half-block.left-content {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .hero-block .half-block.left-content {
    padding-right: 1vw;
    padding-top: 13vw;
    padding-bottom: 18vw;
  }
  .hero-block .half-block.right-content {
    padding-left: 20%;
    padding-top: 13vw;
    padding-bottom: 18vw;
  }
  .hero-block .half-block.right-content h3 {
    position: absolute;
    bottom: 95px;
  }
}

.error {
  background: #1f1f1f;
}
.error .error-state {
  text-align: center;
  padding: 8vw 4vw;
  margin: 0 auto;
}
.error .error-state h1 {
  padding-bottom: 2vw;
  color: #0f4eed;
}
.error .error-state h3 {
  padding-bottom: 1vw;
  color: #0f4eed;
}
.error .error-state p {
  color: #0f4eed;
}
.error .error-state a {
  color: #0f4eed;
}
.error .error-state a:after {
  background: #0f4eed;
}

#header {
  width: 100%;
  background: #1f1f1f;
  position: fixed;
  top: 0;
  z-index: 2;
}
#header .container {
  padding-left: 4vw;
  padding-right: 4vw;
}
#header #logo {
  visibility: visible;
  opacity: 1;
  position: relative;
}
#header #logo a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header #logo a img {
  height: 28px;
  width: auto;
}
@media (max-width: 767.99px) {
  #header #logo {
    width: auto;
  }
}
#header .nav {
  display: none;
}
@media (min-width: 768px) {
  #header .nav {
    text-align: right;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    flex-grow: 1;
  }
  #header .nav .nav-block {
    display: inline-block;
  }
  #header .nav .nav-block a {
    margin: 0 15px;
    color: #ffffff;
  }
}

.hamburger-icon {
  position: absolute;
  top: 22px;
  margin: auto;
  height: 29px;
  width: 20px;
  right: 4vw;
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger-icon {
    display: none;
  }
}
.hamburger-icon .hamburger {
  top: 0px;
  bottom: 0px;
  margin: auto;
  position: absolute;
  width: 17px;
  height: 2px;
  left: 0;
  background-color: #ffffff;
  transition: 0.25s;
}
.hamburger-icon .hamburger.active-nav:before {
  width: 20px;
  transform: translateY(7px) rotateZ(45deg);
}
.hamburger-icon .hamburger.active-nav:after {
  width: 20px;
  transform: translateY(-7px) rotateZ(-45deg);
}
.hamburger-icon .hamburger:before {
  content: " ";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.25s;
  display: block;
  right: 0px;
  top: -7px;
}
.hamburger-icon .hamburger:after {
  content: " ";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.25s;
  display: block;
  right: 0px;
  bottom: -7px;
}

.overlay-nav {
  display: none;
}
.overlay-nav.active-overlay {
  z-index: 2;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: block;
}
.overlay-nav.active-overlay .overlay-nav-links li a {
  color: #ffffff;
}
.overlay-nav .overlay-nav-background {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #1f1f1f;
}

.active-menu {
  overflow-y: hidden;
}

.active-menu .overlay-nav {
  margin-top: 73px;
}

.active-menu #header {
  background: transparent;
}

.overlay-nav .overlay-nav-background .menu-bg {
  position: absolute;
  display: block;
  width: 200%;
  left: -53%;
  top: -25%;
  height: 40%;
  background-color: black;
}

.active-menu .hamburger-icon .hamburger {
  background-color: transparent;
}
.overlay-nav .overlay-nav-background .menu-bg.middle {
  top: 29%;
  left: -53%;
  transform: rotate(-45deg) scaleY(0);
}
.overlay-nav .overlay-nav-background .menu-bg.top {
  left: -43%;
  top: 0;
  transform: rotate(-45deg) translateY(-152%);
}
.overlay-nav .overlay-nav-background .menu-bg.bottom {
  top: 105%;
  transform: rotate(-45deg) translateY(25%);
  left: -20%;
}
.overlay-nav .overlay-nav-links {
  color: #ffffff;
  padding: 0px;
  margin: 0px;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
}
.overlay-nav .overlay-nav-links li {
  padding-top: 10px;
  padding-bottom: 10px;
}
.overlay-nav .overlay-nav-links li a {
  color: #000000;
}

.contact-block {
  background-color: #0f4eed;
  padding-top: 110px;
  padding-bottom: 120px;
}
.contact-block p {
  color: #ffffff;
  margin-bottom: 60px;
}
.contact-block h4 {
  margin: 0 0 25px 0;
  line-height: 1.3;
  font-size: 28px;
}
.contact-block h4 .short-underline:after {
  height: 2px;
  background: #ffffff;
}
.contact-block .col {
  max-width: 650px;
}
@media (min-width: 768px) {
  .contact-block {
    padding-top: 10vw;
    padding-bottom: 12vw;
  }
  .contact-block p {
    margin-bottom: 0;
  }
  .contact-block h4 {
    margin: 0 0 60px 0;
    font-size: 2.75vw;
  }
}

.home .contact-block {
  background-color: #9e9e9e;
}

.footer-content {
  background-color: #000000;
  padding-top: 95px;
  padding-bottom: 5vw;
}
@media (min-width: 768px) {
  .footer-content {
    padding-top: 11vw;
    padding-bottom: 5vw;
  }
}
.footer-content #footer-logo {
  visibility: visible;
  opacity: 1;
  position: relative;
  margin-bottom: 65px;
}
.footer-content #footer-logo a {
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-content #footer-logo a img {
  height: 28px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-content #footer-logo {
    width: 100%;
    margin-bottom: 0;
  }
}
.footer-content .footer-columns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-bottom: 35px;
}
.footer-content .footer-columns .col {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer-content .footer-columns {
    flex-direction: row;
    margin-bottom: 0;
  }
  .footer-content .footer-columns .col {
    margin-left: 5vw;
    margin-bottom: 0;
  }
}
.footer-content .footer-block {
  margin-bottom: 10px;
}
.footer-content .footer-block a {
  color: #ffffff;
  font-size: 20px;
}
.footer-content .footer-block p {
  color: #ffffff;
  font-size: 20px;
}

.footer-copyright {
  padding-bottom: 20px;
  background-color: #000000;
}
.footer-copyright .container {
  font-size: 20px;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer-copyright .container {
    padding-left: 4vw;
    padding-right: 4vw;
    font-size: 20px;
    text-align: right;
  }
}

.expertise-block {
  margin-top: 75px;
}
.expertise-block .small-title {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .expertise-block {
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
  .expertise-block .small-title {
    margin-bottom: 6vw;
  }
}

.expertise-content {
  margin-top: 75px;
}
.expertise-content p {
  margin-right: 10px;
  line-height: 2;
}
.expertise-content .third-block {
  padding-bottom: 30px;
}
.expertise-content .third-block .short-underline {
  width: 90px;
  height: 1px;
  padding-bottom: 30px;
  display: block;
}
.expertise-content .third-block .short-underline:after {
  bottom: auto;
}
@media (min-width: 768px) {
  .expertise-content {
    margin-top: 10vw;
  }
  .expertise-content .third-block {
    padding-bottom: 0;
  }
  .expertise-content .third-block .short-underline {
    padding-bottom: 60px;
  }
}

.help-link {
  padding: 60px 0 100px 7vw;
}
@media (min-width: 768px) {
  .help-link {
    text-align: right;
    padding: 6vw 4vw 0 0;
  }
}
.help-link a {
  color: #000000;
}
.help-link a:after {
  background: #0f4eed;
}

.work-block {
  padding-top: 75px;
  padding-bottom: 85px;
  background: rgba(158, 158, 158, 0.25);
}
.work-block .row {
  align-items: center;
  justify-content: center;
}
.work-block .row .quarter-block {
  padding: 6vw 6vw;
}
.work-block .row .quarter-block > div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.work-block .full-block {
  margin-bottom: 50px;
}
.work-block .quarter-block {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
@media (min-width: 768px) {
  .work-block {
    padding-top: 6vw;
    padding-bottom: 5vw;
  }
  .work-block .full-block {
    margin-bottom: 0;
  }
  .work-block .quarter-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.featured-block .slider .container {
  padding-top: 25px;
  padding-bottom: 85px;
  background: transparent;
}
.featured-block .slider .container .small-title {
  margin-bottom: 45px;
}
.featured-block .slider .container .small-title .short-underline:after {
  background: #ffffff;
  height: 2px;
}
.featured-block .slider .container p {
  margin-bottom: 55px;
}
.featured-block .slider .container .cta-link {
  margin-bottom: 6vw;
}
@media (min-width: 768px) {
  .featured-block .slider .container {
    padding-top: 11vw;
    padding-bottom: 8vw;
  }
  .featured-block .slider .container .small-title {
    margin-bottom: 4vw;
  }
  .featured-block .slider .container p {
    margin-bottom: 5vw;
  }
}
.featured-block .slick-dots {
  top: 35px;
  height: 25px;
}
@media (min-width: 768px) {
  .featured-block .slick-dots {
    top: 5vw;
  }
}

.about .hero-block .container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .about .hero-block .container {
    padding-right: 7vw;
    padding-left: 7vw;
  }
  .about .hero-block .container .row {
    flex-direction: row-reverse;
  }
}
.about .hero-block .half-block {
  padding-top: 20px;
  padding-bottom: 40px;
}
.about .hero-block .half-block.left-content {
  padding: 0 7vw 70px 7vw;
}
.about .hero-block .half-block.left-content h1 {
  color: #0f4eed;
}
.about .hero-block .half-block.right-content .background-image-wrapper {
  width: 100%;
}
.about .hero-block .half-block.right-content .background-image-wrapper > div {
  background-size: cover;
}
.about .hero-block .half-block.right-content .background-image-wrapper > div img {
  width: 100%;
}
@media (min-width: 768px) {
  .about .hero-block .half-block {
    padding-top: 20vw;
    padding-bottom: 8vw;
  }
  .about .hero-block .half-block.left-content {
    padding: 20vw 1vw 8vw 0;
  }
  .about .hero-block .half-block.right-content {
    padding: 20vw 0 8vw 20%;
  }
  .about .hero-block .half-block.right-content .background-image-wrapper > div {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.services-info,
.about-info {
  padding-top: 50px;
  padding-right: 0;
}
.services-info h1,
.about-info h1 {
  margin-bottom: 50px;
}
.services-info h2,
.about-info h2 {
  margin-top: 60px;
  margin-bottom: 75px;
  font-size: 22px;
  line-height: 1.3;
}
.services-info .short-underline:after,
.about-info .short-underline:after {
  background-color: #0f4eed;
}
@media (min-width: 768px) {
  .services-info,
.about-info {
    padding-top: 10vw;
    padding-right: 8vw;
  }
  .services-info h1,
.about-info h1 {
    margin-bottom: 6vw;
  }
  .services-info h2,
.about-info h2 {
    margin-top: 3vw;
    margin-bottom: 16vw;
    font-size: 4.75vw;
    line-height: 1;
  }
}

.about-establishment {
  margin-bottom: 5vw;
}
.about-establishment .short-underline {
  display: block;
  height: 1px;
}
.about-establishment .short-underline:after {
  bottom: 0;
}
.about-establishment .about-establishment-inner {
  padding-top: 50px;
  padding-bottom: 40px;
}
.about-establishment .about-establishment-inner .short-underline {
  width: 90px;
}
.about-establishment .about-establishment-inner .less-half-block {
  margin-bottom: 60px;
}
.about-establishment .about-establishment-inner .more-half-block > p {
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  .about-establishment .about-establishment-inner .more-half-block > p {
    width: 75%;
  }
}
.about-establishment .about-establishment-inner .more-half-block .expertise-content {
  margin-top: 30px;
}
.about-establishment .about-establishment-inner .more-half-block .expertise-content > div {
  margin-right: 3vw;
}
.about-establishment .about-establishment-inner .more-half-block .expertise-content .full-block {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about-establishment {
    padding-bottom: 0;
  }
  .about-establishment .short-underline {
    width: 100%;
  }
  .about-establishment .about-establishment-inner {
    padding-top: 3vw;
    padding-bottom: 2vw;
  }
  .about-establishment .about-establishment-inner .short-underline {
    width: 100%;
  }
  .about-establishment .about-establishment-inner .less-half-block {
    margin-bottom: 0;
  }
  .about-establishment .about-establishment-inner .more-half-block > p {
    margin-bottom: 4vw;
    width: 75%;
  }
  .about-establishment .about-establishment-inner .more-half-block .expertise-content {
    margin-top: 75px;
  }
  .about-establishment .about-establishment-inner .more-half-block .expertise-content > div {
    margin-right: 3vw;
  }
  .about-establishment .about-establishment-inner .more-half-block .expertise-content .full-block {
    display: none;
  }
}

.services-info h1 {
  display: none;
}
@media (min-width: 768px) {
  .services-info h1 {
    display: block;
  }
}

.services .hero-block .container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .services .hero-block .container {
    padding-right: 7vw;
    padding-left: 7vw;
  }
  .services .hero-block .container .row {
    flex-direction: row-reverse;
  }
}
.services .hero-block .half-block {
  padding-top: 20px;
  padding-bottom: 40px;
}
.services .hero-block .half-block.left-content {
  padding: 0 7vw 70px 7vw;
}
.services .hero-block .half-block.left-content h1 {
  color: #ffffff;
}
.services .hero-block .half-block.right-content .background-image-wrapper {
  width: 100%;
}
.services .hero-block .half-block.right-content .background-image-wrapper > div {
  background-size: cover;
}
.services .hero-block .half-block.right-content .background-image-wrapper > div img {
  width: 100%;
}
@media (min-width: 768px) {
  .services .hero-block .half-block {
    padding-top: 20vw;
    padding-bottom: 8vw;
  }
  .services .hero-block .half-block.left-content {
    padding: 20vw 1vw 8vw 0;
  }
  .services .hero-block .half-block.right-content {
    padding: 20vw 0 8vw 20%;
  }
  .services .hero-block .half-block.right-content .background-image-wrapper > div {
    position: absolute;
    bottom: -140px;
    left: 0;
  }
}
.services .services-block {
  background: #ffffff;
}
.services .services-block .cta-link {
  margin-top: 35px;
  display: block;
}
.services .services-block h1 {
  font-size: 48px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .services .services-block h1 {
    font-size: 6.4vw;
    margin-bottom: 0;
  }
}
.services .services-block .container {
  padding-top: 12vw;
  padding-bottom: 10vw;
  border-bottom: 1px solid #ffffff;
}
.services .services-block .container .expertise-content {
  margin-top: 0;
}
.services .services-block .container .expertise-content .short-underline {
  margin-top: 45px;
  display: block;
  width: 100%;
}
.services .services-block .container .expertise-content .short-underline:after {
  display: none;
}
@media (min-width: 768px) {
  .services .services-block .container .expertise-content {
    margin-top: 0;
  }
  .services .services-block .container .expertise-content > div {
    padding-right: 25px;
  }
}

:-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 0.85;
}

::placeholder {
  color: #ffffff !important;
  opacity: 0.85;
}

::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 0.85;
}

.button-container {
  text-align: right;
}

.button {
  display: inline-block;
  padding: 10px 50px;
  font-size: 22px;
  border: 1px solid #000000;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  color: #ffffff;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.button:hover {
  -ms-transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.1);
}

.form-submission-messages {
  position: absolute;
  width: 100%;
  text-align: left;
}
.form-submission-messages > div {
  display: none;
  text-align: center;
}
.form-submission-messages .invalid-submission {
  color: #f23d3d;
  background: #ffffff;
  font-size: 18px;
  padding: 7px 5px;
}
.form-submission-messages .valid-submission {
  color: #1cb39b;
  background: #ffffff;
  font-size: 18px;
  padding: 7px 5px;
}

.contact .top-block {
  background: #0f4eed;
}
.contact .top-block .half-block.left-content {
  padding: 80px 0 20px 0;
}
.contact .top-block .half-block.left-content p {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 45px;
}
.contact .top-block .half-block.left-content h4 {
  color: #ffffff;
  font-size: 28px;
  margin: 0;
}
.contact .top-block .half-block.left-content h4.top-contact-header {
  display: none;
}
@media (min-width: 768px) {
  .contact .top-block .half-block.left-content {
    padding: 2vw 0 12vw 0;
  }
  .contact .top-block .half-block.left-content p {
    margin-top: 45px;
  }
  .contact .top-block .half-block.left-content h4 {
    padding-top: 45px;
    padding-bottom: 45px;
    font-size: 2.75vw;
    font-size: 2.75vw;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .contact .top-block .half-block.left-content h4.top-contact-header {
    display: block;
  }
}
.contact .top-block .half-block.right-content {
  padding: 2vw 0 12vw 0;
}
@media (min-width: 768px) {
  .contact .top-block {
    padding-top: 2vw;
  }
  .contact .top-block .half-block.left-content {
    padding: 2vw 0 12vw 0;
  }
  .contact .top-block .half-block.left-content h4 {
    font-size: 2.75vw;
    font-size: 2.75vw;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.contact textarea,
.contact input {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 10px 0 0 0;
  width: 100%;
  font-size: 22px;
  background: rgba(15, 57, 165, 0.26);
  color: #ffffff;
  padding: 5px 0;
  font-family: "aktiv-grotesk-thin", sans-serif;
  font-weight: 200;
}
.contact #contact-form .form-row {
  border-bottom: 1px solid #ffffff;
  margin-top: 45px;
  margin-bottom: 45px;
  position: relative;
}
.contact #contact-form label.error {
  position: absolute;
  bottom: -26px;
  color: #f23d3d;
  background: #ffffff;
  font-size: 18px;
  text-align: right;
  left: 0;
  padding: 2px;
  width: 100%;
  -webkit-transition: height 200ms ease-in;
  -moz-transition: height 200ms ease-in;
  -o-transition: height 200ms ease-in;
  transition: height 200ms ease-in;
}
.contact #contact-form label:not(.error) {
  display: table-cell;
  color: #ffffff;
  width: 125px;
  vertical-align: top;
}
.contact #contact-form .form-submission-wrapper {
  text-align: right;
  margin-top: 45px;
  display: table;
  width: 100%;
  position: relative;
}
.contact #contact-form .form-submission-wrapper .button {
  width: 170px;
}

.work .work-info {
  padding-top: 50px;
  padding-right: 0;
}
.work .work-info h2 {
  margin-top: 60px;
  margin-bottom: 75px;
  font-size: 22px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .work .work-info {
    padding-top: 15vw;
    padding-right: 8vw;
  }
  .work .work-info h2 {
    margin-top: 3vw;
    margin-bottom: 16vw;
    font-size: 48px;
    line-height: 1;
  }
}
.work .work-info .short-underline:after {
  background-color: #0f4eed;
}
.work .work-listing {
  margin-bottom: 12vw;
}
.work .work-listing .row {
  flex-flow: column;
}
@media (min-width: 768px) {
  .work .work-listing .row {
    flex-flow: row;
  }
}
.work .work-listing .container {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .work .work-listing .container {
    margin-top: 0;
  }
}
.work .work-listing .container .work-item-info {
  color: #000000;
  margin-bottom: 45px;
  flex: 0 1 auto;
}
.work .work-listing .container .work-item-info .work-title {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.work .work-listing .container .work-item-info .work-title-subcopy {
  font-size: 18px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .work .work-listing .container .work-item-info {
    margin-left: 10px;
    margin-bottom: 40px;
  }
}
.work .work-listing .container a {
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: column;
}
.work .work-listing .container .full-block {
  height: 100%;
  margin-bottom: 50px;
}
.work .work-listing .container .full-block .work-block-item {
  background-size: auto 100%;
  background-position: center;
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .work .work-listing .container .full-block {
    margin-bottom: 0;
  }
}
.work .work-listing .container .top-block,
.work .work-listing .container .bottom-block {
  margin-top: 0;
}
.work .work-listing .container .top-block .work-block-item,
.work .work-listing .container .bottom-block .work-block-item {
  background-size: cover;
}
.work .work-listing .container .top-block {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .work .work-listing .container:nth-child(odd) .full-block .work-block-item {
    margin-right: 25px;
  }
}
.work .work-listing .container:nth-child(odd) .top-block .work-item-info,
.work .work-listing .container:nth-child(odd) .bottom-block .work-item-info {
  margin-left: 35px;
}
@media (min-width: 768px) {
  .work .work-listing .container:nth-child(odd) .top-block .work-block-item,
.work .work-listing .container:nth-child(odd) .bottom-block .work-block-item {
    margin-left: 25px;
  }
}
.work .work-listing .container:nth-child(even) .full-block .work-item-info {
  margin-left: 35px;
}
@media (min-width: 768px) {
  .work .work-listing .container:nth-child(even) .full-block .work-block-item {
    margin-left: 25px;
  }
}
.work .work-listing .container:nth-child(even) .top-block .work-block-item,
.work .work-listing .container:nth-child(even) .bottom-block .work-block-item {
  margin-right: 0;
}
@media (min-width: 768px) {
  .work .work-listing .container:nth-child(even) .top-block .work-block-item,
.work .work-listing .container:nth-child(even) .bottom-block .work-block-item {
    margin-right: 25px;
  }
}

.about-info,
.service-info {
  padding-top: 50px;
  padding-right: 0;
}
.about-info h1,
.service-info h1 {
  margin-bottom: 50px;
}
.about-info h2,
.service-info h2 {
  margin-top: 60px;
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  .about-info,
.service-info {
    padding-top: 10vw;
    padding-right: 8vw;
  }
  .about-info h1,
.service-info h1 {
    margin-bottom: 6vw;
  }
  .about-info h2,
.service-info h2 {
    margin-top: 3vw;
    margin-bottom: 16vw;
  }
}

.case-study .hero-block > div {
  background-position: center;
  background-size: cover;
}
.case-study .background-cover {
  background-size: cover;
}
.case-study .case-messaging {
  margin-bottom: 2vw;
}
.case-study .case-messaging .row {
  align-items: center;
}
.case-study .case-messaging .row .two-thirds-block {
  margin-top: 85px;
  margin-bottom: 95px;
}
.case-study .case-messaging .row p {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin: 0;
}
@media (min-width: 768px) {
  .case-study .case-messaging .row .two-thirds-block {
    margin: 0;
  }
  .case-study .case-messaging .row p {
    font-size: 48px;
  }
}
.case-study .case-messaging .background-cover {
  background-size: cover;
}
.case-study .message-background {
  margin-top: 65px;
  margin-bottom: 85px;
}
@media (min-width: 768px) {
  .case-study .message-background {
    margin-top: 6vw;
    margin-bottom: 8vw;
  }
}
.case-study .middle-content {
  margin-bottom: 85px;
}
.case-study .middle-content .top-image {
  margin-bottom: 85px;
}
@media (min-width: 768px) {
  .case-study .middle-content {
    margin-bottom: 8vw;
  }
  .case-study .middle-content .top-image {
    margin-bottom: 8vw;
  }
}
.case-study .color-pallette {
  margin-bottom: 85px;
}
.case-study .color-pallette .row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.case-study .color-pallette .row .color-unit {
  position: relative;
  width: 10%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .case-study .color-pallette {
    margin-bottom: 3vw;
  }
}
.case-study .block-wrapper .side-by-side-content {
  margin-top: 65px;
  margin-bottom: 85px;
}
.case-study .block-wrapper .side-by-side-content:nth-child(2) .two-thirds-block {
  margin-left: auto;
}
@media (min-width: 768px) {
  .case-study .block-wrapper .side-by-side-content {
    margin-top: 6vw;
    margin-bottom: 8vw;
  }
}
.case-study .bottom-content {
  margin-top: 65px;
  margin-bottom: 85px;
}
@media (min-width: 768px) {
  .case-study .bottom-content {
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
}
.case-study h3 {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .case-study .about-info h3 {
    margin-bottom: 14vw;
  }
  .case-study .case-messaging .container .two-thirds-block {
    padding-left: 4vw;
  }
  .case-study .case-messaging .container .two-thirds-block p {
    font-size: 4.75vw;
    line-height: 1.3;
  }
  .case-study .message-background .row {
    justify-content: flex-end;
    display: flex;
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=yintrinsic.css.map */
