.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
  position: static
}


.center2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    position: static
  }

video1 {
    position: relative;
    width: 100%;
    transform:translateY(-80%);
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.wrapper {
    position: relative;
    display: inline-block;
}

.blurEffect {
    -webkit-filter: blur(7px);
    -o-filter: blur(7px);
    -moz-filter: blur(7px);
    -ms-filter: blur(7px);
    filter: blur(7px);
}

.demoWrapper {
  padding: 10px;
  background: white;
  box-sizing: border-box;
  resize: horizontal;
  border: 1px dashed;
  overflow: auto;
  max-width: 100%;
  height: calc(100vh - 16px);
}

.content {
    position: absolute;
    display: inline-block;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    color: #FFF;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.popup .popuptext {
visibility: hidden;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
.popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:1 ;}
}

.play {
    font-size: 50px;

    border:2px solid white;
    border-radius:50%;
    background:rgba(0,0,0,0);
    color:white;
    height: 100px;
    width: 100px;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    text-align:center;
    line-height:100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

}

.play:hover {
    color: red;
}

#video_box{
    float:left;
}
#video_overlays {
position:absolute;
float:left;
    width:640px;
    min-height:370px;
    background-color:#000;
    z-index:300000;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.positon{
  div.absolute {
  position: absolute;
  top: 80px;
  right: 0;
  width: 200px;
  height: 100px;
  border: 3px solid #73AD21;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
h1 {
    font-size: 2em;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: 700;
}
dfn {
    font-style: italic;
}
mark {
    background: #ff0;
    color: #000;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}
q {
    quotes: \201c \201d \2018 \2019;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button,
input {
    line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
body,
figure {
    margin: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner,
legend {
    border: 0;
    padding: 0;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
html {
    background-color: #1c1c1c;
    color: #fff;
}
html:not(.single-work) {
    background-color: #fff;
}
body {
    margin: 0;
    padding: 0;
}
#main {
    clear: both;
}
.container {
    max-width: 1150px;
    width: 90%;
    margin: 0 auto;
}
.container-wide {
    max-width: 100vw;
    margin: 0 auto;
}
@media (min-width: 1600px) {
    .container-wide {
        max-width: 1800px;
    }
}
.innerContainer {
    max-width: 670px;
    margin: 0 auto;
    width: 90%;
}
.entry-content {
    padding: 2em 0 2em 0;
}
.contentModule {
    padding: 3em 0 3em 0;
}
@media (min-width: 1030px) {
    .contentModule {
        padding: 4em 0 4em 0;
    }
}
.contentModule:nth-of-type(even) {
    border-top: 1px solid #d8d8d8;
}
#colophon {
    clear: both;
    overflow: hidden;
}
html {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
}
#main {
    flex: 1;
    min-height: 80vh;
}
#colophon {
    align-self: flex-end;
    position: relative;
    bottom: 0;
}
.page-template-template-guide .contentModule {
    padding: 0 0 3em 0;
}
.page-template-template-guide .contentModule:nth-of-type(even) {
    border-top: none;
}
.mvfxSiteGuide img {
    margin: 0 auto;
    display: block;
}
@media (min-width: 650px) {
    .mvfxSiteGuide--Row {
        display: flex;
        justify-content: space-between;
    }
    .mvfxSiteGuide--Content {
        padding: 0 2em 0 0;
    }
}
.mvfxSiteGuide--Image {
    max-width: 300px;
    align-self: flex-end;
}
.alignfull,
.mavFull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}
.aligncenter {
    display: block;
    margin: 0 auto;
}
.textcenter {
    text-align: center;
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
img.alignleft {
    margin-right: 1em;
    margin-bottom: 1.8em;
}
img.alignright {
    margin-left: 1em;
    margin-bottom: 1.8em;
}
.text-right {
    text-align: right;
}
.hentry {
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.page .hentry {
    border-bottom: none;
}
.entry-content table {
    border-bottom: 1px solid #444;
    margin: 0 0 1.5em;
    width: 100%;
}
.entry-content table td {
    border-top: 1px solid #444;
    padding: 6px 10px 6px 0;
}
.comment-content table {
    border-bottom: 1px solid #444;
    margin: 0 0 1.5em;
    width: 100%;
}
.comment-content table td {
    border-top: 1px solid #444;
    padding: 6px 10px 6px 0;
}
dl.gallery-item {
    margin: 0;
}
embed iframe,
object {
    max-width: 100%;
}
img {
    max-width: 100%;
}
img[class*="align"],
img[class*="attachment-"],
img[class*="wp-image-"] {
    height: auto;
}
img.size-full,
img.size-large {
    width: auto;
    height: auto;
}
img.aligncenter,
img.alignleft,
img.alignright {
    margin-bottom: 1.5em;
}
.wp-caption {
    max-width: 100%;
    height: auto;
}
.wp-caption img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.wp-caption .wp-caption-text {
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 0.5em;
    padding: 5px 0;
    font-style: italic;
}
.gallery-caption {
    color: LINKCOLOR;
    font-size: 10px;
}
#content .gallery {
    margin: 0 auto 1.5em;
}
#content .gallery a img {
    border: none;
}
#content .gallery-columns-4 .gallery-item {
    width: 23%;
    padding-right: 2%;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
body,
input,
textarea {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 26px;
    line-height: 1.625rem;
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #1c1c1c;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 800px) {
    body,
    input,
    textarea {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 28px;
        line-height: 1.75rem;
    }
}
.single-work {
    color: #fff;
}
p {
    margin-bottom: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: kepler-std, Georgia, serif;
    font-style: normal;
    font-weight: 400;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    margin: 0;
    clear: both;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #d07839;
}
h1 {
    font-style: italic;
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 43px;
    line-height: 2.6875rem;
}
.body--noHero h1::after,
.hero-header h1::after {
    content: "";
    background: #d8d8d8;
    height: 1px;
    width: 100px;
    display: block;
}
.hero-header h1::after {
    margin: 0.25em auto;
}
.body--noHero h1::after,
h2::after {
    margin: 0.5em 0;
}
.subtitle,
h1.subtitle,
h2.subtitle {
    border-bottom: none;
    display: block;
    padding: 0;
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 20px;
    line-height: 1.25rem;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 3px;
    color: #9d9d9d;
    text-align: left;
}
.subtitle::after,
h1.subtitle::after,
h2.subtitle::after {
    display: none;
}
h2 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.25;
}
h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 35px;
    line-height: 2.1875rem;
}
h4 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
    line-height: 1.875rem;
}
h4 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
    line-height: 1.75rem;
}
h5 {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 29px;
    line-height: 1.8125rem;
}
h6 {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 29px;
    line-height: 1.8125rem;
}
@media all and (min-width: 1000px) {
    h1 {
        font-size: 56px;
        font-size: 3.5rem;
        line-height: 80px;
        line-height: 5rem;
    }
    .body--noHero h1,
    .hero-header h1 {
        border-bottom: 1px solid #d8d8d8;
        display: inline;
        padding: 0 0 0.25em 0;
    }
    .body--noHero h1::after,
    .hero-header h1::after {
        content: none;
    }
    h2 {
        font-size: 36px;
        font-size: 2.25rem;
    }
    h3 {
        font-size: 31px;
        font-size: 1.9375rem;
        line-height: 40px;
        line-height: 2.5rem;
    }
    h4 {
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 40px;
        line-height: 2.5rem;
    }
    h4 {
        font-size: 25px;
        font-size: 1.5625rem;
        line-height: 35px;
        line-height: 2.1875rem;
    }
    h5 {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 32px;
        line-height: 2rem;
    }
    h6 {
        font-size: 19px;
        font-size: 1.1875rem;
        line-height: 29px;
        line-height: 1.8125rem;
    }
}
ol,
ul {
    margin: 1em 0 2em 0;
}
ul {
    list-style: disc;
}
ul ul {
    list-style: circle;
    margin: 0.5em 0 0.2em 0;
}
ol {
    list-style-type: decimal;
}
ol ol {
    list-style: upper-alpha;
    margin: 0.5em 0 0.2em 0;
}
ol ol ol {
    list-style: lower-roman;
}
ol ol ol {
    list-style: lower-alpha;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dl {
    margin: 0 1.5em;
}
dd {
    margin-bottom: 1.5em;
}
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
.wp-block-separator {
    border-bottom: 1px solid #ccc;
    margin: 0 auto;
}
strong {
    font-weight: 600;
}
em,
i {
    font-style: italic;
}
.wp-block-quote,
blockquote {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 40px;
    line-height: 2.5rem;
    font-style: normal;
    margin: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    border-left: none;
    padding-left: 0;
}
cite {
    color: #666;
    letter-spacing: 0.05em;
    padding-left: 60px;
}
pre {
    background: #f4f4f4;
    line-height: 1.5;
    margin-bottom: 1.5em;
    overflow: auto;
    padding: 0.75em 1.5em;
}
code,
kbd {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym,
dfn {
    border-bottom: 1px solid #444;
    cursor: help;
}
address {
    display: block;
    margin: 0 0 1.5em;
}
ins {
    background: #fff9c0;
    text-decoration: none;
}
sub,
sup {
    font-size: 10px;
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}
sup {
    bottom: 1ex;
}
sub {
    top: 0.5ex;
}
a {
    color: #d07839;
    text-decoration: none;
    word-wrap: break-word;
}
a:active,
a:focus,
a:hover {
    color: #364457;
}
.single-work a:active,
.single-work a:focus,
.single-work a:hover {
    color: #fff;
}
button,
input[type="submit"] {
    background-color: #d07839;
    border: none;
    color: #fff;
    padding: 0.3em 0.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 26px;
    line-height: 1.625rem;
}
input[type="text"] {
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.25em 1em;
}
@media all and (min-width: 650px) {
    input[type="text"] {
        width: 50%;
    }
}
.post-password-form {
    text-align: center;
    padding: 3% 0;
}
.post-password-form p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
}
.siteMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-size: 1rem;
}
.siteMenu a {
    color: #d8d8d8;
}
.siteMenu a:focus,
.siteMenu a:hover {
    color: #d07839;
}
.current-menu-item a {
    color: #d07839;
}
.site-header {
    z-index: 5;
    position: relative;
    height: 100px;
    padding: 0.5em 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.header--noHeroImage,
.siteHeader__Mobile--Active {
    background-color: #1c1c1c;
}
.header--noHeroImage {
    margin: 0 0 0 0;
}
.sticky-wrapper.is-sticky .site-header:not(.siteHeader__Mobile--Active) {
    background-color: #1c1c1c;
    animation-name: fadeIn;
    transition: 1s;
}
.site-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.siteNavigation--Title {
    width: 20%;
    flex: 3;
    padding: 0.5em 0 0 0;
}
.siteNavigation--Main {
    width: 80%;
    margin-left: 1em;
}
@media (min-width: 1150px) {
    .siteNavigation--Main {
        width: 70%;
    }
}
.mobileMenu--Toggle {
    display: block;
    background: url(assets/images/menu.svg) no-repeat top center;
    width: 50px;
    height: 30px;
    border: 0;
    margin: 1em 0 0 0;
}
@media (min-width: 1030px) {
    .mobileMenu--Toggle {
        display: none;
    }
}
@media (max-width: 1029px) {
    .siteNavigation--Main {
        display: none;
    }
}
.siteNavigation--Mobile {
    background-color: #1c1c1c;
    position: relative;
    z-index: 1;
}
@media (min-width: 1030px) {
    .siteNavigation--Mobile {
        display: none;
    }
}
.siteMenu--Mobile {
    animation-name: fadeIn;
}
.siteMenu--Mobile:not(.siteMenu--Mobile__Open) {
    display: none;
}
.siteMenu--Mobile__Open {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 1em 2em;
}
.siteMenu--Mobile__Open a {
    color: #fff;
    position: relative;
    padding: 0.75em 1.5em;
    display: block;
}
.siteMenu--Mobile__Open li:not(:last-of-type) a {
    border-bottom: 1px solid #364457;
}
.siteFooter {
    background-color: #1c1c1c;
    text-transform: uppercase;
    letter-spacing: 1.25px;
    font-size: 12px;
    font-size: 0.75rem;
    color: #d8d8d8;
    padding: 2em 0 2em 0;
}
.siteFooter a {
    color: #d8d8d8;
}
.siteFooter a:focus,
.siteFooter a:hover {
    color: #d07839;
}
.siteFooter--Content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 2;
    text-align: center;
}
.siteFooter--Content p {
    margin: 0;
}
.siteFooter--Content span {
    display: block;
}
.siteFooter--Content__Contact,
.siteFooter--Content__Credit {
    padding: 0.25em 0 0.25em 0;
}
.siteFooter--Content__Contact a {
    display: block;
}
.siteFooter--Content__Contact a::before {
    color: #d07839;
    padding: 0 1em 0 0;
}
@media (min-width: 800px) {
    .siteFooter--Content {
        text-align: left;
        flex-direction: row;
    }
    .siteFooter--Content span {
        display: inline;
    }
    .siteFooter--Content__Contact {
        max-width: 30%;
    }
    .siteFooter--Content__Contact,
    .siteFooter--Content__Credit {
        max-width: 60%;
    }
    .siteFooter--Content__Credit {
        text-align: right;
        align-self: flex-end;
    }
    .siteFooter--Content__Credit span:first-of-type:after {
        content: " | ";
    }
}
.social-icon {
    max-width: 30px;
    margin: 0 8px;
    transition-duration: 0.75s;
    animation-fill-mode: both;
}
.social-icon:focus,
.social-icon:hover {
    opacity: 0.5;
}
.mavContact__Phone::before {
    content: "T";
}
.mavContact__Email::before {
    content: "E";
}
.pagination {
    border-color: #686868;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 2em 0 2em 0;
    margin: 0 auto 1em auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: kepler-std, Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.3;
}
@media (min-width: 1030px) {
    .pagination {
        font-size: 30px;
        font-size: 1.875rem;
    }
}
.paginationItem {
    text-align: center;
}
.paginationItem a {
    color: #1c1c1c;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.paginationItem a:focus,
.paginationItem a:hover {
    color: #d07839;
}
.paginationItem a:after {
    content: "";
    background-size: contain;
    width: 120px;
    min-height: 30px;
    display: block;
    margin: 0.75em auto;
}
.paginationItem--previous a::after {
    content: "";
    background: url(assets/images/previous-dark.svg) no-repeat;
}
@media (min-width: 800px) {
    .paginationItem--previous {
        padding-right: 2em;
    }
}
.paginationItem--next a::after {
    content: "";
    background: url(assets/images/next-dark.svg) no-repeat;
}
@media (min-width: 800px) {
    .paginationItem--next {
        padding-left: 2em;
    }
}
@media (min-width: 650px) {
    .pagination {
        flex-direction: row;
    }
    .paginationItem {
        width: 50%;
    }
    .paginationItem:first-of-type {
        border-right: 1px solid #686868;
        padding-right: 20px;
    }
    .paginationItem a::after {
        margin: 1em 0 0 0;
    }
    .paginationItem--previous {
        text-align: left;
    }
    .paginationItem--previous a::after {
        align-self: flex-start;
    }
    .paginationItem--next {
        text-align: right;
        padding-left: 20px;
    }
    .paginationItem--next a::after {
        align-self: flex-end;
    }
}
.pagination--Work .paginationItem a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.pagination--Work .paginationItem a:focus,
.pagination--Work .paginationItem a:hover {
    color: #d07839;
}
.pagination--Work .paginationItem--previous a::after {
    content: "";
    background: url(assets/images/previous.svg) no-repeat;
}
.pagination--Work .paginationItem--next a::after {
    content: "";
    background: url(assets/images/next.svg) no-repeat;
}
@media (max-width: 649px) {
    .lightbox {
        display: none !important;
    }
}
a[rel="lightbox"]:focus img,
a[rel="lightbox"]:hover img {
    opacity: 0.7;
    transition: 0.5s;
}
@media (min-width: 650px) {
    .lightbox {
        display: block;
        cursor: pointer;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkYGDYDMRkA8ZRAxhGw4BhNAyA+WAYpAMAIFgLQfO9BoEAAAAASUVORK5CYII=);
        background: rgba(41, 47, 55, 0.6);
        -webkit-filter: none !important;
        z-index: 9997;
        transition: 2s;
    }
    .lightbox img {
        display: block;
        position: absolute;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        border-radius: 1px;
        max-width: 80%;
        height: auto;
    }
    body.blurred > * {
        -webkit-filter: blur(2px);
        -webkit-transform: translate3d(0, 0, 0);
    }
    .lightbox__caption {
        display: none;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        z-index: 9998;
        background: #000;
        background: rgba(0, 0, 0, 0.7);
    }
    .lightbox__caption p {
        margin: 0 auto;
        max-width: 70%;
        display: inline-block;
        padding: 10px;
        color: #fff;
        font-size: 12px;
        line-height: 18px;
    }
    .lightbox__button {
        position: absolute;
        z-index: 9999;
        background: no-repeat center center;
        background-size: contain;
        width: 50px;
        height: 50px;
        opacity: 0.4;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }
    .lightbox__button:focus,
    .lightbox__button:hover {
        opacity: 1;
    }
    .lightbox__close {
        right: 5%;
        top: 2%;
        background-image: url(assets/images/close.svg);
        width: 40px;
        height: 40px;
    }
    .lightbox__nav {
        top: 50%;
        margin-top: -16px;
    }
    .lightbox__nav--next {
        right: 5%;
        background-image: url(assets/images/arrow-next.svg);
    }
    .lightbox__nav--prev {
        left: 5%;
        background-image: url(assets/images/arrow-previous.svg);
    }
}
@media (min-width: 1450px) {
    .lightbox__nav--next {
        right: 10%;
    }
    .lightbox__nav--prev {
        left: 10%;
    }
}
body.fancybox-active {
    overflow: hidden;
}
body.fancybox-iosfix {
    position: fixed;
    left: 0;
    right: 0;
}
.fancybox-is-hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
}
.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.fancybox-outer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.fancybox-bg {
    background: #1c1c1c;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.98;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption-wrap,
.fancybox-infobar,
.fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0s linear 0.25s;
    box-sizing: border-box;
}
.fancybox-show-caption .fancybox-caption-wrap,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s, visibility 0s;
}
.fancybox-infobar {
    top: 0;
    left: 0;
    font-size: 13px;
    padding: 0 10px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    color: #ccc;
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: exclusion;
}
.fancybox-toolbar {
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
}
.fancybox-stage {
    overflow: hidden;
    direction: ltr;
    z-index: 99994;
    -webkit-transform: translateZ(0);
}
.fancybox-is-closing .fancybox-stage {
    overflow: visible;
}
.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: 0;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}
.fancybox-slide:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block;
}
.fancybox-slide--image {
    overflow: visible;
}
.fancybox-slide--image:before {
    display: none;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
    background: 0 0;
}
.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
    background: #e5e3df;
}
.fancybox-slide--next {
    z-index: 99995;
}
.fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box;
}
.fancybox-slide > base,
.fancybox-slide > link,
.fancybox-slide > meta,
.fancybox-slide > script,
.fancybox-slide > style,
.fancybox-slide > title {
    display: none;
}
.fancybox-slide .fancybox-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: 0 0;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}
.fancybox-can-zoomOut .fancybox-image-wrap {
    cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-image-wrap {
    cursor: zoom-in;
}
.fancybox-can-drag .fancybox-image-wrap {
    cursor: -webkit-grab;
    cursor: grab;
}
.fancybox-is-dragging .fancybox-image-wrap {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.fancybox-image,
.fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fancybox-spaceball {
    z-index: 1;
}
.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 80%;
    height: 80%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: 0 0;
}
.fancybox-iframe {
    display: block;
    padding: 0;
    border: 0;
    height: 100%;
}
.fancybox-error,
.fancybox-iframe {
    margin: 0;
    width: 100%;
    background: #fff;
}
.fancybox-error {
    padding: 40px;
    max-width: 380px;
    cursor: default;
}
.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 16px;
    line-height: 20px;
}
.fancybox-button {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, 0.6);
    transition: color 0.3s ease;
    cursor: pointer;
    outline: 0;
    background-color: transparent;
}
.fancybox-button:focus,
.fancybox-button:hover {
    background-color: transparent;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc;
}
.fancybox-button:focus,
.fancybox-button:hover {
    color: #fff;
}
.fancybox-button[disabled] {
    color: #ccc;
    cursor: default;
    opacity: 0.6;
}
.fancybox-button svg {
    display: block;
    position: relative;
    overflow: visible;
    shape-rendering: geometricPrecision;
}
.fancybox-button svg path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3;
}
.fancybox-button--share svg path {
    stroke-width: 1;
}
.fancybox-button--pause svg path:nth-child(1),
.fancybox-button--play svg path:nth-child(2) {
    display: none;
}
.fancybox-button--zoom svg path {
    fill: transparent;
}
.fancybox-navigation {
    display: none;
}
.fancybox-show-nav .fancybox-navigation {
    display: block;
}
.fancybox-navigation button {
    position: absolute;
    top: 50%;
    margin: -50px 0 0;
    z-index: 99997;
    background: 0 0;
    width: 60px;
    height: 100px;
    padding: 17px;
}
.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, 0.6);
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
}
.fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
}
.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: 0 0;
    z-index: 10;
    cursor: pointer;
}
.fancybox-close-small:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 20px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background-color: transparent;
    transition: background-color 0.25s;
    box-sizing: border-box;
    z-index: 2;
}
.fancybox-close-small:focus {
    outline: 0;
}
.fancybox-close-small:focus:after {
    outline: 1px dotted #888;
}
.fancybox-close-small:hover:after {
    color: #555;
    background: #eee;
}
.fancybox-slide--iframe .fancybox-close-small,
.fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: -44px;
}
.fancybox-slide--iframe .fancybox-close-small:after,
.fancybox-slide--image .fancybox-close-small:after {
    font-size: 35px;
    color: #aaa;
}
.fancybox-slide--iframe .fancybox-close-small:hover:after,
.fancybox-slide--image .fancybox-close-small:hover:after {
    color: #fff;
    background: 0 0;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
    display: none;
}
.fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}
.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none;
}
.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
    pointer-events: all;
    position: relative;
}
.fancybox-caption a {
    color: #fff;
    text-decoration: underline;
}
.fancybox-slide > .fancybox-loading {
    border: 6px solid rgba(99, 99, 99, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a 0.8s infinite linear;
    animation: a 0.8s infinite linear;
    background: 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999;
}
@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes a {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-slide.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-slide.fancybox-slide--current {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0;
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
}
.fancybox-fx-rotate.fancybox-slide--previous {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
    opacity: 0;
}
.fancybox-fx-rotate.fancybox-slide--next {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 0;
}
.fancybox-fx-rotate.fancybox-slide--current {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
}
.fancybox-fx-circular.fancybox-slide--previous {
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-circular.fancybox-slide--next {
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-circular.fancybox-slide--current {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    opacity: 1;
}
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}
.fancybox-share {
    padding: 30px;
    border-radius: 3px;
    background: #f4f4f4;
    max-width: 90%;
}
.fancybox-share h1 {
    color: #222;
    margin: 0 0 20px;
    font-size: 33px;
    font-weight: 700;
    text-align: center;
}
.fancybox-share p {
    margin: 0;
    padding: 0;
    text-align: center;
}
.fancybox-share p:first-of-type {
    margin-right: -10px;
}
.fancybox-share_button {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px 10px 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
    background: #fff;
    white-space: nowrap;
    font-size: 16px;
    line-height: 23px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 140px;
    color: #707070;
    transition: all 0.2s;
}
.fancybox-share_button:focus,
.fancybox-share_button:hover {
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.fancybox-share_button svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
}
.fancybox-share input {
    box-sizing: border-box;
    width: 100%;
    margin: 5px 0 0;
    padding: 10px 15px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    background: #ebebeb;
    color: #5d5b5b;
    font-size: 14px;
    outline: 0;
}
.fancybox-thumbs {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 212px;
    margin: 0;
    padding: 2px 2px 4px;
    background: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
}
.fancybox-thumbs-x {
    overflow-y: hidden;
    overflow-x: auto;
}
.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}
.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}
.fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
    white-space: nowrap;
}
.fancybox-thumbs-x > ul {
    overflow: hidden;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar {
    width: 7px;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}
.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 2px;
    width: 100px;
    height: 75px;
    max-width: calc(50% - 4px);
    max-height: calc(100% - 8px);
    position: relative;
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
}
li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
}
.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
}
@media (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px);
    }
}
[class*="slick"] {
    overflow: hidden;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    -khtml-user-select: none;
    touch-action: pan-y;
}
.slick-list {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:after,
.slick-track:before {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 300px;
    height: 300px;
    padding: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;
    z-index: 100;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0;
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1;
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: 0.25;
}
.slick-next:after,
.slick-prev:before {
    display: block;
    content: "";
    background-size: contain;
    height: 45px;
}
.slick-prev {
    left: 2%;
}
.slick-next {
    right: 2%;
}
.slick-next:after,
.slick-prev:before {
    background-image: url(assets/images/arrow-work-previous.svg);
    background-repeat: no-repeat;
    height: 45px;
    background-size: contain;
}
.slick-next:after {
    transform: rotate(180deg);
}
@media (min-width: 1030px) {
    .slick-prev {
        left: 5%;
    }
    .slick-next {
        right: 5%;
    }
}
.hero-header {
    margin-top: -90px;
}
.hero {
    transition-duration: 0.75s;
    animation-fill-mode: both;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: #292f37;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero:not(.hero--home) {
    width:100%;
    position: relative;
}
.hero h1,
.hero p {
    z-index: 10;
}
.hero:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(0, 0, 0, 0.2)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
}
.hero--home::after {
    background: rgba(0, 0, 0, 0.75);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.75)), color-stop(100%, rgba(0, 0, 0, 0.4)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.4) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.4) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.4) 100%);
}
.hero--headline {
    z-index: 3;
    color: #fff;
    animation-name: fadeIn;
}
.hero--headline__title {
    padding: 18% 0 15% 0;
}
.hero--headline__intro {
    padding: 20% 10% 15% 10%;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 43px;
    line-height: 2.6875rem;
}
@media (min-width: 1030px) {
    .hero--headline__intro {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 50px;
        line-height: 3.125rem;
    }
}
.hero--hasImage__pageTitle {
    margin: 3em auto 0 auto;
}
@media (min-width: 650px) {
    .hero:not(.hero--home) {
        min-height: 500px;
        max-height: 800px;
    }
}
.hero--home {
    margin-top: -90px;
    height: 100vh;
    background-color: #1c1c1c;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 1.7px;
    text-align: center;
}
.hero--home__logo {
    max-width: 90%;
    padding: 5% 0 5% 0;
}
.hero--home img,
.hero--home__video {
    z-index: 3;
}
.hero--home__video a {
    color: #fff;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 1.5em 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero--home__video a::before {
    transition-duration: 0.75s;
    animation-fill-mode: both;
    content: "";
    display: block;
    position: relative;
    margin: 0 auto;
    top: -10px;
    background: url(assets/images/play.svg) no-repeat;
    background-size: contain;
    height: 64px;
    width: 64px;
}
.hero--home__video a:focus::before,
.hero--home__video a:hover::before {
    animation-name: pulse;
    background: url(assets/images/play-blue.svg) no-repeat;
    height: 64px;
    width: 64px;
    background-size: contain;
}
@media (min-width: 650px) {
    .hero--home__video a {
        padding: 1em 0 0 0;
        font-size: 16px;
        font-size: 1rem;
    }
    .hero--home__video a::before {
        height: 64px;
        width: 64px;
    }
}

.hero--home__videoIcon {
    display: block;
    margin: 10px auto;
    height: 64px;
    width: 64px;
}

.hero--home__videoTrigger {
    color: #fff;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 1.5em 0 0 0;
    z-index: 2;
}

@media (min-width: 650px) {
    .hero--home__videoTrigger {
        padding: 1em 0 0 0;
        font-size: 16px;
        font-size: 1rem;
    }
}
.hero--home__videoTrigger:focus,
.hero--home__videoTrigger:hover {
    color: #fff;
}
.hero--home__videoTrigger:focus .hero--home__videoIcon,
.hero--home__videoTrigger:hover .hero--home__videoIcon {
    transition-duration: 0.75s;
    animation-fill-mode: both;
    animation-name: pulse;
}
.hero--home__videoTrigger:focus .hero--home__videoIcon path,
.hero--home__videoTrigger:hover .hero--home__videoIcon path {
    transition: 1s;
    fill: #d07839;
}
.hero--home__videoTrigger:focus .hero--home__videoIcon circle,
.hero--home__videoTrigger:hover .hero--home__videoIcon circle {
    transition: 1s;
    stroke: #d07839;
}
.wistia_popover_mode .hero--home,
.wistia_popover_mode .site-header,
.wistia_popover_mode .siteFooter {
    background: #1c1c1c !important;
    color: #1c1c1c;
    transition: none;
}
.wistia_popover_mode .hero--home a,
.wistia_popover_mode .hero--home img,
.wistia_popover_mode .site-header a,
.wistia_popover_mode .site-header img,
.wistia_popover_mode .siteFooter a,
.wistia_popover_mode .siteFooter img {
    display: none;
}
[class*="photoGrid--Module"] img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0 0 0.5em 0;
}
@media (min-width: 650px) {
    [class*="photoGrid--Module"] {
        padding: 0 0 0.5em 0;
    }
    [class*="photoGrid--Module"] img {
        padding: 0 0 0.75em 0;
    }
}
@media (min-width: 650px) {
    .photoGrid--Module {
        columns: 2;
        column-gap: 1em;
    }
}
.services--Wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
@media (min-width: 650px) {
    .services--Wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}
.service {
    background-color: #f4f4f4;
    padding: 1.25em 1em;
    text-align: center;
    margin: 0 0 1.75em 0;
    width: 100%;
}
.service--title {
    font-style: normal;
    font-size: 29px;
    font-size: 1.8125rem;
}
.service--title::after {
    content: "";
    display: block;
    background: #1c1c1c;
    height: 1px;
    width: 70px;
    margin: 1.3em auto;
}
.service--details {
    padding: 0;
    margin: 0;
}
@media (min-width: 650px) {
    .service {
        width: 48%;
    }
}
@media (min-width: 800px) {
    .service {
        width: 31.5%;
    }
}
@media (min-width: 1030px) {
    .service {
        padding: 1.75em 1.5em;
    }
}
.mavericksTeam {
    margin: 4em 0 -2em 0;
    padding: 2em 0 0 0;
}
@media (min-width: 800px) {
    .mavericksTeam {
        background-color: #f1f4f9;
    }
}
.mavericksTeamMember {
    position: relative;
    background-color: #f1f4f9;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 275px;
    padding: 1em 2em 0 2em;
    margin: 0 auto 3em auto;
    font-size: 16px;
    font-size: 1rem;
    line-height: 26px;
    line-height: 1.625rem;
}
@media (min-width: 800px) {
    .mavericksTeamMember {
        padding: 1em 3em 0 3em;
    }
}
.mavericksTeamMember--Image {
    align-self: flex-end;
    margin: 0.75em auto 0 auto;
}
.mavericksTeamMember--JobTitle,
.mavericksTeamMember--Name {
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
}
.mavericksTeamMember--Name {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.9;
    padding: 0 0 0.2em 0;
}
@media (min-width: 800px) {
    .mavericksTeamMember--Name {
        font-size: 60px;
        font-size: 3.75rem;
    }
}
@media (min-width: 1450px) {
    .mavericksTeamMember--Name {
        font-size: 65px;
        font-size: 4.0625rem;
    }
}
.mavericksTeamMember--JobTitle {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1;
    border-bottom: 1px solid #d8d8d8;
    color: #d07839;
    display: inline-block;
    align-self: flex-start;
    padding: 0 0 0.5em 0;
}
@media (min-width: 800px) {
    .mavericksTeamMember--JobTitle {
        font-size: 30px;
        font-size: 1.875rem;
    }
}
.mavericksTeamMember--Intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    height: 100%;
    padding: 8% 0 12% 0;
}
@media (min-width: 800px) {
    .mavericksTeamMember--Intro {
        padding: 0 8% 0 5%;
    }
}
@media (min-width: 1450px) {
    .mavericksTeamMember--Intro {
        padding: 0 10%;
    }
}
.mavericksTeamMember--Bio {
    padding: 2em 0 1em 0;
}
@media (min-width: 321px) {
    .mavericksTeamMember {
        max-width: 330px;
    }
}
@media (min-width: 450px) {
    .mavericksTeamMember {
        max-width: 425px;
    }
}
@media (min-width: 650px) {
    .mavericksTeamMember {
        max-width: 600px;
    }
    .mavericksTeamMember--Image {
        max-width: 400px;
    }
}
@media (min-width: 800px) {
    .mavericksTeamMember {
        max-width: 900px;
        margin: 0;
    }
    .mavericksTeamMember:not(.has-post-thumbnail) .mavericksTeamMember--Content {
        max-width: 95%;
    }
    .mavericksTeamMember--Content {
        float: left;
        width: 58%;
        height: 575px;
        position: relative;
        z-index: 2;
        padding: 0 1.75em 1em 0;
    }
    .mavericksTeamMember--Image {
        order: 1;
        position: absolute;
        bottom: 0;
        right: 1em;
        z-index: 1;
        margin: 0;
        max-width: 46%;
    }
}
@media (min-width: 1030px) {
    .mavericksTeamMember {
        max-width: 1100px;
        width: 85%;
        padding: 1em;
        margin: 0;
    }
    .mavericksTeamMember:not(.has-post-thumbnail) .mavericksTeamMember--Content {
        max-width: 95%;
        padding: 1em;
    }
    .mavericksTeamMember--Content {
        float: left;
        max-width: 50%;
        height: 500px;
        position: relative;
        z-index: 2;
        padding: 2em 0 3em 1em;
    }
    .mavericksTeamMember--Image {
        order: 1;
        position: absolute;
        bottom: 0;
        right: 2.5em;
        z-index: 1;
        margin: 0;
        max-width: 100%;
        height: 430px;
    }
}
@media (min-width: 1350px) {
    .mavericksTeamMember {
        max-width: 1200px;
        padding: 0 3em 0 3em;
    }
    .mavericksTeamMember--Content {
        max-width: 50%;
    }
}
@media (min-width: 1450px) {
    .mavericksTeamMember {
        max-width: 1400px;
        padding: 0 5em 0 5em;
    }
    .mavericksTeamMember--Content {
        max-width: 60%;
    }
}
@media (min-width: 1600px) {
    .mavericksTeamMember {
        max-width: 1500px;
        padding: 0 5em 0 5em;
        margin: auto;
    }
    .mavericksTeamMember--Content {
        max-width: 55%;
    }
    .mavericksTeamMember--Image {
        max-width: 48%;
        height: 500px;
    }
}
@media all and (max-width: 800px) {
    .mavericksTeam .slick-slide.slick-cloned {
        display: none;
    }
    .mavericksTeam .slick-arrow {
        display: none !important;
    }
    .mavericksTeam .slick-track {
        width: 100% !important;
        transform: none;
    }
}
.mavericksTeam .slick-next:after,
.mavericksTeam .slick-prev:before {
    display: block;
    content: "";
    background-size: contain;
    height: 82px;
}
.mavericksTeam .slick-prev {
    left: 2%;
}
.mavericksTeam .slick-prev:before {
    background: url(assets/images/arrow-previous.svg) no-repeat;
}
.mavericksTeam .slick-next:after {
    background: url(assets/images/arrow-previous.svg) no-repeat;
    transform: rotate(180deg);
}
.mavericksTeam .slick-next {
    right: -25%;
}
@media (min-width: 1030px) {
    .mavericksTeam .slick-prev {
        left: 3%;
    }
    .mavericksTeam .slick-next {
        right: 5%;
    }
}
@media (min-width: 1450px) {
    .mavericksTeam .slick-prev {
        left: 5%;
    }
    .mavericksTeam .slick-next {
        right: 10%;
    }
}
.mavWorks {
    margin: 4em 0;
}
.mavWorks__content {
    display: flex;
    flex-wrap: wrap;
}
.mavWorks--Overlay {
    transition-duration: 0.75s;
    animation-fill-mode: both;
    animation-name: pulse;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.2);
    position: absolute;
    top: 0;
}
.mavWorks--Title {
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    align-self: center;
    z-index: 10;
    top: 42%;
    left: 10%;
    right: 10%;
    position: absolute;
    text-align: center;
    z-index: 10;
}
.mavWorks img,
.mavWorks--Item {
    display: block;
    align-self: flex-start;
}
.mavWorks--Item {
    position: relative;
}
.mavWorks--Item:focus .mavWorks--Overlay,
.mavWorks--Item:hover .mavWorks--Overlay {
    animation-name: pulse;
    background-color: rgba(28, 28, 28, 0.87);
}
.mavWorks--Item:focus .mavWorks--Title,
.mavWorks--Item:hover .mavWorks--Title {
    animation-name: pulse;
}
@media (min-width: 450px) {
    .mavWorks--Item {
        width: 50%;
    }
}
@media (min-width: 800px) {
    .mavWorks--Item {
        width: 33.3333%;
    }
}
@media (min-width: 1030px) {
    .mavWorks--Item {
        z-index: 1;
    }
    .mavWorks--Overlay {
        background-color: rgba(28, 28, 28, 0.4);
    }
}
@media (min-width: 1600px) {
    .mavWorks--Item {
        width: 25%;
    }
    .mavWorks--Film,
    .mavWorks--ProductionStills {
        max-width: 1600px;
        margin: 0 auto;
    }
}
.mavFeaturedWork .slick-arrow {
    width: 50px;
    height: 50px;
}
.mavFeaturedWork__items {
    margin: 30px auto;
    padding: 0;
}
@media (min-width: 1030px) {
    .mavFeaturedWork__items {
        margin: 0 auto;
    }
}
.mavFeaturedWork__item {
    padding: 0;
    margin: 0;
}
@media (min-width: 1030px) {
    .mavFeaturedWork__item {
        margin: 0 15px 0 15px;
    }
}
.mavFeaturedWork__headline {
    text-align: center;
    font-style: normal;
    display: block;
    border-bottom: none;
    margin-bottom: 30px;
}
.mavFeaturedWork__headline::after {
    display: none;
}
@media (min-width: 1030px) {
    .mavFeaturedWork__headline {
        font-size: 36px;
        font-size: 2.25rem;
        line-height: 40px;
        line-height: 2.5rem;
    }
}
.mavFeaturedWork .mavWorks--Item {
    width: 100%;
}
.mavFeaturedWork .mavWorks--Image {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    width: 100%;
}
@media (min-width: 800px) {
    .mavFeaturedWork .mavWorks--Image {
        height: 240px;
    }
}
@media (min-width: 1450px) {
    .mavFeaturedWork .mavWorks--Image {
        height: 300px;
    }
}
@media (min-width: 1600px) {
    .mavFeaturedWork .mavWorks--Image {
        height: auto;
    }
}
.mavFeaturedWork .mavWorks--Title {
    left: 15%;
    right: 15%;
}
@media (min-width: 800px) {
    .mavFeaturedWork .mavWorks--Title {
        left: 5%;
        right: 5%;
    }
}
@media (min-width: 800px) {
    .mavFeaturedWork .slick-slide:not(.slick-active) .mavWorks--Overlay {
        background-color: rgba(255, 255, 255, 0.4);
    }
}
@media (max-width: 799px) {
    .mavFeaturedWork .slick-list {
        padding: 0 !important;
    }
    .mavFeaturedWork .slick-slide:not(.slick-cloned),
    .mavFeaturedWork .slick-slider,
    .mavFeaturedWork .slick-track {
        margin: 0;
    }
}
.single-work h2 {
    border-bottom: none;
    display: block;
    padding: 0;
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 20px;
    line-height: 1.25rem;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 3px;
    color: #9d9d9d;
    text-align: left;
}
.single-work h2::after {
    display: none;
}
.single-work h1 {
    border-bottom: none;
}
.single-work h1::after {
    display: none;
}
.mavWorks--Header {
    padding: 2em 0 0 0;
}
.mavWorks--Links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.mavWorks--ProductionStills {
    text-align: center;
}
.mavWorks--ProductionStills__Images {
    margin: 3em 0 3em 0;
    display: flex;
    flex-wrap: wrap;
}
.mavWorks--ProductionStills__ImageLink:focus img,
.mavWorks--ProductionStills__ImageLink:hover img {
    opacity: 0.5;
    transition: 0.5s;
}
.mavWorks--Film {
    padding: 3em 0 3em 0;
}
.twentytwenty-wrapper {
    width: 100%;
    padding: 0 0 1.5em 0;
}
@media (min-width: 1600px) {
    .single-work .container {
        max-width: 1500px;
        width: 100%;
    }
}
.contact--Content {
    margin: 4em 0 4em 0;
}
@media (min-width: 650px) {
    .contact--Content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .contact--Content__Map {
        display: block;
        align-self: flex-end;
        max-width: 70%;
    }
}
@media (min-width: 1030px) {
    .contact--Content__Map {
        max-width: 75%;
    }
}
.contact--Content__Address span {
    display: block;
}
.contact--Content__Map:hover img {
    opacity: 0.7;
}
.page-template-template-pitch .entry-content {
    padding-top: 0;
    padding-bottom: 0;
}
@media (min-width: 1600px) {
    .page-template-template-pitch .container {
        max-width: 1500px;
        width: 100%;
    }
}
.siteFooter--Icon {
    display: block;
    margin: 0 auto 5% auto;
}
@media (min-width: 1600px) {
    .pitchPage .wp-block-image img {
        width: 100%;
    }
}
.has-mvfx-black-color {
    color: #1c1c1c;
}
.has-mvfx-navy-color {
    color: #292f37;
}
.has-mvfx-blue-color {
    color: #d07839;
}
.has-mvfx-grey-color {
    color: #d8d8d8;
}
.has-mvfx-muted-navy-color {
    color: #364457;
}
.has-mvfx-light-grey-color {
    color: #f4f4f4;
}
.has-mvfx-white-color {
    color: #cdcdcd;
}
.has-mvfx-black-background-color {
    background-color: #1c1c1c;
}
.has-mvfx-navy-background-color {
    background-color: #292f37;
}
.has-mvfx-blue-background-color {
    background-color: #d07839;
}
.has-mvfx-grey-background-color {
    background-color: #d8d8d8;
}
.has-mvfx-muted-navy-background-color {
    background-color: #364457;
}
.has-mvfx-light-grey-background-color {
    background-color: #f4f4f4;
}
.has-mvfx-white-background-color {
    background-color: #cdcdcd;
}
.wp-block-button a {
    text-transform: uppercase;
}
.wp-block-button .has-background {
    background-color: transparent;
    border: 1px solid currentColor;
    color: currentColor;
    transition: 0.25s;
}
.wp-block-button .has-background.has-mvfx-black-background-color {
    border-color: #1c1c1c;
    color: #1c1c1c;
}
.wp-block-button .has-background.has-mvfx-navy-background-color {
    border-color: #292f37;
    color: #292f37;
}
.wp-block-button .has-background.has-mvfx-blue-background-color {
    border-color: #d07839;
    color: #d07839;
}
.wp-block-button .has-background.has-mvfx-grey-background-color {
    border-color: #d8d8d8;
    color: #d8d8d8;
}
.wp-block-button .has-background.has-mvfx-muted-navy-background-color {
    border-color: #364457;
    color: #364457;
}
.wp-block-button .has-background.has-mvfx-light-grey-background-color {
    border-color: #f4f4f4;
    color: #f4f4f4;
}
.wp-block-button .has-background.has-mvfx-white-background-color {
    border-color: #cdcdcd;
    color: #cdcdcd;
}
.wp-block-button .has-background:focus,
.wp-block-button .has-background:hover {
    border-color: #1c1c1c;
    color: #1c1c1c;
}
.wp-block-button__link {
    border-radius: 0;
}
@media (min-width: 800px) {
    .wp-block-paragraph {
        max-width: 75%;
    }
}
.wp-block-paragraph[style*="text-align: center"] {
    margin-left: auto;
    margin-right: auto;
}
.has-text-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-group {
    padding-top: 8%;
    padding-bottom: 8%;
}
.wp-block-group h2,
.wp-block-group h3 {
    margin-bottom: 20px;
}
@media (min-width: 800px) {
    .wp-block-group {
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .wp-block-group h2,
    .wp-block-group h3 {
        margin-bottom: 40px;
    }
}
@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {
        grid-row: 2;
    }
}
@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
        grid-row: 1;
    }
}
.wp-block-media-text .wp-block-media-text__content {
    max-width: 700px;
}
@media (max-width: 600px) {
    .wp-block-media-text .wp-block-media-text__content {
        padding: 4% 8%;
    }
}
.pitchPage > div,
.pitchPage > figure,
.pitchPage > section,
.workPage > div,
.workPage > figure,
.workPage > section {
    padding-top: 70px;
}
@media (min-width: 1030px) {
    .pitchPage > div,
    .pitchPage > figure,
    .pitchPage > section,
    .workPage > div,
    .workPage > figure,
    .workPage > section {
        padding-top: 94px;
    }
}
.pagination--Work {
    margin-top: 70px;
}
@media (min-width: 1030px) {
    .pagination--Work {
        margin-top: 94px;
    }
}
.wp-block-embed.is-type-video figcaption,
.wp-block-image figcaption {
    max-width: 1150px;
    width: 90%;
    margin: 0 auto;
    color: #9d9d9d;
}
@media (min-width: 1600px) {
    .wp-block-embed.is-type-video figcaption,
    .wp-block-image figcaption {
        max-width: 1500px;
    }
}
.wp-block-embed.is-type-video figcaption p,
.wp-block-image figcaption p {
    text-align: left;
    font-size: 17px;
    font-size: 1.0625rem;
}
.wp-block-embed.is-type-video figcaption p:only-of-type,
.wp-block-image figcaption p:only-of-type {
    margin-bottom: 0;
}
@media (min-width: 1030px) {
    .wp-block-embed.is-type-video figcaption p,
    .wp-block-image figcaption p {
        max-width: 75%;
    }
}
@media (min-width: 1150px) {
    .wp-block-embed.is-type-video figcaption p,
    .wp-block-image figcaption p {
        max-width: 800px;
    }
}
.single-work .wp-block-embed:not(.alignfull) figcaption,
.single-work .wp-block-image:not(.alignfull) figcaption {
    width: 100%;
}
.blockgallery img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    height: 100%;
}
.single-work .entry-content {
    padding-top: 0;
}
.mavBlockServices {
    background-color: #141414;
    padding: 7% 0;
}
@media (min-width: 800px) {
    .mavBlockServices__inner {
        display: grid;
        grid-template-columns: 48% 4% 48%;
    }
}
.mavBlockServices__image {
    margin-bottom: 20px;
}
@media (min-width: 800px) {
    .mavBlockServices__image {
        display: block;
        grid-column: 1;
        margin-bottom: 0;
    }
}
@media (min-width: 800px) {
    .mavBlockServices__content {
        display: block;
        grid-column: 3;
        align-self: center;
    }
}
.mavBlockServices__list {
    margin: 20px 0 0 0;
    padding: 0 0 0 20px;
    list-style-position: outside;
}
.mavBlockServices__item {
    color: #9d9d9d;
}
.mavBlockServices__item span {
    display: block;
    padding-left: 10px;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45;
    color: #fff;
}
@media (min-width: 1030px) {
    .mavBlockServices__item span {
        font-size: 30px;
        font-size: 1.875rem;
    }
}
@media (min-width: 1030px) {
    .mavBlockOverviewAwards .mavBlockOverview__inner {
        display: grid;
        grid-template-columns: auto 430px;
        grid-gap: 40px;
    }
    .mavBlockOverviewAwards .mavBlockOverview__inner .mavBlockOverview__content {
        grid-column: 1;
    }
    .mavBlockOverviewAwards .mavBlockOverview__inner .mavBlockAwards__content {
        grid-column: 2;
    }
}
.mavBlockOverview__headline {
    margin-top: 15px;
}
.mavBlockAwards__content {
    padding: 25px;
}
.single-work .mavBlockAwards__content {
    background: #151515;
}
.mavBlockAwards__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mavBlockAwards__name {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.25;
    font-family: kepler-std, Georgia, serif;
}
@media (min-width: 1030px) {
    .mavBlockAwards__name {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}
@media (min-width: 1150px) {
    .mavBlockAwards__name {
        font-size: 30px;
        font-size: 1.875rem;
    }
}
.mavBlockAwards__team {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.39;
}
.mavBlockAwards__item p {
    margin-bottom: 0.75rem;
}
.pitchPage > figure {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}
@media (min-width: 1600px) {
    .pitchPage > figure .wp-block-embed__wrapper,
    .pitchPage > figure > img {
        max-width: 1900px;
        margin-left: auto;
        margin-right: auto;
    }
}
.mavPitchBlock h2,
.pitchPage > h2 {
    display: block;
    font-style: normal;
    border-bottom: none;
    padding: 0;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.15;
}
.mavPitchBlock h2::after,
.pitchPage > h2::after {
    display: none;
}
.pitchPage .wp-block-blockgallery-masonry {
    padding-bottom: 70px;
}
@media (min-width: 1030px) {
    .pitchPage .wp-block-blockgallery-masonry {
        padding-bottom: 94px;
    }
}
.mavBlockServices,
.mavPitchBlockPastWork {
    margin-top: 70px;
    margin-bottom: 70px;
    padding-bottom: 70px;
    padding-top: 70px;
}
@media (min-width: 1030px) {
    .mavBlockServices,
    .mavPitchBlockPastWork {
        margin-top: 94px;
        margin-bottom: 94px;
        padding-bottom: 94px;
        padding-top: 94px;
    }
}
.pitchPage {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.727272727;
}
@media (min-width: 1030px) {
    .pitchPage {
        font-size: 22px;
        font-size: 1.375rem;
    }
}
.pitchPage > p:not(:last-of-type) {
    margin-bottom: 20px;
}
.pitchPage > p[style="text-align:center"] {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1030px) {
    .pitchPage > p {
        max-width: 800px;
    }
}
.mavBlockPitchFooter {
    background-color: #1c1c1c;
    text-align: center;
    padding-top: 10%;
    padding-bottom: 5%;
    text-transform: none;
    color: #9d9d9d;
    margin-top: 70px;
}
.mavBlockPitchFooter h2 {
    font-size: 29px;
    font-size: 1.8125rem;
    border-bottom: none;
    font-style: normal;
    color: #9d9d9d;
}
.mavBlockPitchFooter h2::after {
    display: none;
}
@media (min-width: 1030px) {
    .mavBlockPitchFooter {
        margin-top: 94px;
    }
}
.mavPitchBlockPastWork {
    background-color: #151515;
    color: #fff;
}
.mavPitchBlockPastWork .twentytwenty-wrapper {
    padding: 40px 0 0 0;
}
@media (min-width: 1030px) {
    .mavPitchBlockPastWork .twentytwenty-wrapper {
        padding: 60px 0 0 0;
    }
}
.mavPitchBlockPastWork__title {
    border-bottom: none;
    font-style: normal;
    color: #fff;
}
.mavPitchBlockPastWork__title::after {
    display: none;
}
.mavPitchBlockPastWork__caption p,
.mavPitchBlockPastWork__intro p {
    margin: 20px 0 0 0;
}
@media (min-width: 1030px) {
    .mavPitchBlockPastWork__caption,
    .mavPitchBlockPastWork__intro {
        max-width: 55%;
    }
}
.mavPitchBlockPastWork__caption {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #a0a0a0;
    margin: 10px 0 0 0;
}
@media (min-width: 1030px) {
    .mavPitchBlockPastWork__caption {
        max-width: 855px;
    }
}
.mavBlockHero {
    position: relative;
    transition-duration: 0.75s;
    animation-fill-mode: both;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: #292f37;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 0;
    padding: 15% 0 15% 0;
    margin-bottom: 70px;
}
@media (min-height: 800px) {
    .mavBlockHero {
        min-height: 75vh;
    }
}
.mavBlockHero:not(:first-of-type) {
    margin-top: 70px;
}
@media (min-width: 1030px) {
    .mavBlockHero {
        padding: 10% 0 10% 0;
        margin-bottom: 94px;
    }
    .mavBlockHero:not(:first-of-type) {
        margin-top: 94px;
    }
}
.mavBlockHero:after {
    z-index: 1;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(0, 0, 0, 0.2)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
}
.mavBlockHero__headline,
.mavBlockHero__play,
.mavBlockHero__playLabel {
    z-index: 2;
    color: #fff;
    animation-name: fadeIn;
}
.mavBlockHero__headline {
    line-height: 1.2;
    font-size: 44px;
    font-size: 2.75rem;
}
@media (min-width: 1150px) {
    .mavBlockHero__headline {
        font-size: 66px;
        font-size: 4.125rem;
    }
}
.mavBlockHero__playIcon {
    display: block;
    margin: 10px auto;
    height: 64px;
    width: 64px;
}
.mavBlockHero__play {
    color: #fff;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 1.5em 0 0 0;
    z-index: 2;
}
@media (min-width: 650px) {
    .mavBlockHero__play {
        padding: 1em 0 0 0;
        font-size: 16px;
        font-size: 1rem;
    }
}
.mavBlockHero__play:focus,
.mavBlockHero__play:hover {
    color: #fff;
    border: none;
    outline: 0;
}
.mavBlockHero__play:focus .mavBlockHero__playIcon,
.mavBlockHero__play:focus .mavBlockHero__playLabel,
.mavBlockHero__play:hover .mavBlockHero__playIcon,
.mavBlockHero__play:hover .mavBlockHero__playLabel {
    transition-duration: 0.75s;
    animation-fill-mode: both;
    animation-name: pulse;
    color: #9d9d9d;
}
.mavBlockHero__play:focus .mavBlockHero__playIcon path,
.mavBlockHero__play:focus .mavBlockHero__playLabel path,
.mavBlockHero__play:hover .mavBlockHero__playIcon path,
.mavBlockHero__play:hover .mavBlockHero__playLabel path {
    transition: 1s;
    fill: #9d9d9d;
}
.mavBlockHero__play:focus .mavBlockHero__playIcon circle,
.mavBlockHero__play:focus .mavBlockHero__playLabel circle,
.mavBlockHero__play:hover .mavBlockHero__playIcon circle,
.mavBlockHero__play:hover .mavBlockHero__playLabel circle {
    transition: 1s;
    stroke: #9d9d9d;
}
.mavTeam__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
h3.mavTeam__name {
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 0;
}
.mavTeam__person {
    margin: 10px;
}
.mavTeam__person img {
    display: block;
}
@media (min-width: 800px) {
    .mavTeam__person img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover";
        height: 300px;
        width: 300px;
    }
}
.mavTeam__jobTitle {
    font-family: proxima-nova, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    font-size: 0.9375rem;
    color: #d07839;
    margin: 0;
}
@media (max-width: 800px) {
    .mavTeam .mavTeam__person {
        background-color: #f4f4f4;
        margin: 20px auto;
        padding: 5%;
        text-align: center;
    }
    .mavTeam .mavTeam__person img {
        margin-bottom: 10px;
    }
}
@media (min-width: 800px) {
    .mavTeam .slick-slide:not(.slick-active) {
        opacity: 0.4;
        transition: 0.25s;
    }
}
