/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }

/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #414141;
	--primary-light: #ffffff;
	--secondary: #8cc63f;
	--tertiary: #00ac4e;
	--gradient: linear-gradient(#8cc63f, #00ac4e);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 55px;
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white;
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home,
.services,
.plans,
.work,
.contact {
	height: 110vh;
	position: relative;
}

.about{
	height: 45vh;
	position: relative;
}
.services,
.work,
.contact,
.testimonial,
.footer {
  	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
  	background-color: var(--primary-light);
}

.bottom {
  	background-color: black;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#8cc63f),
		to(#00ac4e)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 306px;
	height: 62px;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 5.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
	font-size: 16px;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#8cc63f),
		to(#00ac4e)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
.home {
	background-image: url(../images/home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.8;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
    text-transform: uppercase;
    font-size:14px;
    font-weight: 600;
    border-radius: 0;
    border:1px solid;
	border-image-slice: 1;
	background-image: none;
	border-image-source: var(--gradient);
	background-color: #28a745;
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #0ee951;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
  	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
  	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/

@media only screen and (min-width: 1440px) {
	.navbar-toggler-icon {
		display: inline-block;
		width: 3.5em;
		height: 3.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	.offcanvas-collapse {
		position: fixed;
		top: 11.75rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 35px !important;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 35px !important;
		line-height: 4rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 60px !important;
		line-height: 6.2rem !important;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 20px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	/* Navigation */
	.navbar-page {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		/*background-color: transparent;*/
	}
	
	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #414141;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}


@media only screen and (max-width: 1366px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
	
	.navbar .nav-item .nav-link {
		color: #eee;
		text-decoration: none;
		padding-top: 0.625rem;
		padding-bottom: 0.625rem;
		transition: all 0.2s ease;
		font-size: 16px;
	}

	li {
		list-style-type: none;
		font-size: 25px !important;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 35px !important;
		line-height: 4rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 70px !important;
		line-height: 5.7rem !important;
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:20px !important;
		line-height: 2.7rem !important;
	}
	
	.navbar .logo-image img {
		width: 380px !important;
		height: 95px !important;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 20px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	
	
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}


	.navbar-toggler-icon {
		display: inline-block;
		width: 2.7em;
		height: 2.7em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
	
	.navbar .nav-item .nav-link {
		color: #eee;
		text-decoration: none;
		padding-top: 0.625rem;
		padding-bottom: 0.625rem;
		transition: all 0.2s ease;
		font-size: 16px;
	}

	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 14px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 35px !important;
		line-height: 4rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 40px !important;
		line-height: 3.2rem !important;
	}
	
	.para {
		width: 85%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:18px !important;
		line-height: 2.0rem !important;
	}
	
	.navbar .logo-image img {
		width: 380px !important;
		height: 70px !important;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
    .itm_hid {
		display:none !important;  
		visibility: hidden !important;  
	}
	.col-md-4 {
		flex: 0 0 auto;
		width: 90%;
	}
}


@media only screen and (min-width: 992px) and (orientation: landscape) {
	.navbar-toggler-icon {
		display: inline-block;
		width: 3.5em;
		height: 3.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	.offcanvas-collapse {
		position: fixed;
		top: 11.75rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 14px !important;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 35px !important;
		line-height: 4rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 50px !important;
		line-height: 4.2rem !important;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 16px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	/* Navigation */
	.navbar-page {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		/*background-color: transparent;*/
	}
	
	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #414141;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}


@media only screen and (max-width: 912px) {
	
	.navbar-toggler-icon {
		display: inline-block;
		width: 2.5em;
		height: 2.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	.offcanvas-collapse {
		position: fixed;
		top: 11.75rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 22px !important;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 35px !important;
		line-height: 4rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 40px !important;
		line-height: 4.2rem !important;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 12px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
    .itm_hid {
		display:none !important;  
		visibility: hidden !important;  
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:18px !important;
		line-height: 2rem !important;
	}

	.navbar .logo-image img {
		width: 415px !important;
		height: 90px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	.col-md-4 {
		width: 100%;
	}
	
	.margin-top { margin-top: 0px;}
	.about_bottom_item {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 768px) and (orientation: landscape){
	
	.navbar-toggler-icon {
		display: inline-block;
		width: 2.5em;
		height: 2.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
	
	.offcanvas-collapse {
		position: fixed;
		top: 8.75rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 14px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	li {
		list-style-type: none;
		font-size: 35px !important;
	}

	h1 {
		font-color: #565656!important;
		font-size: 25px !important;
		line-height: 2rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 40px !important;
		line-height: 4.0rem !important;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
    .itm_hid {
		display:none !important;  
		visibility: hidden !important;  
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:14px !important;
		line-height: 1.2rem !important;
	}

	.navbar .logo-image img {
		width: 365px !important;
		height: 60px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	.col-md-4 {
		width: 100%;
	}
	
	.margin-top { margin-top: 0px;}
	.about_bottom_item {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 600px) {
	
	.navbar-toggler-icon {
		display: inline-block;
		width: 2.5em;
		height: 2.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
	
	.offcanvas-collapse {
		position: fixed;
		top: 5.75rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 25px !important;
	}

	h1 {
		font-color: #565656!important;
		font-size: 25px !important;
		line-height: 2rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 35px !important;
		line-height: 3.2rem !important;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
    .itm_hid {
		display:none !important;  
		visibility: hidden !important;  
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:14px !important;
		line-height: 1.4rem !important;
	}

	.navbar .logo-image img {
		width: 360px !important;
		height: 65px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	.col-md-4 {
		width: 100%;
	}
	
	.margin-top { margin-top: 0px;}
	.about_bottom_item {
		margin-bottom: 20px;
	}
}


@media only screen and (max-width: 540px) {

	.offcanvas-collapse {
		position: fixed;
		top: 4.55rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 20px !important;
	}
	
	
	h1 {
		font-color: #565656!important;
		font-size: 25px !important;
		line-height: 2rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 30px !important;
		line-height: 2.2rem !important;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:14px !important;
		line-height: 1.5rem !important;
	}

	.navbar .logo-image img {
		width: 301px !important;
		height: 52px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}

@media only screen and (max-width: 375px) {
	
	.navbar-toggler-icon {
		display: inline-block;
		width: 1.5em;
		height: 1.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
	

	.offcanvas-collapse {
		position: fixed;
		top: 4.55rem;
		bottom: 0;
		left: 100%;
		width: 100%;
		overflow-y: auto;
		visibility: hidden;
		padding-right: 1rem;
		padding-left: 1rem;
		background-color: var(--primary);
		transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	}

	li {
		list-style-type: none;
		font-size: 16px !important;
	}
	

	h1 {
		font-color: #565656!important;
		font-size: 25px !important;
		line-height: 2rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 30px !important;
		line-height: 2.7rem !important;
	}
	
	.div_bar{
		visibility: hidden;
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:13px !important;
		line-height: 1.3rem !important;
	}

	.navbar .logo-image img {
		width: 266px !important;
		height: 44px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}


@media only screen and (max-width: 360px) {
	
	.navbar-toggler-icon {
		display: inline-block;
		width: 1.5em;
		height: 1.5em;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	li {
		list-style-type: none;
		font-size: 14px !important;
	}
	
	h1 {
		font-color: #565656!important;
		font-size: 25px !important;
		line-height: 2.5rem !important;
	}

	h2 {
		font-color: #ffffff!important;
		font-size: 30px !important;
		line-height: 2.5rem !important;
	}
	
	.btn {
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		text-transform: uppercase;
		font-size: 12px !important;
		font-weight: 600;
		border-radius: 0;
		border: 1px solid;
	}
	.div_bar{
		visibility: hidden;
	}
	
	.para {
		width: 95%;
		margin-left: 10px;
	}

	.para-light {
		opacity: 0.8;
		font-size:13px !important;
		line-height: 1.2rem !important;
	}

	.navbar .logo-image img {
		width: 257px !important;
		height: 44px !important;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}

/*
    Spacing & Alignment 
------------------------------------------*/

.roomy-100 {
    padding-top: 100px;
    padding-bottom: 45px;
}

.roomy-80 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.roomy-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.roomy-60 {
    padding-top: 100px;
    padding-bottom: 60px;
}

.roomy-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.roomy-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}


/*text color*/

.text-muted{}

.text-primary{color: #28a745 !important;;}
.text-finence{color:#13A0B2 !important;;}
.text-mega{color:#28a745 !important;;}
.text-white{color:#fff !important;;}
.text-black{color:#000 !important;}

.text-warning{}
.text-danger{}

.disabled{
    cursor: not-allowed;
}

/*bacground color*/
.lightbg {
    background-color: #f2f2f2;
}
.bg-primary{background-color: #1E8BC3;}
.bg-finence{background-color:#13A0B2;}
.bg-mega{background-color:#6a6b6c;}
.bg-grey{background-color: #f5f5f5;}
.bg-black{background-color: #212121;}
.bg-white{background-color: #fff;}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -user-select: none;
    -webkit-user-drag: none;
    -user-drag: none;
}
a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}
a,
button,
a span {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn:focus,
.btn:active {
    outline: inherit;
    background-color: transparent;
}
*,
*:before,
*:after {
    box-sizing: border-box;
    /*    direction: rtl;*/
}

p {
    margin: 0 0 15px;
}

.clear {
    clear: both;
}

img {
    max-width: 100%;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    outline: none;
    /*color:#fff;*/
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: transparent;
    background-image: none;
    /*color:#fff;*/
}

.form-control{
    border-radius: 0px;
    border:1px solid #ccc;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
    width: 100%;
    height: 50px;
    /*color:#fff;*/
}

.form-control:focus {
    border-color: #d2e8d8;
    outline: 0;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075),0 0 0px rgba(102,175,233,.6);
    /*color:#fff;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 18px;
	font-family: 'Montserrat', sans-serif;
    color:#717171;
    margin-bottom: 10px;
}

h1 {
    font-size: 4rem;
    line-height: 4rem;
}

h2 {
    font-size: 5rem;
    line-height: 5.1rem;
}
h3 {
    font-size: 2.1rem;
    line-height: 2.5rem;
}
h4 {
    font-size: 1.6rem;
    line-height: 2.2rem;
}
h5 {
    font-size: 1.3rem;
}
h6 {
    font-size: 1rem;
}



h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
p span{
    color:#28a745;
}

p {
    line-height: 1.7rem;
}
p:last-child {
    margin-bottom: 0px;
}
/*colors*/
.w100 {
    font-weight: 100;
}

.w200 {
    font-weight: 200;
}

.w300 {
    font-weight: 300;
}

.w400 {
    font-weight: 400;
}

.w500 {
    font-weight: 500;
}

.w600 {
    font-weight: 600;
}

.w700 {
    font-weight: 700;
}

.w800 {
    font-weight: 800;
}


/*
Section
*/

.parallax-section {
    max-width: 100%;
    color: #ffffff;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/*all overlay*/
.overlay{
    background-color: rgba(51,51,51,0.30);
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
}



.no-padding {
    padding: 0 !important;
    margin:0 !important;
}
.left-no-padding {
    padding-left: 0 !important;
}
.right-no-padding {
    padding-right: 0 !important;
}
.fluid-blocks-col {
    padding: 70px 40px 0 80px;
}
.fluid-blocks-col-right {
    padding: 70px 80px 0 40px;
}


/*
Separator
*/
.separator_left{
    width:85px;
    height:2px;
    margin:20px 0px;
    background: #28a745;
}
.separator_auto{
    width:85px;
    height:2px;
    margin:20px auto;
    background: #28a745;
}
.separator_small{
    width:30px;
    height:2px;
    margin:20px 0px;
    background: #28a745;
}

/*
Button
*/
.btn{
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-transform: uppercase;
    font-size:14px;
    font-weight: 600;
    border-radius: 0;
    border:1px solid;
}

.btn:hover{
    color:#fff;
    border:1px solid;
}

.btn-default{
    border: 1px solid;
    border-color:#f5f5f5;
    background-color: transparent;
    color:#fff;
    padding:1rem 2rem;
    border-radius: 0;
}
.btn-default:hover{
    border-color:#28a745;
    background-color: #28a745;
}

.btn-primary{
    color: #fff;
    background-color: #28a745;
    border:1px solid;
    border-color: #28a745;
    padding: 1rem 2rem;
}
.btn-primary:hover{
    background-color: #eee;
    border-color: #eee;
    color:#28a745;
}

.btn-success{}
.btn-info{}
.btn-warning{}
.btn-danger{}
.btn-link{}



/*
socail icon
--------------------------------*/
/*a i.share{
    color:#1E8BC3;
    -webkit-transition: all .6s;
    transition: all .6s;
}*/


/*
Extra height css
*/
.m-0{
    margin:0 !important;
}
.m-top-0{
    margin-top:0;
}
.m-r-0{
    margin-right: 0;
}
.m-l-0{
    margin-left: 0;
}
.m-b-0{
    margin-bottom: 0;
}

.m-r-15{
    margin-right: 15px;
}
.m-l-15{
    margin-left: 15px; 
}
.m-top-10 {
    margin-top: 10px;
}
.m-top-20 {
    margin-top: 20px;
}
.m-top-30 {
    margin-top: 30px;
}
.m-top-40 {
    margin-top: 40px;
}
.m-top-50 {
    margin-top: 50px;
}
.m-top-60 {
    margin-top: 60px;
}
.m-top-70 {
    margin-top: 70px;
}
.m-top-80 {
    margin-top: 80px;
}
.m-top-90 {
    margin-top: 90px;
}
.m-top-100 {
    margin-top: 100px;
}
.m-top-110 {
    margin-top: 110px;
}
.m-top-120 {
    margin-top: 120px;
}

.m-t-b-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}
.m-t-b-120 {
    margin-top: 120px;
    margin-bottom: 120px;
}

.m-bottom-10 {
    margin-top: 10px;
}

.m-bottom-20 {
    margin-bottom: 20px;
}
.m-bottom-30 {
    margin-bottom: 30px;
}

.m-bottom-40 {
    margin-bottom: 40px;
}

.m-bottom-60 {
    margin-bottom: 60px;
}

.m-bottom-70 {
    margin-bottom: 70px;
}

.m-bottom-80 {
    margin-bottom: 80px;
}

.m-bottom-90 {
    margin-bottom: 90px;
}

.m-bottom-100 {
    margin-bottom: 100px;
}

.m-bottom-110 {
    margin-bottom: 110px;
}

.m-bottom-120 {
    margin-bottom: 120px;
}

.m_t__b{
    margin: 14rem 0;
}
.p_t__b{
    padding: 6rem 0;
}

p-0{
    padding:0 !important;
}

.p-l-15{
    padding-left: 15px;
}

.p-r-15{
    padding-right: 15px;
}

.p-top-10 {
    padding-top: 10px;
}
.p-top-20 {
    padding-top: 1.33rem;
}

.p-bottom-20 {
    padding-bottom: 1.33rem;
}

.p-top-30 {
    padding-top: 1.875rem;
}

.p-bottom-30 {
    padding-bottom: 1.875rem;
}

.p-top-40 {
    padding-top: 2.66rem;
}

.p-bottom-40 {
    padding-bottom: 2.66rem;
}

.p-top-60 {
    padding-top: 5rem;
}

.p-bottom-60 {
    padding-bottom: 5rem;
}

.p-top-80 {
    padding-top: 5.714rem;
}

.p-bottom-80 {
    padding-bottom: 5.714rem;
}

.p-top-90 {
    padding-top: 6.429rem;
}

.p-bottom-90 {
    padding-bottom: 6.429rem;
}
.p-top-100 {
    padding-top: 100px;
}

.p-bottom-100 {
    padding-bottom: 100px;
}
.p-top-110 {
    padding-top: 110px;
}

.p-bottom-110 {
    padding-bottom: 110px;
}

.p-bottom-0 {
    padding-bottom: 0;
}

.p_l_r{
    padding-left: 5.714rem;
    padding-right: 5.714rem;
}

/*padding*/
.padding-twenty {
    padding: 10px 0;
}
.padding-fourty {
    padding: 20px 0;
}
.padding-sixty {
    padding: 30px 0;
}
.padding-eighty {
    padding: 40px 0;
}

/*border*/
.no-border-top{
    border-top:0px solid transparent !important;
}
.no-border-rigth{
    border-right:0px solid transparent !important;
}

/*for placeholder changes*/

input[type="email"].form-control::-webkit-input-placeholder {
    color: #fff;
    background-color: transparent;
}

input::-webkit-input-placeholder {
    color: #cdcdcd;
    font-style:italic;
}

input::-moz-placeholder {
    color: #cdcdcd;
    font-style:italic;
}

input:-ms-input-placeholder {
    color: #cdcdcd;
    font-style:italic;
}

input::placeholder {
    color: #cdcdcd;
    font-style:italic;
}
input::-webkit-input-placeholder {
    color: #cdcdcd;
    font-style:italic;
}
input::-moz-placeholder {
    color: #cdcdcd;
    font-style:italic;
}
input::-ms-input-placeholder {
    color: #cdcdcd;
    font-style:italic;
}
textarea::-webkit-input-placeholder{
    color: #cdcdcd;
    font-style:italic;
    padding: 5px;
}
textarea::-moz-input-placeholder{
    color: #cdcdcd;
    font-style:italic;
    padding: 5px;
}
textarea::-ms-input-placeholder{
    color: #cdcdcd;
    font-style:italic;
    padding: 5px;
}

/*for image bg*/
/*.img-bg{
  background: url(../images/home-msg.jpg) no-repeat center top fixed;
  background-size
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}*/


.transform_scal_rotate:hover img{ 
    -webkit-transform: scale(1.1) rotate(4deg); 
    transform: scale(1.1) rotate(4deg); 
}

.culmn{
    width:100%;
    overflow: hidden;
}
/*heading title all area*/
.head_title{
    padding-bottom: 7.143rem;
    overflow: hidden;
}
.head_title h2{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size:2.286rem;
    color:#1a1a1a;
}
.head_title p{
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size:1rem;
    color:#4a4a4a;
}

/*End off pridifain css*/


/*Preloader css*/

#loading{
    background-color: #28a745;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    left:0;
    z-index: 9999;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;	
    -ms-transform: rotate(45deg); 
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); 

}
.object{
    width: 20px;
    height: 20px;
    background-color: #FFF;
    position: absolute;
    left: 65px;
    top: 65px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
}
.object:nth-child(2n+0) {
    margin-right: 0px;

}
#object_one {
    -webkit-animation: object_one 2s infinite;
    animation: object_one 2s infinite;
    -webkit-animation-delay: 0.2s; 
    animation-delay: 0.2s; 
}
#object_two {
    -webkit-animation: object_two 2s infinite;
    animation: object_two 2s infinite;
    -webkit-animation-delay: 0.3s; 
    animation-delay: 0.3s; 
}
#object_three {
    -webkit-animation: object_three 2s infinite;
    animation: object_three 2s infinite;
    -webkit-animation-delay: 0.4s; 
    animation-delay: 0.4s; 
}
#object_four {
    -webkit-animation: object_four 2s infinite;
    animation: object_four 2s infinite;
    -webkit-animation-delay: 0.5s; 
    animation-delay: 0.5s; 
}
#object_five {
    -webkit-animation: object_five 2s infinite;
    animation: object_five 2s infinite;
    -webkit-animation-delay: 0.6s; 
    animation-delay: 0.6s; 
}
#object_six {
    -webkit-animation: object_six 2s infinite;
    animation: object_six 2s infinite;
    -webkit-animation-delay: 0.7s; 
    animation-delay: 0.7s; 
}
#object_seven {
    -webkit-animation: object_seven 2s infinite;
    animation: object_seven 2s infinite;
    -webkit-animation-delay: 0.8s; 
    animation-delay: 0.8s; 
}
#object_eight {
    -webkit-animation: object_eight 2s infinite;
    animation: object_eight 2s infinite;
    -webkit-animation-delay: 0.9s; 
    animation-delay: 0.9s; 
}

#object_big{

    position: absolute;
    width: 50px;
    height: 50px;
    left: 50px;
    top: 50px;
    -webkit-animation: object_big 2s infinite;
    animation: object_big 2s infinite;
    -webkit-animation-delay: 0.5s; 
    animation-delay: 0.5s; 
}	


@-webkit-keyframes object_big {
    50% { -webkit-transform: scale(0.5); }

}

@keyframes object_big {
    50% { 
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    } 

}

@-webkit-keyframes object_one {
    50% { -webkit-transform: translate(-65px,-65px)  ; }

}

@keyframes object_one {
    50% { 
        transform: translate(-65px,-65px) ;
        -webkit-transform: translate(-65px,-65px) ;
    } 

}


@-webkit-keyframes object_two {
    50% { -webkit-transform: translate(0,-65px) ; }
}

@keyframes object_two {
    50% { 
        transform: translate(0,-65px) ; 
        -webkit-transform: translate(0,-65px) ; 
    } 

}

@-webkit-keyframes object_three {
    50% { -webkit-transform: translate(65px,-65px) ; }
}

@keyframes object_three {
    50% { 
        transform: translate(65px,-65px) ;
        -webkit-transform: translate(65px,-65px) ;
    } 
}

@-webkit-keyframes object_four {

    50% { -webkit-transform: translate(65px,0) ; }

}

@keyframes object_four {
    50% { 
        transform: translate(65px,0) ;
        -webkit-transform: translate(65px,0) ;
    } 

}

@-webkit-keyframes object_five {

    50% { -webkit-transform: translate(65px,65px) ; }

}

@keyframes object_five {
    50% { 
        transform: translate(65px,65px) ;
        -webkit-transform: translate(65px,65px) ;
    } 

}

@-webkit-keyframes object_six {

    50% { -webkit-transform: translate(0,65px) ; }

}

@keyframes object_six {
    50% { 
        transform:  translate(0,65px) ;
        -webkit-transform:  translate(0,65px) ;
    } 

}

@-webkit-keyframes object_seven {

    50% { -webkit-transform: translate(-65px,65px) ; }

}

@keyframes object_seven {
    50% { 
        transform: translate(-65px,65px) ;
        -webkit-transform: translate(-65px,65px) ;
    } 

}

@-webkit-keyframes object_eight {

    50% { -webkit-transform: translate(-65px,0) ; }

}

@keyframes object_eight {
    50% { 
        transform: translate(-65px,0) ;
        -webkit-transform: translate(-65px,0) ;
    } 

}

/*End off Preloader*/


/*
Nav Menu style
==================*/

.cart-list li h6 a{
    color:#000;
}
.btn-cart{
    background-color: #28a745;
    padding: 2px 10px;
    color:#fff !important;
    border:0px solid;
    display: inline-block;
}
.btn-cart:hover{
    border:0px solid;
    background-color: #ff7854 !important;
}




/*
About section style
====================*/
.main_about{
    display: table;
    width:100%;
}

.about_bottom_content{}
.about_bottom_content .about_bottom_item{}
.ab_head{
    width:100%;
    display: table;
}
.ab_head .ab_head_icon{
    float: left;
    margin-right: 20px;
}
.ab_head .ab_head_icon .icofont,
.ab_head .ab_head_icon .icon{
    width:40px;
    height: 40px;
    line-height: 40px;
    font-size:1.5rem;
    background-color: #28a745;
    color:#fff;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 6px rgba(200, 200, 200, 0.4);

}



/*
FAQ Page
--------*/

.faq_main_content h6{
    margin-bottom: 0rem;
    border: 1px solid;
    border-color:#eee;
    position: relative;
}

.faq_main_content h6 + div {
    height: 0px;
    padding: 0px;
    overflow: hidden;
    display: block!important;
    -webkit-transform: translateZ(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border:0px solid #cdcdcd;
}

.faq_main_content h6 + div.open {
    height: 133px;
    border:1px solid;
    border-top:0;
    border-color: #eee;
}

.faq_main_content h6 a{
    display: block;
    color: #6a6a6a;
    text-decoration: none;
    font-weight: normal;
    overflow: hidden;
}

.faq_main_content h6 span{
    font-weight: 600;
}

.faq_main_content h6 a i{
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #eeeeee;
    text-align: center;
    color:#444444;
    margin-right: 15px;
    font-size:1.5rem;
}

.faq_main_content h6.open a{
    color:#444;
}

.faq_main_content h6.open a i{
    color:#fff;
    background-color: #444444;
}


.faq_main_content h6.open a i{
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq_main_content .content {
    padding: 25px;
    color:#4a4a4a;
}


/*
Video Section style
======================*/
.video{
    background: url(../images/background/video.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.main_video{
    display: block;
    /*z-index: 2;*/
    /*position: relative;*/
}
.main_video i,
.main_video span.fa,
.main_video span.icon{
    color:#fff;
    font-size:3rem;
    border:2px solid #fff;
    width:80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    position: relative;
}


/*
Featured section style
========================*/
.main_featured .head_title{
    width:70%;
    margin:0 auto;
}

.slick-center .featured_img{
    position: relative;
}
.slick-center .featured_img:before{
    content:"+";
    width:50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    left:43.5%;
    right:43.5%;
    top:35%;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    font-size:3rem;
    z-index: 2;
    cursor: pointer;
}
.slick-center .featured_img a{
    position: absolute;
    left:43.5%;
    right:43.5%;
    top:35%;
    display: block;
    width:50px;
    height: 50px;
    z-index: 3;
}
.featured_img a{
    display: none;
}
.featured_slider{
    width: 100%;  
    height:250px;
    margin: 20px auto;    
    text-align: center;
}
.featured_img img{
    width:100%;
    height: 100%;
}
.featured_slider div{
    margin-right: 5px;
}
.slick-slide{
    opacity: .6;
}
.slick-center{
    display: block;
    max-width: 10% !important;
    max-height:20% !important;
    opacity: 1;


}


/*
service section style
========================*/
.main_featured,
.main_service{
    display: table;
    overflow: hidden;
    width:100%;
}


.service_item{
    width:100%;
    overflow: hidden;
}
.service_item i.icofont,
.service_item i.fa,
.service_item span.icon{
    font-size:3rem;
}
.service_item h6{}
.service_item p{}


/*
Impress section style
========================*/

.impress{
    background:url(../images/background/work-together.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.main_impress h2{
    font-size:2.286rem
}
.impress_btns .btn{
    padding: 1rem 4rem;
}



/*
Portfolio section style
========================*/

.main_portfolio{
    width:100%;
    overflow: hidden;
}
.portfolio_item{
    position: relative;
    overflow: hidden;
}
.portfolio_item:hover img{
    -webkit-transform: scale(1.1) rotate(2deg);
    -moz-transform: scale(1.1) rotate(2deg);
    -o-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
}
.portfolio_item img{
    width:100%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}
.portfolio_hover{
    position: absolute;
    left:0%;
    right:0%;
    top:0%;
    width:100%;
    height: 100%;
    background-color:rgba(0, 0, 0, 0.30); 
    padding-top: 12%;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}
.portfolio_item:hover .portfolio_hover{
    opacity: 1;
}
.portfolio_item2 .portfolio_hover{ 
    padding-top: 25%;
}
.portfolio_item3 .portfolio_hover{ 
    padding-top: 65%;
}

.home_btns ,
.impress_btns ,
.portfolio_hover_icon{
    margin-left: -10px;
}

.subscribe_btns button.btn,
.home_btns a,
.impress_btns a,
.portfolio_hover_icon a{
    margin-left: 10px;
}

.portfolio_hover_icon a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border:1px solid;
    border-color:#fff;
    display: inline-block;
    color:#fff;
    border-radius: 50%;
}




/*
Skill Section style
=======================*/

/* Skill bar*/

.teamskillbar {
    position:relative;
    display:block;
    margin-bottom:15px;
    width:100%;
    background: #f2f2f2;
    height:10px;
    -webkit-transition:0.4s linear;
    transition:0.4s linear;
    -webkit-transition-property:width, background-color;
    transition-property:width, background-color;
}
.teamskillbar h6{
    position: absolute;
    top:-25px;
    left:0;
}
.teamskillbar-bar {
    height:10px;
    width:0px;
    background:#28a745;
    position: absolute;
    left:0px;
    top:0px;
}


.skill_bottom_content{}
.skill_bottom_item .separator_small{
    margin: 20px auto;
}


/*
Testimonial Section style
=======================*/
.testimonial{
    background: url(../images/background/testimonial.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.main_testimonial{
    position: relative;
    z-index: 1;
}
.main_testimonial .testimonial_slid{
    width:90%;
    display: block;
    margin: 0 auto;
}
.main_testimonial .testimonial_item{
    width:90%;
    margin: 0 auto;
}
.main_testimonial .testimonial_slid .slick-arrow{
    border:1px solid #fff;
    width:45px;
    height: 45px;
    line-height:  45px;
    text-align: center;
    color:#fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
.main_testimonial .testimonial_slid .slick-arrow.nextprevleft{
    float: left;
    top:20px;
    left:-6%;
}
.testimonial_slid .slick-arrow.nextprevright{
    float: right;
    top:-130px;
    right:-6%;
}
.main_testimonial .testimonial_item .test_authour i{
    color:#ffbf00;
}


/*
Pricing Section style
=======================*/
.main_blog,
.main_pricing{
    overflow: hidden;
    width:100%;
}
.pricing_top_border{
    height: 4px;
    width:100%;
    background-color: #28a745;
}

.pricing_item{
    position: relative;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
}
.pricing_head{
    background-color: #c0e4e5;

}
.pricing_price_border{
    background-color: #28a745;
    padding: 10px;
    border-radius: 50%;
    margin: 0 auto;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 18.6%;
    left: 21%;
    right: 25%;
}
.pricing_price_border .pricing_price{
    background-color: #28a745;
    border: 2px solid;
    border-color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding-top: 23%;
}
.pricing_price_border .pricing_price h3{
    margin-top: 9px;
    font-size:2.822rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.pricing_price_border .pricing_price p{
    font-size:0.929rem;
}
.pricing_body{
    overflow: hidden;
}
.pricing_body ul{
    width:85%;
    margin: 0 auto;
}
.pricing_body ul li{
    line-height: 2rem;
}
.pricing_body ul li i{
    margin-right: 10px;
}


/*
Brand Section style
=====================*/
.main_cbrand{
    overflow: hidden;
    width:100%;
}
.cbrand_item {
    height: 70px;
    overflow: hidden;
}
.cbrand_item img{
    width:70%;
    /*margin: 10px;*/
}
.cbrand_item img.img_apple{
    width:25%;
    padding: 10px;
}

/*
Subscribe Section style
=====================*/
.subscribe{
    background: url(../images/background/invoice.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.main_subscribe{
    width:100%;
    display: block;
}
.main_subscribe .subscribe_btns .form-group{
    width:60%;
    display: inline-block;
}
.main_subscribe .subscribe_btns .form-group #inputEmail2{
    width:100%;
    background-color: transparent;
    color:#fff;
}
.main_subscribe .subscribe_btns button.btn{
    /*width:15%;*/
}


/*
Blog Section style
=====================*/
.blog_item{
    overflow: hidden;
    width:100%;
}
.blog_item_img{
    overflow: hidden;

}
.blog_item_img img{
    width:100%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}
.blog_item:hover .blog_item_img img{
    -webkit-transform: scale(1.1) rotate(2deg);
    -moz-transform: scale(1.1) rotate(2deg);
    -o-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
}
.blog_text{
    border: 1px solid #eee;
}
.blog_text p a{
    color:#666666;
    padding: 5px;
}


/*
Maps Section style
=====================*/

.main_maps{
    background: url(../images/maps.jpg) no-repeat center center;
    position: relative;
    width:100%;
    overflow: hidden;
}

.maps_text{
    position: relative;
    z-index: 1;
}
.maps_text h3{
    top:20%;
    position: relative;
    margin-top: 95px;
}
.maps_text h3 i{
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #28a745;
    font-size: 1rem;
    display: inline-block;
    top: -5px;
    position: relative;
    margin-left: 10px;
}



/*
Contact Section style
=====================*/

.main_contact{
    overflow: hidden;
}
.main_contact a.btn{
    width:100%;
}

.widget_socail{}
.widget_socail ul li a i{
    background-color: #434343;
    width:40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color:#fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}
.widget_socail ul li a:hover i{
    background-color: #28a745;
}


/*
Footer Section style
=====================*/

.main_footer{
    overflow: hidden;
}

.main_footer i {
    padding: 0px 5px;
    color: #ff0000;
}



/*maps*/
.main_maps{
    width:100%;
    height: 100%;
}
.main_maps .map_canvas_icon{
    position:absolute;
    left:45%;
    top:35%;
    cursor:pointer;
    /*z-index: 2;*/
}
.main_maps i{
    font-size:2.5rem;
    color:#a4c196;

}
.main_maps  h2{
    color:#a4c196;
}

.mapheight{
    height: 100px; 
    width: 100%;
}


/* scrollup */

.scrollup{
    width: 30px;
    height: 30px;
    border-radius: 15px;
    opacity: .3;
    position: fixed;
    bottom: 20px;
    right: 25px;
    color: #fff;
    cursor: pointer;
    background-color: #000;
    z-index: 1000;
    transition: opacity .5s, background-color .5s;
    -moz-transition: opacity .5s, background-color .5s;
    -webkit-transition: opacity .5s, background-color .5s;
}

.scrollup:hover {
    background: #28a745;
    opacity: 1;
}

.scrollup i {
    font-size: 13px;
    position: absolute;
    opacity: 1;
    color: #fff;
    left: 50%;
    top: 50%;
    margin-top: -7px;
    margin-left: -6px;
    text-decoration: none;

}