@charset "UTF-8";
/*
Theme Name: Beknown Custom
*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 76%;
  font-family: "freight-sans-pro", sans-serif;
  color: #707070;
}

body div {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "arvo", serif;
  font-weight: normal;
  letter-spacing: -0.04em;
  color: #DD4B28;
}

h1 {
  font-size: 2em;
}

@media screen and (max-width: 960px) {
  h1 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5em;
  }
}

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

a:hover, a:active {
  text-decoration: underline;
}

a.button {
  display: inline-block;
  padding: .3em 2em;
  border: 1px solid #DD4B28;
  background: transparent;
  font-family: "arvo", serif;
  color: #DD4B28;
  text-decoration: none;
  margin: 1em 0;
  transition: background ease .4s;
}

a.button:hover, a.button:active {
  background: rgba(221, 75, 40, 0.1);
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.reveal {
  visibility: hidden;
}

header {
  width: 96%;
  margin: 20px 2% 0 2%;
  border-bottom: 1px solid #DD4B28;
  padding: 0 0 12px 0;
  display: block;
  font-size: 0;
}

@media screen and (max-width: 470px) {
  header {
    padding: 20px 2% 8px 2%;
    width: 100%;
    height: 40px;
    margin: 0;
    top: 0;
    left: 0;
    z-index: 19;
    position: fixed;
    background: #fff;
  }
}

header .site-logo {
  font-size: 1.2rem;
  width: 15%;
  display: inline-block;
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 470px) {
  header .site-logo {
    position: fixed;
    width: 34.4%;
    left: 2%;
    top: 24px;
  }
}

header .site-logo img {
  width: 100%;
  max-width: 120px;
}

@media screen and (max-width: 470px) {
  header .site-logo img {
    max-width: 200px;
  }
}

header nav {
  font-size: 1.2rem;
  text-align: center;
  width: 69.9%;
  display: inline-block;
}

@media screen and (max-width: 470px) {
  header nav {
    display: none;
  }
}

header nav a {
  color: #707070;
  text-decoration: none;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 400;
  line-height: 1em;
  font-size: 1em;
}

@media screen and (max-width: 960px) {
  header nav a {
    font-size: .9em;
  }
}

@media screen and (max-width: 768px) {
  header nav a {
    font-size: .8em;
  }
}

@media screen and (max-width: 560px) {
  header nav a {
    font-size: .7em;
  }
}

header nav a:hover, header nav a:active {
  color: #DD4B28;
  text-decoration: none;
}

header nav a + a {
  margin-left: 1.3em;
}

@media screen and (max-width: 960px) {
  header nav a + a {
    margin-left: 1.0em;
  }
}

@media screen and (max-width: 768px) {
  header nav a + a {
    margin-left: .6em;
  }
}

@media screen and (max-width: 560px) {
  header nav a + a {
    margin-left: .3em;
  }
}

header .socials {
  font-size: 1.2rem;
  width: 15%;
  display: inline-block;
  text-align: right;
}

@media screen and (max-width: 470px) {
  header .socials {
    display: none;
  }
}

header .socials a img {
  width: 1.3rem;
}

@media screen and (max-width: 960px) {
  header .socials a img {
    width: 1.0rem;
  }
}

@media screen and (max-width: 768px) {
  header .socials a img {
    width: .7rem;
  }
}

header .socials a + a {
  margin-left: .5em;
}

@media screen and (max-width: 768px) {
  header .socials a + a {
    margin-left: .1em;
  }
}

header div.mobile-menu {
  display: none;
  width: 0;
  overflow: hidden;
}

@media screen and (max-width: 470px) {
  header div.mobile-menu {
    display: inline-block;
    width: 63%;
    text-align: right;
  }
}

header div.mobile-menu a.hamburger {
  display: inline-block;
  width: 1.5rem;
  height: 24px;
  z-index: 50;
  position: fixed;
  top: 20px;
  right: 3%;
}

header div.mobile-menu a.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 3px;
  background: #DD4B28;
  transition: all linear .2s;
  left: 50%;
  top: 50%;
}

header div.mobile-menu a.hamburger span:nth-child(1) {
  width: 100%;
  transform: translate(-50%, -8px) rotateZ(0);
}

header div.mobile-menu a.hamburger span:nth-child(2) {
  width: 100%;
  transform: translate(-50%, 0) rotateZ(0);
}

header div.mobile-menu a.hamburger span:nth-child(3) {
  width: 100%;
  transform: translate(-50%, 8px) rotateZ(0);
}

header div.mobile-menu a.hamburger.open span:nth-child(1) {
  width: 30%;
  transform: translate(-50%, 0) rotateZ(-135deg);
}

header div.mobile-menu a.hamburger.open span:nth-child(2) {
  width: 110%;
  transform: translate(-50%, 0) rotateZ(135deg);
}

header div.mobile-menu a.hamburger.open span:nth-child(3) {
  width: 110%;
  transform: translate(-50%, 0) rotateZ(225deg);
}

header div.mobile-menu nav {
  position: fixed;
  display: block;
  top: -200%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity ease .3s;
}

header div.mobile-menu nav .socials {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  position: fixed;
  bottom: 100%;
  transform: none;
  left: 0;
  top: auto;
  z-index: -1;
}

header div.mobile-menu nav .socials a {
  display: inline-block;
  margin: 0 .25em;
}

header div.mobile-menu nav .socials a > img {
  width: 1.4rem;
}

header div.mobile-menu nav > div {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
}

header div.mobile-menu nav > div > a {
  display: block;
  font-size: 1.8rem;
  padding: .3em 0;
  margin: 0;
  opacity: 0;
  transition: all linear .3s;
}

header div.mobile-menu nav > div > a:nth-child(1) {
  transition-delay: 0.1s;
}

header div.mobile-menu nav > div > a:nth-child(2) {
  transition-delay: 0.2s;
}

header div.mobile-menu nav > div > a:nth-child(3) {
  transition-delay: 0.3s;
}

header div.mobile-menu nav > div > a:nth-child(4) {
  transition-delay: 0.4s;
}

header div.mobile-menu nav > div > a:nth-child(5) {
  transition-delay: 0.5s;
}

header div.mobile-menu nav > div > a:nth-child(6) {
  transition-delay: 0.6s;
}

header div.mobile-menu nav > div > a:nth-child(7) {
  transition-delay: 0.7s;
}

header div.mobile-menu nav > div > a:nth-child(8) {
  transition-delay: 0.8s;
}

header div.mobile-menu nav > div > a:nth-child(9) {
  transition-delay: 0.9s;
}

header div.mobile-menu nav > div > a:nth-child(10) {
  transition-delay: 1s;
}

header div.mobile-menu nav.open {
  z-index: 30;
  transition: opacity ease .3s;
  opacity: 1;
  top: 0;
}

header div.mobile-menu nav.open > div > a {
  opacity: 1;
}

header div.mobile-menu nav.open .socials {
  bottom: 0;
}

div#container {
  font-size: 1.3em;
}

@media screen and (max-width: 470px) {
  div#container {
    margin-top: 100px;
  }
}

main {
  font-size: 1.3em;
  margin: 50px 0;
}

@media screen and (max-width: 470px) {
  main {
    margin: 50px 0 0 0;
  }
}

.landing_hero_banner {
  display: block;
  width: 96%;
  margin: 50px 2%;
  clear: both;
  overflow: hidden;
}

.landing_hero_banner > img {
  width: 50%;
  float: left;
  display: block;
}

@media screen and (max-width: 768px) {
  .landing_hero_banner > img {
    float: none;
    margin: 0 auto;
    width: 70%;
  }
}

.landing_hero_banner .text {
  width: 49.9%;
  padding: 130px 3em 0 1.5em;
  margin-left: 50%;
}

@media screen and (max-width: 1080px) {
  .landing_hero_banner .text {
    padding-top: 100px;
  }
}

@media screen and (max-width: 960px) {
  .landing_hero_banner .text {
    padding-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .landing_hero_banner .text {
    padding: 0px 5% 20px 5%;
    margin: 0;
    width: 100%;
  }
}

.landing_hero_banner .text h1 {
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: .5em;
  font-size: 2em;
  color: #707070;
}

@media screen and (max-width: 1080px) {
  .landing_hero_banner .text h1 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 960px) {
  .landing_hero_banner .text h1 {
    font-size: 1.6em;
  }
}

.landing_hero_banner .text h1 span {
  color: #DD4B28;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .landing_hero_banner .text h1 #marquee {
    display: block;
  }
}

@media screen and (max-width: 470px) {
  .landing_hero_banner .text h1 #marquee {
    display: block;
  }
}

.landing_hero_banner .text p {
  line-height: 1.6em;
}

@media screen and (max-width: 960px) {
  .landing_hero_banner .text p {
    font-size: .9em;
  }
}

.landing_services {
  clear: both;
  width: 96%;
  margin: 100px 2% 0 2%;
}

@media screen and (max-width: 768px) {
  .landing_services {
    margin: 50px 2% 0 2%;
  }
}

.landing_services h1 {
  text-align: center;
}

.landing_services h1 span {
  color: #DD4B28;
}

.landing_services h1 + hr {
  border: 0;
  background: 0;
  border-bottom: 1px solid #DD4B28;
  width: 50%;
  max-width: 400px;
  margin: 1rem auto;
}

.landing_services p {
  width: 70%;
  max-width: 500px;
  margin: .5rem auto 1rem auto;
}

@media screen and (max-width: 768px) {
  .landing_services p {
    width: 90%;
  }
}

.landing_services div.services {
  margin: 40px 8% 60px 8%;
  background: #fff;
  box-shadow: 0px -40px 60px rgba(0, 0, 0, 0.06);
  padding: 50px 5%;
}

@media screen and (max-width: 768px) {
  .landing_services div.services {
    margin: 40px -2% 60px -2%;
    box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.06);
  }
}

.landing_services div.services div.service {
  width: 31.66667%;
  display: block;
  font-size: 1.0rem;
  padding: 0px 10px;
  margin: 0;
  float: left;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .landing_services div.services div.service {
    padding: 0;
  }
}

@media screen and (max-width: 470px) {
  .landing_services div.services div.service {
    width: 100%;
  }
}

.landing_services div.services div.service + div.service {
  margin-left: 2.5%;
}

@media screen and (max-width: 470px) {
  .landing_services div.services div.service + div.service {
    margin-left: 0;
  }
}

.landing_services div.services div.service:nth-child(1) h3 {
  color: #DD4B28;
}

.landing_services div.services div.service:nth-child(2) h3 {
  color: #38B25A;
}

.landing_services div.services div.service:nth-child(3) h3 {
  color: #397CAF;
}

.landing_services div.services div.service img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 470px) {
  .landing_services div.services div.service img {
    width: 60%;
    margin: 50px auto 0 auto;
  }
}

.landing_services div.services div.service h3, .landing_services div.services div.service p {
  text-align: center;
  margin: 12px auto 0 auto;
}

.landing_full_service {
  background-color: #f7f7f7;
  padding: 80px 50px;
  margin: 50px 0;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .landing_full_service {
    padding: 60px 20px;
  }
}

.landing_full_service .box {
  background-image: url(images/ob-tl.png), url(images/ob-tr.png), url(images/ob-br.png), url(images/ob-bl.png);
  background-position: top left, top right, bottom right, bottom left;
  background-repeat: no-repeat;
  background-size: 10%;
}

@media screen and (max-width: 470px) {
  .landing_full_service .box {
    background: transparent;
  }
}

.landing_full_service h1 {
  color: #f7f7f7;
  text-shadow: 1px 1px 0 #DD4B28, 1px -1px 0 #DD4B28, -1px -1px 0 #DD4B28, -1px 1px 0 #DD4B28;
  text-align: center;
  position: relative;
  top: -.6em;
  margin: 0 13% -.5em 13%;
  letter-spacing: -.01em;
}

@media screen and (max-width: 470px) {
  .landing_full_service h1 {
    margin: 0 5% -.5em 5%;
  }
}

.landing_full_service p {
  margin: .6em 20% 0 20%;
}

@media screen and (max-width: 960px) {
  .landing_full_service p {
    margin: .6em 5% 0 5%;
  }
}

.landing_full_service .tier1 {
  width: 19%;
  float: left;
  font-size: .9rem;
  text-align: center;
  display: block;
}

@media screen and (max-width: 768px) {
  .landing_full_service .tier1 {
    width: 30%;
    float: none;
    display: inline-block;
    vertical-align: top;
  }
}

@media screen and (max-width: 470px) {
  .landing_full_service .tier1 {
    width: 45%;
  }
}

.landing_full_service .tier1 + .tier1 {
  margin-left: 1.25%;
}

@media screen and (max-width: 768px) {
  .landing_full_service .tier1 + .tier1 {
    margin-left: 0;
  }
}

.landing_full_service .tier1 h3 {
  text-align: center;
  color: #DD4B28;
  font-family: "freight-sans-pro", sans-serif;
}

.landing_full_service .tier1 img {
  width: 70%;
  margin: 3em 0 .3em 0;
}

.landing_full_service .tier2 {
  margin-top: 50px;
  width: 95%;
  clear: left;
  font-size: .9rem;
}

@media screen and (max-width: 470px) {
  .landing_full_service .tier2 {
    display: none;
  }
}

.landing_full_service .tier2 h3 {
  text-align: center;
  color: #DD4B28;
  font-family: "freight-sans-pro", sans-serif;
}

.landing_full_service .tier2 .column {
  width: 50%;
  float: left;
  margin-bottom: 50px;
}

.landing_full_service a.button {
  position: relative;
  top: 1.5em;
}

@media screen and (max-width: 768px) {
  .landing_full_service a.button {
    font-size: .8em;
  }
}

div.landing_team_gallery {
  margin: 100px 0;
}

@media screen and (max-width: 470px) {
  div.landing_team_gallery {
    margin: 50px 0 0 0;
  }
}

div.landing_team_gallery .heading {
  width: 20%;
  float: left;
  padding-left: 2%;
  padding-top: 8em;
  padding-bottom: 2.5em;
  background: url(images/landing-team-ornament.png) 0 20px no-repeat;
  background-size: 50%;
}

@media screen and (max-width: 768px) {
  div.landing_team_gallery .heading {
    width: 100%;
    float: none;
    padding: 1em 2%;
    background-size: 20%;
    text-align: center;
  }
}

@media screen and (max-width: 470px) {
  div.landing_team_gallery .heading {
    background: none;
  }
}

div.landing_team_gallery .heading h1 {
  color: #DD4B28;
  width: 60%;
  line-height: 1;
  margin-bottom: .5em;
}

@media screen and (max-width: 768px) {
  div.landing_team_gallery .heading h1 {
    width: 100%;
  }
}

div.landing_team_gallery .heading p {
  width: 85%;
}

@media screen and (max-width: 768px) {
  div.landing_team_gallery .heading p {
    width: 100%;
  }
}

div.landing_team_gallery .gallery {
  margin-left: 24%;
}

@media screen and (max-width: 768px) {
  div.landing_team_gallery .gallery {
    margin-left: 0;
  }
}

div.landing_team_gallery .gallery .flickity {
  width: 100%;
}

div.landing_team_gallery .gallery .flickity .flickity-button {
  background: transparent;
  border: 1px solid #DD4B28;
}

div.landing_team_gallery .gallery .flickity .flickity-button .flickity-button-icon {
  color: #DD4B28;
}

div.landing_team_gallery .gallery .flickity .flickity-button:hover {
  background: #fff;
}

div.landing_team_gallery .gallery .flickity .flickity-prev-next-button {
  top: 70%;
  width: 7em;
  height: 7em;
}

@media screen and (max-width: 470px) {
  div.landing_team_gallery .gallery .flickity .flickity-prev-next-button {
    width: 4em;
    height: 4em;
  }
}

div.landing_team_gallery .gallery .flickity .flickity-prev-next-button.previous {
  left: 7%;
}

div.landing_team_gallery .gallery .flickity .flickity-prev-next-button.next {
  right: 7%;
}

div.landing_team_gallery .gallery .flickity .gallery-slide {
  width: 305px;
  height: 400px;
  padding: 0px;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 470px) {
  div.landing_team_gallery .gallery .flickity .gallery-slide {
    width: 213.5px;
    height: 280px;
  }
}

div.landing_team_gallery .gallery .flickity .gallery-slide.wide {
  width: 610px;
}

@media screen and (max-width: 470px) {
  div.landing_team_gallery .gallery .flickity .gallery-slide.wide {
    width: 427px;
  }
}

div.landing_team_gallery .gallery .flickity .gallery-slide img {
  transform: scale(1);
  opacity: .2;
  transition: all ease-in-out .6s;
  width: 100%;
  position: relative;
}

div.landing_team_gallery .gallery .flickity .gallery-slide.is-selected {
  z-index: 3;
}

div.landing_team_gallery .gallery .flickity .gallery-slide.is-selected img {
  opacity: 1;
  transform: scale(1.05);
}

div.landing_team_gallery .gallery h1#gallery-selected-name {
  margin-top: .5em;
  font-size: 1.8rem;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 400;
  color: #DD4B28;
  text-align: center;
}

div.landing_team_gallery .gallery span#gallery-selected-title {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  color: #707070;
  text-align: center;
}

div.landing-cta-section {
  margin: 100px 5%;
}

@media screen and (max-width: 470px) {
  div.landing-cta-section {
    margin: 40px 0 0 0;
  }
}

div.landing-cta-section .digital-media-consultation {
  background: #397CAF;
}

div.landing-cta-section .customized-quote {
  background: #38B25A;
}

div.landing-cta-section > div {
  width: 50%;
  float: left;
  text-align: center;
}

@media screen and (max-width: 768px) {
  div.landing-cta-section > div {
    width: 100%;
    float: none;
  }
}

div.landing-cta-section > div h1, div.landing-cta-section > div h2, div.landing-cta-section > div h3, div.landing-cta-section > div p {
  color: #fff;
  width: 60%;
  max-width: 400px;
}

@media screen and (max-width: 470px) {
  div.landing-cta-section > div h1, div.landing-cta-section > div h2, div.landing-cta-section > div h3, div.landing-cta-section > div p {
    width: 90%;
  }
}

div.landing-cta-section > div h3 {
  margin: 3em auto 1.0em auto;
  font-size: 1.3rem;
  height: 2em;
  font-family: "arvo", serif;
}

@media screen and (max-width: 768px) {
  div.landing-cta-section > div h3 {
    padding: 2em 0 1em 0;
    margin: 0 auto;
  }
}

div.landing-cta-section > div h1 {
  margin: 1rem auto 0 auto;
  font-size: 2rem;
  font-family: "freight-sans-pro", sans-serif;
}

div.landing-cta-section > div p {
  margin: 0 auto;
  font-size: 1.1rem;
  padding-bottom: 3rem;
}

div.landing-cta-section > div p a.button {
  color: #fff;
  border-color: #fff;
  background: transparent;
  transition: background ease .3s;
}

div.landing-cta-section > div p a.button:hover, div.landing-cta-section > div p a.button:active {
  background: rgba(255, 255, 255, 0.3);
}

div.landing-cta-section > div img {
  width: 80%;
  max-width: 300px;
}

.landing-newsletter {
  background: #f5f5f5;
  margin: 100px 5%;
  padding: 80px 40px;
  text-align: center;
}

@media screen and (max-width: 470px) {
  .landing-newsletter {
    margin: 0;
  }
}

.landing-newsletter img {
  max-width: 140px;
}

.landing-newsletter h1 {
  color: #DD4B28;
}

.landing-newsletter p {
  margin: .5em 0 1.5em 0;
}

.landing-newsletter form label {
  border: 1px solid #DD4B28;
  display: block;
  width: 70%;
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
  transition: width linear .2s;
}

.landing-newsletter form label.closed {
  width: 60%;
}

@media screen and (max-width: 470px) {
  .landing-newsletter form label.closed {
    width: 90%;
  }
}

.landing-newsletter form label.closed input {
  padding: 0;
  width: 0;
}

.landing-newsletter form label.closed button {
  width: 100%;
}

@media screen and (max-width: 470px) {
  .landing-newsletter form label {
    width: 100%;
  }
}

.landing-newsletter form label input, .landing-newsletter form label button {
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  display: block;
  font-family: "arvo", serif;
  font-weight: 400;
  font-size: 1.5rem;
  padding: .5em .5em;
  float: left;
  box-sizing: border-box;
  transition: width linear .2s;
  overflow: hidden;
}

@media screen and (max-width: 470px) {
  .landing-newsletter form label input, .landing-newsletter form label button {
    font-size: 1em;
  }
}

.landing-newsletter form label input {
  width: 70%;
}

.landing-newsletter form label button {
  width: 30%;
  background: #DD4B28;
  color: #fff;
}

.landing-newsletter form span.error {
  color: red;
}

.landing-latest-news,
.landing-career {
  text-align: center;
  margin: 100px 5% 0 5%;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .landing-latest-news,
  .landing-career {
    margin: 75px 0 0 0;
    padding: 40px 15px 0 15px;
  }
}

@media screen and (max-width: 470px) {
  .landing-latest-news,
  .landing-career {
    margin: 50px 0 0 0;
  }
}

.landing-latest-news.short-margin,
.landing-career.short-margin {
  margin: 50px 5% 0 5%;
  padding: 80px 40px 0 40px;
}

@media screen and (max-width: 470px) {
  .landing-latest-news.short-margin,
  .landing-career.short-margin {
    padding: 40px 15px 0 15px;
  }
}

.landing-latest-news img,
.landing-career img {
  max-width: 140px;
}

.landing-latest-news h1,
.landing-career h1 {
  text-align: center;
  color: #DD4B28;
}

.landing-latest-news h1 a,
.landing-career h1 a {
  text-decoration: none;
}

.landing-latest-news hr,
.landing-career hr {
  border: 0;
  background: 0;
  border-bottom: 1px solid #DD4B28;
  width: 50%;
  max-width: 400px;
  margin: 1rem auto;
}

.landing-latest-news p,
.landing-career p {
  margin: .5em 0 1.5em 0;
}

.landing-latest-news .blog-posts,
.landing-career .blog-posts {
  margin: 2em 0 0 0;
}

.landing-latest-news .blog-posts .blog-post,
.landing-career .blog-posts .blog-post {
  margin: 0 0 .1rem 0;
}

.landing-latest-news .blog-posts .blog-post a,
.landing-career .blog-posts .blog-post a {
  background: transparent;
  display: block;
  padding: 1rem;
  text-decoration: none;
  transition: background ease .3s;
  color: #707070;
  clear: both;
}

@media screen and (max-width: 768px) {
  .landing-latest-news .blog-posts .blog-post a,
  .landing-career .blog-posts .blog-post a {
    padding: 1rem 0 0 0;
  }
}

.landing-latest-news .blog-posts .blog-post a:hover, .landing-latest-news .blog-posts .blog-post a:active,
.landing-career .blog-posts .blog-post a:hover,
.landing-career .blog-posts .blog-post a:active {
  background: #f7f7f7;
}

.landing-latest-news .blog-posts .blog-post a span,
.landing-career .blog-posts .blog-post a span {
  display: block;
  float: left;
  text-align: left;
}

.landing-latest-news .blog-posts .blog-post a .date,
.landing-career .blog-posts .blog-post a .date {
  width: 12.5%;
  font-size: .95rem;
}

@media screen and (max-width: 768px) {
  .landing-latest-news .blog-posts .blog-post a .date,
  .landing-career .blog-posts .blog-post a .date {
    width: 45%;
    float: left;
  }
}

@media screen and (max-width: 470px) {
  .landing-latest-news .blog-posts .blog-post a .date,
  .landing-career .blog-posts .blog-post a .date {
    width: 100%;
    float: none;
    text-align: center;
  }
}

.landing-latest-news .blog-posts .blog-post a .headline,
.landing-career .blog-posts .blog-post a .headline {
  width: 40%;
  color: #DD4B28;
  font-size: 1.4rem;
  font-family: "arvo", serif;
  letter-spacing: -.03em;
  margin-right: 2.5%;
}

@media screen and (max-width: 768px) {
  .landing-latest-news .blog-posts .blog-post a .headline,
  .landing-career .blog-posts .blog-post a .headline {
    clear: left;
    width: 35%;
    float: left;
  }
}

@media screen and (max-width: 470px) {
  .landing-latest-news .blog-posts .blog-post a .headline,
  .landing-career .blog-posts .blog-post a .headline {
    width: 100%;
    float: none;
    margin: 0;
    text-align: center;
  }
}

.landing-latest-news .blog-posts .blog-post a .excerpt,
.landing-career .blog-posts .blog-post a .excerpt {
  width: 45%;
  font-size: 1.0rem;
}

@media screen and (max-width: 768px) {
  .landing-latest-news .blog-posts .blog-post a .excerpt,
  .landing-career .blog-posts .blog-post a .excerpt {
    width: 58%;
    float: left;
    position: relative;
    top: -1rem;
  }
}

@media screen and (max-width: 470px) {
  .landing-latest-news .blog-posts .blog-post a .excerpt,
  .landing-career .blog-posts .blog-post a .excerpt {
    width: 100%;
    float: none;
    top: 0;
    text-align: center;
  }
}

.landing-contact {
  margin: 50px 5% 50px 5%;
}

@media screen and (max-width: 470px) {
  .landing-contact {
    margin: 25px 0 0 0;
    width: 100%;
    background: #397CAF;
  }
}

.landing-contact > div {
  width: 50%;
  float: left;
  color: #fff;
}

@media screen and (max-width: 470px) {
  .landing-contact > div {
    width: 100%;
    float: none;
  }
}

.landing-contact > div h3 {
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

.landing-contact > div p {
  text-align: center;
  font-size: 1rem;
  max-width: 300px;
  margin: .6em auto 2em auto;
}

.landing-contact > div a {
  color: #fff;
  text-decoration: none;
}

.landing-contact > div a:hover, .landing-contact > div a:active {
  color: rgba(255, 255, 255, 0.6);
}

.landing-contact .contact-form {
  background: #38B25A;
  padding: 40px;
  text-align: center;
}

.landing-contact .contact-form form p.success-message,
.landing-contact .contact-form form p.fail-message {
  max-height: 0;
  font-size: 1.4rem;
  padding: 0rem 0;
  box-sizing: border-box;
  transition: all linear .2s;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

.landing-contact .contact-form form p.fail-message.open {
  max-height: 10rem;
}

.landing-contact .contact-form form label {
  display: block;
  margin-bottom: 2rem;
  max-height: 10rem;
  overflow: hidden;
}

.landing-contact .contact-form form label input, .landing-contact .contact-form form label textarea {
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 1rem;
  font-size: 1.3rem;
  font-family: "arvo", serif;
  display: block;
  width: 90%;
  max-width: 350px;
  margin: .3em auto 0 auto;
  padding: .5em 1em .2em 1em;
  box-sizing: border-box;
  text-align: center;
  color: #38B25A;
  height: 2em;
  position: relative;
  line-height: 1.2;
}

.landing-contact .contact-form form label input::placeholder, .landing-contact .contact-form form label textarea::placeholder {
  text-align: center;
  color: #707070;
  font-size: .8rem;
  line-height: 1.3em;
  transition: color ease-in-out .3s;
}

.landing-contact .contact-form form label input:focus::placeholder, .landing-contact .contact-form form label textarea:focus::placeholder {
  color: #f7f7f7;
}

.landing-contact .contact-form form label textarea {
  height: 6em;
}

.landing-contact .contact-form form label span {
  display: none;
}

.landing-contact .contact-form form button {
  display: inline-block;
  padding: .3em 2em;
  border: 1px solid #fff;
  background: transparent;
  font-family: "arvo", serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin: 1em 0;
  transition: background ease .4s;
  cursor: pointer;
}

.landing-contact .contact-form form button:hover, .landing-contact .contact-form form button:active {
  background: rgba(255, 255, 255, 0.1);
}

.landing-contact .contact-form form.success p.success-message {
  padding: 2rem 0;
  max-height: 1000px;
}

.landing-contact .contact-form form.success label, .landing-contact .contact-form form.success button {
  max-height: 0;
}

.landing-contact .contact-form form.success button {
  display: none;
}

.landing-contact .contact-info {
  background: #397CAF;
}

.landing-contact .contact-info .text {
  display: block;
  padding: 40px 40px 10px 40px;
}

.landing-contact .contact-info iframe {
  width: 100%;
  height: 400px;
  display: block;
  overflow: hidden;
}

footer {
  width: 96%;
  margin: 20px 2% 0 2%;
  padding: 12px 0 18px 0;
  display: block;
  font-size: 0;
}

footer .site-logo {
  font-size: 1.2rem;
  width: 15%;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 470px) {
  footer .site-logo {
    display: none;
  }
}

footer .site-logo img {
  width: 100%;
  max-width: 120px;
}

footer nav {
  font-size: 1.2rem;
  text-align: center;
  width: 69.9%;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 470px) {
  footer nav {
    display: none;
  }
}

footer nav a {
  color: #707070;
  text-decoration: none;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 400;
  line-height: 1em;
  font-size: 1em;
}

@media screen and (max-width: 960px) {
  footer nav a {
    font-size: .9em;
  }
}

@media screen and (max-width: 768px) {
  footer nav a {
    font-size: .8em;
  }
}

@media screen and (max-width: 560px) {
  footer nav a {
    font-size: .7em;
  }
}

footer nav a:hover, footer nav a:active {
  color: #DD4B28;
  text-decoration: none;
}

footer nav a + a {
  margin-left: 1.3em;
}

@media screen and (max-width: 960px) {
  footer nav a + a {
    margin-left: 1.0em;
  }
}

@media screen and (max-width: 768px) {
  footer nav a + a {
    margin-left: .6em;
  }
}

@media screen and (max-width: 560px) {
  footer nav a + a {
    margin-left: .3em;
  }
}

footer .socials {
  font-size: 1.2rem;
  width: 15%;
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}

@media screen and (max-width: 470px) {
  footer .socials {
    display: none;
  }
}

footer .socials a img {
  width: 1.3rem;
}

@media screen and (max-width: 960px) {
  footer .socials a img {
    width: 1.0rem;
  }
}

@media screen and (max-width: 768px) {
  footer .socials a img {
    width: .7rem;
  }
}

footer .socials a + a {
  margin-left: .5em;
}

@media screen and (max-width: 768px) {
  footer .socials a + a {
    margin-left: .1em;
  }
}

footer .mobile-footer-logo {
  display: none;
}

@media screen and (max-width: 470px) {
  footer .mobile-footer-logo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
  }
  footer .mobile-footer-logo img {
    width: 100px;
  }
}

h1 span#marquee {
  position: relative;
  display: inline-block;
  height: .95em;
}

h1 span#marquee .active {
  position: absolute;
  top: 0;
  left: 0;
  transition: none;
  opacity: 1;
}

h1 span#marquee .active.flip {
  top: -1.2em;
  opacity: 0;
  transition: all cubic-bezier(0, 1.03, 0.22, 1.01) 0.4s;
  transition-delay: .05s;
}

h1 span#marquee .next {
  position: absolute;
  top: 1.2em;
  left: 0;
  opacity: 0;
  transition: none;
}

h1 span#marquee .next.flip {
  top: 0;
  opacity: 1;
  transition: all cubic-bezier(0, 1.03, 0.22, 1.01) 0.3s;
}

.posts {
  margin: 0 10% 0 10%;
  padding: 40px 40px 80px 40px;
}

@media screen and (max-width: 768px) {
  .posts {
    margin: 0 5%;
  }
}

@media screen and (max-width: 470px) {
  .posts {
    margin: 0 2%;
    padding: 20px 10px;
  }
}

.posts .post {
  width: 37.5%;
  float: left;
  clear: none;
  padding: 40px 0;
  margin: 0 0 10px 0;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .posts .post {
    width: 42.5%;
  }
}

@media screen and (max-width: 470px) {
  .posts .post {
    width: 90%;
    padding: 20px 0;
    margin: 40px 4.95%;
    float: none;
    clear: both;
  }
}

.posts .post img {
  width: 100%;
}

.posts .post:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin-top: -1px;
  border-radius: inherit;
  background: linear-gradient(to right, #DD4B28, white 90%);
}

.posts .post h2 {
  font-size: 2rem;
  margin: 0 0 .5em 0;
}

.posts .post h2 a {
  color: #DD4B28;
  transition: color linear .2s;
  text-decoration: none;
}

.posts .post h2 a:hover, .posts .post h2 a:active {
  color: rgba(221, 75, 40, 0.8);
}

@media screen and (max-width: 470px) {
  .posts .post h2 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 470px) {
  .posts .post .content {
    font-size: .9em;
  }
}

.posts .post .tags {
  margin-top: 2em;
  font-size: 1rem;
}

.posts .post .tags a {
  color: #707070;
  border: 1px solid #707070;
  background: transparent;
  display: block;
  float: left;
  text-decoration: none;
  padding: .2em .5em;
  transition: all linear .2s;
}

.posts .post .tags a:hover {
  text-decoration: none;
  background: #f7f7f7;
}

.posts .post .tags a + a {
  margin-left: 2px;
}

.posts .post:nth-child(2n+0) {
  margin-left: 5%;
}

@media screen and (max-width: 470px) {
  .posts .post:nth-child(2n+0) {
    margin-left: 0;
  }
}

.posts .post:nth-child(2n+1) {
  clear: left;
  margin-left: 10%;
}

@media screen and (max-width: 768px) {
  .posts .post:nth-child(2n+1) {
    margin-left: 5%;
  }
}

@media screen and (max-width: 470px) {
  .posts .post:nth-child(2n+1) {
    margin-left: 0;
  }
}

.posts.first_page .post {
  clear: none;
  margin-left: 0;
}

.posts.first_page .post:nth-child(2n+1) {
  margin-left: 5%;
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(2n+1) {
    margin-left: 0;
  }
}

.posts.first_page .post:nth-child(2n+0) {
  clear: left;
  margin-left: 10%;
}

@media screen and (max-width: 768px) {
  .posts.first_page .post:nth-child(2n+0) {
    margin-left: 5%;
  }
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(2n+0) {
    margin-left: 0;
  }
}

.posts.first_page .post:nth-child(1) {
  width: 100%;
  background: #fff;
  background-clip: padding-box;
  /* !importanté */
  border: solid 1px transparent;
  /* !importanté */
  position: relative;
  border-radius: 30px;
  padding: 80px 10%;
  margin-left: 0;
}

.posts.first_page .post:nth-child(1):before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(to bottom, #DD4B28, white 70%);
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(1) {
    padding: 40px 5% 60px 5%;
  }
}

.posts.first_page .post:nth-child(1) a:hover, .posts.first_page .post:nth-child(1) a:active {
  text-decoration: none;
}

.posts.first_page .post:nth-child(1) h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: .3em;
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(1) h2 {
    font-size: 1.8rem;
  }
}

.posts.first_page .post:nth-child(1) .date {
  font-size: 1.6rem;
  margin-bottom: .5em;
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(1) .date {
    font-size: 1.3rem;
  }
}

.posts.first_page .post:nth-child(1) .content {
  font-size: 1.4rem;
  line-height: 1.3;
}

@media screen and (max-width: 470px) {
  .posts.first_page .post:nth-child(1) .content {
    font-size: 1.15rem;
  }
}

div.paginate {
  text-align: center;
  padding: 40px 0;
}

div.single-post {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
}

div.single-post .tags {
  margin-top: 1em;
  margin-bottom: .5em;
  font-size: 1rem;
}

div.single-post .tags a {
  color: #707070;
  border: 1px solid #707070;
  background: transparent;
  display: block;
  float: left;
  text-decoration: none;
  padding: .2em .5em;
  transition: all linear .2s;
}

div.single-post .tags a:hover {
  text-decoration: none;
  background: #f7f7f7;
}

div.single-post .tags a + a {
  margin-left: 2px;
}

div.single-post .date {
  font-size: 1.2rem;
  margin-bottom: .5em;
}

@media screen and (max-width: 470px) {
  div.single-post .date {
    font-size: 1rem;
  }
}

div.single-post p, div.single-post ul, div.single-post ol {
  margin-bottom: 1.8em;
}

div.single-post ul, div.single-post ol {
  padding-left: 1.8em;
}

div.single-post h1, div.single-post h2, div.single-post h3, div.single-post h4, div.single-post h5, div.single-post h6 {
  padding: .3em 0 .1em;
  margin: .2em 0 .5em 0;
}

div.single-post ul.wp-block-gallery {
  padding-left: 0;
}

div.single-post .wp-block-image img {
  width: 100%;
}

div.single-post .wp-block-image figcaption {
  font-size: 1rem;
}

div.single-post blockquote {
  text-align: center;
}

div.single-post blockquote:before {
  content: '\201C';
  font-family: "freight-sans-pro", sans-serif;
  color: #DD4B28;
  font-size: 3rem;
  display: block;
}

div.single-post blockquote:after {
  display: block;
  content: '\201D';
  font-family: "freight-sans-pro", sans-serif;
  color: #DD4B28;
  font-size: 3rem;
}

div.single-post blockquote > p {
  font-family: "arvo", serif;
  font-style: normal;
  color: #DD4B28;
  margin: 0 auto 1.3em auto;
  width: 90%;
  max-width: 700px;
}

div.single-post blockquote > p em {
  font-style: normal;
}

.landing-career.short-margin {
  margin: 50px 5% 0 5%;
  padding: 20px 40px 0 40px;
}

@media screen and (max-width: 470px) {
  .landing-career.short-margin {
    padding: 40px 15px 0 15px;
  }
}

.careers {
  width: 90%;
  margin: 0 5%;
  padding: 0 0 5rem 0;
}

.careers .filters {
  text-align: center;
  padding: 0 0 1em 0;
}

.careers .filters a {
  color: #DD4B28;
  display: inline-block;
  font-size: .9em;
  border: 1px solid #DD4B28;
  padding: 0 5px;
  text-decoration: none;
}

@media screen and (max-width: 470px) {
  .careers .filters a {
    font-size: .8em;
  }
}

@media screen and (max-width: 340px) {
  .careers .filters a {
    font-size: .7em;
  }
}

.careers .filters a.inactive {
  color: #707070;
  border: 1px solid transparent;
}

.careers .career {
  width: 100%;
  clear: both;
  font-size: 1em;
  border-top: 1px solid #eee;
  max-height: 200em;
  opacity: 1;
  overflow: hidden;
  transition: all linear .2s;
  padding: 0 5%;
  cursor: pointer;
}

@media screen and (max-width: 470px) {
  .careers .career {
    padding: 0 1%;
  }
}

.careers .career.hide {
  max-height: 0;
  opacity: 0;
}

.careers .career:hover {
  background: #fafafa;
}

@media screen and (max-width: 470px) {
  .careers .career {
    font-size: .9em;
  }
}

@media screen and (max-width: 320px) {
  .careers .career {
    font-size: .8em;
  }
}

.careers .career div {
  padding: 1em 0;
  float: left;
}

.careers .career div.position {
  width: 25%;
  font-family: "arvo", serif;
  font-size: .85em;
  position: relative;
  top: .35em;
}

.careers .career div.location {
  width: 25%;
}

.careers .career div.type {
  width: 25%;
}

.careers .career div.time {
  width: 25%;
}

.careers .career div.description {
  width: 100%;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all linear .2s;
}

.careers .career div.description p, .careers .career div.description ul, .careers .career div.description ol {
  margin-bottom: 1em;
}

.careers .career div.description ul, .careers .career div.description ol {
  padding-left: 1.5em;
  list-style: initial;
}

.careers .career div.description.show {
  opacity: 1;
  padding: 1em 0 2em 0;
  max-height: 400em;
}
