body{
	padding: 0;
	margin: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	font-family: sans-serif;
	font-family: 'Oswald', sans-serif;
	background-color:#000;
}
header *{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

header{
	/*height: 120px;*/
	width: 100%;
	position: fixed;
	top: 0px;
	/*background-color:#000;*/
	/*box-shadow: 0px 2px 5px rgba(5,0,0,.4);*/
	padding-top: 10px;
	padding-bottom: 10px;
	z-index:1;
}
header .logo{z-index:1;}
.header-topbg{ background-color: rgba(0, 0, 0, .9); }
.timlogo{
	width: 200px;
	display: block;
	/*margin: 0 auto;*/
}
.head{
	/*position: absolute;
	top: 35px;
	right: 50px;*/
	z-index:1;
}
.head .tile{
	display: inline-block;
	/*height: 50px;
	width: 50px;*/
	margin-left: 10px;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.head .tile.socialmedia{
	color: #fff;
	font-size: 22px;
	text-align: center;
	line-height: 50px;
	/*position: relative;
	top: -6px;*/
}
header.clicked .head .tile.socialmedia{
	color: white;
}
.head .burger{
	/*margin-left: 25px;*/
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
}
.meat{
	height: 20px;
	width: 30px;
	position: relative;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.meat .line{
	height: 4px;
	width: 30px;
	background-color: #fff;
	border-radius: 3px;
	position: absolute;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.meat .line.one{top: 0px; left: 0px;}
.meat .line.two{top: 8px; left: 0px;}
.meat .line.three{bottom: 0px; left: 0px;}

header.clicked .burger .line{
	background-color: #fff;
}
header.clicked .burger .line.one{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 18px;
}
header.clicked .burger .line.two{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 18px;
}
header.clicked .burger .line.three{
	opacity: 0;
}
header.clicked .head .burger .meat{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
header.clicked .burger:hover .meat{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.nav-modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	pointer-events: none;
}
header.clicked .nav-modal{
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}

.nav-modal .blob{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 0 auto;
	background-color: #480003;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: all .3s ease-in;
}
header.clicked .nav-modal .blob{
	width: 100vw;
	height: 100vh;
	border-radius: 0px;
	background-position:55% 50%;
	background-repeat:no-repeat;
}
@media screen and (max-width: 580px){
	header.clicked .nav-modal .blob{
		background-position:80% 30%;
		background-repeat:no-repeat;
	}
}

nav{
	position: fixed;
	left: 20%;
	top: 40%;
	color: white;
}
nav a{
	color: #fff;
	text-decoration: none;
	font-size: 30px;
	font-weight:600;
	text-transform:uppercase;
}
nav a:hover{
	color:#ff9100;
}
nav ul li{
	list-style: none;
	text-align: right;
	border-right: 6px solid white;
	padding-bottom: 10px;
	padding-right: 10px;
	position: relative;
}
nav{
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-webkit-transition-delay: .3s;
	-moz-transition-delay: .3s;
	-o-transition-delay: .3s;
	transition-delay: .3s;
}
header.clicked nav{
	opacity: 1;
}

nav ul li ul{
	position: absolute;
	right: -300px;
	top: 0px;
	display: none;
	width: 285px;
	height: 270px;
	overflow-x: hidden;
	overflow-y: auto;
	text-align:justify;
}
nav ul li ul li{
	border: none;
	padding-bottom: 0px;
	padding-left: 0px;
	height:auto;
	width: 100%;
}
nav ul li ul li a{
	display: block;
	font-size: 16px;
	text-align: left;
	padding: 5px 10px;
}
nav ul li.selected ul{
	display: block;
}

nav ul li.notselected a{
	opacity: .5;
}
nav ul li.selected ul li a{
	opacity: 1;
}

@media screen and (max-width:820px){
	/*.timlogo{margin-left: 50px;}*/
}
@media screen and (max-width:580px){
	.timlogo{
		width: 130px; 
		/*padding-top: 30px;*/
	}
	nav {
		left: 3%;
		top: 30%;
	}
	nav ul li a{
		font-size: 16px;
	}
	nav ul li ul{
		right: -230px;
		width: 223px;
		height: 170px;
	}
	nav ul li ul li{
		/*height: 40px;*/
	}
	nav ul li ul li a{
		font-size: 11px;
		/*height: 40px;*/
	}
}
@media screen and (max-width:500px){
	/*.timlogo{display: block;}*/
}
@media screen and (max-width:320px){
	header .head .tile .socialmedia{
		display: none;
	}
}

/*******************************
			video-bg
********************************/

.fullscreen-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    z-index: -100;
	
	width: 100%;
    min-height: 100%;
	
	background-size: cover;
    background-position: center;
	will-change: transform,opacity,filter;
	backface-visibility: hidden;
}

.fullscreen-bg__video {
    position: absolute;
	display:block;
    top: 0;
    left: 0;
	height: 100%;
    min-width: 100%;
    /*width: 100%;
    height: auto;*/
	/*min-height: 100%;*/
	z-index: -100;
	/*background-size:cover;*/
	object-fit: cover;
}


.video-bg{}
.video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
.video-bg .landing-content {
	position: relative;
	/*top: 50%;
	left: 50%;*/
	width: 100%;
	z-index:-1;
	/*ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);*/
}
.video-bg .landing-content h1{
	color:#fff;
	font-size:60px;
}
.video-bg .landing-content .btn-one{
	background:transparent;
	padding: 1px 30px 1px 5px;
	color:#fff;
	border:2px solid #480003;
	border-radius: 50px;
	font-size:20px;
	text-transform:uppercase;
	display: inline-flex;
    vertical-align: middle;
	
}
.video-bg .landing-content .btn-one:hover{
	background:#fff;
	color:#480003;
}
.video-bg .landing-content .btn-one i{
	padding-right: 10px;
	color:#480003;
	font-size:32px;
}


.video-bg #video-container {
	/*position: relative;*/
	/*top: 50%;
	left: 50%;*/
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 100%;
	z-index: -100;
	/*-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);*/
	background: url(../images/2-6-uai-516x258.jpg) no-repeat;
	background-size: cover;
}
.video-bg .overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -11 !important;
   /* transition: all 1s;
    transform: translate(0, 0%);*/
    opacity: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#03000000', GradientType=0);
}

/*******************************
			video-bg2
********************************/
.video-bg2{
	text-align: center;
	/*background:url(../images/top-bg.jpg) center center no-repeat;*/
	/*background:url(../images/ap-bg.jpg) center center no-repeat;
	background-size:cover;*/
}
.video-bg2 .centered{
	/*height:700px;*/
	padding:150px 0;

    /*background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);*/
	/*background: -webkit-linear-gradient(top,  rgb(0 255 109 / 30%) 0%, rgb(255 238 0 / 60%) 100%);
	background: linear-gradient(to bottom, rgb(0 255 109 / 30%) 0%, rgb(255 238 0 / 60%) 100%);*/
	
	
	
}
.video-bg2 .centered h1{
	color:#000;
	font-size:35px;
	font-weight:600;
}
.video-bg2 .centered .btn-one, .btn-home-events {
	background:transparent;
	/*padding: 1px 30px 1px 5px;*/
	padding: 5px 15px;
	color:#fff;
	border:2px solid #ff9100;
	border-radius: 50px;
	font-size:20px;
	text-transform:uppercase;
	display: inline-flex;
    vertical-align: middle;
	background:#01552f;
}
.video-bg2 .centered .btn-one:hover, .btn-home-events:hover{
	background:#fff;
	color:#ff9100;
}
.video-bg2 .centered .btn-one i, .btn-home-events i{
	padding-right: 10px;
	color:#ff9100;
	font-size:32px;
}
.video-bg2 .centered  .overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*z-index: -11 !important;*/
    transition: all 1s;
    transform: translate(0, 0%);
    opacity: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#03000000', GradientType=0);
}
@media screen and (max-width:768px){
	.video-bg2 .centered{
		/*height:600px;*/
		padding:50px 0;
		/*background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
		background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);*/
	}
	.video-bg2 .centered h1{
		/*color:#fff;*/
		font-size:25px;
		
	}
}



/*******************************
		about-us
********************************/
.about-us{
	background:#000000;
	padding-top: 50px;
	padding-bottom: 50px;
	/*background: url(../images/about-bg.jpg) center center no-repeat;*/
	background: url(../images/newbg.jpeg) center center repeat;
    background-attachment:fixed;
	/*background-size: cover;*/
}
.about-us .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.about-us .section-title h1 span{
    color: #ff9100;
}
.about-us .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.about-us .section-title h5::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ff9100;
    margin: 4px 10px;
}
.about-us p{
	color: #000;
}
@media screen and (max-width:768px){
	.about-us .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #ff9100;
		margin: 4px 10px;
	}
}



/******************************
		portfolio 
******************************/
.portfolio{
	/*padding-bottom:50px;*/
	padding-top:50px;
	background:#000000;
}
.portfolio .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.portfolio .section-title h1 span{
    color: #480003;
}
.portfolio .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.portfolio .section-title h5::after {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #ff9100;
    margin: 4px 10px;
}
.portfolio .section-title h5::before {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #ff9100;
    margin: 4px 10px;
}
.portfolio p{
	color: #aaaaaa;
}
.portfolio #timeline {
  display: flex;
  /*background-color: #031625;*/
}
.portfolio #timeline:hover .tl-item {
  /*width: 23.3333%;*/
}
.portfolio .tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 500px;
  min-height: 300px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
}
.portfolio .tl-item:before, .portfolio .tl-item:after {
  transform: translate3d(0, 0, 0);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.portfolio .tl-item:after {
	
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.portfolio .tl-item:before {
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.portfolio .tl-item:hover {
  width: 50% !important;
}
.portfolio .tl-item:hover:after {
  opacity: 0;
}
.portfolio .tl-item:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}
.portfolio .tl-item:hover .tl-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.portfolio .tl-item:hover .tl-bg {
  filter: grayscale(0);
}
.portfolio .tl-item .tl-bg {
  filter: grayscale(0);
}
.portfolio .tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  /*position: relative;*/
  position: absolute;
  z-index: 111;
  text-align: center;
  margin: 0 1.618em;
 /* top: 50%;*/
 bottom:5%;
  opacity: 0;
}
.portfolio .tl-content h1 {
  /*font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-transform: uppercase;
  color: #480003;
  font-size: 25px;
  font-weight: 600;
}
.portfolio .tl-year {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  border-top: 1px solid #ff9100;
  border-bottom: 1px solid #ff9100;
}
.portfolio .tl-year p {
  /*font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.728rem;
  line-height: 0;*/
  font-weight: 600;
  margin-bottom:0;
  text-align:center;
  color:#fff;
}
.portfolio .tl-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transition: filter 0.5s ease;
  filter: grayscale(100%);
}
@media screen and (max-width:768px){
	.portfolio  .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
	.portfolio  .section-title h5::before {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
	.portfolio #timeline {
		display:block;
	}
	.portfolio .tl-item {
		transform: translate3d(0, 0, 0);
		position: relative;
		width: 100%;
		height: auto;
		min-height: 400px;
		color: #fff;
		overflow: hidden;
		transition: width 0.5s ease;
	}
	.portfolio .tl-item:hover {
		width: 100% !important;
	}
}


/*********************************
			g-imgaes
**********************************/
.g-imgaes{
	padding-bottom:40px;
	padding-top:40px;
	background:#000;
	background: url(../images/bg-all-in.jpg) center bottom no-repeat;
    background-attachment:fixed;
}
.g-imgaes .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.g-imgaes .section-title h1 span{
    color: #480003;
}
.g-imgaes .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.g-imgaes .section-title h5::after {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #480003;
    margin: 4px 10px;
}
.g-imgaes .section-title h5::before {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #480003;
    margin: 4px 10px;
}
.g-imgaes p{
	color: #aaaaaa;
}
.g-imgaes .slick-slide {
    margin:5px;
}
@media screen and (max-width:768px){
	.g-imgaes .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
	.g-imgaes .section-title h5::before {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
}


/******************************
		get-in-touch
*******************************/
.get-in-touch{
	padding-bottom:50px;
	padding-top:50px;
	background:#0b0b0b;

}
.get-in-touch .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
	margin-bottom:0;
}
.get-in-touch .section-title h1 span{
    color: #ff9100;
}
.get-in-touch .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.get-in-touch .section-title h5::after {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #ff9100;
    margin: 4px 10px;
}
.get-in-touch .section-title h5::before {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #ff9100;
    margin: 4px 10px;
}
.get-in-touch p{
	color: #aaaaaa;
}
@media screen and (max-width:768px){
	.get-in-touch .section-title h1{
		
	}
	.get-in-touch .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #ff9100;
		margin: 4px 10px;
	}
	.get-in-touch .section-title h5::before {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #ff9100;
		margin: 4px 10px;
	}
}
/******************************
		clients
*******************************/
.clients{
	padding-bottom:50px;
	padding-top:50px;
	background:#0b0b0b;
	background: url(../images/about-bg.jpg) center center no-repeat;
    /*background-attachment:fixed;*/
	background-size: cover;
}
.clients .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
	margin-bottom:5px;
}
.clients .section-title h1 span{
    color: #480003;
}
.clients .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.clients .section-title h5::after {
    content: "";
    width: 80px;
    height: 1px;
    display: inline-block;
    background: #480003;
    margin: 4px 10px;
}
.clients .section-title h5::before {
	content: "";
	width: 80px;
	height: 1px;
	display: inline-block;
	background: #480003;
	margin: 4px 10px;
}
.clients .clients-wrap {
	border-top: 1px solid #a41614;
	border-left: 1px solid #a41614;
	margin-bottom: 30px;
}

.clients .client-logo{
	padding: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-right: 1px solid #a41614;
	border-bottom: 1px solid #a41614;
	overflow: hidden;
	background: #fff;
	height: 100px;
}

.clients .client-logo img {
	transition: all 0.4s ease-in-out;
}

.clients img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

/* Main CSS */
.clients .grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.clients .grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*border-radius: 5px;*/
}

.clients .grid-wrapper {
	display: grid;
	grid-gap: 2px;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	/*grid-auto-rows: 200px;*/
	grid-auto-flow: dense;
}
.clients .grid-wrapper .wide {
	grid-column: span 2;
}
.clients .grid-wrapper .tall {
	grid-row: span 2;
}
.clients .grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}


@media screen and (max-width:768px){
	.clients .section-title h1{
		
	}
	.clients .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
	.clients .section-title h5::before {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
}



/******************************
		footer
*******************************/
.footer{
	background: rgb(11, 11, 11);
	padding-top:50px;
}
.footer .footer-info1{
	display:table;
	width:100%
}
.footer .footer-info .footer-title{
	color:#fff;
	font-weight:600;
	font-size:22px;
}
.footer .footer-info .footer-title i{
	color:#fff;
	font-size:30px;
}
.footer-info-bg1{
	display:table-cell;
}
.footer-info-bg{
	background:#000;
	padding: 20px 10px;
}
.footer .footer-info .footer-info-list{
	margin:0px;
	list-style-type:none;
	font-size:14px;
	padding:0;
}
.footer .footer-info .footer-info-list li {
	padding:0px 0px 1px 0px;
	color:#fff;
}
.footer .footer-info .footer-info-list li i{
	padding:0px 5px 0px 0px;
	color: rgb(2, 76, 82);
}
.footer .footer-info .footer-info-list li a{
	color: rgb(170, 170, 170);
	text-decoration:none;
	font-size:18px;
}
.footer .footer-info .footer-info-list li a:hover{
	color: rgb(255, 145, 00);
	text-decoration:none;
}
.footer .footer-info .i-link .socialmedia {
	color: rgb(170, 170, 170);
	font-size: 22px; 
	text-align: center;
	padding: 0 5px; 
}
.footer .footer-info .i-link .socialmedia:hover {
	color: rgb(255, 145, 00);
	font-size: 22px; 
	text-align: center; 
}
.footer .powerdby{ background:#212529; display: inline-block; }
.footer .powerdby .copyright{color: rgb(170, 170, 170); padding:10px; margin-bottom:0px;}
.footer .powerdby .copyright a{color: rgb(255, 145, 00); text-decoration:underline;}
.footer .powerdby .copyright a:hover{color:#fff;}


/******************************
		portfolio-info
*******************************/
.portfolio-info{
	padding-bottom:50px;
	padding-top:50px;
	background:#0b0b0b;
	background: url(../images/about-bg.jpg) center center no-repeat;
    background-attachment:fixed;	
}
.portfolio-info .section-title h3{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.portfolio-info .more-info .table tr{
	background:rgba(0, 0, 0, 0.6);
}
.portfolio-info .more-info .table th{
    font-weight: 700;
    color: #480003;
}
.portfolio-info .more-info .table td{
    font-weight: 500;
    color: #fff;
}
.portfolio-info .section-title h1{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.portfolio-info .section-title h1 span{
    color: #480003;
}
.portfolio-info .section-title h5{
	/*font-size: 14px;*/
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}
.portfolio-info .section-title h5::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #480003;
    margin: 4px 10px;
}
.portfolio-info p{
	color: #aaaaaa;
}
@media screen and (max-width:768px){
	.portfolio-info{
		background: url(../images/about-bg.jpg) center center no-repeat;
		background-attachment:fixed;
	}
	.portfolio-info .section-title h5::after {
		content: "";
		width: 30px;
		height: 1px;
		display: inline-block;
		background: #480003;
		margin: 4px 10px;
	}
}
.demo-gallery > ul {
  margin-bottom: 15px;
}
.demo-gallery > ul > li {
    /*float: left;
    width: 200px;
    margin-right: 20px;*/
    margin-bottom: 5px;
}
.demo-gallery > ul > li a { 
  border: 2px solid #212529;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}
.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}
.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}
.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}
.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}
.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}
.demo-gallery.dark > ul > li a {
  border: 3px solid #04070a;
}
.home .demo-gallery {
  padding-bottom: 80px; 
}




/*******************************
		carousel
********************************/
.carousel{
	position: relative;
	height:700px;
}
.carousel .carousel-inner{
	height:700px;
}
.carousel .carousel-inner .section-title{
    text-align:center;
	position:absolute;
	top:300px;
}
.carousel .carousel-inner .section-title h3{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
	margin-bottom:0px;
}
.carousel .carousel-inner .carousel-item{
	height:700px;
}
.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
    z-index: -1;
    opacity: 1;
}
.carousel .slide-inner {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}
.carousel .slide-inner:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
}
@media screen and (max-width:768px){
	.carousel{
		position: relative;
		height:400px;
	}
	.carousel .carousel-inner{
		height:400px;
	}
	.carousel .carousel-inner .carousel-item{
		height:400px;
	}
	.carousel .slide-inner {
		position: absolute;
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center center;
	}
}





/******************************
		portfolio-slide
*******************************/
.slide .card{
    text-align: center;
    padding: 190px 20px 20px 20px;
    margin: 70px 15px 35px;
    background: #f9f9f9;
    /*box-shadow: 0px 2px 0 0 #480003;*/
    position: relative;
}
.slide .card .pic{
    width: 90%;
    /*height: 120px;
    border: 3px solid #aaaaaa;*/
	border-radius:5px;
    margin: 0 auto;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}
.slide .card .pic img{
    width: 100%;
    height: auto;
	border-radius:4px;
}
.slide .card h5{
    color: #480003;
	text-decoration:none !important;
    margin-bottom: 10px;
    position: relative;
}
.slide .card .description{
    font-size: 14px;
    color: #757575;
    margin-bottom: 20px;
    position: relative;
	text-decoration:none !important;
}
@media screen and (max-width:768px){
	.slide .card{
		padding: 160px 20px 20px 20px;
	}
}

.mainbottommenu{
	position:fixed; z-index:1; bottom:0;
	/*height: 3.5rem;
	padding:10px 0;*/
	padding:8px 0 4px 0;
	
	background: #000;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    background: linear-gradient( 
180deg
, rgb(0 0 0) 50%, rgb(28 0 0) 100%);
	
	}
.mainbottommenu img{ height:32px; width:32px; }	
.mainbottommenu a { text-decoration:none; }
.mainbottommenu, .mainbottommenu span, .mainbottommenu a span{ font-size:10pt; color:#f0f0f0; }	
.mainbottommenu a:hover span{ color:#ffc107;}	
/*Button*/
 .button-78 {
            align-items: center;
            appearance: none;
            background-clip: padding-box;
            background-color: initial;
            background-image: none;
            border-style: none;
            box-sizing: border-box;
            color: #fff;
            cursor: pointer;
            display: inline-block;
            flex-direction: row;
            flex-shrink: 0;
            font-family: Eina01,sans-serif;
            font-size: 16px;
            font-weight: 800;
            justify-content: center;
            line-height: 24px;
            margin: 0;
            min-height: 64px;
            outline: none;
            overflow: visible;
            padding: 19px 26px;
            pointer-events: auto;
            position: relative;
            text-align: center;
            text-decoration: none;
            text-transform: none;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: middle;
            width: auto;
            word-break: keep-all;
            z-index: 0;
          }

.button-78:hover {
             color: #fff;
          }


          @media (min-width: 768px) {
            .button-78 {
              padding: 19px 32px;
            }
          }

          .button-78:before,
          .button-78:after {
            border-radius: 80px;
          }

          .button-78:before {
            background-image: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
            content: "";
            display: block;
            height: 100%;
            left: 0;
            overflow: hidden;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: -2;
          }

          .button-78:after {
            background-color: initial;
            background-image: linear-gradient(#541a0f 0, #0c0d0d 100%);
            bottom: 4px;
            content: "";
            display: block;
            left: 4px;
            overflow: hidden;
            position: absolute;
            right: 4px;
            top: 4px;
            transition: all 100ms ease-out;
            z-index: -1;
          }

          .button-78:hover:not(:disabled):before {
            background: linear-gradient(92.83deg, rgb(255, 116, 38) 0%, rgb(249, 58, 19) 100%);
          }

          .button-78:hover:not(:disabled):after {
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            transition-timing-function: ease-in;
            opacity: 0;
          }

          .button-78:active:not(:disabled) {
            color: #ccc;
          }

          .button-78:active:not(:disabled):before {
            background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
          }

          .button-78:active:not(:disabled):after {
            background-image: linear-gradient(#541a0f 0, #0c0d0d 100%);
            bottom: 4px;
            left: 4px;
            right: 4px;
            top: 4px;
          }

          .button-78:disabled {
            cursor: default;
            opacity: .24;
          }
		  
		    .button-29 {
            align-items: center;
            appearance: none;
            background-image: radial-gradient(100% 100% at 100% 0, #ff2c2c 3%, #5468ff 100%);
            border: 0;
            border-radius: 6px;
            box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
            box-sizing: border-box;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            font-family: "JetBrains Mono",monospace;
            height: 48px;
            justify-content: center;
            line-height: 1;
            list-style: none;
            overflow: hidden;
            padding-left: 16px;
            padding-right: 16px;
            position: relative;
            text-align: left;
            text-decoration: none;
            transition: box-shadow .15s,transform .15s;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            white-space: nowrap;
            will-change: box-shadow,transform;
            font-size: 18px;
          }

          .button-29:focus {
            box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
          }

          .button-29:hover {
            box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
            transform: translateY(-2px);
          }

          .button-29:active {
            box-shadow: #3c4fe0 0 3px 7px inset;
            transform: translateY(2px);
          }
@media (min-width: 768px){
.site-section {
    padding: 2.3em 0 2em 0;
}
}

section .box-bg {
	background:#fff;
	padding:15px;
	margin-bottom:15px;
	border-radius:5px;
}
.col-centered {
	float: none;
	margin: 0 auto;
}
.main-h {
	color: #000;
	text-transform: uppercase;
	font-size: 22pt;
	text-align: center;
	margin-bottom:20px;
	margin-top: 10px;
}
.main-h strong {
	color: #009ba8;
	font-size: 22pt;
}
.sub-h {
	color: #000;
	font-size: 14pt;
	text-align: center;
}
.top-bottom-bl {
	border-top:4px solid #009ba8;
	border-bottom:4px solid #009ba8;
}
.form-horizontal .control-label {
	text-align:left;
}
.form-horizontal label span {
	color:#F00;
}