*{
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6{
	margin:0;
}
body {
	font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif !important;
	font-size: 16px;
	background-color: #363636;
}
/***LOADER FOR VIDEO***/
.loader-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #363636;
	display:flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.loader {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid #ffff00;
	animation: loader 2s infinite ease;
}
.loader-inner {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: #ffff00;
	animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(180deg);
	}
	50% {
		transform: rotate(180deg);
	}
	75% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}
.container-fluid {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}
/*** LOADING SPINNER FOR AJAX REQUESTS ***/
#overlay{
	position: fixed;
	top: 0;
	z-index: 100000;
	width: 100%;
	height:100%;
	display: none;
	background: rgba(0,0,0,0.6);
}
.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
	100% {
		transform: rotate(360deg);
	}
}
.is-hide{
	display:none;
}
/***ANIMATION VIDEO***/
#rs-animation {
	position: fixed;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.video-container {
	z-index: 999;
	position:relative;
	overflow:hidden;
	display:block;
}
/***NAVBAR***/
#icon-navbar {
	height:40px;
	width: auto;
	display: inline-block;
}
.brand img {
	float: left;
}
.navbar-dark .navbar-nav .nav-link {
	color: #ffffff;
}
.navbar-shrink{
	padding-top: 0;
	padding-bottom: 0;
	transition: all ease .5s;
}
.mybg-dark {
	background: #363636 !important;
	box-shadow: 0 1px 3px 0 #ffff00;
	/*rgba(0, 0, 0, 0.2)*/
}
h3.my-heading {
	font-weight: bold;
}
li.nav-item {
	margin: 0 20px 0 0;
}
/***LANDING PAGE***/
header{
	width: 100%;
	height: 100vh;
	background: #363636;
	background-size: cover;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}
.overlay{
	position:absolute;
	background-color:#212529;
	height:100%;
	width:100%;
	top:0;
	left:0;
	opacity:.3
}
header .tophead{
	margin-top: 150px;
}
header .title-main{
	font-weight: bold;
}
.btn-more {
	display: inline-block;
	padding: 13px 20px;
	color: #fff;
	text-decoration: none;
	position: relative;
	background: transparent;
	border: 1px solid #e1e1e1;
	font: 12px/1.2 "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	letter-spacing: 0.4em;
	text-align: center;
	text-indent: 2px;
	text-transform: uppercase;
	transition: color 0.1s linear 0.05s;
}
.btn-more::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #e1e1e1;
	z-index: 1;
	opacity: 0;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn-more::after {
	transition: border 0.1s linear 0.05s;
}
.btn-more .btn-inner {
	position: relative;
	z-index: 2;
}
.btn-more:hover {
	color: #363636;
	transition: color 0.1s linear 0s;
}
.btn-more:hover::before {
	top: 0;
	height: 100%;
	opacity: 1;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn-more:hover::after {
	border-color: #363636;
	transition: border 0.1s linear 0s;
}
.slideshow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1;
}
.slideshow .slideshow-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slideshow .slides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.slideshow .slide {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
	display: block;
}
.slideshow .slide.is-loaded {
	opacity: 1;
}
.slideshow .slide .caption {
	padding: 0 100px;
}
.slideshow .slide .image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	z-index: 1;
	background-size: cover;
	image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.slideshow .slide .image {
	width: 100%;
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.slideshow .slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slideshow .slide .supertitle {
	margin: 0 auto 15px;
	max-width: 1000px;
	font: 300 35px/1.2 "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
	letter-spacing: 0.15em;
	text-transform: lowercase;
}
.slideshow .slide .title {
	margin: 0 auto 15px;
	max-width: 1000px;
	font: 300 35px/1.2 "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.slideshow .slide .text {
	margin: 0 auto;
	max-width: 1000px;
	font-size: 18px;
	line-height: 1.4;
}
.slideshow .slide .btn {
	margin: 15px 0 0;
	border-color: #fff;
}
.slideshow .slide .btn::before {
	background: #fff;
}
/* Older browsers */
.title-main {
	font-size: 16px;
}
/* Modern browsers only need this one */
@media screen and (min-width: 25em){
	.title-main {
		font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) );
	}
}
/* Safari <8 and IE <11 */
@media screen and (min-width: 25em){
	.title-main {
		font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) );
	}
}
@media screen and (min-width: 50em){
	.title-main {
		font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) );
	}
}
#line1{
	color: #ffffff;
	/* text-shadow:-1px -1px 0 #363636,1px -1px 0 #363636,-1px 1px 0 #363636,1px 1px 0 #363636;
	*/
}
#line2{
	color: #ffff00;
	/* text-shadow:-1px -1px 0 #363636,1px -1px 0 #363636,-1px 1px 0 #363636,1px 1px 0 #363636;
	*/
}
header .subtitle-main{
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 35px;
	line-height: 1.5em;
	text-align: end;
}
header .btn-about{
	display: inline-block;
	padding: 8px 20px;
	/*width: 128px;
	*/
	font-size: 14px;
	background: #363636;
	border: 1px solid #363636;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	cursor:pointer;
	box-shadow: 0px 0px 10px 0px #00000059;
}
header .btn-contact{
	display: inline-block;
	padding: 8px 20px;
	/* width: 128px;
	*/
	font-size: 14px;
	background: #ffffff;
	border: 1px solid #ffffff;
	color: #363636;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	cursor:pointer;
	box-shadow: 0px 0px 10px 0px #00000059;
}
header .btn-contact:hover{
	color: #000;
}
.top-btn-block a{
	margin: 0 7px 0 0;
}
/***SOCIAL LINKS***/
.social-icons {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 11;
	display: table;
	float: none;
	padding-right: 25px;
}
.social-icons ul {
	padding: 0;
	list-style: none;
}
.social-icons ul li {
	display: inline-block;
	border: 4px solid #363636;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 50px;
	margin: 0 5px;
	height: 50px;
	margin-right: 0px;
	background: #363636;
	transition: 1s;
}
.social-icons ul li:hover {
	background-color: #ffff00;
	transform: rotate(360deg);
	transition: 1s;
}
.social-icons ul li a:hover {
	color: #363636;
}
.social-icons ul li a {
	color: #fff;
	display: block;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
}
.social-icons ul li a i {
	vertical-align: middle
}
.icon-circle {
	background: rgba(38, 161, 224, .1);
	-webkit-transition: background .2s, -webkit-transform ease-out .1s;
	transition: background .2s, -webkit-transform ease-out .1s;
	transition: transform ease-out .1s, background .2s;
	transition: transform ease-out .1s, background .2s, -webkit-transform ease-out .1s
}
.icon-circle:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	top: 0;
	left: 0;
	padding: 0;
	z-index: -1;
	-webkit-box-shadow: 0 0 0 2px #ffff00;
	box-shadow: 0 0 0 2px #ffff00;
	opacity: 0;
	-webkit-transform: scale(.9);
	-ms-transform: scale(.9);
	transform: scale(.9);
	-webkit-transition: all ease .90s;
	transition: all ease .90s
}
.icon-circle:hover {
	background: #ffff00;
	-webkit-transform: scale(.93);
	-ms-transform: scale(.93);
	transform: scale(.93);
	color: #363636
}
.icon-circle:hover:after {
	-webkit-animation: sonarEffect 1.3s ease-out 75ms;
	animation: sonarEffect 1.3s ease-out 75ms
}
@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		-webkit-box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
	}
	100% {
		-webkit-box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		-webkit-box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
	}
	100% {
		-webkit-box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		box-shadow: 0 0 0 2px rgba(175, 184, 62, 0.1), 0 0 10px 10px #ffff00, 0 0 0 10px rgba(175, 184, 62, 0.5);
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}
/***skewed***/
.cut{
	z-index: 10;
	position: absolute;
	left: 0;
	bottom: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent rgb(54, 32, 52) transparent;
}
.cut1{
	z-index: 10;
	position: absolute;
	left: 0;
	bottom: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent #363636 transparent;
}
.cut2{
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	border-width: 35vh 100vw 0 0;
	border-style: solid;
	border-color: #363636 transparent transparent transparent;
}
.about-cut1{
	z-index: 10;
	position: absolute;
	left: 0;
	bottom: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent #363636 transparent;
}
.about-cut2{
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	border-width: 35vh 100vw 0 0;
	border-style: solid;
	border-color: rgb(54, 32, 52) transparent transparent transparent;
}
.about-images{
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.about-images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-skewed-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(94, 84, 52, 0.815);
}
.about-skewed-text h2{
	position: relative;
	top: 45%;
	text-align: center;
	color: #ffff00;
}
.about-skewed-text div{
	position: relative;
	display: block;
	top: 46%;
	width: 40px;
	height: 5px;
	margin: auto;
}
.underline-skewed{
	background: #ffff00;
}
/***cut***/
.gallery{
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	position: relative;
}
.images{
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.skewed-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(94, 84, 52, 0.815);
}
.skewed-text h2{
	position: relative;
	top: 45%;
	text-align: center;
	color: #ffff00;
}
.skewed-text div{
	position: relative;
	display: block;
	top: 46%;
	width: 40px;
	height: 5px;
	margin: auto;
}
/***about us***/
.about-wrap {
	position: relative;
	padding-bottom: 10%;
	background: #363636;
}
.image-aboutus-banner {
	background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("/img/about-banner.jpg") center center;
	background-size: cover;
	background-position: center center;
	color: #fff;
	padding-top: 110px;
	padding-bottom:110px;
}
.image-aboutus-sm-banner {
	background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("/img/about-banner.jpg") center center;
	background-size: cover;
	background-position: center center;
	color: #fff;
	padding-top: 30px;
	padding-bottom:30px;
}
.lg-text {
	font-size:52px;
	font-weight: 600;
	text-transform: none;
	color:#ffff00;
}
.image-aboutus-para {
	color:#fff;
}
.about-content{
	padding-top:20px;
}
.aboutus-title {
	font-size: 30px;
	letter-spacing: 0;
	line-height: 32px;
	margin: 0 0 39px;
	padding: 0 0 11px;
	position: relative;
	text-transform: uppercase;
}
.aboutus-title::after {
	background: #ffff00 none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 54px;
}
.aboutus-text {
	color: #ffffff;
	font-size: 13px;
	line-height: 22px;
	margin: 0 0 35px;
}
a:hover, a:active {
	color: #ffff00;
	text-decoration: none;
	outline: 0;
}
.aboutus-more {
	border: 1px solid #ffff00;
	border-radius: 25px;
	color: #ffff00;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	padding: 7px 20px;
	text-transform: uppercase;
}
.featured-item {
	padding-left: 0px;
	margin-top: 30px;
	color: #ffffff;
}
.meta-text {
	padding-left: 5px;
}
.featured-item .icon i {
	color: #ffff00;
}
.featured-item .icon i {
	font-size: 65px;
	margin-top: 0px;
	color: #ffff00;
}
.featured-item .meta-text {
	margin-left: 80px;
}
.featured-item .icon {
	width: 60px;
	height: 60px;
	float: left;
}
/***gallery***/
.gallery-wrapper{
	background-color: #363636;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	background: #363636;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: inline-block;
	vertical-align: top;
	opacity: 0.8;
}
.image-section .effect-ravi{
	margin-left: 5px;
}
.image-section .effect-ravi:first-child img{
	margin-left: 0;
}
.image-section {
	background-color: #363636;
	display: block;
	margin: 5px auto;
	padding: 0 10px;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,.grid figure figcaption>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption>a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: 0.1em;
	font-weight: 300;
}
.grid figure h2 span {
	font-weight: 800;
}
.grid figure h2,.grid figure p {
	margin: 0;
}
.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
figure.effect-ravi {
	background: #303fa9;
	margin: 0;
}
.grid [class^="col"] {
	padding: 2px;
}
figure.effect-ravi h2 {
	font-size: 158.75%;
}
figure.effect-ravi h2,figure.effect-ravi p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}
figure.effect-ravi figcaption::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 120px;
	border: 2px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
	transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}
figure.effect-ravi p {
	width: 100px;
	text-transform: none;
	font-size: 121%;
	line-height: 2;
}
figure.effect-ravi p a {
	color: #fff;
}
figure.effect-ravi p a:hover,figure.effect-ravi p a:focus {
	opacity: 0.6;
}
figure.effect-ravi p a i {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-ravi p a:first-child i {
	-webkit-transform: translate3d(-60px, -60px, 0);
	transform: translate3d(-60px, -60px, 0);
}
figure.effect-ravi p a:nth-child(2) i {
	-webkit-transform: translate3d(60px, -60px, 0);
	transform: translate3d(60px, -60px, 0);
}
figure.effect-ravi p a:nth-child(3) i {
	-webkit-transform: translate3d(-60px, 60px, 0);
	transform: translate3d(-60px, 60px, 0);
}
figure.effect-ravi p a:nth-child(4) i {
	-webkit-transform: translate3d(60px, 60px, 0);
	transform: translate3d(60px, 60px, 0);
}
figure.effect-ravi:hover figcaption::before {
	opacity: 1;
	-webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
	transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}
figure.effect-ravi:hover h2 {
	opacity: 0;
	-webkit-transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
	transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
}
figure.effect-ravi:hover p i:empty {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* just because it's stronger than nth-child */
	opacity: 1;
}
/* The Modal (background) */
#myModal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0,0,0);
	/* Fallback color */
	background-color: rgba(0,0,0,0.9);
	/* Black w/ opacity */
}
#myModal .modal-open {
	overflow: visible;
}
/* Modal Content (Image) */
#myModal .modal-content {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 1080px;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
#myModal #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}
/* Add Animation - Zoom in the Modal */
#myModal .modal-content, #myModal #caption {
	animation-name: zoom;
	animation-duration: 0.6s;
}
@keyframes zoom {
	from {
		transform:scale(0)
}
	to {
		transform:scale(1)
}
}
/* The Close Button */
#myModal #closeModal {
	position: absolute;
	top: 35px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
#myModal #closeModal:hover,#myModal #closeModal:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	#myModal .modal-content {
		width: 100%;
	}
}
/****************************/
/* Curves */
#curveUpColor path,#curveDownColor path {
	fill: #242424;
	stroke: #242424;
}
/* Media Queries for the layout */
@media screen and (max-width: 68em) {
	.ss {
		font-size: 80%;
	}
}
@media screen and (max-width: 54em) {
	.ss .column {
		display: block;
		width: 100% !important;
	}
	.ss .text:first-child,.ss .text:nth-child(2) {
		text-align: center;
	}
	.ss .column:first-child .icon {
		margin: 0 auto 50px;
	}
	.ss .column:nth-child(2) .icon {
		margin: 50px auto 0;
	}
}
.ss::before,.ss::after {
	position: absolute;
	content: '';
	pointer-events: none;
}
.separator svg {
	display: block;
}
.ss {
	position: relative;
	padding: 10em;
	background: #242424;
	color: #fff;
	text-align: center;
}
.ss h2 {
	margin: 0;
	padding: 0;
	font-size: 2.8em;
	font-weight: 400;
}
.ss p {
	color: gainsboro;
	font-size: 1.3em;
	line-height: 1.5;
}
.ss .text:first-child {
	text-align: right;
}
.ss .text:nth-child(2) {
	text-align: left;
}
.ss .column {
	width: 49%;
}
.ss .column {
	padding: 0 1%;
	width: 33%;
	text-align: center;
}
.ss .column p {
	padding: 1.4em;
}
.ss .column {
	display: inline-block;
	vertical-align: top;
}
.ss .color {
	background: #242424;
}
/***services***/
.services-wrap{
	background-color: #242424;
	color: #ffffff;
	padding-top:50px;
}
.container2{
	overflow: hidden;
	padding: 100px 5px;
}
.services-wrap .header{
	color: #ffff00;
}
@media (min-width: 768px) {
	#services-logo {
		display: none;
	}
	.hexagon-box-wrapper {
		position: relative;
		margin: 0 auto;
		padding: 265px 0;
		width: 470px;
		background-size: 100% auto;
	}
	.hexagon-box {
		position: relative;
		width: 470px;
		height: 223px;
		background-color: transparent;
		border-left: solid 2px #ffff00;
		border-right: solid 2px #ffff00;
	}
	.hexagon-box:before,.hexagon-box:after {
		content: "";
		position: absolute;
		z-index: 1;
		width: 332px;
		height: 332px;
		-webkit-transform: scaleY(0.5) rotate(-45deg);
		-ms-transform: scaleY(0.5) rotate(-45deg);
		transform: scaleY(0.5) rotate(-45deg);
		background-color: inherit;
		left: 67px;
	}
	.hexagon-box:before {
		top: -172px;
		border-top: solid 2px #ffff00;
		border-right: solid 2px #ffff00;
	}
	.hexagon-box:after {
		bottom: -172px;
		border-bottom: solid 2px #ffff00;
		border-left: solid 2px #ffff00;
	}
	.hexagon-box span {
		width: 100%;
		text-align: center;
		top: 50%;
		position: relative;
		float: left;
		margin-top: -9px;
	}
}
.hexagon-icon {
	position: absolute;
	z-index: 2;
}
.hexagon-icon i {
	display: block;
	width: 91px;
	height: 91px;
	border: 4px solid #ffff00;
	border-radius: 50%;
	background: #242424;
	box-shadow: 0 0 0 25px #242424;
	font-size: 40px;
	line-height: 87px;
	color: #ffffff;
	text-align: center;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}
body.layout-2 .hexagon-icon i {
	border-width: 3px;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	transition: 0s;
}
@media (min-width: 768px) {
	body.layout-2 .hexagon-icon:hover i {
		background: #ffff00;
		background: -moz-linear-gradient(-45deg, #ba4ecf 0%, #6782c9 100%);
		background: -webkit-linear-gradient(-45deg, #ba4ecf 0%, #6782c9 100%);
		background: linear-gradient(135deg, #ba4ecf 0%, #6782c9 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@custom-color-gradient-start', endColorstr='@custom-color-gradient-end', GradientType=1);
		color: #fff;
	}
}
.hexagon-icon:nth-child(1) {
	top: 0;
	left: 50%;
	margin-left: -46px;
	margin-top: -158px;
}
.hexagon-icon:nth-child(1) .h-box {
	width: 370px;
	text-align: center;
	bottom: 105px;
	left: 50%;
	margin-left: -185px;
}
.hexagon-icon:nth-child(2) {
	top: 0;
	left: 100%;
	margin-left: -46px;
	margin-top: -46px;
}
.hexagon-icon:nth-child(2) .h-box {
	width: 260px;
	text-align: left;
	top: 0;
	left: 100%;
	margin: -6px 0 0 15px;
}
.hexagon-icon:nth-child(3) {
	bottom: 0;
	left: 100%;
	margin-left: -46px;
	margin-bottom: -46px;
}
.hexagon-icon:nth-child(3) .h-box {
	width: 260px;
	text-align: left;
	top: 0;
	left: 100%;
	margin: -6px 0 0 15px;
}
.hexagon-icon:nth-child(5) {
	bottom: 0;
	left: 50%;
	margin-left: -46px;
	margin-bottom: -160px;
}
.hexagon-icon:nth-child(5) .h-box {
	width: 370px;
	text-align: center;
	bottom: 0;
	left: 50%;
	margin-left: -185px;
	margin-bottom: -120px;
}
.hexagon-icon:nth-child(6) {
	bottom: 0;
	left: 0;
	margin-left: -46px;
	margin-bottom: -46px;
}
.hexagon-icon:nth-child(6) .h-box {
	width: 260px;
	text-align: right;
	top: 0;
	right: 100%;
	margin: -6px 15px 0 0;
}
.hexagon-icon:nth-child(7) {
	top: 0;
	left: 0;
	margin-left: -46px;
	margin-top: -46px;
}
.hexagon-icon:nth-child(7) .h-box {
	width: 260px;
	text-align: right;
	top: 0;
	right: 100%;
	margin: -6px 15px 0 0;
}
.h-box {
	font-size: 14px;
	line-height: 22px;
	position: absolute;
	color: #ffffff;
}
.h-box-title {
	margin-bottom: 5px;
	font-size: 22px;
	line-height: 26px;
	color: #ffff00;
}
@media (max-width: 1199px) {
	.hexagon-icon:nth-child(2) .h-box,.hexagon-icon:nth-child(3) .h-box,.hexagon-icon:nth-child(6) .h-box,.hexagon-icon:nth-child(7) .h-box {
		width: 190px;
	}
}
@media (max-width: 991px) and (min-width: 768px) {
	.hexagon-box,.hexagon-box-wrapper {
		width: 320px;
	}
	.hexagon-box:before,.hexagon-box:after {
		width: 200px;
		height: 200px;
		left: 60px;
	}
	.hexagon-box:before {
		top: -160px;
	}
	.hexagon-box:after {
		bottom: -160px;
	}
	.h-box {
		font-size: 13px;
	}
	.hexagon-icon:nth-child(2) .h-box,.hexagon-icon:nth-child(3) .h-box,.hexagon-icon:nth-child(6) .h-box,.hexagon-icon:nth-child(7) .h-box {
		width: 150px;
	}
}
@media (max-width: 767px) {
	.hexagon-icon {
		width: 100%;
		position: relative;
		margin: 0 0 55px !important;
		text-align: center;
		left: inherit !important;
		right: inherit !important;
		top: inherit !important;
		bottom: inherit !important;
	}
	.hexagon-icon i {
		display: inline-block;
		box-shadow: none;
		margin-bottom: 15px;
	}
	.hexagon-icon:after {
		position: absolute;
		content: '';
		height: 35px;
		width: 2px;
		background-color: #ffff00;
		left: 50%;
		bottom: -45px;
	}
	.hexagon-icon:last-child:after {
		display: none;
	}
	.hexagon-icon > img {
		display: block;
		margin: 5px auto;
		max-width: 300px;
	}
	.h-box {
		position: relative;
		left: inherit !important;
		right: inherit !important;
		top: inherit !important;
		bottom: inherit !important;
		margin: 0 auto 0 !important;
		text-align: center !important;
		width: 100% !important;
		max-width: 320px;
	}
}
.column-filters {
	margin-bottom: 35px;
}
.divider {
	width: 100%;
	height: 10vh;
	margin-top: -1px;
	fill: #242424;
}
/***Slider***/
.ribbon {
	font-size: 16px !important;
	/* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */
	width: 70%;
	box-shadow: 0 8px 12px #000a;
	position: relative;
	background: #6e6e69;
	color: #fff;
	text-align: center;
	padding: 0.5em 1.5em;
	/* Adjust to suit */
	margin: 2em auto 3em;
	/* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.ribbon:before, .ribbon:after {
	content: "";
	position: absolute;
	display: block;
	bottom: -1em;
	border: 3em solid #555550;
	z-index: -1;
}
.ribbon:before {
	left: -3.5em;
	border-right-width: 1.5em;
	border-left-color: transparent;
	box-shadow: 10px 1px 10px #000a;
}
.ribbon:after {
	right: -3.5em;
	border-left-width: 1.5em;
	border-right-color: transparent;
	box-shadow: -10px 1px 10px #000a;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
	content: "";
	position: absolute;
	display: block;
	border-style: solid;
	border-color: #33332e transparent transparent transparent;
	bottom: -1em;
}
.ribbon .ribbon-content:before {
	left: 0;
	border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
	right: 0;
	border-width: 1em 1em 0 0;
}
.clients-wrapper{
	color: #ffff00;
	padding-top: 40px;
}
.slick-slide {
	margin: 0px 20px;
}
.slick-slide img {
	width: 65%;
	height: auto;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 1200px){
	.slick-slide img {
		width: 100%;
		height: auto;
	}
}
.slick-slider{
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list{
	position: relative;
	display: block;
	overflow: hidden;
	margin-left: -20px;
	margin-right: -20px;
	margin-top: -10px;
	margin-bottom: -5px;
	padding: 0;
}
.slick-list:focus{
	outline: none;
}
.slick-list.dragging{
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,.slick-slider .slick-list{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track{
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before,.slick-track:after{
	display: table;
	content: '';
}
.slick-track:after{
	clear: both;
}
.slick-loading .slick-track{
	visibility: hidden;
}
.slick-slide{
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide{
	float: right;
}
.slick-slide img{
	display: block;
}
.slick-slide.slick-loading img{
	display: none;
}
.slick-slide.dragging img{
	pointer-events: none;
}
.slick-initialized .slick-slide{
	display: block;
}
.slick-loading .slick-slide{
	visibility: hidden;
}
.slick-vertical .slick-slide{
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.slide {
	text-align: center;
}
.slide::before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.slide img {
	vertical-align: middle;
	display: inline-block;
}
.slick-track {
	height: 125px;
}
/***HOW DO WE DO IT SECTION***/
.how-section{
	background-color: #363636;
	color: #ffffff;
}
.how-section1{
	margin-top:-15%;
	padding: 10%;
}
.how-section1 h4{
	color: #ffff00;
	font-weight: bold;
	font-size: 30px;
}
.how-section1 .subheading{
	color: #e7e7e7;
	font-size: 20px;
}
.how-section1 .row{
	margin-top: 10%;
}
.how-img{
	text-align: center;
}
.how-img img{
	width: 70%;
}
.how-box{
	height: 225px;
	width: 100%;
	text-align: center;
	padding: 35px 20px;
}
.features-icons-icon {
	vertical-align: middle;
	margin: 20px auto;
}
.features-icons-icon i {
	color:lightgrey;
}
.how-box:hover .features-icons-icon i{
	color: #ffff00;
	transition: all ease 1s;
}
/***MEET THE TEAM SECTION***/
.team-wrapper {
	background: #363636 !important;
	position: relative;
	z-index: 11;
}
.team-wrapper .section-title {
	text-align: center;
	color: #ffff00;
	margin-bottom: 50px;
	text-transform: uppercase;
}
.team-wrapper .card {
	border: none;
	background: #363636;
}
.team-wrapper .card-text{
	color: #fff;
}
.image-flip:hover .backside,.image-flip.hover .backside {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	border-radius: .25rem;
}
.image-flip:hover .frontside,.image-flip.hover .frontside {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.mainflip {
	-webkit-transition: 1s;
	-webkit-transform-style: preserve-3d;
	-ms-transition: 1s;
	-moz-transition: 1s;
	-moz-transform: perspective(1000px);
	transform: perspective(1000px);
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transition: 1s;
	transform-style: preserve-3d;
	position: relative;
}
.frontside {
	position: relative;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	z-index: 2;
	margin-bottom: 30px;
}
.backside {
	position: absolute;
	top: 0;
	left: 0;
	background: #363636;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-box-shadow: 5px 7px 9px -4px rgb(173, 166, 96);
	-moz-box-shadow: 5px 7px 9px -4px rgb(173, 166, 96);
	box-shadow: 5px 7px 9px -4px rgb(173, 166, 96);
}
.frontside,.backside {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: 1s;
	-webkit-transform-style: preserve-3d;
	-moz-transition: 1s;
	-moz-transform-style: preserve-3d;
	-o-transition: 1s;
	-o-transform-style: preserve-3d;
	-ms-transition: 1s;
	-ms-transform-style: preserve-3d;
	transition: 1s;
	transform-style: preserve-3d;
}
.frontside .card,.backside .card {
	min-height: 312px;
}
.backside .card a {
	font-size: 18px;
	color: #ffff00 !important;
}
.frontside .card .card-title,.backside .card .card-title {
	color: #ffff00 !important;
}
.frontside .card .card-body img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
}
.specialization{
	color: #ffff00;
}
/***BLOG SECTION***/
.blog-wrapper{
	background: rgb(54, 32, 52);
	color: #ffffff;
	padding-bottom: 30px;
}
.blog-wrapper .wrapper {
	position: relative;
	align-items: center;
	text-align: center;
}
.blog-wrapper h1 {
	font-size: 50px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 0;
	line-height: 1;
	font-weight: 700;
}
.blog-wrapper .dot {
	color: #4FEBFE;
}
.blog-wrapper p {
	text-align: center;
	margin: 18px;
	font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif !important;
	font-weight: normal;
}
.blog-wrapper .icons {
	text-align: center;
}
.blog-wrapper .icons i {
	color: #00091B;
	background: #fff;
	padding: 13px;
	margin: 0 10px;
	border-radius: 50px;
	border: 2px solid #fff;
	transition: all 200ms ease;
	text-decoration: none;
	position: relative;
}
.blog-wrapper .icons i:hover, .icons i:active {
	color: #fff;
	background: none;
	cursor: pointer !important;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	text-decoration: none;
}
/***CUT BEFORE BLOG***/
.blog-cut{
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	position: relative;
	margin-top:-160px;
}
.blog-cut1{
	z-index: 10;
	position: absolute;
	left: 0;
	bottom: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent rgb(54, 32, 52) transparent;
}
.blog-cut2{
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	border-width: 35vh 100vw 0 0;
	border-style: solid;
	border-color: #363636 transparent transparent transparent;
}
/***CUT BEFORE CONTACT***/
.contact-cut{
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	position: relative;
}
.contact-cut1{
	z-index: 10;
	position: absolute;
	left: 0;
	bottom: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent #363636 transparent;
}
.contact-cut2{
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	border-width: 35vh 100vw 0 0;
	border-style: solid;
	border-color: rgb(54, 32, 52) transparent transparent transparent;
}
.contact-skewed-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #363636;
}
.contact-skewed-text h2{
	position: relative;
	top: 45%;
	text-align: center;
	color: #ffff00;
}
.contact-skewed-text div{
	position: relative;
	display: block;
	top: 46%;
	width: 40px;
	height: 5px;
	margin: auto;
}
/***CONTACT US SECTION***/
.contact-wrapper{
	position: relative;
	background-color: #363636;
	color: #fff;
	padding-bottom: 30px;
	margin-top: -80px;
	z-index: 11;
}
/***FOOTER***/
.col_white_amrc {
	color:#FFF;
}
footer {
	width:100%;
	background-color:#363636;
	min-height:250px;
	padding:10px 0px 25px 0px ;
	border-top: 0.25px solid #ffff00;
}
.pt2 {
	padding-top:40px ;
	margin-bottom:20px ;
}
footer p {
	font-size:13px;
	color:#CCC;
	padding-bottom:0px;
	margin-bottom:8px;
}
.mb10 {
	padding-bottom:15px ;
}
.footer_ul_amrc {
	margin:0px ;
	list-style-type:none ;
	font-size:14px;
	padding:0px 0px 10px 0px ;
}
.footer_ul_amrc li {
	padding:0px 0px 5px 0px;
}
.footer_ul_amrc li a{
	color:#CCC;
}
.footer_ul_amrc li a:hover{
	color:#fff;
	text-decoration:none;
}
.fleft {
	float:left;
}
.padding-right {
	padding-right:10px;
}
.footer_ul2_amrc {
	margin:0px;
	list-style-type:none;
	padding:0px;
}
.footer_ul2_amrc li p {
	display:table;
}
.footer_ul2_amrc li a:hover {
	text-decoration:none;
}
.footer_ul2_amrc li i {
	margin-top:5px;
}
.bottom_border {
	border-bottom:1px solid #323f45;
	padding-bottom:20px;
}
.foote_bottom_ul_amrc {
	list-style-type:none;
	padding:0px;
	display:table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.foote_bottom_ul_amrc li {
	display:inline;
}
.foote_bottom_ul_amrc li a {
	color:#999;
	margin:0 12px;
}
.social_footer_ul {
	display:table;
	margin:15px auto 0 auto;
	list-style-type:none;
}
.social_footer_ul li {
	padding-left:20px;
	padding-top:10px;
	float:left;
}
.social_footer_ul li a {
	color:#CCC;
	border:1px solid #CCC;
	padding:8px;
	border-radius:50%;
}
.social_footer_ul li i {
	width:20px;
	height:20px;
	text-align:center;
}
/***newsletter***/
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);
.info{
	display: inline-block;
	margin-right: 5px;
	padding-bottom: 10px;
}
.info input {
	display: block;
	height: 20px;
	border: 0;
	border-radius: 3px;
	margin: 0 0 10px 0;
	padding: 12px 10px;
	background: #fff;
}
.info input:last-child {
	margin: 0;
}
.info input:focus {
	background: #eee;
	outline: none;
}
.info input[type="submit"]{
	vertical-align: top;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: pink;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: 1px;
	color: #363636;
	background: #ffff00;
}
.info input[type="submit"]:hover{
	background: #ffff99;
}
/*******************************************************************/
