@charset "utf-8";

body {
	background-color: black;
	margin: 0;
	color: white;
}

h1, h2, h3, h4, h5 {
	color: #a4a4a4;
	font-weight: 400;
	font-family: 'Ropa Sans', sans-serif;
}

h1 {
	text-align: center;
	font-size: 30pt;
	margin: 3% 0;
}

p {
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration: none;
	color: white;
	transition: color 200ms ease;
}

a:hover {
	color: #a4a4a4;
}

header {
	height: 100vh;
	position: relative;
}

header h1 {
	color: white;
	font-size: 40pt;
	font-style: italic;
    font-weight: bold;
}

#header-content {
	position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -55%);
	text-align: center;
	font-family: 'Ropa Sans', sans-serif;
}

#header-content img {
	width: 500px;
	height: auto;
}

#background-video-wrapper {
	position: absolute;
	top: 0;
	bottom:0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

#header-video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header-links {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header-links li {
	font-size: 18px;
	padding: 0 10px;
	display: inline-block;
	border-right: 2px solid #a4a4a4;
}

.header-links li:last-child {
	border-right: none;
}

#scroll {
	font-family: 'Ropa Sans', sans-serif;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 15pt;
}

#nav-btn {
	width: 50px;
	height: 50px;
	color: white;
	position: absolute;
	left: 12.5px;
	top: 12.5px;
	border-radius: 100px;
}

nav {
	width: 100%;
	position: fixed;
	height: 100px;
	z-index: 9999;
	top: 0;
}

#logo-img-small {
	position: absolute;
	left: 0;
	right: 0;
	margin: 25px auto;
	display: none;
}

#nav-centered-content {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	visibility: hidden;
}

#ul-nav-wrapper {
    font-size: 15pt;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-family: 'Ropa Sans', sans-serif;
}

#ul-nav-wrapper .ul-category {
	margin: 0;
	padding: 0;
	text-align: left;
	list-style-type: none;
}

#ul-nav-wrapper .category {
	margin: 0;
	color: #a4a4a4;
    font-size: 22px;
}

#ul-nav-wrapper li {
	margin: 7px 10px;
    font-size: 25px;
}

.social-links {
	position: fixed;
	bottom: 10px;
	text-align: center;
	width: 100%;
	visibility: hidden;
}

nav .social-links .social-buttons-ul {
	margin: 0;
	padding: 0;
	display: inline-block;
	list-style-type: none;
}

.social-links li {
	padding: 0 10px;
	display: inline-block;
}

#showreel-container {
	margin: 50px 0;
	height: 70vh;
	position: relative;
	background-size: 100%;
    background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	cursor: none;
}

#showreel-container a {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#showreel-container h1 {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
	font-size: 25pt;
	color: white;
    text-align: center;
}

#play-btn {
    background-image: url(../media/icons/play-btn.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    background-color: #040404d4;
    height: 50px;
    left: 50%;
    top: 50%;
    border-radius: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
}

.button-container {
	height: 75px;
	position: relative;
	text-align: center;
	font-family: 'Ropa Sans', sans-serif;
	z-index: 0;
}

.button-container a {
	position: absolute;
	width: 200px;
	height: 75px;
	z-index: 2;
	left: calc(50% - 100px);
	right: calc(50% - 100px);
}

.button-text {
    width: 200px;
    color: white;
    height: 50px;
	font-size: 15pt;
    padding-top: 25px;
	position: absolute;
	top: 0;
	z-index: 1;
	left: calc(50% - 100px);
	right: calc(50% - 100px);
	transition: color cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition-duration: 0.4s;
}

.button-bg-animate {
	width: 200px;
    background: #a4a4a4;
    height: 2px;
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    right: calc(50% - 100px);
    margin-top: 73px;
	z-index: 0;
	transition: all cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition-duration: 0.4s;
}

.button-container a:hover + .button-text {
	color: #a4a4a4;
}

.button-container a:hover ~ .button-bg-animate {
	height: 75px;
	margin-top: 0px;
    background-color: white;
}

footer {
	height: 60vh;
	padding: 20vh 0;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	position: relative;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.25);
}

.footer-links {
	font-family: 'Ropa Sans', sans-serif;
	border-right: none !important;
	padding: 0 25px !important;
}

.footer-socials {
	position: initial;
	visibility: visible;
}

footer p {
	text-align: center;
	color: #a4a4a4;
}

#footer-wrapper {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}

footer p, .footer-socials, .header-links {
	margin: 50px 0;
}

.footer-button-container > * {
    font-weight: bold;
}

.footer-button-container {
	position: absolute !important;
    left: 50% !important;
    top: 50%;
    transform: translate(-50%, -50%);
	width: 200px;
	background-color: #a4a4a4;
}

.footer-button-container .button-text {
	margin-top: 0px;
}

#contact-section {
	text-align: center;
}

#contact-form-wrapper {
	border-radius: 5px;
    background-color: #191919;
    padding: 20px;
    font-family: 'Ropa Sans', sans-serif;
    font-size: 24px;
	text-align: left;
	margin: 5% auto;
	max-width: 800px;
}

#contact-form input, textarea {
	font-family: 'Ropa Sans', sans-serif;
	width: 100%;
	font-size: 17px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

#contact-form-wrapper input[type=submit] {
	font-family: 'Ropa Sans', sans-serif;
	background-color: #575757;
    color: white;
	font-size: 25px;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.left {
	float: left;
	width: 48%;
}

.right {
	float: right;
	width: 48%;
}

#contact-form-wrapper input[type=submit]:hover {
	background-color: #a4a4a4;
}

#vfx-breakdowns {
	margin: 5% 0;
	color: #bdbdbd;
}

#about-container {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto 5% auto;
}

#about-container p {
	text-align: justify;
	font-size: 20px;
}
.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
}

#awards-table {
	width: 100%;
    max-width: 90%;
    margin-bottom: 1rem;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
	border-collapse: collapse;
}

.tr-header {
	border-bottom: 2px solid #a4a4a4;
}

#awards-table th {
	text-align: inherit;
}

#awards-table th, #awards-table td {
	padding: 0.75rem;
	vertical-align: middle;
}

.table-title {
	font-family: 'Ropa Sans', sans-serif;
    font-size: 24px;
    color: #55545a;
    font-weight: bold;
}

.table-text {
	font-family: 'Ropa Sans', sans-serif;
    font-size: 24px;
    color: #bdbdbd;
}

#news-container {
	margin: 5% 0;
}

#posters-wrapper {
	width: 90%;
	max-width: 1590px;
	margin: 0 auto;
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
}

.poster {
	margin: 5% 10px;
	width: 310px;
	height: 410px;
	padding: 20px;
	position: relative;
	border: 2px solid #a4a4a4;
}

.poster a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	transition: all 500ms;
}

.poster a:hover {
	background-size: 110%;
}

.poster h2 {
	position: absolute;
	bottom: 20%;
	font-size: 25pt;
	color: white;
}

.span-wrapper {
	font-size: 12pt;
	position: absolute;
	bottom: 50px;
	font-family: 'Ropa Sans', sans-serif;
}

.span-dash {
	position: absolute;
	bottom: 45px;
	height: 2px;
	width: 73.58px;
	background: white;
	transition: width 500ms;
}

.poster a:hover ~ .span-dash, .poster h2:hover ~ .span-dash, .span-wrapper:hover ~ .span-dash {
	width: 90px;
}

#container {
	margin: 5% 0;
}

#wrapper {
	max-width: 90%;
	width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.item-container {
	max-width: 90%;	
	width: 650px;
	height: 350px;
	position: relative;
	margin-bottom: 10%;
}

.item-container a {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.item-title {
    position: absolute;
    bottom: -50px;
    font-family: 'Ropa Sans', sans-serif;
    font-size: 15pt;
    height: 50px;
    padding-top: 15px;
    padding-left: 15px;
    transition: height 0.5s ease;
    background: #5a5b60;
    width: calc(100% - 15px);
}

.item-container a:hover + .item-title {
	height: 60px;
}

#projects-container {
	margin: 5% 0;
}

#projects-wrapper {
	width: 90%;
	max-width: 1540px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.project-box {
	margin: 10px;
	width: 232px;
	height: 326px;
	border: 2px solid #a4a4a4;
	position: relative;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.project-box a {
	width: 100%;
	height: 100%;
	z-index: 3;
	position: absolute;
}

.project-box h2 {
	position: absolute;
	width: calc(100% - 30px);
	bottom: 50px;
	padding: 0 15px;
	text-align: center;
	color: white;
	opacity: 0;
	z-index: 2;
	transition: all 250ms ease;
}

.project-box a:hover + h2 {
	opacity: 1;
	bottom: 130px;
}

.project-box-black {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: background 250ms ease;
}

.project-box a:hover ~ .project-box-black {
	background: rgba(0,0,0,0.30);
}

#article-header {
	background-position: center;
	background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.25);
}

#article-container {
	color: #bdbdbd;
	font-size: 20px;
	padding: 0 50px;
    margin-bottom: 74px;
}

#article-container p {
	text-align: justify;
	line-height: 20pt;
	width: 90%;
	max-width: 1000px;
	margin: 2% auto;
}

.nodata-p {
	color: black;
	width: 100%;
	text-align: center;
}

.latest-news-container {
	height: 700px;
	overflow: hidden;
	background: black;
	width: 100%;
	position: relative;
}

.latest-news-container ul {
	height: 100%;
	width: auto;
	margin: 0;
	padding: 0;
	display: inline-flex;
	list-style-type: none;
}

.latest-news-container li {
    display: inline-block;
	width: 100vw;
	height: 700px;
}

.latest-news-li-inner {
	height: 500px;
    width: 800px;
    margin: 0 auto;
    position: relative;
	margin-left: 200px;
	margin-top: 100px;
}

.latest-news-li-image {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
}

.latest-news-container li h1 {
	position: absolute;
    margin: 0;
    padding: 0;
    max-width: 350px;
    text-align: left;
    right: -300px;
    top: 150px;
    font-weight: bold;
    color: white;
}

.latest-news-link {
    position: absolute;
    right: -150px;
    top: 350px;
    height: 50px;
}

.latest-news-link > *  {
    width: 125px !important;
}

.latest-news-prev, .latest-news-next {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 5%;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: background-size 250ms;
}

.latest-news-prev {
	left: 0;
	background-image: url('../media/icons/arrow_prev.png');
}

.latest-news-prev:hover, .latest-news-next:hover {
	background-size: 60%;
}

.latest-news-next {
	right: 0;
	background-image: url('../media/icons/arrow_next.png');
}

.latest-news-indicator-container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
}

.latest-news-indicator-container ul {
	list-style-type: none;
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 0;
}

.latest-news-indicator-container li {
	background: gray;
	display: inline-block;
	height: 3px;
	width: 10%;
}

#carousel-container {
	height: 800px;
	margin: 0 auto 50px auto;
	position: relative;
	overflow: hidden;
	background-color: black;
}

#slideShow {
	list-style: none;
	margin: 0;
	padding: 0;
	width: auto;
	display: inline-flex;
}

#slideShow li {
	min-height: 800px;
	position: relative;
	display: inline-block;
}

#slideShow li img {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}

#btn-prev, #btn-next {
	position: absolute;
	width: 5%;
	top: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
}

#btn-prev {
	left: 0;
	background-image: url("../media/icons/arrow_prev.png");
}

#btn-next {
	right: 0;
	background-image: url("../media/icons/arrow_next.png");
}

#carousel-item-indicator-container {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
}

#indicatorUl {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.item-indicator {
	background: gray;
	height: 3px;
	width: 10%;
	display: inline-block;
}

.box-container {
	max-width: 90%;
	width: 1000px;
	margin: 50px auto;
	overflow: hidden;
	position: relative;
}

.box-container-img-slide {
	width: 50%;
	height: 100%;
	float: left;
	overflow: hidden;
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none; /* For Microsoft */
    -moz-user-select: none; /* For Mozilla */
    user-select: none; /* Make div non selectable */
}

.box-container-img-slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.box-move-btn {
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 35px);
	background-image: url(../media/icons/left_right_arrows.png);
	background-size: 83%;
	background-position: center;
	background-repeat: no-repeat;
	height: 46px;
	width: 66px;
	border: 2px solid white;
	background-color: #9a9a9a;
	border-radius: 100px;
	cursor: move;
}

.behind {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 0;
	top: 0;
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none; /* For Microsoft */
    -moz-user-select: none; /* For Mozilla */
    user-select: none; /* Make div non selectable */
}

#dashboard-link {
    font-size: 13pt;
    margin: 0 0 10px 0;
    display: inline-block;
    font-family: 'Ropa Sans', sans-serif;
}

#post-date {
    margin: 25px 0;
    display: block;
    text-align: right;
    color: #bbbbbb;
    font-family: 'Roboto', sans-serif;
}

/* 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px){
	#showreel-container {
		height: 434px;
	}
	
	#carousel-container {
		height: 600px;
	}
	
	#slideShow li {
		min-height: 600px;
	}
	
	.latest-news-li-inner {
		margin: 50px auto;
	}
	
	.latest-news-container li h1 {
		max-width: unset;
		text-align: center;
		top: 0;
		right: 0;
		left: 0;
		background-color: rgba(0,0,0,0.79);
	}
	
	.latest-news-link {
		right: 50%;
		left: 50%;
		top: 85%;
	}
	
	#projects-wrapper {
		justify-content: space-around;
	}
	
	#wrapper {
		justify-content: center;
	}
	
	#posters-wrapper {
		justify-content: space-around;
	}
}

/*SCROLL BAR*/
/* width */
::-webkit-scrollbar {
  	width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
 	background: #5d5d5d; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  	background: #cecece;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  	background: white; 
}

/* 320px - 768px portrait */
@media (orientation: portrait) and (min-width: 320px) and (max-width: 767px){
	h1 {
		margin: 10% 0;
		font-size: 20pt;
	}
	
	#header-content {
		top: 50%;
	}
	
	#header-content img {
		width: 300px;
	}
	
	.header-links li {
		font-size: 20px;
	}
	
	#showreel-container {
		height: 181px;
	}
	
	#showreel-container h1 {
		font-size: 15pt;
		bottom: 0;
		margin: 1% 0; 	
	}
	
	.latest-news-container {
		height: 450px !important;
	}
	
	#carousel-container {
		height: unset;
	}
	
	#slideShow li {
		min-height: unset;
		height: 250px;
	}
	
	.latest-news-li-inner {
		height: 100%;
		width: 100%;
		margin: 0;
	}
	
	.latest-news-container li h1 {
		max-width: unset;
		text-align: center;
		top: unset;
		left: 0;
		right: 0;
		bottom: -50px;
		font-size: 12pt;
		padding: 0 5px;
	}
	
	.latest-news-link {
		left: 50%;
		right: 50%;
		top: unset;
		bottom: -125px;
	}
	
	#btn-prev, #btn-next {
		width: 10%;
		height: 250px;
	}
	
	footer h1 {
		font-size: 25pt !important;
	}
	
	#projects-wrapper {
		justify-content: space-around;
	}
	
	#wrapper {
		justify-content: center;
	}
	
	#posters-wrapper {
		justify-content: space-around;
	}
	
	.item-container {
		width: 300px;
		height: 161px;
		margin-bottom: 50px;
	}
	
	.item-container a:hover + .item-title {
		height: 25px;
	}
	
	.item-title {
		bottom: -25px;
		height: 25px;
		font-size: 10pt;
		padding-left: 10px;
		width: calc(100% - 10px);
	}
	
	.left, .right {
		float: unset;
		width: unset;
	}
	
	#article-container {
		padding: 0 10px;
	}
	
	footer .header-links {
		margin: 35px 0;
	}
	
	.footer-socials {
		margin: 10px 0;
	}
	
	footer p {
		margin: 10px 0;
	}
}

/* 320px - 1024px landscape */
@media (orientation: landscape) and (min-width: 568px) and (max-width: 1034px){
	
	h1 {
		margin: 10% 0;
		font-size: 20pt;
	}
	
	#header-content {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	
	#header-content p {
		min-width: 450px;
	}
	
	#header-content img {
		width: 250px;
	}
	
	.header-links {
		margin: 10px 0;
		min-width: 535px;
	}
	
	#scroll {
		display: none;
	}
	
	nav .social-links {
		display: none;
	}
	
	#showreel-container h1 {
		font-size: 15pt;
		bottom: 0;
	}
	
	#play-btn {
		display: none !important;
	}
	
	.latest-news-container {
		height: 450px !important;
	}
	
	#carousel-container {
		height: unset;
	}
	
	#slideShow li {
		min-height: unset;
		height: 250px;
	}
	
	.latest-news-li-inner {
		height: 100%;
		width: 100%;
		margin: 0;
	}
	
	.latest-news-container li h1 {
		max-width: unset;
		text-align: center;
		top: unset;
		left: 0;
		right: 0;
		bottom: -50px;
		font-size: 12pt;
		padding: 0 5px;
	}
	
	.latest-news-link {
		left: 50%;
		right: 50%;
		top: unset;
		bottom: -125px;
	}
	
	#btn-prev, #btn-next {
		width: 10%;
		height: 250px;
	}
	
	footer {
		height: calc(100vh - 20px);
		padding: 10px 0;
	}
	
	.footer-button-container {
		top: 45%;
		transform: translate(-50%, -55%);
	}
	
	footer h1 {
		margin: 25px 0;
		font-size: 30pt !important;
	}
	
	footer .header-links {
		margin: 5px 0;
	}
	
	.footer-links {
		padding: 0 10px !important;
	}
	
	.footer-socials {
		margin: 10px 0;
	}
	
	footer p {
		margin: 10px 0;
	}
	
	#projects-wrapper {
		justify-content: space-around;
	}
	
	#wrapper {
		justify-content: space-around;
	}
	
	#posters-wrapper {
		justify-content: space-around;
	}
	
	#article-container {
		padding: 0 10px;
	}
	
	.item-container {
		width: 465px;
		height: 250px;
		margin-bottom: 50px;
	}
	
	.item-container a:hover + .item-title {
		height: 25px;
	}
	
	.item-title {
		bottom: -25px;
		height: 25px;
		font-size: 10pt;
		padding-left: 10px;
		width: calc(100% - 10px);
	}
}

@media (orientation: landscape) and (min-width: 1035px) and (max-width: 1499px){
    
    #wrapper {
        justify-content: center;
    }
    
	.item-container {
		width: 465px;
		height: 250px;
		margin-bottom: 50px;
	}
	
	.item-container a:hover + .item-title {
		height: 25px;
	}
	
	.item-title {
		bottom: -25px;
		height: 25px;
		font-size: 10pt;
		padding-left: 10px;
		width: calc(100% - 10px);
	}
}

/* 320px - 424px portrait */
@media (orientation: portrait) and (min-width: 320px) and (max-width: 424px){
	
	.poster {
		width: 228px;
		height: 300px;
	}
	
	#logo-img-small {
		display: none !important;
	}
    
    #post-date {
        text-align: center;
    }
}

/* 4K landscape */
@media (orientation: landscape) and (min-width: 2100px){
	.latest-news-li-inner {
		margin-left: 400px;
	}
}