*{
	margin: 0;
	box-sizing: border-box;
	padding:0;
}

html, body{
	color: white;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden ;
	scroll-behavior: smooth; 
}

/*fonts*/

@font-face{
	font-family: 'Lato-Regular';
	src:url(../font/Lato-Regular.ttf);
	font-style: normal;
	font-weight: 100;
}
@font-face{
	font-family: 'Lato-Light';
	src:url(../font/Lato-Light.ttf);
	font-style: normal;
	font-weight: 100;
}
@font-face{
	font-family: 'Lato-Bold';
	src:url(../font/Lato-Bold.ttf);
	font-style: normal;
	font-weight: 100;
}

@font-face{
	font-family: 'Spartan-SemiBold';
	src:url(../font/Spartan-SemiBold.ttf);
	font-style: normal;
	font-weight: 600;
}
@font-face{
	font-family: 'Spartan-Regular';
	src:url(../font/Spartan-Regular.ttf);
	font-style: normal;
	font-weight: 600;
}
@font-face{
	font-family: 'Spartan-ExtraBold';
	src:url(../font/Spartan-ExtraBold.ttf);
	font-style: normal;
	font-weight: 600;
}
@font-face{
	font-family: 'Spartan-Medium';
	src:url(../font/Spartan-Medium.ttf);
	font-style: normal;
	font-weight: 600;
}
@font-face{
	font-family: 'Spartan-Bold';
	src:url(../font/Spartan-Bold.ttf);
	font-style: normal;
	font-weight: 600;
}
/*fonts*/

/*columns width by default*/
.col-md-1{width:8.33%;}
.col-md-2{width:16.67%;}
.col-md-3{width:25%;}
.col-md-4{width:33.33%;}
.col-md-5{width:41.66%;}
.col-md-6{width:50%;}
.col-md-7{width:58.33%;}
.col-md-8{width:66.66%;}
.col-md-9{width:75%;}
.col-md-10{width:83.33%;}
.col-md-11{width:91.66%;}
.col-md-12{width:100%;}
/*columns width by default*/

/*loader on website load*/
.loader-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color:white;
	display:flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
/*loader on website load*/

button{
	outline: none;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: white;
}

a:hover{
	text-decoration: none;
	color: white;
}

a:active {
	text-decoration: none;
}

input:focus, textarea:focus, select:focus{
	outline: none;
}

/*css for hiding desktop header on screen size:0px to 600px */

@media screen and (min-width: 0px) and (max-width: 600px){
	.nav_desktop{
		display: none;
	}
	.HeaderDesktop{
		display: none;
	}
}

/*css for hiding desktop header on screen size:0px to 600px */

/*css for showing desktop header on screen size:600px to 1400px */

@media screen and (min-width: 600px) and (max-width: 1400px){
	.nav_desktop{
		display: block;
	}
	.HeaderDesktop{
		display: block;
	}
}

/*css for showing desktop header on screen size:600px to 1400px */

/*css for header on desktop*/

.HeaderDesktop{
	background: url(../images/background/cookieidea2.png)  no-repeat, url(../images/background/Gradient.svg)  no-repeat;
	background-position:right bottom, center left -450px ; 
	background-size:50%, cover;
}

/*css for header on desktop*/

/*css for navbar on desktop*/

.nav_desktop{
	padding:20px 50px 0px 50px;
	color:white;
	top: 0;
	z-index: 999;
	background:;
}

/*css for navbar on desktop*/

/*css for logo on desktop*/

img.logo_desktop{
	margin-top:10px;
	width:80%;
}

/*css for logo on desktop*/

/*menu css*/
.topnav {
	overflow: hidden;
	display: flex;
	font-family: 'Spartan-SemiBold';
	font-weight: 400;
	float: right;
} 

.topnav a {
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 1.2vw;
	text-transform: uppercase;
	font-weight: 500;
}

.active {
	color: white;
}

.topnav a:hover{
	border-bottom:1px solid white;
}

.dropdown_menu {
	overflow: hidden;
}

.dropdown_menu .dropbtn {
	font-size: 1.2vw;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	font-family: 'Spartan-SemiBold';
	margin: 0;
	background-color: transparent;
	text-transform: uppercase;
	font-weight: 500;
}

.dropdown-content {
	font-family: 'Spartan-Regular';
	display: none;
	position: absolute;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	background:#ffffff57;
	width:16%;
	border-bottom-right-radius: 10px;
}

.dropdown-content a {
	float: none;
	color: white;
	padding: 5px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	font-size: 1.3vw;
	text-transform: capitalize;

}

.dropdown_menu:hover .dropbtn {
	color: white;
	border-bottom:1px solid white;
}

.dropdown-content a:hover {
	/*color: black;*/
	text-decoration: underline;
	border-bottom:none;
	padding-top: 5px;
}

.dropdown_menu:hover .dropdown-content {
	display: block;
}

/*menu css*/

/*button css for get a quote*/

button.quote{
	margin-right: 50px;	
	float:right;
	text-align: right;
	border-radius: 20px;
	border:2px solid white;
	background-color: transparent;
	padding:10px 10px 10px 10px;
	margin-top: 20px;	
}

a.quote{
	font-family: 'Lato-Bold';
	color: white;
}

button.quote:hover ,a.quote:hover{
	text-decoration: none;
	color: white;
	transform: scale(1.2);
}

/*button css for get a quote*/

/*about us section*/

.about_section{
	color:white;
	padding: 130px 0px 50px 50px;
}

/*social icons in sidebar*/

ul.social_icons{
	margin-top:40px;
	margin-left: 20px;
	display: inline-grid;
}

ul.social_icons i.fa{
	color:white;
}

.social_icons i.fa{
	font-size: 2vw;
	padding: 10px;
	opacity: 50%;
}

.social_icons i.fa:hover{
	opacity: 100%;
	animation:  shake 0.5s ;
}
/*social icons in sidebar*/

/*paragraph heading for slides*/
p.team{
	text-transform: uppercase;
	font-size: 2vw;
	font-family: 'Spartan-ExtraBold';
	font-weight: 800;
	line-height: 5vh;
}

span.heading{
	text-transform: uppercase;
	font-size:3vw;
	font-family: 'Spartan-ExtraBold';
	font-weight: 800;
	line-height: 5vh;
}

/*paragraph heading for slides*/

/*paragraph text in slides*/

p.about_para{
	margin-top: 20px;
	text-align: left;
	width: 70%;
	font-family: 'Lato-Regular';
	font-size: 1.5vw;
	font-weight: 300;
}

.slideCard{
	padding: 20px;
	border: 1px solid black;
	height: 100px;
	text-align: center;
	font-size: 1.6vw;
}

.slideCard.one{
	background: #ec4141;
}

.slideCard.two{
	background: #00800082;
}

.slideCard.three{
	background: #0000ff91;
}

.slideCard.four{
	background: #ffa5008c;
}
/*paragraph text in slides*/

/*slider container*/

.slideshow-container {
	width: 100%;
	height:40vh;
	position: relative;
	margin: auto;
	overflow: hidden;  
	padding: 10px;
}

.mySlides {
	display: none;
	width: 100%;
}

#slide1{
	display: block;
	width: 100%;
}

.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/*slider container*/

/*dot for slides autoplay and on click*/
.dot {
	cursor: pointer;
	height: 0.3vw;
	width: 1.8vw;
	margin: 150px 2px 50px 0px;
	background-color: #bbb;
	border-radius: 10px;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.dot:hover {
	background-color: #717171;
}

/*dot for slides autoplay and on click*/

/*fade animation in slides*/

.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

/*fade animation in slides*/

/*about us section*/

/*service section css*/

.service_section{
	text-align: justify;
	color: blue;
}

.row#inner_section{
	padding: 60px 150px 60px 150px;
	background: url(../images/background/Selling2.png);
	background-size: 20%;
	background-position: right 20px;
	background-repeat: no-repeat; 
}

.row#inner_section2{
	padding: 60px 150px 60px 150px;
	background: url(../images/background/emotional2.png);
	background-size: 50%;
	background-position: left;
	background-repeat: no-repeat;
}

img.service{
	width: 95%;
}

img.service:hover{
	transform: scale(1.2);
}

.sec-2-head{
	color: purple;
	font-size: 1.5vw;
	padding: 8px 12px;
	bottom: 8px;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Spartan-SemiBold';
	text-align: justify;
}

.sec-2-head-2{
	color: black;
	font-size: 3vw;
	bottom: 8px;
	width: 100%;
	text-transform: capitalize;
	font-family:'Spartan-Medium';
	text-align: justify;
}

.ser_para{
	margin-top: 20px;
	text-align: justify;
	font-family: 'Lato-Regular';
	font-size: 1.3vw;
	font-weight: 300;
	color: black;
}

/*service section css*/

/*css for what we do section*/

.whatWeDo{
	margin-left:-10px;
	padding:100px 150px 100px 150px;
	background-image:url(../images/background/what_we_do.png);
	background-size: cover;
	background-repeat:repeat;
}


.row#wedo{
	margin-top:40px;
}

p.whatWedoHead{
	color: white;
	font-size: 3vw;
	bottom: 8px;
	width: 100%;
	text-transform: capitalize;
	font-family: 'Spartan-ExtraBold';
	text-align: justify;
	font-weight: 600;
}

.flip-card {
	background-color: transparent;
	width: 300px;
	height: 300px;
	perspective: 1000px;
	overflow: hidden;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-align: left;
	padding: 40px;
}

.flip-card-front {
	background-color: #00000052;
	color: black;
}

.flip-card-back {
	background-color: #00000052;
	color: white;
	transform: rotateY(180deg);
	padding: 60px 40px 60px 40px;
}

.flip-card-front img{
	width:50%;
	border-bottom: 1px solid white;
	padding: 20px;
	margin-bottom: 20px;
} 

p.flipCard{
	color: white;
	font-size: 2vw;
	bottom: 8px;
	width: 100%;
	text-transform: capitalize;
	font-family: 'Spartan-SemiBold';
	text-align: justify;
	font-weight: 400;
}

p.flipCardBack{
	color: white;
	font-size: 1vw;
	bottom: 8px;
	width: 100%;
	text-transform: capitalize;
	font-family: 'Lato-Light';
	text-align: justify;
	font-weight: 400;
}

.flip-card-back#DigitalAdvertising:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "Digital Advertising";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}

.flip-card-back#TeamManagement:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "Team Management";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}
.flip-card-back#TrainingConsulting:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "Training & Consulting";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}
.flip-card-back#fulllfunnelbuild:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "fulll funnel build";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}
.flip-card-back#MarketingStrategy:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "Marketing Strategy";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}
.flip-card-back#DigitalAdvertising:before {
	font-size: 4vw;
	margin-top: 1rem;
	content: "Digital Advertising";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	font-family:'Spartan-ExtraBold';
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	opacity: 8%;
}

/*css for what we do section*/

#we{
	margin-top: -5px;
	background-image:url(../images/background/advisers.png);
	background-size: cover;
	padding: 100px 80px;
	text-align: center;
	background-repeat: no-repeat;
	height: auto;
}

p.weAre{
	color: black;
	font-size:3vw;
	font-family: 'Spartan-Bold';
	font-weight: bold;
	margin:0;
}

span.advisers{
	color: black;
}

span.advisers:hover{
	color: white;
}

span.advisers:active{
	color: white;
}

span.advocates{
	color:#FE6800;
}

span.advocates:hover{
	color: white;
}

span.activists{
	color:#831799;
}

span.activists:hover{
	color: white;
}

p.weAre_para{
	margin-top: 40px;
	color: black;
	font-size:1.3vw;
	font-family: 'Lato-Regular';
	font-weight: 500;
	width:60%;
	text-align: justify;
	margin-left: auto;
	margin-right: auto;
	line-height: 20px;
}

.clients{
	padding:80px 150px;
}

.clients_head{
	color: black;
	font-size:2vw;
	font-family: 'Spartan-Bold';
	font-weight: 800;
	text-align: justify;
	margin-left: auto;
	margin-right: auto;
	line-height: 20px;
	text-transform: uppercase;	
}

.clients-1-head{
	color: purple;
	font-size: 1.5vw;
	padding: 8px 12px;
	bottom: 8px;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Spartan-Bold';
	text-align: justify;
	font-weight: 800;
	line-height: 13px;
}
.clients_image{
	margin-top: 40px;
	align-items: center;
}

.clients img{
	width: 150px;
	height: 100px;
	margin:15px;
	filter: grayscale(100%);
}

.clients img:hover{
	filter: grayscale(0%);
}

.contact_us{
	background:purple;
	padding: 100px 150px	;
}

p.contact{
	color: white;
	font-size:2vw;
	font-family: 'Spartan-Bold';
	font-weight: 800;
	text-align: justify;
	margin-left: auto;
	margin-right: auto;
	line-height: 30px;
	text-transform: uppercase;
	letter-spacing:3px;
}

.contact_us i.fa{
	font-size:2vw;
}

.contact_us  p.contact_list{
	font-size:1.6vw;
	font-weight: 200;
}

form{
	align-items: center;
	color:black;
}

input[type=text], input[type=number], input[type=email]{
	padding: 10px;  
	border: 1px solid #ccc; 
	border-radius: 5px; 
	box-sizing: border-box; 
	margin-top: 6px; 
	margin-bottom: 16px; 
	resize: vertical;
	color: black;
	width: 45%;
}

input::placeholder, textarea::placeholder{
	font-family: 'Lato-Light';
}

textarea{
	width: 90%; 
	padding: 12px;  
	border: 1px solid #ccc; 
	border-radius: 4px; 
	box-sizing: border-box; 
	margin-top: 6px; 
	margin-bottom: 16px; 
	resize: vertical;
	color: black;
	height:30vh;
}


input[type=submit] {
	background-color: #00000052;
	color: white;
	padding: 12px 30px;
	border: none;
	cursor: pointer;
	border-radius: 100px;
	font-family: 'Spartan-Medium';
	font-size: 1.3vw;
}

/* Create two columns that float next to eachother */
.column#form {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row#form:after {
  content: "";
  display: table;
  clear: both;
}



.contact_us i.fa{
	font-size: 2vw;
	margin-right: 10px;
}

p.contact_list{
	font-size: 1.5vw;
	font-weight: 400;
	font-family: 'Lato-Regular';
}

div.footer{
	background-color: black;
	padding:100px 40px 40px 40px;

}

p.pageLinks{
	font-size: 20px;
	font-weight: 700;
	font-family: 'Spartan-Bold';
	text-transform: uppercase;
	line-height: 27px;
	margin-bottom: 0px;
	padding-bottom: 10px; 
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-bottom-width: 1px; 
	width: 200px;
	border-bottom-color: #E9E9EB;
	color: white;
}

.pages{
	display: inline-block;
	margin-top: 30px;
	font-family: Lato;
	align-items: center;
	margin: 0 auto;
}

p.pages{
	color: white;
	font-size: 20px;
	text-decoration: none;
	margin-top: 0px;
	margin-bottom: 10px;
	display: block;
	font-family: Lato;
	line-height: 30px;
	text-transform: capitalize;
	font-weight: 500;
}

.portfolio_section{
	background: url("../images/background/parallax_back.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed; ;
}

.content{
	background: url("../images/background/parallax_front.svg");
	background-size: cover;
	background-origin: border-box;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	padding:200px 30px 300px 30px;
	color: white;
}

.portfolio-1-head{
	font-size: 2vw;
	font-weight: 800;
	text-transform: uppercase;
	font-family: 'Spartan-Bold';
	margin-left:100px;
}

.end{
	background:#ffa161;
	width: 100%;
	padding: 10px 100px;
}

p.endpara{
	font-size:1vw;
	color:black;
	font-weight: 400;
	font-family: 'Lato-Regular';
}

#myBtn {
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: black;/*  Set a background color*/ 
	color: white; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 10px;  /*Some padding */
	font-size:30px; /* Increase font size */
	opacity: 0.5;
	border-radius: 100%;
}

button#myBtn:hover {
  background-color: #555; /*
  transform: scale(1.2); */
  animation:  shake 0.8s ;
}

@keyframes shake{
	0%{
		transform: translateX(0)
	}
	20%{
		transform: translateX(10px);
	}
	40%{
		transform: translateX(-10px);
	}       
	60%{
		transform: translateX(10px);
	}
	80%{
		transform: translateX(-10px);
	}
	100%{
		transform: translateX(0px);
	}
}

.honeycomb
{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	transform: translateY(80px);
}

.honeycomb-cell
{
	background: url("../images/background/parallax_front.svg");	
	-webkit-box-flex: 0;
	flex: 0 1 250px;
	max-width: 350px;
	height: 137.5px;
	margin: 60px 12px 25px;
	position: relative;
	text-align: center;
	z-index: 1;
	box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.1);
}
.honeycomb-cell_img
{
	object-fit: cover;
	object-position: center;
}
.honeycomb-cell_title
{
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-hyphens: auto;
	hyphens: auto;
	word-break: break-word;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	font-size: 1.75em;
	transition: opacity 350ms;
	opacity: 0;
}
.honeycomb-cell_title > small
{
	font-weight: 300;
	margin-top: 0.25em;
}
.honeycomb-cell::before,
.honeycomb-cell::after
{
	content: '';
}
.honeycomb-cell::before,
.honeycomb-cell::after,
.honeycomb-cell_img
{
	top: -50%;
	left: 0;
	width: 100%;
	height: 200%;
	display: block;
	position: absolute;
	-webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	z-index: -1;
}
.honeycomb-cell::before
{
	background: #fff;
	transform: scale(1.022);
}
.honeycomb-cell::after
{
	background: #111111;
	opacity: 0.7;
	transition: opacity 350ms;
	-webkit-transition: opacity 350ms;
}
.honeycomb-cell:hover
.honeycomb-cell_title
{
	opacity: 1;
}
.honeycomb-cell:hover
.honeycomb-cell_img
{
	filter: grayscale(0%);
}

.honeycomb-cell:hover::after
{
	opacity: 0;
}
.honeycomb_Hidden
{
	display: none;
	opacity: 0;
	width: 250px;
	margin: 0 12.5px;
}

.footerAbout{
	font-family: 'Lato-Regular';
	 font-size: 17px;
	font-weight: 400;
	line-height: 26px; 
	margin-left: auto;
	margin-right: auto;
	
}