html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
p,
h3,
h4,
h5,
h6,
li,
a,
td,
th,
figcaption,
label,
input,
textarea {
    font-family: dunbar-text, sans-serif;
    text-decoration: none;
}
h1,
h2 {
    font-family: dunbar-tall, sans-serif;
    margin: 0;
}
p{
    font-family: dunbar-text, sans-serif;
	font-size: 1.5vw;
	line-height: 1.4;;
}
li,
a,
h3,
th,
td {
    font-size: 22px;
    line-height: 1.5;
}
h1,
h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 100;
}
html {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}
body {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: 1;
    background-color: white;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 0.5px;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
    background-color: #1e3d42;
    outline: 1px solid slategrey;
}
* {
    box-sizing: border-box;
}
.btn {
    padding: 5px;
    width: 200px;
    display: block;
    color: #ec5a49;
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-top: 0;
    margin-bottom: 0;
}
.grid-container {
    margin: 0 auto;
    display: block;
    max-width: 1140px;
    width: 85%;
    overflow: hidden;
}
.overlay-cont {
    position: relative;
}
.overlay-cont .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.6);
}
.overlay-cont .overlay p {
    color: white;
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.overlay-cont img {
    width: 100%;
    max-width: 100%;
}
.overlay-cont:hover .overlay {
    opacity: 1;
}
.overlay-cont:after {
    content: "";
    display: table;
    clear: both;
}
.img-cont img {
    max-width: 100%;
    max-height: 100%;
}
.hide-on-desktop {
    display: none;
}
.clear {
    clear: both;
}
.tint-cont {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    display: none;
    box-sizing: border-box;
}
.hvr-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-property: -webkit-transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover {
    color: white;
}
.hvr-sweep-to-top:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.hvr-sweep-to-top:focus {
    color: white;
}
.hvr-sweep-to-top:focus:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.hvr-sweep-to-top:active {
    color: white;
}
.hvr-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
@-webkit-keyframes cabinCrossfade {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes cabinCrossfade {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes move {
    0% {
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
[data-effect][data-effect="grow"] {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
[data-effect][data-effect="fade-in"] {
    opacity: 0;
}
[data-effect][data-effect="slide-in-left"] {
    opacity: 0;
    margin-left: -2000px;
}
[data-effect][data-effect="slide-in-right"] {
    opacity: 0;
    margin-right: -2000px;
}
[data-effect][data-effect="slide-out-right"] {
    -webkit-transition: all 3s;
    transition: all 3s;
    opacity: 0;
    margin-right: -2000px;
}
[data-effect].grow {
    -webkit-transition: all 2s;
    transition: all 2s;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
[data-effect].fade-in {
    -webkit-transition: all 3s;
    transition: all 3s;
    opacity: 1;
}
[data-effect].slide-in-left,
[data-effect].slide-in-right {
    -webkit-transition: all 2s;
    transition: all 2s;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}
.nav {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
    background-color: transparent;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
}
.nav .links .cabin {
    fill: #54565a;
    height: 30px;
    width: 30px;
}
.nav .links li {
    display: inline-block;
    padding: 0 0.7vw;
}
.nav .links li:last-child {
    padding: 0;
}
.nav .links li a {
    color: #54565a;
    font-size: 23px;
    letter-spacing: 2px;
}
.nav .links li a.active {
    border-bottom: 2px solid #663399;
}
.nav .links li a:before {
    height: 2px;
    background-color: #663399;
}
.nav .img-cont {
    padding-top: 10px;
}
.nav.active {
    background-color: white;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.3), 0 5px 5px rgba(0, 0, 0, 0.22);
}
.nav.inactive {
    background-color: transparent;
}
.intro-cont {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vw;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.intro-cont.our-work {
    background-image: url("../img/our-work-images/ourwork-bg.jpg");
}
.intro-cont.people {
    background-image: url("../img/the-people/people-bg.jpg");
}
.intro-cont.about {
    background-image: url("../img/about/about-bg.jpg");
}
.intro-cont.news {
    background-image: url("../img/news/news-bg.jpg");
}
.intro-cont.news,
.intro-cont.contact {
    height: 20vw;
}
.intro-cont.services {
    background-image: url("../img/services/services-bg.jpg");
}
.header-intro-copy {
    width: 70%;
    display: block;
    color: #582c82;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header-intro-copy h1 {
    text-align: center;
    font-size: 70px;
    padding: 0;
    margin: 0;
    color: #582c82;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    font-family: dunbar-tall, sans-serif;;
}
.header-intro-copy p {
    color: #54565a;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}
.header-intro-copy.homepage {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header-intro-copy.homepage h1 {
    font-size: 70px;
}
.header-intro-copy.homepage h2 {
    font-size: 45px;
}
.header-intro-copy.contact h1 {
    color: #461a6f;
}
.hero-image-bottom {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 600px;
    position: relative;
    text-align: center;
    clear: both;
}
.hero-image-bottom .copy {
    width: 50%;
    padding-top: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.hero-image-bottom .copy h2 {
    color: white;
    font-family: "dunbar-tall", sans-serif;
    font-size: 60px;
    padding: 30px 0;
}
.hero-image-bottom .copy p {
    color: white;
}
.hero-image-bottom .copy a {
    color: #35b8a1;
    border: 2px solid #35b8a1;
}
.hero-image-bottom .copy a:before {
    background-color: #35b8a1;
}
.hero-image-bottom .copy a:hover {
    color: white;
}
.hero-image-bottom .triangle {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 60px solid white;
    width: 0;
    margin: 0 auto;
    display: block;
}
.hero-image-bottom.home {
    background: url("../img/get-started-home.webp");
    background-size: cover;
}
.hero-image-bottom.our-work {
    background-image: url("../img/our-work-images/get-started-work.jpg");
}
.hero-image-bottom.about {
    background-image: url("../img/about/get-started-about.jpg");
}
.hero-image-bottom.services {
    background-image: url("../img/services/get-started-services.jpg");
}
.hero-image-bottom.news {
    background-image: url("../img/news/get-started-news.jpg");
}
.else {
    top: 650px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1;
    position: relative;
}
.else.homepage {
    top: 60vw;
}
.else.homepage.christmas {
    top: -20px;
}
.else.our-work {
    top: 0;
}
.homepage-header-container {
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: fixed;
    z-index: 1;
    height: auto;
    top: 0;
}
.homepage-header-container img {
    width: 100%;
    height: auto;
    animation: infinite move 16s ease-in-out;
    -ms-animation: infinite move 16s ease-in-out;
    -webkit-animation: infinite move 16s ease-in-out;
    -o-animation: infinite move 16s ease-in-out;
    -moz-animation: infinite move 16s ease-in-out;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}
.homepage-header-container .hvr-sweep-to-top {
    border: 2px solid #582c82;
    color: #582c82;
    margin: 0;
    margin-top: 20px;
}
.homepage-header-container .hvr-sweep-to-top:before {
    background-color: #582c82;
}
.homepage-header-container .hvr-sweep-to-top:hover {
    color: white;
}
.homepage-header-container .homepage-christmas-video {
    display: block;
    position: absolute !important;
    z-index: 10000;
    left: 0;
    top: 0;
}
.homepage-intro-copy {
    width: 60%;
    margin: 0 auto;
    display: block;
    text-align: center;
    background-color: white;
}
.homepage-intro-copy img {
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    display: block;
}
.homepage-intro-copy h1 {
    color: #45c2b0;
    text-align: center;
}
.homepage-intro-copy p {
    text-align: center;
}
.homepage-intro-copy a {
    border: 2px solid #45c2b0;
    color: #45c2b0;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 0;
}
.homepage-intro-copy a:before {
    background-color: #45c2b0;
}
.homepage-case-study {
    background-color: #45c2b0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
}
.homepage-case-study .copy {
    width: 55%;
    padding: 20px;
    margin-left: 5%;
}
.homepage-case-study .copy h1,
.homepage-case-study .copy p,
.homepage-case-study .copy a {
    color: white;
}
.homepage-case-study .copy a {
    border: 2px solid white;
    margin-top: 20px;
    margin-bottom: 0;
}
.homepage-case-study .copy a:before {
    background-color: white;
}
.homepage-case-study .copy a:hover {
    color: #45c2b0;
}
.homepage-case-study .img-cont {
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.homepage-case-study .img-cont .triangle {
    position: relative;
    right: -60px;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid #45c2b0;
}
.homepage-news {
    background-color: white;
    margin-top: 40px;
    margin-bottom: 40px;
}
.homepage-news .center-cont {
    margin: 0 auto;
    width: 1200px;
}
.homepage-news .center-cont .copy {
    width: 55%;
    padding: 30px;
    display: inline-block;
    vertical-align: top;
}
.homepage-news .center-cont .copy h1,
.homepage-news .center-cont .copy p {
    color: #3d3d3d;
}
.homepage-news .center-cont .copy a {
    border: 2px solid #45c2b0;
    color: #45c2b0;
    margin-top: 20px;
    margin-bottom: 0;
}
.homepage-news .center-cont .copy a:before {
    background-color: #45c2b0;
}
.homepage-news .center-cont .copy a:hover {
    color: white;
}
.homepage-news .center-cont .img-cont {
    width: 40%;
    padding: 30px;
    display: inline-block;
}
.homepage-news .center-cont .img-cont .triangle {
    position: relative;
    left: -60px;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 60px solid white;
}
.homepage-client-list {
    width: 100%;
    background-color: #53555a;
    text-align: center;
    color: white;
    padding: 30px 0;
}
.homepage-client-list .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px 0;
}
.homepage-client-list .lists ul {
    width: 30%;
}
.homepage-client-list .copy {
    width: 80%;
    margin: 0 auto;
    display: block;
}
.homepage-client-list .copy h1 {
    padding-bottom: 10px;
}
.homepage-client-list .copy a {
    border: 2px solid #45c2b0;
    color: #45c2b0;
}
.homepage-client-list .copy a:before {
    background-color: #45c2b0;
}
.homepage-client-list .copy a:hover {
    color: white;
}
.our-work-featured-case-histories .case-history {
    width: 33.33333333%;
    float: left;
    position: relative;
    overflow: hidden;
}
.our-work-featured-case-histories .case-history .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.6);
}
.our-work-featured-case-histories .case-history .overlay .copy {
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.our-work-featured-case-histories .case-history img {
    vertical-align: middle;
    -webkit-transition: -webkit-transform 0.5s linear;
    transition: transform 0.5s linear;
}
.our-work-featured-case-histories .case-history:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.our-work-featured-case-histories .case-history:hover .overlay {
    opacity: 1;
}
.our-work-examples {
    clear: both;
    text-align: center;
    padding-top: 40px;
}
.our-work-examples .our-work-example-cont {
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: none;
}
.our-work-examples .our-work-example-cont.active {
    display: block;
}
.our-work-examples .example-image {
    background-color: transparent;
    -webkit-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
    height: 15vw;
    width: 15vw;
    margin: 1vw;
    display: inline-block;
    position: relative;
    border-radius: 2px;
    z-index: 100;
}
.our-work-examples .example-image img {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}
.our-work-examples .example-image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}
.our-work-examples .example-image.active {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    margin: 0;
}
.our-work-examples .example-image.active img {
    height: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.our-work-examples .button-container {
    margin-bottom: 40px;
}
.our-work-examples .button-container button {
    border: 0;
    font-family: "dunbar-tall", sans-serif;
    background-color: #461a6f;
    color: white;
    font-size: 20px;
    padding: 10px;
    margin: 10px 10px -2px 10px;
    width: 130px;
    border-right: 2px solid #461a6f;
    border-left: 2px solid #461a6f;
    border-top: 2px solid #461a6f;
    border-bottom: 0;
    z-index: 1;
    position: relative;
    display: inline-block;
}
.our-work-examples .button-container button:hover {
    color: #45c2b0;
    cursor: pointer;
}
.our-work-examples .button-container button.active {
    background: #461a6f;
    color: white;
    z-index: 2;
    position: relative;
}
.our-work-examples .button-container hr {
    border-top: 2px solid #461a6f;
    border-bottom: 0;
    width: 90%;
    z-index: 1;
    position: relative;
    margin: 0;
    margin-left: 5%;
}
.our-work-close-image {
    color: white;
    font-size: 70px;
    display: none;
    z-index: 1000000;
    right: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: fixed;
}
.our-work-close-image:hover {
    cursor: pointer;
}
.about-who-we-are {
    margin-top: 40px;
}
.about-who-we-are .img-cont {
    width: 40%;
    float: left;
}
.about-who-we-are .copy {
    width: 55%;
    float: right;
}
.about-who-we-are .copy h1 {
    color: #45c2b0;
}
.about-who-we-are .copy p {
    padding-bottom: 20px;
}
.about-our-offices {
    margin-top: 40px;
}
.about-our-offices .img-cont {
    width: 40%;
    float: right;
}
.about-our-offices .copy {
    width: 55%;
    float: left;
}
.about-our-offices .copy h1 {
    color: #1e3d42;
}
.about-our-offices .copy p {
    padding-bottom: 20px;
}
.about-our-offices .copy a {
    color: #1e3d42;
    width: auto;
    border: 2px solid #1e3d42;
    margin-bottom: 40px;
}
.about-our-offices .copy a:hover {
    cursor: pointer;
    color: #e3e1d5;
}
.about-our-offices .copy a:before {
    background-color: #1e3d42;
}
.about-cabin-container {
    overflow: hidden;
    position: relative;
    height: 40vw;
    clear: both;
    margin-top: 40px;
    margin-bottom: 40px;
}
.about-cabin-container .img-cont {
    display: block;
    margin: 0 auto;
}
.about-cabin-container .img-cont img {
    position: absolute;
    width: 100%;
    height: auto;
}
.about-cabin-container .cabin-old {
    -webkit-animation-name: cabinCrossfade;
    animation-name: cabinCrossfade;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.people-picture {
    height: auto;
    width: 33.33333333%;
    float: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.people-picture:hover {
    cursor: pointer;
}
.people-picture img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 650ms ease-in-out;
    transition: 650ms ease-in-out;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: bottom right;
    height: auto;
    width: 100%;
    float: left;
}
.people-picture img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 650ms ease-in-out;
    transition: 650ms ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.people-picture .copy {
    position: absolute;
    bottom: 0;
    color: white;
    width: 100%;
    height: auto;
    z-index: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
}
.people-picture .copy .name {
    padding-bottom: 5px;
}
.people-picture .copy .title {
    color: white;
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}
.people-picture .copy p {
    color: white;
    line-height: 1;
}
.people-tint-container {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
    height: 100vh;
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}
.people-tint-container.active {
    opacity: 1;
    z-index: 1000;
}
.people-info {
    height: auto;
    width: 100%;
    background-color: white;
    overflow: hidden;
    z-index: 10000;
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.people-info img {
    max-width: 35%;
}
.people-info .copy {
    padding: 10px;
    line-height: 1.2;
    position: relative;
    width: 70%;
}
.people-info .copy h1 {
    color: #582c82;
    font-size: 2vw;
}
.people-info .copy h3 {
    font-size: 1.5vw;
}
.people-info .copy a {
    color: #53555a;
    font-style: italic;
    border-bottom: 1px solid grey;
    font-size: 1.4vw;
}
.people-info .copy a:hover {
    color: #45c2b0;
    border-bottom: 1px solid #45c2b0;
}
.people-info .copy p {
    width: 70%;
    padding-top: 10px;
    font-size: 1.3vw;
    line-height: 1.4;
}
.people-info .copy .email-icon {
    color: #53555a;
    font-size: 1.5vw;
    padding-left: 0.5vw;
    display: inline-block;
}
.people-info .copy .info-close {
    color: #53555a;
    position: absolute;
    font-size: 50px;
    top: 0;
    right: 20px;
}
.people-info .copy .info-close:hover {
    color: #582c82;
    cursor: pointer;
}
.people-info.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.people-mobile-info-close {
    color: #a1a2a6;
    position: absolute;
    font-size: 50px;
    top: 10px;
    right: 10px;
    z-index: 100000;
    display: none;
}
.news-img {
    float: left;
    width: 40%;
    margin-top: 40px;
}
.news-img img {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.news-copy {
    float: right;
    width: 55%;
    margin-top: 40px;
}
.news-copy h1 {
    color: #45c2b0;
    line-height: 1.2;
    font-weight: bold;
}
.news-view-more-button {
	font-family: dunbar-text, sans-serif;
    border: 2px solid #461a6f;
    background-color: transparent;
    color: #461a6f;
    clear: both;
    margin-top: 10px;
    margin-bottom: 30px;
}
.news-view-more-button:before {
    background-color: #461a6f;
}
.news-view-more-button:hover {
    cursor: pointer;
}
.news-other-news-container {
    width: 55%;
    float: right;
}
.news-other-news-container .news-other-news-list-container {
    display: none;
}
.news-other-news-container .news-other-news-list-container h1 {
    color: #35b8a1;
    font-weight: bold;
}
.news-other-news-container .news-other-news-list-container .news-list {
    margin-bottom: 5vw;
}
.news-other-news-container .news-other-news-list-container .news-list li {
    line-height: 1.2;
    padding-bottom: 20px;
    text-decoration: none;
    font-size: 22px;
}
.news-other-news-container .news-other-news-list-container .news-list li:hover {
    text-decoration: underline;
    cursor: pointer;
}
.services-type-container {
    margin-top: 40px;
}
.services-type-container .services-list-cont {
    width: 30%;
    height: auto;
    display: inline-block;
    margin: 1vw;
    background-color: #d3d3d3;
    text-align: center;
    padding: 1vw 0;
    position: relative;
    opacity: 0;
    box-shadow: 0px 0px 8px -1px #424242;
}
.services-type-container .services-list-cont.first {
    margin-left: 0;
}
.services-type-container .services-list-cont.last {
    margin-right: 0;
}
.services-type-container .services-list-cont:hover {
    cursor: pointer;
}
.services-type-container .services-list-cont h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 400;
    width: 80%;
}
.services-type-container .services-list-cont .services-top-title-bg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 100% 100%;
    background-color: #4a6d71;
    position: absolute;
    top: 0;
}
.services-type-container .services-list-cont .services-top-title-bg.strategy {
    background-image: url("../img/services/services-strategy.jpg");
}
.services-type-container .services-list-cont .services-top-title-bg.web {
    background-image: url("../img/services/services-web-design.jpg");
}
.services-type-container .services-list-cont .services-top-title-bg.graphic {
    background-image: url("../img/services/services-graphic-design.jpg");
}
.services-type-container .services-list-cont .services-top-title-bg.video {
    background-image: url("../img/services/services-video.jpg");
}
.services-type-container .services-list-cont .services-top-title-bg.pr {
    background-image: url("../img/services/services-public-relations.jpg");
}
.services-type-container .services-list-cont .services-top-title-bg.media {
    background-image: url("../img/services/services-media-planning.jpg");
}
.services-type-container .services-list-cont .services-type-list {
    width: 100%;
    text-align: center;
    float: left;
}
.services-type-container .services-list-cont .services-type-list li:first-child {
    color: #1e3d42;
    font-weight: bold;
}
.services-markets-container {
    text-align: center;
    float: left;
    width: 100%;
    clear: both;
    background: url("../img/services/markets-bg.jpg");
    background-size: cover;
    background-position: center center;
    height: auto;
    padding: 50px 0;
    color: white;
    margin-top: 40px;
    margin-bottom: 40px;
}
.services-markets-container .copy .lists {
    width: 50%;
    display: block;
    margin: 0 auto;
}
.services-markets-container .copy .lists ul {
    text-align: left;
    margin: 20px 0;
}
.services-markets-container .copy .lists ul:first-child {
    float: left;
}
.services-markets-container .copy .lists ul:last-child {
    float: right;
}
.services-markets-container .copy .lists ul li {
    list-style-type: circle;
}
.services-markets-container .copy h2 {
    font-size: 30px;
}
.page-bg.contact {
    height: 100%;
    width: 100%;
    background-image: url("../img/contact/contact-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-form {
    float: left;
    width: 40%;
}
.contact-form input,
.contact-form textarea {
    font-size: 30px;
    display: block;
    width: 100%;
    color: #7a7a7a;
    padding: 5px;
    margin-bottom: 20px;
}
.contact-form input[type="submit"] {
    margin-top: 20px;
}
.contact-form input[type="submit"],
.contact-form input[type="reset"] {
    font-size: 22px;
    color: #35b8a1;
    background: transparent;
    border: 2px solid #35b8a1;
    width: 200px;
    padding: 10px;
}
.contact-form input[type="submit"]:before,
.contact-form input[type="reset"]:before {
    background-color: #35b8a1;
}
.contact-form input[type="submit"]:hover,
.contact-form input[type="reset"]:hover {
    color: white;
    background-color: #35b8a1;
    cursor: pointer;
}
.contact-form .input-cont {
    position: relative;
}
.contact-form .input-cont span {
    background: White;
    font-size: 20px;
    color: #53555a;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 105%;
    opacity: 0;
    font-family: "cronos-pro-subhead", sans-serif;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}
.contact-form .input-cont span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #e3e1d5 transparent transparent;
}
.contact-form .input-cont:hover > span {
    opacity: 1;
}
.contact-info {
    float: right;
    width: 48%;
}
.contact-info p,
.contact-info a {
    display: block;
    color: #53555a;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info .name,
.contact-info .phone {
    font-size: 35px;
    color: #582c82;
}
.contact-info .phone {
    margin-top: 20px;
}
.contact-info.confirmation {
    float: none;
    width: 100%;
    text-align: center;
    padding: 40px 0;
}
.contact-confirmation-message {
    width: 30%;
    margin: 0 auto;
    text-align: center;
    color: #a3a3a3;
    margin-top: -50px;
    margin-bottom: 20px;
}
.contact-error {
    width: 50%;
    display: none;
    color: #1e3d42;
    background-color: #e3e1d5;
    padding: 10px;
    border: 2px solid #ec5a49;
    margin-bottom: 20px;
}
.contact-error h3 {
    font-weight: bold;
    color: #ec5a49;
}
.ch-wrapper:after {
    content: "";
    display: table;
    clear: both;
}
.ch-hero {
    height: 15vw;
    width: 100%;
    background-size: cover;
    position: relative;
}
.ch-hero .arrow {
    color: white;
    font-size: 70px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ch-hero .arrow:hover {
    cursor: pointer;
    color: #d72f18;
}
.ch-hero .left-arrow {
    left: 40px;
}
.ch-hero .right-arrow {
    right: 40px;
}
.ch-hero.seaman {
    background-image: url("../img/case-histories/header-seaman-ifai.jpg");
}
.ch-hero.allied {
    background-image: url("../img/case-histories/header-allied-website.jpg");
}
.ch-hero.gradall {
    background-image: url("../img/case-histories/header-gradall-discovery.jpg");
}
.ch-hero.gradall-new-website {
    background-image: url("../img/case-histories/header-gradall-new-website.jpg");
}
.ch-hero.genie-aladdin {
    background-image: url("../img/case-histories/header-genie-aladdin.jpg");
}
.ch-hero.vacall-website {
    background-image: url("../img/case-histories/header-vacall-website.jpg");
}
.ch-hero.genie {
    background-image: url("../img/case-histories/header-genie-ads.jpg");
}
.ch-hero.dover-chem {
    background-image: url("../img/case-histories/header-dover-chemical.jpg");
}
.ch-hero.new-phila {
    background-image: url("../img/case-histories/header-newphiladelphia-site.jpg");
}
.ch-hero.vacall-recycler {
    background-image: url("../img/case-histories/header-vacall-recycler.jpg");
}
.ch-hero.union-er {
    background-image: url("../img/case-histories/header-union-er.jpg");
}
.ch-top {
    margin-top: 40px;
}
.ch-top .copy {
    float: left;
    width: 52%;
}
.ch-top .copy h1 {
    color: #45c2b0;
    font-weight: bold;
}
.ch-top .copy p {
    padding-bottom: 20px;
}
.ch-top .img-cont {
    float: right;
    width: 45%;
}
.ch-top .img-cont img {
    float: right;
}
.ch-images {
    margin-top: 40px;
}
.ch-images .left {
    width: 50%;
    float: left;
}
.ch-images .right {
    float: right;
    width: 50%;
}
.ch-images .center {
    clear: both;
}
.ch-images .center img {
    display: block;
    margin: 0 auto;
}
.ch-images.seaman .img-3 {
    background-color: #8504db;
}
.ch-images.gradall .img-3 {
    background-color: #ee2e24;
}
.ch-images.gradall .img-4 {
    background-color: #ffb937;
}
.ch-images.union-hospital {
    background-color: #f1e6ca;
}
.ch-images.genie-ads .img-3 {
    background-color: #bcbdc1;
}
.ch-images.vacall-recycler {
    margin-top: 0;
}
.ch-images.vacall-recycler .img-3 {
    background-color: #e42626;
}
.ch-images img {
    vertical-align: top;
}
.ch-bottom {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-left: 26%;
    margin-top: 40px;
    margin-bottom: 40px;
}
.ch-bottom h1 {
    color: #582c82;
    font-weight: bold;
}
.ch-bottom .view-all {
    float: left;
    width: 30%;
    text-align: center;
    border-right: 1px solid #1e3d42;
}
.ch-bottom .view-all img {
    border-radius: 1px;
}
.ch-bottom .next-project {
    float: right;
    width: 65%;
    position: relative;
}
.ch-bottom .next-project .img-cont {
    float: left;
}
.ch-bottom .next-project .img-cont img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.ch-bottom .next-project .img-cont img:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.ch-bottom .next-project h2 {
    font-size: 22px;
    color: #1e3d42;
    width: 25%;
    text-align: left;
    float: left;
    margin-left: 10px;
    margin-top: 110px;
}
.ch-video-container {
    background-color: black;
    width: 100%;
    padding: 30px 0;
    clear: both;
}
.ch-video-container .ch-video {
    height: auto;
    width: 30%;
    margin: 0 auto;
}
.ch-video-container .ch-video .iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    text-align: center;
    display: block;
}
.ch-video-container .ch-video .iframe-container iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
footer {
    padding-top: 20px;
    text-align: center;
    clear: both;
    background-color: white;
}
footer .top .copy .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 55%;
    margin: 0 auto;
    padding: 20px 0;
}
footer .top .copy .links ul li a {
    color: #53555a;
    font-size: 20px;
    font-weight: bold;
}
footer .top .copy .links ul li a:hover {
    color: #582c82;
}
footer .top .contact {
    padding-top: 20px;
}
footer .top .contact a {
    display: block;
    color: #53555a;
}
footer .top .contact a:hover {
    color: #582c82;
}
footer .copyright p,
footer .copyright a {
    color: white;
    font-size: 16px;
}
footer .copyright a:hover {
    color: #1e3d42;
}
footer .social-icon {
    color: #45c2b0;
    margin: 0.5vw;
    font-size: 50px;
}
footer .social-icon:hover {
    color: #582c82;
}
footer .bg {
    background-image: url("../img/footer-bg.jpg");
    background-size: cover;
}
footer .bg .logo {
    padding-top: 70px;
}
@media screen and (min-width: 1800px) {
    .homepage-case-study .copy {
        margin-left: 20%;
        width: 35%;
    }
}
@media screen and (max-width: 1100px) {
    .nav .img-cont {
        width: 30%;
    }
    .nav .links li a {
        font-size: 16px;
    }
    .grid-container {
        width: 95%;
    }
    .intro-cont {
        height: 40vw;
    }
    .header-intro-copy h1 {
        font-size: 45px;
    }
    .header-intro-copy p {
        font-size: 24px;
    }
    .homepage-case-study .copy {
        width: 60%;
        margin-left: 0;
    }
    .homepage-case-study .img-cont {
        width: 40%;
    }
    .homepage-news .center-cont {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .hide-on-tablet {
        display: none;
    }
    .nav {
        background: #1e3d42;
        -webkit-transition: height 0.5s ease-in-out;
        transition: height 0.5s ease-in-out;
    }
    .nav .links .open-mobile-nav {
        display: inline-block;
        font-size: 60px;
        color: #e3e1d5;
    }
    .nav .links li {
        display: none;
        padding-bottom: 10px;
    }
    .nav .links li.mobile-open {
        display: block;
    }
    .nav.mobile-open {
        height: 100vh;
        overflow-y: scroll;
        -webkit-transition: height 0.5s ease-in-out;
        transition: height 0.5s ease-in-out;
        display: block;
    }
    .nav.mobile-open .links {
        text-align: center;
        margin-top: 20px;
    }
    .nav.mobile-open .links .cabin {
        height: 50px;
        width: 50px;
    }
    .nav.mobile-open .links .close-mobile-nav {
        color: #e3e1d5;
        font-size: 50px;
    }
    .nav.mobile-open .links li a {
        font-size: 45px;
    }
    .nav.mobile-open .img-cont {
        display: none;
    }
    .intro-cont {
        margin-top: 70px;
    }
    .header-intro-copy.homepage h1 {
        font-size: 50px;
    }
    .header-intro-copy.homepage h2 {
        font-size: 30px;
    }
    .else.homepage {
        top: 70vw;
    }
    .homepage-case-study,
    .homepage-news {
        display: block;
    }
    .homepage-case-study .copy,
    .homepage-news .copy {
        width: 100%;
    }
    .homepage-case-study .img-cont,
    .homepage-news .img-cont {
        width: 100%;
        display: block;
    }
    .homepage-case-study .img-cont .triangle,
    .homepage-news .img-cont .triangle {
        display: none;
    }
    .homepage-client-list .copy {
        width: 100%;
    }
    .homepage-intro-copy {
        width: 100%;
    }
    .hero-image-bottom .copy {
        width: 80%;
    }
    .our-work-featured-case-histories .case-history {
        width: 50%;
    }
    .our-work-featured-case-histories .case-history .overlay {
        display: none;
    }
    .our-work-examples .example-image {
        width: 45%;
        height: auto;
    }
    .our-work-examples .button-container button {
        width: 45%;
    }
    .our-work-examples .button-container button.active {
        border: 2px solid #8c8679;
    }
    .our-work-examples .button-container hr {
        display: none;
    }
    .about-who-we-are .img-cont,
    .about-who-we-are .copy {
        float: none;
        width: 100%;
    }
    .about-who-we-are .img-cont img {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .about-our-offices .img-cont,
    .about-our-offices .copy {
        float: none;
        width: 100%;
    }
    .about-our-offices .img-cont img {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .about-cabin-container {
        height: 50vw;
    }
    .people-picture {
        width: 50%;
    }
    .people-info {
        box-shadow: 0 50px 50px rgba(0, 0, 0, 0.2), 0 50px 50px rgba(0, 0, 0, 0.9);
    }
    .people-info .copy {
        width: 100%;
    }
    .people-info .copy .email-icon {
        font-size: 25px;
    }
    .people-info .copy .info-close {
        display: none;
    }
    .people-info .copy h1 {
        font-size: 45px;
    }
    .people-info .copy h3,
    .people-info .copy p,
    .people-info .copy a {
        font-size: 22px;
    }
    .people-info .copy p {
        width: 100%;
    }
    .people-info img {
        width: 100%;
        height: auto;
        vertical-align: middle;
        max-width: 100%;
    }
    .people-info.active {
        display: block;
        position: fixed;
        top: 0;
        height: auto;
    }
    .news-img,
    .news-copy {
        float: none;
        width: 100%;
    }
    .news-img img {
        max-width: 60%;
        display: block;
        margin: 0 auto 20px auto;
    }
    .news-other-news-container {
        width: 100%;
        float: none;
    }
    .services-type-container .services-list-cont {
        width: 45%;
    }
    .services-type-container .services-list-cont h1 {
        font-size: 35px;
    }
    .services-markets-container .copy .lists {
        width: 90%;
    }
    .contact-form {
        width: 50%;
    }
    .contact-info {
        width: 45%;
    }
    .ch-hero {
        margin-top: 70px;
        height: 25vw;
    }
    .ch-top .copy,
    .ch-top .img-cont {
        width: 100%;
        float: none;
    }
    .ch-video-container .ch-video {
        width: 80%;
    }
    .ch-bottom {
        width: 100%;
        margin-left: 0;
    }
    .ch-bottom .next-project,
    .ch-bottom .view-all {
        float: none;
        display: block;
        margin: 0 auto;
        width: 50%;
    }
    .ch-bottom .next-project {
        margin-top: 20px;
    }
    .ch-bottom .next-project .img-cont {
        float: none;
    }
    .ch-bottom .next-project h2 {
        position: initial;
        top: initial;
        right: initial;
        width: auto;
        text-align: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .ch-bottom .view-all {
        border-right: 0;
    }
    .ch-images .img-cont .overlay {
        display: none;
    }
}
@media only screen and (min-width: 200px) and (max-width: 800px) and (orientation: landscape) {
    .homepage-header-container {
        width: 80%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 500px) {
    p,
    li,
    a,
    h3,
    th,
    td {
        font-size: 22px;
        line-height: 1.4;
    }
    h1,
    h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .nav .img-cont {
        width: 60%;
    }
    .nav .img-cont img {
        min-width: 230px;
    }
    .else.homepage {
        top: 80vw;
    }
    .grid-container {
        width: 95%;
    }
    .homepage-header-container {
        overflow-y: auto;
    }
    .homepage-header-container img {
        -webkit-animation: none;
        animation: none;
    }
    .homepage-intro-copy p {
        width: 100%;
    }
    .homepage-client-list .lists {
        display: block;
    }
    .homepage-client-list .lists ul {
        width: 80%;
        margin: 0 auto;
        display: block;
        padding: 20px 0;
    }
    .homepage-case-study .copy {
        padding: 10px;
    }
    .homepage-news .center-cont .img-cont {
        padding: 20px;
        width: 100%;
    }
    .homepage-news .center-cont .copy {
        padding: 20px;
        width: 100%;
    }
    .intro-cont {
        height: 80vw;
        background-position: initial;
        background-size: cover;
    }
    .intro-cont.people {
        background-position: center;
    }
    .header-intro-copy {
        width: 95%;
    }
    .header-intro-copy h1 {
        font-size: 35px;
    }
    .header-intro-copy p {
        font-size: 18px;
    }
    .header-intro-copy.homepage h1 {
        font-size: 30px;
    }
    .header-intro-copy.homepage h2,
    .header-intro-copy.homepage a {
        font-size: 18px;
    }
    .our-work-featured-case-histories .case-history {
        width: 100%;
    }
    .our-work-examples .example-image {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .our-work-examples .example-image img:hover {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .hero-image-bottom .copy {
        width: 95%;
    }
    .people-picture {
        width: 100%;
        float: none;
    }
    .people-info .copy h1 {
        width: 90%;
    }
    .people-info.active {
        height: 100vh;
        overflow-y: scroll;
    }
    .news-img img {
        max-width: 100%;
    }
    .services-type-container .services-list-cont {
        width: 100%;
    }
    .services-markets-container .copy {
        width: 95%;
    }
    .services-markets-container .copy .lists {
        width: 80%;
    }
    .services-markets-container .copy .lists ul {
        float: none;
        width: 100%;
    }
    .contact-form,
    .contact-info,
    .contact-error {
        float: none;
        width: 100%;
    }
    .ch-images .left,
    .ch-images .right {
        float: none;
        width: 100%;
    }
    .ch-bottom .next-project,
    .ch-bottom .view-all {
        width: 100%;
    }
}
.ch-images .left img {
    float: right;
}
