h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 53px;
  line-height: 65px;
  font-weight: 300;
  letter-spacing: -1px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  letter-spacing: -0.67px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 28px;
  line-height: 35px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 28px;
  line-height: 33px;
  font-weight: 300;
  letter-spacing: -0.6px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 19px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 12px;
  text-transform: uppercase;
}

p {
  margin-bottom: 10px;
  font-family: Gotham, sans-serif;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: -0.1px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}



.header {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  min-height: 12vh;
  margin-right: 12.5vw;
  margin-left: 12.5vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header-text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.logo-block {
  width: 11vw;
  min-height: 60px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/logo.png');
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.logo-block:hover {
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}

.logo-block.footer-logo {
  margin-right: 50px;
  background-position: 50% 0px;
}

.logo-block.white {
  background-image: url('../images/Efferent-Logo-White.svg');
}

.social-icon {
  width: 15px;
  height: 15px;
  background-image: url('../images/tw.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.social-icon.facebook {
  margin-right: 2vw;
  background-image: url('../images/fb.png');
  background-size: contain;
}

.social-icon.facebook.footer-icon {
  margin-right: 15px;
}

.social-icon.facebook.white {
  background-image: url('../images/facebook-menu.png');
}

.social-icon.linkedin {
  margin-left: 15px;
  background-image: url('../images/linkedin.png');
}

.social-icon.linkedin.top {
  margin-right: 2vw;
}

.social-icon.white {
  background-image: url('../images/twitter-menu.png');
}

.social-icon.white.linkedin {
  margin-right: 2vw;
  background-image: url('../images/linkedin-white.png');
}

.header-link {
  margin-right: 2vw;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link:hover {
  color: #aad047;
}

.header-link.connect {
  margin-right: 2vw;
  margin-left: 2vw;
  color: #c9c9c9;
}

.header-link.copyright-text {
  margin-right: 15px;
  color: #b2b2ba;
  font-weight: 500;
  text-transform: none;
}

.header-link.color-active.w--current {
  color: #39b54a;
  font-weight: 700;
}

.header-link.white {
  color: #fff;
}

.header-link.white.w--current {
  color: #fddf00;
  font-weight: 700;
}

.home-first-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-top: 5vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.landing-page-inner-block {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 35%;
  height: 40vh;
  margin-bottom: 10vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.scroll-down-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Gotham, sans-serif;
  color: #662d91;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
}

.scroll-down-block.left {
  position: relative;
  z-index: 2;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.scroll-down-block.left.white {
  color: #fff;
}

.scroll-down-block.left.white.career-page {
  position: absolute;
  left: 12.5vw;
  bottom: 50px;
}

.scroll-down-block.about {
  margin-top: 20px;
}

.scroll-down-block.careers-page {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin-bottom: 10vh;
}

.scroll-down-block.careers-page.white {
  color: #fff;
}

.scroll-down-block.centre {
  position: absolute;
}

.scroll-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 27px;
  height: 50px;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #662d91;
  border-radius: 150px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.scroll-block:hover {
  background-color: rgba(102, 45, 145, .17);
}

.scroll-block.white {
  border-color: #fff;
}

.scroll-block.white:hover {
  background-color: hsla(0, 0%, 100%, .17);
}

.scroll-down-arrow {
  width: 40%;
  margin-bottom: 7px;
}

.button {
  min-width: 180px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 100px;
  background-color: #39b54a;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  font-family: Gotham, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.17px;
}

.button:active {
  background-image: -webkit-linear-gradient(270deg, #aad047, #aad047);
  background-image: linear-gradient(180deg, #aad047, #aad047);
}

.button.shadow {
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 18px 22px -4px rgba(0, 0, 0, .37);
}

.button.shadow:hover {
  background-color: #1b8029;
}

.button.shadow.home {
  min-width: 140px;
  margin-top: 24px;
  background-color: #fff;
  box-shadow: 0 18px 22px -4px rgba(0, 0, 0, .21);
  color: #9b9b9b;
}

.button.shadow.home:hover {
  background-color: #f1f1f1;
}

.button.shadow.home:active {
  background-image: -webkit-linear-gradient(270deg, #ececec, #ececec);
  background-image: linear-gradient(180deg, #ececec, #ececec);
}

.button.shadow.discover {
  margin-top: 36px;
  box-shadow: 0 15px 18px -4px rgba(57, 181, 74, .21);
}

.button.shadow.contact {
  background-color: chocolate;
  box-shadow: 0 20px 19px -4px rgba(0, 0, 0, .1);
}

.button.shadow.contact:hover {
  background-color: #1b8029;
}

.button.shadow.client-page {
  margin-top: 8vh;
  background-color: #fff;
  color: #662d91;
}

.button.shadow.client-page:hover {
  background-color: #a1a1a1;
}

.button.shadow.more-jobs {
  margin-top: 5px;
  margin-bottom: 0px;
}

.button.shadow.career {
  margin-bottom: 0px;
}

.button.discover {
  background-color: #39b54a;
}

.button.line {
  border: 1px solid #39b54a;
  background-color: transparent;
  color: #39b54a;
}

.button.line:hover {
  background-color: rgba(170, 208, 71, .27);
}

.button.line.advisory {
  margin-top: 40px;
}

.button.line.portfolio {
  margin-top: 40px;
  border-color: #662d91;
  color: #662d91;
}

.button.line.portfolio:hover {
  background-color: rgba(102, 45, 145, .27);
}

.button.subscribe {
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin-right: 11px;
  margin-bottom: 11px;
}

.button.subscribe:hover {
  background-color: #1b8029;
}

._1st-section-brand-element {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 25vw;
  height: 60vh;
  margin-bottom: -10vh;
  background-image: url('../images/');
  background-position: 0px 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.home-section-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  min-height: 50vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fdf9ff;
  background-image: url('../images/reels.png');
  background-position: 85% 100%;
  background-size: auto 80%;
  background-repeat: no-repeat;
}

.half-block {
  width: 50%;
}

.home-section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  min-height: 50vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-image: url('../images/h2.jpg');
  background-position: 0px 50%;
  background-size: cover;
}

.home-text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  min-height: 500px;
  min-width: 400px;
  margin-top: -50px;
  padding: 70px 12.5% 60px 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  background-color: #fff;
  background-image: url('../images/brand-element-on-advidory-card.svg');
  background-position: 100% 36px;
  background-size: auto 55%;
  background-repeat: no-repeat;
  box-shadow: 42px 42px 60px 0 rgba(102, 45, 145, .2), 42px 42px 60px 0 rgba(0, 0, 0, .15);
}

.home-text-block._2nd {
  background-image: url('../images/brand-element-product-por');
  background-position: 88% 100%;
  background-size: 40%;
}

.home-section-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  min-height: 50vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  background-image: url('../images/j.jpg');
  background-position: 100% 50%;
  background-size: cover;
}

.home-section-5 {
  height: 600px;
  padding-top: 15vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  background-color: seashell;
}

.home-contact-inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
  min-height: 450px;
  padding: 50px 15%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #662d91;
  background-image: url('../images/brsnd-element-on-contact-card.html');
  background-position: 50% 100%;
  background-size: auto 50%;
  background-repeat: no-repeat;
  box-shadow: 42px 42px 50px 0 rgba(0, 0, 0, .15);
  text-align: center;
}

.footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 180px;
  padding-right: 12.5vw;
  padding-bottom: 20px;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.phone-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 70px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(64, 22, 96, .5);
}

.phone-block.contact-page {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 60px;
  margin-bottom: 40px;
  border-radius: 0px;
}

.phone-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 123px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.contact-inner {
  height: 150px;
}

.contact-inner.top {
  margin-right: 14%;
  margin-left: 14%;
}

.home-phone-link {
  padding-left: 29px;
  background-image: url('../images/phone.png');
  background-position: 0px 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: Gotham, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: -0.23px;
  text-decoration: none;
}

.home-phone-link:hover {
  color: #fddf00;
}

.home-phone-link.email {
  margin-left: 30px;
  background-image: url('../images/email.png');
  background-size: 16px;
}

.home-phone-link.contact-page {
  font-size: 15px;
}

.white-h1 {
  color: #fff;
}

.home-contact-h6 {
  margin-bottom: -10px;
  opacity: 0.5;
  color: #fff;
}

.home-contact-h6.client-page {
  margin-bottom: 10px;
}

.home-contact-h6.career {
  margin-bottom: 0px;
}

.home-contact-white-body {
  opacity: 0.5;
  color: #fff;
}

.home-contact-white-body.career {
  margin: 20px 15% 30px;
}

.footer-inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-inner-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe-block {
  position: absolute;
  left: 0px;
  top: -150px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  height: 150px;
  margin-top: 35px;
  margin-left: 12.5vw;
  padding-right: 11.5vw;
  padding-left: 11.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.subscribe-field {
  height: 70px;
  margin-bottom: 0px;
  padding-bottom: 3px;
  padding-left: 73px;
  border-style: none;
  border-radius: 100px;
  background-image: url('../images/email-newsletter.png');
  background-position: 36px 50%;
  background-size: 16px;
  background-repeat: no-repeat;
  box-shadow: 8px 8px 37px 0 rgba(0, 0, 0, .15);
  font-family: Gotham, sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 300;
}

.form-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.subscribe-header-text {
  margin-bottom: 42px;
  font-family: Gotham, sans-serif;
  color: #fff;
  font-size: 15px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 16px;
}

.about-section-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  min-height: 600px;
  padding: 13vh 12.5vw 7vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.inner-about-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 43vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/brand-element-header_2.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.center-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 35vw;
  height: 35vw;
  min-height: 350px;
  min-width: 350px;
  padding: 50px 5vw 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .1), 14px 14px 25px 0 rgba(0, 0, 0, .15);
  text-align: center;
}

.about-section-2 {
  height: 100vh;
  padding-top: 15vw;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  background-color: #512275;
  background-image: url('../images/brand-element-slide-2.svg');
  background-position: 50% 100%;
  background-size: 75%;
  background-repeat: no-repeat;
}

.left-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25vw;
  height: 25vw;
  min-height: 250px;
  min-width: 250px;
  padding-right: 7vw;
  padding-left: 4vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(270deg, #662d91, #2a0447);
  background-image: linear-gradient(180deg, #662d91, #2a0447);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .1), 14px 14px 25px 0 rgba(0, 0, 0, .15);
  color: #fff;
  text-align: right;
}

.left-circle.right {
  position: relative;
  padding-right: 4vw;
  padding-left: 7vw;
  background-image: -webkit-linear-gradient(270deg, #fcde00, #fd9000);
  background-image: linear-gradient(180deg, #fcde00, #fd9000);
  text-align: left;
}

.center-circle-wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.left-circle-wrapper {
  position: relative;
  width: 38vh;
  height: 38vh;
  min-height: 250px;
  min-width: 250px;
  padding-right: 50px;
}

.left-circle-text-block {
  padding-right: 50px;
  text-align: right;
}

.white-body-text {
  color: #fff;
}

.white-body-text.product {
  margin-top: 50px;
}

.white-body-text.contact-text {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.23px;
}

.white-body-text.open-job {
  margin-top: 20px;
  color: hsla(0, 0%, 100%, .63);
}

.white-h5 {
  color: #fff;
}

.about-body-text {
  width: 30%;
  margin-right: 5%;
  float: left;
  color: #fff;
}

.about-body-text.last-column {
  margin-right: 0%;
}

.about-text-block {
  margin-top: 90px;
  margin-bottom: 90px;
}

.about-section-3 {
  padding-bottom: 100px;
  background-color: #512275;
}

.advisory-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2.5vw;
  margin-left: 2.5vw;
  padding: 85px 10vw 50px;
  background-color: #fff;
  background-image: url('../images/brand-element-advirsory-card.svg');
  background-position: 0px 85%;
  background-size: auto 60%;
  background-repeat: no-repeat;
  box-shadow: 35px 35px 50px 0 rgba(0, 0, 0, .15), 35px 35px 40px 0 rgba(0, 0, 0, .15);
}

.advisory-inner-block-1 {
  width: 35%;
  padding-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.advisory-inner-block-1.open-insight {
  padding-top: 45px;
  background-image: url('../images/%c3%a2%c2%80%c2%9c-quote.svg');
  background-position: 0px 0px;
  background-size: auto 30px;
  background-repeat: no-repeat;
}

.advisory-inner-block-2 {
  padding-top: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.advisory-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.green-subheading {
  margin-top: 20px;
  color: #39b54a;
  font-size: 18px;
  font-weight: 500;
}

.green-subheading.white {
  margin-top: 0px;
  color: #fff;
}

.advisory-inner-half {
  width: 47.5%;
  margin-top: 27px;
  margin-right: 5%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.advisory-inner-half.last {
  margin-right: 0%;
}

.advisory-icon-block {
  display: none;
  height: 50px;
  background-image: url('../images/digital-strategy.png');
  background-position: 0px 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.advisory-icon-block.value {
  background-image: url('../images/value-management.png');
  background-size: contain;
}

.about-section-4 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 12.5vw 290px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #512275;
}

.white-h3 {
  color: #fff;
}

.white-h4 {
  color: #fff;
}

.product-heading-block {
  width: 50%;
  text-align: center;
}

.product-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  min-height: 25vw;
  margin-bottom: 6vw;
  padding: 6vw 7vw 54px 5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: #fff;
  background-image: url('../images/brand-element-slide-2-2.svg');
  background-position: 140% 100%;
  background-size: 50%;
  background-repeat: no-repeat;
  box-shadow: 21px 21px 30px 0 rgba(0, 0, 0, .15);
}

.product-block.more-jobs {
  width: 23vw;
  min-height: 0vw;
  min-width: 230px;
  margin-right: 2vw;
  margin-bottom: 0vw;
  padding: 21px 22px 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
}

.portfolio-heading {
  margin-bottom: 27px;
  color: #39b54a;
  font-size: 20px;
}

.coming-soon-text {
  position: absolute;
  left: 5vw;
  bottom: 30px;
  margin-top: 25px;
  color: #b2b2ba;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 7px;
  text-decoration: none;
  text-transform: uppercase;
}

.coming-soon-text.link {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #662d91;
}

.coming-soon-text.link:hover {
  color: #39b54a;
  letter-spacing: 10px;
  text-decoration: underline;
}

.download-strip {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100px;
  margin-bottom: 185px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #401660;
  opacity: 0.5;
  font-family: Gotham, sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 100;
}

.download-link {
  color: #fff;
  font-weight: 400;
}

.careers-section-1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  min-height: 500px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/brand-element-header.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}

.career-section-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 330px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.career-value-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33.33%;
  padding: 65px 5vw 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #662d91;
  text-align: center;
}

.career-value-block.right-block {
  background-color: #39b54a;
}

.white-h2 {
  color: #fff;
}

.career-value-text {
  margin-bottom: 0px;
  opacity: 0.5;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 9px;
}

.career-value-text.purple {
  color: #662d91;
}

.small-body-text {
  margin-bottom: 0px;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: -0.17px;
}

.small-body-text.purple {
  color: #662d91;
}

.career-mid-block {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 35vw;
  height: 360px;
  margin-top: -15px;
  padding: 95px 5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fddf00;
  box-shadow: 7px 7px 30px 0 rgba(0, 0, 0, .2);
  color: #662d91;
  text-align: center;
}

.career-section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 12.5vw 90px;
}

.more-reasons-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.more-reasons-inner {
  width: 47.5%;
  margin-top: -20px;
  margin-bottom: 40px;
}

.more-reasons-inner.client {
  width: 30%;
  margin-top: 10px;
  color: #fff;
}

.more-reasons-inner.client.first {
  width: 47.5%;
}

.career-section-4 {
  position: relative;
  z-index: 1;
  height: 60vw;
  background-image: url('../images/Team_image.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.career-section-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 150px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #512275;
}

.job-tab-pane {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  min-height: 50px;
  padding: 70px 12.5vw 350px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: rgba(64, 22, 96, .5);
}

.grey-h5 {
  color: #4a4a4a;
}

.tab-menu {
  margin-top: 60px;
  text-align: center;
}

.tab-link {
  width: 150px;
  margin-top: -10px;
  padding-right: 6px;
  padding-left: 6px;
  background-color: transparent;
  font-family: Gotham, sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.tab-link.w--current {
  margin-top: 0px;
  border-bottom: 3px solid #39b54a;
  background-color: transparent;
  color: #39b54a;
  font-weight: 700;
}

.career-section-6 {
  position: relative;
  height: 400px;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  background-color: #512275;
}

.career-contact-block {
  position: absolute;
  top: -200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  min-height: 400px;
  padding-top: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #662d91;
  text-align: center;
}

.tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-section-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.telephone-image-block {
  width: 50%;
  height: 50%;
  background-image: url('../images/telephone.jpg');
  background-position: 50% 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-section-2 {
  height: 700px;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  background-color: #512275;
}

.contact-inner-block {
  position: relative;
  top: -135px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  min-height: 70vh;
  padding: 50px 15% 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #662d91;
  background-image: url('../images/brsnd-element-on-contact-card.html');
  background-position: 50% 112%;
  background-size: 55%;
  background-repeat: no-repeat;
  box-shadow: 42px 42px 50px 0 rgba(0, 0, 0, .15);
}

.contact-column {
  padding-right: 10px;
  padding-left: 0px;
}

.contact-column.right {
  padding-right: 0px;
  padding-left: 10px;
}

.form-field {
  min-height: 50px;
  padding-right: 25px;
  padding-left: 25px;
  border-style: none;
  border-radius: 50px;
  background-color: hsla(0, 0%, 100%, .2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: Gotham, sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 300;
}

.form-field:hover {
  background-color: rgba(183, 90, 253, .44);
}

.form-field:focus {
  background-color: #fff;
  box-shadow: 14px 14px 20px 0 rgba(0, 0, 0, .15);
  color: #000;
}

.form-field.message {
  min-height: 200px;
  margin-top: 14px;
  margin-bottom: 25px;
  padding-top: 20px;
  border-radius: 25px;
}

.contact-form {
  margin-top: 18px;
  text-align: center;
}

.check-logo {
  position: absolute;
  right: 5vw;
  bottom: 40px;
  width: 30px;
  height: 30px;
  background-image: url('../images/Check_Logo.svg');
  background-position: 50% 50%;
  background-size: auto 97%;
  background-repeat: no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.check-logo:hover {
  -webkit-transform: scale(0.78);
  -ms-transform: scale(0.78);
  transform: scale(0.78);
}

.home-gif-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100vh;
  height: 100vh;
}

.slide-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-image: url('../images/r.jpg');
  background-position: 100% 0px;
  background-size: contain;
}

.slide-2 {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  background-image: url('../images/Freeze-slide-2.jpg');
  background-position: 100% 0px;
  background-size: contain;
}

.slide-3 {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  background-image: url('../images/Freeze-slide-3.jpg');
  background-position: 100% 0px;
  background-size: contain;
}

.insight-section-1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  padding-right: 24.5vw;
  padding-left: 24.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/brand-element-1-header.svg'), url('../images/brand-element-2-header.svg'), -webkit-linear-gradient(270deg, #fff 18%, #f4f4f4);
  background-image: url('../images/brand-element-1-header.svg'), url('../images/brand-element-2-header.svg'), linear-gradient(180deg, #fff 18%, #f4f4f4);
  background-position: 0px 100%, 100% 0px, 0px 0px;
  background-size: auto 40%, auto 40%, auto;
  background-repeat: no-repeat, no-repeat, repeat;
  text-align: center;
}

.insight-section-1.open {
  background-image: url('../images/image-block-25overlay-blur-on-hover.jpg'), url('../images/brand-element-1-header.svg'), url('../images/brand-element-2-header.svg'), -webkit-linear-gradient(270deg, #fff 18%, #f4f4f4);
  background-image: url('../images/image-block-25overlay-blur-on-hover.jpg'), url('../images/brand-element-1-header.svg'), url('../images/brand-element-2-header.svg'), linear-gradient(180deg, #fff 18%, #f4f4f4);
  background-position: 50% 50%, 0px 100%, 100% 0px, 0px 0px;
  background-size: cover, auto 40%, auto 40%, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  box-shadow: inset 0 -200px 500px 500px rgba(0, 0, 0, .6);
}

.insight-section-2 {
  padding: 60px 12.5vw 100px;
}

.insight-section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  padding-top: 75px;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #512275;
  text-align: center;
}

.featured-block-companies {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 200px;
  margin-top: 46px;
  padding-right: 10%;
  padding-left: 10%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: none;
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}

.latest-post-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 280px;
  padding: 20px 20px 20px 40px;
  background-image: url('../images/image-block-25overlay-blur-on-hover.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.featured-logo-block {
  width: 20%;
  height: 70px;
  margin-right: 5%;
  margin-left: 5%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.featured-logo-block:hover {
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}

.featured-logo-block.vanguard {
  background-image: url('../images/Vanguard.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.featured-logo-block.pharma-news {
  background-image: url('../images/Pharmanews.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.featured-logo-block.radiology {
  background-image: url('../images/Everything_Radiology.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.post-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-left: 2vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-wrapper.more {
  display: none;
}

.post-preview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 270px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: #39b54a;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  text-decoration: none;
}

.post-preview:hover {
  position: relative;
  z-index: 1;
  box-shadow: 14px 14px 30px 0 rgba(0, 0, 0, .41), inset 0 -200px 500px 250px rgba(6, 87, 17, .41);
}

.post-preview.halfway {
  width: 34vw;
  padding-right: 0px;
  padding-left: 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.post-preview.halfway._1 {
  background-image: url('../images/image-11.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-preview.halfway._2 {
  background-image: url('../images/image-12.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-preview.halfway._3 {
  background-image: url('../images/image-12.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-preview.halfway._4 {
  background-image: url('../images/image-6.jpg');
  background-size: 459px;
}

.post-preview._1 {
  background-image: url('../images/image-5.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-preview._2 {
  background-image: url('../images/image-9.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-preview.latest {
  height: 300px;
  padding-left: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.post-preview.latest._1 {
  background-image: url('../images/image-block-25overlay-blur-on-hover.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-description-block {
  width: 25%;
  padding: 20px;
  background-color: #fff;
}

.post-description-block.half {
  width: 50%;
}

.post-description-block.latest {
  background-color: #39b54a;
}

.half-post-preview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 280px;
  margin-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #8d8d8d;
}

.post-preview-title {
  margin-bottom: 0px;
  color: #000;
  font-size: 19px;
  line-height: 25px;
}

.post-preview-title.latest {
  color: #fff;
  text-decoration: underline;
}

.post-preview-title.back {
  color: #fff;
  text-align: center;
}

.post-date {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 14px;
}

.post-date.latest {
  color: #fff;
  text-decoration: none;
}

.view-more-button-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.more-posts {
  display: none;
  padding-left: 2vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  opacity: 0;
}

.client-experience-block {
  width: 70%;
}

.client-experience-block.bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-right: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.client-experience-block.bottom.with-padding {
  margin-right: 12.5vw;
}

.client-experience-block.temporary {
  width: 80%;
  margin-bottom: 10vh;
}

.client-section-1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  padding-top: 12vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/brand-element-header_1.svg'), url('../images/image-header.jpg');
  background-position: 100% 0px, 50% 50%;
  background-size: auto 90%, cover;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
}

.client-section-1.open {
  padding-top: 0vh;
  padding-right: 40vw;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.client-section-1.temp {
  background-image: url('../images/brand-element-header_1.svg'), url('../images/image-header-2.jpg');
}

.client-bottom-section {
  display: block;
  overflow: scroll;
  padding-top: 100px;
  padding-bottom: 150px;
  padding-left: 12.5vw;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: #512275;
}

.experience-preview-block {
  position: relative;
  display: block;
  width: 16.75vw;
  height: 12vw;
  min-height: 120px;
  min-width: 170px;
  margin-right: 1vw;
  margin-left: 1vw;
  padding: 3vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
  box-shadow: 13px 13px 30px 0 rgba(0, 0, 0, .25);
}

.experience-preview-block:hover {
  box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, .25);
}

.client-logo-block {
  width: 100%;
  height: 100%;
  background-image: url('../images/customer-logo-1.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.client-logo-block._2 {
  background-image: url('../images/customer-logo-3.png');
}

.client-logo-block._3 {
  background-image: url('../images/customer-logo-2.png');
}

.client-logo-block._4 {
  background-image: url('../images/customer-logo-4.png');
}

.hover-experience-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  display: none;
  padding: 1.5vw 2vw 1.5vw 1.5vw;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-linear-gradient(315deg, #7623ae, #c96dd8);
  background-image: linear-gradient(135deg, #7623ae, #c96dd8);
  opacity: 0;
  font-family: Gotham, sans-serif;
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
}

.hover-client-logo {
  position: absolute;
  left: 0px;
  top: -3vw;
  display: none;
  width: 6vw;
  height: 6vw;
  margin-left: 1.5vw;
  padding: 1vw;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 11px 11px 20px 0 rgba(0, 0, 0, .15);
  opacity: 0;
}

.hover-client-text {
  opacity: 0;
  color: hsla(0, 0%, 100%, .91);
}

.client-section-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding-top: 10vh;
  padding-bottom: 75px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.client-experinece-heading {
  color: #fff;
  text-align: center;
}

.client-section-6 {
  padding: 100px 12.5vw 70px;
  background-color: #662d91;
}

.client-section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 12vw;
  padding-bottom: 75px;
  padding-left: 12vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #7d725d;
  background-image: url('../images/Top-slant.svg');
  background-position: 50% -1px;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}

.client-inner-block {
  width: 60%;
}

.client-section-4 {
  padding: 75px 12.5vw 50px;
  background-color: #726854;
  background-image: url('../images/Bottom-slant.svg');
  background-position: 50% 101%;
  background-size: contain;
  background-repeat: no-repeat;
}

.brief-inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.brief-inner-block.open-insight {
  margin-bottom: 100px;
}

.about-white-text {
  color: #fff;
}

.video-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40vw;
  min-height: 440px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/video-thumbnail-preview.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 21px 21px 30px 0 rgba(0, 0, 0, .2), inset 0 -50px 500px 250px rgba(0, 0, 0, .35);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  text-align: center;
}

.video-block:hover {
  box-shadow: 21px 21px 30px 0 rgba(0, 0, 0, .2), inset 0 -200px 500px 250px rgba(102, 45, 145, .39);
}

.video-block.insight {
  margin-bottom: 20px;
}

.play-video {
  width: 100px;
  height: 100px;
  margin-top: 15px;
  background-image: url('../images/play-video-icon.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.client-section-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.black-h3 {
  color: #0f0f0f;
}

.result-block {
  width: 50%;
  text-align: center;
}

.result-image {
  margin-top: 75px;
  margin-bottom: 100px;
}

.testimonial-top-block {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  min-height: 350px;
  margin-top: 75px;
  margin-bottom: 45px;
  background-color: transparent;
}

.testimonial-slide-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 75px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.testimonial-inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 28%;
  padding-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/quote.svg');
  background-position: 50% 0px;
  background-size: 25px;
  background-repeat: no-repeat;
}

.testimonial-text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.4px;
}

.testimonial-profile-picture {
  display: none;
  width: 65px;
  min-height: 65px;
  border-radius: 50%;
  background-color: #e0e0e0;
  background-image: url('../images/Default-Bg.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-profile-picture._1 {
  background-image: url('../images/customer-1.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-profile-picture._2 {
  background-image: url('../images/customer-2.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-profile-picture._3 {
  background-image: url('../images/customer-3.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.profile-name {
  margin-top: 16px;
  margin-bottom: 0px;
  color: #fddf00;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}

.postion {
  margin-bottom: 0px;
  color: hsla(0, 0%, 100%, .74);
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.middle-hero-image {
  height: 450px;
  background-image: url('../images/image-5.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.open-insight-section-4 {
  padding-top: 70px;
  padding-right: 12vw;
  padding-left: 12vw;
}

.open-insight-section-4.purple-bg {
  padding-bottom: 70px;
  background-color: #512275;
}

.open-insight-section-5 {
  padding-right: 12vw;
  padding-bottom: 75px;
  padding-left: 12vw;
}

.share-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.share-block.job-page {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.share-icon {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.share-icon:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.share-icon.twitter {
  background-image: url('../images/tw-share.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.share-icon.facebook {
  background-image: url('../images/fb-share.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.share-icon.linkedin {
  background-image: url('../images/linkedin-share.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.share-icon.copy-to-clipboard {
  background-image: url('../images/link-share.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.divider-line {
  width: 30vw;
  height: 1px;
  background-color: #662d91;
}

.divider-line.job {
  width: 20vw;
}

.divider-line.job.right {
  margin-left: 20px;
}

.insight-video-wrapper {
  padding-right: 12.5vw;
  padding-bottom: 70px;
  padding-left: 12.5vw;
  border-bottom: 1px solid #fff;
  background-color: #512275;
  box-shadow: inset 0 -200px 0 -4px #fff;
}

.insight-video-wrapper.gallery {
  padding-right: 0vw;
  padding-bottom: 0px;
  border-bottom-style: none;
  box-shadow: inset 0 200px 0 -4px #fff;
}

.insight-preview-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 23vw;
  height: auto;
  min-height: 300px;
  min-width: 230px;
  margin-right: 2vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/Default-Bg.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 21px 21px 30px 0 rgba(0, 0, 0, .25);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}

.insight-preview-block:hover {
  box-shadow: 21px 21px 30px 0 rgba(0, 0, 0, .25), inset 0 -200px 500px 250px rgba(0, 0, 0, .29);
}

.insight-preview-block._1 {
  background-image: url('../images/image-12.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.insight-preview-block._2 {
  background-image: url('../images/image-6.jpg'), url('../images/Default-Bg.svg');
  background-position: 50% 50%, 50% 50%;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.insight-preview-block._3 {
  background-image: url('../images/image-7.jpg');
}

.insight-preview-block._4 {
  background-image: url('../images/image-11.jpg');
}

.inner-preview-block {
  position: absolute;
  left: 22px;
  top: 22px;
  right: 22px;
  bottom: 22px;
  display: none;
  padding: 20px;
  background-color: #fff;
  opacity: 0;
}

.insight-gallery-image {
  width: 32vw;
  height: 40vw;
  margin-right: 1.2vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
  box-shadow: 14px 14px 30px -5px rgba(0, 0, 0, .25);
  text-decoration: none;
}

.gallery-image-text-block {
  padding: 20px;
  font-family: Gotham, sans-serif;
  color: #4a4a4a;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  text-decoration: none;
}

.open-job-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  padding-right: 12.5vw;
  padding-left: 12.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-linear-gradient(270deg, #662d91, #391455);
  background-image: linear-gradient(180deg, #662d91, #391455);
  text-align: center;
}

.inner-job-block {
  margin-right: 10vw;
  margin-left: 10vw;
}

.job-open-section-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 20vw 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.more-jobs-paragraph-text {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 20px;
}

.role-description-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.role-description-text {
  margin-bottom: 0px;
  margin-left: 15px;
}

.unordered-list {
  width: 100%;
}

.job-sub-title {
  color: #662d91;
  font-size: 17px;
  font-weight: 400;
}

.connect-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu-button {
  position: absolute;
  left: 10vw;
  top: 50px;
  right: 10vw;
  z-index: 25;
  display: none;
  height: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu-bar {
  width: 35px;
  height: 5px;
  margin-bottom: 5px;
  background-color: #662d91;
}

.menu-logo {
  width: 11vw;
  min-height: 60px;
  background-image: url('../images/logo.png');
  background-position: 50% 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu-bar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.top-menu-bar {
  width: 35px;
  height: 5px;
  margin-bottom: 5px;
  background-color: #662d91;
}

.bottom-menu-bar {
  width: 35px;
  height: 5px;
  margin-bottom: 5px;
  background-color: #662d91;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/logo-menu.png'), url('../images/logo-mark.svg');
  background-position: 40px 41px, 89% 100%;
  background-size: 100px, 288px;
  background-repeat: no-repeat, no-repeat;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 991px) {
  h1 {
    font-size: 51px;
  }
  h4 {
    font-size: 27px;
    line-height: 36px;
  }
  h6 {
    line-height: 20px;
  }
  .header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 15;
    display: none;
    width: 100vw;
    height: 100vh;
    min-height: 0vh;
    margin-right: 0vw;
    margin-left: 0vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    opacity: 0;
  }
  .header.white-bg {
    background-color: #ddd;
  }
  .header-text-block.header-top {
    margin-top: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .logo-block.white {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .logo-block.header-itself {
    width: 15vw;
    margin-right: 15px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .header-link.connect {
    margin-left: 0vw;
    color: #a0a0a0;
  }
  .header-link.color-active {
    margin-top: 6px;
    margin-right: 0vw;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.2px;
  }
  .header-link.color-active.white {
    color: #662d91;
  }
  .header-link.color-active.white.w--current {
    color: #39b54a;
  }
  .landing-page-inner-block {
    width: 45%;
  }
  .scroll-down-block.careers-page {
    margin-bottom: 8vh;
  }
  ._1st-section-brand-element {
    margin-bottom: -15vh;
  }
  .home-section-2 {
    background-size: auto 70%;
  }
  .half-block {
    width: 75%;
  }
  .home-section-3 {
    height: 650px;
  }
  .home-section-4 {
    height: 650px;
  }
  .home-contact-inner-block {
    padding-right: 10%;
    padding-left: 10%;
  }
  .footer {
    padding-right: 10.5vw;
    padding-left: 10.5vw;
  }
  .contact-inner.top {
    margin-right: 0%;
    margin-left: 0%;
  }
  .footer-inner-block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .subscribe-block {
    padding-right: 2.5vw;
    padding-left: 2.5vw;
  }
  .about-section-1 {
    height: auto;
    min-height: 0px;
    padding-top: 12vh;
    padding-bottom: 100px;
  }
  .inner-about-block {
    height: 800px;
    min-height: 0px;
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .center-circle {
    width: 400px;
    height: 400px;
    min-height: 0px;
    min-width: 0px;
  }
  .left-circle {
    width: 280px;
    height: 280px;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
  }
  .left-circle.right {
    padding-right: 34px;
    padding-left: 34px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    text-align: center;
  }
  .advisory-block {
    background-size: auto 50%;
  }
  .product-heading-block {
    width: 70%;
  }
  .product-block {
    width: 47%;
  }
  .product-block.more-jobs {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .coming-soon-text {
    bottom: 15px;
    letter-spacing: 6px;
  }
  .career-value-block {
    padding-top: 51px;
    padding-right: 3vw;
    padding-left: 3vw;
  }
  .tab-link {
    width: 133px;
    font-size: 11px;
    letter-spacing: -0.2px;
  }
  .career-contact-block {
    padding-right: 60px;
    padding-left: 60px;
  }
  .contact-inner-block {
    top: -30vh;
    height: 650px;
    background-size: 80%;
  }
  .home-gif-wrapper {
    width: 70vw;
    height: 70vw;
  }
  .featured-block-companies {
    padding-right: 0%;
    padding-left: 0%;
  }
  .featured-logo-block {
    width: 22%;
  }
  .post-preview.halfway {
    width: 100%;
  }
  .post-description-block {
    width: 40%;
  }
  .post-description-block.half {
    width: 40%;
  }
  .client-experience-block {
    width: 90%;
  }
  .client-section-1.open {
    padding-right: 30vw;
  }
  .client-section-6 {
    padding-right: 4.5vw;
    padding-left: 4.5vw;
  }
  .client-inner-block {
    width: 70%;
  }
  .result-block {
    width: 65%;
  }
  .job-open-section-2 {
    padding-right: 16vw;
    padding-left: 16vw;
  }
  .connect-wrapper {
    margin-top: 50px;
  }
  .menu-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-bar.white {
    background-color: #fff;
  }
  .menu-logo {
    width: 15vw;
  }
  .menu-logo.white {
    background-image: url('../images/Efferent-Logo-White.svg');
  }
  .menu-bar-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Gotham, sans-serif;
    color: #000;
    font-size: 10px;
    font-weight: 400;
  }
  .top-menu-bar.white {
    background-color: #fff;
  }
  .bottom-menu-bar.white {
    background-color: #fff;
  }
  .close-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  h2 {
    font-size: 30px;
    line-height: 36px;
  }
  h3 {
    font-size: 26px;
    line-height: 31px;
  }
  h4 {
    font-size: 24px;
    line-height: 30px;
  }
  h6 {
    line-height: 22px;
    letter-spacing: 11px;
  }
  p {
    font-size: 13px;
    line-height: 22px;
  }
  .header {
    overflow: auto;
    min-height: 600px;
  }
  .header-text-block {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .logo-block.footer-logo {
    width: 80px;
    margin-right: 30px;
  }
  .logo-block.header-itself {
    width: 180px;
  }
  .home-first-section {
    height: 700px;
    padding-bottom: 15vh;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .landing-page-inner-block {
    width: 55%;
    height: auto;
    margin-bottom: 0px;
  }
  .scroll-down-block.about {
    margin-top: 10px;
  }
  .scroll-down-block.careers-page {
    margin-bottom: 45px;
  }
  .button.shadow.home {
    margin-bottom: 15px;
  }
  .button.subscribe {
    min-width: 120px;
  }
  ._1st-section-brand-element {
    width: 40vw;
  }
  .home-section-2 {
    background-size: auto 40%;
  }
  .half-block {
    width: 90%;
  }
  .home-section-3 {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .home-section-4 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .home-section-5 {
    height: 900px;
  }
  .home-contact-inner-block {
    height: 600px;
    min-height: 0px;
    padding-top: 70px;
  }
  .footer {
    padding-right: 9vw;
    padding-left: 9vw;
  }
  .phone-block {
    height: 120px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 150px;
  }
  .phone-block.contact-page {
    height: 100px;
  }
  .phone-block-wrapper {
    height: 120px;
  }
  .home-phone-link {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .home-phone-link.email {
    margin-top: 8px;
    margin-left: 0px;
  }
  .home-contact-white-body.career {
    margin-right: 10%;
    margin-left: 10%;
  }
  .footer-inner-block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .subscribe-block {
    width: 90%;
    margin-left: 5vw;
  }
  .subscribe-header-text {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 15px;
  }
  .about-section-1 {
    padding-right: 10.5vw;
    padding-left: 10.5vw;
  }
  .inner-about-block {
    height: 800px;
  }
  .center-circle {
    width: 350px;
    height: 350px;
    padding-top: 31px;
    padding-bottom: 20px;
  }
  .about-section-2 {
    height: auto;
    min-height: 650px;
    padding-bottom: 1px;
  }
  .left-circle {
    padding-right: 34px;
    padding-bottom: 12px;
    padding-left: 34px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .left-circle.right {
    padding-top: 12px;
    padding-bottom: 0px;
  }
  .about-body-text {
    width: 45%;
  }
  .advisory-block {
    margin-right: 20px;
    margin-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-position: 0px 19px;
    background-size: auto 20%;
  }
  .advisory-inner-block-1 {
    width: 100%;
  }
  .advisory-inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advisory-inner-half {
    width: 95%;
  }
  .product-heading-block {
    width: 90%;
  }
  .product-block {
    width: 100%;
    min-height: 250px;
    padding: 40px 50px 45px;
  }
  .coming-soon-text {
    left: 50px;
    bottom: 20px;
  }
  .download-strip {
    font-size: 16px;
  }
  .careers-section-1 {
    height: 600px;
    min-height: 0px;
    padding-right: 10vw;
    padding-left: 10vw;
    background-size: cover;
  }
  .career-section-2 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .career-value-block {
    width: 85%;
    height: 300px;
    padding-top: 77px;
    padding-right: 12vw;
    padding-left: 12vw;
  }
  .career-mid-block {
    width: 90%;
    height: 320px;
    margin-bottom: -15px;
    padding-right: 10vw;
    padding-left: 10vw;
    box-shadow: 0 0 30px 11px rgba(0, 0, 0, .2);
  }
  .career-section-3 {
    padding-top: 85px;
    padding-bottom: 75px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .more-reasons-left {
    margin-top: 20px;
  }
  .more-reasons-inner.client {
    width: 45%;
  }
  .more-reasons-inner.client.first.insight-only {
    width: 100%;
  }
  .job-tab-pane {
    padding-bottom: 300px;
  }
  .tab-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
    padding-right: 26px;
    padding-left: 26px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tab-link {
    width: 30%;
    margin-top: 10px;
    margin-right: 5px;
    margin-left: 5px;
    border: 1px solid #fff;
    border-radius: 150px;
  }
  .tab-link.w--current {
    margin-top: 10px;
    border: 2px solid #39b54a;
  }
  .career-section-6 {
    height: 450px;
  }
  .career-contact-block {
    padding-right: 47px;
    padding-left: 47px;
  }
  .telephone-image-block {
    width: 70%;
  }
  .contact-inner-block {
    height: 750px;
    background-size: 110%;
  }
  .contact-column {
    padding-right: 0px;
  }
  .contact-column.right {
    padding-left: 0px;
  }
  .check-logo {
    right: 8vw;
    bottom: 50px;
  }
  .insight-section-1 {
    height: 600px;
    padding-right: 13.5vw;
    padding-left: 13.5vw;
    background-size: auto 35%, auto 35%, auto;
  }
  .featured-logo-block {
    width: 26%;
    margin-right: 2%;
    margin-left: 2%;
  }
  .post-description-block {
    width: 45%;
  }
  .post-description-block.half {
    width: 45%;
  }
  .post-preview-title {
    font-size: 17px;
    line-height: 24px;
  }
  .client-section-1 {
    height: 600px;
  }
  .client-section-1.temp {
    background-position: 0px 0px, 50% 50%;
  }
  .experience-preview-block {
    padding: 5vw;
  }
  .client-section-inner {
    padding-top: 60px;
  }
  .client-section-6 {
    padding-right: 10.5vw;
    padding-left: 10.5vw;
  }
  .client-inner-block {
    width: 80%;
  }
  .brief-inner-block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .video-block {
    height: 300px;
    min-height: 0px;
  }
  .result-block {
    width: 80%;
  }
  .testimonial-slider {
    height: auto;
  }
  .testimonial-slide-block {
    height: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .testimonial-inner-block {
    width: 45%;
  }
  .middle-hero-image {
    height: 250px;
    background-attachment: scroll;
  }
  .share-icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .divider-line {
    width: 20vw;
  }
  .inner-preview-block {
    display: block;
    opacity: 1;
  }
  .insight-gallery-image {
    width: 50vw;
    height: 65vw;
  }
  .open-job-section {
    height: 600px;
    padding-right: 9.5vw;
    padding-left: 9.5vw;
  }
  .inner-job-block {
    margin-right: 5vw;
    margin-left: 5vw;
  }
  .job-open-section-2 {
    padding-right: 15vw;
    padding-left: 15vw;
  }
  .role-description-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .role-description-text {
    margin-left: 0px;
  }
  .menu-button {
    top: 30px;
  }
  .menu-logo {
    width: 18vw;
  }
  .utility-page-wrap {
    background-size: 100px, 200px;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 45px;
  }
  h2 {
    font-size: 29px;
    line-height: 37px;
  }
  h3 {
    font-size: 24px;
    line-height: 30px;
  }
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
  h6 {
    font-size: 11px;
    letter-spacing: 10px;
  }
  p {
    font-size: 13px;
  }
  .logo-block.footer-logo {
    margin-right: 10px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .logo-block.header-itself {
    width: 130px;
  }
  .home-first-section {
    height: 100vh;
    min-height: 650px;
    padding-top: 0px;
    padding-bottom: 10vh;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .landing-page-inner-block {
    width: 90%;
    margin-top: 90vw;
    margin-bottom: 6vh;
  }
  .scroll-down-block.about {
    display: none;
  }
  .button.shadow.home {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .button.subscribe {
    position: static;
    width: 100%;
    margin-top: 11px;
    margin-right: 0px;
    margin-bottom: 0px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .23);
  }
  ._1st-section-brand-element {
    margin-bottom: -21vh;
  }
  .home-section-3 {
    height: auto;
    padding: 15px 7.5vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-text-block {
    width: 95%;
    min-height: 0px;
    min-width: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 35px 30px;
  }
  .home-section-4 {
    height: auto;
    padding: 15px 7.5vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-section-5 {
    height: auto;
    padding: 100px 10.5vw 250px;
  }
  .home-contact-inner-block {
    padding-right: 0%;
    padding-left: 0%;
    background-size: auto 40%;
  }
  .footer {
    height: 220px;
  }
  .phone-block {
    padding-right: 9px;
    padding-left: 9px;
    border-radius: 0px;
  }
  .phone-block-wrapper {
    height: auto;
  }
  .contact-inner.top {
    height: auto;
    margin-right: 8%;
    margin-left: 8%;
  }
  .home-phone-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 15px;
  }
  .home-contact-white-body.career {
    margin-right: 5%;
    margin-left: 5%;
  }
  .footer-inner-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .subscribe-block {
    left: 0px;
    top: auto;
    right: auto;
    bottom: 196px;
    margin-top: 0px;
  }
  .about-section-1 {
    padding-right: 5vw;
    padding-bottom: 75px;
    padding-left: 5vw;
  }
  .inner-about-block {
    height: 700px;
  }
  .center-circle {
    width: 300px;
    height: 300px;
    max-height: 90vw;
    max-width: 90vw;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .left-circle {
    padding-bottom: 35px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .left-circle.right {
    padding-top: 35px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .about-body-text {
    width: 95%;
    margin-bottom: 18px;
  }
  .advisory-block {
    padding-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-position: 0px 0px;
  }
  .about-section-4 {
    padding-bottom: 342px;
  }
  .product-heading-block {
    width: 100%;
  }
  .product-block {
    padding-top: 31px;
    padding-left: 34px;
  }
  .coming-soon-text {
    left: 30px;
  }
  .download-strip {
    margin-bottom: 263px;
    padding-right: 40px;
    padding-left: 40px;
    line-height: 27px;
    text-align: center;
  }
  .career-value-block {
    padding-top: 45px;
  }
  .more-reasons-inner {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .more-reasons-inner.client {
    width: 100%;
  }
  .more-reasons-inner.client.first {
    width: 100%;
  }
  .job-tab-pane {
    padding-right: 10vw;
    padding-left: 10vw;
  }
  .tab-link {
    width: 100%;
    margin-left: 0px;
  }
  .career-section-6 {
    height: auto;
    min-height: 600px;
    padding-right: 10vw;
    padding-left: 10vw;
  }
  .career-contact-block {
    width: 80%;
    padding-right: 20px;
    padding-left: 20px;
  }
  .contact-section-1 {
    height: 600px;
  }
  .telephone-image-block {
    width: 90%;
  }
  .contact-section-2 {
    height: 800px;
    padding-right: 9.5vw;
    padding-left: 9.5vw;
  }
  .contact-inner-block {
    top: -220px;
    padding-right: 10%;
    padding-left: 10%;
  }
  .check-logo {
    bottom: 130px;
  }
  .home-gif-wrapper {
    width: 100vw;
    height: 100vw;
  }
  .insight-section-1 {
    padding-right: 7.5vw;
    padding-left: 7.5vw;
    background-size: auto 25%, auto 25%, auto;
  }
  .insight-section-3 {
    height: 800px;
  }
  .featured-block-companies {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .featured-logo-block {
    width: 45%;
    margin-bottom: 15px;
  }
  .post-wrapper {
    padding-left: 0vw;
  }
  .post-preview {
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .post-preview.latest {
    padding-left: 20px;
  }
  .post-description-block {
    width: 70%;
  }
  .post-description-block.half {
    width: 70%;
  }
  .post-preview-title {
    font-size: 16px;
    line-height: 23px;
  }
  .client-experience-block.temporary {
    width: 95%;
  }
  .client-section-1 {
    padding-right: 9.5vw;
    padding-left: 9.5vw;
  }
  .client-section-1.temp {
    background-position: 0px 0px, 51% 0%;
  }
  .client-bottom-section {
    padding-bottom: 220px;
  }
  .experience-preview-block {
    margin-right: 3vw;
    padding: 8vw;
  }
  .client-inner-block {
    width: 100%;
  }
  .video-block {
    height: 150px;
    padding: 10px;
  }
  .play-video {
    width: 80px;
    height: 80px;
  }
  .client-section-5 {
    padding-right: 10vw;
    padding-left: 10vw;
  }
  .result-block {
    width: 90%;
  }
  .testimonial-slider {
    margin-bottom: 167px;
  }
  .testimonial-inner-block {
    width: 100%;
    margin-bottom: 22px;
  }
  .insight-gallery-image {
    width: 75vw;
    height: 110vw;
  }
  .job-open-section-2 {
    padding-top: 50px;
    padding-right: 10vw;
    padding-left: 10vw;
  }
  .menu-logo {
    width: 35vw;
  }
  .menu-bar-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .utility-page-wrap {
    background-position: 50% 40px, 50% 100%;
    background-size: 120px, 200px;
  }
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BlackItalic.ttf') format('truetype'), url('../fonts/Gotham-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BoldItalic.ttf') format('truetype'), url('../fonts/Gotham-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-MediumItalic.ttf') format('truetype'), url('../fonts/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BookItalic.ttf') format('truetype'), url('../fonts/Gotham-UltraItalic.ttf') format('truetype'), url('../fonts/Gotham-UltraItalic.otf') format('opentype'), url('../fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham book';
  src: url('../fonts/Gotham-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-ThinItalic.ttf') format('truetype'), url('../fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham ultra';
  src: url('../fonts/Gotham-Ultra.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.ttf') format('truetype'), url('../fonts/Gotham-XLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-XLightItalic.ttf') format('truetype'), url('../fonts/Gotham-LightItalic.ttf') format('truetype'), url('../fonts/Gotham-XLightItalic.otf') format('opentype'), url('../fonts/Gotham-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}