/*
Theme Name: spp
Author: convode
Author URI: https://convode.com
*/

/* WordPress Core */

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    text-align: center;
    max-width: 100%;
}


.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* THEME */

*,
body,
button {
    font-family: 'Montserrat', sans-serif;
}

* {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    outline: none;
}

body {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

button {
    border: 0;
    background: none;
    font-size: 1em;
    cursor: pointer;
}

.bold,
strong,
b {
    font-weight: 600;
}

em {
	font-style: italic;
}

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

a:hover,
a:focus {
    color: #000;
    text-decoration: underline;
}

h1 {
    font-size: 2em;
    font-weight: 600;
    padding: 0 0 1em;
    text-align: center;
    color: #5a5a5a;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
    padding: 0 0 0.5em;
    text-align: center;
}

.btn {
    font-weight: 600;
    background: #fff;
    color: #000;
    padding: 0.5em 2em;
    display: inline-block;
    border: 2px solid #000;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.btn.grey {
    color: #707070;
    border-color: #707070;
}

.btn:hover,
.btn:focus {
    background: none;
    color: #000;
    border-color: #000;
}

.fa {
    -webkit-transition: 0;
    transition: 0;
}

.container-full {
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.container-s {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.container-xs {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.navbar {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 10;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.navbar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.navbar .logo img {
    height: 3.75em;
    padding: 1em;
    display: block;
    width: auto;
    box-sizing: border-box;
}

.navbar .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: auto;
}

@media ( min-width: 992px) {
    .navbar .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        margin-left: auto;
    }
}

.navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.navbar .right ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    left: -1px;
    top: 3.75em;
    bottom: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 250px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
}

.navbar .right ul.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

@media ( min-width: 992px) {
    .navbar .right ul {
        text-transform: uppercase;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        position: inherit;
        left: auto;
        top: auto;
        bottom: auto;
        background: #fff;
        border: 0;
        min-width: auto;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

.navbar li {
    padding: 0 1em;
}

.navbar li a {
    display: inline-block;
    padding: 0.5em 0;
    text-decoration: none;
    color: #707070;
    line-height: 2;
    position: relative;
    font-size: 1.25em;
}

.navbar li a:hover,
.navbar li.current-menu-item a {
    color: #000;
}

.navbar button {
    cursor: pointer;
    padding: 0 2em;
    color: #000;
}

@media ( min-width: 992px) {
    .navbar button {
        display: none;
    }
}

main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1em;
}

main.blur,
footer.blur {
    -webkit-filter: blur(5px);
            filter: blur(5px);
}

footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5em 1em 2.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

footer li {
    padding: 1em 0;
}

footer li:after {
    content: '-';
    padding: 0 0.25em;
}

footer li:last-child:after {
    content: '';
}

footer a {
    color: #707070;
    padding: 1em 0;
}

footer .current-menu-item a {
    font-weight: 600;
}

.footer-cookies {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    padding: 1rem 0 0;
}

/* PAGE */

.normal-page {
    padding-top: 8em;
    text-align: justify;
    line-height: 1.5;
}

.normal-page h1 {
    font-size: 2.75rem;
    font-weight: 400;
}

@media ( min-width: 756px ) {
    .normal-page h1 {
        font-size: 3.75rem;
    }
}

@media ( min-width: 980px ) {
    .normal-page h1 {
        font-size: 5.75rem;
    }
}


.normal-page p {
    margin: 0 0 1em;
}

.normal-page .subtitle-top {
    font-size: 1.5em;
    margin-bottom: 0;
    color: #555;
    text-align: center;
}

/* BEFORE PAGE */

.page-template-agency main,
.page-template-productions main,
.single-artists main {
    padding: 0;
}

@media( max-width: 799px ) {
    .before-page {
        background: none!important;
    }
}

@media( min-width: 800px ) {
    .before-page {
        height: 100vh;
        width: 100%;
        background: #000;
        color: #fff;
        padding: 0 0.5em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        position: relative;
    }
}

.before-page .preloader {
    display: none;
}

@media( min-width: 800px ) {
    .before-page .preloader {
        display: block;
        margin: 0 -0.5em;
        z-index: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        filter: blur(5px);
    }

    .before-page .mobile {
        display: none;
    }
}

.before-page .mobile img {
    width: 100%;
    height: auto;
}

.before-page .mobile .text {
    padding: 0.5em;
}

.before-page .mobile .text h1 {
    padding-top: 0;
}

.before-page .container-s {
    display: none;
}

@media( min-width: 800px ) {
    .before-page .container-s {
        position: relative;
        height: 100vh;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.before-page h1 {
    text-align: left;
    padding-top: 2em;
}

.before-page .start-text {
    font-size: 1.2em;
}

@media ( min-width: 756px ) {
    .before-page .start-text {
        width: 50%;
    }
}

.before-page .arrow {
    position: absolute;
    left: 0;
    bottom: 2em;
}

.before-page .arrow img {
    height: 3em;
    width: auto;
}

.navbar.static {
    background: none;
}

@media ( min-width: 992px) {
    .navbar.static .right ul {
        background: none;
    }
}


/* SELECT LIST */

.select-list {
    padding: 0 0.25em;
}

.select-list .options button {
    outline: none;
    cursor: pointer;
    padding: 0 1em;
    line-height: 2;
    font-weight: 600;
    height: 2.2em;
    margin-bottom: 0.5em;
    color: #707070;
}

.select-list.selected .options button,
.select-list .options:hover button {
    color: #707070;
}

.select-list .options button.active,
.select-list .options:hover .active,
.select-list .options button:hover {
    color: #000;
}

.select-list .content .hide,
.select-list .content .filter {
    display: none;
}


/* CONTACT */

.contact-page .col {
    width: 100%;
}

@media ( min-width: 756px ) {
    .contact-page .col {
        width: 50%;
    }
}

@media ( min-width: 1020px ) {
    .contact-page .col {
        padding: 0;
        width: 33.333333%;
    }
    .contact-page .col:last-child {
        margin-right: -5em;
        padding-left: 5em;
    }
}

.contact-page .details {
    padding: 0 0 5em;
    font-size: 1.25em;
    overflow: hidden;
}

@media ( min-width: 1020px ) {
    .contact-page .details {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.contact-page #map {
    width: 100%; 
    width: calc( 100% + 2em );
    height: 25em;
    margin: 0 -1em -3em;
}

/* JOBS */

.jobs-page .start {
    padding: 0 0 3em;
}

.jobs-page .types .col {
    width: 100%;
    padding: 1.5em 0;
    text-align: center;
}

@media ( min-width: 700px ) {
    .jobs-page .types .col {
        width: 50%;
        text-align: left;
    }
}

.jobs-page .types a {
    text-decoration: underline;
}

.jobs-page .description-title {
    padding: 2em 0 0;
    font-weight: 600;
}

/* CLIENTS */

.clients-page .select-list {
    overflow: hidden;
    padding-top: 3em;
}

.clients-page .select-list .content {
    margin: 1em -0.5em;
}

.clients-page .select-list .content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.clients-page .select-list .content li {
    width: 25%;
    padding: 0 0.5em 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.clients-page .select-list .content a {
    text-decoration: underline;
}

/* PRODUCTIONS ALL */

.productions-page .page-photos {
    padding: 5em 0 3em;
}

.productions-page .page-photos .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.productions-page .page-photos .single {
    width: 25%;
}

.productions-page .page-photos .single img {
    width: 100%;
    height: auto;
}

/* PRODUCTION SINGLE */

.production-page {
    padding: 0;
}

.production-page img {
    width: 100%;
    height: auto;
}

.production-page .full-screen {
    min-height: 100vh;
    padding: 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.production-page .full-screen .container-s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    height: calc( 100vh - 2em );
}

.production-page .full-screen h1 {
    font-weight: 800;
    font-size: 2.3em;
    padding: 0;
}

.production-page .full-screen h2 {
    font-weight: 800;
    font-size: 2.15em;
    padding: 0;
}

.production-page .full-screen .subtitle {
    font-weight: 600;
    font-size: 1.5em;
}

.production-page .text {
    font-size: 1.5em;
    width: 70%;
    text-align: center;
}

.production-page .full-screen .arrow {
    position: absolute;
    left: 0;
    bottom: 2em;
}

.production-page .full-screen .arrow img {
    height: 3em;
}

.production-page .photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 3em; 
}

.production-page .photos img {
    display: block;
    padding: 0.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.production-page .row-2 .col {
    width: 50%;
}

.production-page .row-4 .col {
    width: 25%;
}

.production-page .normal-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2em 1em 4em;
}

/* ARTISTS */

.artist-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3em 0 5em 2em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.artist-list .single {
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-decoration: none;
}

.artist-list .artist-name {
    background: #000;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 220px;
    width: 220px;
    font-size: 2em;
    text-align: center;
    padding: 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.artist-list .artist-name:hover {
    background: #00a69c;
}

.artist-list img {
    width: 100%;
    height: auto;
}

/* ARTIST SINGLE */

.artist-page .page-photos {
    padding: 1em 0 3em;
}

@media ( min-width: 800px ) {
    .artist-page .page-photos {
        padding: 3em 0;
    }
}

.artist-page .page-photos .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.artist-page .page-photos .single {
    width: 100%;
    padding: 1.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
}

.artist-page .page-photos .align-center .single {
    text-align: center;
}

.artist-page .page-photos .align-left .single {
    text-align: left;
}

.artist-page .page-photos .align-right .single {
    text-align: right;
}

.artist-page .page-photos .single img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.artist-page .page-photos .resize-height .single img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}

@media ( min-width: 800px ) {
    .artist-page .lightbox {
        cursor: pointer;
    }
}


/* LIGHTBOX */

.lightbox-gallery {
    background: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12;
    display: none;
    
}

.lightbox-gallery.active {
    display: block;
}

.lightbox-gallery .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    flex-wrap: wrap;
}

.lightbox-gallery .container {
    position: relative;
}

.lightbox-gallery .top .col {
    width: 50%;
}

.lightbox-gallery .top .logo img{
    height: 2em;
    padding: 1em 0;
}

.lightbox-gallery .top .name {
    text-align: center;
    font-size: 5.75rem;
    font-weight: 400;
    padding: 0;
    color: #707070;
}

.lightbox-gallery .top .close {
    text-align: right;
    font-size: 2em;
    cursor: pointer;
}

.lightbox-gallery .top .close button {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
}

.lightbox-gallery .top .close img {
    height: 1em;
}

.lightbox-gallery .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.lightbox-gallery .content img {
    max-height: calc( 100vh - 16rem );
    padding: 1em;
}

.lightbox-gallery .content.img-2 img {
    max-width: 50%;
}

.lightbox-gallery .bottom {
    text-align: center;
    padding: 1.5em;
    width: 70%;
    margin: 0 auto;
}

.lightbox-gallery .change {
    position: fixed;
    top: 50vh;
    font-size: 2em;
    width: calc( 100% - 4em);
    z-index: 10;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    left: 0;
    right: 0;
    padding: 0 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lightbox-gallery .change.hide {
    opacity: 0;
}

.lightbox-gallery .change .right {
    margin-left: auto;
}

.lightbox-gallery .change img {
    height: 2em;
}

@media (max-width: 799px) {
    .lightbox-gallery {
        display: none!important;
    }
}

/* AGENCY */

.home-slider {
    position: relative;
    height: 90vh;
    margin-top: 60px;
}

.home-slider .single {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1em;
    color: #fff;
    box-sizing: border-box;
}

.home-slider .single a {
    color: #fff;
    text-decoration: none;
    color: #fff;
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-slider .single .before-title {
    font-size: 1.5em;
    margin: 0;
}

.home-slider .single .title {
    font-size: 2.25em;
    margin: 0;
    line-height: 1;
}

.home-slider .single .after-title {
    font-size: 1.25em;
    margin: 0;
}

.home-arrow {
    margin-top: 1em;
    padding-bottom: 2em;
    text-align: center;
}

.home-arrow .arrow img {
    height: 1.5em;
    width: auto;
}

.home-feed {
    color: #707070;
}

.home-feed h2 {
    padding: 2em 0.5em 3em;
    font-size: 1.25em;
    color: #5a5a5a;
}

.agency-page .about-text {
    text-align: center;
    padding: 3em 0 4em;
    line-height: 2;
}

.agency-page .about-text h1 {
    font-size: 1.25em;
}

.agency-page .about-text p {
    font-size: 1.25em;
    line-height: 1.5;
    color: #707070;
}

.agency-page .about-text .btn {
    margin-top: 2em;
    font-size: 1.25em;
    padding: 0.1em 2em;
}

.agency-page .single-post {
    width: 100%;
    padding: 1.5em 2em;
    box-sizing: border-box;
    text-align: left;
}

@media ( min-width: 756px ) {
    .agency-page .single-post {
        width: 50%;
    }
}

@media ( min-width: 980px ) {
    .agency-page .single-post {
        padding: 1.5em 5em;
    }
}

@media ( min-width: 1200px ) {
    .agency-page .single-post {
        padding: 1.5em 8em;
    }
}

.agency-page .single-post img {
    width: 100%;
    height: auto;
}

.agency-page .single-post a {
    color: #707070;
    text-decoration: none;
}

.agency-page .single-post .text {
    padding: 1em 0;
    font-weight: 600;
}

.agency-page .single-post .text p {
    margin: 0;
}

@media ( min-width: 800px ) {
    .agency-page .single-post.left {
        text-align: right;
    }
}

.agency-page .alm-masonry {
    position: relative;
}

@media ( min-width: 756px ) {
    .agency-page .alm-masonry:after {
        content: '';
        width: 1px;
        height: 100%;
        background: #808080;
        position: absolute;
        top: 0;
        left: 50%;
    }
}

.agency-page .alm-btn-wrap {
    text-align: center;
    padding: 3em 0;
}

.agency-page .alm-load-more-btn.done {
    display: none;
}

/* CASTING */

.casting-page {
    text-align: left;
}

.casting-page .photos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.casting-page .photos-list input[type="file"] {
    display: none;
}

.casting-page .photos-list .single {
    padding: 1em;
    width: 100%;
    box-sizing: border-box;
}

@media ( min-width: 450px ) {
    .casting-page .photos-list .single {
        width: 50%;
    }
}

@media ( min-width: 756px ) {
    .casting-page .photos-list .single {
        width: 33.333333%;
    }
}

@media ( min-width: 980px ) {
    .casting-page .photos-list .single {
        width: 20%;
    }
}

.casting-page .photos-list .placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #000;
    height: 16em;
    cursor: pointer;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.casting-page .photos-list #placeholder1 {
    background: url(img/placeholder1a.png) no-repeat center center;
    background-size: auto 100%;
}

.casting-page .photos-list #placeholder2 {
    background: url(img/placeholder2.png) no-repeat center center;
    background-size: auto 100%;
}

.casting-page .photos-list #placeholder3 {
    background: url(img/placeholder3.png) no-repeat center center;
    background-size: auto 100%;
}

.casting-page .photos-list #placeholder4 {
    background: url(img/placeholder4a.png) no-repeat center center;
    background-size: auto 100%;
}

.casting-page .photos-list .title {
    font-weight: 600;
    margin: 0;
    color: #212121;
    text-shadow: 0 0 5px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.casting-page .photos-list .placeholder .fas {
    display: none;
}

.casting-page .photos-list .placeholder.drag {
    background: #000!important;
}

.casting-page .photos-list .placeholder.drag .title,
.casting-page .photos-list .placeholder.uploading .title {
    display: none;
}

.casting-page .photos-list .placeholder.drag:before {
    content: '+';
    font-size: 4em;
    color: #fff;
}

.casting-page .photos-list .placeholder.uploading {
    background: #000!important;
}

.casting-page .photos-list .placeholder.uploading .fas {
    display: inline;
    content: '+';
    font-size: 3em;
    color: #fff;
}

.casting-page .info {
    text-align: center;
    padding: 0 1em 4em;
    font-size: 1.25rem;
    color: #707070;
}

.casting-page .casting-text {
    font-size: 1.5em;
    color: #707070;
}

.casting-page input:not(.wpcf7-submit) {
    border: 0;
    border-bottom: 1px solid #707070;
}

.casting-page .size-xs {
    width: 2em;
}

.casting-page .size-s {
    width: 3em;
}

.casting-page .size-m {
    width: 4em;
}

.casting-page .size-l {
    width: 10em;
}

.casting-page .btn {
    display: block;
    margin: 3em auto -2em;
    font-size: 0.8333em;
    color: #707070;
    border-color: #707070;
}

.casting-page .btn:hover {
    color: #000;
    border-color: #000;
}

.casting-page .wpcf7-form {
    position: relative;
}

.casting-page span.wpcf7-not-valid-tip {
    display: none;
}

.casting-page input.wpcf7-not-valid {
    border-color: #ff0000;
    background: #ffdddd;
}

.casting-page div.wpcf7-validation-errors, 
.casting-page div.wpcf7-acceptance-missing {
    border-color: #ff0000;
    display: block;
    position: absolute;
    top: 0;
    margin: 4em auto 0;
    left: 0;
    right: 0;
    max-width: 600px;
}



/* ALL MODELS */

.plane {
    box-sizing: border-box;
}

.models-page h1 {
    padding: 0;
}

.models-page .select-list .options {
    text-align: center;
    margin: 1em 0 2em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.models-page .select-list button {
    font-weight: 400;
    font-size: 1.25em;
}

.models-page .select-list .content  {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 2em;
    font-size: 1.25em;
}

.models-page .select-list .single  {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5em 0.75em;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

@media ( min-width: 550px ) {
    .models-page .select-list .single  {
        width: 50%;
    }
}

@media ( min-width: 756px ) {
    .models-page .select-list .single  {
        width: 33.333333%;
    }
}

@media ( min-width: 980px ) {
    .models-page .select-list .single  {
        width: 25%;
    }
}

@media ( min-width: 980px ) {
    .models-page .select-list .single  {
        width: 20%;
    }
}

.models-page .select-list img  {
    width: 100%;
    height: auto;
}

.models-page .select-list .plane  {
    width: 1.25em!important;
    height: 1.25em!important;
    margin-bottom: -0.25em;
}

/* SINGLE MODEL */

.model-page h1 {
    font-size: 2.75rem;
    font-weight: 400;
    padding: 0;
}

@media ( min-width: 756px ) {
    .model-page h1 {
        font-size: 3.75rem;
    }
}

@media ( min-width: 980px ) {
    .model-page h1 {
        font-size: 5.75rem;
    }
}

.model-page .info {
    color: #707070;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.model-page .info .pdf {
    color: #707070;
    font-weight: 600;
    text-decoration: underline;
}

.model-page .info .pdf:hover {
    color: #000;
}

.model-page .booked {
    text-align: center;
    margin: 2em 0 0;
    font-style: italic;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #707070;
    font-size: 1.25em;
}

.model-page .booked .plane {
    height: 2rem;
    margin: 0.5em;
    margin-top: 0.5em;
}

.model-page .info span {
    padding: 0.25em 0.5em;
    white-space: nowrap;
    display: inline-block;
}

.model-page .select-list .options {
    text-align: center;
}

.model-page .img-2 {
    display: flex;
}

.model-page .img-2 .single {
    width: 100%;
}

@media( min-width: 756px ) {
    .model-page .img-2 .single {
        width: 50%;
    }
}

.model-page .single {
    padding: 1em;
}

.model-page .single-cat .filter {
    display: none;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
    height: 0;
    width: 1200px;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
    opacity: 1;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
}
  
img[data-org-src] {
    opacity: 0;
}