@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  box-sizing: border-box;
}
body {
	font-family: 'Oswald', sans-serif;
}
body > header {
	width: 100%;
	min-height: 100vh;
	position: relative;
}
#mainNav {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 70px;
    width: 100vw;
	max-width: 400px;
    background: #fff;	
	min-height: 100vh;
	left: -500px;
}
#mainNav ul {
	list-style: none;
    margin: 0;
    padding: 0;
}
#mainNav a:not(.language), li.lang {
	display: block;
	padding: 20px;
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	color: #000;
	transition: all 0.2s ease;
}
#mainNav a:hover {
	color: #fff;
	background: #f7922d;
}
.lang span {
	color: #f7922d;
	font-weight: 700;
}
.language {
	color: #000;;
}
.language:hover {
	text-decoration: none;
}
.menuButton {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10;
}
header.sticky .menuButton {
	position: fixed;
	z-index: 10;
}
.menuButton .icon-bar {
	width: 40px;
	height: 4px;
	background-color: #000;
}
#logo {
	background-color: #F7922D;
	text-align: center;
	height: 170px;
}
#logosticky {
	background-color: #F7922D;
	text-align: center;
	position: fixed;
	width: 100%;
	z-index: 7;
	height: 70px;
	box-shadow: 0px 1px 20px rgba(0,0,0,.5);
	top: 0;
	display: none;
}
#logo svg {
	width: 160px;
	position: relative;
	z-index: 2;
	transition: all 0.2s ease;
}
#logosticky svg {
	position: relative;
	top: -10px;
	height: 85px;
}
.spacer {
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 1;
}
.tcspacer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	z-index: 1;
	line-height: 0;
}
#reel {
	height: 100vh;
	min-height: 500px;
	position: relative;
	background-image: url('../images/showreel_background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
    vertical-align: middle;
}
.reel-video-container {
	display: none;
}
#reelvideo {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}
#reel .reel-text-container {
	display: flex;
	align-items: center;
    vertical-align: middle;
	width: 100%;
	justify-content: center;
}
#reel h2 {
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	color: #fff;
	text-align: right;
	font-size: 30px;
	padding-right: 15px;
}
#reel h2 span {
	display: block;
	color: #F7922D;
	font-weight: 400;
	font-size: 25px;
}
.playbtn {
	line-height:0;
	padding-left: 15px;
	cursor: pointer;
}
.playbtn svg {
	width: 80px;
}
.playbtn:hover .cls-2 {
	fill: rgba(255,255,255, .5);
}
.playbtn:hover .cls-1 {
	stroke: rgba(255,255,255, .5);
}
#slogan p {
	text-align: center;
	text-transform: uppercase;
	font-size: 27px;
	padding: 10vw;
	line-height: 30px;
}
#slogan p span {
	font-weight: 700;
	display: block;
}
#features {
	background-color: #F7922D;
}
#features .features-header {
	display: flex;
	align-items: center;
    vertical-align: middle;
	flex-wrap: wrap;
	padding-top: 30px;
}
#features .features-header .active p {
	color: #fff;
}
#features .features-header p {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	padding: 2vw;
	line-height: 14px;
}
#features .features-item {
	width: 50vw;
	text-align: center;
	padding: 1vw;
	cursor: pointer;
}
#features .feature-item-container {
	position: relative;
}
#features .feature-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 1;
}
#features .feature-item.active {
	z-index: 2;
}
#features .feature-img {
	border: 3px solid #F7922D;
	border-radius: 50%;
	margin: 0 auto;
	width: 30vw;
	height: 30vw;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#features .active .feature-img {
	border: 3px solid #fff;
}
#features .features-desc {
	position: relative;
	min-height: 50vh;
}
#features .features-video .video-container, #features .features-video .video-overlay {
	position: absolute;
    top: 0;
    bottom: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
#features .features-video .video-overlay {
	background: rgba(0,0,0,.3);
	display: flex;
	align-items: center;
    vertical-align: middle;
}
#features .features-video .feature-title, section header p {
	width: 100%;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	padding: 0 10vw;
	margin: 0;
}
section header p {
	color: #000;
	margin: 30px 0;
}
#features .features-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.feature-head {
	font-size: 15px;
	text-transform: uppercase;
	text-align: right;
	margin: 20px auto;
	font-weight: 700;
	padding: 0 20px;
}
.feature-body {
	margin: 20px auto;
	padding: 0 20px;
	font-family: Roboto;
}
.break img {
	width: 100%;
}
.projects-selector {
	display: flex;
	align-items: center;
    vertical-align: middle;
	width: 320px;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 20px;
}
.projects-selector button {
	border: 0;
	background: none;
	text-transform: uppercase;
	font-weight: 700;
}
.projects-selector button.active {
	color: #F7922D;
}
.projects-list {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.project-item {
	text-align: center;
	overflow: hidden;
}
.project-item img {
	width: 100%;
	height: auto;
	transition: all 0.2s ease
}
.project-item img:hover {
	transform: scale(1.1);
}
.projects-paginator {
	display: flex;
	align-items: center;
    vertical-align: middle;
	width: 100%;
	justify-content: center;
}
.paginatorElement {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 4px solid #ddd;
	background: #ddd;
	margin: 20px;
	cursor: pointer;
}
.paginatorElement.active {
	background: #fff;
}
footer {
	background: #000;
	position: relative;
	color: #fff;
	font-size: 20px;
	line-height: 35px;
	padding-bottom: 50px;
}
.contact {
	position: relative;
	padding-bottom: 50px;
}
.footer-slogan {
	background: #F7922D;
	position: relative;
}
.footer-slogan p {
	color: #fff;
	text-transform: uppercase;
	font-size: 40px;
	padding: 50px 20px 50px 20px;
	text-align: center;
}
#reelvideo button {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 5px;
	right: 15px;
	background: #fff;
	color: #000;
	border-radius: 50%;
	font-size: 15px;
	z-index: 15;
	border: 0;
	padding: 0;
}
#reelvideo button svg {
	width: 25px;
	height: 25px;
	fill: #f7922d;
}
#pic1 .row {
	margin: 50px 0;
}
#pic1 p:not(.title) {
	font-family: Roboto;
}
#pic1 header p.pictitle {
	font-family: Oswald;
}
#pic1 strong {
	font-family: Oswald;
}
.logocontl {
	text-align: left;
}
.logocontr {
	text-align: right;
}
.logocont img, .logocont svg {
	width: 100%;
	max-width: 200px;
}
.pic1item {
	padding: 0 20px;
	margin-bottom: 20px;
}
.pic1item img {
	max-width: 100%;
}
.pic1item p.title {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 15px 0 5px 0;
}
#preloader {
	width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.prevF svg, .nextF svg {
	width: 20px;
	height: 40px;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform:translate(0,-50%);
	cursor: pointer;
}
.prevF svg {
	left: 5%;
}
.nextF svg {
	right: 5%;
}
.prevF svg:hover, .nextF svg:hover {
	opacity: .8;
}
#preloader img {
	width: 100px;
	height: 100px;
	margin: 20px;
	display: inline-block;
}

#menuModal {
	width: 100%;
    height: 100%;
    background: rgba(247,146,45,.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
	display: none;
}


.menuButton span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menuButton span:first-child
{
  transform-origin: 0% 0%;
}

.menuButton span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
.menuButton .active span
{
  opacity: 1;
  transform: rotate(-45deg) translate(0px, 5px);
}
.menuButton .active span:nth-last-child(2)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.menuButton .active span:nth-last-child(3)
{
  transform: rotate(45deg) translate(2px, -8px);
}

.mml {
	text-align: center;
	margin-bottom: 30px;
}
.mml svg, .mml img {
	max-width: 200px;
}

.WebT {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.WebTlogo, .WebTtext {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}
.WebTtext {
	padding-top: 10px;
	-webkit-transform: translateX(-75px);
	-moz-transform: translateX(-75px);
	transform: translateX(-75px);
	opacity: 0;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}
.WebT:hover .WebTtext {
	opacity: 1;
}
.ads-list {
	display: flex;
	flex-wrap: wrap;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}
.ads-list .ad-item {
	max-width: 20%;
}
.ads-list img {
	max-width: 100%;
}
.ads-list img:hover {
	opacity: .8;
}
.iconwraper {
}
.iconwraper svg {
	width: 40px;
	height: 40px;
}
.contactdetails {
	display: flex;
    justify-content: center;
    align-items: center;
	height: 300px;
	text-transform: uppercase;
}
.contact a {
	color: #fff;
}
.contact a:hover {
	color: #f7922d;
	text-decoration: none;
}
.copyright {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 10px;
}
@media only screen and (max-width: 747px) {
	.feature-head, .feature-body {
		padding: 0 10vw;
	}
}
@media only screen and (min-width: 480px) {
	.ads-list {
	}
	.ads-list .ad-item {
		max-width: 15%;
	}
}
@media only screen and (min-width: 768px) {
	#features .features-desc {
		min-height: 70vh;
	}
	#features .features-header {
		flex-wrap: nowrap;
	}
	#features .features-item {
		width: 25%;
	}
	#features .feature-img {
		width: 150px;
		height: 150px;
	}
	.navbar-toggle {
		display: block;
	}
	.ads-list {
	}
	.ads-list .ad-item {
		max-width: 10%;
	}
}
@media only screen and (min-width: 1100px) {
	#features .feature-img {
		width: 200px;
		height: 200px;
	}
	.ads-list .ad-item {
		max-width: 10%;
		padding: 0 10px;
	}
}
@media only screen and (min-width: 1250px) {
	#features .features-desc {
		min-height: 80vh;
	}
}
#insta {
	padding: 50px 0 100px 0;
}
#insta .instalink p {
	text-align: center;
}
#insta .instagram_username {
	display: none !important;
}
#insta .instagram_gallery img {
	transition: all 0.2s ease
}
#insta .instagram_gallery img:hover {
	opacity: .9;
}

@media
  only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (   min--moz-device-pixel-ratio: 2),
  only screen and (     -o-min-device-pixel-ratio: 2/1),
  only screen and (        min-device-pixel-ratio: 2),
  only screen and (                min-resolution: 192dpi),
  only screen and (                min-resolution: 2dppx) { 
    .spacer {
		top: -1px;
	}
	.tcspacer {
		bottom: -1px;
	}
}
@media
  only screen and (-webkit-min-device-pixel-ratio: 3),
  only screen and (   min--moz-device-pixel-ratio: 3),
  only screen and (     -o-min-device-pixel-ratio: 3/1),
  only screen and (        min-device-pixel-ratio: 3),
  only screen and (                min-resolution: 458dpi),
  only screen and (                min-resolution: 3dppx) { 
    .spacer {
		top: -2px;
	}
	.tcspacer {
		bottom: -2px;
	}
}