/* ==============================
   RESET CSS
   ============================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: 0;
	outline: none;
}

/** RESET CSS END **/


/* ==============================
   COMMON CSS
   ============================== */
	html, body{
		min-height: 100%;
		-webkit-font-smoothing: antialiased;
	}
	html{
		overflow-x: hidden;
	}
	.page-template{
		overflow: hidden;
	}

	a, b, div, ul, li, select{
		-webkit-tap-highlight-color: rgba(0,0,0,0); 
		-webkit-tap-highlight-color: transparent; 
		-moz-outline-: none;
	}
	a:focus,
	a:active,
	select:focus{
		-moz-outline: none;
		-webkit-outline: none;
		outline: none;
	}
	img:not([draggable]), embed, object, video{
		max-width: 100%;
		height: auto;
		display: block;
	}
   
   .align-center{ text-align:center !important; }
   .align-left{ text-align:left !important;}
   .align-right{ text-align:right !important; }
   .align-justify{ text-align:justify !important; }
   .left{float:left !important;}
   .right{float:right !important;}
   .relative{position:relative;}
   .hidden{display:none;}
   .inline-block{display:inline-block;}
   .stick-fixed{
	position: fixed !important;
	top: 0;
	left: 0;
	}

	::-moz-selection{ color: #fff; background:#D8041A; }
	::-webkit-selection{ color: #fff;	background:#D8041A; }
	::selection{ color: #fff;	background:#D8041A; }

	.animate, .animate *{
		-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
		-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
		-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
		-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
		transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	}

	.clear{
		clear:both;
	}
	strong, .bold{
		font-weight: 600;
	}

	.select-dropdown-container{
		position: relative;
	}
	.select-dropdown-container:before{
		content: "";
		position: absolute;
		right: 20px;
		top: 16px;
		width: 0; 
		height: 0; 
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #c79e3e;
	}
	.select-dropdown-container:after{
		content: "";
		position: absolute;
		right: 20px;
		top: 14px;
		width: 0; 
		height: 0; 
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
	}
	select{
		width:100%;
		font-size: 16px;
		font-family: 'Quicksand', sans-serif;
		border: 1px solid #c79e3e;
		padding: 10px 20px;
		margin-bottom:10px;
		overflow: hidden;
		text-overflow: ellipsis;
    	white-space: nowrap;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: transparent;
		position: relative;
	}
	select::-ms-expand {
		display: none; /* Remove default arrow in Internet Explorer 10 and 11 */
	}

	/*Padding and Margins*/
	body .p-0{
		padding: 0px;
	}
	body .pt-0{
		padding-top: 0px;
	}
	body .pb-0{
		padding-bottom: 0px;
	}
	body .pl-0{
		padding-left: 0px;
	}
	body .pr-0{
		padding-right: 0px;
	}

	body .m-0{
		margin: 0px;
	}
	body .mt-0{
		margin-top: 0px;
	}
	body .mb-0{
		margin-bottom: 0px;
	}
	body .ml-0{
		margin-left: 0px;
	}
	body .mr-0{
		margin-right: 0px;
	}



	#menu-rtl-link{
		display:none;
	}
	
	/* Target Internet Explorer 9 to undo the custom arrow */
	@media screen and (min-width:0\0) {
		select {
			background: none\9;
			padding: 5px\9;
		}
	}

/* ==============================
   Typography
   ============================== */
body{
	color: #111;
	font-size: .875rem;
	line-height: 1.42857;
	font-family: 'Quicksand', sans-serif;
	-webkit-font-smoothing: antialiased;
	background:#ffffff;
	transition: all 0.3s ease-out;
}

p{
	margin: 0 0 1em 0;
}

a{
	color: #111;
	text-decoration: none;
}
a:hover{
	color: #888;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    margin-bottom: 1.3em;
	line-height: 1.4;
	font-weight: 400;
   
}
h1{
	font-size: 32px;
}
h2{
	font-size: 28px;
}
h6{
    font-weight: 700;
}
p{
	margin: 0 0 1.2em 0;
}
ul, ol{
    margin: 0 0 1.5em 0;
}
.blockquote{
	margin: 3em 0;
    padding: 0px 4em;
	border: none;
	background: none;
    font-style: normal;
	line-height: 1.7;
	color: #fff;

	quotes: "\201C""\201D""\2018""\2019";
}
.blockquote::before{
	content: open-quote;
    color: #fff;
	font-size: 180px;
	font-weight: 100;
	line-height: 30px;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 70px;
	left: 0px;
	opacity: 0.3;
}
.blockquote p{
	margin-bottom: 1em;
	font-size: 24px;
    font-weight: 300;
	font-style: normal;
	line-height: 1.6;
}

dl dt{
	margin-bottom: 5px;
}
dl dd{
	margin-bottom: 15px;
}
pre{
	background-color: #f9f9f9;
	border-color: #ddd;

}
hr.white{
    border-color: rgba(255,255,255, .35);
    background: rgba(255,255,255, .35);
}
hr.black{
    border-color:rgba(0,0,0, .85);
    background: rgba(0,0,0, .85);
}
.uppercase{
	text-transform: uppercase;
	letter-spacing: 1px;
}
.regular-text{
	font-weight: 500;
}
.light-text{
	font-weight: 300;
}

:root {
	--swiper-theme-color: #833AB4;
}

/** ul list style **/
.disc-list{
	padding-left: 0px;
}
.disc-list li{
	position: relative;
	padding-left: 18px;
}
.disc-list li::before{
	content: '';
	position: absolute;
	left: 0px;
	top: 10px;

	width: 6px;
	height: 6px;
	background: #212121;
	border-radius: 50%;
}


.orange-list li::before{
	background: #ff6c00;
}
.blue-list li::before{
	background: #237cff;
}


/** CTA Banner **/
.cta-banner{
	padding: 30px 20px;
	color: #fff;
	background: #212121;
}
.cta-heading{
	display: inline-block;
	margin: 0px;
	padding-right: 30px;
	width: 75%;

	font-size: 26px;
	line-height: 28px;
}
.cta-action-button{
	margin: auto;
	padding: 15px 50px;
	vertical-align: top;
}



/** Text Links **/
.blueLink{
	color: #0685f3;
}


/**Button Styles **/
.button{
	display: inline-block;
	padding: 12px 50px;
	background: #212121;
	color:#fff;
	border: 0px;
	font-family: inherit;
	font-size:16px;
	cursor: pointer;
	transition: background 0.4s linear;
}
.purple-button{
	background-size: 200% auto;
    background-image: #970589;
    background-image: -moz-linear-gradient(left, #970589 0%, #692abf 51%, #970589 100%);
    background-image: -webkit-linear-gradient(left, #970589 0%,#692abf 51%,#970589 100%);
    background-image: linear-gradient(to right, #970589 0%,#692abf 51%,#970589 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#970589', endColorstr='#692abf',GradientType=1 );
}

.orange-button{
	background-size: 200% auto;
	background-image: #ff434b;
	background-image: -moz-linear-gradient(left, #ff434b 0%, #ffa225 51%, #ff434b 100%);
    background-image: -webkit-linear-gradient(left, #ff434b 0%,#ffa225 51%,#ff434b 100%);
    background-image: linear-gradient(to right, #ff434b 0%,#ffa225 51%,#ff434b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff434b', endColorstr='#ffa225',GradientType=1 );
}

.blue-button{
	background-size: 200% auto;
	background-image: #237cff;
	background-image: -moz-linear-gradient(left, #237cff 0%, #19abff 51%, #237cff 100%);
    background-image: -webkit-linear-gradient(left, #237cff 0%,#19abff 51%,#237cff 100%);
    background-image: linear-gradient(to right, #237cff 0%,#19abff 51%,#237cff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#237cff', endColorstr='#19abff',GradientType=1 );
}

.purple-button:hover, .orange-button:hover, .blue-button:hover {
	background-position: right center;
	color: #fff;
}


/** Background Gradients **/
.purple-background{ 
	background: #970589;
    background: -moz-linear-gradient(left, #970589 0%, #692abf 100%);
    background: -webkit-linear-gradient(left, #970589 0%,#692abf 100%);
    background: linear-gradient(to right, #970589 0%,#692abf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#970589', endColorstr='#692abf',GradientType=1 );
}
.orange-background{
	background: #ff434b;
    background: -moz-linear-gradient(left, #ff434b 0%, #ffa225 100%);
    background: -webkit-linear-gradient(left, #ff434b 0%,#ffa225 100%);
    background: linear-gradient(to right, #ff434b 0%,#ffa225 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff434b', endColorstr='#ffa225',GradientType=1 );
}
.blue-background{
	background: #237cff;
    background: -moz-linear-gradient(left, #237cff 0%, #19abff 100%);
    background: -webkit-linear-gradient(left, #237cff 0%,#19abff 100%);
    background: linear-gradient(to right, #237cff 0%,#19abff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#237cff', endColorstr='#19abff',GradientType=1 );
}


/* ==============================
   Grid Layout
   ============================== */
.grid{
	display: grid;
	column-gap: 30px;
	row-gap: 30px;
}
.grid-4{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-3{
	grid-template-columns: 1fr 1fr 1fr;
}
.grid-2{
	grid-template-columns: 1fr 1fr;
}

/* Digital Page Grid */
.digital-grid{
	grid-template-columns: 1fr 1fr;
}
/*.digital-grid .seo-block{
	grid-area: seo;
}
.digital-grid .social-block{
	grid-area: social;
}
.digital-grid .email-block{
	grid-area: email;
}
.digital-grid .ad-block{
	grid-area: ad;
}*/


@media screen and (max-width: 950px){
	.grid-3{
    	grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 767px){
	.grid-4{
    	grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 480px){
	.grid-4, .grid-3, .grid-2 {
    	grid-template-columns: 1fr;
	}

	.digital-grid{
		grid-template-columns: 1fr;
		grid-template-areas: 
		"seo"
		"social"
		"email"
		"ad";
	}
}



/* ==============================
   Custom Scrollbar
   ============================== */
/* width */
::-webkit-scrollbar {
	width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background-color: #a9a9a9;
    background-image: -webkit-linear-gradient(#5c2abf,#8c23ff);
    /* outline: 1px solid #708090; */
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
	-o-border-radius: 5px;
	opacity: 0.8;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background-image: -webkit-linear-gradient(#8c23ff,#5c2abf);
  }



/* ==============================
   FORM STYLE
   ============================== */
   .line-contact-form{
	   position: relative;
	   display: block;
   }
   .line-contact-form .form-input-wrapper{
	   display: block;
	   margin-bottom: 15px;
	   position: relative;
   }
   .line-contact-form .form-input-wrapper label.error{
		position: absolute;
		left: 10px;
		margin-top: 0px;
		color: red;
		font-size: 12px;
   }
   .line-contact-form .form-input{
	display: block;
	box-sizing: border-box;
	width: 100%;
	font-family: inherit;
	padding: 10px 15px;
	margin-bottom: 0px;

    background-color: transparent;
	box-shadow: none;
	
    border-radius: 0;
	border: 1px solid transparent;
	border-bottom-color: #e9e9e9;

	-webkit-transition: border-color .3s ease-in-out,border-width .6s cubic-bezier(0,.63,0,1.29),background-color .3s ease;
    -moz-transition: border-color .3s ease-in-out,border-width .6s cubic-bezier(0,.63,0,1.29),background-color .3s ease;
    transition: border-color .3s ease-in-out,border-width .6s cubic-bezier(0,.63,0,1.29),background-color .3s ease;
   }

   .line-contact-form .input-checkbox{
	display: inline-block;
	width: auto;
	vertical-align: middle;
	margin-right: 5px;
   }
   .line-contact-form textarea{
	   resize: none;
	   height: 100px;
   }
   .form-input:focus{
	border-bottom-color: #ff434b;
   }
   .submit-form{
	   font-size: 12px;
	   font-weight: 700;
	   text-transform: uppercase;
   }

   .half-input{
	   width: 50%;
	   padding-right: 20px;
	   float: left;
   }
   .form-input-wrapper.half-input-end{
	   padding-right: 0px;
   }



/* ==============================
   Page Loader
   ============================== */

/*.bg-wave-box {
	width: 100%;
	height:100%;
	display: block;
	position: fixed;
	top:0px;
	left:0px;
	opacity:0.4;
	z-index: -1;
}*/

.page-loader{
	position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #f3f3f3;
    z-index: 99999;
}

.cls-blue{stroke: #0786F3;}
.cls-purple{stroke: #833AB4;}
.cls-red{stroke: #FD1D1D;}
.cls-orange{stroke: #FCB045;}

.cls-left {
	fill: none;
	stroke-width: 1px;
	stroke-dasharray: 3000;
	stroke-dashoffset: 0;
	animation: dash 6s ease-out infinite;
	animation-delay: 2s;
	width: 100%;
	opacity: 0;
	
}
.cls-right{
	fill: none;
	stroke-width: 1px;
	stroke-dasharray: 3000;
	stroke-dashoffset: 0;
	animation: dash-reverse 6s ease-out infinite;
	width: 100%;
	opacity: 0;
}

@keyframes dash {
	0% {
		stroke-dashoffset: 3000;
		opacity:0;
	}
	1% {
		stroke-dashoffset: 3000;
		opacity:0.6;
	}
	80% {
		stroke-dashoffset: 0;
		opacity:0.6;
	}
	100% {
		stroke-dashoffset: 0;
		opacity:0;
	}
}
@keyframes dash-reverse {
	0% {
		stroke-dashoffset: 3000;
		opacity:0.6;
	}
	80% {
		stroke-dashoffset: 6000;
		opacity:0.6;
	}
	100% {
		stroke-dashoffset: 6000;
		opacity:0;
	}
}

.cls-1{fill:#000; animation: bgAnimate 5s infinite;}
.cls-2{clip-path:url(#clip-path);}
.cls-3{fill:url(#linear-gradient);}
.cls-4{clip-path:url(#clip-path-2);}
.cls-5{clip-path:url(#clip-path-3);}
.cls-6{clip-path:url(#clip-path-4);}

@keyframes bgAnimate {
	0% {fill: #0786F3;}
	25% {fill: #833AB4;}
	50% {fill: #FD1D1D;}
	75% {fill: #FCB045;}
	100% {fill: #0786F3;}
}

.loading-clip {
    height: auto;
	width: auto;
	text-align: center;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0px);
    left: 50%;
    margin: auto;
    display: block;
	z-index: 99999;
}
#loading-logo-path{
	width:50px;
	height: 50px;
}
#loading-text{
	letter-spacing: 2px;
    font-weight: normal;
	font-family: inherit;
	margin-left:5px;
}

.loaded-clip{
	height: 50px;
	width: 50px;
	background: transparent;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	animation-fill-mode: forwards;
	animation-play-state: paused;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: -15px auto 0px;
	z-index: 999;
}


.inner-page-header{
	position: relative;
    top: 0px;
    left: 0px;
	z-index: 999;
	background: #fff;
}

.main-container{
	width:100%;
	height: auto;
	overflow: hidden;
	opacity: 1;
	background: #fff;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease-out;
}
.dark-theme .main-container{
	background: #212121;
}

.home-page .main-container{
	display: flex;
}



/** Top Nav **/
.header-nav{
    display: flex;
	align-items: center;
	padding: 20px 30px;
	position: relative;
    justify-content: space-between;
}
.header-menu-center-logo{
	position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
}
.header-menu-center-logo img{
	margin: auto;
    height: 49px;
}
.left-nav > .header-menu-center-logo{
	display: none;
}

.left-nav, .right-nav{
    position: relative;
}
#desktop-menu-icon{
	padding-right: 15px;
    border-right: 1px solid #8d8d8d;
    margin-right: 10px;
    display: inline-block;
}
.left-nav .headerHireLink{
	font-size:12px;
	display: inline-block;
    line-height: 12px;
	margin-bottom: 0px;
}

.menu-text{
	font-size: 12px;
	vertical-align: super;
	color:#8d8d8d;
	display: none;
}

/** Day-Night Toggle **/
.dayNightToggleIcons{
	transform:rotate(0deg);
	opacity:0.6;
	transition: all 0.5s linear;
}
.moonIcon {
  opacity: 0;
  transition: opacity 0.5s linear;
}
.sunIcon{
	opacity: 1;
	transition: opacity 0.5s linear;
}

/** Left Main Content **/
#main-content{
    position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	padding: 20px 30px;
}
.main-heading{
    font-size: 3.8vw;
    line-height: 3.5vw;
	font-family: 'Playfair Display', serif;
    margin-top: 10px;
    margin-bottom: 20px;
}
.main-heading .rotating-text:before{
	content: '';
	animation: rotator infinite 16s;
}
@keyframes rotator{
	0%{
		content: 'Brand';
		opacity: 1;
	}
	15%{
		content: 'Brand';
		opacity: 1;
	}
	
	20%{
		content: 'Brand';
		opacity: 0;
	}
	20.1%{
		content: 'Presence';
		opacity: 0;
	}
	25%{
		content: 'Presence';
		opacity: 1;
	}
	40%{
		content: 'Presence';
		opacity: 1;
	}
	45%{
		content: 'Presence';
		opacity: 0;
	}
	45.1%{
		content: 'Business';
		opacity: 0;
	}
	50%{
		content: 'Business';
		opacity: 1;
	}
	65%{
		content: 'Business';
		opacity: 1;
	}
	70%{
		content: 'Business';
		opacity: 0;
	}
	70.1%{
		content: 'Reach';
		opacity: 0;
	}
	75%{
		content: 'Reach';
		opacity: 1;
	}
	90%{
		content: 'Reach';
		opacity: 1;
	}
	95%{
		content: 'Reach';
		opacity: 0;
	}
	95.1%{
		content: 'Brand';
		opacity: 0;
	}
	100%{
		content: 'Brand';
		opacity: 1;
	}
}
.heading-desc{
	font-size: 18px;
	line-height: 24px;
    max-width:85%;
    text-align: justify;
}

.lets-talk{
	font-family: 'Playfair Display', serif;
	font-size:18px;
	padding: 12px 60px;
}
.orSeparator{
	margin:0 20px;
	color: #8d8d8d;
	font-size:14px;
}
.knowMore{
	font-size: 14px;
    line-height: 16px;
    display: inline-block;
    transform: translateY(5px);
}
.dark-theme #lets-talk-form{
	background: #212121;
}
.fancybox-bg{
	background: #000;
}


.banner1{background-image: url(../media/banner-1.jpg)}
.dark-theme .banner1{background-image: url(../media/banner-1-night.jpg)}

.banner2{background-image: url(../media/banner-2.jpg)}
.dark-theme .banner2{background-image: url(../media/banner-2-night.jpg)}

.banner3{background-image: url(../media/banner-3.jpg)}
.dark-theme .banner3{background-image: url(../media/banner-3-night.jpg)}



/* ==============================
   Menu Container
   ============================== */

.mobile-header{
	display: none;
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 20px 30px;
	z-index: 2;
}
.mobile-header .mobile-logo{
	width: 75px;
	display: inline-block;
}
.mobile-header .main-heading{
	display: inline-block;
	vertical-align: top;
	color: #fff;
	margin: 0px;
	margin-top: 20px;
	margin-left: 20px;
}
.mobile-header .headerHireLink{
	float: right;
	margin-top: 20px;
	color: #fff;
}
.mobile-header .headerHireLink a{
	color: #FCB045;
}


.menu-container-backdrop{
	height: 100vh;
    width: 100%;
    background: #000;
    position: fixed;
    z-index: 999;
    top: 0px;
    margin: 0px auto;
    overflow: hidden;
    overflow-y: auto;
	/*transform: translateX(-100%);
	transform: translateX(0);
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -khtml-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;*/
	
	display: none;
}

#menu-nav-content {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0px;
}
#menu-nav-content .menu-list {
	/*width: calc(100% + 50px);*/
	width: 100%;
    height: calc(100vh - 70px);
    position: absolute;
    left: 0px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}
#menu-nav-content .menu-list > .menu-section {
    margin: 0px;
    flex-shrink: 0;
    flex-grow: 0;
    width: 20%;
    min-width: 20%;
    max-width: 20%;
    overflow: hidden;
    position: relative;
    padding: 10px 15px;
    text-align: center;
}
#menu-nav-content .menu-list > .menu-section .menu-links-wrapper {
    display: flex;
    align-items: center;
    align-items: center;
    flex-direction: row;
    height: 100%;
	padding: 0px;
	color:#fff;
	z-index: 9;
}

.menu-info{
	background: #FFF;
}
.dark-theme .menu-info{
	background:#212121;
}
#close-menu-button{
	cursor: pointer;
	padding: 20px 30px;
	display: inline-block;
}
.close-icon{
	font-size: 12px;
	font-weight: 700;
	vertical-align: super;
	color: #8d8d8d;
}
.menu-info #menu-logo{
	max-width: 125px;
	position: absolute;
    display: block;
    left: 0;
    top: 10px;
    right: 0;
    margin: auto;
}

.menu-info-right{
	float: right;
	padding: 20px 30px;
}
.menu-info-cta{
	display: inline-block;
    margin-right: 30px;
	color: #212121;
	cursor: pointer;
}
.menu-info-cta:last-child {
    margin-right: 0px;
}
.menu-info-cta span{
	font-size: 15px;
    font-weight: 600;
    vertical-align: super;
    margin-left: 5px;
}

.menu-bg-black-cover{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;

	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .85);
	transition: all 0.8s ease;
	z-index: 1;
}
.menu-section:hover .menu-bg-black-cover{
	background: rgba(0,0,0, 0.3);
}

.about-menu-section{
	background: url("../media/about-bg.jpg") center center / cover;
}
.services-menu-section{
	background: url("../media/services-bg.jpg") center center / cover;
}
.work-menu-section{
	background: url("../media/work-bg.jpg") center center / cover;
}
.client-menu-section{
	background: url("../media/client-bg.jpg") center center / cover;
}
.contact-menu-section{
	background: url("../media/contact-bg.jpg") center center / cover;
}

.menu-links-wrapper{
	position: relative;
}
.menu-links{
	flex: 1;
	cursor: pointer;
}
.menu-links h3{
	letter-spacing: 2px;
	font-size: 18px;
	font-weight: 100;
	text-transform: uppercase;
	margin-top: 20px;
}
.menu-links .menu-submenu{
	display: none;
	margin-bottom: 10px;
	list-style-type: none;
}
.menu-links .menu-submenu li{
	color:#efefef;
}
.menu-links .menu-submenu li a{
	color: inherit;
	padding: 5px 0;
	font-size: 14px;
	opacity: 0.8;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
	display: block;
}
.menu-links .menu-submenu li a:hover{
	opacity: 1;
}
.icon-triangle{
	position: absolute;
	top: calc(50% - 80px);
	left: 0px;
	right: 0px;
	margin: auto;
	pointer-events: none;
	width: 40px;
	height: 40px;
	transition: all 0.5s ease;
	opacity: 0.8;
}
.icon-triangle::after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid currentColor;
}
.icon-triangle:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    background: currentColor;
    transform: rotate(45deg) scale(.7);
}

.menu-open .icon-triangle{
	transform: rotate(45deg);
	width: 200px;
    height: 200px;
    opacity: 0.1;
}

/* ==============================
   MOBILE NAV CSS
   ============================== */
   /*.icon {
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}*/
#navMenuBar{
	display: none;
}
.container-menu {
	position: fixed;
	left: 0%;
	right: 0;
	bottom: 30px;;
	width: 95%;
	max-width:480px;
	z-index: 999;
	margin-left: 50%;
	transform: translateX(-50%);
	background-color: #0d1a25;
  }
  .container-menu input[type=checkbox] {
	display: none;
  }
  .container-menu input[type=checkbox] + label {
	cursor: pointer;
	position: absolute;
	z-index: 2;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	background-color: #FFF;
	box-shadow: 1px 0px 40px 4px rgba(0, 0, 0, 0.1), 0px 0px 0px 2px rgba(0, 0, 0, 0.1) inset;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  }
  /*.container-menu input[type=checkbox] + label:hover {
	background: -webkit-linear-gradient(-90deg, #D8041A 0%, #D8041A 100%);
	box-shadow: 0px 0px 20px 4px #D8041A, 0px 0px 0px 2px rgba(0, 0, 0, 0.19) inset;
  }*/

  .container-menu input[type=checkbox] + label svg {
	position: absolute;
	top: 14px;
	left: 13px;
	color: #5c2abf;
	font-size: 52px;
	font-weight: 100;
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	display: block;
	line-height: 1;
  }
  .container-menu input[type=checkbox]:checked + label {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  .container-menu input[type=checkbox]:checked + label + .menu {
	width: 96%;
	margin-left: -48%;
	box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.2), 0px 0px 0px 2px rgba(0, 0, 0, 0.19) inset;
  }
  .container-menu input[type=checkbox]:checked + label + .menu .menu-item {
	opacity: 1;
	-moz-animation: item 0.5s forwards ease-in-out;
	-webkit-animation: item 0.5s forwards ease-in-out;
	animation: item 0.5s forwards ease-in-out;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  .menu {
	position: absolute;
	left: 50%;
	right: 0;
	bottom: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	background-color: rgba(255, 255, 255, 0.9);
	text-align: center;
	font-size: 0;
	padding: 0 10px;
	border-radius: 30px;
	box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 0px 2px rgba(0, 0, 0, 0.19) inset;
	overflow: hidden;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  }
  .menu .menu-item {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	width: 20%;
	height: 100%;
	padding: 17px 0;
	opacity: 0;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
  }

  @-webkit-keyframes item {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
@-moz-keyframes item {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
@keyframes item {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}




/* ==============================
   INNER PAGE HEADER
   ============================== */
.page-header-breadcrumb{
	display: flex;
    align-items: center;
    padding: 20px 30px;
    position: relative;
	justify-content: space-between;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	
	background :url("../media/breadcrumb-pattern-light.png") left top / contain;
}
.dark-theme .page-header-breadcrumb{
	background :url("../media/breadcrumb-pattern-dark.png") left top / contain;
}

.header-breadcrumb-list{
	display: flex;
	margin: 0px;
}
.header-breadcrumb-list li a{
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #212121;
	font-size: 12px;
	font-weight: 700;
	position: relative;
	transition: opacity 0.2s ease-out;

	opacity: 0.6;
}
.header-breadcrumb-list a.active, .header-breadcrumb-list li a:hover{
	opacity: 1;
	color: #212121;
}
.header-breadcrumb-list li:last-child a{
	border: 0px;
}

.header-breadcrumb-list li a.active::after{
	content:'';
	position: absolute;
	bottom: -5px;
	left: 0px;
	right: 0px;
	margin: auto;
	width: 70%;
	height: 1px;
	background: #212121;
	transform: translateX(-5px);
}

.section-heading-small{
	font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}
.section-heading{
	font-size: 50px;
	line-height: 52px;
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	margin-bottom: 20px;
}
.section-content{
	font-size: 16px;
	opacity: 0.8;
	text-align: justify;
}

.intro-section{
	text-align: center;
	margin: 50px 20px;
}


/* ==============================
   Company Profile Page
   ============================== */
.about-intro-section .section-heading{
	max-width: 700px;
	margin: 0px auto 20px;
}
.about-intro-section .section-content{
	max-width: 980px;
	text-align: center;
	margin: auto;
}


.about-video-section{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 50px 0px;
}
.about-video-wrapper, .about-video-content-wrapper{
	flex: 1;
}
.about-video-wrapper{
	flex: 1.5;
	background: url("../media/about-page-header.jpg") center center / cover;
	position: relative;
	border-radius: 0px 5px 5px 0px;
	margin-bottom: 50px;
}
.about-video-blockquote{
	color: #fff;
	font-size: 26px;
	line-height: 32px;
	padding: 40px 60px;
	margin: 0px;
	max-width: 410px;

	position: absolute;
    bottom: -50px;
	right: 10%;
}

.about-video-content-wrapper{
	padding: 0px 40px;
}
.about-video-content{
	max-width: 480px;
	padding: 20px 0px 70px 0px;
}
.about-video-content .section-heading{
	font-size: 60px;
	line-height: 55px;
}
.about-video-links{
	font-size: 16px;
	color: #212121;
	padding-left: 60px;
	opacity: 0.9;
	margin: 0px;
}
.about-video-links a{
	font-weight: bold;
}
.video-content-or{
	margin: 20px 0px;
	color: #212121;
	font-size: 16px;
	display: block;
	opacity: 0.7;
}
.download-brochure{
	background: url("../media/download-icon.png") left top / 33px no-repeat;
}
.send-mail{
	background: url("../media/send-email-icon.png") left top / contain no-repeat;
}

.about-why-us-section{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 30px;

	margin-bottom: 30px;
	align-items: stretch;
    justify-content: space-between;
}
.about-feature-list{
	position: relative;
    text-align: center;
}
.about-feature-list img{
	margin: auto;
}
.about-feature-heading{
	font-size: 16px;
	font-weight: 600;
	margin: 20px 0px 10px;
	/*text-transform: uppercase;*/
}

.about-services-content-wrapper{
	background: url("../media/about-services-bg.jpg") center center / cover;
	text-align: center;
	padding: 80px 20px;
	padding-bottom: 200px;
}
.about-services-content .section-heading-small{
	color: #fff;
	opacity: 0.6;
}
.about-services-content .section-heading{
	max-width: 900px;
	margin: auto;
	margin-bottom: 20px;
	color: #fff;
}

.about-services-slider{
	text-align: center;
	align-items: center;
	margin-top: -180px;
	margin-bottom: 100px;
	-webkit-box-shadow: 0px 15px 120px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 15px 120px 0px rgba(0,0,0,0.15);
    -o-box-shadow: 0px 15px 120px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 15px 120px 0px rgba(0,0,0,0.15);
}
.about-services-slider .swiper-slide{
	background: #fff;
	position: relative;
}
.about-services-slider .swiper-slide:nth-child(odd){
	background: #f3f3f3;
}
.about-services-slider .swiper-slide::before{
	content: "";
    display: block;
    padding-top: 100%;
}

.service-slide-content{
	position:  absolute;
	top: 50%;
	transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}
.slider-service-icon{
	margin: auto;
	max-height: 64px;
}
.slider-service-name{
	font-size: 18px;
	line-height: 20px;
	margin-top: 10px;
	margin-bottom: 0px;
	font-weight: 600;
}
.about-services-slider .swiper-pagination-bullet-active{
	background: #ff434b;
    background: -moz-linear-gradient(left, #ff434b 0%, #ffa225 100%);
    background: -webkit-linear-gradient(left, #ff434b 0%,#ffa225 100%);
    background: linear-gradient(to right, #ff434b 0%,#ffa225 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff434b', endColorstr='#ffa225',GradientType=1 );
}


.footer-contact-section{
	text-align: center;
	margin: 50px 20px 80px;
}

/* ==============================
   Our Values Page
   ============================== */
.values-intro-section .section-heading{
	font-size: 38px;
	line-height: 40px;
}
.values-intro-section .section-content{
	max-width: 980px;
    text-align: center;
    margin: auto;
}

.values-feature-section{
	margin-top: 30px;
}
.feature-wrapper{
	display: inline-block;
}
.feature-content img{
	margin: auto;
}
.feature-content{
	border: 1px solid #efefef;
	padding: 50px 30px;
	border-radius: 5px;
}
.feature-content:hover{
	background: #f3f3f3;
}
.dark-theme .feature-content:hover{
	background: #2d2d2d;
}
.feature-content .feature-heading{
	font-size: 18px;
    font-weight: 600;
    margin: 20px 0px 10px;
}

.values-main-section{
	margin: 50px 20px;
}


/* ==============================
   Quality Assurance Page
   ============================== */
.quality-intro-section{
	margin-bottom: 0px;
}
.quality-main-section{
	margin-bottom: 20px;
}
.quality-main-section .page-container{
	display:flex;
}
.qualilty-feature-section{
	margin: 30px 40px 80px;
	text-align: center;
}
.quality-content-wrapper{
	padding-right: 30px;
}
.quality-content-wrapper, .quality-image-wrapper{
	flex: 1;
}
.quality-content-points-wrapper{
	display: flex;
	margin-top: 30px;
}
.quality-content-point{
	flex: 1;
	padding: 0px 10px;
}
.quality-content-point h3{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}



/* ==============================
   Service Detail Page
   ============================== */
.service-detail-page-title-section{
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 99;
	top: 0px;
	left: 0px;
}
.service-title-overlay{
	position: absolute;
    background: rgba(0, 0, 0, 0.85);
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
}
.service-detail-page-title-section .service-title-wrapper{
	padding: 60px 20px 60px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    z-index: 99;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.service-title{
	position: relative;
    top: 10px;
	text-align: left;
	margin: 0px;
	color: #fff;
	font-size: 30px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.service-title span {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
	/*margin-top: 10px;*/
	font-family: 'Quicksand', sans-serif;
}
.service-detail-top-padding{
	padding-top: 95vh;
}

.website-service-title{
	background: url("../media/website-title-bg.jpg") center center / cover no-repeat;
}
.marketing-service-title{
	background: url("../media/marketing-title-bg.jpg") center center / cover no-repeat;
}
.app-service-title{
	background: url("../media/app-title-bg.jpg") center center / cover no-repeat;
}
.branding-service-title{
	background: url("../media/branding-title-bg.jpg") center center / cover no-repeat;
}

.website-intro-section{
	margin-bottom: 0px;
}
.website-intro-section .section-heading {
    font-size: 38px;
    line-height: 40px;
}
.website-type-wrapper{
	display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.website-type-quote{
	flex: 1;
}
.website-type-quote h3{
	font-size: 30px;
}

.website-type-content-wrapper{
	flex: 1;
	padding: 0px 40px;
}
.website-type-content-wrapper .section-heading{
	font-size: 40px;
	line-height: 42px;
}
.marketing-feature-section, .website-feature-section{
	margin: 50px 0px;
}
.marketing-feature-section img{
	margin: 0px;
}

.web-technologies-wrapper{
	display: flex;
    align-items: stretch;
	justify-content: space-between;
	margin: 30px 0px 60px;
}
.technologies-banner, .technologies-content{
	flex: 1;
}
.technologies-content img{
	display: inline-block;
	margin: 0px 30px;
}
.dark-theme .wordpress-icon, .dark-theme .jquery-icon, .dark-theme .mongodb-icon{
	filter: brightness(0) invert(1);
}


/* ==============================
   Portfolio Page
   ============================== */
.portfolio-section{
	margin-top: 30px;
}
.portfolio-content img{
	margin: 0px;
	width: 100%;
}
.portfolio-heading{
	font-size: 16px;
    margin: 0px;
    padding: 10px 10px;
}



.clients-feature-section .feature-content{
	padding: 30px;
}
.dark-theme .clients-feature-section .feature-content img{
	filter: grayscale(100%) invert(0.87);
}
.clients-feature-section .feature-content:hover{
	background: inherit !important;
	-webkit-box-shadow: 0 10px 30px rgba(0,0,0,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.dark-theme .clients-feature-section .feature-content:hover{
	background: inherit !important;
	-webkit-box-shadow: 0 10px 30px rgba(255,255,255,.05);
    box-shadow: 0 10px 30px rgba(255,255,255,.05);
}


/* ==============================
   Request Quote Page
   ============================== */
.quote-mail-section p{
	font-size: 18px;
}
.quote-mail-section a{
	text-decoration: underline;
}







/* ==============================
   FOOTER CSS
   ============================== */
footer{
	opacity: 0;
	margin: 0px;
	background: url(../media/footer-bg.jpg) center left / cover;
	color: #212121;
	padding-left: 500px;
	
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	max-height: 100vh;
    overflow-y: auto;
}
.footer-container{
	padding: 150px 30px;
	text-align: center;
	color: #fff;
	position: relative;
}
.main-heading-footer{
	font-weight: 500;
    font-family: 'Playfair Display', serif;
    font-size: 3.6vw;
    line-height: 3.8vw;
	margin-bottom: 35px;
}
.footer-about{
	max-width: 1000px;
	margin: auto;
	opacity: 0.7;
}
.footer-links{
	margin-bottom: 10px;
}
.footer-links li{
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #646464;
}
.footer-links li a{
	color: inherit;
	opacity: 0.7;
}

.footer-social-menu{
	margin-top:30px;
	
}
.footer-social-menu a, .footer-social-menu span{
	color: #fff;
	opacity: 0.7;
}
.footer-links li a:hover, .footer-social-menu a:hover{
	opacity: 1;
}
.footer-copyright{
	font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
	letter-spacing: 1px;
	opacity: 0.7;
}
.footer-copyright p{
	margin: 0px;
}
.copyright-heart{
	position: relative;
	color: red;
	vertical-align: middle;
}