:root {
    --_max_width: 1600px;
    --_max_width_md: 1300px;
    --_max_width_sm: 1000px;
    --_main_padding: 25px;
    --_yellow: #e6db00;
    --_text: #e9e6d9;
    --_text_dark: #666a5e;
}

.bg-grey {
    color: #000;
}

.page-bg {
/*    background-size: cover;
    background-position: top center;
    background-image: url('../images/main-bg.jpg');*/
    background-color: #333333;
}

.no-scroll {
    overflow: hidden;
}

.bg-grey {
    background-color: #dbdbdb;
}
.wrapper {
    width: 100%;
    max-width: var(--_max_width);
    padding: 100px var(--_main_padding);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}


.wrapper-align-t {
    align-items: flex-start;
}

.wrapper-p-sm {
    padding: 50px var(--_main_padding);
}

.wrapper-pb-sm {
    padding-bottom: 50px;
}
.wrapper-md {
    max-width: var(--_max_width_md);
}

.wrapper-sm {
    max-width: var(--_max_width_sm);
}

.wrapper-pt-0 {
    padding-top: 0px;
}

.wrapper-pb-0 {
    padding-bottom: 50px;
}

.wrapper-center {
    align-items: center;
    justify-content: center;
}

.wrapper-stack {
    flex-direction: column;
}

nav .wrapper {
    padding: 20px var(--_main_padding);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

nav.nav-dark {
    border-bottom: 1px solid var(--_text_dark);
}

.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.main-nav-left {
    justify-content: flex-end;
}

.main-nav > li {
    padding: 10px 25px;
}

.main-nav > li > a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-dark .main-nav > li > a {
    color: var(--_text_dark);
}

.nav-logo {
    padding: 0 40px;
}

.nav-mobile {
    display: none !important;
}

@media all and (max-width: 992px) {

/*    nav {
        position: fixed;
    }*/

    .mobile-menu-trigger {
        width: 30px;
        height: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .nav-logo {
        padding: 0;
    }

    .nav-logo img {
        height: 30px;
    }

    .mobile-menu-controls {
        min-height: 71px;
        padding: 0 25px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: 1px solid var(--_text);
    }

    .mobile-menu-container {
        position: fixed;
        top: 0;
        height: 100vh;
        background-color: #333333;
        right: -400px;
        width: 400px;
        display: flex;
        transition: .5s;
        flex-direction: column;
    }

    .mobile-menu-container .main-nav {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-open .mobile-menu-container {
        display: flex;

        right: 0;
    }

    .mobile-menu-trigger > div {
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background-color: #fff;
    }

    .mobile-menu-close {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(45deg);
    }

    .mobile-menu-close:before,
    .mobile-menu-close:after {
        content: '';
        width: 100%;
        height: 2px;
        border-radius: 1px;
        position: absolute;
        background-color: var(--_text);

    }

    .mobile-menu-close:after {
        transform: rotate(90deg);
    }

    .nav-mobile-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-desktop {
        display: none !important;
    }

    .nav-mobile {
        display: flex !important;
    }

    .nav-dark .main-nav > li > a {
        color: var(--_text);
    }

    .mobile-menu-trigger > div {
        background-color: var(--_text_dark);
    }

}

@media all and (max-width: 400px) {
    .mobile-menu-container {
        right: -100vw;
        width: 95vw;
    }
}

.page-banner {
    background-position: center;
    background-image: url("../images/videobg.jpg");
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.heading-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 40px;
}

.header-left {
    color: #e9e6d9;
    font-size: 4em;
    line-height: 1;
}

.header-left span {
    font-size: .8em;
}

.header-right {
    color: var(--_yellow);
    text-transform: uppercase;
    min-width: 270px;
}

.heading-container:after {
    position: absolute;
    height: 2px;
    background-color: #e9e6d9;
    width: 100vw;
    content: '';
    bottom: 0;
    right: 0;
}

.sub-heading-container {
    padding-top: 40px;
}

.sub-heading-container p {
    color: #e9e6d9;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
}

.page-banner-content {
    max-width: 1000px;
    width: 100%;
}

.page-banner-v2 .heading-container {
    width: 100%;
    max-width: 700px;
}

.page-banner-v2 .sub-heading-container {
    padding-left: 5%;
}

.page-banner-v2 .sub-heading-container p {
    color: var(--_yellow);
}

.page-banner-v2 .header-left {
    color: var(--_yellow);
}

.page-banner-v2 .heading-container:after {
    background-color: var(--_yellow);
}

.page-banner-vid .wrapper {
    flex-direction: row;
    align-items: stretch;
    min-height: 80vh;
    justify-content: space-between;
}

.page-banner-vid .page-banner-content {
    width: 500px;
}

.wp-video,
video.wp-video-shortcode,
.mejs-container,
.wp-video iframe{
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
}


.mejs-container {
    padding-top: 56.25%;
    position: relative;
}

.mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.page-banner-video-container {
    width: calc(100% - 600px);
}

.page-banner-blur:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    backdrop-filter: blur(15px);
    content: '';
}

@media all and (max-width: 992px) {
    .heading-container {
        flex-direction: column;
    }

    .header-right {
        height: 35px;
        width: 100%;
    }

    .page-banner-video-container {
        width: 100%;
        margin-top: 30px;
    }

    .header-left {
        font-size: 3em;
    }

    .heading-container {
        align-items: flex-start;
    }
}

.exp-section p {
    font-size: 1.7em;
    max-width: 800px;
    /*text-align: center;*/
    line-height: 1.2;
    font-weight: 600;
}

.exp-section p.text-center {
    text-align: center;
}

.exp-section p span {
    color: var(--_yellow);
}

.photo-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid var(--_text);
}

.photo-container img {
    width: 100%;

}

.photo-container .photo-item {
    width: 20%;
    aspect-ratio: 9 / 6;
    background-size: cover;
    background-position: center;

}

@media all and (max-width: 992px) {

    .photo-container-wrapper {
        width: 100vw;
        overflow-x: auto;
    }

    .photo-container {
        flex-wrap: nowrap;
        width: max-content;

    }

    .photo-container .photo-item {
        width: calc(100vw - 25px);
    }

    .exp-section p {
        font-size: 1.4em;
    }
}

.page-section-divider {
    border-top: 1px solid var(--_text);
    position: relative;
    padding: 50px 0;
}

.page-section-divider-bottom {
    border-bottom: 1px solid var(--_text);
    margin-bottom: 150px;
}

.page-section-divider-nl {
    border-top: 1px solid var(--_text);
    position: relative;
    padding: 0;
}

.page-section-divider:before {
    height: 80px;
    width: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    content: '';
    background-color: var(--_text);
}

.projects-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 70px);
    margin: 0 -35px;
}

.project-item {
    width: 20%;
    padding: 10px;
}

.project-item > div {
    aspect-ratio: 2 / 3;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.project-item > div:hover .project-item-content {
    opacity: 1;
}

.project-item-content {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0,0,0,.8);
    opacity: 0;
    transition: .2s;
}

.project-item-content p {
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

@media all and (max-width: 992px) {
    .project-item {
        width: calc(100vw - 25px);
        flex-shrink: 0;
        padding: 0;
    }

    .projects-container {
        overflow-x: auto;
        width: 100vw;
        margin: 0 -25px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

.pic-title {
    width: 70%;
}

.pic-info {
    margin-bottom: 0;
    font-size: .9em
}

.work-info-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 50px;
    display: none;
}

.work-info-box.wib-active {
    display: flex;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.3);
}

.work-info-container {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(0,0,0,.9);
    min-height: 50vh;
    padding: 70px 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wi-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--_text);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    cursor: pointer;
}

.wi-arrow-prev {
    left: 30px;
}

.wi-arrow-next {
    right: 30px;
}

.work-slider-item {
    width: 100%;

    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    z-index: 0;
    transition: .2s;
    display: none;
}

.work-slider-item > div {
    width: 50%;
}

.work-slider-item.wis-active {
    opacity: 1;
    z-index: 1;
    display: flex;
}

.work-slider-item p {
    font-size: .8em;
}

.wsi-image-container {
    min-height: 40vh;
}

.wsi-image-container img {
    width: 80%;
    max-width: 500px;
}

.wsi-gallery {

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
}

.wsi-gallery img {
    height: 100px;
    margin: 5px 10px;
}

.wsi-gallery-item {
    cursor: pointer;
}

.wsi-header {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--_text);
}

.wsi-header h5 {
    line-height: 1.2;
    margin: 0;
}

.wsi-header h5 span {
    color: var(--_yellow);
}

.wsi-links  a{
    color: var(--_yellow);
    text-decoration: none;
}

.v2-gallery-container {
    width: 100% !important;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.v2-gallery-container .wsi-gallery {
    width: 130px;
    flex-direction: column;
    margin: 0;

}

.v2-gallery-container .wsi-gallery img {
    height: auto;
    width: 100%;
    margin: 0 0 10px;
}

.v2-gallery-container .wsi-image-container {
    width: calc(100% - 160px);
}

.v2-gallery-container .wsi-image-container img {
    width: 100%;
}

.work-slider-item-v2 .wsi-content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.work-slider-item-v2 .wsi-content > div {
}

.work-slider-item-v2 .wsi-header {
    margin-bottom: 0;
    border-bottom: none;
    text-align: right;
    width: 40%;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.wsi-description {
    width: 60%;
    border-left: 1px solid var(--_text);
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media all and (max-width: 992px) {
    .work-info-box {
        padding: 0;
    }

    .work-slider-item {
        max-height: 70vh;
        overflow-y: auto;
        padding-bottom: 30px;

    }

    .wsi-image-container {
        display: none;
    }

    .work-slider-item > .wsi-image-container + div {
        width: 100%;
    }

    .work-info-container {
       /* max-height: 80vh;*/
        overflow-y: auto;
        padding: 70px 25px;
        align-items: flex-start;
    }

    .wi-arrow {
        bottom: 20px;
    }

    .wi-arrow-prev {
        left: calc(50vw - 50px);
    }
    .wi-arrow-next {
        right: calc(50vw - 50px);
    }

    .work-info-slider {
        width: 100%;
    }
}

.about-section .wrapper {
    /*    padding-top: 0;
        padding-bottom: 0;*/
    align-items: stretch;
}

.about-section img {
    width: 80%;
    max-width: 400px;
}

.about-section .wrapper > div {
    width: 50%;
    border-top: none;
}

.about-section-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section {
    border-top: 1px solid var(--_text);
}

.about-section-content {
    padding: 0 25px;
    /*text-align: right;*/
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
}

@media all and (max-width: 992px) {
    .about-section .wrapper > div {
        width: 100%;
        padding: 0 0 25px;
    }

    .about-section .wrapper{
        flex-direction: column-reverse;
    }

    .wrapper {
        padding: 50px var(--_main_padding);
    }
}

.text-yellow {
    color: var(--_yellow);
}

.logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-section-dark {
    background-color: rgba(0,0,0,.5);
}

.logo-container > div {
    padding: 25px 35px;
}

.logo-container > div img {
    height: 30px;
}

.testimonial-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.testimonial-item {
    padding: 25px;
    width: 33.3%;
    border-right: 1px solid var(--_text);
}

.testimonial-item:last-child {
    border-right: 0;
}

.testimonial-quote p {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-quoter {
    width: 100%;
    text-align: center;
    font-weight: 300;
    opacity: .8;
}

@media all and (max-width: 992px) {

    .testimonial-container {
        overflow-x: auto;
    }

    .testimonial-item {
        width: 100%;
        flex-shrink: 0;

    }
}

.masonary-grid-container {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: repeat(8, 100px);
    column-gap: 5px;
    row-gap: 5px;
    width: 100%;
}

.masonary-grid-container > div {
    background-size: cover;
    background-position: center;
    /*    grid-column-start: auto;
        grid-column-end : auto;
        grid-row-start : auto;
        grid-row-end: auto;*/
}

.masonary-grid-container .testing {
    grid-column-start: 1;
    grid-column-end : 4;
    background-color: blue;
}

.grid-column-start1 {grid-column-start: 1;}
.grid-column-start2 {grid-column-start: 2;}
.grid-column-start3 {grid-column-start: 3;}
.grid-column-start4 {grid-column-start: 4;}
.grid-column-start5 {grid-column-start: 5;}
.grid-column-start6 {grid-column-start: 6;}
.grid-column-start7 {grid-column-start: 7;}
.grid-column-start8 {grid-column-start: 8;}
.grid-column-start9 {grid-column-start: 9;}
.grid-column-start10 {grid-column-start: 10;}
.grid-column-start11 {grid-column-start: 11;}
.grid-column-start12 {grid-column-start: 12;}

.grid-column-end1 {grid-column-end: 1;}
.grid-column-end2 {grid-column-end: 2;}
.grid-column-end3 {grid-column-end: 3;}
.grid-column-end4 {grid-column-end: 4;}
.grid-column-end5 {grid-column-end: 5;}
.grid-column-end6 {grid-column-end: 6;}
.grid-column-end7 {grid-column-end: 7;}
.grid-column-end8 {grid-column-end: 8;}
.grid-column-end9 {grid-column-end: 9;}
.grid-column-end10 {grid-column-end: 10;}
.grid-column-end11 {grid-column-end: 11;}
.grid-column-end12 {grid-column-end: 12;}
.grid-column-end13 {grid-column-end: 13;}

.grid-row-start1 {grid-row-start: 1;}
.grid-row-start2 {grid-row-start: 2;}
.grid-row-start3 {grid-row-start: 3;}
.grid-row-start4 {grid-row-start: 4;}
.grid-row-start5 {grid-row-start: 5;}
.grid-row-start6 {grid-row-start: 6;}
.grid-row-start7 {grid-row-start: 7;}
.grid-row-start8 {grid-row-start: 8;}
.grid-row-start9 {grid-row-start: 9;}
.grid-row-start10 {grid-row-start: 10;}
.grid-row-start11 {grid-row-start: 11;}
.grid-row-start12 {grid-row-start: 12;}

.grid-row-end1 {grid-row-end: 1;}
.grid-row-end2 {grid-row-end: 2;}
.grid-row-end3 {grid-row-end: 3;}
.grid-row-end4 {grid-row-end: 4;}
.grid-row-end5 {grid-row-end: 5;}
.grid-row-end6 {grid-row-end: 6;}
.grid-row-end7 {grid-row-end: 7;}
.grid-row-end8 {grid-row-end: 8;}
.grid-row-end9 {grid-row-end: 9;}
.grid-row-end10 {grid-row-end: 10;}
.grid-row-end11 {grid-row-end: 11;}
.grid-row-end12 {grid-row-end: 12;}

.subscribe-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 5px;
}

form button {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: #939c75;
    color: #fff;
    padding: 0 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    margin-left: 40px;
    min-width: 120px;
}

form input {
    height: 40px;
    padding: 5px 25px;
    outline: none;
    box-shadow: none;
    border: none;
}

.subscribe-form input {
    min-width: 300px;
}

.contact-form-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-form-container > div:first-child {
    width: 400px;
}

.contact-form-container > div:last-child {
    width: calc(100% - 350px);
}

.contact-form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 1000px;
}

.contact-form .input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 30px;
}

.contact-form .input-container.input-container2 {
    width: 50%;
}

.contact-form label {
    margin-bottom: 15px;
}

.contact-form input {
    height: 60px;
}
.contact-form textarea {
    height: 200px;
}

form.contact-form button {
    margin-left: 20px;
}

.contact-info-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 30px;
}

p.ci-title {
    font-size: 1.2em;
}

.contact-info {
    border-bottom: 1px solid var(--_text);
    width: 100%;
    max-width: 280px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.contact-info:last-child {
    border-bottom: none;
}

@media all and (max-width: 992px) {

    .subscribe-form {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .subscribe-form .input-container {
        width: 100%;
    }

    .subscribe-form input {
        width: 100%;
        height: 60px;
    }

    .subscribe-form button {
        margin-left: 0;
        margin-top: 30px;
    }

    .contact-form-container {
        flex-direction: column;
    }
    .contact-form-container > div:first-child,
    .contact-form-container > div:last-child{
        width: 100%;
    }

    .masonary-grid-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 100px;
    }

    .contact-info-container {
        padding-right: 0;
    }

    .contact-info {
        max-width: unset;
    }

    .contact-form .input-container.input-container2 {
        width: 100%;
    }

    .contact-form .input-container {
        padding: 0;
    }

    form.contact-form button {
        margin-left: 0;
    }
}
._col-50 {
    padding: 0 25px;
}
._col-50 {
    width: 50%;
}

.custom-header {
    margin-bottom: 20px;
    min-width: 45%;
}

.custom-header h2 {
    width: 100%;
    text-align: right;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--_yellow);

    position: relative;
    padding-bottom: 20px;
}

.custom-header-right-align {
    align-self: flex-end;
}

.custom-header.custom-header-right h2 {
    text-align: left;
}

.custom-header h2:after {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 1px;
    width: 50vw;
    content: '';
    background-color: var(--_yellow);
}

.custom-header.custom-header-right h2:after {
    right: unset;
    left: 0;
}

@media all and (max-width: 992px) {
    ._col-50 {
        width: 100%;
        padding: 0;
    }

    .custom-header h2 {
        text-align: left;
        padding-bottom: 10px;
        margin-bottom: 30px;
        font-size: 2em;
    }

    .custom-header h2:after {
        width: 100%;
    }

    .custom-header.custom-header-left h2:after {
        right: unset;
        left: 0;
    }

    .custom-header-right-align {
        align-self: flex-start;
    }
}

.article-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.article {
    padding: 10px 25px;
    width: 33%;
}

.article-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-image {
    aspect-ratio: 30/31;
    width: 100%;
    background-size: cover;
    background-position: center;

}

.article-content {
    padding: 25px;
    background-color: #fff;
}

.article-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.article-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7em;
}

.article-header h3 {
    width: calc(100% - 80px);
    color: #000;
}

.article-content p {
    color: #000;
}

.article-home-wrapper {
    padding-top: 0;
    margin-top: -20vh;
}

.article-page-content h1,
.article-page-content h2,
.article-page-content h3,
.article-page-content h4,
.article-page-content h5,
.article-page-content h6,
.article-page-content p {
    margin-bottom: 25px
}



.more-stories-wrapper .custom-header {
    min-width: 45%;
}

.more-stories-wrapper .custom-header h2 {
    color: #000;
    font-size: 3em;
}

.more-stories-wrapper .custom-header h2:after {
    background-color: #000;
}

footer {
    background-color: #939c75;
}

footer .wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer-logo-container {
    margin-bottom: 10px;
}

footer p {
    margin: 0;
    color: var(--_text);
}

.film-team-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--_max_width_md);
    margin: 50px auto;

}

.film-team {
    width: 50%;
    padding: 25px;
}

.film-team-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.film-team-image {
    width: 40%;
    aspect-ratio: 3 / 4;
    border: 1px solid #fff;
    background-size: cover;
    background-position: center;
}

.film-team-content {
    padding: 0 25px;
    width: 60%;
}

.film-team-content h3 {
    color: var(--_yellow);
    font-size: 1.2em;
    margin-bottom: 20px;
}

.film-team-content h3 span {
    color: var(--_text);
}

@media all and (max-width: 992px) {
    .film-team {
        width: 100%;
        padding: 20px 0;
    }

    .film-team-inner {
        flex-direction: column;
    }

    .film-team-content {
        width: 100%;
        padding: 20px 0;
    }

    .film-team-image {
        width: 90%;
        max-width: 350px;
    }

    .film-team-container {
        margin: 0;
    }
}

.btn-cta {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: #939c75;
    color: var(--_text);
    padding: 0 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    margin-left: 40px;
    min-width: 120px;
    text-decoration: none;
    line-height: 1;
}

.btn-cta:hover {
    color: var(--_text);
}

.btn-container {
    margin: 20px 40px;
}

.under-construction {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.under-construction img {
    max-width: 850px;
    width: 100%;
}

@media all and (max-width: 992px) {
    .btn-cta {
        margin: 0;
    }
}