@charset "UTF-8";
/*-----------------------------------------------------------------------------------
    Note: This is Main Style Scss File.
-----------------------------------------------------------------------------------
	CSS INDEX
	===================
    01. Common
    02. Header
    03. Banner
    04. Home page
    05. Services
	06. About us
	07. Contact us
	08. Blog page
	09. Privacy policy
	10. Disclaimer

-----------------------------------------------------------------------------------*/
/*=======01  COMMON CSS  =======*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins.eot");
	src: url("../fonts/Poppins.eot") format("embedded-opentype"), url("../fonts/Poppins.woff2") format("woff2"), url("../fonts/Poppins.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins.svg#Poppins") format("svg");
}

/*==================== Poppins */
/* --Thin */
@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins-Thin.ttf");
	font-weight: thin;
	font-style: normal;
}

/* --Light */
@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins-Light.ttf");
	font-weight: lighter;
	font-style: normal;
}

/* --Regular */
@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins-Regular.ttf");
	font-weight: normal;
	font-style: normal;
}

/* --Medium */
@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins-Medium.ttf");
	font-weight: medium;
	font-style: normal;
}

/* --Bold */
@font-face {
	font-family: 'Poppins', sans-serif;
	src: url("../fonts/Poppins-Bold.ttf");
	font-weight: bold;
	font-style: normal;
}


/* ============Generic code  */


body {
	font-weight: 400;
	font-style: normal;
	overflow-x: hidden;
	font-size: 15px;
	line-height: 1.8;
	font-family: 'Poppins', sans-serif;
	color: #616161;
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
.slick-initialized .slick-slide:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
	text-decoration: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

::-webkit-scrollbar {
	background-color: #ccc;
	width: 8px;
	height: 4px;
}

::-webkit-scrollbar-thumb {
	background: transparent linear-gradient(150deg, #96e7b1 0%, #0CA640 100%) 0% 0% no-repeat padding-box;
}

.slick-slide img {
	display: inline-block;
}

a:focus,
a:hover {
	text-decoration: none;
}

i,
span,
a {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	color: #002249;
	font-family: 'Poppins', sans-serif;
}

ul,
ol {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-family: 'Poppins', sans-serif;
}

p {
	margin: 0px;
	font-family: 'Poppins', sans-serif;
}

p.text-color-2 {
	color: #81a3bb;
}

p.text-color-3 {
	color: #69a1bb;
}

p.fs-16 {
	font-size: 16px;
}

a {
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-family: 'Poppins', sans-serif;
	color: #F26630;
	text-decoration: none;
}

/*======= Input Styles =======*/
input,
textarea,
select {
	width: 100%;
	height: 40px;
	background-color: #fff;
	color: #686767;
	font-size: 16px;
	border: none;
	font-family: 'Poppins', sans-serif;
}

textarea {
	display: inherit;
	font-family: 'Poppins', sans-serif;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

input[type=search]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

input[type=search]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
	display: none;
}

input[type=checkbox],
input[type=radio] {
	height: auto;
	width: auto;
}

.input-group {
	position: absolute;
	border-radius: 13px !important;
}

.input-group input,
.input-group textarea,
.input-group select {
	padding-right: 40px;
}

.input-group .icon {
	position: absolute;
	right: 30px;
	z-index: 2;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #81a3bb;
	line-height: 1;
}

.input-group.textarea-group .icon {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	top: 20px;
}

/*======= Common Class =======*/
@media (min-width: 1400px) {
	.container-1470 {
		max-width: 1470px;
	}
}

@media (min-width: 1200px) {
	.header-full-width .container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.section-gap {
	padding-top: 120px;
	padding-bottom: 120px;
}
.section-gap-top {
	padding-top: 120px;
}

.section-gap-bottom {
	padding-bottom: 120px;
}

@media(max-width:1200px) {
	.section-gap {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section-gap-bottom {
		padding-bottom: 100px;
	}
	
}

@media(max-width:991px) {
	.section-gap {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.section-gap-bottom {
		padding-bottom: 90px;
	}
	
}

@media(max-width:767px) {
	.section-gap {
		padding-top: 75px;
		padding-bottom: 75px;
	}
	.section-gap-bottom {
		padding-bottom: 75px;
	}
	
}

@media(max-width:525px) {
	.section-gap {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section-gap-bottom {
		padding-bottom: 60px;
	}
	
}




.section-title .title-tag {
	color: #F26630;
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 5px;
	z-index: 1;
	position: relative;
	letter-spacing: 2px;
}


/*======= Preloader =======*/
div#preloader {
	margin: auto;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

div#preloader .preloader-container {
	position: absolute;
	display: -ms-grid;
	display: grid;
	width: 100%;
	height: 100%;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

div#preloader .loader-cubes {

	width: 100%;
	height: 100%;
	position: relative;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-animation: scale 4s infinite linear;
	animation: scale 4s infinite linear;
}

div#preloader .loader-text p,
div#preloader .loader-text h4 {
	color: #686767;
}

div#preloader .loader-text p {
	font-size: 16px;
	font-size: normal;
}

div#preloader .loader-text h4 {
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
}




/*=======  Animations  =======*/
@-webkit-keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

@keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0);
		transform: perspective(140px) rotateX(0);
		opacity: 1;
	}

	100%,
	90% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0);
		transform: perspective(140px) rotateX(0);
		opacity: 1;
	}

	100%,
	90% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@-webkit-keyframes pulseBtnBefore {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes pulseBtnBefore {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@-webkit-keyframes pulseBtnAfter {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0;
	}
}

@keyframes pulseBtnAfter {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0;
	}
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotateTwo {
	0% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes rotateTwo {
	0% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@-webkit-keyframes scale {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@keyframes scale {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

/*=======02 Header=======*/
.header-topbar {
	border-bottom: 2px solid #ebebeb;
	padding: 15px 0;
}

.header-topbar .contact-info li {
	display: inline-block;
}

.header-topbar .contact-info li:not(:last-child) {
	margin-right: 30px;
}

.header-topbar .contact-info li a {
	color: #616161;
	font-size: 14px;
}

.header-topbar .contact-info li i {
	margin-right: 5px;
	color: #F26630;
}

.header-topbar .social-icon li {
	display: inline-block;
}

.header-topbar .social-icon li:not(:first-child) {
	margin-left: 20px;
}

.header-topbar .social-icon li a {
	font-size: 16px;
}

.header-topbar .social-icon li a:hover {
	color: #F26630;
}

.header-navigation .primary-menu li {
	display: inline-block;
	/* line-height: 40px; */
	position: relative;
	/* width: max-content; */
	/* padding:5px 0px; */
}

.header-navigation .primary-menu li .dd-trigger {
	font-size: 12px;
	font-weight: 500;
	color: #b1b1b1;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	line-height: 1;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

/* @media (max-width: 1199px) {
	.header-navigation .primary-menu li .dd-trigger {
		right: -5px;
	}
} */

.header-navigation .primary-menu li a {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	/* color: #686767; */
	color: #FFFFFF;
	padding: 12px 17px;
	font-family: 'Poppins', sans-serif;
	margin: 0 0;
}

.header-navigation .primary-menu li a.active {
	padding: 2px 17px;
	background: #0CA640 0% 0% no-repeat padding-box;
	border-radius: 14px;
	color: #FFFFFF;
}

.header-navigation .primary-menu li a:hover::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #f36523;
	height: 2px;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform-origin: right center;
	-webkit-transform: scale(0, 1);
	-khtml-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: transform .25s cubic-bezier(.37, .31, .2, .85);
	-o-transition: transform .25s cubic-bezier(.37, .31, .2, .85);
	-webkit-transition: -webkit-transform .25s cubic-bezier(.37, .31, .2, .85);
	transition: -webkit-transform .25s cubic-bezier(.37, .31, .2, .85);
	transition: transform .25s cubic-bezier(.37, .31, .2, .85);
	transition: transform .25s cubic-bezier(.37, .31, .2, .85), -webkit-transform .25s cubic-bezier(.37, .31, .2, .85);

}

.header-navigation .primary-menu li .submenu li a {
	font-size: 16px;
	font-weight: normal;
}


.header-navigation .primary-menu li .submenu li {
	position: relative;
	width: 100%;
}

.header-navigation .primary-menu li .submenu li a {
	position: relative;
	width: 100%;
}

/* -----------------Double arrow for nav-bar----------------*/
.header-navigation .primary-menu li .submenu li a::before {
	font-family: "FontAwesome";
	content: "\f101";
	position: absolute;
	left: 0;
	font-size: 20px;
	font-weight: 500;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	text-align: center;
	background-color: transparent;
	opacity: 0;
	-webkit-transition: opacity 0.3s linear, left 0.3s linear;
	-o-transition: opacity 0.3s linear, left 0.3s linear;
	transition: opacity 0.3s linear, left 0.3s linear;
}

.header-navigation .primary-menu li .submenu li.current a::before,
.header-navigation .primary-menu li .submenu li:hover a::before {
	opacity: 1;
	left: 1px;
	font-size: 20px;
}

@media(max-width:992px) {
	.header-navigation .primary-menu li .submenu li a::before {
		left: 0;
		font-size: 16px;
		font-weight: 500;
	}

	.header-navigation .primary-menu li .submenu li.current a::before,
	.header-navigation .primary-menu li .submenu li:hover a::before {
		opacity: 1;
		left: -10px;
		font-size: 16px;
	}
}


/* @media (max-width: 1199px) {
	.header-navigation .primary-menu li a {
		padding: 8px;
		margin: 0 5px;
		font-size: 15px;
	}
}
@media all and (min-width:992px) and (max-width:1199px){
	.header-navigation .primary-menu li a {
		padding: 8px;
		margin: 0px 0px;
		font-size: 14px;
	}
} */

.header-navigation .primary-menu li .submenu {
	position: absolute;
	left: 0px;
	top: 110%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	background-color: #fff;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	z-index: 99;
	height: auto;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 15px;
	padding: 20px 10px;
}

@media(min-width:992px) {
	.dd-trigger {
		display: none;
	}
}

.header-navigation .primary-menu li .submenu.submenu-2 {
	left: 0;
	width: 200px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 3px 6px #00000029;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 12px;
	padding: 21px 17px;
}

.header-navigation .primary-menu li .submenu li {
	line-height: 1;
	padding: 4px 0px;
	margin: 0;
	display: block;
}

.header-navigation .primary-menu li .submenu .dropdown-title {
	color: #303030;
	font-size: 20px;
	line-height: 30px;
	padding: 10px 20px;
}

.header-navigation .primary-menu li .submenu .sub-submenu li.drop-element i,
.header-navigation .primary-menu li .submenu.submenu-2 li.drop-element i {
	display: none;
	-webkit-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.header-navigation .primary-menu li .submenu .sub-submenu li.drop-element:hover i,
.header-navigation .primary-menu li .submenu.submenu-2 li.drop-element:hover i {
	display: inline-block;
}



.header-navigation .primary-menu li .submenu .sub-submenu li.drop-element::before {
	position: absolute;
	content: "";
	z-index: 100;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: #F26630;
}

.header-navigation .primary-menu li .submenu li:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-navigation .primary-menu li .submenu h4.dropdown-title {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}



.header-navigation .primary-menu li .submenu li a {
	padding: 8px 15px;
	font-size: 15px;
	display: block;
	margin: 0;
	line-height: 18px;
	-webkit-transition: margin-left 0.3s linear;
	-o-transition: margin-left 0.3s linear;
	transition: margin-left 0.3s linear;
}

.header-navigation .primary-menu li.current,
.header-navigation .primary-menu li .submenu li a.current,
.header-navigation .primary-menu li .submenu li a:hover {
	color: #0CA640;

}

@media(min-width:992px) {

	.header-navigation .primary-menu li .submenu li a.current,
	.header-navigation .primary-menu li .submenu li a:hover {
		margin-left: 5px;

	}
}

.header-navigation .primary-menu li .submenu li .dd-trigger {
	right: 20px;
}

.header-navigation .primary-menu li .submenu li a:hover~.dd-trigger {
	color: #F26630;
}

.header-navigation .primary-menu li .submenu li .submenu {
	left: 100%;
	top: 20%;
}

.header-navigation .primary-menu li .submenu li:hover>.submenu {
	top: 0;
}

.header-navigation .primary-menu li:hover>.submenu {
	visibility: visible;
	top: 100%;
	opacity: 1;
}

.header-navigation .primary-menu li.current>a,
.header-navigation .primary-menu li.current li.current a,
.header-navigation .primary-menu li.current>.dd-trigger,
.header-navigation .primary-menu li a:hover,
.header-navigation .primary-menu li a:hover~.dd-trigger {
	color: #0CA640;
}

.header-navigation .primary-menu li a.active:hover,
.header-navigation .primary-menu li a.active:hover~.dd-trigger {
	color: #FFFFFF;
}

/* @media(min-width:992px) {

	.header-navigation .primary-menu li.current li.current a {
		color: #F26630;
		margin-left: 5px;
	}
} */
@media (max-width: 991px) {

	.header-navigation .primary-menu li.current>a,
	.header-navigation .primary-menu li.current>.dd-trigger,
	.header-navigation .primary-menu li a:hover,
	.header-navigation .primary-menu li a:hover~.dd-trigger {
		color: #fff;
	}
}

@media (max-width: 560px) {
	.header-navigation .site-logo {
		max-width: 150px;
	}
}

.header-navigation .site-logo .sticky-logo {
	display: none;
}


.header-navigation .cart-icon,
.header-navigation .search-icon {
	font-size: 18px;
	color: #555;
	margin-right: 30px;
}

@media (max-width: 1199px) {

	.header-navigation .cart-icon,
	.header-navigation .search-icon {
		margin-right: 20px;
	}
}

.header-navigation .cart-icon:hover,
.header-navigation .search-icon:hover {
	color: #F26630;
}

.header-navigation .search-widget .search-form {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	background-color: rgba(35, 35, 35, 0.9);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	will-change: transform, opacity;
	height: 0;
	z-index: -1;
	opacity: 0;
}

.header-navigation .search-widget .search-form .search-close {
	font-size: 30px;
	color: #fff;
	position: absolute;
	right: 50px;
	top: 50px;
	line-height: 1;
}

.header-navigation .search-widget .search-form form {
	width: 50%;
}

.header-navigation .search-widget .search-form input {
	background-color: transparent;
	font-size: 20px;
	color: #fff;
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	padding: 0 30px;
}

.header-navigation .search-widget .search-form.opened {
	height: 100vh;
	opacity: 1;
	z-index: 99;
}

.header-navigation .offcanvas-icon,
.header-navigation .nav-toggler {
	position: relative;
	width: 33px;
	height: 33px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
	cursor: pointer;
}

.header-navigation .nav-toggler {
	border: 2px solid #86c9d3;
	padding: 3px;
}

.header-navigation .offcanvas-icon span,
.header-navigation .nav-toggler span {
	background-color: #0CA640;
	height: 3px;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	position: relative;
}

.header-navigation .nav-toggler {
	display: none;
}

.header-navigation .nav-toggler.menu-opened span:nth-child(1) {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
	top: 8px;
}

.header-navigation .nav-toggler.menu-opened span:nth-child(2) {
	opacity: 0;
}

.header-navigation .nav-toggler.menu-opened span:nth-child(3) {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
	top: -8px;
}

.header-navigation .nav-close {
	display: none;
	font-size: 20px;
	color: #fff;
	position: absolute;
	right: 20px;
	top: 20px;
	line-height: 1;
}

.header-navigation .navbar-btn {
	margin-left: 40px;
}

@media (max-width: 1199px) {
	.header-navigation .navbar-btn {
		margin-left: 30px;
	}
}

@media (max-width: 767px) {
	.header-navigation .navbar-btn {
		margin-left: 20px;
	}
}

@media (max-width: 575px) {
	.header-navigation .navbar-btn {
		display: none;
	}
}

.header-navigation .navbar-btn {
	display: block;
	overflow: hidden;
	width: 130px;
}

.header-navigation .navbar-btn a {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border-radius: 5px;
	padding: 6px 12px;
	background: transparent -o-linear-gradient(300deg, #F67C4D 0%, #FC4600 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(150deg, #F67C4D 0%, #FC4600 100%) 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 3px 6px #00000029;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header-navigation .navbar-btn a i {
	font-size: 14px;
	font-weight: 600;
	margin-left: -6px;
	position: relative;
	top: 2px;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	-webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s linear 0.3s, margin-left 0.3s linear;
	-o-transition: opacity 0.3s ease-in-out, visibility 0.3s linear 0.3s, margin-left 0.3s linear;
	transition: opacity 0.3s ease-in-out, visibility 0.3s linear 0.3s, margin-left 0.3s linear;
}

.header-navigation .navbar-btn a:hover i {
	position: relative;
	margin-left: 6px;
	opacity: 1;
	visibility: visible;
}

@media (max-width: 1199px) {
	.header-navigation .navbar-btn a i {
		margin-left: 5px;
	}
}

.header-navigation .navbar-btn a:hover {
	background-color: transparent;
	color: #F26630;
}

.header-one {
	position: absolute;
	left: 0;
	top: 40px;
	width: 90%;
	left: 5%;
	;
	z-index: 999;
	/* background: #000000 0% 0% no-repeat padding-box; */
	background: #000000 0% 0% no-repeat padding-box;
	border-radius: 38px;
}





/* .primary-menu li .submenu li{
	display: block;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-1 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 50ms ease-in-out forwards;
	animation: rotateX 400ms 50ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-2 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 100ms ease-in-out forwards;
	animation: rotateX 400ms 100ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-3 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 150ms ease-in-out forwards;
	animation: rotateX 400ms 150ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-4 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 200ms ease-in-out forwards;
	animation: rotateX 400ms 200ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-5 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 250ms ease-in-out forwards;
	animation: rotateX 400ms 250ms ease-in-out forwards;
  }

  .primary-menu li:hover .submenu li.dropdown_item-6 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 300ms ease-in-out forwards;
	animation: rotateX 400ms 300ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-7 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 350ms ease-in-out forwards;
			animation: rotateX 400ms 350ms ease-in-out forwards;
  }
  
  .primary-menu li:hover .submenu li.dropdown_item-8 {
	transform-origin: top center;
	-webkit-animation: rotateX 400ms 400ms ease-in-out forwards;
	animation: rotateX 400ms 400ms ease-in-out forwards;
  } */

@-webkit-keyframes rotateX {
	0% {
		opacity: 0;
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}

	50% {
		-webkit-transform: rotateX(-20deg);
		transform: rotateX(-20deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
}

@keyframes rotateX {
	0% {
		opacity: 0;
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}

	50% {
		-webkit-transform: rotateX(-20deg);
		transform: rotateX(-20deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
}

.header-two {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}


.sticky-header.sticky-on  {
	position: fixed;
	top: 0px;
	width: 90%;
	left: 5%;
	z-index: 999;
	border-radius: 38px;
	-webkit-animation: sticky 1.2s linear;
	animation: sticky 1.2s linear;
	background: #000000 0% 0% no-repeat padding-box;
	/* background-color: #fff; */
	/* -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04); */
	/* box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04); */
}

.sticky-header.sticky-on .header-navigation .sticky-logo {
	display: block;
}

.sticky-header.sticky-on .header-navigation .main-logo {
	display: none;
}

/* .sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu > li {
	line-height: 50px;
} */

.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li .dd-trigger {
	color: #FFFFFF;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li.current>a,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li.current li.current a,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li.current>.dd-trigger,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a:hover,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a:hover~.dd-trigger {

	color: #0CA640;
}

.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a.active,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a.active~.dd-trigger .sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a.active:hover,
.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li a.active:hover~.dd-trigger {
	color: #FFFFFF;
}

.sticky-header.sticky-on .header-navigation:not(.breakpoint-on) .primary-menu>li .submenu li a:hover {
	color: #0CA640;
}



.header-navigation.breakpoint-on {
	padding: 0px 0 0px 0;
}

.header-navigation.breakpoint-on .nav-toggler {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-navigation.breakpoint-on .site-nav-menu {
	position: fixed;
	top: 0;
	height: 100vh;
	width: 300px;
	padding: 50px 25px;
	background-color: #86c9d3;
	z-index: 999;
	overflow-x: hidden;
	overflow-y: scroll;
	left: -300px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

@media(max-width:992px) {
	.header-navigation.breakpoint-on .site-nav-menu {
		padding: 30px 25px;
	}
}

.header-navigation.breakpoint-on .site-nav-menu .nav-close {
	display: block;
}

.header-navigation.breakpoint-on .site-nav-menu::-webkit-scrollbar {
	background: transparent linear-gradient(150deg, #96e7b1 0%, #0CA640 100%) 0% 0% no-repeat padding-box;

}

.header-navigation.breakpoint-on .site-nav-menu.menu-opened {
	left: 0;
	visibility: visible;
	opacity: 1;
}

.header-navigation.breakpoint-on .site-nav-menu::-webkit-scrollbar {
	width: 5px;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li {
	margin: 0;
	padding: 0;
	display: block;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li a {
	color: #fff;
	display: block;
	padding: 15px 25px 15px 0;
	font-size: 18px;
	line-height: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .dd-trigger {
	display: block;
	top: 0;
	-webkit-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
	right: 0 !important;
	height: 45px;
	width: 45px;
	color: #fff;
	cursor: pointer;
	text-align: center;
	line-height: 45px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .dd-trigger i {
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .submenu {
	padding-left: 15px;
	-webkit-transition: 0;
	-o-transition: 0;
	transition: 0;
	border: none;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .submenu a {
	color: #ffff !important;
	display: block;
	padding: 15px 5px 15px 0;
	line-height: 1.2;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .submenu a:hover {
	background-color: transparent !important;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li .submenu,
.header-navigation.breakpoint-on .site-nav-menu .primary-menu li li .submenu {
	position: unset;
	top: 0;
	width: 100%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	visibility: visible;
	opacity: 1;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: none;
}

.header-navigation.breakpoint-on .site-nav-menu .primary-menu li a.active::before {
	position: absolute;
	left: -25px;
	top: 2px;
	bottom: 2px;
	width: 2px;
	background-color: #fff;
	content: "";
}




@media all and (min-width:992px) {

	.contact-btn {
		background: transparent -webkit-gradient(linear, left top, left bottom, from(#0CA640), to(#065320)) 0% 0% no-repeat padding-box;
		background: transparent -o-linear-gradient(top, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
		background: transparent linear-gradient(180deg, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
		-webkit-box-shadow: 0px 4px 8px #0000001F;
		        box-shadow: 0px 4px 8px #0000001F;
		border-radius: 21px;
		margin-left: 20px;
		-webkit-transition: color 0.4s linear, background ;
		-o-transition: color 0.4s linear, background ;
		transition: color 0.4s linear, background ;
	}
	.contact-btn:hover{
		background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#b9b9b9)) 0% 0% no-repeat padding-box;
		background: transparent -o-linear-gradient(top, #FFFFFF 0%, #b9b9b9 100%) 0% 0% no-repeat padding-box;
		background: transparent linear-gradient(180deg, #FFFFFF 0%, #b9b9b9 100%) 0% 0% no-repeat padding-box;

	}


	.header-logo {
		padding: 16px 0px 16px 0px;
	}


}
@media all and (max-width:767px){
	.header-one{
		width:96%;
		left:2%;
		border-radius: 10px;
		top:20px;
	}
	.sticky-header.sticky-on{
		width:96%;
		left:2%;
		border-radius: 10px;
	}
}

/*=== Back to top css =======*/
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: none;
	z-index: 999999;
}

@media(min-width:768px) {
	.back-to-top {
		right: 20px;
		bottom: 100px;
	}
}

@media(max-width:768px) {
	.back-to-top {
		right: 10px;
		bottom: 90px;
	}
}

.back-to-top a {
	color: #fff;
	background: transparent -o-linear-gradient(300deg, #96e7b1 0%, #0CA640 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(150deg, #96e7b1 0%, #0CA640 100%) 0% 0% no-repeat padding-box;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	opacity: 0.8;
}

.back-to-top:hover a {
	opacity: 1;
}


/* ========08 footer section=========== */
.footer-area {
	background-color: #303030;
}

.footer-area p,
.footer-area ul li,
.footer-area h2,
.footer-area a,
.footer-area ul li a,
.footer-area ul li a i {
	color: #FFFFFF;
	-webkit-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
}

.footer-area a:hover,
.footer-area ul li a:hover,
.footer-area ul li a:hover i {
	color: #F2C055;
}

.footer-area .subscription-box input {
	position: relative;
	border-radius: 13px;
	height: 60px;
	padding: 0 30px;
}

.footer-area .orange-bg {
	z-index: 2;
	position: absolute;
	width: 20%;
	height: 100%;
	right: 0;
	content: "";
	background-color: #F2C055;
	border-radius: 13px;
	display: -ms-grid;
	display: grid;
}


.footer-area .send-icon {
	position: absolute;
	z-index: 3;
	display: -ms-grid;
	display: grid;

	-ms-grid-row-align: center;

	align-self: center;
	-ms-grid-column-align: center;
	justify-self: center;
}

.footer-top {
	position: relative;
}


.footer-area .footer-text p,
.footer-area .widget .widget-title {
	font-size: 20px;
	line-height: 30px;

}

@media(min-width:992px) {
	.footer-area .widgets {
		position: relative;
		display: -ms-grid;
		display: grid;
		justify-items: center;
	}
}

@media(max-width:992px) {
	.widget {
		padding-left: 15px;
	}
}

.footer-area .widget .widget-title {
	margin-bottom: 27px;
}


.footer-area .widget .footer-links ul li {

	font-size: 16px;
	line-height: 25px;
	margin-bottom: 13px;
}



.footer-area .privacy-info li {
	position: relative;
}

@media(min-width:500px) {
	.footer-area .privacy-info li:not(:last-child)::after {
		position: absolute;
		content: "|";
		display: -ms-grid;
		display: grid;
		top: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		right: -10px;
	}

}

@media(max-width:525px) {
	.footer-area .privacy-info li:first-child::after {
		position: absolute;
		content: "|";
		display: -ms-grid;
		display: grid;
		top: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		right: -10px;
	}

}

.footer-area .header-topbar .social-icon li {
	margin-left: 10px;
	margin-right: 10px;
}






/* ------------general--------------- */
p {

	font-style: normal;
	font-stretch: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 25px;
	color: #464545;
}

.jccb1200 {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

@media all and (min-width:1200px) {
	.jccb1200 {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

/* ==========banner section=========== */

.banner-section {
	background-image: url('/assets/img/home/hero-bg.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* background-attachment: fixed; */
	height: 768px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	/* overflow: hidden; */
	z-index: 2;
	padding-top: 300px;
	padding-bottom: 0px;
}

@media all and (min-width:1400px) {
	.banner-section {
		height: 850px;
	}
}

@media (max-width: 991px) {
	.banner-section {
		padding-top: 160px;
		height: 600px;
	}
}


@media (max-width: 767px) {
	.banner-section {
		padding-top: 120px;
		height: 500px;
	}
}

@media (max-width: 575px) {
	.banner-section {
		padding-top: 100px;
		height: 300px;
	}
}


/* ======04 Home page */

.green-bg {
	/* background: #0CA640 0% 0% no-repeat padding-box; */
	background: transparent -webkit-gradient(linear, left top, left bottom, from(#0CA640), to(#065320)) 0% 0% no-repeat padding-box;
	background: transparent -o-linear-gradient(top, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(180deg, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 2px 8px;
}


/* 4.1 hero section */
.banner-section.home-banner {
	padding-top: 160px;
	display: block;
	overflow: hidden;
	/* padding-bottom: 100px; */
}

.banner-section {
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
	border-radius: 0px 0px 166px 166px;
}

.hero-banner {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-anim-contianer {
	position: relative;
	width: 100%;
	height: 100%;
}

/* .home-banner .hero-banner{
	position: relative;
	height:100%;
	width:100%;
	background-image: url('/assets/img/home/hero-anim.webp');
	background-repeat: no-repeat;
	background-position:cent;
	background-attachment: fixed;
} */
@media all and (max-width:525px) {
	.home-banner .hero-banner {
		background-image: none;
	}

	.banner-section.home-banner {
		padding-top: 120px;
	}
}

.hero-bg-lft {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 10px 0px 0px 10px;
	padding: 0px 10px;

}

.hero-bg-rgt {
	background: transparent -webkit-gradient(linear, left top, left bottom, from(#0CA640), to(#065320)) 0% 0% no-repeat padding-box;
	background: transparent -o-linear-gradient(top, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(180deg, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
	border-radius: 0px 10px 10px 0px;
	padding: 0px 10px;
}

.hero-anim {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: 40%;
}

.hero-image {
	position: absolute;
	width: 100%;
	bottom: -25px;
	left: 0;
}
@media all and (max-width:767px){
	.hero-anim {
		/* position: relative; */
		display: none;
		/* transform: scale(0.5); */
	}
}

/* 4.2 Transform your team dynamics section */
.tytd-section {
	display: block;
	overflow: hidden;
}

.tytd-ib {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 40px;
}

.tytd-gbg {
	position: absolute;
	z-index: -1;
	bottom: -30px;
	-ms-grid-column-align: center;
	    justify-self: center;
	opacity: 1;
	-webkit-transition: opacity 0.3s linear, z-index 0.3s linear;
	-o-transition: opacity 0.3s linear, z-index 0.3s linear;
	transition: opacity 0.3s linear, z-index 0.3s linear;

}

.tytd-dbg {
	position: absolute;
	z-index: -2;
	bottom: -30px;
	-ms-grid-column-align: center;
	    justify-self: center;
	opacity: 0;
	-webkit-transition: opacity 0.3s linear, z-index 0.3s linear;
	-o-transition: opacity 0.3s linear, z-index 0.3s linear;
	transition: opacity 0.3s linear, z-index 0.3s linear;

}

.tytd-section:hover .tytd-gbg {
	opacity: 0;
	z-index: -2;
}

.tytd-section:hover .tytd-dbg {
	opacity: 1;
	z-index: -1;
}

.tytd-adl {
	position: absolute;
	left: 0;
	bottom: -90px;
	-webkit-transition: left 0.3s linear, bottom 0.3s linear;
	-o-transition: left 0.3s linear, bottom 0.3s linear;
	transition: left 0.3s linear, bottom 0.3s linear;
}

.tytd-adr {
	position: absolute;
	right: 0;
	bottom: -90px;
	-webkit-transition: right 0.3s linear, bottom 0.3s linear;
	-o-transition: right 0.3s linear, bottom 0.3s linear;
	transition: right 0.3s linear, bottom 0.3s linear;
}

.tytd-section:hover .tytd-adl {
	left: -10px;
	bottom: -100px;
}

.tytd-section:hover .tytd-adr {
	right: -10px;
	bottom: -100px;
}

@media all and (max-width:767px) {
	.tytd-adl {
		left: -20px;
		bottom: -100px;
		-webkit-transform: scale(0.6);
		    -ms-transform: scale(0.6);
		        transform: scale(0.6);
	}

	.tytd-adr {
		right: -20px;
		bottom: -100px;
		-webkit-transform: scale(0.6);
		    -ms-transform: scale(0.6);
		        transform: scale(0.6);

	}
}
@media all and (max-width:525px) {
	.tytd-adl {
		left: -40px;
		bottom: -100px;
		-webkit-transform: scale(0.4);
		    -ms-transform: scale(0.4);
		        transform: scale(0.4);
	}

	.tytd-adr {
		right: -40px;
		bottom: -100px;
		-webkit-transform: scale(0.4);
		    -ms-transform: scale(0.4);
		        transform: scale(0.4);

	}
}

/* 4.3 Get to Know us section */


.gtku-section {
	position: relative;
	background: #E5FFED 0% 0% no-repeat padding-box;
}

.gtku-tb {
	margin-bottom: 60px;
}

.gtku-ib {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.gtku-image {
	position: relative;
	right: -10px;
	z-index: 3;
	-webkit-transition: right 0.3s linear;
	-o-transition: right 0.3s linear;
	transition: right 0.3s linear;

}

.gtku-bgc1 {
	position: absolute;
	top: -13px;
	left: -20px;
	z-index: 2;
	opacity: 1;
	/* stopped for later*/
	/* transition: left 0.3s ease-in-out ; */

}

/* stopped for later*/
.gtku-bgc2 {
	position: absolute;
	top: -13px;
	right: -20px;
	z-index: 1;
	opacity: 0;
	/* transition: opacity 0.4s ease-in-out 0.3s ; */
}


.gtku-section:hover .gtku-bgc1 {
	opacity: 0;
	/* left: 0px; */
}

.gtku-section:hover .gtku-bgc2 {
	opacity: 1;
	/* right:-20px; */
}

.gtku-section:hover .gtku-image {
	right: 10px;
}

.gtku-lists {
	margin-top: 20px;
}

.gtku-list {
	position: relative;
	padding-left: 40px;
	margin-top: 5px;
}

.gtku-list::before {
	position: absolute;
	content: "";
	top: 5px;
	left: 10px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #01D449 0% 0% no-repeat padding-box;
}

@media all and (max-width:767px) {
	.gtku-cb {
		margin-top: 40px;
	}
}

/* 4.4 what possible with eWarriorTechSolutions */

.wpwewts-cards {
	margin-top: 100px;
}


.wpwewts-card {
	position: relative;
	height: 100%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #00000014;
	        box-shadow: 0px 21px 46px #00000014;
	border-radius: 30px 30px 0px 0px;
	padding: 30px 29px 25px 29px;
	z-index: 2;
}

@media all and (max-width:767px){
	.wpwewts-card {
		padding: 20px 20px 20px 20px;
		z-index: 2;
	}
	.wpwewts-cards {
		margin-top: 50px;
	}
}

@media all and (min-width:992px) and (max-width:1200px){
	.wpwewts-card {
		padding: 30px 15px 25px 15px;
	}
}



@media all and (max-width:991px) {
	.wpwewts-cc {
		margin-top: 30px;
	}
}

.wpwewts-card.card-mid {
	background: #E5FFED 0% 0% no-repeat padding-box;
}

.wpwewts-cards {
	position: relative;

}

.wpwewts-bg {
	position: absolute;
	bottom: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	    -ms-transform: translate(-50%, 50%);
	        transform: translate(-50%, 50%);
	z-index: 1;
}

@media all and (min-width:992px) {
	.wpwewts-cards {
		height: 350px;
	}

	.clc,
	.crc,
	.cmc,
	.wpwewts-card,
	.wpwewts-card.card-mid {
		-webkit-transition: all 0.4s linear;
		-o-transition: all 0.4s linear;
		transition: all 0.4s linear;
	}

	.cmc {
		margin-top: -30px;
		margin-bottom: 30px;
	}

	.wpwewts-cards:hover .wpwewts-card.card-mid {
		background: #FFFFFF 0% 0% no-repeat padding-box;

	}

	.wpwewts-cards:hover .wpwewts-card {
		background: #E5FFED 0% 0% no-repeat padding-box;
	}

	.wpwewts-cards:hover .clc,
	.wpwewts-cards:hover .crc {
		margin-top: -30px;
		margin-bottom: 30px;
	}

	.wpwewts-cards:hover .cmc {
		margin-top: 0px;
		margin-bottom: 0px;
	}
}

/* 4.5 how our resource augmentation works  section*/

.grid {
	padding: 10px 0px 50px 0px;
	margin: 0px 5px 0px 5px;
	height: 550px;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


/* .owl-item.active .racc {
	transition: all 0.1s linear;
} */

/* @media all and (min-width:992px) {
	.owl-item.active .racc {
		opacity: 1;
	}
} */


.racc {
	padding: 0px 25px;
}

.owl-item.active.center .racc {
	padding: 30px 25px;
	background: #C5FFD8 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #DADADB;
	        box-shadow: 0px 21px 46px #DADADB;
	border-radius: 30px;
	opacity: 1;

}

.rac-image {
	margin: 10px 0px 10px 0px;
}
@media all and (min-width:992px) {

	.owl-item.active .rac-image,
	.owl-item.active .rac-text {
		height: 0;
		opacity: 0;
	}

	.owl-item.active.center .rac-image,
	.owl-item.active.center .rac-text {
		height: unset;
		opacity: 1;
	}

	.owl-item.active .rac-title {
		background: #0CA640 0% 0% no-repeat padding-box;
		border-radius: 8px;
		padding: 5px 8px;
		color: #FFFFFF;
		display: inline;
	}

	.owl-item.active.center .rac-title {
		background: unset;
		border-radius: unset;
		padding: unset;
		color: #0CA640;
		display: inline;
	}

	.owl-item.active.center .racc::before {
		position: absolute;
		content: "";
		background-image: url(/assets/img/home/racc-before.webp), -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
		background-image: url(/assets/img/home/racc-before.webp), -o-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
		background-image: url(/assets/img/home/racc-before.webp), linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
		-webkit-box-shadow: 0px 21px 46px #00000014;
		        box-shadow: 0px 21px 46px #00000014;
		background-position: left;
		background-repeat: no-repeat;
		border-radius: 30px;
		width: 125%;
		height: 70%;
		top: 15%;
		left: -100%;
		z-index: -2;
	}

	.owl-item.active.center .racc::after {
		position: absolute;
		content: "";
		background-image: url(/assets/img/home/racc-after.webp), -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
		background-image: url(/assets/img/home/racc-after.webp), -o-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
		background-image: url(/assets/img/home/racc-after.webp), linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
		-webkit-box-shadow: 0px 21px 46px #00000014;
		        box-shadow: 0px 21px 46px #00000014;
		background-position: right;
		background-repeat: no-repeat;
		border-radius: 30px;
		width: 125%;
		height: 70%;
		top: 15%;
		right: -100%;
		z-index: -2;
	}

	.owl-item.active.center .racc {
		padding: 30px 25px;
		background: #C5FFD8 0% 0% no-repeat padding-box;
	}

}
@media all and (max-width:991px){
	.racc {
		background: #FFFFFF 0% 0% no-repeat padding-box;
		-webkit-box-shadow: 0px 21px 46px #DADADB;
		        box-shadow: 0px 21px 46px #DADADB;
		border-radius: 30px;
		opacity: 1;
		padding-top: 20px;
		padding-bottom: 20px;
	
	}
}
/* 4.6 What make us the right choise section */
.wmutrc-container {
	margin-top: 50px;
	padding-bottom: 50px;
	display: block;
	overflow: hidden;
}


.wmutrc-container.container-odd .row,
.wmutrc-container.container-even .row {
	margin-left: 0px;
	margin-right: 0px;
}

.wmutrc-tb{
	margin-bottom: 100px;
}
@media all and (max-width:991px){
	.wmutrc-tb{
		margin-bottom: 50px;
	}
}

.wmutrc-ib {
	position: relative;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;

}

.wmutrc-ib::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 92%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
}

.wmutrc-ib.rib::before {
	border-radius: 30px 0px 0px 30px;
}

.wmutrc-ib.lib::before {
	border-radius: 0px 30px 30px 0px;
}

.wmutrc-container:hover .wmutrc-ib::before {
	background: #0CA640 0% 0% no-repeat padding-box;
}

.wmutrc-imglc,
.wmutrc-imgrc {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.wmutrc-imglc::after,
.wmutrc-imgrc::after {
	position: absolute;
	content: "";
	top: 0;
	width: 0%;
	height: 0%;
	z-index: 4;
	background: #000000 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #00000014;
	        box-shadow: 0px 21px 46px #00000014;
	opacity: 0.25;
	-webkit-transition: width linear 0.2s, height linear 0.2s;
	-o-transition: width linear 0.2s, height linear 0.2s;
	transition: width linear 0.2s, height linear 0.2s;
}



.wmutrc-imglc::after {
	left: 0;
	border-radius: 0px 30px 30px 0px;
}

.wmutrc-imgrc::after {
	right:0;
	border-radius: 30px 0px 0px 30px;
}

.wmutrc-container:hover .wmutrc-imglc::after,
.wmutrc-container:hover .wmutrc-imgrc::after {
	width: 100%;
	height: 100%;
}

@media all and (max-width:1366px) {
	.wmutrc-ib {
		position: relative;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
}

.wmutrc-arrow {
	position: relative;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 5;
}

.arrow-ltr-hover,
.arrow-rtl-hover {
	display: none;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.wmutrc-container:hover .arrow-ltr,
.wmutrc-container:hover .arrow-rtl {
	display: none;
}

.wmutrc-container:hover .arrow-ltr-hover,
.wmutrc-container:hover .arrow-rtl-hover {
	display: block;
}


.lib {
	border-radius: 0px 30px 30px 0px;
	margin-left: -15px;
}

.rib {
	border-radius: 30px 0px 0px 30px;
	margin-right: -15px;
}


.wmutrc-cb {
	position: relative;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-flex-line-pack: center;
	    align-content: center;
}

.wmutrc-cbc {
	position: relative;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	width: 100%;
	padding: 20px 0px;
}

.wmutrc-hl {
	position: absolute;
	top: 60%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: none;
}

.lhl {
	left: -25%;
}

.rhl {
	right: -25%;
}

.wmutrc-container:hover .wmutrc-hl {
	display: block;
}
@media all and (max-width:767px){
	.wmutrc-container .wmutrc-hl,.wmutrc-container:hover .wmutrc-hl {
		display: none;
	}
}
.wmutrc-cbc::before {
	position: absolute;
	content: "";
	width: 0%;
	height: 100%;
	background: #C5FFD8 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
	top: 0;
	left: -200%;
	z-index: -2;
	-webkit-transition: width 0.4s linear 0.2s;
	-o-transition: width 0.4s linear 0.2s;
	transition: width 0.4s linear 0.2s;
}

.wmutrc-cbc.lcbc::before {
	right: -200%;
	left: unset;
}

.wmutrc-container:hover .wmutrc-cbc::before {
	width: 400%;
}

.ribc {
	position: relative;
	display: -ms-grid;
	display: grid;
	width: 100%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}

.lcb {
	position: relative;
	text-align: right;
}

@media all and (max-width:991px) {
	.rcb {
		padding-left: 10px;
		padding-top: 30px;
	}

	.lcb {
		padding-right: 10px;
		padding-top: 30px;
	}

	.flex-end {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: end;
	}
}

@media all and (max-width:767px) {
	.rcb {
		padding-left: 5px;
		padding-top: 20px;
	}

	.lcb {
		padding-right: 5px;
		padding-top: 20px;
	}
}

/* 4.7 Additional note card section */


/* .anc{
	background-image: url('/assets/img/anc.webp');
	height:228px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
} */
.anc {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.anc-image {
	position: relative;
	z-index: 1;
}

/* .anc-text {
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 70%;
	left: 12%;
} */

/* 5.1 service page banner section */

.banner-section.service-page {
	background-image: url('/assets/img/service/service-default-bg.webp');
	-webkit-transition: background-image 0.4s linear;
	-o-transition: background-image 0.4s linear;
	transition: background-image 0.4s linear;
}

.banner-section.service-page:hover {
	background-image: url('/assets/img/service/service-hover-bg.webp');
}


/* 5.2 Service page what possible with ewarriortechsolutions section */
.hintOfGreenBg {
	background: #E5FFED 0% 0% no-repeat padding-box;
}

/* 5.3 service page service expalination section */


.spse-section {
	display: block;
	overflow: hidden;
}

.spse-cb {
	position: relative;
	height: 100%;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-flex-line-pack: center;
	    align-content: center;
}

.spse-titletag {
	margin-top: 15px;
}

.spse-lists {
	margin-top: 5px;
}

.spse-list {
	position: relative;
	padding-left: 24px;
	margin-top: 5px;
}

.spse-list::before {
	position: absolute;
	content: "";
	top: 7px;
	left: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #01D449 0% 0% no-repeat padding-box;
}

.spse-ic {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.spse-image {
	position: relative;
	z-index: 2;
}

.spse-shape {
	position: absolute;
	top: 2px;
	right: -50px;
	width: 350px;
	height: 350px;
	z-index: 1;
	-webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
	    -ms-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
	        transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
	border: 40px solid #555B57;
	border-radius: 23px;
	-webkit-transition: border-color 0.4s linear;
	-o-transition: border-color 0.4s linear;
	transition: border-color 0.4s linear;
}

.spselib {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}

.spsesl {
	border: 40px solid #C5FFD8;
	left: -50px;
	right: unset;
}

.spse-section:hover .spse-shape{
	border-color: #4dad6d;
}
.spse-section:hover .spsesl{
	border-color:  #555B57;

}
@media all and (max-width:991px) {

	.spserib,
	.spselib {
		position: relative;
		width: 100%;
		display: -ms-grid;
		display: grid;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-top: 100px;
	}
}

@media all and (max-width:767px) {
	.spse-shape {
		top: 0;
		right: -50px;
		width: 300px;
		height: 300px;
	}
}

@media all and (max-width:525px) {
	.spse-shape {
		top: 0;
		right: -50px;
		width: 200px;
		height: 200px;

	}
}

/* 6.1 service page banner section */

.banner-section.about-banner {
	background-image: url('/assets/img/about/about-banner.webp');
}

.about-banner .hero-banner,
.disclaimer-banner .hero-banner,
.privacy-policy-banner .hero-banner {
	position: relative;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-flex-line-pack: center;
	    align-content: center;
}


/* 6.2 Discover the eWarrior tech solutions advantage */

.dtewtsa-cb {
	position: relative;
	width: 100%;
	height: 100%;
	-ms-flex-line-pack: end;
	    align-content: end;
	padding-top: 30px;
}

.dtewtsa-text {
	padding-bottom: 30px;
}

.dtewtsa-ib {
	position: relative;

}

/* 6.3 EWarrior Tech Solutions logo section */

.ewtslc-shape {
	width: 69px;
	height: 67px;
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
}

.ewtslc {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	height: 100%;
	gap: 27px;
}

.ewtsl-img {
	position: relative;
	-webkit-transform: translateY(-25%);
	    -ms-transform: translateY(-25%);
	        transform: translateY(-25%);
}

.ewtslc-hg {
	background: #C5FFD8 0% 0% no-repeat padding-box;
}

.ewtslc-mg {
	background: #E5FFED 0% 0% no-repeat padding-box;
}

.ewtslc-pw {
	background: #FFFFFF 0% 0% no-repeat padding-box;
}



/* 6.4 Blueprints of tomorrow */

.bpotd-block {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 255, 237, 0.7)), to(rgba(229, 255, 237, 0.7))), url(../img/about/bpot-bg.webp);
	background-image: -o-linear-gradient(rgba(229, 255, 237, 0.7), rgba(229, 255, 237, 0.7)), url(../img/about/bpot-bg.webp);
	background-image: linear-gradient(rgba(229, 255, 237, 0.7), rgba(229, 255, 237, 0.7)), url(../img/about/bpot-bg.webp);
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
}

.bpot-cc,
.bpot-ic {
	margin-top: 30px;
}

.bpoti-text {
	background: #0CA640 0% 0% no-repeat padding-box;
	border-radius: 19px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.bpotc-cb {
	position: relative;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #00000029;
	        box-shadow: 0px 21px 46px #00000029;
	border-radius: 30px;
	padding: 20px 60px 15px 60px;
}
@media all and (max-width:991px){
	.bpotc-cb {
		border-radius: 20px;
		padding: 15px 30px 15px 30px;
	}
}
@media all and (max-width:767px){
	.bpotc-cb {
		border-radius: 15px;
		padding: 15px 20px 15px 20px;
	}
}

/* @media all and (min-width:992px){
	.bpot-section{
		height:660px;
	}
	.bpot-cc{
		display: none;
		transition: display 0.4s linear;
	}
	.bpot-section:hover .bpot-cc{
		display: block;
	}
} */


/* 6.5 our values card sectioc */
.ovctb-text {
	margin: 40px 0px 10px 0px;
}

.ovcc {
	position: relative;

}

.ovcard {
	position: relative;
	-webkit-box-shadow: 0px 21px 46px #00000029;
	        box-shadow: 0px 21px 46px #00000029;
	border-radius: 30px;
	padding: 25px 16px;
	height: 100%;

}

.ovcardo {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;

}

.ovcarde {
	background: #C5FFD8 0% 0% no-repeat padding-box;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.ovcardo:hover {
	background: #C5FFD8 0% 0% no-repeat padding-box;
}

.ovcarde:hover {
	background: #FFFFFF 0% 0% no-repeat padding-box;
}

.ovc-img {
	margin: 8px 0px 20px 0px;
	/* display: none; */
}

/* .ovcard:hover .ovc-img{ 
	display:inline;
} */
@media all and (min-width:1200px){
	.ovcardc{
		height:370px;
	}
	.ovcard{
		height:245px;
		-webkit-transition: height 0.3s linear;
		-o-transition: height 0.3s linear;
		transition: height 0.3s linear;
	}
	.ovcard:hover{
		height:370px;
	}
	.ovc-img {
		height:0;
		width:0;
		-webkit-transition: height 0.4s liner 0.3s;
		-o-transition: height 0.4s liner 0.3s;
		transition: height 0.4s liner 0.3s;

	}
	.ovcard:hover .ovc-img{
		height:129px;
		width: 207px;
	}
}

@media all and (max-width:1200px) {
	.ovcc {
		margin-top: 30px;
	}

}

/* 6.6 Founder section */
.founder-section{
	position: relative;
	overflow: hidden;
}
.founder-name {
	margin: 40px 0px 30px 0px;
}
.founder-ib{
	position: relative;
}
.founder-bg{
	position: absolute;
	top:-100%;
	left:50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: -2;
	opacity: 0;
	-webkit-transition: opacity 0.3s linear 0.3s, top 0.6s linear;
	-o-transition: opacity 0.3s linear 0.3s, top 0.6s linear;
	transition: opacity 0.3s linear 0.3s, top 0.6s linear;
}
.founder-section:hover .founder-bg{
	top:-20%;
	opacity: 1;
}
.founder-card {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	padding: 25px 40px;

}

.founder-card::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #00000029;
	        box-shadow: 0px 21px 46px #00000029;
	border-radius: 30px;
	z-index: -1;
	opacity: 0;
	-webkit-transition: opacity 0.4s linear;
	-o-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;

}

.fclbl {
	margin-top: 30px;
	opacity: 0;
	-webkit-transition: opacity 0.4s linear;
	-o-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;

}

.founder-section:hover .founder-card::before,
.founder-section:hover .fclbl {
	opacity: 1;
}

.fclbl li {
	display: inline-block;
	margin: 0px 10px;

}


.fclbc {
	height: 36px;
	width: 36px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	content: "";
	opacity: 1;
	background: #0CA640 0 0 no-repeat padding-box;
}

.fclbc i {
	color: #FFFFFF;
}




/* 07 Contact us page */

/* 7.1 contact us page hero section */
.banner-section.contact-banner,
.banner-section.blog-banner,
.banner-section.disclaimer-banner,
.banner-section.privacy-policy-banner {
	background-image: url('/assets/img/contact/contact-banner.webp');
	border-radius: 0px 0px 150px 150px;
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
}

.contact-banner .hero-block,
.blog-banner .hero-block {
	position: relative;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-flex-line-pack: center;
	    align-content: center;
}

/* 7.2 contact form */
.cform-cib {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 30px;
}

.justify-content-space-evenly {
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
}

.cform-card {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001A;
	        box-shadow: 0px 21px 46px #0000001A;
	padding: 65px 70px;
	border-radius: 45px;
	margin-top: 100px;
}


.cform-field {
	padding: 0px 45px;
	margin-top: 50px;
}





.contact-card {
	position: relative;
	padding: 45px 50px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0CA64029;
	box-shadow: 0px 21px 46px #0CA64029;
	border-radius: 25px;
}

.contact-tb {
	position: relative;
	width: 100%;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;

}

.contact-form-area {
	position: relative;
	width: 100%;
	/* height: 100%; */
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form-inner input {
	position: relative;
	height: 73px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001A;
	        box-shadow: 0px 21px 46px #0000001A;
	border-radius: 20px;
	padding-left: 30px;
	color: #000000;
	font-weight: 600;
}

.form-inner textarea {
	position: relative;
	height: 150px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001A;
	        box-shadow: 0px 21px 46px #0000001A;
	border-radius: 20px;
	padding-left: 30px;
	padding-top: 15px;
	color: #000000;
	font-weight: 600;
}

.btn-container {
	margin-top: 60px;

}

.submit-btn button {
	position: relative;
	background: #0CA640 0% 0% no-repeat padding-box;
	padding: 20px 45px;
	border-radius: 15px;
	border: none;
	color: #FFFFFF;
	/* text-align: center; */
}


/* 7.3 Mobile section */

.mobile-ib {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

/* 7.4 Contact details section */
.cd-section {
	position: relative;
	width: 100%;
	height: 100%;
	/* background-image: url('/assets/img/contact/links-background.webp'); */
	/* background-repeat: no-repeat; */
	/* background-position: center; */
	/* background-size: cover; */
}

.conDetail-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}

.conicon-container {
	width: 200px;
	height: 200px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 21px 46px #0000001F;
	        box-shadow: 0px 21px 46px #0000001F;
	border-radius: 50%;
	position: relative;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.conText-container {
	margin-top: 40px;
}

/* 7.5  */



/* 08 Blog page */

/* 8.1 Blog banner */





/*==== 02 Footer sectiopn ======*/
.footer-section {
	position: relative;
	background-image: url('/assets/img/footer/footer-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 100px 0px 30px 0px;
	border-radius: 60px 60px 0px 0px;
	z-index: 1;
}

.footer-section::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000000 0% 0% no-repeat padding-box;
	opacity: 0.6;
	border-radius: 60px 60px 0px 0px;
	z-index: 2;

}
@media all and (max-width:767px){
	.footer-section, .footer-section::after {
		padding-top: 60px;
		border-radius: 30px 30px 0px 0px;
	}
}
@media all and (max-width:525px){
	.footer-section, .footer-section::after {
		padding-top: 40px;
		border-radius: 10px 10px 0px 0px;
	}
}
.footer-block {
	position: relative;
	z-index: 3;
}

.fabout-info {
	margin-top: 22px;
}

.qlink:not(:first-child),
.slink {
	margin-top: 12px;
}

.slink {
	position: relative;
	padding-left: 10px;
}

.slink::before {
	position: absolute;
	content: ">";
	left: 0;
}

.smlinks {
	margin-top: 15px;
}

.footer-mid {
	margin-top: 80px;
	margin-bottom: 20px;
}

.footer-bottom {
	position: relative;
	padding-top: 20px;
}

.footer-bottom::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 80%;
	left: 10%;
	top: 0;
	background-color: #FFFFFF;
}


.address-block,
.email-block,.GST-block,
.social-icons-block {
	position: relative;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-flex-line-pack: center;
	align-content: center;
}


.address-link,
.mail-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	gap: 15px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.address-link,
.GST-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	gap: 15px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}


.smlinks {
	position: relative;
	width: 100%;
	gap: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.footer-bottom {
	margin-top: 20px;
}

@media all and (max-width:991px) {

	.facb,
	.qlc,
	.slc,
	.smlc {
		margin-top: 40px;
	}

	.footer-section {
		background-position: right;
	}

}

@media all and (max-width:767px) {
	/* .email-block {
		margin-top: 20px;
	} */

	.address-link,
	.mail-link,.GST-link{
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: start;
	}

	.footer-bottom {
		margin-top: 50px;
	}

	.footer-bottom::before {
		width: 100%;
		left: 0%;
	}

}
@media (min-width:767px) and (max-width:991px){
	.facb p{
        padding-right: 20px;
	}
.GST-link{
	margin-top: 20px;
}
}
/* =================contact form================== */

.form-message {
	height: 100%;

}

.form-message {
	margin-bottom: 10px;
}

.form-message.success,
.form-message.error {
	margin-top: 30px;
}

.form-message.error {
	color: red;
}

.form-message.success {
	color: #f48826;
}

.footer-bottom p a:hover {
	color: #F7703C;
}




/* ================= */
.designed-block a {
	/* color:#F7703C; */
	color: #ff9728;
}

















/* Stopped for later */
.banner-section.blog-banner,
.banner-section.contact-banner {
	height: 100%;
}








/*---------------------Devices of particular size ----------------------- */


/* ---------for extra large-laptop  from 1200px--------- */
@media all and (min-width:1200px) {}

/* ---------for extra large-laptop from 1400px---------- */
@media all and (min-width:1400px) {}

/* ---------for large-laptop between 1200px and 1400px---------- */
@media all and (min-width:1200px) and (max-width:1400px) {}

/* ---------for small laptop between 992px and 1200px --------- */
@media all and (min-width:992px) and (max-width:1200px) {
	.header-navigation .primary-menu li a {
		font-size: 16px;
	}

}


/* ----------for tablet between 768px and 992px-------------- */
@media all and (min-width:768px) and (max-width:992px) {}

@media all and (min-width:575px) and (max-width:768px) {}

/* ---------between mobile and laptop----------- */
@media all and (min-width:425px) and (max-width:768px) {}

/* ----------for mobile phones-------------- */
@media(max-width:425px) {}





/* =========== Common media queries======== */

/* Media Query: Large Screens */
@media(max-width:1200px) {
	.cform-field {
		padding: 0px 25px;
		margin-top: 50px;
	}
}

/* Media Query: Medium Screens */
@media(max-width:991px) {
	.header-navigation.breakpoint-on {
		padding: 5px 0 5px 0;
	}

	.banner-section,
	.banner-section.contact-banner,
	.banner-section.blog-banner,
	.banner-section.disclaimer-banner,
	.banner-section.privacy-policy-banner {
		border-radius: 0px 0px 100px 100px;
	}

	.cb-ib {
		margin-top: 30px;
	}

	.cform-field {
		padding: 0px 15px;
		margin-top: 30px;
	}
}

/* Media Query: Small Screens */
@media(max-width:767px) {

	.banner-section,
	.banner-section.contact-banner,
	.banner-section.blog-banner,
	.banner-section.disclaimer-banner,
	.banner-section.privacy-policy-banner {
		border-radius: 0px 0px 70px 70px;
	}

	.cform-card {
		padding: 20px 20px;
		margin-top: 50px;
		border-radius: 15px;
	}

	.cform-field {
		padding: 0px 0px;
		margin-top: 30px;
	}

	.dtewtsa-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.conDetail-container{
		margin-top: 30px;
	}
}

/* Media Query: Extra Small Screens */
@media(max-width:524px) {
	.banner-section,
	.banner-section.contact-banner,
	.banner-section.blog-banner,
	.banner-section.disclaimer-banner,
	.banner-section.privacy-policy-banner {
		border-radius: 0px 0px 30px 30px;
	}

}

/* Media Query: Tiny Screens */
@media(max-width:425px) {}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.sponsorsTitle{
    margin-bottom: 50px;
}
.sponsorsTitle h2{
    position: relative;
    display: inline-block;
    background: transparent linear-gradient(180deg, #0CA640 0%, #065320 100%) 0% 0% no-repeat padding-box;
    color: white;
    border-radius: 10px;
    padding: 5px 25px;
    opacity: 1;
}
.GST-icon{
    position: relative;
    width: 22px;
    height:22px;
}