/*-------------------------------------------------------------
Template Name: Bixol
Template URL: 
Author Name: ThemexRiver
Author URL: https://themeforest.net/user/themexriver/portfolio
Version: 1.0
Description: 
Tags: cleaning html template
Text Domain: bixol
-------------------------------------------------------------*/


/*------------------------------------------------------------- 
TABLE OF CONTENTS: 
---------------------------------------------------------------
>> Variable
>> Mixin
>> Navbar
>> Header
>> Footer
>> Breadcrumb
>> Slider 
>> Preloader
>> Theme
>> Typography
>> Animation
>> Home-1
>> About
>> Services
>> Portfolio
>> Contact
>> 404
>> Ciming Soon
>> FAQ
>> Blog
>> Blog Details
>> Home-2
>> Home-3
>> Home-4
>> Home-5
>> Home-6
>> Home-7
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;display=swap");

/* Navbar */


/**********************Desktop Menu*************
************************************************/

.bixol-navigation .desktop-menu {
	padding: 0 40px;
}

.bixol-navigation .desktop-menu ul {
	text-align: right;
}

.bixol-navigation .desktop-menu ul li {
	display: inline-block;
	position: relative;
}

.bixol-navigation .desktop-menu ul li:nth-child(1),
.bixol-navigation .desktop-menu ul li:nth-child(2),
.bixol-navigation .desktop-menu ul li:nth-child(3) {
	float: left;
}

.bixol-navigation .desktop-menu ul li+li {
	margin-left: 25px;
}

.bixol-navigation .desktop-menu ul li a {
	padding: 18px 25px;
	display: inline-block;
	color: #101820;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
}

.bixol-navigation .desktop-menu ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 25px;
	height: 3px;
	background-color: #22d3ee;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-navigation .desktop-menu ul li a:hover::before {
	opacity: 1;
	left: -10px;
}

.bixol-navigation .desktop-menu ul li.has-submenu>a::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 13px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-navigation .desktop-menu ul li.has-submenu ul {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 220px;
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	text-align: left;
	border-radius: 0 0 10px 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 20;
}

.bixol-navigation .desktop-menu ul li.has-submenu ul li {
	margin-left: 0;
	display: block;
	float: none;
}

.bixol-navigation .desktop-menu ul li.has-submenu ul li a {
	color: #3a4268;
	padding: 10px 25px;
	font-weight: 500;
	display: block;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-navigation .desktop-menu ul li.has-submenu ul li a::before {
	width: 10px;
	left: 15px;
}

.bixol-navigation .desktop-menu ul li.has-submenu ul li a:hover {
	padding-left: 30px;
}

.bixol-navigation .desktop-menu ul li.has-submenu:hover>a::after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.bixol-navigation .desktop-menu ul li.has-submenu:hover>ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
}


/********************* Mobile Menu ********************/

.bixol-mobile-menu {
	position: fixed;
	width: 220px;
	height: 100vh;
	top: 0;
	left: -250px;
	background-color: #101820;
	padding-top: 30px;
	z-index: 99;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	overflow-y: scroll;
}

.bixol-mobile-menu .mobile-menu-logo {
	width: 150px;
	display: block;
	margin: 0 auto;
}

.bixol-mobile-menu ul {
	margin-top: 20px;
}

.bixol-mobile-menu ul li {
	display: block;
}

.bixol-mobile-menu ul li a {
	display: block;
	padding: 8px 8px 8px 15px;
	border-bottom: 1px solid #eaeaea;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	color: #FEE715;
}

.bixol-mobile-menu ul li.has-submenu {
	position: relative;
}

.bixol-mobile-menu ul li.has-submenu>a {
	position: relative;
}

.bixol-mobile-menu ul li.has-submenu>a::after {
	content: '+';
	position: absolute;
	top: 6px;
	right: 10px;
	background-color: #eaeaea;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	border-radius: 2px;
	cursor: pointer;
}

.bixol-mobile-menu ul li.has-submenu ul {
	margin-top: 0;
	display: none;
}

.bixol-mobile-menu ul li.has-submenu ul li a {
	padding-left: 25px;
}

.bixol-mobile-menu ul li.has-submenu ul li.has-submenu ul li a {
	padding-left: 35px;
}

.mobile-menu-active {
	left: 0;
}



/******************* Header 2 Menu ******************/

@media (max-width: 991.98px) {
	.header-style-2 .desktop-menu-wrapper {
		display: none;
	}
}

.header-style-2 .desktop-menu {
	/*padding-left: 30px;*/
	/*text-align: right;*/
}

.header-style-2 .desktop-menu ul li {
	display: inline-block;
	position: relative;
	padding: 5px;
}

.header-style-2 .desktop-menu ul li a {
	padding: 18px 25px;
	display: inline-block;
	color: #101820;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-2 .desktop-menu ul li a::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	-webkit-transform: translateX(-50%) scale(0);
	-ms-transform: translateX(-50%) scale(0);
	transform: translateX(-50%) scale(0);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #22d3ee;
	border: 3px solid #ab078e;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-2 .desktop-menu ul li a:hover::before {
	-webkit-transform: translateX(-50%) scale(1);
	-ms-transform: translateX(-50%) scale(1);
	transform: translateX(-50%) scale(1);
}

.header-style-2 .desktop-menu ul li.has-submenu>a::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-2 .desktop-menu ul li.has-submenu .has-submenu-div {
	position: absolute;
    top: calc(100% + 10px);
    left: -625px;
    min-width: 1310px;
    background-color: #FEE715;
    -webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
    box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
    text-align: left;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: 20;
}
.header-style-2 .desktop-menu ul li.has-submenu .has-submenu-div ul{
	/* border: 1px solid red; */
	width: 200px;
    float: left;
}
/* .header-style-2 .desktop-menu ul li.has-submenu ul {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 190px;
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	text-align: left;
	border-radius: 0 0 10px 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 20;
} */

.header-style-2 .desktop-menu ul li.has-submenu ul li {
	margin-left: 0;
	display: block;
}

.header-style-2 .desktop-menu ul li.has-submenu ul li a {
	color: #000000;
    padding: 7px 25px 2px;
    font-weight: 500;
    display: block;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-size: 13px;
}

.header-style-2 .desktop-menu ul li.has-submenu ul li a::before {
	top: 16px;
	left: 16px;
}

.header-style-2 .desktop-menu ul li.has-submenu ul li a:hover {
	padding-left: 30px;
}

.header-style-2 .desktop-menu ul li.has-submenu:hover>a::after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.header-style-2 .desktop-menu ul li.has-submenu:hover> .has-submenu-div {
	top: 100%;
	opacity: 1;
	visibility: visible;
	padding-bottom: 10px;
	padding-top: 5px;
}
/* .header-style-2 .desktop-menu ul li.has-submenu:hover>ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
	padding-bottom: 10px;
} */

.header-style-2 .desktop-menu ul li:hover a {
	color: #FEE715;
}

@media (max-width: 1199.98px) {
	.header-style-2 .desktop-menu {
		display: none;
	}
}


/**************** Header 3 Menu ******************/

.header-style-3 .desktop-menu ul li a {
	color: #FEE715;
}

.header-style-3 .desktop-menu ul li a::before {
	bottom: 0;
	left: 50%;
	border: 0;
	width: 0;
	height: 3px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 0;
	background-color: #FEE715;
}

.header-style-3 .desktop-menu ul li ul li a::before {
	width: 0px;
	top: 18px !important;
}

.header-style-3 .desktop-menu ul li ul li a:hover::before {
	width: 10px;
}

.header-style-3 .desktop-menu ul li:hover>a::before {
	width: 60px;
}


/******************** Header 4 Menu ************************/

.header-style-4 .desktop-menu {
	padding-left: 0;
}

.header-style-4 .desktop-menu ul li a {
	color: #000000;
}

.header-style-4 .desktop-menu ul li a::before {
	bottom: 0;
	left: 50%;
	border: 0;
	width: 0;
	height: 3px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 0;
	background-color: #8cd102;
}

.header-style-4 .desktop-menu ul li ul li a::before {
	width: 0px;
	top: 20px !important;
}

.header-style-4 .desktop-menu ul li ul li a:hover::before {
	width: 10px;
}

.header-style-4 .desktop-menu ul li.has-submenu>a::after {
	color: #8cd102;
}

.header-style-4 .desktop-menu ul li:hover>a::before {
	width: 60px;
}


/************************* Header Style 5 *********************/

.header-style-5 .header-navigation .desktop-menu ul li a {
	padding: 20px 15px;
}

.header-style-5 .header-navigation .desktop-menu ul li a::before {
	background-color: #9f1d85;
}

.header-style-5 .header-navigation .desktop-menu ul li:hover>a {
	color: #9f1d85;
}


/**************** Header Style 6 ****************/

.header-style-6 .desktop-menu ul li a {
	color: #101820;
	padding: 23px 25px;
}

.header-style-6 .desktop-menu ul li:hover a {
	color: #ffd532;
}

.header-style-6 .desktop-menu ul li:hover a::before {
	background-color: #ffd532;
}

.header-style-6 .desktop-menu ul li:hover a::after {
	color: #ffd532;
}

.header-style-6 .desktop-menu ul li.has-submenu a::after {
	color: #101820;
}

.header-style-6 .desktop-menu ul li.has-submenu:hover a::after {
	color: #ffd532;
}


/* Header Section */

.bixol-header {
	position: relative;
	z-index: 10;
}

.bixol-header .bixol-info-bar {
	padding: 6px 0;
	background-color: #02154e;
}

.bixol-header .bixol-info-bar .bixol-info-left p {
	font-size: 13px;
	color: #101820;
}

.bixol-header .bixol-info-bar .bixol-info-left p span {
	font-weight: 500;
}

.bixol-header .bixol-info-bar .bixol-info-social {
	text-align: right;
}

.bixol-header .bixol-info-bar .bixol-info-social a {
	color: #748bd1;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-header .bixol-info-bar .bixol-info-social a:hover {
	color: #101820;
}

.bixol-header .bixol-info-bar .bixol-info-social a+a {
	margin-left: 10px;
}

.bixol-header .bixol-header-top {
	padding: 15px 0;
}

.bixol-header .bixol-header-top .bixol-header-top-content {
	padding: 0 50px;
}

.bixol-header .bixol-header-top .bixol-header-top-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
}

.bixol-header .bixol-header-top .bixol-header-top-left .bixol-header-item:first-child::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -32px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 30px;
	border: 1px dashed #c7d1ef;
}

.bixol-header .bixol-header-top .bixol-header-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-icon-wrapper {
	display: inline-block;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-icon-wrapper span {
	display: inline-block;
	line-height: 0;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-icon-wrapper i {
	font-size: 40px;
	display: inline-block;
	color: #FEE715;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-item-content {
	margin-left: 10px;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-item-content label {
	color: #FEE715;
	display: block;
	font-size: 13px;
}

.bixol-header .bixol-header-top .bixol-header-item .bixol-item-content span {
	font-size: 19px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 19px;
	color: #FEE715;
	display: inline-block;
}

.bixol-header .bixol-header-top .bixol-header-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bixol-header .bixol-header-top .bixol-header-top-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.bixol-header .bixol-header-top .bixol-header-top-right .bixol-header-item:first-child::after {
	content: '';
	position: absolute;
	right: -32px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 30px;
	border: 1px dashed #c7d1ef;
}

.bixol-header .bixol-navigation .bixol-nav {
	background-color: #ab078e;
	position: relative;
	z-index: 12;
}

.bixol-header .bixol-navigation .bixol-nav::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 95%;
	height: 6px;
	background-color: #22d3ee;
	z-index: 10;
}

.bixol-header .bixol-navigation .bixol-nav .bixol-header-logo {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 130px;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	z-index: 15;
}

.bixol-header .bixol-mobile-header {
	display: none;
	padding: 6px 0;
}

.bixol-header .bixol-mobile-header a {
	width: 130px;
	display: inline-block;
}
.bixol-header .info-left{
    display:flex;
    justify-content: end;
}
.bixol-header .info-left a:nth-child(2){
    margin-right:8px;
}
.bixol-header .info-left .login-btn{
    background: #0a082b;
    color: #101820;
    padding: 6px 15px;
    border-radius: 3px;
    margin-right: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
}
.bixol-header .info-left img{
    width: 120px;
}

@media (max-width: 1199.98px) {
	.bixol-header .bixol-header-top {
		display: none;
	}
	.bixol-header .bixol-navigation .bixol-nav {
		display: none;
	}
	.bixol-header .bixol-mobile-header {
		display: block;
	}
	
}

@media (max-width: 575.98px) {
	.bixol-header .bixol-info-bar {
		display: none;
	}
}

.bixol-mobile-hamburger {
	float: right;
	width: 35px;
}

.bixol-mobile-hamburger span {
	width: 30px;
	height: 4px;
	background-color: #000000;
	display: block;
	-webkit-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	-o-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	border-radius: 3px;
}

.bixol-mobile-hamburger span:nth-of-type(1) {
	width: 50%;
}

.bixol-mobile-hamburger span:nth-of-type(2) {
	width: 100%;
}

.bixol-mobile-hamburger span:nth-of-type(3) {
	width: 75%;
}

.bixol-mobile-hamburger span+span {
	margin-top: 4px;
}

.bixol-mobile-hamburger.active span:nth-of-type(1) {
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transform: rotatez(45deg) translate(3px, -2px);
	-ms-transform: rotate(45deg) translate(3px, -2px);
	transform: rotatez(45deg) translate(3px, -2px);
}

.bixol-mobile-hamburger.active span:nth-of-type(2) {
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transform: rotatez(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotatez(-45deg);
}

.bixol-mobile-hamburger.active span:nth-of-type(3) {
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	width: 50%;
	-webkit-transform: translate(15px, -5px) rotatez(45deg);
	-ms-transform: translate(15px, -5px) rotate(45deg);
	transform: translate(15px, -5px) rotatez(45deg);
}


/************************ Header Style 2 **********************/

.header-style-2 {
	position: relative;
	z-index: 10;
}

.header-style-2 .info-bar {
	background-color: #02154e;
	padding: 8px 0;
}

.header-style-2 .info-bar .info-left {
	padding-left: 145px;
}

@media (max-width: 1199.98px) {
	.header-style-2 .info-bar .info-left {
		padding-left: 0;
	}
}

.header-style-2 .info-bar .info-left span {
	color: #101820;
	font-size: 14px;
}

.header-style-2 .info-bar .info-left span i {
	color: #22d3ee;
	margin-right: 6px;
}

.header-style-2 .info-bar .info-left span+span {
	margin-left: 60px;
	position: relative;
}

.header-style-2 .info-bar .info-left span+span::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -30px;
	width: 0px;
	height: 20px;
	border: 1px dashed #313c5f;
}

.header-style-2 .info-bar .header-social {
	text-align: right;
}

.header-style-2 .info-bar .header-social a {
	color: #748bd1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-2 .info-bar .header-social a:hover {
	color: #101820;
}

.header-style-2 .info-bar .header-social a+a {
	margin-left: 10px;
}

@media (max-width: 767.98px) {
	.header-style-2 .info-bar {
		display: none;
	}
}

.header-style-2 .header-bottom {
	background-color: #22d3ee;
}

.header-style-2 .header-bottom .logo-wrapper {
	position: relative;
}

.header-style-2 .header-bottom .logo-wrapper a.desktop-logo {
	position: absolute;
	top: -70px;
	left: 0;
	background-color: #101820;
	border-radius: 3px;
	width: 120px;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	display: inline-block;
}

@media (max-width: 1199.98px) {
	.header-style-2 .header-bottom .logo-wrapper a.desktop-logo {
		position: initial;
		width: 60px;
		vertical-align: middle;
	}
}

.header-style-2 .header-bottom .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header-style-2 .header-bottom .header-right .bixol-mobile-hamburger {
	margin-left: 15px;
	display: none;
}

.header-style-2 .header-bottom .header-right .bixol-mobile-hamburger span {
	background-color: #101820;
}

@media (max-width: 1199.98px) {
	.header-style-2 .header-bottom .header-right .bixol-mobile-hamburger {
		display: inline-block;
	}
}

.header-style-2 .header-bottom .header-search {
	text-align: right;
}

.header-style-2 .header-bottom .header-search form {
	max-width: 215px;
	position: relative;
	display: inline-block;
}

.header-style-2 .header-bottom .header-search form input[type='text'] {
	width: 100%;
	padding: 3px 20px;
	border: 1px solid #101820;
	border-radius: 30px;
	background-color: transparent;
	color: #101820;
}

.header-style-2 .header-bottom .header-search form input[type='text']::-webkit-input-placeholder {
	color: #101820;
	font-size: 14px;
}

.header-style-2 .header-bottom .header-search form input[type='text']:-ms-input-placeholder {
	color: #101820;
	font-size: 14px;
}

.header-style-2 .header-bottom .header-search form input[type='text']::-ms-input-placeholder {
	color: #101820;
	font-size: 14px;
}

.header-style-2 .header-bottom .header-search form input[type='text']::placeholder {
	color: #101820;
	font-size: 14px;
}

.header-style-2 .header-bottom .header-search form button {
	position: absolute;
	right: 12px;
	background-color: transparent;
	color: #101820;
	font-size: 14px;
	border: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 767.98px) {
	.header-style-2 .header-bottom {
		padding: 6px 0;
	}
}


/************************ Header Style 3 ********************/

.header-style-3 .info-bar {
	background-color: #FEE715;
}

.header-style-3 .info-bar .info-left {
	padding-left: 0;
}

.header-style-3 .header-bottom {
	background-color: #101820;
}

.header-style-3 .header-bottom .logo-wrapper a.desktop-logo {
	position: initial;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header-style-3 .header-bottom .header-search form input[type="text"] {
	border-color: #FEE715;
	color: #FEE715;
}

.header-style-3 .header-bottom .header-search form input[type="text"]::-webkit-input-placeholder {
	color: #FEE715;
}

.header-style-3 .header-bottom .header-search form input[type="text"]:-ms-input-placeholder {
	color: #FEE715;
}

.header-style-3 .header-bottom .header-search form input[type="text"]::-ms-input-placeholder {
	color: #FEE715;
}

.header-style-3 .header-bottom .header-search form input[type="text"]::placeholder {
	color: #FEE715;
}

.header-style-3 .header-bottom .header-search form button {
	color: #FEE715;
}

@media (max-width: 1199.98px) {
	.header-style-3 .info-bar {
		display: none;
	}
	.header-style-3 .header-bottom {
		padding: 10px 0;
	}
	.header-style-3 .header-bottom .logo-wrapper a.desktop-logo {
		width: 120px;
	}
	.header-style-3 .header-bottom .header-right .bixol-mobile-hamburger span {
		background-color: #ab078e;
	}
}

@media (max-width: 460px) {
	.header-style-3 .header-bottom .header-right .header-search form {
		max-width: 150px;
	}
}


/*************** Header style 4 ****************/

.header-style-4 {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	background-color: #101820;
}

.header-style-4 .h4-info-area {
	border-bottom: 1px solid #eaeaea;
}

.header-style-4 .h4-info-area .logo-wrapper a {
	width: 120px;
	display: inline-block;
}

.header-style-4 .h4-info-area .h4-info-items {
	text-align: right;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item+.h4-info-item {
	margin-left: 60px;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item+.h4-info-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0px;
	height: 30px;
	border-left: 1px dashed #eaeaea;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item .bixol-icon-wrapper {
	display: inline-block;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item .bixol-icon-wrapper i {
	font-size: 30px;
	line-height: 0;
	display: inline-block;
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
	color: #FEE715;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item .bixol-item-content {
	margin-left: 10px;
	text-align: left;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item .bixol-item-content label {
	color: #000000;
	display: block;
	font-size: 13px;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item .bixol-item-content span {
	font-size: 19px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 19px;
	color: #000000;
	display: inline-block;
}

.header-style-4 .h4-info-area .h4-info-items .h4-info-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.header-style-4 .header-md-logo {
	display: none;
	width: 120px;
	position: absolute;
	top: 50%;
	left: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header-style-4 .h4-header-search {
	border-left: 1px solid #eaeaea;
	text-align: center;
}

.header-style-4 .h4-header-search span {
	cursor: pointer;
}

.header-style-4 .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header-style-4 .header-right .bixol-mobile-hamburger {
	display: none;
	margin-left: 15px;
}

.header-style-4 .header-right .h4-header-social {
	text-align: right;
}

.header-style-4 .header-right .h4-header-social a {
	width: 30px;
	height: 30px;
	display: inline-block;
	text-align: center;
	line-height: 30px;
	color: #5a5a5a;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-4 .header-right .h4-header-social a:hover {
	color: #101820;
	background-color: #9f1d85;
}

@media (max-width: 1199.98px) {
	.header-style-4 {
		padding: 20px 0;
	}
	.header-style-4 .header-md-logo {
		display: inline-block;
	}
	.header-style-4 .h4-info-area {
		display: none;
	}
	.header-style-4 .header-right .h4-header-social {
		display: none;
	}
	.header-style-4 .header-right .bixol-mobile-hamburger {
		display: inline-block;
	}
}

@media (max-width: 991.98px) {
	.header-style-4 .h4-header-search {
		border-left: 0;
		text-align: right;
	}
	.header-style-4 .header-right .h4-header-social {
		display: inline-block;
	}
}

@media (max-width: 460px) {
	.header-style-4 .h4-header-search {
		display: none;
	}
	.header-style-4 .header-right .h4-header-social {
		display: none;
	}
}


/************* Header Style 5 ****************/

.header-style-5 {
	background-color: #ffffff;
}

.header-style-5 .info-top {
	padding: 6px 0;
	border-bottom: 1px solid #eaeaea;
}

.header-style-5 .info-top .info-left p {
	font-size: 14px;
}

.header-style-5 .info-top .info-left p span {
	font-weight: 500;
}

/*.header-style-5 .info-top .info-right {*/
/*	text-align: right;*/
/*}*/

.header-style-5 .info-top .info-right div {
	display: inline-block;
	position: relative;
}

.header-style-5 .info-top .info-right div span {
	font-size: 14px;
}

.header-style-5 .info-top .info-right div span i {
	margin-right: 6px;
}

.header-style-5 .info-top .info-right div+div {
	margin-left: 40px;
}

.header-style-5 .info-top .info-right div+div::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 20px;
	border: 1px solid #eaeaea;
}

.header-style-5 .info-top .info-right .info-social a {
	color: #000000;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-5 .info-top .info-right .info-social a:hover {
	color: #9f1d85;
}

.header-style-5 .info-top .info-right .info-social a+a {
	margin-left: 5px;
}

.header-style-5 .header-navigation .logo-wrapper a {
	width: 200px;
	display: inline-block;
}

.header-style-5 .header-navigation .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header-style-5 .header-navigation .header-right .header-btn {
	text-align: right;
}

.header-style-5 .header-navigation .header-right .bixol-mobile-hamburger {
	margin-left: 15px;
	display: none;
}

@media (max-width: 1199.98px) {
	.header-style-5 .header-navigation .header-right .header-btn {
		display: none;
	}
	.header-style-5 .header-navigation .header-right .bixol-mobile-hamburger {
		display: inline-block;
	}
	.header-style-5 .header-navigation .header-right{
		top: 22px;
    	position: absolute;
    	right: 15px;
	}
}

@media (max-width: 991.98px) {
	.header-style-5 {
		padding: 10px 0;
	}
	.header-style-5 .info-top {
		display: none;
	}
}


/************** Header Style 6 **************************/

.header-style-6 {
	background-color: #628dfb;
}

.header-style-6 .logo-wrapper {
	position: relative;
}

.header-style-6 .logo-wrapper a.desktop-logo {
	position: absolute;
	top: -35px;
	left: 0;
	width: 130px;
	display: inline-block;
	background-color: #101820;
	vertical-align: middle;
	padding: 0 15px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.header-style-6 .logo-wrapper a.responsive-logo {
	display: none;
	background-color: #101820;
	padding: 10px;
	border-radius: 4px;
	vertical-align: middle;
}

.header-style-6 .header-btn {
	text-align: right;
}

.header-style-6 .header-btn a {
	width: 150px;
	height: 50px;
	background-color: #ffd532;
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 15px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	border-radius: 3px;
	text-transform: capitalize;
	overflow: hidden;
	vertical-align: middle;
	position: relative;
}

.header-style-6 .header-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	width: 50px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.658)), to(rgba(255, 255, 255, 0.301)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.658), rgba(255, 255, 255, 0.301));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.658), rgba(255, 255, 255, 0.301));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.658), rgba(255, 255, 255, 0.301));
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.header-style-6 .header-btn a:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

@media (max-width: 1199.98px) {
	.header-style-6 {
		padding: 10px 0;
	}
	.header-style-6 .logo-wrapper a.desktop-logo {
		display: none;
	}
	.header-style-6 .logo-wrapper a.responsive-logo {
		display: inline-block;
	}
	.header-style-6 .header-right .bixol-mobile-hamburger span {
		background-color: #101820;
	}
}

@media (max-width: 575.98px) {
	.header-style-6 .header-right .header-btn {
		display: none;
	}
}


/*************** Header Style 7 *****************/

.header-style-7 .home7-infobar {
	background-color: #000921;
	padding: 12px 0;
}

.header-style-7 .home7-infobar .info-left p {
	color: #101820;
	text-transform: capitalize;
	font-size: 13px;
}

.header-style-7 .home7-infobar .info-left p span {
	color: #ffce00;
}

.header-style-7 .home7-infobar .info-social {
	text-align: right;
}

.header-style-7 .home7-infobar .info-social a {
	color: #777777;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header-style-7 .home7-infobar .info-social a+a {
	margin-left: 6px;
}

.header-style-7 .home7-infobar .info-social a:hover {
	color: #ffce00;
}

.header-style-7 .header-navigation {
	background-color: transparent;
	padding-top: 6px;
	padding-bottom: 6px;
}

.header-style-7 .header-navigation .logo-wrapper a {
	width: 140px;
	display: inline-block;
}

.header-style-7 .header-navigation .desktop-menu {
	padding-left: 0;
}

.header-style-7 .header-navigation .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header-style-7 .header-navigation .header-right .header-search {
	display: inline-block;
}

.header-style-7 .header-navigation .header-right .header-search form {
	position: relative;
	max-width: 215px;
	border-radius: 30px 0 0 30px;
}

.header-style-7 .header-navigation .header-right .header-search form input[type="text"] {
	width: 100%;
	padding: 13px 15px 13px 45px;
	border: 0;
	border-radius: 30px 0 0 30px;
	font-family: "Poppins", sans-serif;
	color: #666666;
}

.header-style-7 .header-navigation .header-right .header-search form input[type="text"]::-webkit-input-placeholder {
	color: #666666;
}

.header-style-7 .header-navigation .header-right .header-search form input[type="text"]:-ms-input-placeholder {
	color: #666666;
}

.header-style-7 .header-navigation .header-right .header-search form input[type="text"]::-ms-input-placeholder {
	color: #666666;
}

.header-style-7 .header-navigation .header-right .header-search form input[type="text"]::placeholder {
	color: #666666;
}

.header-style-7 .header-navigation .header-right .header-search form button {
	position: absolute;
	top: 50%;
	left: 12px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 0;
	background-color: transparent;
}

.header-style-7 .header-navigation .header-right .ct-cart-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 18px;
	border-radius: 0 30px 30px 0;
	width: 50px;
	height: 50px;
	background-color: #101820;
	margin-left: -6px;
	position: relative;
}

.header-style-7 .header-navigation .header-right .ct-cart-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -5px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 2px;
	height: 30px;
	background-color: #bcbcbc;
}

.header-style-7 .header-navigation .header-right .ct-cart-btn a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #000000;
}

.header-style-7 .header-navigation .header-right .bixol-mobile-hamburger {
	display: none;
	margin-left: 15px;
	width: 45px;
}

@media (max-width: 1199.98px) {
	.header-style-7 .header-navigation .header-right .bixol-mobile-hamburger {
		display: inline-block;
	}
}

@media (max-width: 991.98px) {
	.header-style-7 .home7-infobar {
		display: none;
	}
	.header-style-7 .header-navigation .header-right .bixol-mobile-hamburger {
		width: 35px;
	}
}

@media (max-width: 575.98px) {
	.header-style-7 .header-navigation .header-right .header-search {
		display: none;
	}
	.header-style-7 .header-navigation .header-right .ct-cart-btn {
		display: none;
	}
}


/********************* Sticky Header *********************/

.header-sticky {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 50;
	-webkit-animation: 0.3s slideInDown linear;
	animation: 0.3s slideInDown linear;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.header-sticky.bixol-header .bixol-info-bar {
	display: none;
}

.header-sticky.bixol-header .sticky-info {
	display: none;
}

.header-sticky.bixol-header .bixol-header-top {
	display: none;
}

.header-sticky.bixol-header .bixol-navigation .bixol-nav .bixol-header-logo {
	width: 100px;
	top: 0;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	background-color: #101820;
	border-radius: 0 0 50% 50%;
}

.header-sticky.bg-sticky-white {
	background-color: #101820;
}


/********** Header Search Form ************/

.h4-header-search-form {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 10;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-header-search-form a.form-close {
	position: absolute;
	top: 60px;
	right: 60px;
	font-size: 40px;
	color: #101820;
}

.h4-header-search-form form {
	min-width: 400px;
	position: relative;
}

.h4-header-search-form form input[type="text"] {
	width: 100%;
	padding: 10px 18px;
	border: 0;
	font-size: 14px;
	border-radius: 3px;
}

.h4-header-search-form form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 52px;
	height: 42px;
	border-radius: 0 3px 3px 0;
	display: inline-block;
	border: 0;
	background-color: #9f1d85;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.search-form-open {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.search-form-open form {
	-webkit-animation: 1s ct_fadeInUp;
	animation: 1s ct_fadeInUp;
}


/* Footer Section */


/************** Footer 1 ***********************/

.bixol-footer {
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 160px 0 0px 0;
}

.bixol-footer .bixol-footer-logo {
	position: absolute;
	width: 130px;
	top: -60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: inline-block;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	border-radius: 50%;
	z-index: 2;
}
.bixol-footer .bixol-footer-widget ul{
	padding-left: 40px;
}
.bixol-footer .bixol-footer-widget ul li{
	list-style-type: disc;
}
.bixol-footer .bixol-footer-widget ul li::marker {
	color: #101820;
	font-size: 22px;
}
.bixol-footer .bixol-footer-widget ul li a{
	color: #101820;
}
.bixol-footer .bixol-footer-widget {
	margin-bottom: 60px;
}

.bixol-footer .bixol-footer-widget h4 {
	color: #101820;
	text-transform: initial;
	margin-bottom: 30px;
}

.bixol-footer .bixol-footer-widget h4 span {
	color: #22d3ee;
}

.bixol-footer .bixol-footer-widget p {
	color: #c2d5e7;
	font-family: 'Nunito Sans', sans-serif;
}

.bixol-footer .bixol-footer-widget .footer-office-time {
	margin-top: 0px;
}

.bixol-footer .bixol-footer-widget .footer-office-time h6 {
	font-size: 15px;
	color: #101820;
	margin-bottom: 10px;
}

.bixol-footer .bixol-footer-widget .footer-office-time span {
	display: block;
	color: #000000;
	font-size: 14px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form {
	margin-top: 20px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form {
	width: 100%;
	position: relative;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form input[type='email'] {
	width: 100%;
	padding: 15px 30px;
	border: 0;
	background-color: #1c2d60;
	color: #101820;
	font-size: 14px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form input[type='email']::-webkit-input-placeholder {
	color: #101820;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form input[type='email']:-ms-input-placeholder {
	color: #101820;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form input[type='email']::-ms-input-placeholder {
	color: #101820;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form input[type='email']::placeholder {
	color: #101820;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	border: 0;
	background-color: #22d3ee;
	color: #101820;
	font-size: 14px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-form form button:hover i {
	-webkit-animation: 0.3s movingright;
	animation: 0.3s movingright;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social {
	margin-top: 20px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a {
	margin-right: 15px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	display: inline-block;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a.facebook {
	color: #3b5999;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a.twitter {
	color: #55acee;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a.dribbble {
	color: #ea4c89;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a.behance {
	color: #cfd7fa;
}

.bixol-footer .bixol-footer-widget .bixol-footer-social a:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.bixol-footer .bixol-footer-widget .bixol-footer-address ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #c2d5e7;
	font-size: 14px;
}

.bixol-footer .bixol-footer-widget .bixol-footer-address ul li i {
	color: #ab078e;
}

.bixol-footer .bixol-footer-widget .bixol-footer-address ul li+li {
	margin-top: 10px;
}

.bixol-footer .bixol-footer-widget .bixol-insta-widget ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.bixol-footer .bixol-footer-widget .bixol-insta-widget ul li {
	position: relative;
	padding-right: 10px;
	padding-bottom: 10px;
}

.bixol-footer .bixol-footer-widget .bixol-insta-widget ul li a {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-footer .bixol-footer-widget .bixol-insta-widget ul li:hover a {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.bixol-footer .bixol-footer-widget .bixol-insta-widget {
		max-width: 270px;
	}
}

.bixol-footer .footer-copyright {
	padding: 18px 0;
	text-align: center;
	background-color: #101820;
}

.bixol-footer .footer-copyright p {
	font-family: "Poppins", sans-serif;
	color: #ffffff;
	font-size: 14px;
}

.bixol-footer .footer-copyright p a {
	color: #ffffff;
}


/*************** Hmoe 4 Footer ******************/

.h4-footer {
	background-color: #000000;
}

.h4-footer .bixol-footer-widget h4 span {
	color: #8cd102;
}

.h4-footer .bixol-footer-widget p {
	color: #c2d5e7;
}

.h4-footer .bixol-footer-widget .bixol-footer-form form input[type="email"] {
	background-color: #1a1a1a;
}

.h4-footer .bixol-footer-widget .bixol-footer-form form button {
	background-color: #9f1d85;
}

.h4-footer .bixol-footer-widget .bixol-footer-address ul li i {
	color: #9f1d85;
}

.h4-footer .footer-copyright {
	background-color: #0e0e0e;
}

.h4-footer .footer-copyright p {
	color: #c2d5e7;
}

.h4-footer .footer-copyright p a {
	color: #9f1d85;
	font-weight: 700;
}


/***************** H5 Footer ****************/

.h5-footer {
	background-color: #000000;
}

.h5-footer .bixol-footer-widget h4 span {
	color: #9f1d85;
}

.h5-footer .bixol-footer-widget .bixol-footer-form form input[type="email"] {
	background-color: #1a1a1a;
}

.h5-footer .bixol-footer-widget .bixol-footer-form form button {
	background-color: #353535;
}

.h5-footer .bixol-footer-widget .bixol-footer-address ul li {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.h5-footer .bixol-footer-widget .bixol-footer-address ul li i {
	color: #9f1d85;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}

.h5-footer .footer-copyright {
	background-color: #1b1b1b;
}

.h5-footer .footer-copyright p {
	color: #c2d5e7;
}

.h5-footer .footer-copyright p a {
	color: #9f1d85;
}


/************ Home6 Footer ***************/

.h6-footer {
	background-color: #000000;
	padding-top: 75px;
}

.h6-footer .bixol-footer-widget .footer-logo {
	width: 229px;
	display: inline-block;
	margin-bottom: 15px;
}

.h6-footer .bixol-footer-widget h4 {
	margin-bottom: 30px;
	position: relative;
}

.h6-footer .bixol-footer-widget h4::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #ffd532;
}

.h6-footer .bixol-footer-widget p {
	color: #101820;
}

.h6-footer .bixol-footer-widget .bixol-footer-address ul li {
	color: #000000;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.h6-footer .bixol-footer-widget .bixol-footer-address ul li i {
	color: #101820;
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
	transform: rotateY(180deg);
    margin-top: 5px;
}

.h6-footer .bixol-footer-widget .latest-blog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.h6-footer .bixol-footer-widget .latest-blog+.latest-blog {
	margin-top: 20px;
}

.h6-footer .bixol-footer-widget .latest-blog .thumb-wrapper .thumb {
	overflow: hidden;
	border-radius: 4px;
}

.h6-footer .bixol-footer-widget .latest-blog .thumb-wrapper .thumb img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	width: 100px;
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content {
	margin-left: 15px;
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content h6 {
	font-size: 16px;
	color: #101820;
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content .blog-meta {
	margin-top: 10px;
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content .blog-meta span {
	color: #101820;
	font-size: 10px;
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content .blog-meta span i {
	margin-right: 6px;
}

.h6-footer .bixol-footer-widget .latest-blog .blog-content .blog-meta span+span {
	margin-left: 10px;
}

.h6-footer .bixol-footer-widget .latest-blog:hover .thumb img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.h6-footer .bixol-footer-widget .bixol-footer-form form input[type="email"] {
	background-color: #26346a;
}

.h6-footer .bixol-footer-widget .bixol-footer-form form button {
	background-color: #ffd532;
	color: #001c8f;
}

.h6-footer .bixol-footer-widget .bixol-footer-social a {
	background-color: #ffffff;
	color: #101820;
	font-size: 18px;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	margin-right: 6px;
}


/********** Footer Style 7 **********/

.footer-style-7 {
	background-color: #00061e;
}

.footer-style-7 .bixol-footer-widget h4 span {
	color: #ffce00;
}

.footer-style-7 .bixol-footer-widget p {
	color: #bdbdbd;
}

.footer-style-7 .bixol-footer-widget .bixol-footer-form form button {
	background-color: #ffce00;
	color: #1e2331;
}

.footer-style-7 .bixol-footer-widget .bixol-footer-address ul li {
	color: #bdbdbd;
}

.footer-style-7 .bixol-footer-widget .bixol-footer-address ul li i {
	color: #006ece;
}


/* Breadcrumb Section */

.bixol-breadcrumb {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 105px 0;
	position: relative;
	z-index: 1;
}

.bixol-breadcrumb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(3, 0, 20, 0.6);
	z-index: -1;
}

.bixol-breadcrumb .breadcrumb-object {
	position: absolute;
	top: 30px;
	right: 160px;
	width: 100px;
}
.bixol-breadcrumb .breadcrumb-object1{
	left: 160px;
    bottom: 30px;
    top: unset;
}
.bixol-breadcrumb .breadcrumb-content {
	text-align: center;
}

.bixol-breadcrumb .breadcrumb-content h2 {
	color: #FEE715;
	font-size:70px;
}

.bixol-breadcrumb .breadcrumb-content a {
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-breadcrumb .breadcrumb-content a:hover {
	color: #FEE715;
}

.bixol-breadcrumb .breadcrumb-content span {
	color: #FEE715;
}

.btn {
	font-size: 15px;
	font-weight: 700;
	color: #101820;
	padding: 0 20px;
	line-height: 48px;
	-webkit-transition: all 240ms linear 0ms;
	-khtml-transition: all 240ms linear 0ms;
	-moz-transition: all 240ms linear 0ms;
	-ms-transition: all 240ms linear 0ms;
	-o-transition: all 240ms linear 0ms;
	transition: all 240ms linear 0ms;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	overflow: hidden !important;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	border: none;
	background-color: #ab078e;
	z-index: 1;
	-webkit-box-shadow: none !important;
	-khtml-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-ms-box-shadow: none !important;
	-o-box-shadow: none !important;
	box-shadow: none !important;
}

.btn:hover {
	outline: medium none;
	text-decoration: none;
	color: #101820;
	background-color: #9f1d85;
}

.btn:hover:after {
	-webkit-animation: btn_shine 1.2s ease;
	animation: btn_shine 1.2s ease;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.elementor a.btn {
	-webkit-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
	-khtml-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
	-moz-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
	-ms-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
	-o-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
	box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
}

.btn .ct-align-icon-left i {
	margin-right: 6px;
	font-size: 20px;
}

.btn .ct-align-icon-right {
	float: right;
}

.btn .ct-align-icon-right i {
	margin-left: 12px;
}

.btn i.space-left {
	margin-left: 12px;
}

.btn i.space-right {
	margin-right: 12px;
}

.btn.icon-right .icon-abs {
	right: 8px;
}

.btn.icon-left .icon-abs {
	left: 8px;
}

.btn.btn-plus {
	padding-right: 58px;
}

.btn.btn-plus .icon-abs,
.btn.btn-plus .ct-align-icon-right,
.btn.btn-plus .ct-align-icon-left {
	-webkit-transition: all 240ms linear 0ms;
	-khtml-transition: all 240ms linear 0ms;
	-moz-transition: all 240ms linear 0ms;
	-ms-transition: all 240ms linear 0ms;
	-o-transition: all 240ms linear 0ms;
	transition: all 240ms linear 0ms;
	font-size: 20px;
	font-weight: 500;
	height: 32px;
	width: 32px;
	background-color: #9f1d85;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	border-radius: 3px;
	line-height: 32px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	overflow: hidden;
}

.btn.btn-plus .icon-abs i,
.btn.btn-plus .ct-align-icon-right i,
.btn.btn-plus .ct-align-icon-left i {
	margin: 0;
}

.btn.btn-plus .icon-abs i.flaticon-plus,
.btn.btn-plus .ct-align-icon-right i.flaticon-plus,
.btn.btn-plus .ct-align-icon-left i.flaticon-plus {
	font-size: 16px;
}

.btn.btn-plus.icon-left,
.btn.btn-plus.ct-align-icon-left {
	padding-right: 20px;
	padding-left: 58px;
}

.btn.btn-plus:hover {
	background-color: #9f1d85;
	color: #101820;
}

.btn.btn-plus:hover .icon-abs,
.btn.btn-plus:hover .ct-align-icon-right,
.btn.btn-plus:hover .ct-align-icon-left {
	background-color: #ab078e;
	color: #101820;
}

.btn.btn-plus:hover .icon-abs:before,
.btn.btn-plus:hover .ct-align-icon-right:before,
.btn.btn-plus:hover .ct-align-icon-left:before {
	-o-animation: toRightFromLeft 0.3s forwards;
	-ms-animation: toRightFromLeft 0.3s forwards;
	-webkit-animation: toRightFromLeft 0.3s forwards;
	animation: toRightFromLeft 0.3s forwards;
}

.btn.btn-plus-primary {
	background-color: #9f1d85;
	color: #101820;
}

.btn.btn-plus-primary .icon-abs {
	background-color: #ab078e;
	color: #101820;
}

.btn.btn-plus-primary:hover,
.btn.btn-plus-primary:focus {
	background-color: #ab078e;
	color: #101820;
}

.btn.btn-plus-primary:hover .icon-abs,
.btn.btn-plus-primary:focus .icon-abs {
	background-color: #9f1d85;
	color: #101820;
}

.btn.btn-plus-round {
	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
}

.btn.btn-plus-round .icon-abs,
.btn.btn-plus-round .ct-align-icon-right,
.btn.btn-plus-round .ct-align-icon-left {
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
}

.btn.btn-secondary:hover {
	-webkit-transform: translateY(-3px);
	-khtml-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}

.btn.btn-four {
	background-color: #2593d5;
}

.btn.btn-four:hover {
	-webkit-transform: translateY(-4px);
	-khtml-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}

.btn.btn-primary {
	background-color: #FEE715;
	color: #101820;
	line-height: 52px;
	-webkit-box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
	-khtml-box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
	-moz-box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
	-ms-box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
	-o-box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
	box-shadow: 0 8px 7px rgba(2, 21, 78, 0.17) !important;
}

.btn.btn-primary .space-left {
	margin-left: 8px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
	background-color: #101820;
	color: #FEE715;
}

.btn.btn-primary-normal {
	background-color: #9f1d85;
}

.btn.btn-primary-normal:hover,
.btn.btn-primary-normal:focus {
	background-color: #ab078e;
}

.btn.btn-slider {
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	padding-left: 23px;
	padding-right: 63px;
	line-height: 56px;
	font-size: 16px;
	background-color: #8cd102;
}

.btn.btn-slider i {
	right: 13px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-khtml-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	position: absolute;
	width: 29px;
	height: 29px;
	line-height: 29px;
	background-color: #101820;
	color: #8cd102;
	font-size: 18px;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	margin: 0;
}

.btn.btn-slider:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transition: transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: -webkit-transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1), -webkit-transform 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	background-color: #000;
	z-index: -1;
}

.btn.btn-slider:after {
	display: none;
}

.btn.btn-slider:hover i {
	color: #000;
}

.btn.btn-slider:hover:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

.btn.btn-slider.btn-slider-dark {
	background-color: #000;
}

.btn.btn-slider.btn-slider-dark i {
	color: #000;
}

.btn.btn-slider.btn-slider-dark:before {
	background-color: #8cd102;
}

.btn.btn-slider.btn-slider-dark:hover i {
	color: #8cd102;
}

.btn.btn-animate1 {
	background-color: #9f1d85;
	-webkit-transition: all 0.3s;
	-khtml-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.btn.btn-animate1:before,
.btn.btn-animate1:after {
	content: '';
	-webkit-transform: skewX(0deg);
	-ms-transform: skewX(0deg);
	transform: skewX(0deg);
	left: 0 !important;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: none;
	position: absolute;
	top: auto;
	bottom: 100%;
	-webkit-transition: transform 0.3s;
	-khtml-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	-ms-transition: transform 0.3s;
	-o-transition: transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	-webkit-border-radius: inherit;
	-khtml-border-radius: inherit;
	-moz-border-radius: inherit;
	-ms-border-radius: inherit;
	-o-border-radius: inherit;
	border-radius: inherit;
	z-index: -1;
}

.btn.btn-animate1:before {
	background-color: #285cfa;
}

.btn.btn-animate1:after {
	background-color: #ab078e;
}

.btn.btn-animate1:hover,
.btn.btn-animate1:focus {
	background-color: #9f1d85;
}

.btn.btn-animate1:hover:before,
.btn.btn-animate1:focus:before,
.btn.btn-animate1:hover:after,
.btn.btn-animate1:focus:after {
	transform: skewX(0deg) translate3d(0, 100%, 0);
	-webkit-transform: skewX(0deg) translate3d(0, 100%, 0);
}

.btn.btn-animate1:hover:after,
.btn.btn-animate1:focus:after {
	-webkit-transition-delay: 0.175s;
	-o-transition-delay: 0.175s;
	transition-delay: 0.175s;
}

.ct-button-layout1 i,
.ct-button-layout1 svg {
	position: relative;
}

.ct-button-layout1 .btn {
	line-height: 51px;
}

.ct-button-layout1 .btn.btn-label {
	line-height: 1;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: left;
	border-radius: 76px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 500;
	padding: 18px 28px 18px 24px;
}

.ct-button-layout1 .btn.btn-label label {
	display: block;
	line-height: 1;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: #101820;
}

.ct-button-layout1 .btn.btn-label i {
	font-weight: normal;
	font-size: 28px;
	display: inline-block;
}

.ct-button-layout1 .btn.btn-label i.flaticonv2-phone-call {
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}

.ct-button-layout1 .btn.btn-label .ct-align-icon-left i {
	margin-right: 10px;
}

.ct-button-layout1 .btn.btn-plus .ct-align-icon-right,
.ct-button-layout1 .btn.btn-plus .ct-align-icon-left {
	height: 34px;
	width: 34px;
}

.ct-button-layout1 .btn.btn-plus .ct-align-icon-left {
	left: 8px;
}

.ct-button-layout1 .btn.btn-plus .ct-align-icon-right {
	right: 8px;
}

.ct-button-layout1 .btn.btn-plus.icon-ps-left {
	padding-left: 60px;
	padding-right: 22px;
}

.ct-button-layout1 .btn.btn-plus.icon-ps-right {
	padding-left: 22px;
	padding-right: 60px;
}

.ct-button-layout1 .btn.btn-plus:hover .ct-button-icon {
	background-color: #ab078e;
	color: #101820;
}

.ct-icon-slider i {
	margin-right: 8px;
}

.revslider-initialised {
	margin-bottom: 0 !important;
}

.revslider-initialised .rs-layer cite {
	font-style: normal;
	color: #4a74f0 !important;
}

.revslider-initialised .rs-layer b.h6-title-slider {
	font-weight: inherit;
	color: #8cd102;
}

.revslider-initialised .letter-10 {
	letter-spacing: -0.01em !important;
}

.revslider-initialised .letter-25 {
	letter-spacing: -0.025em !important;
}

.revslider-initialised .letter-20 {
	letter-spacing: -0.02em !important;
}

.revslider-initialised .ct-slider-line {
	display: inline-block;
	padding-left: 78px;
	position: relative;
}

.revslider-initialised .ct-slider-line:before {
	content: '';
	width: 64px;
	height: 3px;
	background-color: #9f1d85;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-khtml-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

@media screen and (min-width: 992px) {
	.revslider-initialised .btn.btn-plus {
		line-height: 60px;
	}
	.revslider-initialised .btn.btn-plus.icon-right {
		padding-left: 24px;
		padding-right: 68px;
	}
	.revslider-initialised .btn.btn-plus.icon-right .icon-abs {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}

.revslider-initialised .btn.btn-icon-slider1 {
	line-height: 54px;
	-webkit-border-radius: 54px;
	-khtml-border-radius: 54px;
	-moz-border-radius: 54px;
	-ms-border-radius: 54px;
	-o-border-radius: 54px;
	border-radius: 54px;
	padding-left: 28px;
	padding-right: 54px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
}

.revslider-initialised .btn.btn-icon-slider1 i {
	width: 34px;
	height: 34px;
	background-color: #101820;
	line-height: 34px;
	border-radius: 34px;
	position: absolute;
	top: 10px;
	right: 10px;
	color: #000;
	font-size: 15px;
}

@media screen and (max-width: 767px) {
	.revslider-initialised .btn.btn-slider {
		padding-right: 56px;
		padding-left: 20px;
	}
}

.revslider-initialised .rev-btn .space-left {
	margin-left: 8px;
}

.revslider-initialised .btn-slider-shadow {
	-webkit-box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
	-khtml-box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
	-moz-box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
	-ms-box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
	-o-box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
	box-shadow: 0 9px 21px rgba(0, 0, 0, 0.22);
}

.revslider-initialised .shap-slider-bottom {
	-ms-transform: skew(-29deg) !important;
	transform: skew(-29deg) !important;
	-webkit-transform: skew(-29deg) !important;
	-ms-transform-origin: left bottom !important;
	transform-origin: left bottom !important;
	-webkit-transform-origin: left bottom !important;
}

.revslider-initialised .title-box-shadow {
	text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
	-webkit-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
	-ms-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
	-o-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
}

.revslider-initialised .arrow-hidden {
	opacity: 0 !important;
	visibility: hidden !important;
}

.revslider-initialised .tp-leftarrow.custom,
.revslider-initialised .tp-rightarrow.custom {
	width: 54px !important;
	height: 54px !important;
	-webkit-border-radius: 0px !important;
	-khtml-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	border-radius: 0px !important;
	background-color: #101820 !important;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	opacity: 1 !important;
}

.revslider-initialised .tp-leftarrow.custom:before,
.revslider-initialised .tp-rightarrow.custom:before {
	font-size: 19px !important;
	color: #FEE715 !important;
	font-family: "Flaticon" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	-webkit-transform: translate(-50%, -50%) !important;
	-khtml-transform: translate(-50%, -50%) !important;
	-moz-transform: translate(-50%, -50%) !important;
	-ms-transform: translate(-50%, -50%) !important;
	-o-transform: translate(-50%, -50%) !important;
	transform: translate(-50%, -50%) !important;
	font-weight: 400 !important;
}

.revslider-initialised .tp-leftarrow.custom:hover,
.revslider-initialised .tp-rightarrow.custom:hover {
	background-color: #FEE715 !important;
}

.revslider-initialised .tp-leftarrow.custom:hover:before,
.revslider-initialised .tp-rightarrow.custom:hover:before {
	color: #101820 !important;
}

@media screen and (max-width: 1400px) {
	.revslider-initialised .tp-leftarrow.custom,
	.revslider-initialised .tp-rightarrow.custom {
		width: 44px !important;
		height: 44px !important;
	}
	.revslider-initialised .tp-leftarrow.custom:before,
	.revslider-initialised .tp-rightarrow.custom:before {
		font-size: 16px !important;
	}
}

@media screen and (max-width: 767px) {
	.revslider-initialised .tp-leftarrow.custom,
	.revslider-initialised .tp-rightarrow.custom {
		display: none !important;
	}
}

.revslider-initialised .tp-leftarrow.custom:before {
	content: '\f118' !important;
	-webkit-transform: translate(-50%, -50%) scaleX(-1) !important;
	-khtml-transform: translate(-50%, -50%) scaleX(-1) !important;
	-moz-transform: translate(-50%, -50%) scaleX(-1) !important;
	-ms-transform: translate(-50%, -50%) scaleX(-1) !important;
	-o-transform: translate(-50%, -50%) scaleX(-1) !important;
	transform: translate(-50%, -50%) scaleX(-1) !important;
}

.revslider-initialised .tp-rightarrow.custom:before {
	content: '\f118' !important;
}

.revslider-initialised .bixol-bullet-number .tp-bullet {
	width: 34px;
	height: 34px;
	font-size: 16px;
	font-weight: 700;
	color: #FEE715;
	line-height: 34px;
	text-align: center;
	-webkit-border-radius: 34px;
	-khtml-border-radius: 34px;
	-moz-border-radius: 34px;
	-ms-border-radius: 34px;
	-o-border-radius: 34px;
	border-radius: 34px;
	font-family: 'Poppins', sans-serif;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	background-color: rgba(255, 255, 255, 0.45) !important;
}

@media screen and (max-width: 1400px) {
	.revslider-initialised .bixol-bullet-number .tp-bullet {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}

.revslider-initialised .bixol-bullet-number .tp-bullet.selected {
	color: #101820;
	background-color: #ab078e !important;
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(1):before {
	content: '01';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(2):before {
	content: '02';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(3):before {
	content: '03';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(4):before {
	content: '04';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(5):before {
	content: '05';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(6):before {
	content: '06';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(7):before {
	content: '07';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(8):before {
	content: '08';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(9):before {
	content: '09';
}

.revslider-initialised .bixol-bullet-number .tp-bullet:nth-child(10):before {
	content: '10';
}

@media screen and (max-width: 1400px) {
	.revslider-initialised .bixol-bullet-number.nav-pos-hor-leftnav-pos-ver-centernav-dir-vertical {
		left: -15px !important;
	}
}

.revslider-initialised .bixol-bullet-round-one .tp-bullet {
	width: 18px;
	height: 18px;
	background-color: #9f1d85 !important;
	-webkit-border-radius: 18px;
	-khtml-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	border-radius: 18px;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.revslider-initialised .bixol-bullet-round-one .tp-bullet:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 18px;
	-khtml-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	border-radius: 18px;
	-webkit-box-shadow: 0 0 0 6px #101820;
	-khtml-box-shadow: 0 0 0 6px #101820;
	-moz-box-shadow: 0 0 0 6px #101820;
	-ms-box-shadow: 0 0 0 6px #101820;
	-o-box-shadow: 0 0 0 6px #101820;
	box-shadow: 0 0 0 6px #101820;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.revslider-initialised .bixol-bullet-round-one .tp-bullet.selected:before {
	-webkit-box-shadow: 0 0 0 6px #101820;
	-khtml-box-shadow: 0 0 0 6px #101820;
	-moz-box-shadow: 0 0 0 6px #101820;
	-ms-box-shadow: 0 0 0 6px #101820;
	-o-box-shadow: 0 0 0 6px #101820;
	box-shadow: 0 0 0 6px #101820;
}

.revslider-initialised .bixol-bullet-round-one .tp-bullet:not(.selected) {
	-webkit-transform: scale(0.8);
	-khtml-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

.revslider-initialised .bixol-bullet-round-one .tp-bullet:not(.selected):before {
	opacity: 0;
}

.revslider-initialised .bixol-bullet-round-two .tp-bullet {
	width: 9px;
	height: 9px;
	background-color: #000 !important;
	-webkit-border-radius: 9px;
	-khtml-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
	border-radius: 9px;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.revslider-initialised .bixol-bullet-round-two .tp-bullet:before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: 19px;
	height: 19px;
	border: 3px solid #000;
	-webkit-border-radius: 19px;
	-khtml-border-radius: 19px;
	-moz-border-radius: 19px;
	-ms-border-radius: 19px;
	-o-border-radius: 19px;
	border-radius: 19px;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	opacity: 0;
	-webkit-transform: translate(1.2);
	-khtml-transform: translate(1.2);
	-moz-transform: translate(1.2);
	-ms-transform: translate(1.2);
	-o-transform: translate(1.2);
	transform: translate(1.2);
}

.revslider-initialised .bixol-bullet-round-two .tp-bullet.selected {
	background-color: #8cd102 !important;
}

.revslider-initialised .bixol-bullet-round-two .tp-bullet.selected:before {
	opacity: 1;
	-webkit-transform: translate(1);
	-khtml-transform: translate(1);
	-moz-transform: translate(1);
	-ms-transform: translate(1);
	-o-transform: translate(1);
	transform: translate(1);
}

.revslider-initialised .bixol-bullet-round-three .tp-bullet {
	width: 29px;
	height: 3px;
	background-color: #bdbfc9 !important;
	-webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.revslider-initialised .bixol-bullet-round-three .tp-bullet.selected {
	background-color: #ab078e !important;
}

@media screen and (max-width: 1260px) {
	.revslider-initialised .bixol-bullet-number,
	.revslider-initialised .bixol-bullet-round-one,
	.revslider-initialised .bixol-bullet-round-two {
		display: none;
	}
}

.revslider-initialised .ct-video-shortcode .ct-video-item {
	border: none;
}

.revslider-initialised .ct-video-button {
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.18);
	font-size: 18px;
}

@media screen and (max-width: 991px) {
	.revslider-initialised .ct-video-button {
		width: 60px;
		height: 60px;
		font-size: 16px;
	}
}

.revslider-initialised .ct-video-button.video-primary {
	height: 57px;
	width: 57px;
	background-color: #9f1d85;
	-webkit-border-radius: 57px;
	-khtml-border-radius: 57px;
	-moz-border-radius: 57px;
	-ms-border-radius: 57px;
	-o-border-radius: 57px;
	border-radius: 57px;
	text-align: center;
	line-height: 57px;
	display: inline-block;
	color: #101820;
	font-size: 16px;
}

.revslider-initialised .ct-video-button.border-effect:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.63);
	border-radius: 50%;
	animation: pulse-border2 1500ms ease-out infinite;
	-webkit-animation: pulse-border2 1500ms ease-out infinite;
	z-index: -2;
}

.revslider-initialised .ct-video-button.border-effect:after {
	display: block;
	content: '';
	background-color: inherit;
	background-image: inherit;
	-webkit-border-radius: inherit;
	-khtml-border-radius: inherit;
	-moz-border-radius: inherit;
	-ms-border-radius: inherit;
	-o-border-radius: inherit;
	border-radius: inherit;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.revslider-initialised .ct-video-button.border-effect:hover:before,
.revslider-initialised .ct-video-button.border-effect:focus:before {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}

.revslider-initialised .ct-video-button.style2 {
	border: 3px solid #101820;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	-khtml-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	-ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	-o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: static;
	-webkit-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
}

.revslider-initialised .ct-video-button.style2:before {
	display: none;
}

.revslider-initialised .ct-video-button.style2:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 7, 36, 0.67);
	background-image: none;
}

.revslider-initialised .ct-video-button.style2 i {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.revslider-initialised .ct-video-item.ct-style2 {
	width: 56px;
	height: 56px;
	z-index: 1;
}

.revslider-initialised .ct-video-item.ct-style2:before {
	content: '';
	height: 72px;
	width: 36px;
	-webkit-border-radius: 72px 0 0 72px;
	-khtml-border-radius: 72px 0 0 72px;
	-moz-border-radius: 72px 0 0 72px;
	-ms-border-radius: 72px 0 0 72px;
	-o-border-radius: 72px 0 0 72px;
	border-radius: 72px 0 0 72px;
	position: absolute;
	top: -8px;
	left: -8px;
	background-color: #9f1d85;
	z-index: -1;
}

.revslider-initialised .nav-number {
	-webkit-transform: rotate(-450deg);
	-khtml-transform: rotate(-450deg);
	-moz-transform: rotate(-450deg);
	-ms-transform: rotate(-450deg);
	-o-transform: rotate(-450deg);
	transform: rotate(-450deg);
	display: inline-block;
	position: relative;
}

.revslider-initialised .nav-number:before {
	content: '';
	width: 132px;
	height: 1px;
	background-color: #e2e2e2;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-khtml-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	right: 100%;
	margin-right: 20px;
}

.revslider-initialised .nav-number span {
	color: #ab078e;
}

.ct-video-button.img-active {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.ct-video-button.style1 {
	height: 44px;
	width: 44px;
	background-color: rgba(5, 27, 93, 0.78);
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	color: #101820;
	text-align: center;
	line-height: 44px;
	-webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	-khtml-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	-moz-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	-ms-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	-o-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
	font-size: 15px;
}

.ct-video-button.style1:hover {
	background-color: rgba(0, 124, 251, 0.78);
}

.ct-video-button.style2 {
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background-color: #101820;
	font-size: 18px;
	color: #FEE715;
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	z-index: 1;
}

.ct-video-button.style2:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.63);
	border-radius: 50%;
	animation: pulse-border2 1500ms ease-out infinite;
	-webkit-animation: pulse-border2 1500ms ease-out infinite;
	z-index: -2;
}

.ct-video-button.style2:hover:before,
.ct-video-button.style2:focus:before {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}

.ct-video-button.style3 {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #001c8f;
	font-size: 17px;
	color: #101820;
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	z-index: 1;
}

.ct-video-button.style3:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 28, 143, 0.6);
	border-radius: 50%;
	animation: pulse-border2 1500ms ease-out infinite;
	-webkit-animation: pulse-border2 1500ms ease-out infinite;
	z-index: -2;
}

.ct-video-button.style3:hover:before,
.ct-video-button.style3:focus:before {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}

.ct-video-button.slider-style1 {
	height: 50px;
	width: 50px;
	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	background-color: #101820;
	display: inline-block;
	color: #FEE715;
	text-align: center;
	font-size: 15px;
	position: relative;
	-webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
	-khtml-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
	-moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
	-ms-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
	-o-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
	box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.24);
}

.ct-video-button.slider-style1 * {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.ct-video-button.slider-style1:hover {
	background-color: #9f1d85;
	color: #101820;
	-webkit-box-shadow: none;
	-khtml-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

.ct-video-player .ct-video-box {
	position: relative;
}

.ct-video-player .ct-video-holder {
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.ct-video-player .ct-video-holder:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(8, 38, 128, 0.1);
	position: absolute;
}

.ct-video-player.meta-active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media screen and (max-width: 575px) {
	.ct-video-player.meta-active {
		display: block;
	}
}

.ct-video-player.meta-active .ct-video-box {
	width: 150px;
	min-width: 150px;
	margin-right: 24px;
}

@media screen and (max-width: 575px) {
	.ct-video-player.meta-active .ct-video-box {
		margin-right: 0;
		width: 100%;
		margin-bottom: 24px;
	}
}

.ct-video-player .ct-video-meta h4 {
	margin-top: 13px;
	margin-bottom: 7px;
	font-size: 16px;
}

@media screen and (max-width: 1199px) {
	.ct-video-player .ct-video-meta h4 {
		margin-top: 0;
	}
}

.ct-video-player .ct-video-meta p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 24px;
}

@media screen and (max-width: 1199px) {
	.ct-video-player .ct-video-meta p {
		font-size: 14px;
	}
}

.ct-video-player .ct-video-meta .btn {
	margin-top: 11px;
	line-height: 46px;
	padding: 0 24px;
}

.ct-video-player.btn-video-style3 .ct-video-button {
	left: 7px;
	bottom: 20%;
	top: auto;
	-webkit-transform: translate(0, 0);
	-khtml-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.ct-video-player.btn-video-style3 .ct-video-holder:before {
	display: none;
}

.ct-video-player.btn-video-style3 .ct-video-holder img {
	border-radius: 530px;
}

.ct-history-carousel1 .item--title {
	font-size: 30px;
	line-height: 1.3333;
	margin-bottom: 19px;
	font-weight: 600;
	padding: 0 10%;
}

.ct-video-shortcode .ct-video-item {
	border: 10px solid #101820;
	position: relative;
}

.ct-video-shortcode .ct-video-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: inline-block;
	width: 56px;
	height: 56px;
	background-color: #9f1d85;
	-webkit-border-radius: 56px;
	-khtml-border-radius: 56px;
	-moz-border-radius: 56px;
	-ms-border-radius: 56px;
	-o-border-radius: 56px;
	border-radius: 56px;
	line-height: 56px;
	text-align: center;
	color: #101820;
	font-size: 16px;
}

#ct-loadding {
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 999999;
	top: 0;
	left: 0;
	-webkit-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	background-color: #101820;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.loading-infinity {
	width: 120px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loading-infinity div {
	top: 0;
	left: 50%;
	width: 70px;
	height: 70px;
	-webkit-animation: ctLoadingrotate 6.9s linear infinite;
	animation: ctLoadingrotate 6.9s linear infinite;
	position: absolute;
}

.loading-infinity div span {
	left: -10px;
	top: 50%;
	margin: -10px 0 0;
	width: 20px;
	height: 20px;
	display: block;
	background: #9f1d85;
	-webkit-box-shadow: 2px 2px 8px #9f1d85;
	box-shadow: 2px 2px 8px #9f1d85;
	border-radius: 50%;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-animation: ctLoadingmove 6.9s linear infinite;
	animation: ctLoadingmove 6.9s linear infinite;
	position: absolute;
}

.loading-infinity div span:before {
	-webkit-animation: ctLoadingdrop1 .8s linear infinite;
	animation: ctLoadingdrop1 .8s linear infinite;
}

.loading-infinity div span:after {
	-webkit-animation: ctLoadingdrop2 .8s linear infinite .4s;
	animation: ctLoadingdrop2 .8s linear infinite .4s;
}

.loading-infinity div span:before,
.loading-infinity div span:after {
	content: '';
	position: absolute;
	display: block;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	background: inherit;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

.loading-infinity div:nth-child(2) {
	-webkit-animation-delay: -2.3s;
	animation-delay: -2.3s;
}

.loading-infinity div:nth-child(2) span {
	-webkit-animation-delay: -2.3s;
	animation-delay: -2.3s;
}

.loading-infinity div:nth-child(3) {
	-webkit-animation-delay: -4.6s;
	animation-delay: -4.6s;
}

.loading-infinity div:nth-child(3) span {
	-webkit-animation-delay: -4.6s;
	animation-delay: -4.6s;
}


/* Theme Default */


/****************************************** Padding ********************
**********************************************************************/

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-120 {
	padding-top: 120px;
}

.pt-150 {
	padding-top: 150px;
}

.pt-250 {
	padding-top: 250px;
}

.pt-300 {
	padding-top: 300px;
}

.pt-350 {
	padding-top: 350px;
}

@media (max-width: 767.98px) {
	.pt-sm-100 {
		padding-top: 100px;
	}
}

@media (max-width: 991.98px) {
	.pt-md-100 {
		padding-top: 100px;
	}
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pb-150 {
	padding-bottom: 150px;
}

.pb-250 {
	padding-bottom: 250px;
}


/****************************************** Margin ********************
**********************************************************************/

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-350 {
	margin-top: 350px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}


/************ Container ***************/

.container {
	max-width: 1200px;
}


/***************** Common Button Style ******************/

.scrolltop-btn {
	position: fixed;
	bottom: 85px;
	right: 30px;
	z-index: 10;
	width: 40px;
	height: 40px;
	background-color: #FEE715;
	color: #101820;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.scrolltop-btn:hover {
	color: #101820;
}

/*.scrolltop-btn.visible {*/
/*	right: 25px;*/
/*}*/

.bixol-primary-btn {
	padding: 0 8px 0 16px;
	background-color: #ab078e;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 14px;
	border: 0;
	border-radius: 3px;
	height: 55px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 1;
}

.bixol-primary-btn span {
	padding: 6px 10px;
	background-color: #22d3ee;
	display: inline-block;
	border: none;
	color: #101820;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	overflow: hidden;
}

.bixol-primary-btn::before {
	content: '';
	position: absolute;
	width: 60px;
	height: 100%;
	left: -70px;
	top: 0;
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
	background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
	z-index: -1;
}

.bixol-primary-btn:hover {
	color: #101820;
	background-color: #073ad3e1;
}

.bixol-primary-btn:hover span i {
	-webkit-animation: 0.5s movingright;
	animation: 0.5s movingright;
}

.bixol-primary-btn:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.bixol-readmore-btn {
	padding: 10px 15px;
	background-color: #FEE715;
	color: #000000;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 15px;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
	z-index: 1;
	overflow: hidden;
	vertical-align: middle;
}

.bixol-readmore-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-readmore-btn:hover {
	background-color: #101820;
	color: #ffffff;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.bixol-readmore-btn:hover::before {
	left: 100%;
}


/*********** Common Title Area *****************/

.bixol-title-area span.bixol-subtitle {
	font-weight: 500;
	font-size: 18px;
	position: relative;
	margin-left: 35px;
}

.bixol-title-area span.bixol-subtitle::before {
	content: '';
	width: 25px;
	height: 25px;
	background-image: url(../images/home1/star-object.png);
	position: absolute;
	left: -35px;
	background-size: 25px;
	background-repeat: no-repeat;
}

.bixol-title-area h3 {
	margin-top: 10px;
}

.bixol-title-area h3 span {
	font-weight: 400;
	display: block;
}

.bixol-title-area p {
	margin-top: 20px;
}

@media (max-width: 767.98px) {
	.bixol-title-area h3 {
		display: inline-block;
	}
	.bixol-title-area h3 span {
		display: inline;
	}
}

.title-style-2 span.bixol-subtitle {
	font-weight: 500;
	font-size: 18px;
	position: relative;
	color: #9f1d85;
}

.title-style-2 h3 {
	margin-top: 10px;
	color: #000000;
	text-transform: initial;
}

.title-style-2 p {
	margin-top: 20px;
	color: #666666;
}

.title-style-3 span.bixol-subtitle {
	font-weight: 500;
	font-size: 18px;
	position: relative;
	display: inline-block;
	color: #000000;
}

.title-style-3 span.bixol-subtitle::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: -38px;
	width: 30px;
	height: 2px;
	background-color: #9f1d85;
}

.title-style-3 span.bixol-subtitle.before-line::before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: -38px;
	width: 30px;
	height: 2px;
	background-color: #9f1d85;
}

.title-style-3 h3 {
	color: #000000;
	text-transform: initial;
	margin-top: 10px;
}

.title-style-4 span.bixol-subtitle {
	font-weight: 500;
	font-size: 18px;
	position: relative;
	display: inline-block;
	color: #628dfb;
	text-transform: uppercase;
}

.title-style-4 span.bixol-subtitle::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: -38px;
	width: 30px;
	height: 0px;
	border-bottom: 2px dashed #628dfb;
}

.title-style-4 span.bixol-subtitle.before-line::before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: -38px;
	width: 30px;
	height: 0px;
	border-bottom: 2px dashed #628dfb;
}

.title-style-4 h2 {
	color: #FEE715;
	margin-top: 10px;
}

.title-style-4 p {
	margin-top: 25px;
	color: #5a6079;
}

.title-style-5 span.sub-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: #0022a0;
}

.title-style-5 h3 {
	margin-top: 10px;
	text-transform: initial;
	color: #000000;
}

.title-style-5 p {
	margin-top: 25px;
	color: #666666;
}

.home5-primary-btn {
	padding: 18px 30px;
	background-color: #9f1d85;
	color: #101820;
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	vertical-align: middle;
}

.home5-primary-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -38px;
	width: 30px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.home5-primary-btn span {
	display: inline-block;
	margin-left: 5px;
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}

.home5-primary-btn:hover {
	color: #101820;
	background-color: #494949;
}

.home5-primary-btn:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.home6-primary-btn a {
	width: 150px;
	height: 50px;
	background-color: #6457c3;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 15px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	border-radius: 3px;
	text-transform: capitalize;
	overflow: hidden;
	vertical-align: middle;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-primary-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	width: 50px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.342)), to(rgba(255, 255, 255, 0.301)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.home6-primary-btn a:hover {
	color: #101820;
	background-color: #4b7cf9;
}

.home6-primary-btn a:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}
.bggg{
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 34px;
}

/* Author CSS */

body {
	margin: 0;
	color: #000000;
	font-family: "Rubik", sans-serif;
	font-size: 16px;
}

h1 {
	color: #101820;
	/*font-size: 70px;*/
	padding-bottom: 14px;
}

h2 {
	color: #FEE715;
	/*font-size: 48px;*/
}

h3 {
	color: #FEE715;
	/*font-size: 36px;*/
}

h4 {
	color: #FEE715;
	/*font-size: 25px;*/
}

h5 {
	color: #FEE715;
	/*font-size: 22px;*/
}

h6 {
	color: #FEE715;
	/*font-size: 18px;*/
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1.2;
	margin-bottom: 0;
}

p {
	color: #000000;
	margin-bottom: 0;
}

.h4-headline h1,
.h4-headline h2,
.h4-headline h3,
.h4-headline h4,
.h4-headline h5,
.h4-headline h6 {
	color: #000000;
	text-transform: initial;
}

.h6-headline h1,
.h6-headline h2,
.h6-headline h3,
.h6-headline h4,
.h6-headline h5,
.h6-headline h6 {
	color: #FEE715;
}

.h6-pera-txt p {
	color: #5a6079;
}

.h4-pera-txt p {
	color: #666666;
}

.h5-pera-txt p {
	color: #555555;
}

.h7-headline h1,
.h7-headline h2,
.h7-headline h3,
.h7-headline h4,
.h7-headline h5,
.h7-headline h6 {
	color: #000000;
	text-transform: initial;
}

.h7-pera-txt p {
	color: #666666;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.slick-slide {
	outline: none;
}

button {
	cursor: pointer;
}

img {
	width: 100%;
	height: auto;
	display: block;
}

section {
	overflow: hidden;
}

i {
	display: inline-block;
}


/********************* Custom Animations *********************/

@-webkit-keyframes ct_fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes ct_fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes ct_fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes ct_fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes movingright {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	40% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
		opacity: 0;
	}
	60% {
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes movingright {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	40% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
		opacity: 0;
	}
	60% {
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes movingleft {
	0% {
		-webkit-transform: tranlateX(-30px);
		transform: tranlateX(-30px);
	}
	100% {
		-webkit-transform: tranlateX(0);
		transform: tranlateX(0);
	}
}

@keyframes movingleft {
	0% {
		-webkit-transform: tranlateX(-30px);
		transform: tranlateX(-30px);
	}
	100% {
		-webkit-transform: tranlateX(0);
		transform: tranlateX(0);
	}
}

@-webkit-keyframes shine {
	from {
		left: -100px;
	}
	to {
		left: 120%;
	}
}

@keyframes shine {
	from {
		left: -100px;
	}
	to {
		left: 120%;
	}
}

@-webkit-keyframes ripple_animation {
	0% {
		-webkit-box-shadow: 0 0 0 0 #001c8f;
		box-shadow: 0 0 0 0 #001c8f;
	}
	50% {
		-webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
		box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
		box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
	}
}

@keyframes ripple_animation {
	0% {
		-webkit-box-shadow: 0 0 0 0 #001c8f;
		box-shadow: 0 0 0 0 #001c8f;
	}
	50% {
		-webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
		box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
		box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
	}
}

@-webkit-keyframes ctLoadingdrop1 {
	100% {
		-webkit-transform: translate(32px, 10px) scale(0);
		transform: translate(32px, 10px) scale(0);
	}
}

@keyframes ctLoadingdrop1 {
	100% {
		-webkit-transform: translate(32px, 10px) scale(0);
		transform: translate(32px, 10px) scale(0);
	}
}

@-webkit-keyframes loading-run {
	0% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}

@keyframes loading-run {
	0% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100% {
		-webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}

@-webkit-keyframes loading-round {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loading-round {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loading-round {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes ctLoadingrotate {
	50% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		margin-left: 0;
	}
	50.0001%,
	100% {
		margin-left: -70px;
	}
}

@keyframes ctLoadingrotate {
	50% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		margin-left: 0;
	}
	50.0001%,
	100% {
		margin-left: -70px;
	}
}

@-webkit-keyframes ctLoadingmove {
	0%,
	50% {
		left: -10px;
	}
	25% {
		background: #ab078e;
	}
	75% {
		background: #85cc02;
	}
	50.0001%,
	100% {
		left: auto;
		right: -10px;
	}
}

@keyframes ctLoadingmove {
	0%,
	50% {
		left: -10px;
	}
	25% {
		background: #ab078e;
	}
	75% {
		background: #85cc02;
	}
	50.0001%,
	100% {
		left: auto;
		right: -10px;
	}
}

@keyframes ctLoadingdrop1 {
	100% {
		-webkit-transform: translate(32px, 10px) scale(0);
		transform: translate(32px, 10px) scale(0);
	}
}


/*********** Hero Slider **************/

.hero-slider-1 {
	margin-top: -30px;
}

@media (max-width: 1199.98px) {
	.hero-slider-1 {
		margin-top: 0;
	}
}


/************ Services Section ***************/

.bixol-services .bixol-service-wrapper .bixol-single-item {
	position: relative;
	padding: 25px;
	padding-left: 35px;
}

.bixol-services .bixol-service-wrapper .bixol-single-item.sr-item {
	margin-bottom: 100px;
}

@media (max-width: 767.98px) {
	.bixol-services .bixol-service-wrapper .bixol-single-item.sr-item {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-icon-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-content {
	margin-top: 25px;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-content h6 {
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	display: inline-block;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-content h6::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: #22d3ee;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-content p {
	margin-top: 20px;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-content a {
	margin-top: 20px;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover {
	position: absolute;
	top: -110px;
	left: 0;
	width: 100%;
	background-color: #dee5eb;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .img-wrapper {
	position: relative;
	overflow: hidden;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .img-wrapper img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .img-wrapper .img-shadow {
	position: absolute;
	width: 130%;
	height: 120%;
	background-image: url(../images/services/shadow.png);
	bottom: -60px;
	left: -80px;
	z-index: 1;
	background-size: cover;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .img-wrapper::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 110%;
	height: 80px;
	-webkit-clip-path: polygon(50% 0%, 0 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0 100%, 100% 100%);
	background-color: #101820;
	z-index: 1;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .img-wrapper::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 110%;
	height: 80px;
	-webkit-clip-path: polygon(50% 0%, 0 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0 100%, 100% 100%);
	background-color: #dee5eb;
	z-index: 2;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .icon-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: -120px;
	position: relative;
	z-index: 15;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .icon-wrapper .bixol-img {
	border-radius: 50%;
	background-color: #101820;
	padding: 20px;
	position: relative;
	z-index: 2;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .icon-wrapper .bixol-icon-shadow {
	position: absolute;
	display: inline-block;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #ab078e;
	z-index: -1;
}

.bixol-services .bixol-service-wrapper .bixol-single-item .bixol-sr-hover .bixol-sr-content {
	padding: 25px;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover::after {
	opacity: 0;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover .bixol-sr-hover {
	opacity: 1;
	visibility: visible;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover .bixol-sr-hover .icon-wrapper {
	-webkit-animation: 0.5s ct_fadeInDown forwards;
	animation: 0.5s ct_fadeInDown forwards;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover .bixol-sr-hover .bixol-sr-content h6 {
	-webkit-animation: 0.3s ct_fadeInUp forwards;
	animation: 0.3s ct_fadeInUp forwards;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover .bixol-sr-hover .bixol-sr-content p {
	-webkit-animation: 0.6s ct_fadeInUp forwards;
	animation: 0.6s ct_fadeInUp forwards;
}

.bixol-services .bixol-service-wrapper .bixol-single-item:hover .bixol-sr-hover .bixol-sr-content a.bixol-readmore-btn {
	-webkit-animation: 1s ct_fadeInUp forwards;
	animation: 1s ct_fadeInUp forwards;
}

.bixol-services .bixol-service-wrapper .bixol-single-item.slick-active::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 50%;
	border: 1px dashed #eaeaea;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-services .bixol-service-wrapper .slick-list {
	padding: 100px 0px 80px 0;
}

.bixol-services .bixol-service-wrapper .slick-arrow {
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: none;
	background-color: #eaeaea;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #FEE715;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
}

.bixol-services .bixol-service-wrapper .slick-arrow:hover {
	background-color: #FEE715;
	color: #101820;
}

.bixol-services .bixol-service-wrapper .slick-arrow.next-arrow {
	left: auto;
	right: 0px;
}

.bixol-services:hover .slick-arrow {
	opacity: 1;
}

.bixol-services:hover .slick-arrow.prev-arrow {
	left: -80px;
}

@media (max-width: 767.98px) {
	.bixol-services:hover .slick-arrow.prev-arrow {
		left: -40px;
	}
}

.bixol-services:hover .slick-arrow.next-arrow {
	right: -40px;
}

@media (max-width: 767.98px) {
	.bixol-services .bixol-service-slider {
		max-width: 400px;
		display: block;
		margin: 0 auto;
	}
	.bixol-services .bixol-service-slider .bixol-single-item {
		text-align: center;
	}
	.bixol-services .bixol-service-slider .bixol-single-item .bixol-sr-content h6::after {
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}


/********** About Section ****************/



.bixol-about-section .bixol-about-bg {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50%;
	z-index: -1;
}

.bixol-about-section .bixol-about-left {
	text-align: center;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper {
	display: inline-block;
	position: relative;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #ab078e;
	width: calc(100% + 30px);
	height: calc(100% + 20px);
	border-radius: 50%;
	z-index: 1;
	display: none;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: calc(100% + 5px);
	height: calc(100% + 0px);
	background-color: #101820;
	border-radius: 50%;
	z-index: 1;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content {
	position: absolute;
	background-color: #ab078e;
	color: #101820;
	top: -85px;
	right: 0;
	width: 105px;
	height: 105px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 15;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 15px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid #ab078e;
	-webkit-transform: skew(-30deg);
	-ms-transform: skew(-30deg);
	transform: skew(-30deg);
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content .icon-wrapper i {
	color: #22d3ee;
	font-size: 30px;
	line-height: 0;
	display: inline-block;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content .content-bottom {
	text-align: center;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content .content-bottom span {
	font-size: 12px;
}

.bixol-about-section .bixol-about-left .bixol-slider-wrapper .bixol-slider-content .content-bottom h6 {
	color: #101820;
}

.bixol-about-section .bixol-about-left .bixol-compare-slider {
	width: 450px;
	/* height: 350px; */
	border-radius: 6px;
	overflow: hidden;
	display: inline-block;
	position: relative;
	z-index: 10;
	/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.bixol-about-section .bixol-about-right {
	padding-left: 0px;
}

.bixol-about-section .bixol-about-right .devider {
	display: block;
	margin: 30px 0;
}

.bixol-about-section .bixol-about-right .devider hr {
	border-top: 2px solid #eaeaea;
	opacity: 0.50;
	margin: 0;
}

.bixol-about-section .bixol-about-right .bixol-about-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bixol-about-section .bixol-about-right .bixol-about-content .video-wrapper .video-thumb {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
}

.bixol-about-section .bixol-about-right .bixol-about-content .video-wrapper .video-thumb a {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-color: rgba(4, 49, 184, 0.7);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
	text-decoration: none;
	border: 2px solid #101820;
}

.bixol-about-section .bixol-about-right .bixol-about-content .video-content .title {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #FEE715;
	margin-bottom: 6px;
	display: block;
}

.bixol-about-section .bixol-about-right .bixol-about-content .video-content p {
	font-size: 15px;
}

@media (max-width: 575.98px) {
	.bixol-about-section .bixol-about-right .bixol-about-content {
		display: block;
		text-align: center;
	}
	.bixol-about-section .bixol-about-right .bixol-about-content .video-wrapper .video-thumb img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
	.bixol-about-section .bixol-about-right .bixol-about-content .video-content {
		margin-top: 20px;
		text-align: center;
	}
}

@media (max-width: 991.98px) {
	.bixol-about-section {
		padding-top: 100px;
	}
	.bixol-about-section .bixol-about-bg {
		display: none;
	}
	.bixol-about-section .bixol-about-left {
		text-align: center;
	}
	.bixol-about-section .bixol-about-right {
		padding-left: 0;
		margin-top: 60px;
		max-width: 600px;
		text-align: center;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.bixol-about-section .bixol-about-right .bixol-about-content .video-content {
		text-align: left;
	}
}

@media (max-width: 575.98px) {
	.bixol-about-section .bixol-about-right .bixol-about-content {
		display: block;
		text-align: center;
	}
	.bixol-about-section .bixol-about-right .bixol-about-content .video-wrapper .video-thumb img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
	.bixol-about-section .bixol-about-right .bixol-about-content .video-content {
		margin-top: 20px;
		text-align: center;
	}
}


/************* Service Section **********************/

.bixol-service-section .bixol-services .bixol-service-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span {
	width: 80px;
	height: 80px;
	color: #101820;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	font-size: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span::before {
	content: '';
	position: absolute;
	left: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #7b82c2;
	z-index: 2;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span i {
	background-color: #FEE715;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span i img{
	width: 40px;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-service-content {
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	padding: 35px 35px 35px 50px;
	margin-left: -50px;
	position: relative;
	z-index: 1;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-service-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-service-section .bixol-services .bixol-service-item .bixol-service-content h5 {
	margin-bottom: 6px;
}

.bixol-service-section .bixol-services .bixol-service-item:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.bixol-service-section .bixol-services .bixol-service-item:hover .bixol-icon-wrapper span i {
	background-color: #FEE715;
	color: #FEE715;
}

.bixol-service-section .bixol-services .bixol-service-item:hover .bixol-service-content::before {
	opacity: 1;
}

.bixol-service-section .bixol-services .bixol-service-item:hover .bixol-service-content h5 {
	color: #101820;
}

.bixol-service-section .bixol-services .bixol-service-item:hover .bixol-service-content p {
	color: #101820;
}

.bixol-service-section .bixol-service-middle .img-wrapper {
	position: relative;
}

.bixol-service-section .bixol-service-middle .img-wrapper .banner-content {
	width: 120px;
	height: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 10px;
	position: absolute;
	top: -30px;
	left: 50px;
	text-align: center;
}

.bixol-service-section .bixol-service-middle .img-wrapper .banner-content h3 {
	color: #101820;
	margin-bottom: 5px;
	position: relative;
	z-index: 10;
}

.bixol-service-section .bixol-service-middle .img-wrapper .banner-content p {
	color: #101820;
	font-size: 13px;
	line-height: 1;
	position: relative;
	z-index: 10;
}

.bixol-service-section .bixol-service-middle .img-wrapper .banner-content .banner-svg-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ab078e;
	-webkit-clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	z-index: 2;
	border-radius: 15px 25px 25px 15px;
}

.bixol-service-section .bixol-service-middle .img-wrapper .banner-content .banner-svg-2 {
	position: absolute;
	top: 8px;
	left: -8px;
	width: 100%;
	height: 100%;
	background-color: #22d3ee;
	-webkit-clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	z-index: 1;
	border-radius: 15px 25px 25px 15px;
}

@media (max-width: 991.98px) {
	.bixol-service-section .bixol-services .bixol-service-item {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
	.bixol-service-section .bixol-service-middle {
		text-align: center;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.bixol-service-section .bixol-service-middle .img-wrapper {
		width: auto;
		max-width: 100%;
		display: inline-block;
	}
}


/******************** Counterup Section ***********************/

.bixol-ct-section .bixol-counter-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	position: relative;
	margin-bottom: 30px;
}

.bixol-ct-section .bixol-counter-column .bixol-icon-wrapper span {
	font-size: 48px;
	display: inline-block;
}

.bixol-ct-section .bixol-counter-column .bixol-ct-content h3 sup {
	color: #22d3ee;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.bixol-ct-section .bixol-counter-column .bixol-ct-content .subtitle {
	font-weight: 500;
}

.bixol-ct-section .bixol-counter-column.bx-col-line::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 90%;
	border: 1px dashed #eaeaea;
}

@media (max-width: 991.98px) {
	.bixol-ct-section .bixol-counter-column.bx-col-line::after {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.bixol-ct-section .bixol-counter-column {
		display: block;
		text-align: center;
	}
}


/****************************** Team Section ***********************/

.bixol-team-area {
	background-color: #e3e8ed;
}

.bixol-team-area .bixol-title-area {
	padding-left: 60px;
}

.bixol-team-area .bixol-team-container .bixol-team-single {
	background-color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	overflow: hidden;
	margin-bottom: 50px;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-img-wrapper {
	position: relative;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-img-wrapper::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% + 20px);
	height: 40px;
	-webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
	background-color: #22d3ee;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-img-wrapper::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: calc(100% + 20px);
	height: 40px;
	-webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
	background-color: #101820;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-team-content {
	padding: 20px;
	position: relative;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-team-content .team-social-link {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background-color: #ab078e;
	color: #101820;
	text-align: center;
	line-height: 50px;
	border-radius: 0 0 25px 25px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-team-content .bixol-team-social-items {
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: 90px;
	border-radius: 25px 25px 0 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-team-content .bixol-team-social-items a {
	color: #101820;
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #ab078e;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-team-area .bixol-team-container .bixol-team-single .bixol-team-content .bixol-team-social-items a:hover {
	padding-left: 10px;
}

.bixol-team-area .bixol-team-container .bixol-team-single:hover {
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
}

.bixol-team-area .bixol-team-container .bixol-team-single:hover .bixol-team-content .team-social-link {
	background-color: #101820;
	color: #22d3ee;
}

.bixol-team-area .bixol-team-container .bixol-team-single:hover .bixol-team-content .bixol-team-social-items {
	bottom: 70px;
	opacity: 1;
	visibility: visible;
}

.bixol-team-area .bixol-team-container .slick-list {
	padding: 60px 0;
	margin: 0 -15px;
}

.bixol-team-area .bixol-team-container .slick-list .slick-slide {
	margin: 0 15px;
}

.bixol-team-area .bixol-team-container .slick-dots {
	position: absolute;
	bottom: -20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.bixol-team-area .bixol-team-container .slick-dots li {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid transparent;
	padding: 3px;
	text-align: center;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-team-area .bixol-team-container .slick-dots li button {
	font-size: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background-color: #8b90a7;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-team-area .bixol-team-container .slick-dots li.slick-active {
	border: 2px solid #ab078e;
}

.bixol-team-area .bixol-team-container .slick-dots li.slick-active button {
	background-color: #ab078e;
}

@media (max-width: 575.98px) {
	.bixol-team-area .bixol-title-area {
		text-align: center;
		padding-left: 0;
	}
	.bixol-team-area .bixol-team-container {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}


/****************************** Case Study ***************************/

.bixol-case-study .bixol-ct-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-repeat: no-repeat;
	padding: 10px 0 40px 0;
}

.bixol-case-study .bixol-ct-left .ct-title {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 150px;
}

.bixol-case-study .bixol-ct-left .ct-title sup {
	color: #ab078e;
}

.bixol-case-study .bixol-ct-left .ct-subtitle {
	color: #FEE715;
	font-size: 22px;
	display: inline-block;
	margin-top: -35px;
}

.bixol-case-study .bixol-ct-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 80px;
}

.bixol-case-study .bixol-ct-right .bixol-pt-item {
	padding: 60px 35px;
}

.bixol-case-study .bixol-ct-right .bixol-pt-item img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-case-study .bixol-ct-right .bixol-pt-item:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.bixol-case-study .bixol-ct-right .grid-item {
	border-right: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}

.bixol-case-study .bixol-ct-right .grid-item:nth-child(3) {
	border-right: 0;
}

.bixol-case-study .bixol-ct-right .grid-item:nth-child(4),
.bixol-case-study .bixol-ct-right .grid-item:nth-child(5),
.bixol-case-study .bixol-ct-right .grid-item:nth-child(6) {
	border-bottom: 0;
}

.bixol-case-study .bixol-ct-right .grid-item:nth-child(6) {
	border-right: 0;
}

@media (max-width: 991.98px) {
	.bixol-case-study .bixol-ct-right .bixol-pt-item {
		text-align: center;
	}
	.bixol-case-study .bixol-ct-right .bixol-pt-item img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
	.bixol-case-study .bixol-ct-right .grid-item:nth-child(3) {
		border-right: 1px solid #eaeaea;
	}
	.bixol-case-study .bixol-ct-right .grid-item:nth-child(4) {
		border-bottom: 1px solid #eaeaea;
	}
}

@media (max-width: 575.98px) {
	.bixol-case-study .bixol-ct-right .grid-item {
		border-bottom: 0 !important;
		border-right: 0 !important;
	}
	.bixol-case-study .bixol-ct-right .grid-item+.grid-item {
		border-top: 1px solid #eaeaea;
	}
}


/************************* Get In Tauch ************************/

.bixol-gta-area {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0;
	background-size: 120%;
	background-position: -400px center;
}

.bixol-gta-area .bixol-help-desk-content {
	width: 100%;
	height: 100%;
	position: relative;
}

.bixol-gta-area .bixol-gt-left {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
}

.bixol-gta-area .bixol-gt-left::before {
	content: '';
	position: absolute;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background-color: #e0e2e8;
	z-index: -1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.bixol-gta-area .bixol-gt-left .bixol-help-desk {
	width: 140px;
	height: 140px;
	background-color: #101820;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.bixol-gta-area .bixol-gt-left .bixol-help-desk .desk-subtitle {
	font-size: 12px;
	color: #3465f8;
}

.bixol-gta-area .bixol-gt-left .bixol-help-desk .desk-title {
	font-size: 24px;
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	margin-top: -3px;
}

.bixol-gta-area .bixol-gt-left .bixol-help-desk .desk-call {
	font-size: 36px;
	line-height: 30px;
	font-weight: 700;
	color: #22d3ee;
	margin-top: -3px;
}

.bixol-gta-area .bixol-gt-right {
	padding-right: 60px;
	position: relative;
	max-width: 600px;
}

.bixol-gta-area .bixol-gt-right h4 {
	margin-bottom: 20px;
	color: #101820;
	text-transform: initial;
	position: relative;
	display: inline-block;
}

.bixol-gta-area .bixol-gt-right h4::after {
	content: '';
	position: absolute;
	right: -80px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 60px;
	height: 2px;
	background-color: #22d3ee;
}

.bixol-gta-area .bixol-gt-right form {
	width: 100%;
}

.bixol-gta-area .bixol-gt-right form input[type="text"] {
	width: 48%;
	border: 0;
	padding: 12px 20px;
	background-color: #1a386d;
}

.bixol-gta-area .bixol-gt-right form input[type="text"]::-webkit-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="text"]:-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="text"]::-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="text"]::placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="tel"] {
	width: 48%;
	border: 0;
	padding: 12px 20px;
	background-color: #1a386d;
	font-size: 15px;
	float: right;
}

.bixol-gta-area .bixol-gt-right form input[type="tel"]::-webkit-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="tel"]:-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="tel"]::-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form input[type="tel"]::placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form .bx-form-select {
	width: 100%;
	margin-top: 20px;
}

.bixol-gta-area .bixol-gt-right form .bx-form-select select {
	width: 100%;
	padding: 12px 20px;
	background-color: #1a386d;
	border: 0;
	color: #c3c4e1;
	font-size: 15px;
}

.bixol-gta-area .bixol-gt-right form textarea {
	width: 100%;
	margin-top: 20px;
	border: 0;
	background-color: #1a386d;
	padding: 12px 20px;
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form textarea::-webkit-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form textarea:-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form textarea::-ms-input-placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form textarea::placeholder {
	color: #c3c4e1;
}

.bixol-gta-area .bixol-gt-right form .submit-btn {
	margin-top: 30px;
}

@media (max-width: 1930px) {
	.bixol-gta-area {
		background-size: 130%;
	}
}

@media (max-width: 1800px) {
	.bixol-gta-area {
		background-size: 140%;
	}
}

@media (max-width: 1600px) {
	.bixol-gta-area {
		background-size: 145%;
	}
}

@media (max-width: 1400px) {
	.bixol-gta-area {
		background-size: cover;
		background-position: -800px 0;
	}
}

@media (max-width: 991.98px) {
	.bixol-gta-area {
		background-size: cover;
		background-position: right center;
	}
	.bixol-gta-area .bixol-gt-right {
		padding-right: 0;
		max-width: 100%;
	}
}

@media (max-width: 575.98px) {
	.bixol-gta-area .bixol-gt-right form input[type='text'],
	.bixol-gta-area .bixol-gt-right form input[type='tel'] {
		width: 100%;
		margin-bottom: 20px;
	}
}


/************************ Pricing Table *******************/

.bixol-pricing-table .pricing-table-area {
	margin-top: 30px;
}

.bixol-pricing-table .pricing-table-area .pricing-nav {
	text-align: center;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul {
	display: inline-block;
	border-bottom: 0;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li {
	display: inline-block;
	margin-right: 35px;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a {
	color: #FEE715;
	font-size: 18px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	text-transform: capitalize;
	position: relative;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -26px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #eaeaea;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -19px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a.active {
	color: #0e0e0e;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a.active::before {
	border-color: #22d3ee;
}

.bixol-pricing-table .pricing-table-area .pricing-nav ul li a.active::after {
	background-color: #22d3ee;
}

.bixol-pricing-table .pricing-table-area .pricing-nav .offer-price {
	background-color: #def8fc;
	color: #FEE715;
	font-size: 12px;
	padding: 6px 10px;
	display: inline-block;
	margin-left: -15px;
	font-weight: 700;
	text-transform: capitalize;
}

.bixol-pricing-table .pricing-table-area .pricing-content {
	margin-top: 30px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	padding: 45px 20px 30px 20px;
	text-align: center;
	margin-bottom: 30px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top .pc-top-title {
	font-size: 14px;
	color: #22d3ee;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top h4 {
	margin-bottom: 3px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top .pc-subtitle {
	color: #666666;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-price {
	margin-top: 15px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper {
	margin-top: 10px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper img {
	width: 60px;
	display: inline-block;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list {
	margin-top: 5px;
	padding: 0 0px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list p {
	font-size: 13px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list span {
	font-weight: 700;
	font-size: 18px;
	margin-top: 8px;
	display: inline-block;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-btn a {
	padding: 10px 28px;
	background-color: #ab078e;
	color: #101820;
	font-size: 15px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	margin-top: 20px;
	display: inline-block;
	border-radius: 3px;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise {
	/* padding-top: 35px; */
	background-color: #ab078e;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-top h4 {
	color: #101820;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-top .pc-subtitle {
	color: #101820;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-price h2 {
	color: #101820;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-list p {
	color: #101820;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-list span {
	color: #101820;
}

.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column.best-choise .pc-btn a {
	background-color: #22d3ee;
}

@media (max-width: 767.98px) {
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column {
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}
}


/******************** Feedback Section ************************/

.bixol-feedback {
	padding: 60px 0 100px;
	background-size: cover;
	background-repeat: no-repeat;
}

.bixol-feedback .bixol-feedback-top {
	padding: 0 60px 0 100px;
}

@media (max-width: 991.98px) {
	.bixol-feedback .bixol-feedback-top {
		padding: 0;
		text-align: center;
	}
}

@media (max-width: 991.98px) {
	.bixol-feedback .bixol-feedback-top .bf-desc {
		width: 80%;
		margin: auto;
		margin-top: 20px;
	}
}

@media (max-width: 767.98px) {
	.bixol-feedback .bixol-feedback-top .bf-desc {
		width: 100%;
	}
}

.bixol-feedback .bixol-feedback-slider {
	margin-top: 60px;
}

.bixol-feedback .bixol-feedback-slider .feedback-column {
	position: relative;
	background-color: #fee715;
	padding: 40px 20px 50px 20px;
}

.bixol-feedback .bixol-feedback-slider .feedback-column::after {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	width: 60px;
	height: 60px;
	background-color: #fee715;
	z-index: 2;
	-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.bixol-feedback .bixol-feedback-slider .feedback-column .quote-icon {
	position: absolute;
	top: -65px;
	left: 20px;
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 160px;
	font-weight: bold;
	line-height: 0;
	letter-spacing: -13px;
	color: #adb0b4;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-rating {
	text-align: right;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-rating span {
	color: #ffc601;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 20px;
	position: absolute;
	bottom: -60px;
	left: 40px;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .client-thumb {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	position: relative;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .client-thumb img {
	border-radius: 50%;
	background-color: #101820;
	padding: 4px;
	position: relative;
	z-index: 2;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .client-thumb .svg-1 {
	fill: #dfe6e7;
	position: absolute;
	top: -10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .client-thumb .svg-2 {
	fill: #adb0b4;
	position: absolute;
	bottom: -10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .clients-name {
	padding-bottom: 5px;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .clients-name h6 {
	color: #3a4268;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.bixol-feedback .bixol-feedback-slider .feedback-column .feedback-client-info .clients-name span {
	color: #3a4268;
	font-size: 14px;
}

.bixol-feedback .bixol-feedback-slider .feedback-column:hover .quote-icon {
	color: #ab078e;
}

.bixol-feedback .bixol-feedback-slider .feedback-column:hover .feedback-client-info .client-thumb .svg-1 {
	fill: #22d3ee;
}

.bixol-feedback .bixol-feedback-slider .feedback-column:hover .feedback-client-info .client-thumb .svg-2 {
	fill: #ab078e;
}

.bixol-feedback .bixol-feedback-slider .slick-list {
	padding: 30px 0 100px 0;
	margin: 0 -15px;
}

.bixol-feedback .bixol-feedback-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.bixol-feedback .bixol-feedback-slider .slick-dots {
	position: absolute;
	bottom: -60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.bixol-feedback .bixol-feedback-slider .slick-dots li {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid transparent;
	padding: 3px;
	text-align: center;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-feedback .bixol-feedback-slider .slick-dots li button {
	font-size: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background-color: #8b90a7;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-feedback .bixol-feedback-slider .slick-dots li.slick-active {
	border: 2px solid #ab078e;
}

.bixol-feedback .bixol-feedback-slider .slick-dots li.slick-active button {
	background-color: #ab078e;
}

@media (max-width: 767.98px) {
	.bixol-feedback .bixol-feedback-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


/************************ Blog Area ******************************/

.bixol-blog-area .bixol-blog-top {
	padding: 0 60px;
	margin-bottom: 60px;
}

@media (max-width: 991.98px) {
	.bixol-blog-area .bixol-blog-top {
		padding: 0;
	}
	.bixol-blog-area .bixol-blog-top .bixol-title-area {
		text-align: center;
	}
}

@media (max-width: 991.98px) {
	.bixol-blog-area .bixol-blog-top .bf-desc {
		width: 80%;
		margin: auto;
		margin-top: 20px;
		text-align: center;
	}
}

@media (max-width: 767.98px) {
	.bixol-blog-area .bixol-blog-top .bf-desc {
		width: 100%;
	}
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	overflow: hidden;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper {
	position: relative;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper img {
	width: 270px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper img:hover {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper .bixol-blog-date {
	width: 65px;
	height: 65px;
	border-radius: 3px;
	background-color: #ab078e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 10px;
	text-align: center;
	position: absolute;
	top: 10px;
	left: 10px;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper .bixol-blog-date span {
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content {
	padding-right: 20px;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-category {
	display: inline-block;
	padding: 3px 6px;
	background-color: #ced4e6;
	font-weight: 500;
	text-transform: uppercase;
	color: #FEE715;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-blog-headline {
	margin-top: 20px;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-blog-headline h5 {
	text-transform: initial;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-blog-headline h5:hover {
	color: #22d3ee;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-blog-pera {
	margin-top: 20px;
}

.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-blog-content .bixol-blog-btn a {
	margin-top: 30px;
}

.bixol-blog-area .bixol-blog-slider .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.bixol-blog-area .bixol-blog-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.bixol-blog-area .bixol-blog-slider .slick-dots {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -50px;
}

.bixol-blog-area .bixol-blog-slider .slick-dots li {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid transparent;
	padding: 3px;
	text-align: center;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-blog-area .bixol-blog-slider .slick-dots li button {
	font-size: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background-color: #8b90a7;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.bixol-blog-area .bixol-blog-slider .slick-dots li.slick-active {
	border: 2px solid #ab078e;
}

.bixol-blog-area .bixol-blog-slider .slick-dots li.slick-active button {
	background-color: #ab078e;
}

@media (max-width: 1199.98px) {
	.bixol-blog-area .bixol-blog-slider {
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767.98px) {
	.bixol-blog-area .bixol-blog-slider {
		max-width: 500px;
	}
	.bixol-blog-area .bixol-blog-slider .bixol-single-blog {
		display: block;
		text-align: center;
		padding: 30px 30px;
	}
	.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper {
		margin-bottom: 20px;
	}
	.bixol-blog-area .bixol-blog-slider .bixol-single-blog .bixol-img-wrapper img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
}

.bixol-blog-area .bixol-blog-btn {
	display: inline-block;
}


/************************ Bixol Contact Info ***********************/

.bixol-contact-info .bixol-title-area {
	text-align: center;
}

.bixol-contact-info .bixol-contact-content {
	margin-top: 60px;
}

.bixol-contact-info .bixol-contact-content .bixol-contact-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #eaeaea;
	padding: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.bixol-contact-info .bixol-contact-content .bixol-contact-column .bixol-icon-wrapper i {
	font-size: 40px;
	color: #22d3ee;
}

.bixol-contact-info .bixol-contact-content .bixol-contact-column .column-content {
	margin-left: 20px;
}

.bixol-contact-info .bixol-contact-content .bixol-contact-column .column-content h5 {
	margin-bottom: 5px;
}

.bixol-contact-info .bixol-contact-content .bixol-contact-column:hover {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

@media (max-width: 767.98px) {
	.bixol-contact-info .bixol-contact-content .bixol-contact-column {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}
}


/******************* Google Map ****************/

.bixol-footer-top iframe {
	width: 100%;
	height: 275px;
}


/************ About Page *************/

.bixol-about-section .bixol-ab-left {
	text-align: center;
}

.bixol-about-section .bixol-ab-left .img-wrapper {
	position: relative;
	display: inline-block;
}

.bixol-about-section .bixol-ab-left .img-wrapper img {
	max-width: 100%;
	width: auto;
	display: inline-block;
}

.bixol-about-section .bixol-ab-left .img-wrapper .banner-content {
	width: 120px;
	height: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 10px;
	position: absolute;
	top: -30px;
	right: -50px;
	text-align: center;
}

.bixol-about-section .bixol-ab-left .img-wrapper .banner-content h3 {
	color: #101820;
	margin-bottom: 5px;
	position: relative;
	z-index: 10;
}

.bixol-about-section .bixol-ab-left .img-wrapper .banner-content p {
	color: #101820;
	font-size: 13px;
	line-height: 1;
	position: relative;
	z-index: 10;
}

.bixol-about-section .bixol-ab-left .img-wrapper .banner-content .banner-svg-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ab078e;
	-webkit-clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	z-index: 2;
	border-radius: 15px 25px 25px 15px;
}

.bixol-about-section .bixol-ab-left .img-wrapper .banner-content .banner-svg-2 {
	position: absolute;
	top: 8px;
	left: -8px;
	width: 100%;
	height: 100%;
	background-color: #22d3ee;
	-webkit-clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	clip-path: polygon(0 0, 100% 9%, 100% 95%, 0% 100%);
	z-index: 1;
	border-radius: 15px 25px 25px 15px;
}

@media (max-width: 575.98px) {
	.bixol-about-section .bixol-ab-left .img-wrapper .banner-content {
		right: 0;
	}
}

.ab-service-section {
	padding: 100px 0 120px 0;
	background-repeat: no-repeat;
	background-size: cover;
}

.ab-service-section .ab-service-top {
	padding: 0 60px;
}

@media (max-width: 991.98px) {
	.ab-service-section .ab-service-top .bf-desc {
		margin-top: 20px;
	}
}

@media (max-width: 767.98px) {
	.ab-service-section .ab-service-top {
		padding: 0;
		text-align: center;
	}
}

.ab-service-section .ab-service-slider .bixol-service-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-icon-wrapper span {
	width: 80px;
	height: 80px;
	color: #101820;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	font-size: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-icon-wrapper span::before {
	content: '';
	position: absolute;
	left: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #22d3ee;
	z-index: 2;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-icon-wrapper span i {
	background-color: #FEE715;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-service-content {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 35px 35px 35px 50px;
	margin-left: -50px;
	position: relative;
	z-index: 1;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-service-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/home1/sr-item-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.ab-service-section .ab-service-slider .bixol-service-item .bixol-service-content h5 {
	margin-bottom: 6px;
}

.ab-service-section .ab-service-slider .bixol-service-item:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.ab-service-section .ab-service-slider .bixol-service-item:hover .bixol-icon-wrapper span i {
	background-color: #101820;
	color: #FEE715;
}

.ab-service-section .ab-service-slider .bixol-service-item:hover .bixol-service-content::before {
	opacity: 1;
}

.ab-service-section .ab-service-slider .bixol-service-item:hover .bixol-service-content h5 {
	color: #101820;
}

.ab-service-section .ab-service-slider .bixol-service-item:hover .bixol-service-content p {
	color: #101820;
}

.ab-service-section .ab-service-slider .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.ab-service-section .ab-service-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.ab-service-section .ab-service-slider .slick-dots {
	position: absolute;
	bottom: -30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ab-service-section .ab-service-slider .slick-dots li {
	display: inline-block;
	margin-right: 6px;
}

.ab-service-section .ab-service-slider .slick-dots li button {
	width: 15px;
	height: 15px;
	font-size: 0;
	padding: 0;
	border-radius: 50%;
	background-color: #8b90a7;
	border: 1px solid transparent;
	padding: 5px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.ab-service-section .ab-service-slider .slick-dots li.slick-active button {
	width: 18px;
	height: 18px;
	background-color: #22d3ee;
	border: 1px solid #ab078e;
}

@media (max-width: 991.98px) {
	.ab-service-section .ab-service-slider {
		margin-top: 20px;
	}
}

@media (max-width: 767.98px) {
	.ab-service-section .ab-service-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


/************* History Section ****************/

.ab-history-section {
	position: relative;
	z-index: 1;
}

.ab-history-section .ab-history-left-img {
	position: absolute;
	bottom: 0;
	left: -20px;
	z-index: -1;
	width: 35%;
}

.ab-history-section .ab-history-top {
	padding: 0 60px;
}

.ab-history-section .ab-history-tab {
	margin-top: 60px;
}

.ab-history-section .ab-history-tab .tab-control {
	position: relative;
	text-align: center;
}

.ab-history-section .ab-history-tab .tab-control ul {
	display: inline-block;
	position: relative;
}

.ab-history-section .ab-history-tab .tab-control ul li {
	display: inline-block;
}

.ab-history-section .ab-history-tab .tab-control ul li a {
	position: relative;
	display: inline-block;
	color: #8f9ec9;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.ab-history-section .ab-history-tab .tab-control ul li a::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	border: 1px solid transparent;
	width: 15px;
	height: 15px;
	background-color: #8f9ec9;
}

.ab-history-section .ab-history-tab .tab-control ul li a.active {
	color: #FEE715;
}

.ab-history-section .ab-history-tab .tab-control ul li a.active::after {
	background-color: #22d3ee;
	border: 2px solid #FEE715;
}

.ab-history-section .ab-history-tab .tab-control ul li+li {
	margin-left: 140px;
}

.ab-history-section .ab-history-tab .tab-control .tab-devider {
	width: 65%;
	display: inline-block;
	z-index: -1;
	position: relative;
}

.ab-history-section .ab-history-tab .tab-control .tab-devider::after {
	content: '>';
	position: absolute;
	top: 50%;
	right: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
	color: #FEE715;
	font-weight: 700;
}

.ab-history-section .ab-history-tab .tab-control .tab-devider::before {
	content: '<';
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
	color: #FEE715;
	font-weight: 700;
}

.ab-history-section .ab-history-tab .tab-control .tab-devider hr {
	margin: 0;
	border-top: 2px solid #8f9ec9;
}

.ab-history-section .ab-history-tab .tab-content {
	padding: 0 60px;
	text-align: center;
	margin-top: 60px;
}

.ab-history-section .ab-history-tab .tab-content .history-content {
	padding: 0 60px;
}

.ab-history-section .ab-history-tab .tab-content .history-content h4 {
	font-weight: 500;
	margin-bottom: 20px;
}

.ab-history-section .ab-history-tab .tab-content .history-content p {
	width: 70%;
	display: inline-block;
}

@media (max-width: 991.98px) {
	.ab-history-section .ab-history-top .bf-desc {
		margin-top: 20px;
	}
	.ab-history-section .ab-history-tab .tab-control .tab-devider {
		width: 100%;
	}
}

@media (max-width: 767.98px) {
	.ab-history-section .ab-history-top {
		padding: 0 30px;
		text-align: center;
	}
	.ab-history-section .ab-history-left-img {
		display: none;
	}
	.ab-history-section .ab-history-tab .tab-control ul li+li {
		margin-left: 100px;
	}
	.ab-history-section .ab-history-tab .tab-content .tab-pane .history-content {
		padding: 0;
	}
	.ab-history-section .ab-history-tab .tab-content .tab-pane .history-content p {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.ab-history-section .ab-history-top {
		padding: 0;
	}
	.ab-history-section .ab-history-tab .tab-control ul li+li {
		margin-left: 40px;
	}
	.ab-history-section .ab-history-tab .tab-content {
		padding: 0;
	}
}


/********************** Service Slider v2 *************************/

.abv2-service-section {
	background-size: cover;
	background-repeat: no-repeat;
	height: 450px;
	overflow: visible;
}

.abv2-service-section .abv2-sr-slider {
	margin-top: 30px;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 30px 20px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .item-count {
	position: absolute;
	right: 20px;
	top: -15px;
	font-size: 80px;
	font-weight: 700;
	color: #f5f3f0;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .icon-wrapper span {
	width: 90px;
	height: 90px;
	background-color: #ab078e;
	border-radius: 50%;
	font-size: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item h5 {
	margin-top: 20px;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item p {
	margin-top: 20px;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item {
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px 20px;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	visibility: hidden;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -1;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #22d3ee;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item h5 {
	color: #101820;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item p {
	color: #101820;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item a {
	margin-top: 20px;
	display: inline-block;
	color: #22d3ee;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item a:hover {
	color: #ab078e;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item .abv2-hv-item .hv-item-count {
	position: absolute;
	right: 20px;
	bottom: 0;
	font-size: 60px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #101820;
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item:hover {
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.abv2-service-section .abv2-sr-slider .abv2-sr-item:hover .abv2-hv-item {
	top: 0;
	opacity: 1;
	visibility: visible;
}

.abv2-service-section .abv2-sr-slider .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.abv2-service-section .abv2-sr-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.abv2-service-section .abv2-sr-slider .slick-dots {
	position: absolute;
	bottom: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.abv2-service-section .abv2-sr-slider .slick-dots li {
	display: inline-block;
	margin-right: 6px;
}

.abv2-service-section .abv2-sr-slider .slick-dots li button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid transparent;
	background-color: #8b90a7;
	font-size: 0;
	padding: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-service-section .abv2-sr-slider .slick-dots li.slick-active button {
	width: 15px;
	height: 15px;
	border: 2px solid #ab078e;
	background-color: #22d3ee;
}

@media (max-width: 991.98px) {
	.abv2-service-section .title-top .bf-desc {
		margin-top: 20px;
	}
}

@media (max-width: 767.98px) {
	.abv2-service-section {
		height: auto;
		padding-bottom: 100px;
	}
	.abv2-service-section .title-top {
		text-align: center;
		padding: 0 30px;
	}
	.abv2-service-section .abv2-sr-slider {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575.98px) {
	.abv2-service-section .title-top {
		padding: 0;
	}
}


/*********************** About V2 Contact ****************/

.abv2-contact .abv2-contact-left .bixol-title-area {
	margin-bottom: 60px;
}

.abv2-contact .abv2-contact-left .abv2-contact-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 60px;
}

.abv2-contact .abv2-contact-left .abv2-contact-item .icon-wrapper span {
	font-size: 36px;
	color: #22d3ee;
}

.abv2-contact .abv2-contact-left .abv2-contact-item .contact-content h5 {
	margin-bottom: 11px;
}

.abv2-contact .abv2-contact-left .abv2-contact-item .contact-content span {
	margin-top: 4px;
	display: inline-block;
}

.abv2-contact .abv2-contact-right {
	padding-top: 40px;
}

.abv2-contact .abv2-contact-right form {
	width: 100%;
}

.abv2-contact .abv2-contact-right form input {
	width: 100%;
	padding: 12px 16px;
	border: none;
	background-color: #f9f9f8;
	font-size: 15px;
}

.abv2-contact .abv2-contact-right form .name-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.abv2-contact .abv2-contact-right form .name-area .fname {
	width: 50%;
}

.abv2-contact .abv2-contact-right form .name-area .lname {
	width: 50%;
}

.abv2-contact .abv2-contact-right form .info-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.abv2-contact .abv2-contact-right form .info-area .mail-address {
	width: 50%;
}

.abv2-contact .abv2-contact-right form .info-area .phone-number {
	width: 50%;
}

.abv2-contact .abv2-contact-right form .select-service {
	margin-bottom: 20px;
}

.abv2-contact .abv2-contact-right form .select-service select {
	width: 100%;
	padding: 12px 16px;
	background-color: #f9f9f8;
	border: 0;
	color: #3a4268;
}

.abv2-contact .abv2-contact-right form .message textarea {
	width: 100%;
	padding: 12px 16px;
	border: 0;
	background-color: #f9f9f8;
}

.abv2-contact .abv2-contact-right form .submit-btn {
	width: 100%;
	margin-top: 30px;
}

.abv2-contact .abv2-contact-right form .submit-btn button {
	display: block;
	width: 100%;
	border: 0;
	background-color: #0077f0;
	color: #101820;
	padding: 12px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	overflow: hidden;
}

.abv2-contact .abv2-contact-right form .submit-btn button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-contact .abv2-contact-right form .submit-btn button:hover {
	background-color: #ab078e;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.abv2-contact .abv2-contact-right form .submit-btn button:hover::before {
	left: 100%;
}

@media (max-width: 767.98px) {
	.abv2-contact.pt-sm-100 {
		padding-top: 100px;
	}
	.abv2-contact .abv2-contact-left .bixol-title-area {
		text-align: center;
		padding: 0 30px;
	}
}

@media (max-width: 575.98px) {
	.abv2-contact .abv2-contact-left .bixol-title-area {
		padding: 0;
	}
	.abv2-contact .abv2-contact-left .abv2-contact-item {
		display: block;
		text-align: center;
		max-width: 250px;
		margin-left: auto;
		margin-right: auto;
	}
}


/*********************************Abv2 Testimonial Section *************************/

.abv2-feedback-section {
	background-size: cover;
	background-repeat: no-repeat;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item {
	background-color: #101820;
	padding: 30px 20px 20px 20px;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(12, 12, 12, 0.1);
	box-shadow: 0px 0px 8px 0px rgba(12, 12, 12, 0.1);
	border-radius: 10px;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .quote-icon {
	position: absolute;
	right: 10px;
	top: -5px;
	font-size: 60px;
	line-height: 0;
	font-family: 'playfair display', sans-serif;
	color: #efefef;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .title span {
	font-weight: 500;
	color: #22d3ee;
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .clients-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .clients-info .img-wrapper span {
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	padding: 3px;
	border: 2px solid #0077f0;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .clients-info .img-wrapper span img {
	border-radius: 50%;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .clients-info .client-content h6 {
	font-size: 14px;
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	color: #010101;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item .clients-info .client-content span {
	color: #93959e;
	font-size: 14px;
	font-weight: 500;
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item:hover {
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
	-webkit-box-shadow: 0px 24px 35px 0px rgba(12, 12, 12, 0.2);
	box-shadow: 0px 24px 35px 0px rgba(12, 12, 12, 0.2);
}

.abv2-feedback-section .abv2-feedback-wrapper .single-item:hover .quote-icon {
	color: #8cd102;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-list {
	padding: 30px 0px;
	margin: 0 -10px;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-list .slick-slide {
	margin: 0 10px;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-dots {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -40px;
	display: inline-block;
	overflow: hidden;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-dots li {
	display: inline-block;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-dots li button {
	border: 0;
	font-size: 0;
	width: 150px;
	height: 15px;
	border-radius: 10px;
	background-color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.abv2-feedback-section .abv2-feedback-wrapper .slick-dots li.slick-active button {
	background-color: #9f1d85;
}

@media (max-width: 991.98px) {
	.abv2-feedback-section .bixol-title-area {
		margin-bottom: 20px;
	}
}

@media (max-width: 767.98px) {
	.abv2-feedback-section .bixol-title-area {
		text-align: center;
		padding: 0 30px;
	}
}

@media (max-width: 575.98px) {
	.abv2-feedback-section .bixol-title-area {
		padding: 0;
	}
	.abv2-feedback-section .abv2-feedback-wrapper {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
	.abv2-feedback-section .abv2-feedback-wrapper .slick-dots {
		bottom: -30px;
	}
	.abv2-feedback-section .abv2-feedback-wrapper .slick-dots li+li {
		margin-left: 6px;
	}
	.abv2-feedback-section .abv2-feedback-wrapper .slick-dots li button {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		padding: 0;
		background-color: #eaeaea;
	}
}


/********** Services Page ************/

.srv2-service-section .srv2-item {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	padding: 40px;
	text-align: center;
	border-radius: 6px;
	position: relative;
	margin-bottom: 50px;
}

.srv2-service-section .srv2-item .img-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: inline-block;
	border: 2px dashed #ab078e;
	overflow: hidden;
	padding: 15px;
}

.srv2-service-section .srv2-item .srv2-service-content h5 {
	margin-top: 20px;
	position: relative;
}

.srv2-service-section .srv2-item .srv2-service-content h5::after {
	content: '';
	width: 50px;
	height: 3px;
	background-color: #22d3ee;
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.srv2-service-section .srv2-item .srv2-service-content p {
	margin-top: 30px;
}

.srv2-service-section .srv2-item .srv2-hover-item {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) scale(0.9);
	-ms-transform: translateY(-50%) scale(0.9);
	transform: translateY(-50%) scale(0.9);
	padding: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.srv2-service-section .srv2-item .srv2-hover-item::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(6, 31, 104, 0.89);
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 6px;
}

.srv2-service-section .srv2-item .srv2-hover-item .img-wrapper {
	background-color: #22d3ee;
	border: 2px solid #22d3ee;
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content h5 {
	color: #101820;
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content p {
	color: #101820;
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn {
	margin-top: 20px;
	display: inline-block;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn i {
	color: #22d3ee;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn:hover {
	color: #ab078e;
	-webkit-transform: translateX(-2px);
	-ms-transform: translateX(-2px);
	transform: translateX(-2px);
}

.srv2-service-section .srv2-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn:hover i {
	color: #ab078e;
	-webkit-transform: translateX(3px);
	-ms-transform: translateX(3px);
	transform: translateX(3px);
}

.srv2-service-section .srv2-item:hover .srv2-hover-item {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(-50%) scale(1);
	-ms-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}

.srv2-service-section .srv2-item:hover .srv2-hover-item .img-wrapper {
	-webkit-animation: .3s ct_fadeInDown linear;
	animation: .3s ct_fadeInDown linear;
}

.srv2-service-section .srv2-item:hover .srv2-hover-item .srv2-service-content h5 {
	-webkit-animation: 0.5s ct_fadeInUp linear;
	animation: 0.5s ct_fadeInUp linear;
}

.srv2-service-section .srv2-item:hover .srv2-hover-item .srv2-service-content p {
	-webkit-animation: 0.7s ct_fadeInUp linear;
	animation: 0.7s ct_fadeInUp linear;
}

.srv2-service-section .srv2-item:hover .srv2-hover-item .srv2-service-content a {
	-webkit-animation: 1s ct_fadeInUp linear;
	animation: 1s ct_fadeInUp linear;
}

.srv2-feedback-area {
	background-size: cover;
	background-repeat: no-repeat;
}

.srv2-feedback-area .srv2-feedback-top {
	padding: 0 100px;
}

@media (max-width: 991.98px) {
	.srv2-feedback-area .srv2-feedback-top {
		padding: 0 30px;
		text-align: center;
	}
	.srv2-feedback-area .srv2-feedback-top .bf-desc {
		margin-top: 20px;
	}
}

@media (max-width: 575.98px) {
	.srv2-feedback-area .srv2-feedback-top {
		padding: 0;
	}
}

.srv2-feedback-area .srv2-feedback-wrapper {
	margin-top: 40px;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single {
	background-color: #101820;
	padding: 40px;
	padding-top: 45px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	border-radius: 10px;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	overflow: hidden;
	margin-bottom: 50px;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single::before {
	content: '';
	width: 0;
	height: 5px;
	background-color: #ab078e;
	border-radius: 25px 25px 0 0;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single .srv2-clients-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single .srv2-clients-info .clients-thumb span {
	width: 80px;
	height: 80px;
	display: inline-block;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#22d3ee), to(#101820));
	background-image: -webkit-linear-gradient(bottom, #22d3ee 0%, #101820 100%);
	background-image: -o-linear-gradient(bottom, #22d3ee 0%, #101820 100%);
	background-image: linear-gradient(0deg, #22d3ee 0%, #101820 100%);
	padding: 3px;
	border-radius: 50%;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single .srv2-clients-info .clients-thumb span img {
	border-radius: 50%;
	padding: 6px;
	background-color: #101820;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single .srv2-clients-info .clients-info span {
	color: #3a4268;
	font-weight: 500;
	margin-top: 3px;
	display: inline-block;
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single:hover {
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.srv2-feedback-area .srv2-feedback-wrapper .feedback-single:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-list .slick-slide {
	margin: 0 15px;
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-dots {
	position: absolute;
	bottom: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-dots li {
	display: inline-block;
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-dots li button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid transparent;
	padding: 0;
	font-size: 0;
	margin-right: 5px;
	background-color: #8b90a7;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.srv2-feedback-area .srv2-feedback-wrapper .slick-dots li.slick-active button {
	background-color: #22d3ee;
	border: 2px solid #ab078e;
	width: 15px;
	height: 15px;
}

@media (max-width: 767.98px) {
	.srv2-feedback-area .srv2-feedback-wrapper.srv2-feedback-slider {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}

.srv2-feedback-area .load-more-btn {
	text-align: center;
}

.srv2-feedback-area .load-more-btn a {
	padding: 10px 35px;
	display: inline-block;
	text-align: center;
	background-color: #ab078e;
	color: #101820;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	border-radius: 30px;
	font-size: 15px;
}


/******** Services V3 **************/

.sr3-service-section .bixol-title-area {
	text-align: center;
}

.sr3-service-section .bixol-title-area p {
	color: #8cd102;
}

.sr3-service-section .sr3-service-bottom {
	margin-top: 40px;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 40px 30px;
	padding-top: 50px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 50px;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .item-count {
	position: absolute;
	right: 20px;
	top: 0px;
	font-size: 80px;
	font-weight: 700;
	color: #f5f3f0;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .icon-wrapper span {
	width: 90px;
	height: 90px;
	background-color: #21bdfe;
	border-radius: 50%;
	font-size: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item h5 {
	margin-top: 20px;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item p {
	margin-top: 20px;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item {
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px 30px 40px 30px;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	visibility: hidden;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -1;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: #21bdfe;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item h5 {
	color: #101820;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item p {
	color: #101820;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item a {
	margin-top: 20px;
	display: inline-block;
	color: #1684fb;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item a:hover {
	color: #ab078e;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item .sr3-hv-item .hv-item-count {
	position: absolute;
	right: 20px;
	bottom: 0;
	font-size: 60px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #101820;
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item:hover {
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.sr3-service-section .sr3-service-bottom .sr3-sr-item:hover .sr3-hv-item {
	top: 0;
	opacity: 1;
	visibility: visible;
}

@media (max-width: 767.98px) {
	.sr3-service-section .sr3-service-bottom .sr3-sr-item {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.sr3-service-section .sr3-service-bottom .view-more-service {
	text-align: center;
}

.sr3-service-section .sr3-service-bottom .view-more-service p {
	font-weight: 500;
}

.sr3-service-section .sr3-service-bottom .view-more-service a {
	color: #0f80fb;
	position: relative;
}

.sr3-service-section .sr3-service-bottom .view-more-service a::before {
	content: '';
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	bottom: -2px;
	height: 1px;
	background-color: #0f80fb;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.sr3-service-section .sr3-service-bottom .view-more-service a:hover {
	color: #8cd102;
}

.sr3-service-section .sr3-service-bottom .view-more-service a:hover::before {
	background-color: #8cd102;
	width: 50%;
}

.sr3-counterup {
	background-size: cover;
	background-repeat: no-repeat;
}

.sr3-counterup .bixol-counter-column .bixol-icon-wrapper span {
	color: #8cd102;
}

.sr3-counterup .bixol-counter-column .bixol-ct-content h3 {
	color: #101820;
}

.sr3-counterup .bixol-counter-column .bixol-ct-content h3 span.plus {
	color: #9f1d85;
	font-size: 24px;
	margin-left: 5px;
}

.sr3-counterup .bixol-counter-column .bixol-ct-content span.subtitle {
	color: #101820;
	font-weight: 700;
}


/********************* Servies Details ******************************/

.service-details .sr-sidebar .sidebar-widget+.sidebar-widget {
	margin-top: 60px;
}

.service-details .sr-sidebar .sr-list-widget {
	position: relative;
	padding: 0;
}

.service-details .sr-sidebar .sr-list-widget::after {
	content: '';
	position: absolute;
	left: 00px;
	top: 0;
	width: 100%;
	height: 6px;
	background-color: #22d3ee;
}

.service-details .sr-sidebar .sr-list-widget .widget-title {
	padding: 30px 0;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li+li a {
	border-top: 1px solid #eaeaea;
	margin-top: 1px;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a {
	color: #ab078e;
	display: block;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 15px;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a::after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 0px;
	top: 15px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a.active {
	background-color: #ab078e;
	color: #101820;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a.active::after {
	right: 10px;
	opacity: 1;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a:hover {
	background-color: #ab078e;
	color: #101820;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li a:hover::after {
	right: 10px;
	opacity: 1;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li:first-child a {
	border-radius: 5px 5px 0 0;
}

.service-details .sr-sidebar .sr-list-widget .list-nav ul li:last-child a {
	border-radius: 0 0 5px 5px;
}

.service-details .sr-sidebar .sr-btn-widget {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 20px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.service-details .sr-sidebar .sr-btn-widget::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 21, 85, 0.6);
	z-index: -1;
}

.service-details .sr-sidebar .sr-btn-widget span {
	color: #22d3ee;
}

.service-details .sr-sidebar .sr-btn-widget h5 {
	color: #101820;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns {
	margin-top: 20px;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns a {
	width: 100%;
	display: block;
	background-color: #22d3ee;
	color: #101820;
	font-size: 15px;
	padding: 12px 20px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns a span {
	color: #ab078e;
	float: right;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns a.btn-2 {
	margin-top: 20px;
	background-color: #101820;
	color: #FEE715;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns a:hover {
	background-color: #ab078e;
	color: #101820;
}

.service-details .sr-sidebar .sr-btn-widget .download-btns a:hover span {
	color: #101820;
}

@media (max-width: 991.98px) {
	.service-details .sr-sidebar {
		max-width: 300px;
	}
}

@media (max-width: 575.98px) {
	.service-details .sr-sidebar {
		margin-left: auto;
		margin-right: auto;
	}
}

.service-details .sr-details-content {
	padding-left: 30px;
}

.service-details .sr-details-content .title-txt.has-devider h3 {
	position: relative;
	display: inline-block;
}

.service-details .sr-details-content .title-txt.has-devider h3::after {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -115px;
	width: 100px;
	height: 3px;
	background-color: #22d3ee;
}

.service-details .sr-details-content .sr-details-bottom .srd-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.service-details .sr-details-content .sr-details-bottom .srd-list ul li i {
	margin-top: 3px;
	color: #ab078e;
}

.service-details .sr-details-content .sr-details-bottom .srd-list ul li+li {
	margin-top: 20px;
}

.service-details .sr-details-content .sr-details-bottom .srd-right-img {
	text-align: right;
}

.service-details .sr-details-content .sr-details-bottom .srd-right-img img {
	max-width: 100%;
	width: auto;
	display: inline-block;
}

.service-details .sr-details-content .sr-details-slider {
	margin-top: 30px;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-icon-wrapper span {
	width: 80px;
	height: 80px;
	color: #101820;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	font-size: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-icon-wrapper span::before {
	content: '';
	position: absolute;
	left: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #22d3ee;
	z-index: 2;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-icon-wrapper span i {
	background-color: #FEE715;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-service-content {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 35px 35px 35px 50px;
	margin-left: -50px;
	position: relative;
	z-index: 1;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-service-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/home1/sr-item-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item .bixol-service-content h5 {
	margin-bottom: 6px;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item:hover .bixol-icon-wrapper span i {
	background-color: #101820;
	color: #FEE715;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item:hover .bixol-service-content::before {
	opacity: 1;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item:hover .bixol-service-content h5 {
	color: #101820;
}

.service-details .sr-details-content .sr-details-slider .bixol-service-item:hover .bixol-service-content p {
	color: #101820;
}

.service-details .sr-details-content .sr-details-slider .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.service-details .sr-details-content .sr-details-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.service-details .sr-details-content .sr-details-slider .slick-arrow {
	position: absolute;
	top: 50%;
	left: -40px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 0;
	background-color: #cddae6;
	font-size: 14px;
	color: #FEE715;
	text-align: center;
	line-height: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.service-details .sr-details-content .sr-details-slider .slick-arrow.next-btn {
	right: -40px;
	left: auto;
}

.service-details .sr-details-content .sr-details-slider .slick-arrow:hover {
	color: #101820;
	background-color: #ab078e;
}

@media (max-width: 991.98px) {
	.service-details .sr-details-content {
		padding-left: 0;
		margin-top: 60px;
	}
	.service-details .sr-details-content .sr-details-slider {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.service-details .sr-details-content .srd-right-img {
		margin-top: 30px;
	}
}

@media (max-width: 767.98px) {
	.service-details .sr-details-content .sr-details-slider {
		max-width: 500px;
	}
}

.portfolio-area .pf-top {
	padding: 0 80px;
}

@media (max-width: 991.98px) {
	.portfolio-area .pf-top {
		text-align: center;
	}
	.portfolio-area .pf-top .bf-desc {
		margin-top: 20px;
	}
}

.portfolio-area .portfolio-filter {
	margin-top: 60px;
}

.portfolio-area .portfolio-filter .controls {
	text-align: right;
}

.portfolio-area .portfolio-filter .controls ul li {
	display: inline-block;
	color: #8b90a7;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-in;
}

.portfolio-area .portfolio-filter .controls ul li.active {
	color: #FEE715;
}

.portfolio-area .portfolio-filter .controls ul li.active::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	background-color: #ab078e;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.portfolio-area .portfolio-filter .controls ul li+li {
	margin-left: 15px;
}

@media (max-width: 991.98px) {
	.portfolio-area .portfolio-filter .controls {
		text-align: center;
	}
	.portfolio-area .portfolio-filter .controls ul li {
		margin-bottom: 30px;
	}
}

.portfolio-area .portfolio-filter .filter-items {
	margin-top: 50px;
}

.portfolio-area .portfolio-filter .filter-items .filter-item {
	position: relative;
	margin-bottom: 30px;
}

.portfolio-area .portfolio-filter .filter-items .filter-item .pf-item-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 30, 121, 0.7);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.portfolio-area .portfolio-filter .filter-items .filter-item .pf-item-content a.plus-icon {
	width: 40px;
	height: 40px;
	background-color: #22d3ee;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #101820;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.portfolio-area .portfolio-filter .filter-items .filter-item .pf-item-content a.plus-icon:hover {
	-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.portfolio-area .portfolio-filter .filter-items .filter-item .pf-item-content h6 {
	color: #101820;
	margin-top: 20px;
}

.portfolio-area .portfolio-filter .filter-items .filter-item .pf-item-content .devider {
	width: 80px;
	height: 3px;
	background-color: #22d3ee;
	display: inline-block;
	margin-top: 20px;
}

.portfolio-area .portfolio-filter .filter-items .filter-item:hover .pf-item-content {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.portfolio-area .portfolio-filter .filter-items .filter-item:hover .pf-item-content a {
	-webkit-animation: 0.5s ct_fadeInDown linear;
	animation: 0.5s ct_fadeInDown linear;
}

.portfolio-area .portfolio-filter .filter-items .filter-item:hover .pf-item-content h6 {
	-webkit-animation: 0.7s ct_fadeInUp linear;
	animation: 0.7s ct_fadeInUp linear;
}

.portfolio-area .portfolio-filter .filter-items .filter-item:hover .pf-item-content .devider {
	-webkit-animation: 0.9s ct_fadeInUp linear;
	animation: 0.9s ct_fadeInUp linear;
}

@media (max-width: 991.98px) {
	.portfolio-area .portfolio-filter .filter-items {
		margin-top: 20px;
	}
}

.portfolio-area .portfolio-filter .bixol-pagination {
	text-align: center;
	margin-top: 30px;
}

.portfolio-area .portfolio-filter .bixol-pagination ul {
	display: inline-block;
}

.portfolio-area .portfolio-filter .bixol-pagination ul li {
	display: inline-block;
}

.portfolio-area .portfolio-filter .bixol-pagination ul li a {
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	background-color: #e8eaf3;
	display: inline-block;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.portfolio-area .portfolio-filter .bixol-pagination ul li a.active {
	background-color: #ab078e;
	color: #101820;
}

.portfolio-area .portfolio-filter .bixol-pagination ul li a:hover {
	background-color: #ab078e;
	color: #101820;
}

.portfolio-area .portfolio-filter .bixol-pagination ul li+li {
	margin-left: 4px;
}


/************************ Portfolio Details ************************/

.pf-details {
	background-color: #e9ecf5;
	position: relative;
	z-index: 1;
}

.pf-details .pf-star-object {
	position: absolute;
	left: 100px;
	top: 200px;
	width: 130px;
	z-index: -1;
}

.pf-details .sr-sidebar .pd-widget {
	padding: 0;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
}

.pf-details .sr-sidebar .pd-widget .title-txt {
	background-color: #ab078e;
	padding: 15px 0px;
	color: #101820;
	text-align: center;
	border-radius: 3px 3px 0 0;
}

.pf-details .sr-sidebar .pd-widget .title-txt h5 {
	color: #101820;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list {
	background-color: #101820;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list ul {
	padding: 20px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list ul li {
	color: #FEE715;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list ul li strong {
	margin-right: 10px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list ul li+li {
	margin-top: 12px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list .pd-widget-bottom {
	padding: 0 0 20px 20px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list .pd-widget-bottom .value {
	color: #ab078e;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list .pd-widget-bottom .value strong {
	margin-right: 10px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list .pd-widget-bottom .rating {
	margin-top: 3px;
}

.pf-details .sr-sidebar .pd-widget .pd-widget-list .pd-widget-bottom .rating span {
	color: #ffc601;
}

.pf-details .sr-sidebar .author-widget {
	position: relative;
	border-radius: 3px;
	z-index: 1;
	text-align: center;
	padding: 40px 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.pf-details .sr-sidebar .author-widget::before {
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background-color: rgba(0, 21, 85, 0.6);
	z-index: -1;
	border-radius: 3px;
}

.pf-details .sr-sidebar .author-widget .dot-1 {
	position: absolute;
	left: -10px;
	top: 10px;
}

.pf-details .sr-sidebar .author-widget .dot-2 {
	position: absolute;
	bottom: 10px;
	right: -10px;
	display: inline-block;
}

.pf-details .sr-sidebar .author-widget .dot-2 span {
	width: 20px;
	height: 20px;
	display: block;
	background-color: #ab078e;
}

.pf-details .sr-sidebar .author-widget .dot-2 span+span {
	margin-top: 4px;
}

.pf-details .sr-sidebar .author-widget .dot-2 span:nth-child(1) {
	background-color: #22d3ee;
}

.pf-details .sr-sidebar .author-widget .dot-2 span:nth-child(2) {
	background-color: #4a74f0;
}

.pf-details .sr-sidebar .author-widget .author-thumb {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
}

.pf-details .sr-sidebar .author-widget .author-thumb img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	background-color: #101820;
	padding: 4px;
	border-radius: 50%;
}

.pf-details .sr-sidebar .author-widget .author-info h5 {
	margin-top: 15px;
	color: #101820;
}

.pf-details .sr-sidebar .author-widget .author-info span {
	color: #d7e0f5;
	font-size: 14px;
}

.pf-details .sr-sidebar .author-widget .social-info {
	margin-top: 20px;
}

.pf-details .sr-sidebar .author-widget .social-info a {
	width: 40px;
	height: 40px;
	background-color: #101820;
	color: #ab078e;
	display: inline-block;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.pf-details .sr-sidebar .author-widget .social-info a.fb {
	color: #3b5999;
}

.pf-details .sr-sidebar .author-widget .social-info a.tw {
	color: #55acee;
}

.pf-details .sr-sidebar .author-widget .social-info a.db {
	color: #ea4c89;
}

.pf-details .sr-sidebar .author-widget .social-info a+a {
	margin-left: 4px;
}

.pf-details .sr-sidebar .author-widget .social-info a:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.pf-details .sr-sidebar .sr-list-widget .list-nav {
	background-color: #101820;
}

@media (max-width: 991.98px) {
	.pf-details .sr-sidebar {
		max-width: 300px;
		margin-bottom: 60px;
	}
}

@media (max-width: 575.98px) {
	.pf-details .sr-sidebar {
		margin-left: auto;
		margin-right: auto;
	}
}


/***************** Contact Page *****************/

.contact-v2 {
	background-color: #f4f8fd;
}

.contact-v2 .contact-v2-left .contact-v2-list {
	margin-top: 30px;
}

.contact-v2 .contact-v2-left .contact-v2-list .contact-v2-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #eaeaea;
	padding: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.contact-v2 .contact-v2-left .contact-v2-list .contact-v2-item .bixol-icon-wrapper i {
	font-size: 36px;
	color: #22d3ee;
}

.contact-v2 .contact-v2-left .contact-v2-list .contact-v2-item .column-content h5 {
	margin-bottom: 5px;
}

.contact-v2 .contact-v2-left .contact-v2-list .contact-v2-item:hover {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

@media (max-width: 991.98px) {
	.contact-v2 .contact-v2-left .bixol-title-area {
		text-align: center;
		padding: 0 30px;
	}
	.contact-v2 .contact-v2-left .contact-left-img {
		text-align: center;
	}
	.contact-v2 .contact-v2-left .contact-left-img img {
		width: auto;
		max-width: 100%;
		display: inline-block;
	}
}

@media (max-width: 767.98px) {
	.contact-v2 .contact-v2-left .contact-v2-list .contact-v2-item {
		max-width: 370px;
		margin-left: auto;
		margin-right: auto;
	}
}

.contact-v2 .contact-v2-right p {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #000000;
}

.contact-v2 .contact-v2-right form {
	width: 100%;
	margin-top: 20px;
}

.contact-v2 .contact-v2-right form input,
.contact-v2 .contact-v2-right form select,
.contact-v2 .contact-v2-right form textarea {
	width: 100%;
	border: 0;
	padding: 12px 20px;
	background-color: #101820;
	margin-bottom: 30px;
	border-radius: 3px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
}

.contact-v2 .contact-v2-right form input::-webkit-input-placeholder,
.contact-v2 .contact-v2-right form select::-webkit-input-placeholder,
.contact-v2 .contact-v2-right form textarea::-webkit-input-placeholder {
	color: #656565;
}

.contact-v2 .contact-v2-right form input:-ms-input-placeholder,
.contact-v2 .contact-v2-right form select:-ms-input-placeholder,
.contact-v2 .contact-v2-right form textarea:-ms-input-placeholder {
	color: #656565;
}

.contact-v2 .contact-v2-right form input::-ms-input-placeholder,
.contact-v2 .contact-v2-right form select::-ms-input-placeholder,
.contact-v2 .contact-v2-right form textarea::-ms-input-placeholder {
	color: #656565;
}

.contact-v2 .contact-v2-right form input::placeholder,
.contact-v2 .contact-v2-right form select::placeholder,
.contact-v2 .contact-v2-right form textarea::placeholder {
	color: #656565;
}

.contact-v2 .contact-v2-right form label {
	font-family: "Poppins", sans-serif;
	color: #000000;
	margin-bottom: 8px;
	font-size: 15px;
}

.contact-v2 .contact-v2-right form .submit-btn {
	margin-top: 30px;
}

.contact-v2 .contact-v2-right form .submit-btn button {
	width: 212px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: #22d3ee;
	border: 0;
	border-radius: 3px;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.contact-v2 .contact-v2-right form .submit-btn button i {
	margin-right: 10px;
}

.contact-v2 .contact-v2-right form .submit-btn button:hover {
	background-color: #ab078e;
}

.contact-v3 .contact-v2-left .contact-left-img {
	margin-top: 60px;
}

.contact-v3 .contact-v2-right {
	padding-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px 40px 30px;
    margin-top: 35px;
	margin-bottom: 20px;
}

.contact-v3 .contact-v2-right form input,
.contact-v3 .contact-v2-right form select,
.contact-v3 .contact-v2-right form textarea {
	margin-bottom: 20px;
}

.contact-v3 .contact-v2-right form .submit-btn {
	margin-top: 0;
}

.contact-v3 .contact-v2-right form .submit-btn button {
	width: 100%;
}

.contact-v3-info-content {
	background-color: #f4f8fd;
}

.contact-v3-info-content .info-content {
	padding: 0 100px;
}

.contact-v3-info-content .info-content .info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.contact-v3-info-content .info-content .info-item .icon-wrapper i {
	color: #22d3ee;
	font-size: 40px;
	-webkit-transform: translateY(8px);
	-ms-transform: translateY(8px);
	transform: translateY(8px);
}

.contact-v3-info-content .info-content .info-item .item-content h4 {
	margin-bottom: 8px;
	font-size: 20px;
	text-transform: initial;
}

.contact-v3-info-content .info-content .info-item .item-content p {
	font-size: 14px;
}

@media (max-width: 991.98px) {
	.contact-v3-info-content .info-content {
		padding: 0;
	}
	.contact-v3-info-content .info-content .info-item {
		display: block;
		text-align: center;
	}
	.contact-v3-info-content .info-content .info-item .icon-wrapper {
		margin-bottom: 20px;
	}
}

@media (max-width: 767.98px) {
	.contact-v3-info-content .info-content .info-item {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

.not-found-area {
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.not-found-area .not-found-img {
	text-align: center;
	margin-top: 60px;
}

.not-found-area .not-found-img img {
	max-width: 100%;
	width: auto;
	display: inline-block;
}

.not-found-area .not-found-btns {
	margin-top: 60px;
}

.not-found-area .not-found-btns a {
	background-color: #ab078e;
	display: inline-block;
	padding: 10px 10px;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.not-found-area .not-found-btns a span {
	width: 30px;
	height: 30px;
	display: inline-block;
	background-color: #22d3ee;
	text-align: center;
	line-height: 30px;
	margin-right: 8px;
	border-radius: 2px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.not-found-area .not-found-btns .home-btn:hover {
	background-color: #22d3ee;
}

.not-found-area .not-found-btns .home-btn:hover span {
	background-color: #ab078e;
}

.not-found-area .not-found-btns .sb-btn {
	background-color: #22d3ee;
	margin-left: 25px;
}

.not-found-area .not-found-btns .sb-btn span {
	background-color: #ab078e;
}

.not-found-area .not-found-btns .sb-btn:hover {
	background-color: #ab078e;
}

.not-found-area .not-found-btns .sb-btn:hover span {
	background-color: #22d3ee;
}

.coming-soon {
	background-size: cover;
	background-repeat: no-repeat;
}

.coming-soon ul.countdown {
	text-align: center;
}

.coming-soon ul.countdown li {
	display: inline-block;
	margin: 0 5px;
}

.coming-soon ul.countdown li span {
	font-size: 55px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #FEE715;
}

.coming-soon ul.countdown li p {
	font-size: 24px;
	color: #FEE715;
	font-weight: 500;
}

.coming-soon ul.countdown li.seperator {
	font-size: 48px;
	line-height: 65px;
	vertical-align: top;
}

.coming-soon ul.countdown li p {
	text-transform: capitalize;
}

.coming-soon .title-txt {
	text-align: center;
	margin-top: 60px;
}

.coming-soon .title-txt span {
	font-size: 55px;
}

.coming-soon .pera-txt {
	text-align: center;
	margin-top: 20px;
}

.coming-soon .pera-txt p {
	color: #526088;
	font-size: 20px;
}

.coming-soon .subscribe-form {
	text-align: center;
	max-width: 450px;
	margin: 0 auto;
	margin-top: 30px;
}

.coming-soon .subscribe-form form {
	position: relative;
	width: 100%;
}

.coming-soon .subscribe-form form input {
	width: 100%;
	background-color: #eef2f7;
	border: 0;
	border-radius: 30px;
	padding: 10px 30px;
}

.coming-soon .subscribe-form form button {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 10px 30px;
	border: 0;
	border-radius: 0px 30px 30px 0;
	background-color: #22d3ee;
	font-weight: 500;
	text-transform: uppercase;
	color: #101820;
}

.coming-soon .social-info {
	text-align: center;
	margin-top: 60px;
}

.coming-soon .social-info a {
	width: 40px;
	height: 40px;
	background-color: #ab078e;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.coming-soon .social-info a:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

.coming-soon .social-info a.facebook {
	background-color: #3b5999;
}

.coming-soon .social-info a.twitter {
	background-color: #55acee;
}

.coming-soon .social-info a.instagram {
	background-color: #e4405f;
}

.coming-soon .social-info a.linkedin {
	background-color: #0077B5;
}

.coming-soon .social-info a+a {
	margin-left: 10px;
}

@media (max-width: 991.98px) {
	.coming-soon .title-txt span {
		font-size: 36px;
	}
	.coming-soon .pera-txt p {
		font-size: 18px;
	}
}

@media (max-width: 575.98px) {
	.coming-soon .title-txt span {
		font-size: 30px;
	}
	.coming-soon .pera-txt p {
		font-size: 16px;
	}
	.coming-soon .subscribe-form form input,
	.coming-soon .subscribe-form form button {
		font-size: 15px;
	}
}


/*********** FAQ Page ************/

.faq-section {
	background-color: #eceef4;
	padding-top: 50px;
	padding-bottom: 50px;
}

.faq-section .faq-top {
	padding: 0 60px;
}

.faq-section .faq-top .bixol-title-area h3 {
	display: inline-block;
}

.faq-section .faq-top .bixol-title-area h3 span {
	display: inline;
}
.faq-section .bixol-title-area p {
    margin-top: 5px;
}
.faq-section .faq-bottom {
	margin-top: 40px;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item {
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 5px;
	height: 0;
	background-color: #2593d5;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-header a {
	text-transform: initial;
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	position: relative;
	font-size: 18px;
	padding: 20px 15px 20px 25px;
	display: block;
	position: relative;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-header a::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	color: #9ba2aa;
	font-size: 14px;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-body {
	padding: 0 30px 15px 25px;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item+.accordion-item {
	margin-top: 20px;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item.active {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.faq-section .faq-bottom .faq-wrapper .accordion-item.active::after {
	height: 100%;
}

.faq-section .faq-bottom .faq-wrapper .accordion-item.active .accordion-header a::after {
	content: '\f00d';
	font-size: 10px;
	background-color: #9ba2aa;
	color: #101820;
}
.faq-section .faq-bottom h4{
	text-align: center;
	padding-top: 30px;
}
.faq-contact {
	background-color: #eceef4;
}

.faq-contact .faq-contact-top {
	padding: 0 60px;
}

.faq-contact .faq-contact-bottom {
	margin-top: 60px;
}

.faq-contact .faq-contact-bottom .faq-contact-left .faq-contact-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	padding-right: 30px;
}

.faq-contact .faq-contact-bottom .faq-contact-left .faq-contact-item+.faq-contact-item {
	margin-top: 30px;
}

.faq-contact .faq-contact-bottom .faq-contact-left .faq-contact-item .icon-wrapper span {
	width: 50px;
	height: 50px;
	background-color: #2593d5;
	display: inline-block;
	color: #101820;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 20px;
}

.faq-contact .faq-contact-bottom .faq-contact-left .faq-contact-item .faq-address-content h5 {
	text-transform: initial;
}

.faq-contact .faq-contact-bottom .faq-contact-left .faq-contact-item .faq-address-content p {
	margin-top: 5px;
}

.faq-contact .faq-contact-bottom .faq-form form {
	width: 100%;
}

.faq-contact .faq-contact-bottom .faq-form form input,
.faq-contact .faq-contact-bottom .faq-form form select,
.faq-contact .faq-contact-bottom .faq-form form textarea {
	width: 100%;
	border: 1px solid #eaeaea;
	color: #3a4268;
	padding: 12px 20px;
	background-color: #101820;
	margin-bottom: 30px;
	border-radius: 3px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
}

.faq-contact .faq-contact-bottom .faq-form form input::-webkit-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form select::-webkit-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form textarea::-webkit-input-placeholder {
	color: #3a4268;
}

.faq-contact .faq-contact-bottom .faq-form form input:-ms-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form select:-ms-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form textarea:-ms-input-placeholder {
	color: #3a4268;
}

.faq-contact .faq-contact-bottom .faq-form form input::-ms-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form select::-ms-input-placeholder,
.faq-contact .faq-contact-bottom .faq-form form textarea::-ms-input-placeholder {
	color: #3a4268;
}

.faq-contact .faq-contact-bottom .faq-form form input::placeholder,
.faq-contact .faq-contact-bottom .faq-form form select::placeholder,
.faq-contact .faq-contact-bottom .faq-form form textarea::placeholder {
	color: #3a4268;
}

.faq-contact .faq-contact-bottom .faq-form form label {
	font-family: "Poppins", sans-serif;
	color: #FEE715;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 600;
}

.faq-contact .faq-contact-bottom .faq-form form .submit-btn button {
	width: 212px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: #2593d5;
	border: 0;
	border-radius: 3px;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.faq-contact .faq-contact-bottom .faq-form form .submit-btn button i {
	margin-right: 10px;
}

.faq-contact .faq-contact-bottom .faq-form form .submit-btn button:hover {
	background-color: #ab078e;
}


/************* Blog Page ****************/

.blog-content-section {
	background-color: #eceef4;
	position: relative;
	z-index: 1;
}

.blog-content-section .star-object {
	position: absolute;
	top: 200px;
	left: 100px;
	z-index: -1;
}

.blog-content-section .blog-posts {
	padding-right: 20px;
}

.blog-content-section .blog-posts .blog-single-post {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.blog-content-section .blog-posts .blog-single-post+.blog-single-post {
	margin-top: 60px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-img-wrapper {
	position: relative;
}

.blog-content-section .blog-posts .blog-single-post .bixol-img-wrapper img {
	max-width: 270px;
	width: auto;
}

.blog-content-section .blog-posts .blog-single-post .bixol-img-wrapper .bixol-blog-date {
	width: 65px;
	height: 65px;
	border-radius: 3px;
	background-color: #ab078e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 10px;
	text-align: center;
	position: absolute;
	top: 10px;
	left: 10px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-img-wrapper .bixol-blog-date span {
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content {
	padding-right: 20px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-category {
	display: inline-block;
	padding: 3px 6px;
	background-color: #ced4e6;
	font-weight: 500;
	text-transform: uppercase;
	color: #FEE715;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-blog-headline {
	margin-top: 20px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-blog-headline h5 {
	text-transform: initial;
	position: relative;
	display: inline-block;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-blog-headline h5::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: #FEE715;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-blog-pera {
	margin-top: 20px;
}

.blog-content-section .blog-posts .blog-single-post .bixol-blog-content .bixol-blog-btn a {
	margin-top: 30px;
}

.blog-content-section .blog-posts .blog-single-post:hover .bixol-blog-content .bixol-blog-headline h5::after {
	width: 100%;
}

.blog-content-section .bixol-pagination {
	margin-top: 30px;
}

.blog-content-section .bixol-pagination ul li {
	display: inline-block;
}

.blog-content-section .bixol-pagination ul li a {
	width: 35px;
	height: 35px;
	background-color: #101820;
	display: inline-block;
	text-align: center;
	line-height: 35px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 2px;
	color: #ab078e;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-right: 5px;
}

.blog-content-section .bixol-pagination ul li a:hover {
	background-color: #ab078e;
	color: #101820;
}

.blog-content-section .bixol-pagination ul li a.active {
	background-color: #ab078e;
	color: #101820;
}

.blog-content-section .blog-sidebar .sidebar-widget {
	position: relative;
}

.blog-content-section .blog-sidebar .sidebar-widget::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 6px;
	background-color: #22d3ee;
}

.blog-content-section .blog-sidebar .sidebar-widget .widget-title {
	padding: 30px 0;
}

.blog-content-section .blog-sidebar .sidebar-widget .widget-title h5 {
	position: relative;
	display: inline-block;
}

.blog-content-section .blog-sidebar .sidebar-widget .widget-title h5::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -50px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 3px;
	background-color: #22d3ee;
}

.blog-content-section .blog-sidebar .sidebar-widget.no-border::after {
	display: none;
}

.blog-content-section .blog-sidebar .sidebar-widget+.sidebar-widget {
	margin-top: 60px;
}

.blog-content-section .blog-sidebar .author-widget {
	position: relative;
	border-radius: 3px;
	z-index: 1;
	text-align: center;
	padding: 40px 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.blog-content-section .blog-sidebar .author-widget::before {
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background-color: rgba(0, 21, 85, 0.6);
	z-index: -1;
	border-radius: 3px;
}

.blog-content-section .blog-sidebar .author-widget .dot-1 {
	position: absolute;
	left: -10px;
	top: 10px;
}

.blog-content-section .blog-sidebar .author-widget .dot-2 {
	position: absolute;
	bottom: 10px;
	right: -10px;
	display: inline-block;
}

.blog-content-section .blog-sidebar .author-widget .dot-2 span {
	width: 20px;
	height: 20px;
	display: block;
	background-color: #ab078e;
}

.blog-content-section .blog-sidebar .author-widget .dot-2 span+span {
	margin-top: 4px;
}

.blog-content-section .blog-sidebar .author-widget .dot-2 span:nth-child(1) {
	background-color: #22d3ee;
}

.blog-content-section .blog-sidebar .author-widget .dot-2 span:nth-child(2) {
	background-color: #4a74f0;
}

.blog-content-section .blog-sidebar .author-widget .author-thumb {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
}

.blog-content-section .blog-sidebar .author-widget .author-thumb img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	background-color: #101820;
	padding: 4px;
	border-radius: 50%;
}

.blog-content-section .blog-sidebar .author-widget .author-info h5 {
	margin-top: 15px;
	color: #101820;
}

.blog-content-section .blog-sidebar .author-widget .author-info span {
	color: #d7e0f5;
	font-size: 14px;
}

.blog-content-section .blog-sidebar .author-widget .social-info {
	margin-top: 20px;
}

.blog-content-section .blog-sidebar .author-widget .social-info a {
	width: 40px;
	height: 40px;
	background-color: #101820;
	color: #ab078e;
	display: inline-block;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-sidebar .author-widget .social-info a.fb {
	color: #3b5999;
}

.blog-content-section .blog-sidebar .author-widget .social-info a.tw {
	color: #55acee;
}

.blog-content-section .blog-sidebar .author-widget .social-info a.db {
	color: #ea4c89;
}

.blog-content-section .blog-sidebar .author-widget .social-info a+a {
	margin-left: 4px;
}

.blog-content-section .blog-sidebar .author-widget .social-info a:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.blog-content-section .blog-sidebar .search-sidebar form {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.blog-content-section .blog-sidebar .search-sidebar form input[type="text"] {
	width: 100%;
	padding: 12px 60px 12px 20px;
	border: 0;
	background-color: #101820;
	border-radius: 3px;
	color: #FEE715;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

.blog-content-section .blog-sidebar .search-sidebar form input[type="text"]::-webkit-input-placeholder {
	color: #FEE715;
}

.blog-content-section .blog-sidebar .search-sidebar form input[type="text"]:-ms-input-placeholder {
	color: #FEE715;
}

.blog-content-section .blog-sidebar .search-sidebar form input[type="text"]::-ms-input-placeholder {
	color: #FEE715;
}

.blog-content-section .blog-sidebar .search-sidebar form input[type="text"]::placeholder {
	color: #FEE715;
}

.blog-content-section .blog-sidebar .search-sidebar form button {
	position: absolute;
	right: 0;
	top: 0;
	border: 0;
	width: 50px;
	height: 46px;
	background-color: #ab078e;
	color: #101820;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 0 3px 3px 0;
}

.blog-content-section .blog-sidebar .category-widget .list-nav {
	background-color: #101820;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li+li a {
	border-top: 1px solid #eaeaea;
	margin-top: 1px;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a {
	color: #ab078e;
	display: block;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 15px;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a::after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 0px;
	top: 15px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a.active {
	background-color: #ab078e;
	color: #101820;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a.active::after {
	right: 10px;
	opacity: 1;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a:hover {
	background-color: #ab078e;
	color: #101820;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li a:hover::after {
	right: 10px;
	opacity: 1;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li:first-child a {
	border-radius: 5px 5px 0 0;
}

.blog-content-section .blog-sidebar .category-widget .list-nav ul li:last-child a {
	border-radius: 0 0 5px 5px;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single+.recent-post-single {
	margin-top: 50px;
	position: relative;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single+.recent-post-single::before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #d5dde5;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single .post-thumbnail img {
	width: 60px;
	border-radius: 50%;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single .recent-post-content {
	margin-left: 20px;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single .recent-post-content .title h6 {
	text-transform: initial;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	font-size: 15px;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single .recent-post-content .blog-meta {
	margin-top: 6px;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single .recent-post-content .blog-meta span {
	color: #3a4268;
}

.blog-content-section .blog-sidebar .recent-post-widget .recent-post-single:hover .recent-post-content .title h6 {
	color: #ab078e;
}

.blog-content-section .blog-sidebar .tags-widget .tags-list a {
	min-width: 83px;
	height: 40px;
	padding: 0 10px;
	display: inline-block;
	background-color: #101820;
	color: #FEE715;
	text-align: center;
	line-height: 40px;
	font-weight: 500;
	font-size: 13px;
	margin-right: 6px;
	margin-bottom: 10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-sidebar .tags-widget .tags-list a:hover {
	background-color: #ab078e;
	color: #101820;
}

.blog-content-section .blog-sidebar .instagram-widget ul li {
	position: relative;
	padding-right: 10px;
	padding-bottom: 10px;
	display: inline-block;
}

.blog-content-section .blog-sidebar .instagram-widget ul li a {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-sidebar .instagram-widget ul li:hover a {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.blog-content-section .blog-sidebar .instagram-widget {
		max-width: 250px;
	}
}


/*************** Blog Details *************/

.blog-content-section.blog-details {
	background-color: #101820;
}

.blog-content-section .blog-posts .blog-details-post .details-blog-meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.blog-content-section .blog-posts .blog-details-post .details-blog-meta span {
	text-transform: uppercase;
	font-family: 500;
	font-size: 14px;
}

.blog-content-section .blog-posts .blog-details-post .details-blog-meta span i {
	margin-right: 8px;
	color: #ab078e;
}

.blog-content-section .blog-posts .blog-details-post .blog-quote {
	background-color: #f6f6f6;
	padding: 40px;
	position: relative;
	margin-left: 40px;
}

.blog-content-section .blog-posts .blog-details-post .blog-quote span.quote-txt {
	font-size: 18px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	display: block;
}

.blog-content-section .blog-posts .blog-details-post .blog-quote span.quote-author {
	font-weight: 700;
	color: #555555;
	font-size: 15px;
	display: block;
	margin-top: 20px;
	position: relative;
	margin-left: 40px;
}

.blog-content-section .blog-posts .blog-details-post .blog-quote span.quote-author::before {
	content: '';
	width: 30px;
	height: 2px;
	background-color: #9f1d85;
	position: absolute;
	top: 50%;
	left: -40px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.blog-content-section .blog-posts .blog-details-post .blog-quote span.quote-icon {
	position: absolute;
	font-family: 'Playfair Display', serif;
	top: -30px;
	left: -40px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #9f1d85;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 100px;
	color: #101820;
}

.blog-content-section .blog-posts .blog-details-post .blog-quote span.quote-icon i {
	-webkit-transform: translateY(-73px);
	-ms-transform: translateY(-73px);
	transform: translateY(-73px);
}

.blog-content-section .single-blog-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
}

.blog-content-section .single-blog-pagination a {
	width: 170px;
	height: 40px;
	display: inline-block;
	background-color: #f6f6f6;
	line-height: 40px;
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #FEE715;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .single-blog-pagination a:hover {
	background-color: #9f1d85;
	color: #101820;
	text-decoration: underline;
}

.blog-content-section .single-blog-pagination a.prev-post i {
	margin-right: 6px;
}

.blog-content-section .single-blog-pagination a.next-post i {
	margin-left: 6px;
}

.blog-content-section .seperator hr {
	margin: 0;
	border-top: 2px solid #eaeaea;
}

.blog-content-section .blog-content-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.blog-content-section .blog-content-bottom .tags-area .tags-title {
	font-weight: 700;
	margin-right: 6px;
}

.blog-content-section .blog-content-bottom .tags-area a {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	border-radius: 2px;
}

.blog-content-section .blog-content-bottom .tags-area a:hover {
	background-color: #9f1d85;
	color: #101820;
}

.blog-content-section .blog-content-bottom .social-share a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
	text-align: center;
	line-height: 30px;
	background-color: #ab078e;
	color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .blog-content-bottom .social-share a+a {
	margin-left: 6px;
}

.blog-content-section .blog-content-bottom .social-share a.fb {
	background-color: #3b5999;
}

.blog-content-section .blog-content-bottom .social-share a.tw {
	background-color: #55acee;
}

.blog-content-section .blog-content-bottom .social-share a.gl {
	background-color: #dd4b39;
}

.blog-content-section .blog-content-bottom .social-share a.db {
	background-color: #ea4c89;
}

.blog-content-section .blog-content-bottom .social-share a:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.blog-content-section .comments-area .title h5 {
	display: inline-block;
	position: relative;
}

.blog-content-section .comments-area .title h5::after {
	content: '';
	width: 30px;
	height: 3px;
	background-color: #9f1d85;
	position: absolute;
	top: 50%;
	right: -40px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.blog-content-section .comments-area .comment-lists .single-comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.blog-content-section .comments-area .comment-lists .single-comment+.single-comment {
	margin-top: 40px;
}

.blog-content-section .comments-area .comment-lists .single-comment .thumb-wrapper img {
	width: 100px;
	border-radius: 50%;
	padding: 5px;
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content {
	background-color: #f6f6f6;
	padding: 30px;
	border-radius: 2px;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .reply-btn {
	float: right;
	margin-top: -30px;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .reply-btn a {
	padding: 8px 16px;
	display: inline-block;
	background-color: #000000;
	color: #101820;
	font-size: 14px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	border-radius: 3px;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .reply-btn a i {
	margin-left: 3px;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .reply-btn a:hover {
	background-color: #9f1d85;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .comment-date span {
	color: #737373;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	margin-top: 6px;
	display: block;
}

.blog-content-section .comments-area .comment-lists .single-comment .comment-content .comment-txt {
	margin-top: 15px;
}

.blog-content-section .comment-form .title h5 {
	position: relative;
	display: inline-block;
}

.blog-content-section .comment-form .title h5::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -40px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 30px;
	height: 3px;
	background-color: #9f1d85;
}

.blog-content-section .comment-form .comment-form-area {
	margin-top: 50px;
}

.blog-content-section .comment-form .comment-form-area p,
.blog-content-section .comment-form .comment-form-area span {
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}

.blog-content-section .comment-form .comment-form-area form {
	margin-top: 10px;
}

.blog-content-section .comment-form .comment-form-area form .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.blog-content-section .comment-form .comment-form-area form .info input {
	width: 32%;
	padding: 10px 20px;
	border: 1px solid #eaeaea;
	border-radius: 2px;
}

.blog-content-section .comment-form .comment-form-area form .info input::-webkit-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .info input:-ms-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .info input::-ms-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .info input::placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .checkbox {
	margin-top: 15px;
}

.blog-content-section .comment-form .comment-form-area form .checkbox label {
	margin-left: 8px;
}

.blog-content-section .comment-form .comment-form-area form .comment-message {
	margin-top: 20px;
}

.blog-content-section .comment-form .comment-form-area form .comment-message textarea {
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #eaeaea;
	border-radius: 2px;
}

.blog-content-section .comment-form .comment-form-area form .comment-message textarea::-webkit-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .comment-message textarea:-ms-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .comment-message textarea::-ms-input-placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .comment-message textarea::placeholder {
	color: #555555;
}

.blog-content-section .comment-form .comment-form-area form .submit-btn {
	margin-top: 20px;
}

.blog-content-section .comment-form .comment-form-area form .submit-btn button {
	padding: 12px 22px;
	background-color: #9f1d85;
	border: 0;
	border-radius: 3px;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.blog-content-section .comment-form .comment-form-area form .submit-btn button:hover {
	background-color: #000000;
}

.blog-content-section .blog-details-sidebar .sidebar-widget {
	padding: 20px;
	border: 1px solid #eaeaea;
}

.blog-content-section .blog-details-sidebar .sidebar-widget .widget-title {
	padding-top: 0;
}

.blog-content-section .blog-details-sidebar .search-sidebar form input[type="text"] {
	background-color: #f6f6f6;
}

.blog-content-section .blog-details-sidebar .recent-post-widget .recent-post-single:hover .recent-post-content .title h6 {
	color: #9f1d85;
}

.blog-content-section .blog-details-sidebar .category-widget .list-nav ul li a {
	color: #FEE715;
}

.blog-content-section .blog-details-sidebar .category-widget .list-nav ul li a::after {
	right: 0px;
	opacity: 1;
}

.blog-content-section .blog-details-sidebar .category-widget .list-nav ul li a:hover {
	background-color: #101820;
	color: #9f1d85;
}

.blog-content-section .blog-details-sidebar .category-widget .list-nav ul li a:hover::after {
	right: 0;
}

.blog-content-section .blog-details-sidebar .tags-widget .tags-list a {
	border: 1px solid #eaeaea;
	height: 30px;
	line-height: 30px;
	min-width: 65px;
}

.blog-content-section .blog-details-sidebar .contact-widget {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	padding: 110px 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.blog-content-section .blog-details-sidebar .contact-widget::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(1, 1, 1, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content {
	position: relative;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content .subtitle {
	font-size: 14px;
	text-transform: uppercase;
	color: #9f1d85;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content .title {
	font-size: 28px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	color: #101820;
	margin-top: 6px;
	display: block;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content p {
	margin-top: 15px;
	color: #101820;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content a {
	margin-top: 40px;
	display: inline-block;
	padding: 14px 22px;
	background-color: #9f1d85;
	color: #101820;
	font-weight: 700;
	border-radius: 2px;
	text-transform: uppercase;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content a i {
	margin-left: 3px;
}

.blog-content-section .blog-details-sidebar .contact-widget .widget-content::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: 0px;
	width: 70px;
	height: 40px;
	background-image: url(../images/blog/email-icon.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.home2-hero-slider {
	position: relative;
}

.home2-hero-slider .container {
	position: relative;
}

.home2-hero-slider .appoinment-form {
	position: absolute;
	top: -760px;
	right: 0;
	display: inline-block;
	z-index: 2;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 40px;
	max-width: 400px;
	border-radius: 6px;
}

.home2-hero-slider .appoinment-form .appoinment-title span {
	color: #d3d4eb;
	font-size: 15px;
}

.home2-hero-slider .appoinment-form .appoinment-title h4 {
	color: #101820;
}

.home2-hero-slider .appoinment-form form {
	margin-top: 20px;
}

.home2-hero-slider .appoinment-form form input {
	display: block;
	margin-bottom: 15px;
	width: 100%;
	padding: 13px 15px;
	background-color: #22356f;
	font-size: 14px;
	border: 0;
	border-radius: 2px;
	color: #101820;
}

.home2-hero-slider .appoinment-form form input::-webkit-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form input:-ms-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form input::-ms-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form input::placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form select {
	width: 100%;
	padding: 10px 15px;
	background-color: #22356f;
	border: 0;
	color: #101820;
	margin-bottom: 15px;
	font-size: 14px;
	border-radius: 2px;
}

.home2-hero-slider .appoinment-form form textarea {
	width: 100%;
	padding: 10px 15px;
	background-color: #22356f;
	border: 0;
	color: #101820;
	font-size: 14px;
	border-radius: 2px;
}

.home2-hero-slider .appoinment-form form textarea::-webkit-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form textarea:-ms-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form textarea::-ms-input-placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form textarea::placeholder {
	color: #101820;
}

.home2-hero-slider .appoinment-form form button {
	border-radius: 30px;
	height: 48px;
	font-size: 14px;
	margin-top: 30px;
}

.home2-hero-slider .appoinment-form form button span {
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.home2-hero-slider .appoinment-form form button span i {
	line-height: 15px;
}

@media (max-width: 1199.98px) {
	.home2-hero-slider .appoinment-form {
		display: none;
	}
}


/************** Home2 About Section **************/

.home2-about-section .about-left .img-wrapper {
	position: relative;
	width: 76%;
}

.home2-about-section .about-left .img-wrapper .es-year {
	position: absolute;
	right: 0;
	top: 40%;
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	width: 120px;
	height: 120px;
	background-color: #02154e;
	border-radius: 50%;
	padding: 10px;
}

.home2-about-section .about-left .img-wrapper .es-year .year-content {
	border: 2px dashed #22d3ee;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 12px;
	color: #101820;
}

.home2-about-section .about-left .img-wrapper .es-year .year-content span.icon-wrapper {
	font-size: 20px;
	color: #22d3ee;
}

.home2-about-section .about-left .img-wrapper .es-year .year-content span.title {
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.home2-about-section .about-left .about-left-content {
	margin-top: -80px;
	margin-left: 60px;
	position: relative;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home2-about-section .about-left .about-left-content .about-counterup {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.home2-about-section .about-left .about-left-content .about-counterup .icon-container span {
	color: #22d3ee;
	font-size: 40px;
}

.home2-about-section .about-left .about-left-content .about-counterup .counterup-content {
	margin-left: 15px;
}

.home2-about-section .about-left .about-left-content .about-counterup .counterup-content .title h4 {
	font-size: 32px;
}

.home2-about-section .about-left .about-left-content .about-counterup .counterup-content .title h4 sup {
	color: #22d3ee;
}

.home2-about-section .about-left .about-left-content .about-counterup .counterup-content .subtitle span {
	font-weight: 500;
	font-size: 15px;
}

.home2-about-section .about-left .about-left-content .about-counterup+.about-counterup {
	position: relative;
	margin-left: 60px;
}

.home2-about-section .about-left .about-left-content .about-counterup+.about-counterup::before {
	content: '';
	position: absolute;
	width: 0;
	height: 50px;
	border: 1px dashed #eaeaea;
	left: -35px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 991.98px) {
	.home2-about-section .about-left {
		margin-bottom: 60px;
	}
	.home2-about-section .about-left .img-wrapper {
		width: auto;
		margin-left: auto;
		margin-right: auto;
		display: inline-block;
		text-align: center;
	}
	.home2-about-section .about-left .img-wrapper img {
		max-width: 100%;
		width: auto;
	}
}

@media (max-width: 767.98px) {
	.home2-about-section .about-left .about-left-content {
		width: 100%;
	}
	.home2-about-section .about-left .about-left-content .about-counterup {
		display: block;
		text-align: center;
	}
}

@media (max-width: 460px) {
	.home2-about-section .about-left .about-left-content {
		margin-left: 20px;
	}
}

.home2-about-section .about-right .bixol-title-area h3 {
	text-transform: initial;
}

.home2-about-section .about-right .seperator hr {
	margin: 30px 0 30px 0;
	border: 0;
	border-top: 2px solid #eaeaea;
	width: 95%;
}

.home2-about-section .about-right .about-content ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.home2-about-section .about-right .about-content ul li+li {
	margin-top: 20px;
}

.home2-about-section .about-right .about-content ul li i {
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
	color: #ab078e;
}

.home2-about-section .about-right .about-btn {
	margin-top: 30px;
}

.home2-about-section .about-right .about-btn a {
	border-radius: 30px;
	height: 52px;
	padding: 0 10px 0 20px;
}

.home2-about-section .about-right .about-btn a span {
	border-radius: 50%;
}


/**************** Home 2 Service Section **************/

.home2-service-section {
	background-size: cover;
	background-repeat: no-repeat;
}

.home2-service-section .home2-service-slider {
	margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 767.98px) {
	.home2-service-section .home2-service-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.home2-service-section .home2-service-slider .service-single-item {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 40px;
	text-align: center;
	border-radius: 6px;
	position: relative;
	margin-bottom: 30px;
	height: 325px;
}

.home2-service-section .home2-service-slider .service-single-item .img-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: inline-block;
	border: 2px dashed #ab078e;
	overflow: hidden;
	padding: 15px;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-service-content h5 {
	margin-top: 20px;
	position: relative;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-service-content h5::after {
	content: '';
	width: 50px;
	height: 3px;
	background-color: #22d3ee;
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home2-service-section .home2-service-slider .service-single-item .srv2-service-content p {
	margin-top: 30px;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) scale(0.9);
	-ms-transform: translateY(-50%) scale(0.9);
	transform: translateY(-50%) scale(0.9);
	padding: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(6, 31, 104, 0.89);
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 6px;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .img-wrapper {
	background-color: #22d3ee;
	border: 2px solid #22d3ee;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content h5 {
	color: #101820;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content p {
	color: #101820;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn {
	margin-top: 20px;
	display: inline-block;
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn i {
	color: #22d3ee;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn:hover {
	color: #ab078e;
	-webkit-transform: translateX(-2px);
	-ms-transform: translateX(-2px);
	transform: translateX(-2px);
}

.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item .srv2-service-content a.srv2-readmore-btn:hover i {
	color: #ab078e;
	-webkit-transform: translateX(3px);
	-ms-transform: translateX(3px);
	transform: translateX(3px);
}

@media (max-width: 767.98px) {
	.home2-service-section .home2-service-slider .service-single-item .srv2-hover-item {
		padding: 40px 20px;
	}
}

.home2-service-section .home2-service-slider .service-single-item:hover .srv2-hover-item {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(-50%) scale(1);
	-ms-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
	height: 100%;
}

.home2-service-section .home2-service-slider .service-single-item:hover .srv2-hover-item .img-wrapper {
	-webkit-animation: .3s ct_fadeInDown linear;
	animation: .3s ct_fadeInDown linear;
}

.home2-service-section .home2-service-slider .service-single-item:hover .srv2-hover-item .srv2-service-content h5 {
	-webkit-animation: 0.5s ct_fadeInUp linear;
	animation: 0.5s ct_fadeInUp linear;
}

.home2-service-section .home2-service-slider .service-single-item:hover .srv2-hover-item .srv2-service-content p {
	-webkit-animation: 0.7s ct_fadeInUp linear;
	animation: 0.7s ct_fadeInUp linear;
}

.home2-service-section .home2-service-slider .service-single-item:hover .srv2-hover-item .srv2-service-content a {
	-webkit-animation: 1s ct_fadeInUp linear;
	animation: 1s ct_fadeInUp linear;
}

.home2-service-section .home2-service-slider .slick-list {
	padding: 30px 0;
	margin: 0 -15px;
}

.home2-service-section .home2-service-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home2-service-section .home2-service-slider .slick-arrow {
	position: absolute;
	left: -60px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: #cddae6;
	border: 0;
	padding: 0;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #FEE715;
	z-index: 10;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-service-section .home2-service-slider .slick-arrow:hover {
	background-color: #ab078e;
	color: #101820;
}

.home2-service-section .home2-service-slider .slick-arrow.next-btn {
	right: -60px;
	left: auto;
}


/************ Home2 PMV section ************/

.home2-pmv-section .pmv-top {
	padding: 0 60px;
}

@media (max-width: 991.98px) {
	.home2-pmv-section .pmv-top .bf-desc {
		margin-top: 20px;
	}
}

@media (max-width: 575.98px) {
	.home2-pmv-section .pmv-top {
		padding: 0;
		text-align: center;
	}
}

.home2-pmv-section .pmv-bottom {
	margin-top: 30px;
	padding: 0 80px;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #eaeaea;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul li {
	display: block;
	width: 33%;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul li a {
	text-align: center;
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #8b90a7;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -9px;
	right: 0;
	width: 0;
	height: 3px;
	background-color: #22d3ee;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 2;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul li a.active {
	color: #FEE715;
}

.home2-pmv-section .pmv-bottom .pmv-nav ul li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

@media (max-width: 460px) {
	.home2-pmv-section .pmv-bottom .pmv-nav ul {
		display: block;
		text-align: center;
	}
	.home2-pmv-section .pmv-bottom .pmv-nav ul li {
		display: block;
		width: 100%;
	}
	.home2-pmv-section .pmv-bottom .pmv-nav ul li+li {
		margin-top: 15px;
	}
}

.home2-pmv-section .pmv-bottom .tab-content {
	margin-top: 40px;
}

.home2-pmv-section .pmv-bottom .tab-content .tab-pane {
	background-color: #e6ebf0;
}

.home2-pmv-section .pmv-bottom .tab-content .tab-pane .pmv-content {
	padding: 0 30px;
}

.home2-pmv-section .pmv-bottom .tab-content .tab-pane .pmv-content p {
	margin-top: 20px;
}

.home2-pmv-section .pmv-bottom .tab-content .tab-pane .pmv-content a {
	margin-top: 30px;
	border-radius: 30px;
	padding: 0 20px;
	height: 45px;
}

@media (max-width: 991.98px) {
	.home2-pmv-section .pmv-bottom .tab-content .tab-pane {
		text-align: center;
		padding: 30px;
	}
	.home2-pmv-section .pmv-bottom .tab-content .tab-pane .img-wrapper img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
	.home2-pmv-section .pmv-bottom .tab-content .tab-pane .pmv-content {
		margin-top: 30px;
	}
}

@media (max-width: 575.98px) {
	.home2-pmv-section .pmv-bottom .tab-content .tab-pane .pmv-content {
		padding: 0;
	}
}

@media (max-width: 575.98px) {
	.home2-pmv-section .pmv-bottom {
		padding: 0;
	}
}


/****************** Home2 Skills Area ********************/

.home2-skills-area .home2-skills-column {
	text-align: center;
	padding: 0 25px;
	margin-bottom: 60px;
}

.home2-skills-area .home2-skills-column .skills-progress {
	display: inline-block;
	position: relative;
}

.home2-skills-area .home2-skills-column .skills-progress .skills-value {
	position: absolute;
	top: -35px;
	right: 0;
	width: 40px;
	height: 40px;
	background-color: #22d3ee;
	color: #ab078e;
	font-size: 12px;
	font-weight: 700;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	border: 3px solid #ab078e;
}

.home2-skills-area .home2-skills-column .skills-progress .pie-value {
	display: inline-block;
	position: absolute;
	line-height: 0;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #ab078e;
}

.home2-skills-area .home2-skills-column .skills-content {
	margin-top: 15px;
}

.home2-skills-area .home2-skills-column .skills-content h5 {
	position: relative;
}

.home2-skills-area .home2-skills-column .skills-content h5::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background-color: #22d3ee;
}

.home2-skills-area .home2-skills-column .skills-content p {
	margin-top: 20px;
}


/***************** Steps Area *******************/

.home2-steps-area .steps-top {
	padding: 0 60px;
}

@media (max-width: 991.98px) {
	.home2-steps-area .steps-top {
		padding: 0;
		text-align: center;
	}
	.home2-steps-area .steps-top .bf-desc {
		margin-top: 20px;
	}
}

.home2-steps-area .steps-bottom {
	margin-top: 60px;
}

.home2-steps-area .steps-bottom .steps-column {
	padding: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.home2-steps-area .steps-bottom .steps-column .icon-wrapper span {
	width: 100px;
	height: 100px;
	background-color: #f1f3f8;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ab078e;
	line-height: 0;
	border-radius: 50%;
	font-size: 40px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
}

.home2-steps-area .steps-bottom .steps-column .icon-wrapper span::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 2px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #6457c3;
	z-index: -1;
}

.home2-steps-area .steps-bottom .steps-column .title {
	margin-top: 25px;
}

.home2-steps-area .steps-bottom .steps-column .title h6 {
	position: relative;
	text-transform: initial;
}

.home2-steps-area .steps-bottom .steps-column .title h6::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background-color: #FEE715;
}

.home2-steps-area .steps-bottom .steps-column .desc {
	margin-top: 25px;
}

.home2-steps-area .steps-bottom .steps-column.cl-2 {
	position: relative;
}

.home2-steps-area .steps-bottom .steps-column.cl-2::after {
	content: '';
	position: absolute;
	left: -30px;
	top: 80px;
	width: 60px;
	height: 20px;
	background-image: url(../images/home2/arrow1.png);
	background-size: 60px;
	background-repeat: no-repeat;
}

.home2-steps-area .steps-bottom .steps-column.cl-3 {
	position: relative;
}

.home2-steps-area .steps-bottom .steps-column.cl-3::after {
	content: '';
	position: absolute;
	left: -30px;
	top: 80px;
	width: 60px;
	height: 20px;
	background-image: url(../images/home2/arrow2.png);
	background-size: 60px;
	background-repeat: no-repeat;
}

.home2-steps-area .steps-bottom .steps-column:hover .icon-wrapper span {
	/* background-color: #ab078e; */
	color: #101820;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 991.98px) {
	.home2-steps-area .steps-bottom .steps-column::after {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.home2-steps-area .steps-bottom .steps-column {
		max-width: 460px;
		margin-left: auto;
		margin-right: auto;
	}
}

.home2-steps-area .steps-bottom .steps-btn {
	text-align: center;
}

.home2-steps-area .steps-bottom .steps-btn a {
	border-radius: 30px;
	height: 45px;
	padding: 0 20px;
}


/************** Home2 FAQ Area **************/

.home2-faq-area {
	background-size: cover;
	background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
	.home2-faq-area {
		background-position: right bottom;
	}
}

.home2-faq-area .faq-content .faq-wrapper {
	margin-top: 30px;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item {
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 5px;
	height: 0;
	background-color: #ab078e;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item .accordion-header a {
	text-transform: initial;
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	position: relative;
	font-size: 18px;
	padding: 20px 55px 20px 25px;
	display: block;
	position: relative;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item .accordion-header a::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	color: #9ba2aa;
	font-size: 14px;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item .accordion-body {
	padding: 0 35px 15px 25px;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item+.accordion-item {
	margin-top: 20px;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item.active {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item.active::after {
	height: 100%;
	top: 0;
	bottom: auto;
}

.home2-faq-area .faq-content .faq-wrapper .accordion-item.active .accordion-header a::after {
	content: '\f00d';
	font-size: 10px;
	background-color: #9ba2aa;
	color: #101820;
}


/************* Brand Area ****************/

.home2-brand-area .brand-wrapper {
	padding: 0 60px;
}

.home2-brand-area .brand-wrapper .img-wrapper {
	text-align: center;
	width: auto;
	height: 50px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
}

.home2-brand-area .brand-wrapper .img-wrapper img {
	width: auto;
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-brand-area .brand-wrapper .img-wrapper img+img {
	margin-top: 25px;
}

.home2-brand-area .brand-wrapper .img-wrapper:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.home2-brand-area .brand-wrapper .img-wrapper:hover img:first-child {
	margin-top: -60px;
}

.home2-brand-area .brand-wrapper .seperator {
	margin-top: 30px;
	display: block;
}

.home2-brand-area .brand-wrapper .seperator hr {
	margin: 0;
	border: 0;
	border-top: 2px solid #eaeaea;
}

@media (max-width: 991.98px) {
	.home2-brand-area .brand-wrapper {
		padding: 0;
	}
}

.home2-blog-area .blog-top-title {
	padding: 0 60px;
}

@media (max-width: 991.98px) {
	.home2-blog-area .blog-top-title {
		padding: 0;
		text-align: center;
	}
	.home2-blog-area .blog-top-title .bf-desc {
		margin-top: 20px;
	}
}

.home2-blog-area .home2-blog-slider {
	margin-top: 60px;
}

.home2-blog-area .home2-blog-slider .blog-single-item {
	position: relative;
}

.home2-blog-area .home2-blog-slider .blog-single-item .thumb-wrapper {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
}

.home2-blog-area .home2-blog-slider .blog-single-item .thumb-wrapper img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-blog-area .home2-blog-slider .blog-single-item .thumb-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100px;
	width: 80px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 10;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content {
	width: 80%;
	height: auto;
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	border-radius: 6px;
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -60px;
	position: relative;
	z-index: 15;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-meta {
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	height: 25px;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-meta span {
	color: #72799a;
	font-size: 14px;
	margin-right: 15px;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-meta span i {
	margin-right: 6px;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-title {
	margin-top: 6px;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-title h5 {
	font-size: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .blog-title h5:hover {
	color: #22d3ee;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .readmore-btn {
	margin-top: 6px;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-blog-area .home2-blog-slider .blog-single-item .blog-content .readmore-btn a {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #22d3ee;
}

.home2-blog-area .home2-blog-slider .blog-single-item:hover .thumb-wrapper img {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	transform: scale(1.06);
}

.home2-blog-area .home2-blog-slider .blog-single-item:hover .thumb-wrapper::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.home2-blog-area .home2-blog-slider .blog-single-item:hover .blog-content {
	-webkit-box-shadow: 0px 20px 29px 0px rgba(5, 22, 72, 0.2);
	box-shadow: 0px 20px 29px 0px rgba(5, 22, 72, 0.2);
}

.home2-blog-area .home2-blog-slider .blog-single-item:hover .blog-content .blog-meta {
	height: 0;
}

.home2-blog-area .home2-blog-slider .blog-single-item:hover .blog-content .readmore-btn {
	height: 25px;
}

.home2-blog-area .home2-blog-slider .slick-list {
	padding-bottom: 60px;
	margin: 0 -15px;
}

.home2-blog-area .home2-blog-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home2-blog-area .home2-blog-slider .slick-dots {
	position: absolute;
	bottom: 0px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home2-blog-area .home2-blog-slider .slick-dots li {
	display: inline-block;
	margin-right: 6px;
}

.home2-blog-area .home2-blog-slider .slick-dots li button {
	width: 10px;
	height: 10px;
	font-size: 0;
	border: 2px solid transparent;
	background-color: #8b90a7;
	border-radius: 50%;
	padding: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home2-blog-area .home2-blog-slider .slick-dots li.slick-active button {
	width: 16px;
	height: 16px;
	border: 2px solid #ab078e;
	background-color: #22d3ee;
}

@media (max-width: 767.98px) {
	.home2-blog-area .home2-blog-slider {
		max-width: 460px;
		margin-left: auto;
		margin-right: auto;
	}
}


/************ Home 2 Contact Area ***************/

.home2-contact-area {
	overflow: visible;
}

.home2-contact-area .home2-git {
	padding: 60px 30px 10px 30px;
	background-size: cover;
	border-radius: 6px 6px 0 0;
}

.home2-contact-area .home2-git .title {
	margin-bottom: 60px;
}

.home2-contact-area .home2-git .title h3 {
	color: #101820;
}

.home2-contact-area .home2-git .title h3 span {
	display: inline;
	font-weight: 400;
}

.home2-contact-area .home2-git .git-bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.home2-contact-area .home2-git .git-bottom .git-txt {
	color: #101820;
	text-align: center;
	position: relative;
	z-index: 1;
}

.home2-contact-area .home2-git .git-bottom .git-txt::before {
	content: '';
	width: 35px;
	height: 35px;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#006acc), to(#01d5ff));
	background-image: -webkit-linear-gradient(bottom, #006acc 0%, #01d5ff 100%);
	background-image: -o-linear-gradient(bottom, #006acc 0%, #01d5ff 100%);
	background-image: linear-gradient(0deg, #006acc 0%, #01d5ff 100%);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: -1;
	border-radius: 4px;
}

.home2-contact-area .home2-git .git-bottom .git-txt span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -2;
	width: 3px;
	height: 125px;
	border-right: 3px dashed #22d3ee;
}

.home2-contact-area .home2-git .git-bottom .git-txt span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 30px;
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(14, 42, 71, 0)), to(#0e2a47));
	background-image: -webkit-linear-gradient(bottom, rgba(14, 42, 71, 0), #0e2a47);
	background-image: -o-linear-gradient(bottom, rgba(14, 42, 71, 0), #0e2a47);
	background-image: linear-gradient(bottom, rgba(14, 42, 71, 0), #0e2a47);
}

.home2-contact-area .home2-git .git-bottom .git-txt span::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 3px;
	height: 30px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 42, 71, 0)), to(#0e2a47));
	background-image: -webkit-linear-gradient(top, rgba(14, 42, 71, 0), #0e2a47);
	background-image: -o-linear-gradient(top, rgba(14, 42, 71, 0), #0e2a47);
	background-image: linear-gradient(top, rgba(14, 42, 71, 0), #0e2a47);
}

.home2-contact-area .home2-git .git-bottom .git-title {
	display: block;
	font-size: 18px;
	color: #101820;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	text-decoration: underline;
}

.home2-contact-area .home2-git .git-bottom a {
	color: #101820;
	font-size: 24px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	margin-top: 6px;
	display: inline-block;
}

.home2-contact-area .home2-git .git-bottom a span {
	color: #22d3ee;
	margin-right: 10px;
	-webkit-transform: translateY(3px);
	-ms-transform: translateY(3px);
	transform: translateY(3px);
	display: inline-block;
}

.home2-contact-area .home2-git .git-right {
	text-align: right;
}

.home2-contact-area .home2-git .git-right img {
	max-width: 100%;
	width: auto;
	margin-top: -100px;
	position: relative;
	display: inline-block;
	z-index: 10;
}

@media (max-width: 991.98px) {
	.home2-contact-area .home2-git {
		padding-bottom: 160px;
	}
	.home2-contact-area .home2-git .git-left {
		margin-top: 30px;
		text-align: center;
	}
	.home2-contact-area .home2-git .git-left .git-bottom {
		text-align: left;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
	.home2-contact-area .home2-git .git-right {
		text-align: center;
	}
}

@media (max-width: 767.98px) {
	.home2-contact-area .home2-git .git-left .git-bottom a {
		font-size: 22px;
	}
}

@media (max-width: 575.98px) {
	.home2-contact-area .home2-git .git-left .git-bottom {
		display: block;
		text-align: center;
	}
	.home2-contact-area .home2-git .git-left .git-bottom .git-txt {
		margin: 25px 0;
	}
	.home2-contact-area .home2-git .git-left .git-bottom .git-txt span {
		display: none;
	}
}


/******** Home 3 Service Area ************/

.h3-sr {
	background-color: #edf0f3;
}


/********* Home4 About Section *************/

.h4-about-section .about-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.h4-about-section .about-bottom .about-list {
	margin-top: 40px;
}

.h4-about-section .about-bottom .about-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	color: #000000;
	text-transform: capitalize;
}

.h4-about-section .about-bottom .about-list ul li+li {
	margin-top: 15px;
}

.h4-about-section .about-bottom .about-list ul li span {
	color: #8cd102;
}

.h4-about-section .about-bottom .about-yr-ex {
	-ms-flex-item-align: end;
	align-self: flex-end;
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 20px 0px rgba(12, 12, 12, 0.16);
	padding: 0 15px 15px 0;
}

.h4-about-section .about-bottom .about-yr-ex .icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: #9f1d85;
	color: #101820;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 40px;
	border-radius: 10px 0 10px 0;
}

.h4-about-section .about-bottom .about-yr-ex .title {
	font-size: 48px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	color: #000000;
	display: inline-block;
	margin-left: 10px;
}

.h4-about-section .about-bottom .about-yr-ex .subtitle {
	display: block;
	font-weight: 700;
	color: #000000;
	text-transform: capitalize;
	margin-top: 6px;
	margin-left: 15px;
}

.h4-about-section .about-right {
	padding-left: 30px;
}

.h4-about-section .about-right .img-wrapper {
	position: relative;
}

.h4-about-section .about-right .img-wrapper .ab-right-content {
	position: absolute;
	left: -60px;
	top: -30px;
	width: 160px;
	height: 160px;
	background-color: #101820;
	border-radius: 50%;
	padding: 15px;
}

.h4-about-section .about-right .img-wrapper .ab-right-content .dark-bg {
	background-color: #000000;
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.h4-about-section .about-right .img-wrapper .ab-right-content .dark-bg span.title {
	font-size: 36px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	color: #101820;
}

.h4-about-section .about-right .img-wrapper .ab-right-content .dark-bg span.subtitle {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	text-transform: capitalize;
	color: #8cd102;
	margin-top: -6px;
}

@media (max-width: 991.98px) {
	.h4-about-section .about-right {
		margin-bottom: 60px;
		text-align: center;
	}
	.h4-about-section .about-right .img-wrapper {
		display: inline-block;
	}
	.h4-about-section .about-right .img-wrapper img {
		max-width: 100%;
		width: auto;
		display: inline-block;
	}
}

@media (max-width: 575.98px) {
	.h4-about-section .about-bottom {
		display: inline-block;
	}
	.h4-about-section .about-bottom .about-yr-ex {
		max-width: 200px;
		margin-top: 30px;
	}
}


/****************** H4 Counter Section **********************/

.h4-ct-area {
	background-repeat: no-repeat;
	background-size: cover;
}

.h4-ct-area .bixol-counter-column .bixol-icon-wrapper i {
	color: #8cd102;
}

.h4-ct-area .bixol-counter-column .bixol-ct-content h3 {
	color: #101820;
}

.h4-ct-area .bixol-counter-column .bixol-ct-content h3 span.plus {
	color: #9f1d85;
	font-size: 24px;
	margin-left: 6px;
}

.h4-ct-area .bixol-counter-column .bixol-ct-content .subtitle {
	color: #101820;
}


/*********** H4 Project Slider ***********/

.h4-project-section {
	height: 500px;
	overflow: visible;
}

.h4-project-section .title-style-2 {
	padding-right: 60px;
}

.h4-project-section .title-style-2 h3 {
	color: #101820;
}

.h4-project-section .h4-bf-desc p {
	color: #d0d0d0;
}

.h4-project-section .h4-project-slider {
	margin-top: 60px;
}

.h4-project-section .h4-project-slider .h4-project-single {
	position: relative;
	overflow: hidden;
}

.h4-project-section .h4-project-slider .h4-project-single .project-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-project-section .h4-project-slider .h4-project-single .project-content h5 {
	margin-top: 20px;
	color: #101820;
}

.h4-project-section .h4-project-slider .h4-project-single .project-content span {
	color: #8cd102;
	font-size: 15px;
}

.h4-project-section .h4-project-slider .h4-project-single .hover-content {
	position: absolute;
	top: 0;
	left: 0;
	padding: 30px;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
}

.h4-project-section .h4-project-slider .h4-project-single .hover-content a.readmore-btn {
	width: 50px;
	height: 50px;
	background-color: #9f1d85;
	display: inline-block;
	border-radius: 50%;
	color: #101820;
	text-align: center;
	line-height: 50px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-project-section .h4-project-slider .h4-project-single .hover-content a.readmore-btn:hover {
	background-color: #8cd102;
}

.h4-project-section .h4-project-slider .h4-project-single .hover-content h5 {
	color: #101820;
	margin-top: 25px;
}

.h4-project-section .h4-project-slider .h4-project-single .hover-content span {
	color: #8cd102;
	font-size: 15px;
	margin-top: 10px;
	display: inline-block;
}

.h4-project-section .h4-project-slider .h4-project-single::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-project-section .h4-project-slider .h4-project-single::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -80px;
	width: 140%;
	height: 350px;
	background-image: url(../images/home4/shape-1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0px center;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-project-section .h4-project-slider .h4-project-single:hover::before {
	opacity: 1;
	height: 100%;
}

.h4-project-section .h4-project-slider .h4-project-single:hover::after {
	opacity: 0;
}

.h4-project-section .h4-project-slider .h4-project-single:hover .project-content {
	opacity: 0;
	visibility: hidden;
}

.h4-project-section .h4-project-slider .h4-project-single:hover .hover-content {
	opacity: 1;
	visibility: visible;
}

.h4-project-section .h4-project-slider .h4-project-single:hover .hover-content a {
	-webkit-animation: 0.3s ct_fadeInDown linear;
	animation: 0.3s ct_fadeInDown linear;
}

.h4-project-section .h4-project-slider .h4-project-single:hover .hover-content h5 {
	-webkit-animation: 0.6s ct_fadeInUp linear;
	animation: 0.6s ct_fadeInUp linear;
}

.h4-project-section .h4-project-slider .h4-project-single:hover .hover-content span {
	-webkit-animation: 0.9s ct_fadeInUp linear;
	animation: 0.9s ct_fadeInUp linear;
}

.h4-project-section .h4-project-slider .slick-list {
	margin: 0 -15px;
}

.h4-project-section .h4-project-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.h4-project-section .h4-project-slider .slick-dots {
	position: absolute;
	bottom: -80px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 18px;
	display: inline-block;
	border-radius: 30px;
	overflow: hidden;
	padding: 0;
	background-color: #f5f3f0;
}

.h4-project-section .h4-project-slider .slick-dots li {
	display: inline-block;
	width: 150px;
	height: 18px;
	padding: 0;
	overflow: hidden;
}

.h4-project-section .h4-project-slider .slick-dots li button {
	font-size: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-project-section .h4-project-slider .slick-dots li.slick-active button {
	background-color: #9f1d85;
}

@media (max-width: 991.98px) {
	.h4-project-section .title-style-2 {
		text-align: center;
		padding-right: 0;
	}
	.h4-project-section .h4-bf-desc {
		margin-top: 20px;
		text-align: center;
	}
}

@media (max-width: 767.98px) {
	.h4-project-section {
		height: auto;
		padding-bottom: 180px;
	}
	.h4-project-section .h4-project-slider .slick-dots {
		background-color: transparent;
	}
	.h4-project-section .h4-project-slider .slick-dots li {
		width: 15px;
		height: 15px;
		margin-right: 6px;
	}
}

@media (max-width: 575.98px) {
	.h4-project-section .h4-project-slider {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}


/**************** Home4 Contact Area *****************/

.h4-contact-area {
	background-size: auto;
	background-repeat: no-repeat;
	background-position: left bottom;
}

.h4-contact-area .abv2-contact-left .abv2-contact-item {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.h4-contact-area .abv2-contact-left .abv2-contact-item .icon-wrapper span {
	color: #8cd102;
}

.h4-contact-area .abv2-contact-right form input {
	border: 2px solid transparent;
}

.h4-contact-area .abv2-contact-right form input:focus {
	border: 2px solid #9f1d85;
}

.h4-contact-area .abv2-contact-right form .message textarea {
	border: 2px solid transparent;
}

.h4-contact-area .abv2-contact-right form .message textarea:focus {
	border: 2px solid #9f1d85;
}

.h4-contact-area .abv2-contact-right form .submit-btn button:hover {
	background-color: #9f1d85;
}

@media (max-width: 991.98px) {
	.h4-contact-area .abv2-contact-right {
		margin-bottom: 60px;
	}
}


/********************* Blog Aea *****************/

.h4-blog-area .h4-blogs {
	margin-top: 60px;
}

.h4-blog-area .h4-blogs .h4-blog-column {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.h4-blog-area .h4-blogs .h4-blog-column .thumb-wrapper {
	position: relative;
	overflow: hidden;
}

.h4-blog-area .h4-blogs .h4-blog-column .thumb-wrapper img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .h4-blog-column .thumb-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 2;
}

.h4-blog-area .h4-blogs .h4-blog-column .thumb-wrapper::after {
	content: '';
	position: absolute;
	left: -130px;
	top: 0;
	width: 100px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content {
	padding: 25px;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-date {
	width: 80px;
	height: 80px;
	background-color: #000000;
	color: #101820;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-date .title {
	font-size: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-date .subtitle {
	margin-top: -6px;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-meta {
	height: 20px;
	margin-top: 20px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-meta span {
	text-transform: uppercase;
	color: #9f1d85;
	font-size: 13px;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-meta span+span {
	margin-left: 30px;
	position: relative;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .blog-meta span+span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -15px;
	width: 1px;
	height: 20px;
	background-color: #9f1d85;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .h4-headline {
	margin-top: 10px;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .h4-headline h4 {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .h4-headline h4:hover {
	color: #9f1d85;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .seperator {
	display: block;
	width: 100%;
	height: 2px;
	background-color: rgba(25, 25, 25, 0.09);
	margin-top: 12px;
	margin-bottom: 15px;
	position: relative;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .seperator::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45px;
	height: 4px;
	background-color: #8cd102;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .readmore-btn {
	height: 0px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .readmore-btn a {
	margin-top: 15px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: underline;
	color: #9f1d85;
}

.h4-blog-area .h4-blogs .h4-blog-column .blog-content .readmore-btn a span {
	margin-left: 3px;
}

.h4-blog-area .h4-blogs .h4-blog-column:hover {
	-webkit-box-shadow: 0px 23px 29px 0px rgba(0, 0, 0, 0.18);
	box-shadow: 0px 23px 29px 0px rgba(0, 0, 0, 0.18);
}

.h4-blog-area .h4-blogs .h4-blog-column:hover .thumb-wrapper::before {
	opacity: 0;
	visibility: hidden;
}

.h4-blog-area .h4-blogs .h4-blog-column:hover .thumb-wrapper::after {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.h4-blog-area .h4-blogs .h4-blog-column:hover .thumb-wrapper img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.h4-blog-area .h4-blogs .h4-blog-column:hover .blog-content .blog-meta {
	height: 0;
	margin-top: 3px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .h4-blog-column:hover .blog-content .readmore-btn {
	height: 36px;
}

@media (max-width: 767.98px) {
	.h4-blog-area .h4-blogs .h4-blog-column {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.h4-blog-area .h4-blogs .view-all-btn {
	text-align: center;
	margin-top: 20px;
}

.h4-blog-area .h4-blogs .view-all-btn a {
	padding: 15px 15px 15px 30px;
	background-color: #000000;
	display: inline-block;
	color: #101820;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h4-blog-area .h4-blogs .view-all-btn a span {
	margin-left: 15px;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	background-color: #101820;
	color: #000000;
	display: inline-block;
}

.h4-blog-area .h4-blogs .view-all-btn a:before {
	content: '';
	position: absolute;
	width: 50px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
	top: 0;
	left: -60px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: -1;
}

.h4-blog-area .h4-blogs .view-all-btn a:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.h4-blog-area .h4-blogs .view-all-btn a:hover:before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.h5-service-area .h4-service-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px;
	border-radius: 3px;
	border: 1px solid #eaeaea;
	position: relative;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.h5-service-area .h4-service-column::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 3px;
	background-color: #9f1d85;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-service-area .h4-service-column .icon-wrapper span {
	width: 90px;
	height: 90px;
	background-color: #f0f1f3;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 40px;
	border-radius: 50%;
}

.h5-service-area .h4-service-column .icon-wrapper span img {
	width: auto;
}

.h5-service-area .h4-service-column .service-content h5 {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-service-area .h4-service-column .service-content p {
	font-size: 15px;
	margin-top: 6px;
}

.h5-service-area .h4-service-column:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.h5-service-area .h4-service-column:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.h5-service-area .h4-service-column:hover .service-content h5 {
	color: #9f1d85;
}


/************** Home5 About Area *************/

.h5-about-area .about-left {
	position: relative;
}

.h5-about-area .about-left .img-wrapper {
	display: inline-block;
}

.h5-about-area .about-left .img-wrapper img {
	max-width: 100%;
	width: auto;
}

.h5-about-area .about-left .yr-ex {
	position: absolute;
	top: 40px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	background-color: #9f1d85;
	-webkit-box-shadow: -2.084px 11.818px 32px 0px rgba(12, 12, 12, 0.19);
	box-shadow: -2.084px 11.818px 32px 0px rgba(12, 12, 12, 0.19);
	z-index: 2;
	padding: 15px 20px;
	border-radius: 3px;
}

.h5-about-area .about-left .yr-ex .icon-wrapper span {
	width: 60px;
	height: 60px;
	background-color: #101820;
	color: #9f1d85;
	display: inline-block;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 30px;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

.h5-about-area .about-left .yr-ex .yr-content .title {
	font-size: 36px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	display: block;
	color: #101820;
}

.h5-about-area .about-left .yr-ex .yr-content .subtitle {
	color: #101820;
	font-size: 18px;
	margin-top: -6px;
	display: inline-block;
	line-height: 1.1em;
}

.h5-about-area .about-right {
	padding-left: 20px;
}

.h5-about-area .about-right .about-content {
	margin-top: 15px;
}

.h5-about-area .about-right .about-content span {
	font-weight: 700;
}

.h5-about-area .about-right .about-content .h4-pera-txt {
	margin-top: 15px;
}

.h5-about-area .about-right .about-btn {
	margin-top: 50px;
}

@media (max-width: 991.98px) {
	.h5-about-area .about-left {
		display: inline-block;
	}
	.h5-about-area .about-right {
		margin-top: 60px;
	}
}


/*********** Home5 Feature Section ************/

.h5-feature-section {
	background-color: #f3f4f8;
	height: 400px;
	overflow: visible;
}

.h5-feature-section .h5-service-slider {
	overflow: hidden;
	position: relative;
	padding-bottom: 80px;
	z-index: 10;
}

.h5-feature-section .h5-service-slider .h5-service-single {
	background-color: #101820;
	border: 1px solid #eaeaea;
	border-radius: 3px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content {
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .icon-wrapper span {
	color: #9f1d85;
	font-size: 36px;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .sr-details .h4-pera-txt {
	margin-top: 6px;
	font-size: 15px;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .sr-details .readmore-btn {
	margin-top: 15px;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .sr-details .readmore-btn a {
	color: #9f1d85;
	font-weight: 700;
	text-transform: initial;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .sr-details .readmore-btn a span {
	width: 20px;
	height: 20px;
	background-color: #9f1d85;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	line-height: 20px;
	color: #101820;
	margin-right: 6px;
	font-size: 12px;
}

.h5-feature-section .h5-service-slider .h5-service-single .service-content .sr-details .readmore-btn a:hover {
	color: #000000;
}

.h5-feature-section .h5-service-slider .h5-service-single:hover {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.h5-feature-section .h5-service-slider .slick-list {
	margin: 0 -15px;
	padding: 40px 0;
	overflow: visible;
}

.h5-feature-section .h5-service-slider .slick-list .slick-slide {
	margin: 0 15px;
	opacity: 0;
	visibility: hidden;
}

.h5-feature-section .h5-service-slider .slick-list .slick-slide.slick-active {
	opacity: 1;
	visibility: visible;
}

.h5-feature-section .h5-service-slider .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 50px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}

.h5-feature-section .h5-service-slider .slick-dots li {
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 2px solid transparent;
	padding: 0;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-feature-section .h5-service-slider .slick-dots li+li {
	margin-left: 6px;
}

.h5-feature-section .h5-service-slider .slick-dots li button {
	font-size: 0;
	border: 0;
	width: 100%;
	height: 100%;
	background-color: #d4d4d4;
	border-radius: 50%;
	padding: 0;
	display: block;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-feature-section .h5-service-slider .slick-dots li.slick-active {
	border: 2px solid #9f1d85;
	padding: 2px;
}

.h5-feature-section .h5-service-slider .slick-dots li.slick-active button {
	background-color: #9f1d85;
}

@media (max-width: 767.98px) {
	.h5-feature-section .h5-service-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 460px) {
	.h5-feature-section .h5-service-slider .slick-dots {
		bottom: 80px;
	}
}


/********************* Home5 Git *****************/

.home5-git-area {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: -185px 0;
	z-index: 1;
}

.home5-git-area::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	background-color: #000000;
	-webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
	clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
	z-index: -1;
}

.home5-git-area .git-content {
	padding-left: 60px;
}

.home5-git-area .git-content .title {
	color: #101820;
	font-size: 40px;
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	line-height: 1.2em;
}

.home5-git-area .git-content p {
	color: #c0bfbf;
	margin-top: 10px;
}

.home5-git-area .git-content .home5-primary-btn {
	margin-top: 40px;
}

@media (max-width: 991.98px) {
	.home5-git-area::before {
		width: 100%;
	}
}

@media (max-width: 767.98px) {
	.home5-git-area .git-content {
		padding-left: 0;
		text-align: center;
	}
}


/************ Home5 Feedback Area ****************/

.home5-feedback-area .title-style-3 {
	padding-right: 20px;
}

.home5-feedback-area .home5-feedback-slider .feedback-single {
	padding: 20px;
	border: 1px solid #eaeaea;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-feedback-area .home5-feedback-slider .feedback-single .feedback-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.home5-feedback-area .home5-feedback-slider .feedback-single .feedback-bottom .clients_thumb img {
	border-radius: 50%;
}

.home5-feedback-area .home5-feedback-slider .feedback-single .feedback-bottom .clients_info h6 {
	font-size: 17px;
	color: #9f1d85;
}

.home5-feedback-area .home5-feedback-slider .feedback-single .feedback-bottom .clients_info span {
	color: #000000;
	font-size: 14px;
}

.home5-feedback-area .home5-feedback-slider .feedback-single .feedback-bottom .clients_info .feedback-star span {
	color: #ffc601;
}

.home5-feedback-area .home5-feedback-slider .feedback-single:hover {
	-webkit-box-shadow: 0px 27px 32px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 27px 32px 0px rgba(12, 12, 12, 0.16);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.home5-feedback-area .home5-feedback-slider .slick-list {
	margin: 0 -15px;
	padding: 40px 0;
	overflow: visible;
}

.home5-feedback-area .home5-feedback-slider .slick-list .slick-slide {
	margin: 0 15px;
	opacity: 0;
	visibility: hidden;
}

.home5-feedback-area .home5-feedback-slider .slick-list .slick-slide.slick-active {
	opacity: 1;
	visibility: visible;
}

.home5-feedback-area .home5-feedback-slider .slick-arrow {
	position: absolute;
	top: -95px;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid #9f1d85;
	color: #9f1d85;
	font-size: 20px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-feedback-area .home5-feedback-slider .slick-arrow.prev-btn {
	right: 80px;
}

.home5-feedback-area .home5-feedback-slider .slick-arrow:hover {
	color: #101820;
	background-color: #9f1d85;
}

@media (max-width: 991.98px) {
	.home5-feedback-area .home5-feedback-slider {
		margin-top: 60px;
	}
	.home5-feedback-area .home5-feedback-slider .slick-list {
		padding: 60px 0;
	}
	.home5-feedback-area .home5-feedback-slider .slick-arrow {
		top: -30px;
		right: auto;
		left: calc(50%);
		-webkit-transform: translateX(-86%);
		-ms-transform: translateX(-86%);
		transform: translateX(-86%);
		z-index: 10;
	}
	.home5-feedback-area .home5-feedback-slider .slick-arrow.next-btn {
		left: calc(50% + 75px);
	}
}

@media (max-width: 767.98px) {
	.home5-feedback-area .title-style-3 {
		text-align: center;
	}
	.home5-feedback-area .home5-feedback-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


/****************** Home5 Portfolio Area ***********************/

.home5-portfolio-area {
	background-color: #000000;
	height: 400px;
	overflow: visible;
}

.home5-portfolio-area .title-style-3 .bixol-subtitle {
	color: #101820;
}

.home5-portfolio-area .title-style-3 h3 {
	color: #101820;
}

.home5-portfolio-area .bf-desc {
	padding-left: 20px;
}

.home5-portfolio-area .bf-desc p {
	color: #d6d6d6;
}

.home5-portfolio-area .home5-portfolio-slider {
	position: relative;
	z-index: 10;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	background-color: #101820;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .img-wrapper {
	position: relative;
	border-radius: 4px 4px 0 0;
	overflow: hidden;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .img-wrapper .overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .img-wrapper .overlay a {
	width: 60px;
	height: 60px;
	background-color: #9f1d85;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .img-wrapper .overlay a:hover {
	-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.32);
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.32);
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom {
	padding: 20px;
	border: 1px solid #eaeaea;
	border-top: 0;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom h5 {
	text-transform: capitalize;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom .subtitle {
	margin-top: 6px;
	height: 22px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom .subtitle span {
	color: #555555;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom .readmore-btn {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom .readmore-btn a {
	color: #9f1d85;
	display: inline-block;
	margin-top: 6px;
	font-weight: 700;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single .portfolio-bottom .readmore-btn a span {
	width: 25px;
	height: 25px;
	background-color: #9f1d85;
	display: inline-block;
	border-radius: 50%;
	color: #101820;
	font-size: 12px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 6px;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single:hover {
	-webkit-box-shadow: 0px 15px 15px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 15px 15px 0px rgba(12, 12, 12, 0.16);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single:hover .img-wrapper .overlay {
	opacity: 1;
	visibility: visible;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single:hover .img-wrapper .overlay a {
	-webkit-animation: 0.5s fadeInDown;
	animation: 0.5s fadeInDown;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single:hover .portfolio-bottom .subtitle {
	height: 0;
}

.home5-portfolio-area .home5-portfolio-slider .portfolio-single:hover .portfolio-bottom .readmore-btn {
	height: 40px;
}

.home5-portfolio-area .home5-portfolio-slider .slick-list {
	margin: 0 -15px;
	padding: 40px 0;
}

.home5-portfolio-area .home5-portfolio-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home5-portfolio-area .home5-portfolio-slider .slick-arrow {
	position: absolute;
	top: -80px;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 0;
	border-radius: 50%;
	border: 0;
	background-color: #9f1d85;
	color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home5-portfolio-area .home5-portfolio-slider .slick-arrow:hover {
	background-color: #494949;
}

.home5-portfolio-area .home5-portfolio-slider .slick-arrow.prev-btn {
	right: 80px;
}

@media (max-width: 991.98px) {
	.home5-portfolio-area {
		height: auto;
		padding-bottom: 60px;
	}
	.home5-portfolio-area .title-style-3 {
		text-align: center;
	}
	.home5-portfolio-area .bf-desc {
		padding-left: 0;
		text-align: center;
		margin-top: 20px;
	}
	.home5-portfolio-area .home5-portfolio-slider {
		margin-top: 100px;
	}
	.home5-portfolio-area .home5-portfolio-slider .slick-arrow {
		top: -60px;
		right: auto;
		left: calc(50%);
		-webkit-transform: translateX(-86%);
		-ms-transform: translateX(-86%);
		transform: translateX(-86%);
		z-index: 10;
	}
	.home5-portfolio-area .home5-portfolio-slider .slick-arrow.next-btn {
		left: calc(50% + 75px);
	}
}

@media (max-width: 767.98px) {
	.home5-portfolio-area .home5-portfolio-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


/*************** Home5 Blog Area *****************/

.h5-blog-area {
	background-color: #f3f4f8;
}

.h5-blog-area .h5-blog-slider .h5-blog-single {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	background-color: #101820;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .thumb-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .thumb-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 2;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .thumb-wrapper::after {
	content: '';
	position: absolute;
	left: -130px;
	top: 0;
	width: 100px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content {
	padding: 25px;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-date {
	width: 80px;
	height: 80px;
	background-color: #9f1d85;
	color: #101820;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-date .title {
	font-size: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-date .subtitle {
	margin-top: -6px;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-meta {
	margin-top: 20px;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-meta span {
	text-transform: uppercase;
	color: #9f1d85;
	font-size: 13px;
	color: #676f95;
	font-weight: 500;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-meta span i {
	margin-right: 6px;
	color: #9f1d85;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .blog-meta span+span {
	margin-left: 20px;
	position: relative;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .h4-headline {
	margin-top: 10px;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .h4-headline h4 {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .h4-headline h4:hover {
	color: #9f1d85;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .seperator {
	display: block;
	width: 100%;
	height: 2px;
	background-color: rgba(25, 25, 25, 0.09);
	margin-top: 12px;
	margin-bottom: 15px;
	position: relative;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .seperator::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45px;
	height: 4px;
	background-color: #9f1d85;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .readmore-btn a {
	margin-top: 15px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: underline;
	color: #000000;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-blog-area .h5-blog-slider .h5-blog-single .blog-content .readmore-btn a span {
	margin-left: 3px;
}

.h5-blog-area .h5-blog-slider .h5-blog-single:hover {
	-webkit-box-shadow: 0px 18px 16px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 18px 16px 0px rgba(12, 12, 12, 0.16);
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.h5-blog-area .h5-blog-slider .h5-blog-single:hover .thumb-wrapper::before {
	opacity: 0;
	visibility: hidden;
}

.h5-blog-area .h5-blog-slider .h5-blog-single:hover .thumb-wrapper::after {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.h5-blog-area .h5-blog-slider .h5-blog-single:hover .blog-content .readmore-btn a {
	color: #9f1d85;
}

.h5-blog-area .h5-blog-slider .slick-list {
	padding: 40px 0;
	margin: 0 -15px;
}

.h5-blog-area .h5-blog-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.h5-blog-area .h5-blog-slider .slick-arrow {
	position: absolute;
	top: -80px;
	right: 0;
	width: 60px;
	height: 60px;
	border: 0;
	border-radius: 50%;
	background-color: #494949;
	color: #101820;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.h5-blog-area .h5-blog-slider .slick-arrow.prev-btn {
	right: 80px;
}

.h5-blog-area .h5-blog-slider .slick-arrow:hover {
	background-color: #9f1d85;
}

@media (max-width: 991.98px) {
	.h5-blog-area .title-style-3 {
		text-align: center;
	}
	.h5-blog-area .bf-desc {
		text-align: center;
		margin-top: 20px;
	}
	.h5-blog-area .h5-blog-slider {
		margin-top: 100px;
	}
	.h5-blog-area .h5-blog-slider .slick-arrow {
		top: -60px;
		right: auto;
		left: calc(50%);
		-webkit-transform: translateX(-86%);
		-ms-transform: translateX(-86%);
		transform: translateX(-86%);
		z-index: 10;
	}
	.h5-blog-area .h5-blog-slider .slick-arrow.next-btn {
		left: calc(50% + 75px);
	}
}

@media (max-width: 767.98px) {
	.h5-blog-area .h5-blog-slider {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}

.home6-process-section .home6-process-bottom {
	padding-top: 60px;
	background-size: 830px;
	background-position: center 25px;
	background-repeat: no-repeat;
}

.home6-process-section .home6-process-bottom .process-column {
	text-align: center;
	padding: 0 30px;
	margin-bottom: 60px;
}

.home6-process-section .home6-process-bottom .process-column .icon-wrapper span {
	width: 90px;
	height: 90px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #101820;
	-webkit-box-shadow: 0px 13px 35px 0px rgba(46, 105, 255, 0.2);
	box-shadow: 0px 13px 35px 0px rgba(46, 105, 255, 0.2);
	border-radius: 50%;
	font-size: 40px;
	color: #FEE715;
}

.home6-process-section .home6-process-bottom .process-column .icon-wrapper .count {
	width: 20px;
	height: 20px;
	font-size: 15px;
	background-color: #b19eff;
	color: #070d26;
	font-weight: 700;
	margin-left: -15px;
}

.home6-process-section .home6-process-bottom .process-column .item-content {
	margin-top: 20px;
}

.home6-process-section .home6-process-bottom .process-column .item-content .h6-headline h5 {
	display: inline-block;
	position: relative;
}

.home6-process-section .home6-process-bottom .process-column .item-content .h6-headline h5::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 30px;
	height: 3px;
	background-color: #ffd532;
}

.home6-process-section .home6-process-bottom .process-column .item-content .h6-pera-txt {
	margin-top: 20px;
}

@media (max-width: 991.98px) {
	.home6-process-section .home6-process-bottom {
		background-image: none !important;
	}
}


/************* About Section *******************/

.home6-about-section {
	position: relative;
}

.home6-about-section .drop-shape {
	position: absolute;
	left: 0;
	top: -50%;
	display: inline-block;
}

.home6-about-section .about-right .about-list {
	margin-top: 30px;
}

.home6-about-section .about-right .about-list .item {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-transform: capitalize;
	color: #001c8f;
	font-size: 20px;
	margin-bottom: 10px;
	display: inline-block;
}

.home6-about-section .about-right .about-list .item i {
	margin-right: 10px;
	font-size: 18px;
	color: #628dfb;
}

.home6-about-section .about-right .home6-primary-btn {
	margin-top: 30px;
}

@media (max-width: 991.98px) {
	.home6-about-section .about-left img {
		max-width: 100%;
		width: auto;
	}
	.home6-about-section .about-right {
		margin-top: 60px;
	}
}


/*************** Booking Area *****************/

.home6-booking-area .title h2 {
	color: #101820;
	font-weight: 600;
}

.home6-booking-area .booking-form {
	margin-top: 20px;
}

.home6-booking-area .booking-form .input-field {
	position: relative;
}

.home6-booking-area .booking-form .input-field input,
.home6-booking-area .booking-form .input-field select {
	width: 100%;
	padding: 17px 45px 17px 18px;
	border: 1px solid #eaeaea;
	border-radius: 5px;
	color: #9b9b9b;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	margin-bottom: 20px;
}

.home6-booking-area .booking-form .input-field input::-webkit-input-placeholder,
.home6-booking-area .booking-form .input-field select::-webkit-input-placeholder {
	color: #9b9b9b;
}

.home6-booking-area .booking-form .input-field input:-ms-input-placeholder,
.home6-booking-area .booking-form .input-field select:-ms-input-placeholder {
	color: #9b9b9b;
}

.home6-booking-area .booking-form .input-field input::-ms-input-placeholder,
.home6-booking-area .booking-form .input-field select::-ms-input-placeholder {
	color: #9b9b9b;
}

.home6-booking-area .booking-form .input-field input::placeholder,
.home6-booking-area .booking-form .input-field select::placeholder {
	color: #9b9b9b;
}

.home6-booking-area .booking-form .input-field::after {
	content: '';
	position: absolute;
	top: 18px;
	right: 20px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #9b9b9b;
}

.home6-booking-area .booking-form .name-field::after {
	content: '\f007';
}

.home6-booking-area .booking-form .phone-field::after {
	content: '\f879';
}

.home6-booking-area .booking-form .submit-btn {
	margin-bottom: 20px;
}

.home6-booking-area .booking-form .submit-btn button {
	width: 100%;
	height: 60px;
	border: 0;
	background-color: #ffd532;
	text-align: center;
	line-height: 60px;
	display: inline-block;
	border-radius: 5px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #FEE715;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-booking-area .booking-form .submit-btn button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	width: 50px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.342)), to(rgba(255, 255, 255, 0.301)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.home6-booking-area .booking-form .submit-btn button:hover {
	background-color: #ffd632e1;
}

.home6-booking-area .booking-form .submit-btn button:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}


/******************* Service Area *****************/

.home6-service-area .home6-service-bottom {
	margin-top: 60px;
}

.home6-service-area .home6-service-bottom .column-wrapper {
	min-height: 360px;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column {
	background-color: #101820;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	border-radius: 5px;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column .item-content {
	padding: 20px;
	text-align: center;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper {
	margin-top: -60px;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper span {
	width: 75px;
	height: 75px;
	background-color: #FEE715;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	color: #101820;
	font-size: 36px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column .item-content .h6-headline {
	margin-top: 20px;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column .item-content .h6-pera-txt {
	margin-top: 15px;
	display: none;
}

.home6-service-area .home6-service-bottom .column-wrapper .services-column:hover .item-content .icon-wrapper span {
	background-color: #628dfb;
}

@media (max-width: 991.98px) {
	.home6-service-area .home6-service-bottom .column-wrapper {
		margin-bottom: 30px;
		min-height: auto;
	}
}

@media (max-width: 767.98px) {
	.home6-service-area .home6-service-bottom .column-wrapper {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.home6-service-area .home6-primary-btn {
	text-align: center;
}


/*************** Choose Us ***************/

.home6-choose-us .choose-left .choose-list {
	margin-top: 30px;
}

.home6-choose-us .choose-left .choose-list .item {
	margin-bottom: 15px;
}

.home6-choose-us .choose-left .choose-list .item span {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #FEE715;
	text-transform: capitalize;
}

.home6-choose-us .choose-left .choose-list .item span i {
	margin-right: 10px;
	color: #628dfb;
}

.home6-choose-us .choose-left .home6-primary-btn {
	margin-top: 30px;
}

.home6-choose-us .choose-right {
	padding-left: 30px;
	position: relative;
}

.home6-choose-us .choose-right .img-wrapper {
	overflow: hidden;
}

.home6-choose-us .choose-right .img-wrapper img {
	border-radius: 50%;
	width: 100%;
}

.home6-choose-us .choose-right .video-btn {
	position: absolute;
	bottom: 20%;
	left: 20px;
	z-index: 10;
}

.home6-choose-us .choose-right .video-btn a {
	width: 70px;
	height: 70px;
	background-color: #FEE715;
	display: inline-block;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
	font-size: 24px;
	-webkit-animation: 1.8s ripple_animation linear infinite;
	animation: 1.8s ripple_animation linear infinite;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-choose-us .choose-right .video-btn a:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

@media (max-width: 991.98px) {
	.home6-choose-us .choose-right {
		margin-bottom: 60px;
	}
	.home6-choose-us .choose-right .img-wrapper img {
		max-width: 100%;
		width: auto;
	}
}


/************ Get In Touch **************/

.get-in-touch {
	padding: 100px 0;
}

.get-in-touch .git-content {
	padding: 60px 25px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
	border-radius: 8px;
}

.get-in-touch .git-content .git-left span {
	font-size: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #101820;
	text-transform: capitalize;
}

.get-in-touch .git-content .git-btn {
	text-align: right;
}

.get-in-touch .git-content .git-btn a {
	width: 260px;
	height: 55px;
	background-color: #ffd532;
	color: #FEE715;
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
	border-radius: 5px;
	text-align: center;
	line-height: 55px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 1;
}

.get-in-touch .git-content .git-btn a span {
	margin-right: 25px;
}

.get-in-touch .git-content .git-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -40px;
	width: 30px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.342)), to(rgba(255, 255, 255, 0.301)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.301));
	z-index: -1;
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.get-in-touch .git-content .git-btn a:hover {
	background-color: #ffd632e1;
}

.get-in-touch .git-content .git-btn a:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

@media (max-width: 767.98px) {
	.get-in-touch .git-content .git-btn {
		text-align: left;
		margin-top: 30px;
	}
}


/*************** Pricing Table ***************/

.home6-pricing-table {
	background-color: #f6f7fa;
}

.home6-pricing-table .home6-pricing {
	margin-top: 60px;
	padding: 0 70px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column {
	background-color: #101820;
	padding: 30px 50px;
	border-radius: 6px;
	text-align: center;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	margin-bottom: 30px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .icon-wrapper span {
	width: 100px;
	height: 100px;
	background-color: #628dfb;
	display: inline-block;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #101820;
	font-size: 50px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .h6-headline {
	margin-top: 30px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .feature-list {
	margin-top: 30px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .feature-list ul li {
	color: #001c8f;
	font-weight: 500;
	border-top: 1px solid #eaeaea;
	padding: 8px 0;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .feature-list ul li:last-child {
	border-bottom: 1px solid #eaeaea;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-area {
	margin-top: 30px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-area h2 {
	display: inline-block;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-area span {
	color: #FEE715;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-btn {
	margin-top: 30px;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-btn a {
	width: 170px;
	height: 50px;
	background-color: transparent;
	border: 1px solid #001c8f;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	border-radius: 4px;
	color: #001c8f;
	font-weight: 600;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-pricing-table .home6-pricing .home6-pricing-column .price-btn a:hover {
	background-color: #ffd532;
	border: 1px solid #ffd532;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected {
	background-color: #628dfb;
	padding: 40px 60px;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .icon-wrapper span {
	background-color: #101820;
	color: #628dfb;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .h6-headline h5 {
	color: #101820;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .feature-list ul li {
	border-top: 1px solid rgba(246, 247, 250, 0.2);
	color: #101820;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .feature-list ul li:last-child {
	border-bottom: 1px solid rgba(246, 247, 250, 0.2);
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .price-area h2 {
	color: #101820;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .price-area span {
	color: #101820;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .price-btn a {
	background-color: #ffd532;
	border: 1px solid #ffd532;
}

.home6-pricing-table .home6-pricing .home6-pricing-column.selected .price-btn a:hover {
	background-color: #ffd632e1;
}

@media (max-width: 767.98px) {
	.home6-pricing-table .home6-pricing .home6-pricing-column {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.home6-pricing-table .home6-pricing .home6-pricing-column.selected {
		-webkit-transform: initial;
		-ms-transform: initial;
		transform: initial;
	}
}


/******************** Home6 Team Area ***************/

.home6-team .title-style-4 p {
	width: 80%;
	display: inline-block;
}

.home6-team .home6-team-wrapper {
	margin-top: 50px;
}

.home6-team .home6-team-wrapper .team-column {
	margin-bottom: 30px;
}

.home6-team .home6-team-wrapper .team-column .team-top {
	position: relative;
	border-radius: 50%;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper {
	width: auto;
	height: auto;
	border-radius: 50%;
	background-color: #101820;
	border: 4px solid #101820;
	-webkit-box-shadow: 0px 1px 30px 0px rgba(0, 28, 143, 0.1);
	box-shadow: 0px 1px 30px 0px rgba(0, 28, 143, 0.1);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper img {
	border-radius: 50%;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper .team-social {
	position: absolute;
	bottom: -60px;
	right: -100px;
	width: 100%;
	text-align: right;
	padding-right: 50px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	z-index: 1;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper .team-social::after {
	content: '';
	position: absolute;
	bottom: -45px;
	right: 0;
	width: 220px;
	height: 135px;
	background-image: url(../images/home6/team-shape.png);
	background-size: auto;
	z-index: -1;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper .team-social a {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: #101820;
	font-size: 15px;
	color: #001c8f;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
}

.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper .team-social a+a {
	margin-left: 6px;
}

.home6-team .home6-team-wrapper .team-column .team-content {
	text-align: center;
	margin-top: 20px;
}

.home6-team .home6-team-wrapper .team-column .team-content span {
	color: #628dfb;
	margin-top: 3px;
	display: block;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .thumb-wrapper::before {
	opacity: 1;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social {
	right: 0;
	bottom: 42px;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social a:nth-child(1) {
	-webkit-animation: 1s ct_fadeInUp;
	animation: 1s ct_fadeInUp;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social a:nth-child(2) {
	-webkit-animation: 1.3s ct_fadeInUp;
	animation: 1.3s ct_fadeInUp;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social a:nth-child(3) {
	-webkit-animation: 1.6s ct_fadeInUp;
	animation: 1.6s ct_fadeInUp;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social a:nth-child(4) {
	-webkit-animation: 1.8s ct_fadeInUp;
	animation: 1.8s ct_fadeInUp;
}

.home6-team .home6-team-wrapper .team-column:hover .team-top .team-social a:nth-child(5) {
	-webkit-animation: 2s ct_fadeInUp;
	animation: 2s ct_fadeInUp;
}

@media (max-width: 991.98px) {
	.home6-team .home6-team-wrapper .team-column .team-top {
		text-align: center;
	}
	.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper {
		display: inline-block;
	}
	.home6-team .home6-team-wrapper .team-column .team-top .thumb-wrapper img {
		max-width: 100%;
		width: auto;
	}
}

.home6-feedback-area .title-style-4 p {
	width: 80%;
	display: inline-block;
}

.home6-feedback-area .home6-feedback-bottom {
	position: relative;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span {
	position: absolute;
	display: inline-block;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(1) {
	top: 0;
	left: 0;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(2) {
	top: 150px;
	left: -60px;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(3) {
	top: 300px;
	left: 0;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(4) {
	right: 0;
	top: -60px;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(5) {
	right: 90px;
	top: 120px;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(6) {
	right: -80px;
	top: 190px;
}

.home6-feedback-area .home6-feedback-bottom .clients-thumbs span:nth-child(7) {
	right: 80px;
	top: 300px;
}

.home6-feedback-area .home6-feedback-slider {
	max-width: 660px;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper {
	padding: 0 20px 20px 20px;
	background-color: rgba(255, 255, 255, 0.9);
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single {
	position: relative;
	-webkit-box-shadow: 0px 10px 25px 0px rgba(0, 28, 143, 0.05);
	box-shadow: 0px 10px 25px 0px rgba(0, 28, 143, 0.05);
	background-color: #101820;
	text-align: center;
	padding: 20px 30px;
	-webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
	box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .img-wrapper {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
	-webkit-box-shadow: 0px 13px 35px 0px rgba(5, 71, 241, 0.2);
	box-shadow: 0px 13px 35px 0px rgba(5, 71, 241, 0.2);
	margin-top: -65px;
	padding: 3px;
	background-color: #101820;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .img-wrapper img {
	border-radius: 50%;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .feedback-txt {
	margin-top: 20px;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .clients-content {
	margin-top: 20px;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .clients-content span {
	display: block;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .clients-content span.title {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	text-transform: capitalize;
	color: #122a93;
	font-size: 18px;
}

.home6-feedback-area .home6-feedback-slider .feedback-wrapper .feedback-single .clients-content span.designation {
	font-size: 15px;
	display: block;
	color: #666666;
}

.home6-feedback-area .home6-feedback-slider .slick-list {
	padding: 60px 0;
	margin: 0 -15px;
}

.home6-feedback-area .home6-feedback-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home6-feedback-area .home6-feedback-slider .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 00px;
}

.home6-feedback-area .home6-feedback-slider .slick-dots li {
	display: inline-block;
}

.home6-feedback-area .home6-feedback-slider .slick-dots li+li button {
	margin-left: 6px;
}

.home6-feedback-area .home6-feedback-slider .slick-dots li button {
	width: 8px;
	height: 8px;
	background-color: #001c8f;
	font-size: 0;
	border: 0;
	border-radius: 50%;
	padding: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-feedback-area .home6-feedback-slider .slick-dots li.slick-active button {
	width: 25px;
	border-radius: 30px;
	background-color: #9f1d85;
}


/********************* Home6 Blog ********************/

.home6-blog-area .home6-blog-bottom {
	margin-top: 50px;
}

.home6-blog-area .home6-blog-bottom .blog-column {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 30px;
}

.home6-blog-area .home6-blog-bottom .blog-column .thumb-wrapper img {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 15px;
	z-index: 1;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#001c8f), to(#10182000));
	background-image: -webkit-linear-gradient(bottom, #001c8f 0%, #10182000 100%);
	background-image: -o-linear-gradient(bottom, #001c8f 0%, #10182000 100%);
	background-image: linear-gradient(to top, #001c8f 0%, #10182000 100%);
	z-index: -1;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content .h6-headline h6 {
	color: #101820;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content .blog-meta {
	margin-top: 10px;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content .blog-meta span {
	color: #101820;
	display: inline-block;
	font-size: 14px;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content .blog-meta span i {
	margin-right: 6px;
}

.home6-blog-area .home6-blog-bottom .blog-column .blog-content .blog-meta span+span {
	margin-left: 15px;
}

.home6-blog-area .home6-blog-bottom .blog-column:hover .thumb-wrapper img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item+.blog-item {
	margin-top: 25px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .thumb-wrapper .thumb {
	overflow: hidden;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .thumb-wrapper .thumb img {
	width: 100px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content {
	margin-left: 15px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content .h6-headline h6 {
	font-size: 18px;
	font-weight: 600;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content .blog-meta {
	margin-top: 10px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content .blog-meta span {
	font-size: 14px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content .blog-meta span i {
	margin-right: 6px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item .blog-content .blog-meta span+span {
	margin-left: 15px;
}

.home6-blog-area .home6-blog-bottom .blog-right .blog-item:hover .thumb-wrapper img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.header-style-7 .header-navigation {
	padding-top: 20px;
}

.header-style-7.header-sticky .header-navigation {
	padding-top: 10px;
}

.slider-7-wrapper {
	position: relative;
}

.slider-7-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background-color: #000921;
}

.hero-slider-7 {
	max-width: 1520px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -90px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hero-slider-7::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 5000px;
	background-color: #000000;
	height: 300px;
	z-index: 1;
}

.hero-slider-7 rs-module-wrap {
	position: relative;
	z-index: 10;
}

.home7-booking-form .booking-form {
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 3px;
	padding: 30px;
}

.home7-booking-form .booking-form .form-title span {
	font-size: 24px;
	color: #101820;
	font-weight: 700;
}

.home7-booking-form .booking-form form {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}

.home7-booking-form .booking-form form input {
	width: 27%;
	padding: 16px 18px;
	border: 0;
	margin-right: 15px;
	border-radius: 3px;
	font-size: 15px;
}

.home7-booking-form .booking-form form .select-field {
	width: 27%;
	margin-right: 15px;
}

.home7-booking-form .booking-form form .select-field select {
	width: 100%;
	padding: 16px 18px;
	border: 0;
	border-radius: 3px;
	font-size: 15px;
	color: #3a4268;
}

.home7-booking-form .booking-form form button {
	padding: 16px;
	width: 185px;
	text-align: center;
	background-color: #ffce00;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	border: 0;
	border-radius: 3px;
	font-size: 15px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.home7-booking-form .booking-form form button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -40px;
	width: 30px;
	height: 100%;
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.438)), to(rgba(255, 255, 255, 0.527)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.438), rgba(255, 255, 255, 0.527));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.438), rgba(255, 255, 255, 0.527));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.438), rgba(255, 255, 255, 0.527));
	z-index: -1;
}

.home7-booking-form .booking-form form button:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

@media (max-width: 991.98px) {
	.home7-booking-form .booking-form form {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.home7-booking-form .booking-form form input {
		width: 47%;
		margin-bottom: 15px;
	}
	.home7-booking-form .booking-form form .select-field {
		width: 47%;
	}
	.home7-booking-form .booking-form form button {
		width: 47%;
	}
}

@media (max-width: 767.98px) {
	.home7-booking-form .booking-form form input {
		width: 100%;
		margin-right: 0;
	}
	.home7-booking-form .booking-form form .select-field {
		width: 100%;
		margin-right: 0;
	}
	.home7-booking-form .booking-form form button {
		width: 100%;
		margin-top: 15px;
	}
}


/*************** Home7 About *************/

.home7-about .ab-left {
	position: relative;
}

.home7-about .ab-left .ex-year {
	position: absolute;
	right: -40px;
	top: 40px;
	background-color: #101820;
	width: 200px;
	height: 150px;
	display: inline-block;
	padding-left: 20px;
	z-index: 3;
}

.home7-about .ab-left .ex-year::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: 170px;
	height: 100%;
	background-color: transparent;
	z-index: -1;
	border-top: 10px solid #ffce00;
	border-left: 10px solid #ffce00;
}

.home7-about .ab-left .ex-year .title {
	font-size: 90px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #0022a0;
	display: block;
	margin-top: -10px;
	position: relative;
}

.home7-about .ab-left .ex-year .title sup {
	font-weight: 400;
	color: #ffce00;
	font-size: 34px;
	position: absolute;
	top: 40px;
}

.home7-about .ab-left .ex-year .subtitle {
	font-size: 18px;
	font-weight: 700;
	margin-top: -20px;
	display: block;
	color: #000000;
	text-transform: capitalize;
}

.home7-about .about-right {
	padding-left: 40px;
}

.home7-about .about-right .about-list {
	margin-top: 40px;
}

.home7-about .about-right .about-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: #000000;
}

.home7-about .about-right .about-list ul li+li {
	margin-top: 10px;
}

.home7-about .about-right .about-list ul li span {
	margin-right: 15px;
	width: 20px;
}

.home7-about .about-right .about-btn {
	margin-top: 40px;
}

.home7-about .about-right .about-btn a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #0022a0;
	padding: 14px 25px 10px 20px;
	border-radius: 50px;
}

.home7-about .about-right .about-btn a .icon {
	color: #ffce00;
	font-size: 30px;
}

.home7-about .about-right .about-btn a .tel-number {
	margin-left: 10px;
}

.home7-about .about-right .about-btn a .tel-number .title {
	display: block;
	text-transform: uppercase;
	font-size: 15px;
	color: #101820;
}

.home7-about .about-right .about-btn a .tel-number .number {
	color: #ffce00;
	font-size: 20px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

@media (max-width: 991.98px) {
	.home7-about .about-right {
		margin-top: 60px;
		padding-left: 0;
	}
}


/*************** Home7 Services *************/

.home7-services-area {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom left;
}

.home7-services-area .home7-service-slider {
	margin-top: 60px;
}

.home7-services-area .home7-service-slider .single-item .thumb-wrapper {
	position: relative;
}

.home7-services-area .home7-service-slider .single-item .thumb-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.home7-services-area .home7-service-slider .single-item .thumb-wrapper .hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-services-area .home7-service-slider .single-item .thumb-wrapper .hover-overlay a {
	background-color: #ffce00;
	font-size: 15px;
	font-weight: 700;
	color: #0a0a0a;
	display: inline-block;
	padding: 8px 18px;
	border-radius: 30px;
}

.home7-services-area .home7-service-slider .single-item .icon-wrapper {
	margin-top: -55px;
}

.home7-services-area .home7-service-slider .single-item .icon-wrapper span {
	width: 95px;
	height: 95px;
	background-color: #f0f0f0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 40px;
	color: #0022a0;
	position: relative;
	z-index: 1;
}

.home7-services-area .home7-service-slider .single-item .icon-wrapper span::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 55px;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: -1;
	border-top: 6px solid #0022a0;
	border-right: 6px solid #0022a0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-services-area .home7-service-slider .single-item .sr-content .h7-pera-txt {
	margin-top: 20px;
}

.home7-services-area .home7-service-slider .single-item:hover .thumb-wrapper .hover-overlay {
	opacity: 1;
	visibility: visible;
}

.home7-services-area .home7-service-slider .single-item:hover .thumb-wrapper .hover-overlay a {
	-webkit-animation: 1s ct_fadeInUp;
	animation: 1s ct_fadeInUp;
}

.home7-services-area .home7-service-slider .single-item:hover .icon-wrapper span::before {
	border-color: #ffce00;
}

.home7-services-area .home7-service-slider .slick-list {
	margin: 0 -15px;
}

.home7-services-area .home7-service-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home7-services-area .home7-service-slider .slick-dots {
	position: absolute;
	bottom: -50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home7-services-area .home7-service-slider .slick-dots li {
	display: inline-block;
}

.home7-services-area .home7-service-slider .slick-dots li button {
	width: 35px;
	height: 3px;
	background-color: #b4b6c0;
	font-size: 0;
	padding: 0;
	border: 0;
	margin-right: 6px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-services-area .home7-service-slider .slick-dots li.slick-active button {
	background-color: #0022a0;
}

@media (max-width: 767.98px) {
	.home7-services-area .home7-service-slider {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.home7-services-area .home7-service-slider .single-item .sr-content {
		text-align: center;
	}
}


/*************** Home7 Team Area **************/

.home7-team-area .home7-team-bottom {
	margin-top: 60px;
}

.home7-team-area .home7-team-bottom .team-column {
	text-align: center;
	border: 2px solid #eaeaea;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
	margin-bottom: 50px;
}

.home7-team-area .home7-team-bottom .team-column .img-wrapper {
	position: relative;
}

.home7-team-area .home7-team-bottom .team-column .img-wrapper .hover-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	padding: 0 20px;
}

.home7-team-area .home7-team-bottom .team-column .img-wrapper .hover-content p {
	color: #101820;
	font-size: 15px;
}

.home7-team-area .home7-team-bottom .team-column .img-wrapper .hover-content a {
	margin-top: 20px;
	padding: 8px 18px;
	background-color: #ffce00;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 700;
	color: #0a0a0a;
}

.home7-team-area .home7-team-bottom .team-column .team-content {
	padding: 20px 0 40px 0;
}

.home7-team-area .home7-team-bottom .team-column .team-content span {
	font-size: 15px;
}

.home7-team-area .home7-team-bottom .team-column .team-social {
	position: absolute;
	left: 50%;
	bottom: -15px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: inline-block;
	background-color: #101820;
}

.home7-team-area .home7-team-bottom .team-column .team-social a {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	border: 1px solid #eaeaea;
	background-color: #101820;
	color: #b7b7b7;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-team-area .home7-team-bottom .team-column .team-social a+a {
	margin-left: -3px;
	border-left: 0;
}

.home7-team-area .home7-team-bottom .team-column .team-social a:hover {
	color: #101820;
	background-color: #0022a0;
}

.home7-team-area .home7-team-bottom .team-column:hover {
	border: 2px solid #0022a0;
}

.home7-team-area .home7-team-bottom .team-column:hover .img-wrapper .hover-content {
	opacity: 1;
	visibility: visible;
}

.home7-team-area .home7-team-bottom .team-column:hover .img-wrapper .hover-content p {
	-webkit-animation: 800ms ct_fadeInUp;
	animation: 800ms ct_fadeInUp;
}

.home7-team-area .home7-team-bottom .team-column:hover .img-wrapper .hover-content a {
	-webkit-animation: 1.3s ct_fadeInUp;
	animation: 1.3s ct_fadeInUp;
}

@media (max-width: 575.98px) {
	.home7-team-area .home7-team-bottom .team-column {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


/************* Home7 Case Studies ****************/

.home7-case-studies {
	background-color: #f0f0f0;
}

.home7-case-studies .view-all-btn {
	text-align: right;
}

.home7-case-studies .view-all-btn a {
	padding: 10px 15px 10px 40px;
	background-color: #0022a0;
	color: #101820;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 700;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.home7-case-studies .view-all-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 100%;
	z-index: 1;
	left: -40px;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.384)), to(rgba(255, 255, 255, 0.39)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.384), rgba(255, 255, 255, 0.39));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.384), rgba(255, 255, 255, 0.39));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.384), rgba(255, 255, 255, 0.39));
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.home7-case-studies .view-all-btn a span {
	margin-left: 20px;
	width: 30px;
	height: 30px;
	background-color: #101820;
	border-radius: 50%;
	color: #0022a0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.home7-case-studies .view-all-btn a:hover::before {
	-webkit-animation: 900ms shine;
	animation: 900ms shine;
}

.home7-case-studies .studies-content-wrapper {
	margin-top: 50px;
}

.home7-case-studies .studies-content-wrapper .studies-column {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 25px;
}

.home7-case-studies .studies-content-wrapper .studies-column .studies-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-case-studies .studies-content-wrapper .studies-column .studies-content h6 {
	color: #101820;
}

.home7-case-studies .studies-content-wrapper .studies-column .studies-content span {
	color: #ffce00;
	font-size: 15px;
	margin-top: 3px;
	display: inline-block;
}

.home7-case-studies .studies-content-wrapper .studies-column:hover .studies-content {
	opacity: 1;
	visibility: visible;
}

.home7-case-studies .studies-content-wrapper .studies-column:hover .studies-content h6 {
	-webkit-animation: 800ms ct_fadeInUp;
	animation: 800ms ct_fadeInUp;
}

.home7-case-studies .studies-content-wrapper .studies-column:hover .studies-content span {
	-webkit-animation: 1s ct_fadeInUp;
	animation: 1s ct_fadeInUp;
}

@media (max-width: 991.98px) {
	.home7-case-studies .view-all-btn {
		text-align: left;
		margin-top: 20px;
	}
}


/************ Home7 Pricing Plan ************/

.home7-pricing-plan .price-filter-btns {
	text-align: right;
}

.home7-pricing-plan .price-filter-btns .nav {
	border-bottom: 0;
	display: inline-block;
	background-color: #0022a0;
	padding: 6px 8px;
	border-radius: 30px;
}

.home7-pricing-plan .price-filter-btns .nav li {
	display: inline-block;
}

.home7-pricing-plan .price-filter-btns .nav li+li a {
	margin-left: -10px;
}

.home7-pricing-plan .price-filter-btns .nav li a {
	color: #101820;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 15px;
	font-weight: 600;
	padding: 6px 15px;
	display: inline-block;
	border-radius: 30px;
}

.home7-pricing-plan .price-filter-btns .nav li a.active {
	background-color: #ffce00;
	color: #000000;
}

.home7-pricing-plan .tab-content {
	margin-top: 80px;
	padding: 0 50px;
}

.home7-pricing-plan .tab-content .price-column {
	background-color: #f6f8fa;
	padding: 25px;
	min-height: 390px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 40px;
}

.home7-pricing-plan .tab-content .price-column.pro {
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.home7-pricing-plan .tab-content .price-column.pro .price-wrapper::before {
	border-right: 11px solid #6e5708;
}

.home7-pricing-plan .tab-content .price-column.pro .price-wrapper .price-tag {
	background-color: #ffc80f;
}

.home7-pricing-plan .tab-content .price-column.pro .price-wrapper .price-tag .title {
	color: #000000;
}

.home7-pricing-plan .tab-content .price-column.pro .price-wrapper .price-tag .subtitle {
	color: #6e6e6e;
}

.home7-pricing-plan .tab-content .price-column.premium {
	-webkit-transform: translateY(15px);
	-ms-transform: translateY(15px);
	transform: translateY(15px);
}

.home7-pricing-plan .tab-content .price-column .price-wrapper {
	position: absolute;
	right: 20px;
	top: -25px;
	text-align: center;
	padding-top: 12px;
}

.home7-pricing-plan .tab-content .price-column .price-wrapper::before {
	content: '';
	position: absolute;
	top: 13px;
	left: -22px;
	z-index: 10;
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-left: 11px solid transparent;
	border-right: 11px solid #0a1e6a;
}

.home7-pricing-plan .tab-content .price-column .price-wrapper .price-tag {
	width: 130px;
	height: 140px;
	background-color: #5675e8;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 52%, 50% 100%, 50% 100%, 0 52%);
	clip-path: polygon(0 0, 100% 0, 100% 52%, 50% 100%, 50% 100%, 0 52%);
	padding-top: 15px;
}

.home7-pricing-plan .tab-content .price-column .price-wrapper .price-tag span {
	color: #101820;
}

.home7-pricing-plan .tab-content .price-column .price-wrapper .price-tag span.title {
	font-size: 40px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.home7-pricing-plan .tab-content .price-column .price-wrapper .price-tag span.subtitle {
	font-size: 20px;
	display: inline-block;
	-webkit-transform: translateY(-12px);
	-ms-transform: translateY(-12px);
	transform: translateY(-12px);
	font-weight: 500;
	color: #c7cee7;
}

.home7-pricing-plan .tab-content .price-column .icon-wrapper span {
	display: inline-block;
}

.home7-pricing-plan .tab-content .price-column .title span {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 38px;
	color: #000000;
}

.home7-pricing-plan .tab-content .price-column .feature-list {
	margin-top: 20px;
	margin-bottom: 60px;
}

.home7-pricing-plan .tab-content .price-column .feature-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home7-pricing-plan .tab-content .price-column .feature-list ul li+li {
	margin-top: 15px;
}

.home7-pricing-plan .tab-content .price-column .feature-list ul li span {
	display: inline-block;
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.home7-pricing-plan .tab-content .price-column .feature-list ul li span img {
	width: 20px;
}

.home7-pricing-plan .tab-content .price-column .feature-list ul li p {
	margin-left: 6px;
	color: #000000;
	font-size: 18px;
}

.home7-pricing-plan .tab-content .price-column .price-btn {
	text-align: center;
	position: absolute;
	bottom: 25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home7-pricing-plan .tab-content .price-column .price-btn a {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #000000;
	font-size: 15px;
}

.home7-pricing-plan .tab-content .price-column .price-btn a:hover {
	color: #0022a0;
}

@media (max-width: 991.98px) {
	.home7-pricing-plan .price-filter-btns {
		text-align: left;
		margin-top: 30px;
	}
}

@media (max-width: 767.98px) {
	.home7-pricing-plan .title-style-5 {
		text-align: center;
	}
	.home7-pricing-plan .price-filter-btns {
		text-align: center;
	}
	.home7-pricing-plan .tab-content {
		padding: 0;
	}
	.home7-pricing-plan .tab-content .price-column {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}
	.home7-pricing-plan .tab-content .price-column.pro {
		-webkit-transform: initial;
		-ms-transform: initial;
		transform: initial;
	}
	.home7-pricing-plan .tab-content .price-column.premium {
		-webkit-transform: initial;
		-ms-transform: initial;
		transform: initial;
	}
}


/*********** Home7 Feedback Area *************/

.home7-feedback-area {
	background-color: #00061e;
}

.home7-feedback-area .feedback-left {
	padding-right: 60px;
}

.home7-feedback-area .feedback-left .title-style-5 h3 {
	color: #101820;
}

.home7-feedback-area .feedback-left .title-style-5 p {
	color: #101820;
}

.home7-feedback-area .feedback-left .title-style-5 p a {
	color: #ffce00;
}

.home7-feedback-area .feedback-left .middle-content {
	margin-top: 20px;
}

.home7-feedback-area .feedback-left .middle-content p {
	color: #ffce00;
}

.home7-feedback-area .feedback-left .middle-content p span {
	color: #101820;
}

.home7-feedback-area .feedback-left .middle-content p:nth-child(2) {
	color: #101820;
}

.home7-feedback-area .feedback-left .contact-form {
	margin-top: 30px;
}

.home7-feedback-area .feedback-left .contact-form form .field-double {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input {
	width: 50%;
	padding: 12px 18px;
	border: 0;
	border-radius: 3px;
	background-color: #1a1f35;
	color: #dfdfdf;
	font-size: 15px;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input::-webkit-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input:-ms-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input::-ms-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input::placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .field-double input+input {
	margin-left: 15px;
}

.home7-feedback-area .feedback-left .contact-form form .select-field {
	margin-top: 15px;
}

.home7-feedback-area .feedback-left .contact-form form .select-field select {
	width: 100%;
	padding: 12px 18px;
	border: 0;
	border-radius: 3px;
	background-color: #1a1f35;
	color: #dfdfdf;
	font-size: 15px;
}

.home7-feedback-area .feedback-left .contact-form form .message {
	margin-top: 15px;
}

.home7-feedback-area .feedback-left .contact-form form .message textarea {
	width: 100%;
	padding: 12px 18px;
	background-color: #1a1f35;
	color: #dfdfdf;
	border: 0;
	border-radius: 3px;
}

.home7-feedback-area .feedback-left .contact-form form .message textarea::-webkit-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .message textarea:-ms-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .message textarea::-ms-input-placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .message textarea::placeholder {
	color: #dfdfdf;
}

.home7-feedback-area .feedback-left .contact-form form .submit-btn {
	margin-top: 30px;
}

.home7-feedback-area .feedback-left .contact-form form .submit-btn button {
	padding: 10px 10px 10px 20px;
	border: 0;
	border-radius: 30px;
	background-color: #0022a0;
	color: #101820;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.home7-feedback-area .feedback-left .contact-form form .submit-btn button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -40px;
	width: 30px;
	height: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.37)), to(rgba(255, 255, 255, 0.267)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0.267));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0.267));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0.267));
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	transform: skew(-10deg);
}

.home7-feedback-area .feedback-left .contact-form form .submit-btn button span {
	margin-left: 12px;
	width: 25px;
	height: 25px;
	background-color: #ffc80f;
	display: inline-block;
	border-radius: 50%;
	line-height: 25px;
	text-align: center;
	color: #000000;
}

.home7-feedback-area .feedback-left .contact-form form .submit-btn button:hover::before {
	-webkit-animation: 800ms shine;
	animation: 800ms shine;
}

.home7-feedback-area .feedback-right .title-style-5 h3 {
	color: #101820;
}

.home7-feedback-area .feedback-right .title-style-5 p {
	color: #101820;
}

.home7-feedback-area .feedback-right .home7-feedback-slider {
	margin-top: 60px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column {
	position: relative;
	background-color: #1a1f35;
	padding: 40px 20px 50px 20px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column::after {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	width: 60px;
	height: 60px;
	background-color: #00061e;
	z-index: 2;
	-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .quote-icon {
	position: absolute;
	top: -65px;
	left: 20px;
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 160px;
	font-weight: bold;
	line-height: 0;
	letter-spacing: -13px;
	color: #394267;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-content p {
	color: #e4e4e4;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-rating {
	text-align: right;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-rating span {
	color: #ffc601;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 20px;
	position: absolute;
	bottom: -60px;
	left: 40px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .client-thumb {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	position: relative;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .client-thumb img {
	border-radius: 50%;
	background-color: #101820;
	padding: 4px;
	position: relative;
	z-index: 2;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .client-thumb .svg-1 {
	fill: #b3a987;
	position: absolute;
	top: -10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .client-thumb .svg-2 {
	fill: #3f4e64;
	position: absolute;
	bottom: -10px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .clients-name {
	padding-bottom: 5px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .clients-name h6 {
	color: #101820;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column .feedback-client-info .clients-name span {
	color: #4369f7;
	font-size: 14px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column:hover .quote-icon {
	color: #ffc80f;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column:hover .feedback-client-info .client-thumb .svg-1 {
	fill: #ffc80f;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .feedback-column:hover .feedback-client-info .client-thumb .svg-2 {
	fill: #0022a0;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-list {
	padding: 30px 0 100px 0;
	margin: 0 -15px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-list .slick-slide {
	margin: 0 15px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-dots {
	position: absolute;
	bottom: -60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-dots li {
	display: inline-block;
	margin-right: 10px;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-dots li button {
	width: 35px;
	height: 3px;
	padding: 0;
	border: 0;
	background-color: #0022a0;
	font-size: 0;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.home7-feedback-area .feedback-right .home7-feedback-slider .slick-dots li.slick-active button {
	background-color: #ffce00;
}

@media (max-width: 767.98px) {
	.home7-feedback-area .feedback-right .home7-feedback-slider {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 991.98px) {
	.home7-feedback-area .feedback-right {
		margin-top: 60px;
	}
}

@media (max-width: 767.98px) {
	.home7-feedback-area .feedback-right .home7-feedback-slider .slick-dots li button {
		width: 10px;
		height: 10px;
	}
}


/************* Home7 Brands ***************/

.home7-brands .brand-wrapper .img-wrapper img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

/*  */
.slider-form{
	z-index: 1;
	position: relative;
	background-color: #101820;
	padding: 30px 35px 20px 35px;
    /* border: 1px solid red; */
	height: 410px;
	top: 60px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
	/* width: 550px; */
	margin: 0 20px;

}

  
  .slider-form .step-container {
	position: relative;
	text-align: center;
	transform: translateY(-43%);
  }
  
  .slider-form .step-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #101820;
	border: 2px solid #007bff;
	line-height: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	cursor: pointer; /* Added cursor pointer */
  }
  
  .slider-form .step-line {
	position: absolute;
	top: 16px;
	left: 50px;
	width: calc(100% - 100px);
	height: 2px;
	background-color: #007bff;
	z-index: -1;
  }
  
  .slider-form #multi-step-form{
	overflow-x: hidden;
  }
/*  */
#multi-step-form .step h3{
	font-size: 18px;
    font-weight: 700;
    color: #FEE715;
    text-align: center;
    line-height: 1.125;
    margin: 0 0 10px 0;
}
/* multi-step-form1 */
.multi-step-form1 .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* max-width: 600px; */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.multi-step-form1 .checkbox-group > * {
  margin: 0.5rem 0.5rem;
}
.multi-step-form1 .checkbox-group-legend {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c9c9c;
  text-align: center;
  line-height: 1.125;
  margin: 0 0 10px 0;
}
.multi-step-form1 .checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.multi-step-form1 .checkbox-input:checked + .multi-step-form1 .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}
.multi-step-form1 .checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}
.multi-step-form1 .checkbox-input:checked + .checkbox-tile .checkbox-icon, 
.multi-step-form1 .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #2260ff;
}
.multi-step-form1 .checkbox-input:focus + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.multi-step-form1 .checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}
.multi-step-form1 .checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 14rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #101820;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}
.multi-step-form1 .checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #101820;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.multi-step-form1 .checkbox-tile:hover {
  border-color: #2260ff;
}
.multi-step-form1 .checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}
.multi-step-form1 .checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
  width: 60px;
}
.multi-step-form1 .checkbox-icon img {
  width: 100%;
  height: 100%;
}
.multi-step-form1 .checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 18px;
    margin-top: 5px;
}
/* end multi-step-form1 */

/* multi-step-form2 */
.multi-step-form2 .plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* max-width: 970px; */
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #101820;
  /* border-radius: 20px; */
  /* -webkit-box-shadow: 0px 8px 10px 0px #d8dfeb; */
  /* box-shadow: 0px 8px 10px 0px #d8dfeb; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.multi-step-form2 .plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.multi-step-form2 .plans .plan {
  cursor: pointer;
  margin-bottom: 15px;
  width: 100%;
}
.multi-step-form2 .plans .plan:nth-child(3){
	margin-bottom: 0px;
}
.multi-step-form2 .plans .plan .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e1e2e7;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
  align-items: center;
}
.multi-step-form2 .plans .plan .plan-content-img{
	margin-right: 20px;
}
.multi-step-form2 .plans .plan .plan-content img {
  /* margin-right: 30px; */
  width: 45px;
}
.multi-step-form2 .plans .plan .plan-details span {
  margin-bottom: 6px;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #252f42;
  font-weight: 400;
}
.multi-step-form2 .title {
  font-size: 20px;
  font-weight: 500;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  color: #252f42;
  margin-bottom: 20px;
}
.multi-step-form2 .plans .plan .plan-details p {
  color: #646a79;
  font-size: 16px;
  line-height: 18px;
}
.multi-step-form2 .plans .plan .plan-content:hover {
  -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}
.multi-step-form2 .plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: #216fe0;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #101820;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #0066ff;
}
.multi-step-form2 .plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #216ee0;
  background: #eaf1fe;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}
@media screen and (max-width: 991px) {
	.multi-step-form2 .plans {
    	margin: 0px;
    	-webkit-box-orient: vertical;
    	-webkit-box-direction: normal;
    	-ms-flex-direction: column;
    	flex-direction: column;
    	-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
    	padding: 0px;
	}
	.multi-step-form2 .plans .plan {
	    width: 100%;
	}
	.multi-step-form2 .plan.complete-plan {
	    margin-top: 15px;
	}
	.multi-step-form2 .plans .plan .plan-content .plan-details {
	    /* width: 70%; */
	    display: inline-block;
	}
	.multi-step-form2 .plans .plan input[type="radio"]:checked + .plan-content:after {
	    top: 45%;
	    -webkit-transform: translate(-50%);
	    -ms-transform: translate(-50%);
	    transform: translate(-50%);
  	}
}
@media screen and (max-width: 767px) {
	.multi-step-form2 .plans .plan .plan-content .plan-details {
    	width: 100%;
    	display: inline-block;
		text-align: left;
  	}
}
@media screen and (max-width: 540px) {
	.multi-step-form2 .plans .plan .plan-content img {
    	margin-bottom: 0px;
    	height: 56px;
    	-webkit-transition: height 0.4s;
    	-o-transition: height 0.4s;
    	transition: height 0.4s;
  	}
  	.multi-step-form2 .plans .plan input[type="radio"]:checked + .plan-content:after {
    	top: 20px;
    	right: 10px;
  	}
  	.multi-step-form2 .plans .plan .plan-content .plan-details {
    	width: 100%;
  	}
  	/* .multi-step-form2 .plans .plan .plan-content {
    	padding: 20px;
    	-webkit-box-orient: vertical;
    	-webkit-box-direction: normal;
    	-ms-flex-direction: column;
    	flex-direction: column;
    	-webkit-box-align: baseline;
    	-ms-flex-align: baseline;
    	align-items: baseline;
  	} */
}
/* inspiration */
.multi-step-form2 .inspiration {
  font-size: 12px;
  margin-top: 50px;
  position: absolute;
  bottom: 10px;
  font-weight: 300;
}
.multi-step-form2 .inspiration a {
  color: #666;
}
@media screen and (max-width: 767px) {
  /* inspiration */
  .multi-step-form2 .inspiration {
    display: none;
  }
}
/* end multi-step-form2 */

/* multi-step-form3 */
.multi-step-form3 .main-container {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.multi-step-form3 .main-container h2 {
  /* margin: 0 0 80px 0; */
  color: #555;
  font-size: 30px;
  font-weight: 300;
}
.multi-step-form3 .radio-buttons {
  width: 100%;
  margin: 20px auto 0;
  text-align: center;
}
.multi-step-form3 .custom-radio input {
  display: none;
}
.multi-step-form3 .radio-btn {
  margin: 5px;
  width: 140px;
  height: 170px;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}

.multi-step-form3 .radio-btn > i {
  color: #101820;
  background-color: #FFDAE9;
  font-size: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}

.multi-step-form3 .radio-btn .hobbies-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.multi-step-form3 .radio-btn .hobbies-icon img{
  display:block;
  width:100%;
  margin-bottom:10px;
}
.multi-step-form3 .radio-btn .hobbies-icon i {
  color: #FFDAE9;
  line-height: 80px;
  font-size: 60px;
}
.multi-step-form3 .radio-btn .hobbies-icon h3 {
  color: #555;
  font-size: 18px;
  font-weight: 300!important;
  text-transform: capitalize;
  /* letter-spacing:1px; */
  margin-bottom: 0px !important;
}

.multi-step-form3 .custom-radio input:checked + .radio-btn {
  border: 2px solid #216ee0;
}
.multi-step-form3 .custom-radio input:checked + .radio-btn > i {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
/* end multi-step-form3 */

/* multi-step-form4 */
.multi-step-form4{
	margin-top: 30px;
    padding: 0 60px;
}
.multi-step-form4 .input-group-prepend .input-group-text{
	border-radius:.25rem 0 0 .25rem;
}
/* end multi-step-form4 */

/* multi-step-form5 */
  .multi-step-form5 {
	/* width: 28em;
	background-color: #101820; */
	padding: 2em 2em 5px;
	/* position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	border-radius: 0.8em;
	box-shadow: 0 45px 60px rgba(30, 22, 1, 0.3); */
  }
  .multi-step-form5 .inputfield {
	width: 100%;
	display: flex;
	justify-content: center;
  }
  .multi-step-form5 .input {
	height: 40px;
	width: 40px;
	border: 2px solid #dad9df;
	outline: none;
	text-align: center;
	font-size: 1.5em;
	border-radius: 0.3em;
	background-color: #101820;
	outline: none;
	/*Hide number field arrows*/
	-moz-appearance: textfield;
	margin-right: 10px;
  }
  .multi-step-form5 input[type="number"]::-webkit-outer-spin-button,
  .multi-step-form5 input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
  }
  .multi-step-form5 #submit {
	background-color: #044ecf;
	border: none;
	outline: none;
	font-size: 1.2em;
	padding: 0.8em 2em;
	color: #101820;
	border-radius: 0.1em;
	margin: 1em auto 0 auto;
	cursor: pointer;
  }
  .multi-step-form5 .show {
	display: block;
  }
  .multi-step-form5 .hide {
	display: none;
  }
  .multi-step-form5 .input:disabled {
	color: #89888b;
  }
  .multi-step-form5 .input:focus {
	border: 3px solid #ffb800;
  }
  .multi-step-form5 .inputfield-txt{
	text-align: center;
	margin-top: 15px;
  }
  .multi-step-form5 .inputfield-txt p{
	font-size: 13px;
  }
  #multi-step-form .btns{
	text-align: center;
  }
  #multi-step-form .btns .btn{
	padding: 6px 30px;
    line-height: 25px;
    margin: auto;
    margin-top: 12px;
	width: 110px;
	background: #9f1d85;
  }
  #multi-step-form .btns .btn:hover{
	border: 1px solid #9f1d85;
  }
/* end multi-step-form5 */

.banner-img-bg{
	/* background-image: url(../img/bg.png); */
	background-image: linear-gradient(#6756b3, white);
	height: 550px;
	/* border: 1px solid; */
}
.banner-img-bg .carousel-inner .carousel-item-img{
	width: 300px;
    margin: auto;
}
.banner-img-bg .carousel-inner .carousel-item .carousel-captions{
    text-align: center;
    margin-top: 12px;
}
.banner-img-bg .carousel-inner .carousel-item .carousel-captions h3{
    font-size: 24px;
}
.banner-img-bg .carousel .carousel-item img{
	width: 100%;
	height: 100%;
}
.banner-img-bg .carousel{
	margin-top: 50px;
}
.banner-img-bg .carousel h4{
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: white;
    text-decoration: underline;
}
/*  */
.ps-timeline-sec h2{
	text-align: center;
	margin-top: 70px;
}
.ps-timeline-sec {
  position: relative;
  background: #101820;
}
.ps-timeline-sec .container {
  position: relative;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .ps-timeline-sec .container ol:before {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 130px !important;
    left: 36px !important;
  }
  .ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: inherit !important;
    left: 36px;
  }
  .ps-timeline-sec .container ol.ps-timeline {
    margin: 130px 0 !important;
    border-left: 2px solid #348e80;
    padding-left: 0 !important;
    padding-top: 120px !important;
    border-top: 0 !important;
    margin-left: 25px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li {
    height: 220px;
    float: none !important;
    width: inherit !important;
    /*   &:nth-child(2) {
           .img-handler-bot {
               img {
                   width: 70px;
               }
           }
       } */
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 120px;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
    margin-bottom: 0 !important;
    top: 20px;
    width: 50% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span {
    left: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-top {
    width: 90% !important;
    float: right !important;
    right: 0;
    top: -10px;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    width: 90% !important;
    float: right !important;
    right: 0;
    top: -60px;
  }
}
.ps-timeline-sec .container ol:before {
  background: #348e80;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: -4px;
}
.ps-timeline-sec .container ol:after {
  background: #348e80;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  right: 8px;
  top: -4px;
}
.ps-timeline-sec .container ol.ps-timeline {
  margin: 225px 0;
  padding: 0;
  border-top: 2px solid #348e80;
  list-style: none;
}
.ps-timeline-sec .container ol.ps-timeline li {
  float: left;
  width: 33%;
  padding-top: 30px;
  position: relative;
}
.ps-timeline-sec .container ol.ps-timeline li h5 {
  text-align: center;
  margin: -30px 0 -40px 50px;
  font-weight: 700px;
  color: maroon;
}
.ps-timeline-sec .container ol.ps-timeline li span {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  background: #101820;
  /*   border-left-color: 4px solid $brand-color-g;
     border-right-color: transparent; 
   border-top: 4px solid $brand-color-g;
   border-bottom-color: transparent; */
  border-radius: 50%;
  box-shadow: 0 0 0 0px #101820;
  text-align: center;
  line-height: 50px -10;
  color: #df8625;
  font-size: 2em;
  font-style: normal;
  position: absolute;
  top: -26px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top {
  border-top: 4px solid #348e80;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  top: -50px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  bottom: 90px;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot {
  border-bottom: 4px solid #348e80;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  bottom: -50px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  top: 90px;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li p {
  /* text-align: center; */
  width: 100%;
  margin: 5px auto;
  font-size: 18px;
}
.ps-timeline-sec .container ol.ps-timeline li h4 {
  font-size: 20px;
  color: #ab078e;
  /* text-decoration: underline; */
  margin-bottom: 8px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 105px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
  position: absolute;
  margin-top: 50px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bottom {
  position: absolute;
  margin: 5px;
  text-align: center;
}
/*  */

/*  */
.how-it-works{
	padding-top: 5px;
}
.how-it-works .title-style-4 h2{
	margin-bottom: 15px;
}
.what-we-offer{
	padding-top: 50px;
}
.what-we-offer .title-style-2 h3{
	margin-bottom: 30px;
	color: #FEE715;
}
.what-we-offer .h4-service-column .icon-wrapper span{
	width: 60px;
    height: 60px;
}
.what-we-offer .h4-service-column .icon-wrapper span img {
    width: 100%;
}
.what-we-offer .h4-service-column .service-content h5{
	font-size: 20px;
}
.why-use-book{
	padding-top: 30px;
}
.big-on-trust{
	padding-top: 15px;
	padding-bottom: 40px;
}
.big-on-trust .title-style-2 h3{
	margin-top: 0;
	color: #FEE715;
}
.big-on-trust .title-style-2{
	margin-bottom: 50px;
}
.big-on-trust .bixol-service-middle .img-wrapper-img{
	width: 350px;
	/* border: 3px solid #6457c3; */
    padding: 20px;
    border-radius: 8px;
}
.big-on-trust .bixol-services .bixol-service-item .bixol-service-content{
	width: 100%;
	padding: 20px 30px 20px 50px;
}
.big-on-trust .bixol-services .bixol-service-item .bixol-service-content h5{
	font-size: 20px;
}
.why-use-book .title-style-2 h3{
	color: #FEE715;
}
.why-use-book .sr3-service-bottom .sr3-sr-item .icon-wrapper span img{
	width: 50px;
}
.our-services .title-style-2 h3{
	margin-bottom: 20px;
    color: #FEE715;
}
.our-services .title-style-2 p{
	margin-bottom: 35px;
}
.our-services .row h4{
	margin-bottom: 20px;
    font-size: 28px;
    color: #21bdfe;
}
.why-choose-us{
	padding-top: 50px;
	padding-bottom: 50px;
}
.why-choose-us .bixol-title-area p{
	margin-top: 8px;
	text-align: justify;
}
.our-services .service-single-item .srv2-service-content p{
	margin-bottom: 5px;
	margin-top: 25px!important;
}
/*  */

/* mission-vission */
.mission-vission{
	padding-top: 50px;
	padding-bottom: 50px;
}
.mission-vission .title-style-4 h2{
	margin-bottom: 20px;
	font-size: 40px;
}
.mission-vission .mission-vission-txt{
	text-align: justify;
}
.mission-vission .mission-vission-txt p{
	padding-bottom: 10px;
	line-height: 28px;
}
.mission-vission .mission-vission-img img,
.mission-vission .mission-vission-img1 img,
.mission-vission img{
	width: 100%;
}
.mission-vission .mission-vission-img{
	width: 300px;
    margin: 50px auto 0;
}
.mission-vission .mission-vission-img1{
	width: 360px;
    margin: 10px auto 0;
}
.mission-vission .mission-vission-img2{
	width: 400px;
    margin: 15px auto 0;
}
.mission-vission .mission-vission-img3{
	width: 500px;
    margin: 10px auto 0;
}
.mission-vission .mission-vission-img4{
	width: 400px;
    margin: 20px auto 0;
}
.mission-vission .mission-vission-img5{
	width: 550px;
    margin: 45px auto 0;
}
.mission-vission-txt1{
	margin-top: 30px;
}
.mission-vission .mission-vission-txt1 h3{
	font-size: 24px;
	margin-bottom: 6px;
}
/* end mission-vission */

/* browse-categories */
.browse-categories{
	padding-top: 20px;
}
.browse-categories .home6-service-bottom{
	margin-top: 40px;
}
  .browse-categories .custom-slider{
	width: 100%;
	margin: auto;
  }
  .browse-categories .custom-box{
	/* width: 200px; */
	/* height: 100px; */
	/* text-align:center; */
	/* box-shadow: 2px 2px 3px gray; */
	margin-right: 20px;
	/* font-size: 5em; */
	/* padding: 50px; */
  }
  .browse-categories .slick-prev, .browse-categories .slick-next{
	position: absolute;
	line-height: 0;
	top: 50%;
	width: 30px;
	height: 30px;
	display: block;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	border-radius: 50px;
	background: #043e46;
	display: none!important;
  }
  .browse-categories .slick-slider{
	user-select: none;
  }
  .browse-categories .slick-next{
	right: -30px;
  }
  .browse-categories .slick-prev{
	left: -30px;
  }
  .browse-categories .slick-next:before{
	content: '\003e';
	font-size: 1.2em;
	font-weight: 1000;
	padding-left: 12px;
	color: white;
  }
  .browse-categories .slick-prev:before{
	content: '\003c';
	font-size: 1.2em;
	font-weight: 1000;
	padding-left: 9px;
	color: white;
  }
  .browse-categories .slick-list{
	padding-top: 40px;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column{
	border: 2px solid #e8ebf3;
	box-shadow:none;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .h6-headline h5{
	font-size: 15px;
    font-weight: 500;
	color: #000;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .h6-headline{
	margin-top: 15px;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper span{
	/* border: 2px dashed #FEE71554; */
	border: 2px dashed #ab078e;
	background-color: #101820;
	color: #FEE715;
	width: 95px;
	height: 95px;
	border-left: 0;
    border-right: 0;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column .item-content{
	padding: 20px 10px 15px 10px;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column:hover .item-content .icon-wrapper span{
	background-color: #101820;
	border-color: #ed7e28;
  }
  .browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper span img{
	width: 65px;
  }
  .browse-categories .home6-service-bottom .column-wrapper{
	min-height: 0;
  }
  .browse-categories .home6-primary-btn{
	margin-top: 20px;
  }
  .browse-categories .home6-primary-btn a{
	height: 40px;
	line-height: 40px;
  }
/* end browse-categories */

/* multi-step-form1 */
.multi-step-form1 .f-dropdown {
	--max-scroll: 3;
	position: relative;
	z-index: 10;
  }
  .multi-step-form1 .f-dropdown select {
	display: none;
  }
  .multi-step-form1 .f-dropdown > span {
	cursor: pointer;
	padding: 8px 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	position: relative;
	color: #bbb;
	border:2px solid #e1e2e7;
	background: #101820;
	transition: color 0.2s ease, border-color 0.2s ease;
  }
  .multi-step-form1 .f-dropdown > span > span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 12px;
	font-size: 18px;
	font-weight: 400;
  }
  .multi-step-form1 .f-dropdown > span img {
	width: 45px;
	margin-right: 12px;
  }
  .multi-step-form1 .f-dropdown > span:before, 
  .multi-step-form1 .f-dropdown > span:after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 4px;
	border-radius: 1px;
	top: 50%;
	right: 15px;
	background: #000;
	transition: all 0.3s ease;
  }
  .multi-step-form1 .f-dropdown > span:before {
	margin-right: 4px;
	transform: scale(0.96, 0.8) rotate(50deg);
  }
  .multi-step-form1 .f-dropdown > span:after {
	transform: scale(0.96, 0.8) rotate(-50deg);
  }
  .multi-step-form1 .f-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	max-height: calc(var(--max-scroll) * 78px);
	top: 25px;
	left: 0;
	z-index: 1;
	right: 0;
	background: #101820;
	border: 1px solid #CCC;
	border-radius: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	transform-origin: 0 0;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transform: translate(0, 5px);
  }
  .multi-step-form1 .f-dropdown ul li {
	padding: 0;
	margin: 0;
  }
  .multi-step-form1 .f-dropdown ul li a {
	cursor: pointer;
	display: block;
	padding: 8px 12px;
	color: #000;
	text-decoration: none;
	outline: none;
	position: relative;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
  }
  .multi-step-form1 .f-dropdown ul li a img {
	width: 45px;
	margin-right: 15px;
  }
  .multi-step-form1 .f-dropdown ul li a:hover {
	color: #5C6BC0;
  }
  .multi-step-form1 .f-dropdown ul li.active a {
	color: #000;
    background: #dedede;
  }
  .multi-step-form1 .f-dropdown ul li.active a:before, 
  .multi-step-form1 .f-dropdown ul li.active a:after {
	--scale: 0.6;
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	position: absolute;
	right: 12px;
	top: 50%;
	opacity: 0;
	background: #101820;
	transition: all 0.2s ease;
  }
  .multi-step-form1 .f-dropdown ul li.active a:before {
	transform: rotate(45deg) scale(var(--scale));
  }
  .multi-step-form1 .f-dropdown ul li.active a:after {
	transform: rotate(-45deg) scale(var(--scale));
  }
  .multi-step-form1 .f-dropdown ul li.active a:hover:before, 
  .multi-step-form1 .f-dropdown ul li.active a:hover:after {
	--scale: 0.9;
	opacity: 1;
  }
  .multi-step-form1 .f-dropdown ul li:first-child a {
	border-radius: 6px 6px 0 0;
  }
  .multi-step-form1 .f-dropdown ul li:last-child a {
	border-radius: 0 0 6px 6px;
  }
  .multi-step-form1 .f-dropdown.disabled {
	opacity: 0.7;
  }
  .multi-step-form1 .f-dropdown.disabled > span {
	cursor: not-allowed;
  }
  .multi-step-form1 .f-dropdown.filled > span {
	color: #000;
	height: 60px;
  }
  .multi-step-form1 .f-dropdown.open {
	z-index: 15;
  }
  .multi-step-form1 .f-dropdown.open > span {
	border-color: #AAA;
  }
  .multi-step-form1 .f-dropdown.open > span:before,
  .multi-step-form1 .f-dropdown.open > span:after {
	background: #000;
  }
  .f-dropdown.open > span:before {
	transform: scale(0.96, 0.8) rotate(-50deg);
  }
  .multi-step-form1 .f-dropdown.open > span:after {
	transform: scale(0.96, 0.8) rotate(50deg);
  }
  .multi-step-form1 .f-dropdown.open ul {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 40px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  }
  
  /* --------------------------- */
  .multi-step-form1 .f-group {
	/* max-width: 470px; */
	margin: 0 auto 15px;
	text-align: left;
  }
  .multi-step-form1 .f-group select {
	width: 100%;
  }
  
  .multi-step-form1 .f-control {
	font-size: 14px;
	line-height: normal;
	color: #000;
	display: inline-block;
	background-color: #101820;
	border: #ccc 1px solid;
	border-radius: 6px;
	padding: 8px 12px;
	outline: none;
	max-width: 250px;
  }
  
  .multi-step-form1 label {
	width: 100%;
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
  }
/* end multi-step-form1 */

/* trust-safety */
.trust-safety{
	padding-bottom: 20px;
}
.trust-safety .title-style-2 h3{
	color: #FEE715;
}
.trust-safety .steps-bottom {
    margin-top: 25px;
}
.trust-safety .icon-wrapper img{
	width: 55px;
}
/* end trust-safety */

/* working-hours */
  .working-hours .main{
	width:100%;  
  }
  .working-hours select {
	  display: none !important;
  }
  .working-hours .dropdown-select {
	  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
	  background-repeat: repeat-x;
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
	  background-color: #101820;
	  border-radius: 4px;
	  border: 1px solid #ced4da;
	  box-sizing: border-box;
	  cursor: pointer;
	  display: block;
	  float: left;
	  font-size: 14px;
	  font-weight: normal;
	  height: 40px;
	  line-height: 40px;
	  outline: none;
	  padding-left: 12px;
	  padding-right: 30px;
	  position: relative;
	  text-align: left !important;
	  transition: all 0.2s ease-in-out;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	  white-space: nowrap;
	  width: auto;
  }
  .working-hours .dropdown-select:focus {
	  background-color: #101820;
  }
  .working-hours .dropdown-select:hover {
	  background-color: #101820;
  }
  .working-hours .dropdown-select:active,
  .working-hours .dropdown-select.open {
	  background-color: #101820 !important;
	  border-color: #bbb;
	  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
  }
  .working-hours .dropdown-select:after {
	  height: 0;
	  width: 0;
	  border-left: 4px solid transparent;
	  border-right: 4px solid transparent;
	  border-top: 4px solid #777;
	  -webkit-transform: origin(50% 20%);
	  transform: origin(50% 20%);
	  transition: all 0.125s ease-in-out;
	  content: '';
	  display: block;
	  margin-top: -2px;
	  pointer-events: none;
	  position: absolute;
	  right: 10px;
	  top: 50%;
  }
  .working-hours .dropdown-select.open:after {
	  -webkit-transform: rotate(-180deg);
	  transform: rotate(-180deg);
  }
  .working-hours .dropdown-select.open .list {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 1;
	  pointer-events: auto;
  }
  .working-hours .dropdown-select.open .option {
	  cursor: pointer;
  }
  .working-hours .dropdown-select.wide {
	  width: 100%;
  }
  .working-hours .dropdown-select.wide .list {
	  left: 0 !important;
	  right: 0 !important;
  }
  .working-hours .dropdown-select .list {
	  box-sizing: border-box;
	  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
	  -webkit-transform: scale(0.75);
	  transform: scale(0.75);
	  -webkit-transform-origin: 50% 0;
	  transform-origin: 50% 0;
	  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
	  background-color: #101820;
	  border-radius: 6px;
	  margin-top: 4px;
	  padding: 3px 0;
	  opacity: 0;
	  overflow: hidden;
	  pointer-events: none;
	  position: absolute;
	  top: 100%;
	  left: 0;
	  z-index: 999;
	  max-height: 250px;
	  overflow: auto;
	  border: 1px solid #ddd;
  }
  .working-hours .dropdown-select .list:hover .option:not(:hover) {
	  background-color: transparent !important;
  }
  .working-hours .dropdown-select .dd-search{
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0.5rem;
  }
  .working-hours .dropdown-select .dd-searchbox{
	width: 95%;
    height: 34px;
	padding:0.5rem;
	border:1px solid #999;
	border-color:#999;
	border-radius:4px;
	outline:none;
  }
  .working-hours .dropdown-select .dd-searchbox:focus{
	border-color:#12CBC4;
  }
  .working-hours .dropdown-select .list ul {
	  padding: 0;
  }
  .working-hours .dropdown-select .option {
	  cursor: default;
	  font-weight: 400;
	  line-height: 40px;
	  outline: none;
	  padding-left: 18px;
	  padding-right: 29px;
	  text-align: left;
	  transition: all 0.2s;
	  list-style: none;
  }
  .working-hours .dropdown-select .option:hover,
  .working-hours .dropdown-select .option:focus {
	  background-color: #f6f6f6 !important;
  }
  .working-hours .dropdown-select .option.selected {
	  font-weight: 600;
	  color: #12cbc4;
  }
  .working-hours .dropdown-select .option.selected:focus {
	  background: #f6f6f6;
  }
  .working-hours .dropdown-select a {
	  color: #aaa;
	  text-decoration: none;
	  transition: all 0.2s ease-in-out;
  }
  .working-hours .dropdown-select a:hover {
	  color: #666;
  }
/* end working-hours */

/* working-hours-sec */
.working-hours-sec .select-dropdown,
.working-hours-sec .select-dropdown * {
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
.working-hours-sec .select-dropdown {
	background-color: #101820;
	border-radius: 4px;
	position: relative;
    width: 100%;
	border: 1px solid #ced4da;
}
.working-hours-sec .select-dropdown select {
	font-size: 14px;
	font-weight: normal;
	max-width: 100%;
	padding: 8px 24px 8px 10px;
	border: none;
	background-color: transparent;
		-webkit-appearance: none;
		-moz-appearance: none;
	appearance: none;
	width: 100%;
}
.working-hours-sec .select-dropdown select:active, 
.working-hours-sec .select-dropdown select:focus {
	outline: none;
	box-shadow: none;
}
.working-hours-sec .select-dropdown:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-top: 5px solid #aaa;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.enquiry-model-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 13px;
}
.enquiry-model-form .form-control{
	font-size: 14px;
}
.enquiry-model-form .enquiry-div{
	margin-bottom: 10px;
}
.enquiry-model-form .modal .modal-content .modal-body{
	padding: 20px 30px;
}
.enquiry-model-form .btn{
	line-height: unset;
    padding: 8px 30px;
    /*margin: auto;*/
    display: block;
    margin-top: 5px;
    margin-left:10px;
    border: 1px solid #9f1d85;
    font-size: 14px;
    font-weight: 500;
}
.enquiry-model-form .btn:hover{
	border: 1px solid #9f1d85;
}
.enquiry-model-form .modal-content .modal-header{
	padding: 10px 16px;
}
.enquiry-model-form .modal-content .modal-body h4{
	font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: flex;
}

.enquiry-model-form .modal-content .modal-body h4:before{
    color: #000;
    content: "";
    flex: 1;
    border-bottom: 1px solid #FEE715;
    margin: auto 1rem;
}
.enquiry-model-form .modal-content .modal-body h4:after{
    color: #000;
    content: "";
    flex: 1;
    border-bottom: 1px solid #FEE715;
    margin: auto 1rem;
}

.enquiry-model-form-btn{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.enquiry-model-form-btn .danger{
   background-color: #dc3545;
    border-color: #dc3545;
}


/* end working-hours-sec */

/* our-services-page  */
.our-services-page{
	padding-top: 50px;
}
.our-services-page .custom-box{
	margin-right:0;
	margin-bottom: 70px;
}
.our-services-page .title-style-4{
	margin-bottom: 30px;
}
/* end our-services-page */

/* service-details */
.service-details-page{
	padding-top: 30px;
	padding-bottom: 50px;
}
.service-details-page .srv2-feedback-wrapper .feedback-single .srv2-clients-info{
	margin-top:0;
}
.service-details-page .srv2-feedback-wrapper .feedback-single{
	padding: 20px 22px 20px 30px;
	height: 250px;
	margin-bottom: 30px;
	overflow: auto;
}
.service-details-page .morecontent span {
    display: none;
}
.service-details-page .morelink {
    display: block;
}
.service-details-page .srv2-feedback-top {
    padding: 0;
}
.service-details-page .srv2-feedback-wrapper {
    margin-top: 30px;
}

.service-details-page .srv2-feedback-wrapper .feedback-single::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 0px;
	background-color: #F5F5F5;
}
.service-details-page .srv2-feedback-wrapper .feedback-single::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}
.service-details-page .srv2-feedback-wrapper .feedback-single::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
/* end service-details */

/* privacy-policy */
.privacy-policy{
	padding-top: 50px;
	padding-bottom: 50px;
}
.privacy-policy .privacy-policy-txt{
	border: 3px solid #e8ebf3;
    padding: 30px 40px;
    border-radius: 8px;
}
.privacy-policy .privacy-policy-txt p{
	padding-bottom: 15px;
}
.privacy-policy .privacy-policy-txt h4{
	padding-bottom: 8px;
	font-size: 22px;
}
.privacy-policy .privacy-policy-txt ul{
	/* margin-bottom: 15px; */
	padding-left: 35px;
}
.privacy-policy .privacy-policy-txt ul li{
	list-style-type: disc;
    line-height: 28px;
    font-size: 18px;
	margin-bottom: 10px;
}
/* end privacy-policy */

/* bixol-pricing-table */
.bixol-pricing-table{
	border-top: 1px solid #c1c1c1;
	margin-top: 30px;
	padding-top: 30px;
	padding-bottom: 10px;
}
.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column-img{
	padding-top: 30px;
}
.bixol-pricing-notes{
	padding-bottom: 50px;
}
.bixol-pricing-notes .bixol-pricing-notes-txt h4{
	margin-bottom: 10px;
}
.bixol-pricing-notes .bixol-pricing-notes-txt ul{
	padding-left: 40px;
}
.bixol-pricing-notes .bixol-pricing-notes-txt ul li{
	font-size: 18px;
	margin-bottom: 7px;
    list-style: decimal;
}
/* end bixol-pricing-table */

/* services-details-txt */
.service-details-page .services-details-txt{
	padding-top: 10px;
}
.service-details-page .services-details-txt p{
	padding-bottom: 10px;
	font-size: 18px;
    text-align: justify;
}
/* end services-details-txt */

.contactus-page{
	padding-top: 40px;
}
.contactus-page-sec{
	padding-top: 60px;
	padding-bottom: 40px;
}
.mission-vission hr{
	display: none;
}
.mobile-menu-job{
    display: none;
}
/* category-five-section */
.category-five-section {
    /*background: url(../img/gif/banner.png), #101820;*/
    /*background-size: 100% 100%;*/
    /*padding: 80px 0;*/
    position: relative;
}
.category-five-section .cate-row2 {
    text-align: center;
    margin-top: -36px;
}
.category-five-section .category-items li {
    display: inline-block;
    width: 16.3%;
    padding: 0 6px;
}
.category-five-section .categories-box {
    filter: drop-shadow(0px 1px 15px rgba(19, 16, 34, 0.1));
}
.category-five-section .categories-box:hover{
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
}
.category-five-section .categories-info {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #101820;
    border: 1px solid #FEE715;
    padding: 15px;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    text-align: center;
    flex-direction: column;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center
}
.category-five-section .category-items li:nth-child(7){
    margin-left: 7px;
}
.category-five-section .category-items li:nth-child(7),
.category-five-section .category-items li:nth-child(8),
.category-five-section .category-items li:nth-child(9),
.category-five-section .category-items li:nth-child(10),
.category-five-section .category-items li:nth-child(11),
.category-five-section .category-items li:nth-child(12),
.category-five-section .category-items li:nth-child(13),
.category-five-section .category-items li:nth-child(14),
.category-five-section .category-items li:nth-child(15){
    /*border:1px solid green;*/
    margin-top: -35px;
}

.category-five-section .categories-info span {
    display: inline-block;
    margin: 0 0 10px;
    width: 80px;
}
.category-five-section .img-fluid {
    max-width: 100%;
    height: auto;
}
.category-five-section .categories-info h6 {
    font-size: 15px;
    margin: 0 0 10px;
    color: #FEE715;
}
.category-five-section .section-heading h2{
    color: #FEE715;
    margin-top: 10px;
    font-size: 40px;
    margin-bottom: 35px;
}
.category-five-section .home6-primary-btn{
    text-align:center;
    padding-top: 35px;
}
/* end category-five-section */

/*  */
.lookingJob-modal .lookingJob-modal-body .lookingJob-modal-body-txt{
    text-align: center;
}
.lookingJob-modal .lookingJob-modal-body .lookingJob-modal-body-txt h5{
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
}
.lookingJob-modal .lookingJob-modal-body .lookingJob-modal-body-btn{
    text-align: center;
}
.lookingJob-modal .lookingJob-modal-body .lookingJob-modal-body-btn .btn{
    display: inline-grid;
    line-height: 30px;
    padding: 4px 60px;
}


.header-style-2 .desktop-menu {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

/* desktop-menu-job */
.desktop-menu-job .btn{
    line-height: unset;
    padding: 8px 10px;
    background-color: #6d5cb6;
    height: 40px;
    width: 185px;
}
.desktop-menu-job .btn:hover{
    background-color: red;
    box-shadow:none;
}

.desktop-menu-job .carousel-caption{
    position:unset;
    padding: 0;
}
.desktop-menu-job .carousel-caption h3{
    line-height:unset;
    font-size:14px;
    color:#101820;
}
/* end desktop-menu-job */

.your-requirment-sec .your-requirment-form{
    width:750px;
    margin: 40px auto 50px;
    padding: 30px 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}
.your-requirment-sec .your-requirment-form h3{
    text-align:center;
    font-size: 30px;
    margin-bottom: 15px;
}
.your-requirment-sec .your-requirment-form .row{
    margin-bottom: 15px;
}
.your-requirment-sec .your-requirment-form .enquiry-model-form-btn{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.your-requirment-sec .your-requirment-form .enquiry-model-form-btn .btn{
    line-height: unset;
    padding: 8px 30px;
    /* margin: auto; */
    display: block;
    margin-top: 5px;
    margin-left: 10px;
}

.want-job-model .modal-dialog{
    max-width: 700px;
    margin-top: 115px;
}
.want-job-model .modal-body{
    padding:35px 45px 25px;
}
.want-job-model .modal-body h2{
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}
.want-job-model .modal-body .col-lg-6{
    padding:0;
}
.want-job-model .modal-body .want-job-model-body{
    /*border: 1px solid gray;*/
    padding: 15px 20px 12px;
    border-radius: 8px;
    /*background-color: #e5f2ff;*/
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 6px;*/
}
.want-job-model .modal-body .want-job-model-body:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 6px;
}
.want-job-model-body .want-job-model-body-txt h4{
    font-size: 16px;
    text-align: center;
    margin-top: 18px;
}
.want-job-model-body .want-job-model-body-img{
    position: relative;
}
.want-job-model-body .want-job-model-body-img img{
    width: 100%;
    height: 290px;
    border-radius: 10px;
   object-fit: cover;
}
.want-job-model-body .want-job-model-body-img .text{
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.5);
    margin: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 20px 15px;
    background: linear-gradient(to bottom, transparent, #FEE715 90%) no-repeat bottom;
    background-size: 100% 100%;
    border-radius: 0 0 10px 10px;
    text-align: center;
}
.want-job-model .modal-body .btn{
    background: #101820;
    padding: 10px 12px;
    line-height: 0;
    position: absolute;
    right: 0;
    top: 0px;
}
.want-job-model .modal-body .btn i{
    color: #484848;
    font-size: 22px;
}
/**/

/* about-section */
.about-section{
    padding:40px 0 30px;
}
.about-section h5{
    margin-bottom: 18px;
    margin-left: 90px;
}
.about-section .household-services-sec-img{
    display: flex;
    justify-content: end;
}
.about-section .household-services-sec-img img{
    width:65px;
}
.about-section .household-services-section{
    margin: 0 80px;
}
.about-section .household-services-section h3{
    text-align: center;
    margin-bottom: 20px;
}
.about-section .household-services-section p{
    text-align: center;
    line-height: 28px;
    margin-bottom: 30px;
}
.about-section .household-services-sec{
    margin-bottom: 30px;
}
.about-section .household-services-sec h5{
    margin-bottom: 10px;
}
.about-section .household-services-sec ul{
    list-style-type: disc;
    padding-left: 10px;
}
.about-section .household-services-sec ul li{
    line-height: 26px;
    margin-bottom: 10px;
    text-align: justify;
}
.about-section .household-services-sec ul li span{
    font-weight: 700;
}
.about-section .household-services-sec p{
    line-height: 26px;
    margin-bottom: 10px;
    text-align: justify;
}
.about-section .household-services-sec p span{
    font-weight: 700;
}
/* end about-section */

/* hire-candidate-sec */
.hire-candidate-sec .hire-candidate-form{
    width: 875px;
    margin: 40px auto 50px;
   
}
.hire-candidate-sec .hire-candidate-form form{
     padding: 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}
.hire-candidate-sec .hire-candidate-form h4{
    font-size: 22px;
    text-align: center;
    margin-bottom: 26px;
    text-decoration: underline;
}
.hire-candidate-sec .hire-candidate-form .form-group label{
    font-size:14px;
}
.hire-candidate-sec .hire-candidate-form .enquiry-div{
    margin-bottom:20px;
}
.hire-candidate-sec .hire-candidate-form .enquiry-div label{
    font-size:15px;
    margin-bottom: 7px;
}
.hire-candidate-sec .hire-candidate-form .enquiry-div .form-control-file{
    margin-top: 5px;
}
.hire-candidate-sec .hire-candidate-form .enquiry-model-form-btn{
    margin-bottom:0;
}
.hire-candidate-sec .hire-candidate-form .enquiry-model-form-btn .btn{
    line-height: unset;
    padding: 10px 25px;
    margin-top: 10px;
}
.hire-candidate-sec .hire-candidate-form .enquiry-model-form-btn .btn:hover{
    background: #9f1d85;
    color:#101820;
    box-shadow: none !important;
}

.hire-candidate-sec [type="checkbox"]:checked,
.hire-candidate-sec [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.hire-candidate-sec [type="checkbox"]:checked + label,
.hire-candidate-sec [type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.hire-candidate-sec [type="checkbox"]:checked + label:before,
.hire-candidate-sec [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    background: #101820;
}
.hire-candidate-sec [type="checkbox"]:checked + label:after,
.hire-candidate-sec [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #00a69c;
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.hire-candidate-sec [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.hire-candidate-sec [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.hire-candidate-sec .hire-candidate-form .marital-status .marital-status1{
    margin-left:0px;
}
/* end hire-candidate-sec */

/* all-servicess */
.all-servicess{
	padding-top: 50px;
	padding-bottom: 30px;
}
.all-servicess .all-servicess-txt h1{
    font-size: 34px;
    margin-bottom: 10px;
}
.all-servicess .all-servicess-txt p { 
  line-height: 1.8; 
  margin-bottom: 10px;
  text-align: justify;
}
.all-servicess .all-servicess-img img{
	width: 65%;
    margin: auto
}
.all-servicess .all-servicess-img { 
  width: 50%; 
  height: auto;
  min-width: 150px;
  margin: auto;
  float: left;
  margin-right: 0rem; 
  margin-top: 20px;
  margin-bottom: 15px;
}
.all-servicess .all-servicess-txt ul{
	padding-left: 40px;
    margin-bottom: 10px;
}
.all-servicess .all-servicess-txt ul li{
	list-style: disc;
    font-size: 16px;
    margin-bottom: 6px;
}
/* end all-servicess */

/* Enquiry btn */
.custom-btn {
    color: #101820;
    border-radius: 6px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    vertical-align: top;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    /*letter-spacing: 1px;*/
    font-weight: 600;
    padding: 12px 18px 10px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10;
	box-shadow:  4px 4px 6px 0 rgba(0,0,0,.3),
				-4px -4px 6px 0 rgba(0, 0, 0, .2), 
	  inset -4px -4px 6px 0 rgba(0,0,0,.2),
	  inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
	 font-size: 16px;
  }
.btn-11 {
	border: none;
	background: rgb(251,33,117);
	background: linear-gradient(0deg, rgb(255 0 0) 0%, rgb(255 0 0) 100%);
	  color: #101820;
	  overflow: hidden;
  }
  .btn-11:hover {
	  text-decoration: none;
	  color: #101820;
  }
  .btn-11:before {
	  position: absolute;
	  content: '';
	  display: inline-block;
	  top: -180px;
	  left: 0;
	  width: 30px;
	  height: 100%;
	  background-color: #101820;
	  animation: shiny-btn1 3s ease-in-out infinite;
  }
  .btn-11:hover{
	opacity: 1;
  }
  .btn-11:active{
	  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
  }
  @-webkit-keyframes shiny-btn1 {
	  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	  50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.2; }
	  81% { -webkit-transform: scale(0) rotate(45deg); opacity: 1; }
	  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  }
/* end Enquiry btn */

/* Enquiry animation */
.btn-shine {
	color: #101820;
	background: linear-gradient(to right, #FEE715 0, #101820 10%, #FEE715 20%);
	background-position: 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shine 3s infinite linear;
	animation-fill-mode: forwards;
	-webkit-text-size-adjust: none;
	text-decoration: none;
	white-space: nowrap;
  }
  @-moz-keyframes shine {
	0% {
	  background-position: 0;
	}
	60% {
	  background-position: 280px;
	}
	100% {
	  background-position: 280px;
	}
  }
  @-webkit-keyframes shine {
	0% {
	  background-position: 0;
	}
	60% {
	  background-position: 280px;
	}
	100% {
	  background-position: 280px;
	}
  }
  @-o-keyframes shine {
	0% {
	  background-position: 0;
	}
	60% {
	  background-position: 280px;
	}
	100% {
	  background-position: 280px;
	}
  }
  @keyframes shine {
	0% {
	  background-position: 0;
	}
	60% {
	  background-position: 280px;
	}
	100% {
	  background-position: 280px;
	}

  }
/* end Enquiry animation */

/* footer-bg */
.bixol-footer-bg{
	background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
	background-image: linear-gradient(#FEE715e8, #FEE715c9), url(../img/10068.jpg);
  background-size: cover;
  background-position: top;
  position: relative;  
}
/* end footer-bg */

/* whatsapp-redirect */
.whatsapp-redirect{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 12;
}
.whatsapp-redirect .whatsapp-redirect-img{
    width: 55px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
.whatsapp-redirect .whatsapp-redirect-img img{
    width:100%;
    height:100%;
}
/* end whatsapp-redirect */

.mobile-footer{
	display: none;
}

.landing-service{
    padding: 20px 0 0;
}
.landing-service h2{
    color: #FEE715;
    margin-top: 10px;
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
}
.landing-service .landing-service-card{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 25px 30px;
}
.landing-service .landing-service-card .landing-service-card-img{
    width: 150px;
    margin: 0px auto 15px;   
}
.landing-service .landing-service-card .landing-service-card-txt h4{
    text-align: center;
    font-size: 22px;
    margin-bottom: 5px;
}
.landing-service .landing-service-card .landing-service-card-txt p{
    text-align: justify;
}
.landing-service .landing-service-card .landing-service-card-txt a{
    font-size: 14px;
}
.landing-service .bixol-readmore-btn{
    margin: 40px auto 0;
    text-align: center;
    display: table;
}

.download-now-sec{
    padding: 180px 0 60px;
    position: relative;
}
.download-now-sec .download-now-sec-txt{
    margin: 0 123px 0 80px;
    align-content: center;
    height: 275px;
    background: transparent;
    border-radius: 10px;
    background-image: url('../img/Rectangle.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.download-now-sec .download-now-sec-txt h3{
    text-align: center;
    margin-bottom: 15px;
    color:#101820;
}
.download-now-sec .download-now-sec-txt .download-now-sec-img{
    display: flex;
    justify-content: center;
   
}
.download-now-sec .download-now-sec-txt .download-now-sec-img img{
    width:160px;
     margin-right:10px;
     border-radius: 10px;
}
.download-now-sec-img1{
    position: absolute;
    top: -15px;
    right: 200px;
    width: 400px;
}
.download-now-sec .download-now-sec-txt1{
    margin-left: 90px;
}

/* @media query */

/* (max-width: 1330px) */
@media (max-width: 1330px){
    .download-now-sec-img1{
        right: 160px;
    }
}
/* end (max-width: 1330px) */

/* (max-width: 1050px) */
@media (max-width: 1050px) {
    .header-style-5 .header-navigation .desktop-menu ul li a{
        padding-right: 5px;
        font-size: 15px;
    }
    .header-style-2 .desktop-menu ul li.has-submenu>a::after{
        right: -8px;
    }
}
/* end (max-width: 1050px) */

/* (max-width: 1024px) */
@media (max-width: 1024px) {
	.slider-form{
		padding: 30px 25px 20px 25px;
		z-index:11;
	}
	.multi-step-form3 .radio-btn{
		width: 120px;
    	height: 150px;
	}
	.multi-step-form3 .radio-btn .hobbies-icon{
		width: 90px;
		height: 90px;
	}
	.multi-step-form3 .radio-btn .hobbies-icon h3{
		font-size: 16px;
	}
	.multi-step-form4{
		padding: 0 25px;
	}
	.our-services-page .home6-service-bottom{
		padding-right: 15px;
    	padding-left: 15px;
	}
	.contactus-page .title-style-4 h2{
		font-size: 40px;
	}
	.contact-v3-info-content .info-content {
		padding: 0 40px;
	}
	.mission-vission .mission-vission-img3 {
		width: 450px;
		margin: 40px auto 0;
	}
	.mission-vission .mission-vission-img4 {
		width: 375px;
		margin: 40px auto 0;
	}
	.mission-vission .mission-vission-img5 {
		width: 450px;
		margin: 45px auto 0;
	}
	.mission-vission{
		padding-left: 20px;
    	padding-right: 20px;
	}
	.faq-section{
		padding-top: 30px;
	}
	.faq-section .faq-bottom {
		margin-top: 30px;
	}
	.category-five-section .category-items li{
	    width: 19.3%;
	}
	.category-five-section .category-items li:nth-child(7) {
        margin-left: 0;
    }
    .category-five-section .category-items li:nth-child(6) {
        margin-left: 95px;
        margin-top: -35px;
    }
    .category-five-section ul{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .category-five-section .category-items li:nth-child(10){
        margin-left: 195px;
    }
    .category-five-section .category-items li:nth-child(13){
        margin-left: 295px;
    }
    .category-five-section .category-items li:nth-child(15){
        margin-left: 395px;
    }
    .bixol-breadcrumb .breadcrumb-content h2{
        font-size: 56px;
    }
    .all-servicess .all-servicess-txt h1{
        font-size: 30px;
    }
    .download-now-sec-img1{
        right: 80px;
    }
}
/* end (max-width: 1024px)  */

/* (max-width: 991px) */
@media (max-width: 991px) {
	.multi-step-form2 .plans .plan{
		margin-bottom: 0px;
	}
	#multi-step-form .btns .btn{
		margin-top: 12px;
	}
	.bixol-about-section .bixol-about-left .bixol-compare-slider{
		width: 400px;
	}
	.bixol-about-section .bixol-about-right{
		margin-top: 15px;
		padding-right: 20px;
	}
	.bixol-about-section .bixol-about-left .bixol-compare-slider{
		margin-top: 25px;
	}
	.bixol-breadcrumb .breadcrumb-content h2{
		font-size: 56px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column-img{
		display: none;
	}
	.bixol-pricing-table .pricing-table-area{
		padding-left: 25px;
		padding-right: 25px;
	}
	.bixol-pricing-notes .bixol-pricing-notes-txt{
		padding-left: 25px;
		padding-right: 25px;
	}
	.our-services-page .title-style-4 h2{
		font-size: 40px;
	}
	.contactus-page .title-style-4 h2 {
        font-size: 36px;
    }
	.contactus-page-sec {
		padding-top: 40px;
	}
	.mission-vission .mission-vission-img {
		width: 275px;
		margin: 5px auto 10px;
	}
	.mission-vission .mission-vission-img1 {
		margin: 40px auto 0;
	}
	.mission-vission .mission-vission-img2 {
		width: 350px;
		margin: 30px auto 0;
	}
	.mission-vission .mission-vission-img3 {
        width: 400px;
        margin: 60px auto 0;
    }
	.mission-vission .mission-vission-img4 {
        width: 350px;
        margin: 70px auto 0;
    }
	.mission-vission .mission-vission-img5 {
        width: 400px;
        margin: 70px auto 0;
    }
	.mission-vission-txt1 {
		margin-top: 10px;
	}
	.mission-vission {
		padding-top: 30px;
	}
	.faq-section .faq-bottom {
        margin-top: 0;
    }
	.faq-section .faq-bottom .faq-wrapper .accordion-item.active{
		margin-top: 20px;
	}
	.mobile-menu-job{
        text-align: center;
        padding-top: 35px;
        display:block;
    }
    .mobile-menu-job .carousel {
        margin-top: 2px!important;
    }
    .mobile-menu-job .btn{
        height: 45px!important;
        width: 300px!important;
    }
    .banner-img-bg .carousel {
        margin-top: 50px;
    }
    .slider-form{
        top: 30px;
    }
    .desktop-menu-job .carousel-caption h3{
        font-size: 16px!important;
    }
    .custom-btn{
        font-size: 14px!important;
        padding: 8px 12px 8px;
    }
    .hire-candidate-sec .hire-candidate-form{
        margin: 25px auto 50px;
    }
    .all-servicess .all-servicess-txt h1 {
        font-size: 28px;
    }
}
/* end (max-width: 991px) */

/* (max-width: 950px) */
@media (max-width: 950px){
    .category-five-section .category-items li:nth-child(6){
        margin-left: 88px;
    }
    .category-five-section .category-items li:nth-child(10){
        margin-left: 176px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 265px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 355px;
    }
}
/* end (max-width: 950px) */

/* (max-width: 900px) */
@media (max-width: 900px){
    .category-five-section .category-items li:nth-child(6) {
        margin-left: 84px;
    }
    .category-five-section .category-items li:nth-child(10) {
        margin-left: 169px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 254px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 338px;
    }
    .hire-candidate-sec .hire-candidate-form{
        width:100%;
    }
}
/* end (max-width: 900px) */

/* (max-width: 850px) */
@media (max-width: 850px){
    .category-five-section .category-items li {
        width: 25%;
    }
    .category-five-section .category-items li:nth-child(6) {
        margin-left: 0;
    }
    .category-five-section .category-items li:nth-child(5) {
        margin-left: 100px;
        margin-top: -35px;
    }
    .category-five-section .category-items li:nth-child(10) {
        margin-left: 97px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 200px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 302px;
    }
    .category-five-section .category-items li:nth-child(8) {
        margin-left: 203px;
    }
}
/* end (max-width: 850px) */

/* (max-width: 800px) */
@media (max-width: 800px){
    .category-five-section .category-items li:nth-child(5){
        margin-left: 96px;
    }
    .category-five-section .category-items li:nth-child(8) {
        margin-left: 192px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 192px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 288px;
    }
}
/* end (max-width: 800px) */

/* (max-width: 768px) */
@media (max-width: 768px) {
	.multi-step-form2 .plans .plan .plan-content img{
		width: 40px;
	}
	.multi-step-form1 .f-dropdown > span img{
		width: 40px;
	}
	.multi-step-form3 .radio-buttons{
		margin: 5px auto 0;
	}
	.multi-step-form3 .radio-btn .hobbies-icon {
        width: 70px;
        height: 70px;
    }
	.multi-step-form3 .radio-btn .hobbies-icon h3 {
        font-size: 14px !important;
    }
	.multi-step-form3 .radio-btn{
		height: 125px;
		margin: 5px 5px 0;
	}
	.multi-step-form1 .f-dropdown.filled > span{
		height: 54px;
	}
	#multi-step-form .step h3{
		font-size: 16px;
	}
	.home6-service-area .home6-service-bottom .column-wrapper{
		margin-bottom:10px;
	}
	.browse-categories .title-style-4 h2{
		font-size: 40px;
	}
	.browse-categories .home6-service-bottom {
		margin-top: 30px;
	}
	.browse-categories .title-style-4 h2 {
        font-size: 36px;
    }
	.bixol-about-section .bixol-about-left .bixol-compare-slider {
        margin-top: 0;
		width: 350px;
    }
	.why-choose-us {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.why-choose-us .bixol-title-area h3{
		font-size: 30px;
		text-align: start
	}
	.bixol-breadcrumb .breadcrumb-content h2 {
        font-size: 46px;
    }
	.all-servicess .all-servicess-img{
		width: 55%;
	}
	.all-servicess .all-servicess-img img {
		width: 75%;
	}
	.all-servicess .all-servicess-txt p{
		margin-bottom: 6px!important;
	}
	.h6-footer{
		padding-top: 50px;
	}
	.bixol-footer .bixol-footer-widget {
		margin-bottom: 30px;
	}
	.our-services-page {
		padding-top: 30px;
	}
	.contactus-page-sec {
        padding-top: 30px;
		padding-bottom: 30px;
    }
	.mission-vission .title-style-4 h2 {
		margin-bottom: 15px;
		font-size: 36px;
	}
	.mission-vission .mission-vission-img {
        width: 200px;
        margin: 0px auto 10px;
    }
	.mission-vission .mission-vission-img1 {
		width: 315px;
	}
	.mission-vission .mission-vission-img2 {
        width: 325px;
        margin: 55px auto 0;
    }
	.mission-vission .mission-vission-img3 {
        width: 330px;
    }
	.mission-vission .mission-vission-img4 {
        width: 300px;
        margin: 70px auto 0;
    }
	.mission-vission .mission-vission-img5 {
        width: 330px;
        margin: 70px auto 0;
    }
	.faq-section {
        padding-top: 25px;
		padding-bottom: 30px;
    }
    .category-five-section .section-heading h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    .how-it-works .title-style-4 h2 {
        margin-bottom: 0;
        font-size: 36px;
    }
    .home6-process-section .home6-process-bottom{
        padding-top: 30px;
    }
    .home6-process-section .home6-process-bottom .process-column{
        margin-bottom: 35px;
    }
    .big-on-trust .title-style-2 {
        margin-bottom: 40px;
    }
    .bixol-service-section .bixol-service-middle {
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
    }
    .big-on-trust .bixol-service-middle .img-wrapper-img{
         padding-top: 0px;
    }
    .big-on-trust{
        padding-bottom: 5px;
    }
    .trust-safety .steps-bottom {
        margin-top: 0;
    }
    .home2-steps-area .steps-bottom .steps-column{
        margin-bottom: 0;
    }
    .hire-candidate-sec .hire-candidate-form{
        padding: 0 0px;
    }
    .about-section .household-services-section {
        margin: 0 30px;
    }
    .all-servicess .all-servicess-txt h1 {
        font-size: 24px;
    }
    .download-now-sec .download-now-sec-txt{
        height: 220px;
        margin: 0 60px 0 20px;
    }
    .download-now-sec .download-now-sec-txt h3{
        font-size: 22px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img{
        width: 110px;
    }
    .download-now-sec .download-now-sec-txt1 {
        margin-left: 0;
    }
    .download-now-sec-img1{
        top: 30px;
        width: 320px;
        right: 45px;
    }
    .download-now-sec{
        padding: 180px 0 40px;
    }
}
/* end (max-width: 768px) */

/* (max-width: 767px) */
@media (max-width: 767px) {
	.slider-form{
		top: 25px;
	}
	.banner-img-bg .carousel{
		display: none;
	}
	.slider-form{
		width: 500px;
		margin: 0 auto;
	}
	#multi-step-form .step h3{
		margin: 0 0 18px 0;
	}
	.why-choose-us {
        padding-top: 50px;
    }
	.bixol-about-section .bixol-about-left .bixol-compare-slider {
        width: 400px;
    }
	.why-choose-us {
        padding-top: 40px;
    }
	.how-it-works .title-style-4 h2 {
		margin-bottom: 0px;
		font-size: 36px;
	}
	.home6-process-section .home6-process-bottom{
		padding-top: 40px;
	}
	.home6-process-section .home6-process-bottom .process-column{
		margin-bottom: 30px;
	}
	.big-on-trust .title-style-2 {
		margin-bottom: 35px;
	}
	.bixol-service-section .bixol-service-middle{
		margin-top: 0px;
		margin-bottom: 10px;
	}
	.big-on-trust{
		padding-bottom: 10px;
	}
	.home2-steps-area .steps-bottom .steps-column{
		margin-bottom: 0px;
	}
	.bixol-pricing-table{
		margin-top: 15px;
		padding-top: 20px;
	}
	.contact-v3 .contact-v2-left .contact-left-img {
		margin-top: 40px;
	}
	.contact-v3 .contact-v2-right{
		margin-top: 20px;
	    margin-bottom: 20px;
	}
	.mission-vission hr{
		display: block;
	}
	.mission-vission .mission-vission-img2 {
        width: 400px;
        margin: 20px auto 0;
    }
	.mission-vission .mission-vission-img3 {
        width: 400px;
		margin: 20px auto 0;
    }
	.mission-vission .mission-vission-img4 {
        width: 400px;
        margin: 20px auto 15px;
    }
	.mission-vission .mission-vission-img5 {
        width: 400px;
        margin: 15px auto 5px;
    }
    .mobile-menu-job .carousel{
        display:block;
    }
    .mobile-menu-job {
        padding-top: 30px;
    }
    .home2-steps-area .steps-bottom .steps-column{
        padding: 30px 0;
    }
    .trust-safety .row{
        justify-content: center;
    }
    .download-now-sec-img1{
        display:none;
    }
    .download-now-sec {
        padding: 20px 0 20px;
    }
    .download-now-sec .download-now-sec-txt {
        height: 220px;
        margin: 0 20px 0 20px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img{
        border-radius:0;
    }
}
/* end (max-width: 767px) */

/* (max-width: 750px) */
@media (max-width: 750px){
    .category-five-section .category-items li:nth-child(5) {
        margin-left: 88px;
    }
    .category-five-section .category-items li:nth-child(8) {
        margin-left: 180px;
    }
    .category-five-section .category-items li:nth-child(10) {
        margin-left: 90px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 180px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 270px;
    }
}
/* end (max-width: 750px) */

/* (max-width: 700px) */
@media (max-width: 700px){
    .category-five-section .category-items li:nth-child(5) {
        margin-left: 84px;
    }
    .category-five-section .category-items li:nth-child(8) {
        margin-left: 168px;
    }
    .category-five-section .category-items li:nth-child(10) {
        margin-left: 85px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 168px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 252px;
    }
}
/* end (max-width: 700px) */

/* (max-width: 650px) */
@media (max-width: 650px){
    .category-five-section .category-items li:nth-child(5) {
        margin-left: 77px;
    }
    .category-five-section .category-items li:nth-child(8) {
        margin-left: 155px;
    }
    .category-five-section .category-items li:nth-child(10) {
        margin-left: 77px;
    }
    .category-five-section .category-items li:nth-child(13) {
        margin-left: 155px;
    }
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 233px;
    }
}
/* end (max-width: 650px) */

/* (max-width: 600px) */
@media (max-width: 600px){
    .category-five-section .category-items li {
        width: 33.33%;
    }
    .category-five-section .category-items li:nth-child(5),
    .category-five-section .category-items li:nth-child(8),
    .category-five-section .category-items li:nth-child(10),
    .category-five-section .category-items li:nth-child(13),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 0px;
    }
    
    .category-five-section .category-items li:nth-child(4) {
        margin-left: 95px;
        margin-top: -35px;
    }
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(14) {
        margin-left: 95px;
    }
}
/* end (max-width: 600px) */

/* (max-width: 575px) */
@media (max-width: 575px){
	.browse-categories .home6-primary-btn {
		margin-top: 10px;
	}
	.browse-categories .home6-primary-btn a{
		font-size: 14px;
	}
	.browse-categories {
		padding-top: 0px;
	}
	.bixol-breadcrumb .breadcrumb-content h2 {
        font-size: 38px;
    }
	.all-servicess-section .all-servicess-txt{
		display: inline-block;
	}
	.all-servicess .all-servicess-img{
		width: 100%!important;
		margin-top:0px!important;
	}
	.all-servicess .all-servicess-img img {
		width: 60%!important;
	}
	.all-servicess .all-servicess-txt p{
		line-height: 26px!important;
	}
	.browse-categories .title-style-4 h2 {
        font-size: 34px;
		margin-top: 0;
    }
	.how-it-works .title-style-4 h2 {
        margin-bottom: 0px;
        font-size: 32px;
		margin-top: 0;
    }
	.home6-process-section .home6-process-bottom {
        padding-top: 30px;
    }
	.big-on-trust .title-style-2 h3{
		font-size: 30px;
	}
	.big-on-trust .bixol-services {
        padding-left: 25px;
        padding-right: 25px;
    }
	.trust-safety .title-style-2 h3{
		margin-top: 0;
		font-size: 30px;
	}
	.trust-safety .steps-bottom {
		margin-top: 6px;
	}
	.bixol-title-area h3{
		font-size: 26px;
	}
	.bixol-about-section .bixol-about-right{
		padding-right: 20px;
        padding-left: 20px;
	}
	.bixol-pricing-table .bixol-title-area h3{
		font-size: 30px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top h4{
		font-size: 22px;
	}
	.browse-categories .title-style-4 h2 {
        font-size: 32px;
    }
	.our-services-page {
        padding-top: 30px !important;
    }
	.contactus-page .title-style-4 h2 {
        font-size: 32px;
    }
	.contact-v3 .contact-v2-left .contact-left-img {
        margin-top: 30px;
    }
	.contactus-page {
		padding-top: 25px;
	}
	.mission-vission {
        padding-top: 20px;
    }
	.mission-vission .title-style-4 h2 {
        margin-bottom: 10px;
        font-size: 32px;
    }
	.mission-vission .mission-vission-img {
        width: 175px;
        margin: 0px auto 10px;
    }
	.mission-vission .mission-vission-img1 {
        margin: 20px auto 10px;
    }
	.mission-vission .mission-vission-img2 {
        width: 350px;
        margin: 15px auto 0;
    }
	.mission-vission .mission-vission-img3 {
        width: 350px;
        margin: 20px auto 15px;
    }
	.mission-vission .mission-vission-img4 {
        width: 350px;
        margin: 15px auto 15px;
    }
	.mission-vission .mission-vission-img5 {
        width: 350px;
        margin: 15px auto 20px;
    }
	.mission-vission{
		padding-bottom: 30px;
	}
	.mission-vission .mission-vission-txt1 h3 {
		font-size: 22px;
		margin-bottom: 6px;
	}
	.custom-btn{
	   letter-spacing: 0px !important;
        font-size: 14px;
        width: 30%;
        padding: 10px !important;
        display: none !important;
        bottom: 85px !important;
	}
	.enquiry-model-form .modal.show .modal-dialog{
	        margin-top: 50px;
	}
	.banner-img-bg{
	    height: 500px;
	}
	.banner-img-bg {
        height: 550px;
    }
    .category-five-section .section-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .want-job-model .modal-dialog{
        margin-top: 30px;
    }
    .want-job-model .modal-body h2{
        margin-bottom: 5px;
        font-size: 22px;
    }
    .hire-candidate-sec .hire-candidate-form .enquiry-div {
        margin-bottom: 0px;
    }
    .hire-candidate-sec .hire-candidate-form .col{
        margin-bottom: 15px;
    }
    .hire-candidate-sec .hire-candidate-form .marital-status .mt-2{
        margin-top: 0 !important;
    }
    .hire-candidate-sec .hire-candidate-form .enquiry-div .mt-2{
        margin-top: 0 !important;
    }
    .hire-candidate-sec .hire-candidate-form .enquiry-div .form-control-file{
        width: 100%;
    }
    .hire-candidate-sec .hire-candidate-form .enquiry-model-form-btn .btn{
        margin-top: 0px;
    }
    .hire-candidate-sec .hire-candidate-form h4{
        font-size: 20px;
    }
    .hire-candidate-sec .hire-candidate-form {
        padding: 0 25px;
    }
    .about-section .household-services-section p{
        margin-bottom: 20px;
    }
    .about-section h5 {
        margin-bottom: 10px;
        margin-left: 15px;
        font-size: 20px;
    }
    .about-section .household-services-sec {
        margin-bottom: 15px;
    }
    .about-section .household-services-section h3{
        margin-bottom: 10px;
        font-size: 30px;
    }
    .want-job-model .modal-body .want-job-model-col{
        order: 2;
    }
    .bixol-breadcrumb{
        padding: 70px 0;
    }
    .whatsapp-redirect{
        bottom: 80px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img {
        width: 135px;
    }
    .download-now-sec .download-now-sec-txt{
        height: 180px;
    }
    .download-now-sec .download-now-sec-txt{
        margin: 0 15px 0 15px;
    }
    .download-now-sec {
        padding: 10px 0 20px;
    }
    .mobile-footer{
    	position: fixed;
        bottom: 0;
        width: 100%;
        background: #FEE715;
        padding: 12px 0 10px;
        background-image: linear-gradient(#FEE715ed, #FEE715c9), url(../img/blk.jpg);
        background-size: cover;
    	z-index: 11;
    	display: block;
    }
    .mobile-footer .mobile-footer-sec ul{
    	display: flex;
        justify-content: space-between;
    }
    .mobile-footer .mobile-footer-sec ul li{
    	float: left;
    }
    .mobile-footer .mobile-footer-sec ul li a{
    	color: #101820;
    }
    .mobile-footer .mobile-footer-sec ul li a img{
    	width: 24px;
    	margin: auto;
    }
    .scrolltop-btn{
        bottom: 170px;
        right: 22px;
        display:none;
    }
    .scrolltop-btn.visible {
        right: 20px;
    }
}
/* end (max-width: 575px) */

/* (max-width: 550px) */
@media (max-width: 550px){
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(14){
        margin-left: 88px;
    }
}
/* end (max-width: 550px) */

/* (max-width: 500px) */
@media (max-width: 500px){
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(14){
        margin-left: 80px;
    }
}
/* end (max-width: 500px) */

/* (max-width: 479px) */
@media (max-width: 479px){
	.slider-form {
        width: 100%;
        margin: 0 auto;
    }
	#multi-step-form .step h3 {
        margin: 0 0 10px 0;
    }
	.multi-step-form2 .plans .plan .plan-details span{
		text-align: start;
	}
	.multi-step-form2 .plans .plan .plan-content img {
        width: 40px;
        height: 40px;
    }
	#multi-step-form .btns .btn{
		font-size: 14px;
	}
	.browse-categories .title-style-4 h2 {
        font-size: 30px;
		margin-top: 0;
    }
	.browse-categories .home6-service-bottom {
        margin-top: 20px;
    }
	.browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper span{
		width: 75px;
	    height: 75px;
	}
	.browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .icon-wrapper span img {
		width: 45px;
	}
	.bixol-about-section .bixol-about-right {
        margin-top: 5px;
    }
	.why-choose-us .bixol-title-area h3 {
        font-size: 26px;
    }
	.header-style-5 .header-navigation .logo-wrapper a{
		width: 115px;
	}
	.header-style-5 {
        padding: 5px 0 0;
    }
	.header-style-5 .header-navigation .header-right{
		top: 32px;
	}
	.bixol-breadcrumb .breadcrumb-content h2 {
        font-size: 34px;
    }
	.bixol-breadcrumb .breadcrumb-object {
		position: absolute;
		top: 30px;
		right: 60px;
		width: 75px;
	}
	.bixol-breadcrumb .breadcrumb-object1 {
		left: 60px;
		bottom: 40px;
        top: unset;
	}
	.bixol-breadcrumb{
		padding: 70px 0;
	}
	.all-servicess{
		padding-top: 35px!important;
	}
	.all-servicess .all-servicess-section{
		padding-left: 20px;
		padding-right: 20px;
	}
	.h6-footer .bixol-footer-widget .footer-logo{
		margin-bottom: 10px;
	}
	.h6-footer .bixol-footer-widget h4{
		margin-bottom: 25px;
		font-size: 22px;
	}
	.how-it-works .title-style-4 h2{
		font-size: 30px;
	}
	.big-on-trust .title-style-2 h3 {
        font-size: 30px;
    }
	.big-on-trust .bixol-service-middle .img-wrapper-img{
		width: 250px;
	}
	.trust-safety .title-style-2 h3{
		font-size: 30px;
	}
	.bixol-title-area h3 {
        font-size: 30px;
    }
	.bixol-feedback .bixol-feedback-slider {
		margin-top: 25px;
	}
	.bixol-pricing-table .bixol-title-area h3 {
        font-size: 26px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top h4 {
        font-size: 20px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list span{
		font-size: 16px;
		margin-top: 0px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper img{
		width: 50px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper {
		margin-top: 8px;
	}
	.bixol-pricing-notes .bixol-pricing-notes-txt h4{
		font-size: 22px;
	}
	.bixol-pricing-notes .bixol-pricing-notes-txt ul li {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.bixol-pricing-notes {
		padding-bottom: 35px;
	}
	.bixol-pricing-table{
		padding-bottom:0;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column{
		padding: 25px 10px 25px 10px;
		margin-bottom: 25px;
	}
	.bixol-pricing-table .pricing-table-area {
        padding-left: 15px;
        padding-right: 15px;
    }
	.bixol-pricing-notes .bixol-pricing-notes-txt {
        padding-left: 20px;
        padding-right: 20px;
    }
	.bixol-pricing-notes .bixol-pricing-notes-txt ul {
		padding-left: 30px;
	}
	.bixol-pricing-table .pricing-table-area {
		margin-top: 22px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content {
		margin-top: 0;
	}
	.our-services-page .title-style-4 h2{
		margin-bottom: 40px;
	}
	.our-services-page .custom-box {
		margin-bottom: 60px;
	}
	.contactus-page .title-style-4 h2 {
        font-size: 30px;
    }
	.contact-v3 .contact-v2-left .contact-left-img {
        margin-top: 25px;
    }
	.contactus-page-sec {
        padding-top: 10px;
        padding-bottom: 20px;
    }
	.contact-v3-info-content .info-content .info-item{
		margin-bottom: 10px;
	}
	.contact-v3-info-content .info-content .info-item .icon-wrapper {
        margin-bottom: 10px;
    }
	.mission-vission .title-style-4 h2 {
        margin-bottom: 10px;
        font-size: 28px;
    }
	.mission-vission .mission-vission-img {
        width: 150px;
        margin: 0px auto 10px;
    }
    .mission-vission .mission-vission-img1 {
        width: 300px;
    }
	.mission-vission .mission-vission-txt1 h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }
	.mission-vission .mission-vission-img2 {
        width: 300px;
        margin: 0px auto 0;
    }
	.mission-vission .mission-vission-img3 {
        width: 300px;
        margin: 10px auto 15px;
    }
	.mission-vission .mission-vission-img4 {
        width: 300px;
        margin: 15px auto 15px;
    }
	.mission-vission .mission-vission-img5 {
        width: 300px;
        margin: 10px auto 20px;
    }
	.faq-section {
        padding-top: 20px;
    }
	.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-header a{
		font-size: 16px;
		padding: 15px 15px 15px 20px;
	}
	.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-body p{
		font-size: 15px;
	}
	.faq-section .faq-bottom h4 {
		padding-top: 22px;
		font-size: 22px;
	}
	.custom-btn {
        letter-spacing: 0px !important;
        font-size: 12px!important;
        padding: 6px 8px 6px!important;
    }
    .mobile-menu-job {
        padding-top: 20px;
    }
    .desktop-menu-job .carousel-caption h3 {
        font-size: 14px !important;
    }
    .mobile-menu-job .btn {
        height: 40px !important;
        width: 250px !important;
    }
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(14){
        margin-left: 75px;
    }
    .category-five-section .section-heading h2{
        font-size: 30px;
    }
    .category-five-section .categories-info span{
        width: 65px;
        margin: 0 0 3px;
    }
    .category-five-section .categories-info{
        height: 160px;
    }
    .category-five-section .categories-info h6{
        font-size: 13px;
    }
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(5),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(7), 
    .category-five-section .category-items li:nth-child(8), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(10), 
    .category-five-section .category-items li:nth-child(11), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(13), 
    .category-five-section .category-items li:nth-child(14), 
    .category-five-section .category-items li:nth-child(15){
        margin-top: -28px;
    }
    .want-job-model .modal-body h2{
        font-size: 20px;
    }
    .want-job-model .modal-body {
        padding: 25px 45px 15px;
    }
    .want-job-model-body .want-job-model-body-img {
        width: 230px;
        margin: auto;
		margin-bottom: 16px;
    }
    .want-job-model-body .want-job-model-body-txt h4{
        margin-top: 10px;
    }
    .hire-candidate-sec .hire-candidate-form h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .hire-candidate-sec .hire-candidate-form {
        padding: 0 10px;
    }
    .hire-candidate-sec .hire-candidate-form .enquiry-div label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .about-section {
        padding: 30px 0 30px;
    }
    .about-section .household-services-section h3 {
        margin-bottom: 6px;
        font-size: 28px;
    }
    .about-section .household-services-section {
        margin: 0 10px;
    }
    .about-section h5 {
        margin-bottom: 8px;
        margin-left: 12px;
        font-size: 18px;
    }
    .about-section .household-services-sec p{
        font-size: 15px;
        line-height: 24px;
        padding-right: 10px;
    }
    .about-section .household-services-section p{
        font-size: 15px;
        line-height: 25px;
        text-align: justify;
    }
    .all-servicess .all-servicess-txt h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .whatsapp-redirect .whatsapp-redirect-img{
        width: 45px;
    }
    .whatsapp-redirect {
        bottom: 75px;
        right: 10px;
    }
    .download-now-sec .download-now-sec-txt {
        margin: 0 10px 0 10px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img {
        width: 120px;
    }
    .mobile-footer .mobile-footer-sec ul li a{
		font-size: 14px;
	}
	.mobile-footer .mobile-footer-sec ul li a img{
		width: 20px;
	}
}
/* end (max-width: 479px) */

/* (max-width: 460px) */
@media (max-width: 460px){
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(14){
        margin-left: 73px;
    }
}
/* end (max-width: 460px) */

/* (max-width: 450px) */
@media (max-width: 450px){
    .category-five-section .categories-info {
        height: 185px;
    }
    .category-five-section .category-items li {
        width: 50%;
    }
    .category-five-section .category-items li:nth-child(3){
        margin-left: 105px;
        margin-top: -35px;
    }
    .category-five-section .category-items li:nth-child(4){
        margin-left:0;
    }
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 105px;
    }
    .category-five-section .category-items li:nth-child(14) {
        margin-left: 0;
    }
    .category-five-section .category-items li:nth-child(4),
    .category-five-section .category-items li:nth-child(5),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(7), 
    .category-five-section .category-items li:nth-child(8), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(10), 
    .category-five-section .category-items li:nth-child(11), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(13), 
    .category-five-section .category-items li:nth-child(14), 
    .category-five-section .category-items li:nth-child(15){
        margin-top: -35px;
    }
}
/* end (max-width: 450px) */

/* (max-width: 440px) */
@media (max-width: 440px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
         margin-left: 103px;
    }
}
/* end (max-width: 440px) */

/* (max-width: 425px) */
@media (max-width: 425px){
	.browse-categories .title-style-4 h2 {
        font-size: 26px;
    }
	.browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .h6-headline {
		margin-top: 10px;
	}
	.browse-categories .home6-service-bottom .column-wrapper .services-column .item-content {
		padding: 20px 5px 10px 5px;
	}
	.bixol-about-section .bixol-about-left .bixol-compare-slider {
        width: 250px;
    }
	.bixol-mobile-hamburger{
		width: 32px;
	}
	.bixol-mobile-hamburger span{
		height: 3px;
	}
	.bixol-mobile-hamburger.active span:nth-of-type(3){
		transform: translate(14px, -3px) rotatez(46deg);
	}
	.bixol-breadcrumb .breadcrumb-content h2 {
        font-size: 30px;
    }
	.all-servicess .all-servicess-txt p{
		margin-bottom: 3px !important;
		font-size: 14px;
		line-height: 24px !important;
	}
	.all-servicess .all-servicess-txt ul li{
		font-size: 14px!important;
    	margin-bottom: 3px!important;
	}
	.how-it-works .title-style-4 h2 {
        font-size: 24px;
    }
	.big-on-trust .title-style-2 h3 {
        font-size: 22px;
    }
	.big-on-trust .bixol-services .bixol-service-item .bixol-service-content h5 {
		font-size: 15px;
	}
	.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span i img {
		width: 30px;
	}
	.bixol-service-section .bixol-services .bixol-service-item .bixol-icon-wrapper span{
		width: 65px;
	    height: 65px;
	}
	.trust-safety .title-style-2 h3 {
        font-size: 26px;
    }
	.trust-safety .icon-wrapper img {
		width: 40px;
	}
	.home2-steps-area .steps-bottom .steps-column .icon-wrapper span{
		width: 85px;
	    height: 85px;
	}
	.bixol-title-area h3 {
        font-size: 22px;
    }
	.home6-process-section .home6-process-bottom .process-column .icon-wrapper span{
		font-size: 35px;
	}
	.home2-steps-area .steps-bottom .steps-column{
		padding: 20px;
	}
	.bixol-pricing-table .bixol-title-area h3 {
        font-size: 24px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top h4 {
        font-size: 18px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list span {
        font-size: 14px;
        margin-top: 0px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column{
		padding: 25px 15px 20px 15px;
	}
	.contactus-page .title-style-4 h2 {
        font-size: 26px;
    }
	.mission-vission .title-style-4 h2 {
        margin-bottom: 8px;
        font-size: 26px;
    }
	.mission-vission .mission-vission-txt p {
		padding-bottom: 6px;
		line-height: 24px;
		font-size: 14px;
	}
	.mission-vission .mission-vission-img1 {
        width: 275px;
    }
	.mission-vission .mission-vission-txt1 h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }
	.mission-vission .mission-vission-img2 {
        width: 275px;
        margin: 0px auto 0;
    }
	.mission-vission .mission-vission-img3 {
        width: 275px;
        margin: 10px auto 10px;
    }
	.mission-vission .mission-vission-img4 {
        width: 275px;
        margin: 15px auto 10px;
    }
	.mission-vission .mission-vission-img5 {
        width: 275px;
        margin: 5px auto 10px;
    }
	.faq-section .faq-bottom h4 {
        padding-top: 20px;
        font-size: 20px;
    }
	.faq-section .faq-bottom .faq-wrapper .accordion-item .accordion-header a {
        font-size: 15px;
        padding: 15px 15px 15px 20px;
    }
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 100px;
    }
    .banner-img-bg {
        height: 525px;
    }
    .why-choose-us .bixol-title-area h3 {
        font-size: 24px;
    }
    .home6-process-section .home6-process-bottom .process-column .item-content .h6-headline h5{
        font-size: 18px;
    }
    .home2-steps-area .steps-bottom .steps-column .title h6{
        font-size: 15px;
    }
    .hire-candidate-sec .hire-candidate-form h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .custom-btn{
        width: 22%;
    }
    .bixol-breadcrumb {
        padding: 55px 0;
    }
    .all-servicess .all-servicess-txt h1 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .download-now-sec .download-now-sec-txt h3 {
        font-size: 20px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img {
        width: 110px;
    }
    .download-now-sec .download-now-sec-txt {
        height: 155px;
    }
    .mobile-footer .mobile-footer-sec ul li a{
		font-size: 13px;
	}
	.mobile-footer .mobile-footer-sec ul li a img{
		width: 18px;
	}
}
/* end (max-width: 425px) */

/* (max-width: 420px) */
@media (max-width: 420px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 98px;
    }
}
/* end (max-width: 420px) */

/* (max-width: 410px) */
@media (max-width: 410px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 97px;
    }
}
/* end (max-width: 410px) */

/* (max-width: 400px) */
@media (max-width: 400px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 94px;
    }
}
/* end (max-width: 400px) */

/* (max-width: 390px) */
@media (max-width: 390px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 92px;
    }
}
/* (max-width: 390px) */

/* (max-width: 380px) */
@media (max-width: 380px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 89px;
    }
}
/* (max-width: 380px) */

/* (max-width: 375px) */
@media (max-width: 375px){
	.multi-step-form1 .f-dropdown > span > span{
		font-size: 16px;
	}
	#multi-step-form .step h3 {
        font-size: 14px;
    }
	.multi-step-form2 .plans .plan .plan-details span{
		font-size: 16px;
	}
	.slider-form {
        width: 100%;
        margin: 0 auto;
		height: 390px;
    }
	.multi-step-form3 .radio-btn .hobbies-icon {
        width: 60px;
        height: 60px;
    }
	.multi-step-form3 .radio-btn {
        height: 115px;
        margin: 5px 5px 0;
    }
	.multi-step-form4 .input-group .input-group-prepend .input-group-text{ 
		font-size: 14px;
	}
	.multi-step-form4 .input-group .form-control{
		font-size: 14px;
	}
	.multi-step-form4 .form-group .form-control{
		font-size: 14px;
	}
	.multi-step-form4 {
        padding: 0 5px;
    }
	.browse-categories .home6-service-bottom .column-wrapper .services-column .item-content .h6-headline h5{
		font-size:13px;
	}
	.why-choose-us .bixol-title-area h3 {
        font-size: 22px;
    }
	.bixol-about-section .bixol-about-left .bixol-compare-slider {
        width: 300px;
    }
	.browse-categories .home6-primary-btn a {
		height: 35px;
		line-height: 35px;
		font-size: 12px;
	}
	.why-choose-us .bixol-title-area p{
		font-size: 14px;
	}
	.bixol-readmore-btn{
		font-size: 12px;
	}
	.bixol-breadcrumb .breadcrumb-content h2 {
        font-size: 28px;
    }
	.bixol-breadcrumb {
        padding: 55px 0;
    }
	.bixol-breadcrumb .breadcrumb-object {
        position: absolute;
        top: 10px;
        right: 40px;
        width: 60px;
    }
	.bixol-breadcrumb .breadcrumb-object1 {
        left: 40px;
        bottom: 25px;
        top: unset;
    }
	.browse-categories .title-style-4 h2 {
        font-size: 24px;
    }
	.how-it-works .title-style-4 h2 {
        font-size: 24px;
    }
	.home6-process-section .home6-process-bottom .process-column .item-content .h6-headline h5{
		font-size: 16px;
	}
	.big-on-trust .title-style-2 h3 {
        font-size: 24px;
    }
	.big-on-trust .bixol-services .bixol-service-item .bixol-service-content h5 {
        font-size: 14px;
    }
	.big-on-trust .bixol-services .bixol-service-item .bixol-service-content p {
        font-size: 14px;
    }
	.trust-safety .title-style-2 h3 {
        font-size: 24px;
    }
	.bixol-title-area h3 {
        font-size: 24px;
    }
	.home2-steps-area .steps-bottom .steps-column .title h6{
		font-size: 16px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-top h4 {
        font-size: 16px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper {
        margin-top: 5px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-icon-wrapper img {
        width: 45px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list span {
        font-size: 13px;
    }
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column .pc-list p {
		font-size: 12px;
	}
	.bixol-pricing-table .pricing-table-area .pricing-content .pricing-column {
        padding: 15px 10px 15px 10px;
		margin-bottom: 20px;
    }
	.bixol-pricing-table .pricing-table-area {
        padding-left: 15px;
        padding-right: 15px;
    }
	.bixol-pricing-notes .bixol-pricing-notes-txt h4 {
        font-size: 20px;
    }
	.bixol-pricing-notes .bixol-pricing-notes-txt ul li {
        font-size: 14px;
    }
	.our-services-page .title-style-4 h2 {
        margin-bottom: 35px;
    }
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 88px;
    }
    .bixol-breadcrumb {
        padding: 45px 0;
    }
    .all-servicess .all-servicess-txt h1 {
        font-size: 18px;
    }
    .download-now-sec .download-now-sec-txt h3 {
        font-size: 18px;
    }
    .download-now-sec .download-now-sec-txt .download-now-sec-img img {
        width: 95px;
    }
    .download-now-sec .download-now-sec-txt {
        height: 130px;
    }
}
/* end (max-width: 375px) */

/* (max-width: 370px) */
@media (max-width: 370px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 86px;
    }
}
/* (max-width: 370px) */

/* (max-width: 360px) */
@media (max-width: 360px){
    .category-five-section .category-items li:nth-child(3), 
    .category-five-section .category-items li:nth-child(6), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 85px;
    }
}
/* end (max-width: 360px) */

/* (max-width: 350px) */
@media (max-width: 350px){
    .category-five-section .category-items li:nth-child(3),
    .category-five-section .category-items li:nth-child(6),
    .category-five-section .category-items li:nth-child(9),
    .category-five-section .category-items li:nth-child(12),
    .category-five-section .category-items li:nth-child(15){
        margin-left: 81px;
    }
}
/* end (max-width: 350px) */

/* (max-width: 340px) */
@media (max-width: 340px){
    .category-five-section .category-items li:nth-child(3), 
    .category-five-section .category-items li:nth-child(6), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 78px;
    }
}
/* end (max-width: 340px) */

/* (max-width: 330px) */
@media (max-width: 330px){
    .category-five-section .category-items li:nth-child(3), 
    .category-five-section .category-items li:nth-child(6), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 77px;
    }
}
/* end (max-width: 330px) */

/* (max-width: 320px) */
@media (max-width: 320px){
    .category-five-section .category-items li:nth-child(3), 
    .category-five-section .category-items li:nth-child(6), 
    .category-five-section .category-items li:nth-child(9), 
    .category-five-section .category-items li:nth-child(12), 
    .category-five-section .category-items li:nth-child(15) {
        margin-left: 74px;
    }
}


 
 

    /* Header Styles */
    h2 {
        text-align: center;
        color: #343a40; /* Dark color for the header */
        margin-bottom: 30px;
        font-size: 24px;
    }
.form-css{
	padding: 19px;
	border-radius: 1px;
    background: #e7e4f3;
	margin-bottom: 41px;
}
    /* Form Fields */
    .form-control {
        border-radius: 5px; /* Rounded corners for input fields */
        border: 1px solid #ced4da; /* Light border color */
        padding: 10px; /* Padding inside input fields */
        font-size: 16px;
    }

    .form-control:focus {
        border-color: #007bff; /* Blue border on focus */
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Light blue shadow on focus */
    }

    .form-label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    /* Message Area (TextArea) */
    #message {
        height: 150px;
    }

    /* Button Styles */
    .btn-primary {
        background-color: #007bff;
        border: none;
        padding: 12px;
        font-size: 16px;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #0056b3; /* Darker blue on hover */
    }

    /* Form Field Spacing */
    .mb-3 {
        margin-bottom: 20px; /* Space between form fields */
    }

    /* Invalid Feedback Styles (Bootstrap 5) */
    .invalid-feedback {
        display: none; /* Hide feedback by default */
    }

    .is-invalid .invalid-feedback {
        display: block; /* Show feedback if input is invalid */
        color: #dc3545; /* Red color for invalid feedback */
    }

    /* Mobile Responsive Styles */
    @media (max-width: 767px) {
      
        h2 {
            font-size: 20px; /* Smaller header on mobile */
        }
    }

      /* CSS for About Director Section */
	  .director-section {
		background-color: #f8f9fa;
		padding: 50px 0;
	}

	.director-container {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		background: #e7e4f3;
		padding: 18px;
	}
	.director-photo {
		flex: 1 1 45%;
		display: flex;
		justify-content: center; /* Centers the image horizontally */
		align-items: center; /* Centers the image vertically */
		text-align: center;
	}

	.director-photo img {
		border-radius: 50%;
		width: 200px;
		height: 200px;
		object-fit: cover;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	}

	.director-info {
		flex: 1 1 50%;
		padding-left: 30px;
	}

	.director-info h2 {
		font-size: 30px;
		color: #343a40;
		margin-bottom: 10px;
	}

	.director-info h4 {
		font-size: 22px;
		color: #007bff;
		margin-bottom: 20px;
	}

	.director-info p {
		font-size: 16px;
		color: #555;
		line-height: 1.6;
	}

	.director-info .social-icons a {
		font-size: 18px;
		color: #007bff;
		margin-right: 15px;
		text-decoration: none;
		transition: color 0.3s;
	}

	.director-info .social-icons a:hover {
		color: #0056b3;
	}

	/* Responsive Design */
	@media (max-width: 768px) {
		.director-container {
			flex-direction: column;
			text-align: center;
		}

		.director-info {
			padding-left: 0;
			margin-top: 20px;
		}
		.logo-wrapper img{
			width: 202px;
		}
	}
.sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
}
.content h1{
	color:#101820;
	/* color: #101820; */
	font-size: 50px;
}
.work{
    color: #f084dd;
}
.banner-three {

    margin-bottom: 38px;
    
    }
#global-loader {
        position: fixed;
        z-index: 50000;
        background: #fff;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }

    .loader-img {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        top: 45%;
        margin: 0 auto;
        width: 15%;
        height: 15%;
    }
    .underline {
    border-bottom: 2px solid #FEE715;
      display: inline-block;
      padding-bottom: 5px;
  }