@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Black.ttf);
    font-weight: 900
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-ExtraBold.ttf);
    font-weight: 800
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Bold.ttf);
    font-weight: 700
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-SemiBold.ttf);
    font-weight: 600
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Medium.ttf);
    font-weight: 500
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Regular.ttf);
    font-weight: 400
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Light.ttf);
    font-weight: 300
}

:root {
    --purple: #4F2877;
    --orange: #E37B1A;
    --green: #179276;
    --grey: #302B42;
    --bsh-inset: inset 0 0 8px 0 rgba(0, 0, 0, 0.55);
}

* {
    outline: none;
    box-shadow: none;
}

body {
    font-family: Raleway, sans-serif;
    font-weight: 400;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    color: #2d2d2d;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
    font-family: Raleway, sans-serif;
    font-weight: 500;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 1.25rem 0;
}

#home .section--one p {
    margin-bottom: 1.75rem;
}

h4[lang="ar"] {
    font-size: calc(1.5rem + 20%);
    /*line-height: .85;*/
    line-height: 1;
}

[lang="ar"] {
    /*font-family: 'Mirza', cursive;*/
    font-family: 'Times New Roman', serif;
    font-size: 120%;
}

.header {
    position: relative;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('../../img/poster.jpg') 50% 50%/cover no-repeat;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
}

.header__bottom {
    text-align: center;
    margin-top: auto;
}

.header__bottom p {
    display: inline-block;
    margin: 0 .625rem .5rem;
    font-size: 1.35rem;
    color: #fff;
    text-transform: uppercase;
}

.navbar {
    padding: 1.25rem;
    color: #E6B920;
    font-weight: 600;
    font-size: 1.25rem;
    transition: background-color .35s;
}

.navbar .navbar-brand,
.nav .nav-item .nav-link {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    transition: color .25s;
}

.navbar .navbar-brand {
    font-size: 1.95rem;
}

.navbar .navbar-toggler {
    border: none;
}

.main {
    width: 100%;
    padding: 0 10%;
    margin: 0 auto;
}

#casting .swiper-scrollbar-drag {
    background: rgba(0,0,0,.25);
}

#casting .swiper-container {
    height: auto;
    padding: 0 0 4rem;
    cursor: grab;
}

#casting .swiper-wrapper {
      align-items: center;
}

.two__title {
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    margin-top: 1.75rem;
    margin-bottom: 4rem;
}

.two__grid-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 15px 30px;
}

.two__grid-item {
    text-align: center;
}

.two__grid-img {
    border-radius: 4px;
    margin-bottom: .5rem;
}

.two__grid-img img {
    max-width: 100%;
    height: auto;
    -webkit-box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
    box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
}

.two__grid-caption > div {
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 500;
}

.three__info-wrapper>p {
    font-weight: 600;
    margin-bottom: .25rem;
    font-size: 1.1rem;
}

.three__info-wrapper>p>a {
    color: inherit;
    font-weight: 600;
}

.footer {
    /*background-color: #b0b0b0;*/
	background-color: #333;
}

.footer .nav .nav-link {
    color: #fff;
}

#player {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity .45s;
}

.header.video-active #player {
    opacity: 1;
    z-index: 1;
}

#close-video {
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 50%;
    height: 42px;
    width: 42px;
    padding: 4px;
    border: 2px solid #fff;
    opacity: 0;
    transition: top .25s, opacity .25s;
    z-index: 2000;
    cursor: pointer;
}

.close-icon {
    display: inline-block;
    background-image: url(../../img/x_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-filter: contrast(4) invert(1);
    -moz-filter: contrast(4) invert(1);
    -o-filter: contrast(4) invert(1);
    -ms-filter: contrast(4) invert(1);
    filter: contrast(4) invert(1);
    width: 100%;
    height: 100%;
}

#close-video.active {
    top: 15px;
    opacity: 1;
}


/*
    SCENES
*/

#scenes .navbar-brand {
    pointer-events: none;
}

#scenes .main {
    padding: 0;
}

#scenes section:first-of-type {
    padding-top: 0;
}

.swiper-container-reduced {
    width: 100%;
    height: 30vh !important;
    margin-left: auto;
    margin-right: auto;
}

.swiper-container {
    width: 100%;
    height: 55vh;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



.gallery-top {
    background-color: #000;
}

.gallery-thumbs {
    height: 25vh;
    padding: 1.75rem 1.25rem 1.25rem;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
    background-size: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.two__title--scenes {
    margin: 1.25rem;
    color: #E6B920;
    font-weight: 600;
    font-size: 1.95rem;
}


#team{
		display:block;
		width:100% !important;
		clear:both;
		overflow:auto;
		text-align:center;		
	}
	
	.team{
		display:inline-block;
		margin:10px;
	}
	
	.team img{
		-webkit-box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
    	box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
		height:auto;
		width:auto;
		max-height:200px;
		background:#eee;
	}
	
	.team .caption{
		margin-top:10px;
		display:block;
		text-align:center;
		text-transform:uppercase;
	}
	
	.team strong{
		-webkit-box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
    	box-shadow: 4px 2px 6px rgba(0,0,0,0.3);
		width:100%;
		padding:10px;		
		background:#eee;
		margin-top:10px;
		display:block;
	}

.swiper-button-next, .swiper-button-prev {
		margin-top:-70px;
	}

/*
    MEDIA QUERIES
*/

@media(max-width: 991px) {
    .navbar {
        justify-content: initial;
        padding: .75rem .5rem;
    }

    .navbar .navbar-brand {
        order: 1;
        font-size: 1.75rem;
    }

    .navbar .navbar-toggler {
        order: 0;
    }

    .navbar .navbar-collapse {
        order: 2;
    }

    .navbar .navbar-nav {
        padding: 0 1rem;
    }

    .navbar.bg-white .navbar-toggler-icon {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    .navbar.bg-white .navbar-nav .active>.nav-link,
    .navbar.bg-white .navbar-brand:hover,
    .navbar.bg-white .navbar-brand:focus,
    .navbar.bg-white .navbar-nav .nav-link:hover,
    .navbar.bg-white .navbar-nav .nav-link:focus {
        color: #2d2d2d;
    }
}

@media(max-width: 991px) and (orientation: landscape) {
    .swiper-container {
        width: 100%;
        height: 70vh;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery-thumbs {
        height: 40vh;
        padding: 1rem;
    }
	
	
}

@media(max-width: 767px) {
    .header {
        min-height: 75vh;
    }

    .header__bottom p {
        margin: 0 .425rem .5rem;
        font-size: 1.2rem;
    }

    #close-video.active {
        top: 60px;
    }
}

@media(max-width: 576px) {
    .header {
        min-height: 60vh;
    }

    .header__bottom p {
        font-size: .95rem;
        margin: 0 .325rem .25rem;
    }
}