/**
* Template Name: onetech
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

body {
	font-family: 'Manrope', sans-serif;
	color: #444444;
	overflow:hidden;

}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Manrope', sans-serif;
}

h2 {
	font-weight: 700 !important;
}

li {
	list-style: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #000;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #37517e;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #1ddb24;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: #000;
	line-height: 0;
}

.back-to-top:hover {
	background: #000;
	color: #fff;
}
.back-to-top:hover i {
	color: #fff;
}
.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: #000;
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgb(0 0 0);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #1ddb24;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	border: 2px solid #1ddb24;
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #1ddb24;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
    padding: 5px 0px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: #0c3c53;
}

.navbar .dropdown ul a i {
	font-size: 8px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #1ddb24;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
.popup-btn {
    background-color: #00cc00;
    color: #fff;
    font-weight: bold;
    height: 40px;
    border: none;
    padding: 3px 27px;
}
.popup-btn:hover {
   background-color: #000;
}
@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(40, 58, 90, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #1ddb24;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
	color: #37517e;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #1ddb24;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 125vh;
    background: #F2F4F7;
}

#hero .container {
	padding-top: 72px;
}

#hero p {
	color: #000;
	font-size: 16px;
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #000;
}

#hero h2 {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 50px;
	font-size: 24px;
}

#hero .btn-get-started {
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 11px 28px;
	border-radius: 5px !important;
	transition: 0.5s;
	margin: 10px 0 0 0;
	color: #000;
	background: #1ddb24;
}

#hero .btn-get-started:hover {
	background: #1ddb24;
}

#hero .btn-watch-video {
	font-size: 16px;
	display: flex;
	align-items: center;
	transition: 0.5s;
	margin: 10px 0 0 25px;
	color: #fff;
	line-height: 1;
}

#hero .btn-watch-video i {
	line-height: 0;
	color: #fff;
	font-size: 32px;
	transition: 0.3s;
	margin-right: 8px;
}

#hero .btn-watch-video:hover i {
	color: #1ddb24;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

section.section {
	background: transparent;
}

.slideshow {
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
}

.slideshow .slide img {
	max-width: 100%;
	width: 100%;
}

.slideshow .slick-prev:before,
.slideshow .slick-next:before {
	color: black;
}

.banner {
	margin-top: 50px;
}

.slideshow {
    position: relative;
    left: 10px;
    transform: rotateY(-2deg);
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/sl4.jpg);
}

.column.is-10.is-offset-1 {
	width: 79%;
	perspective: 100px;
	text-align: center;
}

.slideshow .slide img {
	border-radius: 20px;
}

@media (max-width: 991px) {
	#hero {
		height: 191vh;
		text-align: center;
	}

	#hero .animated {
		animation: none;
	}

	#hero .hero-img {
		text-align: center;
	}

	#hero .hero-img img {
		width: 50%;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
		margin-top: 30px;
	}

	#nav-tabContent {
		margin-top: 584px !important;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	#hero .hero-img img {
		width: 70%;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 100%;
	}

	#hero .btn-get-started {
		font-size: 16px;
		padding: 10px 24px 11px 24px;
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Market section
--------------------------------------------------------------*/
.market-section {
	padding-top: 50px;
}

.heading-pera {
	width: 85%;
	margin: auto;
}

.heading-pera h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
}

.heading-pera p {
	font-size: 16px;
	color: #000;
}

/*--------------------------------------------------------------
# Digital section
--------------------------------------------------------------*/
.digital-content h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
}

.digital-content p {
	font-size: 16px;
	color: #000;
	padding-top: 15px;
}

.digital-section {
	margin-top: 50px;
}

.digital-button button {
	background: no-repeat;
	border: none;
}

.digital-button button a {
	color: #fff;
	background: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 30px;
}

.digital-button {
	padding-top: 30px;
}

.seo-section {
	padding-top: 80px;
}

.search-engine h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
}

.search-engine p {
	font-size: 16px;
	color: #000;
	padding-top: 15px;
}

.search-engine ul li {
	padding: 8px 0px;
}

.gallery-image {
	padding-top: 50px;
}

.gallery-image img {
    width: 100%;
    height: 200px;
}

.ecommerce-section {
	padding-top: 50px;
}

.ecommerce-text h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
}

.ecommerce-text p {
	font-size: 16px;
	color: #000;
}

.ecommerce-text ul li {
	padding: 8px 0px;
}

.milion {
	background-color: #1ddb24;
	padding: 7px 19px;
}

.ecommerce-text h3 {
	font-size: 40px;
	color: #000;
	font-weight: 500;
	padding-top: 30px;
}

.ecommerce-text h3 span {
	font-weight: 600;
}

.credits ul li {
	display: inline-block;
}

.credits ul li a {
	font-size: 16px;
	color: #1ddb24;
	text-decoration: none;
	padding: 0 15px;
}

.form-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px;
    margin-top: 20px;
}

.form-form select {
	border: none;
}

.form-form .form-control {
	border: none;
}

.form-form ::-webkit-input-placeholder {
	/* Edge */
	color: #00000066;
}

.form-form :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #00000066;
}

.form-form ::placeholder {
	color: #00000066;
}

.form-form label {
	color: #000;
	font-weight: 700;
}

.icon-text {
	position: relative;
	padding-left: 38px;
}

.icon-text:before {
	content: "";
	background-image: url(../images/linePNG.PNG);
	position: absolute;
	width: 50px;
	left: 0px;
	height: 100px;
	background-repeat: no-repeat;
}

.search-engine ul {
	padding-left: 0px;
}

.search-engine ul li {
	position: relative;
	padding-left: 30px;
}

.search-engine ul li:before {
	content: "";
	background-image: url(../images/dot.PNG);
	position: absolute;
	width: 50px;
	left: 0px;
	height: 100px;
	background-repeat: no-repeat;
}

.ecommerce-text ul {
	padding-left: 0px;
}

.ecommerce-text ul li {
	position: relative;
	padding-left: 30px;
}

.ecommerce-text ul li:before {
	content: "";
	background-image: url(../images/dot.PNG);
	position: absolute;
	width: 50px;
	left: 0px;
	height: 100px;
	background-repeat: no-repeat;
}

.tab-heading {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
	text-align: center;
	padding-bottom: 20px;
}

.tab-section button {
	margin: 0 45px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: var(--bs-nav-tabs-link-active-color);
	background-color: #1ddb24;
	border-radius: 50%;
}

.nav-tabs .nav-link {
	border: 1px solid #000;
	border-radius: 50%;
}

.nav-tabs {
	border-bottom: 0px;
}

.tab-section .nav-link {
	position: relative;
}

.tab-section .nav-link:after {
	content: "";
	position: absolute;
	width: 91px;
	height: 3px;
	top: 38px;
	left: 84px;
	background-color: #000;
}

.tab-section .nav-link:last-child::after {
	display: none;
}

#nav-tabContent {
	background-color: #000;
	border-radius: 30px;
	padding: 40px 18px !important;
	margin-top: 50px;
}

#nav-tabContent p {
	color: #fff;
	text-align: center;
}

.tab-content h2 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	padding-bottom: 10px;
}

.tab-section img {
	width: 52px;
	height: 67px;
}

.dis-first ul,
.dis-second ul,
.dis-third ul {
	padding-left: 0px;
}

.discovery-section {
	background-color: #000;
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 100px;
}

.dis-second {
	background: #fff;
	padding: 90px 58px;
	position: relative;
}

.dis-second ul li {
	padding: 10px 0px;
	color: #000;
	font-weight: 600;
	font-size: 18px;
	text-decoration: underline;
}

.dis-second ul {
	margin-left: 92px;
}

.dis-second ul li {
	position: relative;
	padding-left: 30px;
}

.dis-second ul li:before {
	content: "";
	background-image: url(../images/dot.PNG);
	position: absolute;
	width: 50px;
	left: 0px;
	height: 100px;
	background-repeat: no-repeat;
}

.discovery-section h2 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	width: 70%;
	margin: auto;
	padding-bottom: 40px;
}

.dis-first ul li {
	background: #fff;
	padding: 15px 30px;
	margin: 20px 0px;
	color: #000;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.dis-first ul li:first-child {
	background-color: #1ddb24;
}

.dis-first {
	position: absolute;
	left: 35px;
	z-index: 99999;
}

.dis-third {
    background-color: grey;
    padding-bottom: 1px;
    border-radius: 10px;
}

.dis-third ul li {
    background: #fff;
    margin: 13px 12px;
    padding: 13px 15px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.dis-third h5 {
    font-size: 28px;
    color: #000;
    background: #1ddb24;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/*--------------------------------------------------------------
# Digital marketing
--------------------------------------------------------------*/
.digital-marketing-section {
	margin-top: 50px;
}

.digital-marketing-section h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
	text-align: center;
	padding-bottom: 20px;
}

.image-text {
	text-align: center;
	border: 1px solid #00000052;
	border-radius: 8px;
	margin: 12px 0px;
	padding: 15px 0;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.digital-marketing-right {
	border: 1px solid #00000052;
	border-radius: 8px;
	padding: 10px 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.digital-marketing-right h3 {
	font-size: 32px;
	color: #000;
	font-weight: 600;
}

/*--------------------------------------------------------------
# Our partners
--------------------------------------------------------------*/
.our-partner-section {
	padding-top: 50px;
	margin-top:60px;
}


.our-partner-section h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
	text-align: center;
	padding-bottom: 20px;
}

.our-partner-section p {
	text-align: center;
	font-size: 16px;
	color: #000;
	width: 80%;
	padding-bottom: 30px;
	margin: auto;
}

.part-logo {
	text-align: center;
	background: #fff;
	padding: 23px 0;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	margin: 15px 0;
}

.let-get-section {
	padding-top: 50px;
}

.lets-get-heading h2 {
	font-size: 40px;
	color: #000;
	font-weight: 600;
	padding-top: 30px;
	text-align: center;
	padding-bottom: 40px;
}

.heading h5 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
}

.let-get-section p {
	margin-bottom: 0px;
}

.heading img {
	max-width: 200px;
}
.heading p a {
    color: #000;
    font-size: 14px;
    font-weight: bold;
}
.heading p a:hover {
    color: #1ddb24;
}
.heading p {
	font-size: 16px;
	color: #000;
	padding: 3px 0px;
}

.heading span {
	font-weight: 700;
	color: #000;
}

.video-call i.fab.fa-whatsapp {
	color: #1ddb24;
}

.video-call i.fab.fa-skype {
	color: #209dd8;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
	font-weight: 700;
	font-size: 28px;
	color: #000;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding: 0 0 8px 26px;
	position: relative;
}

.about .content ul i {
	position: absolute;
	font-size: 20px;
	left: 0;
	top: -3px;
	color: #1ddb24;
}

.about .content p:last-child {
	margin-bottom: 0;
}

#about-page {
	padding-top: 50px;
}

#about {
	width: 100%;
	height: 60vh;
		background-image:url(../images/diverse-businesspeople-having-meeting.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

#about h1 {
	font-size: 48px;
	color: #fff;
	font-weight: 600;
}

.about-button button {
	background: none;
	border: none;
}

.about-button button a {
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 11px 28px;
	border-radius: 5px !important;
	transition: 0.5s;
	margin: 10px 0 0 0;
	color: #000;
	background: #1ddb24;
}

/*--------------------------------------------------------------
# counter Section
--------------------------------------------------------------*/
.value_image img {
	width: 30%;
}
.display-4:after {
    content: "+";
}
p#count2:after {
    content: "*7" !important;
}
.values_box {
    background: #ffffff;
    padding: 20px;
    height: 360px;
    color: #fff;
    float: left;
    min-height: 290px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
}

.value_image {
	text-align: center;
}

.values_box h5 {
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 700 !important;
	text-align: center;
	color: #000;
	font-family: 'Poppins' !important;
	letter-spacing: -1px;
}

.values_box p {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	width: 100%;
	float: left;
	font-family: 'Poppins';
	font-weight: 400;
	color: #000;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
	border-radius: 8px;
	overflow: hidden;
}

.team .team-member .social {
	position: absolute;
	left: 0;
	top: -18px;
	right: 0;
	opacity: 0;
	transition: ease-in-out 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team .team-member .social a {
	transition: color 0.3s;
	color: #1ddb24;
	background: #000;
	margin: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transition: 0.3s;
}

.team .team-member .social a i {
	line-height: 0;
	font-size: 16px;
}

.team .team-member .social a:hover {
	background: #1ddb23d6;
	color: #000;
}

.team .team-member .social i {
	font-size: 18px;
	margin: 0 2px;
}

.team .team-member .member-info {
	padding: 30px 15px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background: #fff;
	margin: -50px 20px 0 20px;
	position: relative;
	border-radius: 8px;
}

.team .team-member .member-info h4 {
	font-weight: 400;
	margin-bottom: 5px;
	font-size: 24px;
	color: #000;
}

.team .team-member .member-info span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.team .team-member .member-info p {
	font-style: italic;
	font-size: 14px;
	line-height: 26px;
	color: var(--color-gray);
}

.team .team-member:hover .social {
	opacity: 1;
}

.section-header h2 {
	font-size: 40px;
	color: #000;
	text-align: center;
}

.section-header p {
	color: #000;
	text-align: center;
	width: 80%;
	margin: auto;
	padding-bottom: 40px;
}

/*--------------------------------------------------------------
# Contact page 
--------------------------------------------------------------*/
.contact .info-item+.info-item {
	margin-top: 40px;
}

.contact .info-item i {
	font-size: 20px;
	background: #000;
	color: #fff;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h4 {
	padding: 0;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #000;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
	color: #000;
}

.contact .php-email-form {
	width: 100%;
	background: #fff;
	padding: 30px 20px;
	border-radius: 15px;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 4px;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: #000;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
	margin-bottom: 20px;
}

.contact .php-email-form button[type=submit]:hover {
	background: rgba(13, 66, 255, 0.8);
}

.contact .container {
	background-color: #1ddb24;
	padding: 20px 20px;
	border-radius: 15px;
	margin-bottom: 50px;
}

.contact-heading h2 {
	color: #000;
	font-size: 28px;
	padding-bottom: 10px;
}

.contact-heading h2 span {
	color: #1ddb24;
	font-weight: 800 !important;
}

#contact {
	margin-top: 50px;
}

.contact-content h2 {
	font-size: 40px;
	color: #fff;
}

.contact-content ul {
	padding: 0px;
}

.contact-content ul li {
	color: #fff;
}

.contact-content ul li {
	padding: 0 0 8px 26px;
	position: relative;
}

.contact-content ul i {
	position: absolute;
	font-size: 20px;
	left: 0;
	top: -3px;
	color: #000;
}

.contact-deatail {
	background: #fff;
	border-radius: 15px;
	padding: 40px 17px;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------
About contact section
----------------------------------------------*/
main {
	margin-top: 50px;
	background: #000;
	background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
	background: linear-gradient(to right, #000000, #1ddb24);
}

.con {
	padding: 5rem 10px;
	background-color: #fff;
	background-image: linear-gradient(170deg, floralwhite, floralwhite 50%, #1ddb24 50%, #1ddb24 100%);
	background-position: center center;
}

.con .form-box {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 2rem;
	background-image: linear-gradient(170deg, floralwhite, floralwhite 50%, #1ddb24 50%, #1ddb24 100%);
	background-position: center center;
	border: 1px solid #007575;
	box-shadow: 1px 1px 3px dimgrey, 3px 3px 7px grey;
}

.con h2 {
	font-size: 40px;
	color: #000;
	margin-bottom: 0.7rem;
	font-size: 2rem;
	font-weight: 300;
}

.con .form-item {
	margin-bottom: 0.7rem;
}

.con label,
input,
textarea {
	display: block;
	width: 100%;
	font-size: 1.2rem;
	line-height: 1.4;
	outline-color: #007575;
}

.con label {
	margin-bottom: 3px;
}

.con input,
textarea {
	padding: 3px;
	border: 1px solid #007575;
	background-color: rgba(250, 250, 250, 0.85);
}

.con select {
	padding: 3px;
	border: 1px solid #007575;
	background-color: rgba(250, 250, 250, 0.85);
	border-radius: 1px;
}

.con input[type=submit] {
	background-color: #000;
	padding: 7px;
	border: 0;
	color: snow;
	cursor: pointer;
	text-transform: uppercase;
}

.con input[type=submit]:hover {
	animation-name: submit-hover;
	animation-duration: 0.7s;
}

.con input[type=submit]:active {
	animation-name: submit-active;
	animation-duration: 0.3s;
}

@keyframes submit-hover {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.02);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes submit-active {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.98);
	}
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
	padding: 60px 0;
	margin-top: 50px;
}

.services .service-item {
	padding: 40px;
	background: #fff;
	height: 100%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 10px;
}

.services .service-item .icon {
	width: 48px;
	height: 48px;
	position: relative;
	margin-bottom: 50px;
}

.services .service-item .icon img {
	color: #000;
	font-size: 56px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}

.services .service-item .icon:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background: #eeeeee;
	border-radius: 50px;
	z-index: 1;
	top: 10px;
	right: -20px;
	transition: 0.3s;
}

.services .service-item h3 {
	color: #000;
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid #eeeeee;
	transition: 0.3s;
}

.services .service-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
	color: #000;
}

.services .service-item:hover .icon:before {
	background: #1ddb24;
}

.services .service-item:hover h3 {
	border-color: #000;
}

.services .service-item .readmore {
	margin-top: 15px;
	display: inline-block;
	color: #000;
}


.bg-color {
	background: var(--bg-color);
}

.half-color-box {
	background: var(--gradient);
	height: 300px;
	margin-bottom: 100px;
}

.text-whtie {
	color: #fff !important;
}

.bold {
	font-weight: bolder;
	color: #000;
}

.por {
	position: relative;
}

.review-box .quote {
	position: absolute;
	width: 40px;
	right: 10px;
	bottom: 10px;
}

.test-arrowbox {
	position: absolute;
	right: 20px;
	display: flex;
	top: 70px;
}

.review-box {
	border-radius: 3px;
	background: #fff;
	box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.review-box h5 {
	margin: 0;
}

.review-box p {
	margin-bottom: 0;
	margin-top: 10px;
	color: #7d8597;
}

.user-post {
	font-size: 14px;
	margin: 0 !important;

}

.swiper-testimonial {
	padding: 100px 20px;
	padding-top: 30px;
}

.half-color-box {
	background: var(--gradient);
	height: 300px;
	margin-bottom: 140px;
	margin-top: 50px;
}

.test-arrowbox .swiper-button-next-test,
.test-arrowbox .swiper-button-prev-test {
	margin-right: 20px;
	/* background: var(--comp-color);2 */
	border-radius: 50%;
	--size: 55px;
	width: var(--size);
	height: var(--size);
	display: flex;
	align-items: center;
	justify-content: center;
}

.arrow-right {
	transform: rotate(180deg);
	margin-top: -8px;
}

.arrow {
	cursor: pointer;
	transition: all 0.2s ease-in;
}

.arrow:hover {
	transform: translateX(-15px);
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
	color: #000;
}

.arrow-right svg {
	fill: #1ddb24;
}

.swiper-button-prev-test.swiper-button-disabled svg {
	fill: #1ddb24;
}

.swiper-button-prev-test svg {
	fill: #1ddb24;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #000;
}

/*--------------------------------------------------------------
# Award
--------------------------------------------------------------*/
.award-img {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.award-text h2 {
	font-size: 40px;
	color: #000;
	font-weight: 500 !important;
}

.award-text h2 span {
	font-weight: 700 !important;
	color: #1ddb24;
}

.award-text p {
	font-size: 16px;
	color: #000;
	padding-bottom: 20px;
}

.award-section {
	margin-top: 250px;
}

/*--------------------------------------------------------------
# Social media agency
--------------------------------------------------------------*/
#hero h1 span {
	border-bottom: 3px solid #1ddb24;
}

section.wht_we_offer {
	background: #f8f8f8;
	padding: 80px 0;
	float: left;
	width: 100%;
}

.social-media-form textarea {
	border: none;
}

.wht_we_offer h2 {
	font-weight: 700 !important;
	font-size: 40px;
	line-height: 46px;
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
	color: #000;
}

.innr_offer {
    background: #fff;
    padding: 20px 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    float: left;
    height: 480px;
}

.innr_offer img {
	width: 100px;
	margin-bottom: 20px;
}

.offer_ht {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 10px;
}

.innr_offer p {
	color: #000;
	font-size: 14px;
	text-align: center;
}

.offerntn {
	color: #1ddb24;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}

.innr_offer ul {
	float: left;
	text-align: left;
	font-size: 14px;
}

.innr_offer ul li {
	border-bottom: 1px solid #1ddb24;
	width: 100%;
	float: left;
	padding: 3px 0;
}

.innr_offer a {
	margin-top: 10px;
	background: #1ddb24;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0;
}

section.smm_orapproach {
	background: #f8f8f8;
	float: left;
	padding: 80px 0;
	width: 100%;
}
/*--------------------------------------------------------------
# Our aproach section
--------------------------------------------------------------*/
.sma_subheading {
	line-height: 25px;
	font-size: 22px;
	margin-bottom: 10px;
	text-align: center;
	color: #000;
}

.smm_orapproach h2 {
	font-weight: 700 !important;
	font-size: 40px;
	line-height: 46px;
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
	color: #000;
}

.smm_orapproach .frstc .inner_iconi {
	top: 45px;
}

.smm_orapproach .inner_iconi {
	float: left;
	background: #1ddb24;
	margin-right: 0;
	width: 120px;
	height: 77.735px;
	text-align: center;
	position: absolute;
	top: 40px;
}

.smm_orapproach .icon_with_content {
	margin-bottom: 30px;
}

.smm_orapproach .icon_with_content {
	float: left;
	width: 100%;
	position: relative;
}

.smm_orapproach .frstc .inner_iconi {
	top: 45px;
}

.smm_orapproach .inner_iconi:before {
	content: "";
	position: absolute;
	bottom: -28.8675px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 28.8675px solid #000;
}

.smm_orapproach .inner_iconi img {
	height: 55px;
	width: auto;
	text-align: center;
	margin-top: 10px;
}

.smm_orapproach .inner_iconi:after {
	content: "";
	position: absolute;
	top: -28.8675px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-bottom: 28.8675px solid #000;
}

.smm_orapproach .inner_textt {
	background: #fff;
	padding: 20px 20px 20px 100px;
	margin-left: 60px;
	box-shadow: 0 0 10px 2px rgb(0 0 0 / 2%);
}

.smm_orapproach .inner_textt li {
	margin-bottom: 7px;
	color: #000;
}

.smm_orapproach .inner_textt li strong {
	font-size: 24px;
	margin-bottom: 10px;
	float: left;
	width: 100%;
	color: #000;
}

section.setthe_launchpad {
	background: #fff;
	float: left;
	width: 100%;
	padding: 80px 0;
}

.sma_subheading {
	line-height: 25px;
	font-size: 22px;
	margin-bottom: 10px;
	text-align: center;
	color: #000;
}

.setthe_launchpad h2 {
	font-weight: 700 !important;
	font-size: 40px;
	line-height: 46px;
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
	color: #000;
}

.box_wcu {
	float: left;
	height: 200px;
	width: 100%;
	background: #000;
	margin: 0 7px 7px 0;
	color: #fff;
}

.box_wcu span {
	float: left;
	width: 40px;
	background: #1ddb24;
	text-align: center;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
}

.box_wcu p {
	float: left;
	width: 100%;
	padding: 20px;
	color: #fff;
	font-size: 14px;
}

section.smm_prooces {
	padding: 80px 0;
	float: left;
	width: 100%;
	background: #f8f8f8;
}

.sma_subheading {
	line-height: 25px;
	font-size: 22px;
	margin-bottom: 10px;
	text-align: center;
	color: #000;
}

.smm_prooces h2 {
	font-weight: 700 !important;
	font-size: 40px;
	line-height: 46px;
	width: 100%;
	margin-bottom: 60px;
	text-align: center;
	color: #000;
}

.smm_prooces_txt li {
	margin-bottom: 30px;
	float: left;
}

.smm_prooces_txt h3 {
	font-weight: 700 !important;
	letter-spacing: 0;
	color: #000;
}

section.packages_table_smo {
	padding: 60px;
	width: 100%;
	float: left;
	background: #fff;
}

.sma_subheading {
    line-height: 15px;
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
    margin-top: 0px;
}

section.packages_table_smo h2 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: -1px;
	font-weight: 700 !important;
	color: #000;
}

.z_inner_package {
	border-color: #0000000f;
	border-style: solid;
	padding: 30px 10px 0;
	float: left;
	width: 100%;
	font-family: poppins;
}

.package_name {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	font-family: poppins;
}

.package_p {
	padding: 5px 0 15px;
	text-align: center;
	color: #000;
}

.package_price_p {
	text-align: center;
	float: left;
	width: 100%;
	background: #6a77f138;
	margin-bottom: 20px;
	padding: 3px 0;
	color: #000;
}

.z_inner_package_content {
	float: left;
	width: 100%;
}

.z_inner_package_content h4 {
	font-weight: 700 !important;
	font-size: 16px;
	margin-bottom: 20px;
	color: #000;
}

.z_inner_package_content h4:before {
	content: "\f00c";
	font: normal normal normal 14px/1 'FontAwesome';
	width: 10px;
	background: #000;
	float: left;
	width: 20px;
	text-align: center;
	height: 18px;
	color: #1ddb24;
	line-height: 18px;
	font-size: 10px;
	margin-right: 10px;
	border-radius: 3px;
}

.z_inner_package_content ul {
	padding-left: 5px;
	margin-bottom: 10px;
}

.z_inner_package_content li {
	line-height: 26px;
	color: #000;
	font-family: poppins;
	font-size: 14px;
}

.z_inner_package_content li:before {
	content: "\f111";
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 8px;
	float: left;
	margin-right: 11px;
	color: #1ddb24;
	position: relative;
	top: 8px;
}

.highlght:before {
	display: none;
}

.z_inner_package_btn {
	float: left;
	width: 100%;
	text-align: center;
	margin: 0 0 20px;
}

.z_inner_package_btn a {
	padding: 10px 25px;
	background: #1ddb24;
	border-radius: 0;
	border: none;
	color: #fff;
	font-weight: 500;
	line-height: initial;
	width: 100%;
	float: left;
	font-size: 16px;
}

.z_inner_package_content li span {
	float: left;
	line-height: 18px;
	margin-bottom: 10px;
	color: #000;
	font-size: 14px;
	padding-bottom: 0;
	text-align: left;
}

.z_inner_package_content li {
	line-height: 26px;
	color: #000;
	font-family: poppins;
	font-size: 14px;
}

section.fourpntr {
	float: left;
	width: 100%;
	padding: 80px 0;
	background: linear-gradient(to right, #000000, #1ddb24);
	margin-bottom: 50px;
}

.fourpntr h2 {
	text-align: center;
	font-size: 40px;
	color: #fff;
	margin-bottom: 60px;
	font-weight: 700 !important;
	letter-spacing: -1px;
}

.fourpntr h3 {
	text-align: center;
	font-size: 15px;
	color: #fff;
	font-weight: 300 !important;
	font-family: 'Poppins' !important;
	margin-top: 20px;
	line-height: 19px;
}

/*
 CSS for the main interaction
*/
.tabset>input[type="radio"] {
	position: absolute;
	left: -200vw;
}

.tabset .tab-panel {
	display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
	display: block;
}
/*
   Styling
  */
.tabset>label {
    position: relative;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    padding: 28px 43px;
}

.tabset>label::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 10px;
    width: 20px;
    height: 4px;
    background: #000 !important;
}

.tabset>label:hover,
.tabset>input:focus+label {
	color: #1ddb24;
}

.tabset>label:hover::after,
.tabset>input:focus+label::after,
.tabset>input:checked+label::after {
	background: #1ddb24;

}
.tabset>input:checked+label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    background: #1ddb24;
    color: #000;
}

.tab-panel {
	padding: 30px 0;
	border-top: 1px solid #ccc;
}

.tab-text h5 {
	font-size: 28px;
	color: #000;
	font-weight: 700;
}

.social-media-heading h2 {
	font-size: 40px;
	color: #000;
	padding-bottom: 20px;
}

.social-tabs {
	margin-top: 719px;
}

/*
 CSS for the main interaction
*/
.tabset2>input[type="radio"] {
	position: absolute;
	left: -200vw;
}

.tabset2 .tab-panel {
	display: none;
}

.tabset2>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset2>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset2>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset2>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset2>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset2>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
	display: block;
}

/*
   Styling
  */


.tabset2>label {
	position: relative;
	display: inline-block;
	padding: 15px 15px 25px;
	border: 1px solid transparent;
	border-bottom: 0;
	cursor: pointer;
	font-weight: 600;
	color: #000;
	padding: 28px 70px;
}

.tabset2>input:checked+label {
	border-color: #ccc;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
}

.tabset2 p {
	margin: 0px;
	text-align: center;
}

.tabset2 .facebook {
	background-color: #4064ac;
	padding: 15px 18px;
	border-radius: 15px;
}

.tabset2 i {
	font-size: 30px;
	color: #fff;
}

.tabset2 .insta {
	background-color: #bb327f;
	padding: 15px 18px;
	border-radius: 15px;
}

.tabset2 .twit {
	background-color: #1c9ceb;
	padding: 15px 18px;
	border-radius: 15px;
}

.tabset2 .pin {
	background-color: #b7081b;
	padding: 15px 18px;
	border-radius: 15px;
}

.tabset2 .link {
	background-color: #0077b5;
	padding: 15px 18px;
	border-radius: 15px;
}

.conten-box {
	background: #000;
	padding: 25px;
}

.conten-box p {
	color: #fff;
}

.tab2 {
	padding: 0px;
}

.faq-section {
    margin-top: 50px;
}
.result-faq h5 {
	color: #000;
	font-size: 28px;
	font-weight: 600;
}

.accordion-button:not(.collapsed) {
	color: #000000;
	background-color: #ffffff;
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.faq-heading h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding-bottom: 20px;
    margin-top: 50px;
}

.social-tab h2 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: -1px;
	font-weight: 700 !important;
	color: #000;
}

.tab-img img {
	width: 100%;
}

.smm_process_img img {
	width: 100%;
}

.form-form.social-media-form h3 {
	color: #000;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	font-size: 14px;
	background: #000;
}

.footer-top img {
	max-width: 150px;
}

#footer .footer-newsletter {
	text-align: center;
	font-size: 15px;
	color: #444444;
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	color: #37517e;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 5px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
	text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px) !important;
}

#footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #1ddb24;
	border-bottom-right-radius: 5px;
	color: #000;
	border-top-right-radius: 5px;
	transition: 0.3s;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	font-weight: 600;
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #209dd8;
}

.footer-newsletter p {
	color: grey !important;
	text-align: initial;
	font-size: 12px;
}

#footer .footer-top {
	padding: 40px 0 0px 0;
	background: #000;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

.bo {
	border-bottom: 1px solid #fff;
}

#footer .footer-top .footer-contact h3 {
	font-size: 28px;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	color: #37517e;
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Jost", sans-serif;
	color: #fff;
}

#footer p {
	color: #fff;
}

#footer .footer-top h4 {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #47b2e4;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
	text-decoration: none;
	font-size: 14px;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color:  #00e600;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #1ddb24;
    line-height: 1;
    padding: 8px 0;
    margin-right: 3px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #209dd8;
	color: #fff;
	text-decoration: none;
}

#footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #fff;
}

#footer .copyright {
	float: left;
}

#footer .credits {
	float: right;
	font-size: 13px;
}

#footer .credits a {
	transition: 0.3s;
}

@media (max-width: 768px) {
	#footer .footer-bottom {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .copyright,
	#footer .credits {
		text-align: center;
		float: none;
	}

	#footer .credits {
		padding-top: 4px;
	}
}

/*------------------------------
Industry section
-------------------------------------*/
.industry-section {
	background: linear-gradient(to left, #000000, #1ddb24);
	margin-top: 50px;
	padding: 40px 0;
}

.indu-heading h2 {
	font-size: 40px;
	text-align: center;
	color: #fff;
	padding-bottom: 20px;
}

.indus-box h5 {
	font-size: 22px;
	color: #000;
	padding: 20px 0;
	text-align: center;
	background: #fff;
	font-weight: 700;
}

.indus-box {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/*------------------------------
Ceo section
-------------------------------------*/
.ceo-section {
	margin-top: 50px;
	background-color: #e6eded;
	padding: 60px 0px;
}

.ceo-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.indus-box img {
	width: 100%;
	height: 283px;
}

.ceo-info h2 {
	font-size: 40px;
	color: #000;
}

.ceo-info h5 {
	font-size: 28px;
	color: #000;
}

.ceo-info a {
	font-size: 18px;
	display: inline-block;
	background: #1ddb24;
	color: #000;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

/* Custom style */
.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
	transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
/*------------------------------
Training  page
-------------------------------------*/
section.new_training_digital {
    padding: 100px 0;
    float: left;
    width: 100%;
}
.training_digital_txt h1 {
    font-size: 50px;
}
.training_digital_txt h3 {
    font-size: 22px;
    line-height: 35px;
    font-weight: 600 !important;
    margin-bottom: 30px;
    margin-top: 30px;
}
.training_digital_txt h1 span {
    background: #1ddb24;
    color: #fff;
    padding: 0 10px;
    border-radius: 10px;
    line-height: 50px !important;
}
.certified_with {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}
.certified_with img {
    margin: 0 10px;
}
.training_digital_courses li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 30px;
}
.dc_left {
    width: 20%;
    float: left;
}
span.dc_number {
    font-size: 60px;
    font-weight: 900;
    color: #1ddb24;
    line-height: 50px;
}
.dc_right {
    width: 80%;
    float: left;
}
span.dc_name {
    float: left;
    font-size: 26px;
    font-weight: 800;
    line-height: 28px;
    width: 100%;
}
span.dc_course {
    float: left;
    font-size: 16px;
    width: 100%;
    margin-bottom: 5px;
}
span.dc_stars {
    float: left;
    width: 100%;
}
.dc_stars i.fa.fa-star {
    color: #1ddb24;
    margin-right: 2px;
}
a.training_digital_btn {
    padding: 10px 20px;
    background: #1ddb24;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 15px;
}
section.dt_three_courses {
    width: 100%;
    float: left;
    padding: 0 0 80px 0;
}
section.dt_three_courses {
    width: 100%;
    float: left;
    padding: 0 0 80px 0;
}
.dt_three_inner {
    float: left;
    width: 100%;
}
.dt_three_inner img {
    width: 100%;
}
.dt_three_inner h2 {
    float: left;
    width: 100%;
    margin: 15px 0;
    font-size: 28px;
    font-weight: 600 !important;
}
.dt_three_inner .bdr {
    float: left;
    border: 2px
 solid #1ddb24;
    width: 70px;
}
.dt_three_inner p {
    float: left;
    margin-top: 25px;
}
a.dt_three_inner_lbtn {
    width: 45%;
    padding: 8px 10px;
    background: #1ddb24;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    float: left;
    border: 2px solid #1ddb24;
}
a.dt_three_inner_rbtn {
    width: 45%;
    padding: 8px 10px;
    background: #0072bd00;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    float: right;
    border: 2px solid #1ddb24;
}
section.train_why_hire {
    float: left;
    width: 100%;
    background: #ececec;
    padding: 80px 0 60px 0;
}
.train_why_hire h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.bdr_ctr {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
.train_why_hire p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
ul.z_key_ul {
    margin: 0;
    padding: 0;
}
.train_why_hire li {
    width: 25%;
    float: left;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 22px;
    border-right: 1px solid #91919136;
    padding: 0 15px;
    font-family: poppins,sans-serif;
} 
.z_key_ul li span {
    height: auto;
    width: 50px;
    float: left;
    margin-right: 10px;
}
.train_why_hire span {
    font-weight: 600;
    font-family: 'Montserrat';
    margin-top: 0px;
    float: left;
    padding-left: 0px;
    font-size: 15px;
}
.train_why_hire li img {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
section.train_popular_course {
    float: left;
    width: 100%;
    background: #fff;
    padding: 80px 0;
}
.train_popular_course .bdr_ctr {
    margin-bottom: 40px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
.tc_inner_inner img {
    width: 100%;
}
section.train_popular_course h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.tc_inner_inner h3 {
    text-align: center;
    font-size: 20px;
    margin: 20px 0 15px 0;
    color: #000;
    text-align: center;
    float: left;
    width: 100%;
    line-height: 25px;
}
.tc_inner_inner h5 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600 !important;
    font-size: 16px;
}
.tc_inner_inner .view_course {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: #1ddb24;
    float: left;
    width: 100%;
    margin-top: 10px;
    padding: 10px 0;
    border-radius: 5px;
    color: #fff;
    -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
    -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
    -o-animation: NAME-YOUR-ANIMATION 1s infinite;
    animation: NAME-YOUR-ANIMATION 1s infinite;
    font-family: 'montserrat';
}
section.tc_tools_outer {
    float: left;
    width: 100%;
    padding: 0 0 60px 0;
}
section.tc_tools_outer h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.tc_tools_outer .bdr_ctr {
    margin-bottom: 40px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
section.tc_recognised {
    background: #ececec;
    padding: 80px 0;
    float: left;
    width: 100%;
}
section.tc_recognised h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.bdr_ctr {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
.row.recogn_z {
    margin-top: 70px;
}
.tc_recognised p {
    float: left;
    width: 100%;
    margin-top: 0px;
    text-align: justify;
}
.tc_recognided_certi li {
    float: left;
    width: 50%;
    text-align: right;
}
.tc_recognided_certi img {
    width: 93%;
}
section.tc_mentors_outer {
    float: left;
    width: 100%;
    padding: 80px 0 40px 0;
}
section.tc_mentors_outer h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.bdr_ctr {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.tc_mentors_outer span.bdr_ctr_innr {
    margin-bottom: 30px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
section.tc_mentors_outer p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
.tc_mentors {
    text-align: center;
    border: 2px solid #1ddb24;
    border-radius: 10px;
    padding: 20px 10px;
    margin-bottom: 40px;
}
.tc_mentors h3 {
    font-size: 20px;
    font-family: 'Montserrat' !important;
    margin: 10px 0 5px 0;
    font-weight: 700 !important;
    letter-spacing: 0;
}
.tc_position {
    font-size: 14px;
}
section.tc_learners_outer {
    background: #ececec;
    float: left;
    width: 100%;
    padding: 60px 0;
}
section.tc_learners_outer h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
}
.tc_learners_outer p {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
section.seo-form-2.seo-newww.seo-333333.hirecstmseo.workingcstmss {
    padding-bottom: 40px;
}
section.seo-form-2.seo-newww.seo-333333.hirecstmseo.workingcstmss.tc_career h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
    margin-bottom: 0;
    margin-top: 4390px;
}
.bdr_ctr {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
span.bdr_ctr_innr {
    width: 100px;
    border-bottom: 4px solid #1ddb24;
    margin: 0 auto;
    float: none;
    display: inline-block;
}
.seo-form-2 .row {
    padding: 15px;
}
section.seo-form-2.seo-newww.seo-333333.hirecstmseo.workingcstmss {
    padding-bottom: 40px;
}
.seo-form-2 {
    background: url(../img/form-pattr.png);
    padding: 60px 0;
}
.inner_smallbusi {
    padding-bottom: 20px;
    text-align: center;
}
.inner_smallbusi img {
    width: auto !important;
    text-align: center;
    display: inline-block;
    animation: .8s pulse infinite;
}
.step-cols-line:after {
    content: '';
    position: absolute;
    height: 20%;
    width: 2px;
    
    left: 50%;
}
.small_busineess_text_inner {
    width: 100%;
    float: left;
    background: #e7e7e7;
    color: #000000;
    padding: 10px 20px;
    border-radius: 15px;
}
.row.social-media-small-businesss-inner h3 {
    text-align: left;
    float: left;
    width: 100%;
    margin-top: 8px;
    font-family: 'Poppins'!important;
    font-weight: 700 !important;
    letter-spacing: 0;
}
.row.social-media-small-businesss-inner p {
    text-align: left;
    font-weight: 400 !important;
    float: left;
    line-height: 24px;
    font-size: 16px;
    font-family: 'Poppins' !important;
}
section.tc_students {
    float: left;
    width: 100%;
    padding: 80px 0;
    background: #ececec;
}
section.tc_students h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
    margin-bottom: 0;
}
.tc_students_inner {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}
.tc_students_inner h3 {
    font-family: 'Montserrat' !important;
    font-weight: 600 !important;
    padding: 15px 0;
    font-size: 22px;
    letter-spacing: 0;
}
.tc_students_inner span {
    color: #717171;
    font-family: 'Montserrat';
    font-size: 15px;
}
section.tc_students p {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
section.tc_syllabus {
    float: left;
    width: 100%;
    padding: 60px 0;
}
section.tc_syllabus h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
    margin-bottom: 0;
}
.tc_syllabus p {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
.tc_syllanus_inner {
    background: #ececec;
    padding: 20px;
    border: 2px solid #1ddb24;
    float: left;
    width: 100%;
}
.tc_syll_icon {
    float: left;
    width: 7%;
}
.tc_syll_icon img {
    float: left;
    width: auto;
}
.tc_syll_text {
    float: left;
    padding-left: 20px;
    font-size: 30px;
    font-weight: 700 !important;
    width: 70%;
}
.tc_syll_text span {
    float: left;
    width: 100%;
    line-height: 20px;
    font-size: 20px;
    font-weight: 500;
}
.tc_syll_btn {
    width: 23%;
    float: left;
    text-align: center;
}
.tc_syll_btn a {
    background: #1ddb24;
    width: 100%;
    float: left;
    padding: 12px 5px;
    color: #fff;
    font-weight: 500 !important;
    font-size: 20px;
}
section.tc_aftercourse {
    float: left;
    width: 100%;
    padding: 30px 0 80px 0;
}
section.tc_aftercourse h2 {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 50px;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    letter-spacing: 0;
    margin-bottom: 0;
}
section.tc_aftercourse p {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
ul.tc_aftercourse_ul {
    margin-top: 90px;
}
.tc_aftercourse li {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 60px;
    float: left;
}
section.tc_aftercourse i {
    font-size: 40px;
    color: #1ddb24;
    float: left;
    margin-right: 20px;
}
.student-review h2{
	font-size: 40px;
	text-align: center;
	color: #000;
}
.student-review {
    background-color: #ececec;
    margin-top: 50px;
    padding: 50px 0;
}
p.tc_career_pp {
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
.navbar a, .navbar a:focus {
    display: initial;
}
/*------------------------------
wEB DEISGN
-------------------------------------*/
section.web_service_outer {
    padding: 60px 0 60px 0;
    float: left;
    width: 100%;
    background: #ecebeb;
}
section.web_service_outer h2 {
    text-align: center;
    font-size: 50px;
    margin: 0px 0px 38px 0px;
	color: #000;
}
.service-info-block {
    padding: 30px 20px;
    background: #c444fb;
    background: linear-gradient(312deg,#000000 0%,#1ddb24 100%);
    color: #FFF;
}
.service-info-block .info-block-header {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background-color: #FFF;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 30px 0 rgb(0 0 0 / 10%);
}
.service-info-block .info-block-header:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulseanim 3s infinite cubic-bezier(.4,0,1,1) both;
}
.info-block-header.pulse img {
    height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.service-info-block>.service-info-title {
    color: inherit;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 600 !important;
}
.service-info-block p {
    font-size: 14px;
    margin-top: 14px;
}
.web-special {
    padding: 35px 0px 60px 0px;
    float: left;
    width: 100%;
}
.web-special h3 {
    text-align: center;
    font-size: 50px;
    margin: 55px 0px 38px 0px;
	color: #000;
}
.web-feacher {
    background: #f9f9f9;
    padding: 20px 10px;
    text-align: center;
    height: 100%;
    border-radius: 5px;
    position: relative;
}
.web-feacher img {
    position: relative;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
}
.web-feacher h4 {
    margin-top: 15px;
}
.web-feacher p {
    font-size: 14px;
}
section.web-folio {
    text-align: center;
    padding: 65px 0px;
    background: #000;
    float: left;
    width: 100%;
}
section.web-folio h2 {
    font-size: 50px;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -1rem;
}
.gallery-item {
    flex: 1 0 24rem;
    margin: 1rem;
    overflow: hidden;
}
.dark-blue-bg {
    background: #1ddb24;
}
.website-services-cols-sec {
    padding: 40px 0;
}
.new-serv-col {
    background: #fff;
    text-align: center;
    border: 2px solid #000;
    /* padding: 24px 10px 9px 10px; */
    border-radius: 3px;
    margin-top: 30px;
    transition: all 0.6s ease 0s;
    min-height: 150px;
}
.new-serv-col a {
    display: block;
    /* height: 100%; */
    padding: 24px 10px 9px 10px;
    min-height: 150px;
}
.new-serv-col .img-div {
    transition: all 0.6s ease 0s;
}
.new-serv-col .ttl {
    color: #000;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
    font-weight: 400;
}
.new-serv-col img {
    margin: 0 auto;
    height: 54px;
    object-fit: contain;
}
p.desc {
    color: #fff;
}
.computer-tab{
	margin-top: 50px !important;
}
.computer-tab .tabset>label {
    padding: 24px 38px !important;
    text-align: center;
    font-size: 14px;
}
.list-list{
	position: relative;
}
.list-list li:before {
    content: "";
    background-image: url(../images/dot.PNG);
    position: absolute;
    width: 50px;
    left: 0px;
    height: 100px;
    background-repeat: no-repeat;
}
.repair-btn button{
	border: none;
	background: none;
}
.repair-btn button a {
    color: #fff;
    background: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
}
.digital-strategy img {
    width: 83%;
}
.footer-newsletter input {
    width: auto !important;
}
section.seo-section img {
    width: 85%;
}
section.ecommerce-section img {
    width: 85%;
}
.modal-dialog {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    margin: 0px auto !important;
    width: 40%;
}
.part-logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}
a.btn-get-started.scrollto {
    color: #000;
    background: #1DDB24;
    padding: 15px 5px;
    border-radius: 5px;
}
.text-primary {
    color: #1DDB24 !important;
}	
.bg-primary {
    background-color: #1DDB24 !important;
}
.box-box{
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;		
}	
.faq-heading {
    font-family: Lato;
    font-weight: 400;
    font-size: 19px;
    -webkit-transition: text-indent 0.2s;
    text-indent: 20px;
    color: #000;
    border: 1px solid #1ddb24;
    padding: 8px 0px;
    border-radius: 5px;
}
p.faq-heading:hover {
    background: #1ddb24;
    color: #fff;
}
  .faq-text {
	font-family: Open Sans;   
	font-weight: 400;
	color: #919191;
	width:95%;
	padding-left:20px;
	margin-bottom:30px;
  }
  .faq-headingg h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding-bottom: 20px;
    margin-top: 50px;
}
  
  .faq {
	width: 1000px;
	margin: 0 auto;
	background: white;
	border-radius: 4px;
	position: relative;
  }
.faq label {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 56px;
    padding-top: 1px;
    background-color: #FAFAFA;
}
  
  .faq input[type="checkbox"] {
	display: none;
  }
  
.faq .faq-arrow {
    width: 5px;
    height: 5px;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 2px solid rgb(29 219 36);
    border-right: 2px solid rgb(29 219 36);
    float: right;
    position: relative;
    top: -30px;
    color: red;
    right: 27px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.faq .faq-arrow:hover {
    border-top: 2px solid #fff;
    border-right: 2px #fff;
}
  
   .faq input[type="checkbox"]:checked + label > .faq-arrow {
	transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	transition: transform 0.8s, -webkit-transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
  }
   .faq input[type="checkbox"]:checked + label {
	display: block;
	background: rgba(255,255,255,255) !important;
	color: #4f7351;
	height: 225px;
	transition: height 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .faq input[type='checkbox']:not(:checked) + label {
    display: block;
    transition: height 0.8s;
    height: 50px;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
  
  ::-webkit-scrollbar {
	display: none;
  }
  .digital-marketing-left img {
    width: 85%;
    height: 115px;
    object-fit: contain;
}
.media img {
    width: 20% !important;
}
.tabb .tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #F2F4F7;
    width: 30%;
    height: 400px;
    border-radius: 10px 0 0 10px;
}

.tabb .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 22px 16px;
    width: 90%;
    border: none;
    outline: none;
    background: #fff;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    font-size: 17px;
    margin: 5%;
    border-radius: 4px;
}
div#firstTab li {
    color: #000;
    margin: 14px 0px;
}
.tabb .tab button:hover {
    background-color: #1ddb24;
    color: #000;
}
.tabb .tab button.active {
    background-color: #1ddb24;
    color: #000;
}

.tabb .tabcontent {
    float: left;
    padding: 4px 12px;
    border: 1px solid #ccc;
    width: 70%;
    border-left: none;
    background: #fff;
    height: 400px;
    border-radius: 0 10px 10px 0;
}
div#secondTab li {
    margin: 5px 0px;
    color: #000;
}
div#thirdTab li {
    margin: 11px 0px;
    color:#000;
}
div#fourtTab li {
    margin: 5px 0px;
    color:#000;
}
div#firstTab h1 {
    background: #1ddb24;
    border-radius: 4px;
    font-size: 30px;
    margin-top: 12px;
}
div#secondTab h5 {
    background: #1ddb24;
    border-radius: 4px;
    font-size: 30px;
    margin-top: 12px;
}
div#thirdTab h5 {
    background: #1ddb24;
    border-radius: 4px;
    font-size: 30px;
    margin-top: 12px;
}
div#fourtTab h5 {
    background: #1ddb24;
    border-radius: 4px;
    font-size: 30px;
    margin-top: 12px;
}
.background-2 {
    background: linear-gradient(to right, #000000, #1ddb24);
}
.col-md-6.cta-content-section.cta-section-heading {
    padding: 55px 0px;
}
.background-2 h3 {
    color: #fff;
    font-weight: 600;
}
.background-2 p {
    color: #fff;
}
/*------------------------------
Media query
-------------------------------------*/
@media only screen and (max-width: 767px) {
	.heading-pera h2 {
		font-size: 28px;
	}
.modal-dialog {
    max-width: 100%;
    position: absolute;
    top: 37%;
    left: 45%;
    transform: translate(-50%, -50%) !important;
    margin: 0px auto !important;
    width: 98%;
    margin: 0px auto;
}
	.digital-content h2 {
		font-size: 28px;
		text-align: center;
	}
section.seo-section .row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
section.seo-section img {
    margin-top: 30px;
}
	.search-engine h2 {
		font-size: 28px;
		text-align: center;
	}

	.search-engine p {
		text-align: center;
	}

	.digital-content p {
		text-align: center;
	}

	.icon-text {
		text-align: left !important;
	}

	.ecommerce-text h2 {
		font-size: 28px;
		text-align: center;
	}

	.ecommerce-text h3 {
		font-size: 28px;
		text-align: center;
	}

	.seo-section {
		padding-top: 0px;
	}

	.tab-heading {
		font-size: 28px;
		padding: 0px !important;
	}

	.tab-section .nav-link:after {
		display: none;
	}

	.tab-section button {
		margin: 20px 45px;
	}

	.tab-content h2 {
		font-size: 28px;
	}

	.discovery-section h2 {
		font-size: 28px;
		width: 100%;
	}

	.dis-first {
		position: inherit;
	}

	.dis-second {
		padding: 10px 0px;
	}

	.discovery-section {
		padding-bottom: 50px;
	}

	.digital-marketing-section h2 {
		font-size: 28px;
		padding-top: 0px;
	}

	.image-text {
		padding: 30px 10px;
	}

	.digital-marketing-right h3 {
		font-size: 28px;
		text-align: center;
	}

	.digital-marketing-right p {
		text-align: center;
	}

	.our-partner-section h2 {
		font-size: 28px;
		text-align: center;
	}

	.part-logo {
		padding: 30px 0px;
	}

	.lets-get-heading h2 {
		font-size: 28px;
	}

	.let-get-section {
		padding-top: 0px;
		text-align: center;
	}

	#hero {
		height: 115vh;
	}

	.values_box {
		margin-bottom: 15px;
	}

	.lead {
		padding-top: 40px;
	}

	.social-hero {
		height: 185vh !important;
	}

	.wht_we_offer h2 {
		font-size: 28px;
	}

	.innr_offer a {
		display: inline-block;
	}

	.tabset label {
		padding: 20px;
	}

	.tab-text {
		text-align: center;
	}

	.smm_orapproach h2 {
		font-size: 28px;
	}

	.smm_orapproach .inner_iconi {
		width: 100%;
		position: inherit;
		top: 0 !important;
		margin-bottom: 13px;
	}

	.smm_orapproach .inner_textt {
		background: #fff;
		padding: 20px 20px 20px 20px;
		margin-left: 0px;
		box-shadow: 0 0 10px 2px rgb(0 0 0 / 2%);
		text-align: center;
	}

	.smm_orapproach .inner_textt li strong {
		margin-top: 20px;
	}

	.smm_prooces h2 {
		font-size: 28px;
	}

	section.packages_table_smo {
		padding: 0px;
	}

	section.fourpntr {
		text-align: center;
	}

	.tabset2>label {
		padding: 5px;
	}
	.training_digital_txt h1 {
		font-size: 28px;
		text-align: center;
	}
	#about h1 {
		font-size: 28px;
	}
	.training_digital_txt h3 {
		text-align: center;
		font-size: 18px;
	}
	.training_digital_txt {
		text-align: center;
	}
	.certified_with {
		margin-top: 30px;
	}
	.dc_left {
		width: 100%;
		float: left;
		text-align: center;
	}
	.dc_right {
		width: 100%;
		float: left;
		text-align: center;
	}
	.dt_three_inner {
		text-align: center;
		margin-bottom: 25px;
	}
	.dt_three_inner .bdr {
		float: none;
		display: inline-block;
	}
	.dt_outer_btns {
		text-align: center;
		width: 100%;
		float: left;
		display: inline-block;
	}
	a.dt_three_inner_lbtn {
		width: 100%;
	}
	a.dt_three_inner_rbtn {
		font-size: 18px;
		margin-top: 5px;
		width: 100%;
	}
	.train_why_hire h2 {
		font-size: 28px;
	}
	.train_why_hire li {
		width: 100%;
		margin-right: 0;
	}
	.z_key_ul li span {
		width: 100%;
		float: left;
		text-align: center;
	}
	.train_why_hire li img {
		width: auto;
		float: none;
		margin-bottom: 15px;
		text-align: center;
	}
	ul.z_key_ul {
		text-align: center;
	}
	section.train_popular_course h2 {
		font-size: 28px;
	}
	a.view_course {
		margin-bottom: 25px;
	}
	section.tc_tools_outer h2 {
		font-size: 28px;
	}
	.tc_tools_outer img {
		width: auto;
	}
	.tc_tools_outer .col-md-2.col-sm-12 {
		flex: 50%;
		max-width: 50%;
	}
	section.tc_recognised h2 {
		font-size: 28px;
	}
	section.tc_mentors_outer h2 {
		font-size: 28px;
	}
	section.tc_learners_outer h2 {
		font-size: 28px;
	}
	.tc_recognised .col-md-6.col-sm-12 {
		text-align: center;
		max-width: 100%;
		flex: 100%;
	}
	.tc_learners_outer .col-md-2.col-sm-12 {
		flex: 50%;
		max-width: 50%;
	}
	section.seo-form-2.seo-newww.seo-333333.hirecstmseo.workingcstmss.tc_career h2 {
		font-size: 28px;
	}
	.row.social-media-small-businesss-inner h3 {
		text-align: center!important;
		font-size: 22px;
	}
	.row.social-media-small-businesss-inner p {
		text-align: center;
	}
	.student-review h2 {
		font-size: 28px;
	}
	section.tc_students h2 {
		font-size: 28px;
	}
	.tc_students_inner {
		margin-bottom: 25px;
	}
	section.tc_syllabus h2 {
		font-size: 28px;
	}
	.tc_syllanus_inner {
		background: #ececec;
		padding: 40px 20px;
		border: 2px solid #1ddb24;
		float: left;
		width: 100%;
	}
	.tc_syll_icon {
		float: left;
		width: 100%;
		text-align: center;
	}
	.tc_syll_icon img {
		float: none;
		width: auto;
	}
	.tc_syll_text {
		padding-left: 0;
		width: 100%;
		text-align: center;
	}
	.tc_syll_text {
		margin-bottom: 20px;
	}
	.tc_syll_text span {
		font-size: 18px;
		margin: 5px 0;
	}
	.tc_syll_btn {
		width: 86%;
	}
	.tc_syll_btn {
		width: 60%;
		float: none;
		text-align: center;
		margin: 0 auto;
	}
	.faq-heading h2 {
		font-size: 28px;
	}
.navbar li {
    position: relative;
    padding: 10px 0px;
}
	.row{
	
	    padding-left:0px;
	    padding-right:0px;
	    
	}
	.form-form {
    text-align: left;
   }
    .column.is-10.is-offset-1 {
    width: 90%;
    }
    .gallery-image img {
    height: auto;
}
audio, embed, img, object, video {
    border-radius: 15px;
}
.award-section {
    margin-top: 310px;
}
.award-img.aos-init.aos-animate {
    margin-bottom: 15px;
}
.award-text h2 {
    font-size: 28px;
}
.services {
    margin-top: 0px;
}

.tabb .tab {
    width: 100%;
}
.tabb .tabcontent {
    width: 100%;
}
section#maindriven {
    margin-top: 40px !important;
}
section.essential_features_outer h2 {
    font-size: 28px;
}
section.essential_features_outer button {
    width: 140px!important;
}
.align-self-stretch {
    text-align: center;
}
.essential_features_outer h3 {
    margin-top: 600px;
    text-align: center !important;
}
.our-partner-section {
     padding-top: 0px;
     margin-top: 0px; 
}
.discovery-section {
    padding-bottom: 270px !important;
}
.essential_features_outer a p {
    font-size: 13px !important;
}
}	
.my_bttn{
	height: 45px;
	width: 45px;
	background-color:important #00ff00;
	border: none;
	color: white;
	position: fixed;
	bottom: 30px;
	right: 30px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	display: none;
}
.my_bttn:hover{
	transform: scale(1.05) translateY(-5px);
}

section.z_keyword_solutions {
  padding: 80px 0;
  float: left;
  width: 100%;
  background: #f4f4f4;
  }
  ul.z_key_ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
.z_conclusion {
  font-family: Lato;
  border-left: 2px solid #ffa800;
  padding: 8px 15px 8px 15px;
  font-style: italic;
  font-size: 22px;
  line-height: 28px;
  float: left;
  width: 100%;
}

.button-29 {
    align-items: center;
    appearance: none;
    background-image: #fff;
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow 0.15s, transform 0.15s;
    user-select: none;
    color: red !important;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 2px;
}
.btntwo {
    background: #1ddb24;
}
.btntwo a {
    color: #fff;
}
button.button-29 a {
    color: #16aa1c;
}
.z_conclusion {
    font-family: Lato;
    border-left: 2px solid #ffa800;
    padding: 8px 15px 8px 15px;
    font-style: italic;
    font-size: 22px;
    line-height: 28px;
    float: left;
    width: 100%
}
.z_key_ul li span {
    height: auto;
    width: 50px;
    float: left;
    margin-right: 10px
}

.z_key_ul img {
    width: 100%
}

section.z_keyword_solutions {
    padding: 80px 0;
    float: left;
    width: 100%;
    background: #f4f4f4
}

section.z_keyword_solutions p {
    font-family: Poppins;
    margin-top: 15px;
    text-align: justify
}
 ul.z_key_ul {
        margin: 0 0 15px 0;
        padding: 0
    }
    
    
      .z_key_ul li {
        width: 50%;
        float: left;
        margin-bottom: 12px
    }
    .z_key_ul img {
        width: 25px
    }
    .z_key_ul li span {
        width: 30px
    }
    .z_key_ul li br {
        display: none
    }
    section.z_keyword_solutions {
    padding: 80px 0;
    float: left;
    width: 100%;
    background: #f4f4f4
}

.z_keyword_solutions p {
    font-family: Poppins;
    margin-top: 15px;
    text-align: justify
}
#right-key-sec h2 {
    color: #000;
    font-size: 32px;
}
.seo-page-link{
    color:#1ddb24;
}
section#right-key-sec strong {
    color: #000;
}
section.essential_features_outer .nav.flex-column.nav-pills {
    flex-direction: unset!important;
    margin: 12px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #000;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
section.essential_features_outer a {
    display: grid;
}
.essential_features_outer .nav-link {
    border: none!important;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: poppins;
    border-radius: 5px;
    border-radius: 5px;
    padding: 5px 12px;
    margin: 5px;
}
section.essential_features_outer button {
    width: 130px;
}
.essential_features_outer a p {
    font-size: 15px;
    line-height: 1.1;
    margin-top: 12px;
}
section.essential_features_outer h2 {
    font-size: 40px;
    color: #000;
    font-weight: 700!important;
    letter-spacing: -1px!important;
    text-align:center;
}
.essential_features_outer .nav-link {
    border: none!important;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background: #F0F0F0;
    font-family: poppins;
    border-radius: 5px;
    border-radius: 5px;
    padding: 5px 12px;
    margin: 5px;
}
.essential_features_outer h3 {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    color: #000;
}
div#v-pills-tabContent p {
    color: #000;
}

.whatsapp-button {
  position: fixed;
  bottom: 15px;
  /* left: 0; */
  right: 0;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  bottom: 65px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  animation: effect 5s infinite ease-in;
}

@keyframes effect {
  20%, 100% {
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
  0%, 10%{
      width: 55px;
      height: 55px;
      font-size: 35px;
  }
  5%{
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
}
.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 0px;
    bottom: 10rem;
    background: #000;
    width: 3rem;
    height: 3rem;
    padding: 12px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 23px;
}
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #e1b634;
    left: -30%;
    bottom: -50%;
	}
.glow-on-hover {
    width: 170px;
    height: 40px;
    outline: none;
    color: #fff;
    border: 3px solid #1ddb24;
    background: #111;
    cursor: pointer;
    position: relative;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    margin: 0 10px;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media only screen and (min-width: 320px) and (max-width: 375px)  {
    
    
    
    
    
    
}

@media only screen and (min-width: 420px) and (max-width: 768px)  {
 .digital-section .col-md-6 {
    width:100%;
}   
.digital-strategy img {
    width: 100%;
}    
 .seo-section .col-md-6 {
    width:100%;
}   
section.seo-section img {
    width: 100%;

}
.ecommerce-section .col-md-6 {
    width:100%;
}
section.ecommerce-section img {
    width: 100%;
}
#nav-tabContent {
    margin-top: 150px !important;
}
.tab-section .nav-link:after {
   display:none;
}
.tabb .tab {
    width: 100%;
}
.tabb .tabcontent {
    width: 100%;
}
div#v-pills-home {
    margin-top: 150px;
}
section.essential_features_outer button {
    width: 105px;
}
.essential_features_outer a p {
    font-size: 12px;
}
.our-partner-section {
    padding-top: 0px;
    margin-top: 0px;
}
.tabb .tab button {
    padding: 17px 16px;
}
.heading {
    margin-top: 35px;
}
.faq-section {
    margin-top: 60px;
}
}
div#firstTab ul li i {
    color: #1ddb24;
}
div#secondTab ul li i {
    color: #1ddb24;
}
div#thirdTab ul li i {
    color: #1ddb24;
}
div#fourtTab ul li i {
    color: #1ddb24;
}
