@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap);

:root {
	--body: #fff;
	--black: #000;
	--black-2: #020842;
	--white: #fff;
	--white-2: #EAF0FF;
	--white-3: rgba(255, 255, 255, 0.75);
	/*--theme: #3FB5FD;*/
	/*--theme-2: #0B6EDA;*/
	/*--theme-3: #0E1449;*/
	/*--theme-4: #A347FF;*/
	--header: #000D27;
	/*--base: #f4de4a;*/
	--base: #80000b;
	
	
	--text: #49515B;
	--text-2: #636D6C;
	--border: rgba(255, 255, 255, 0.12);
	--border-2: rgba(4, 11, 41, 0.17);
	--ratting: #F8BC26;
	--bg: #F3F8FF;
	---box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05)
}

.theme-btn {
	position: relative;
	z-index: 2;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-transform: capitalize;
	text-align: center;
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	color:#fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	padding: 18px 35px;
	max-height: 54px;
	border-radius: 4px;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	-webkit-appearance: none;
	outline: none !important;
	overflow: hidden;
	cursor: pointer
}

.theme-btn.theme-btn-2 {
	/*background: linear-gradient(84deg, var(--theme) 0%, var(--base) 100%);*/
	background: var(--base) 100%;
	border: 1px solid #fff;
	box-shadow: 5px 5px 10px #00000063;
	margin-bottom: 10px
}

.theme-btn.trasparent-btn-2 {
	background: #fff0;
	border: 1px solid var(--theme-4);
	color: var(--theme-4);
	border-image-slice: 1;
	border-radius: 4px
}

.theme-btn.white-btn {
	background: var(--white);
	color: var(--black-2)
}

.theme-btn.white-btn::before,
.theme-btn.white-btn::after {
	background-color: var(--black-2)
}

.theme-btn.white-btn:hover {
	color: var(--white)
}

.theme-btn.black-btn::before,
.theme-btn.black-btn::after {
	background-color: var(--black-2)
}

.theme-btn.black-btn:hover {
	color: var(--white)
}

.theme-btn::before,
.theme-btn::after {
	content: "";
	width: 50%;
	height: 0%;
	position: absolute;
	background-color: var(--white);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	z-index: -1
}

.theme-btn::before {
	top: 0%;
	right: 0%
}

.theme-btn::after {
	left: 0%;
	bottom: 0%
}

.theme-btn:hover::before,
.theme-btn:hover::after {
	width: 100%;
	height: 100%
}

.theme-btn:hover {
	color: var(--theme-2)
}

body {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	/*border:5px solid maroon;*/
}



    /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--base);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}


.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden
}

.container-fluid {
	padding: 0 70px
}

@media (max-width:450px) {
	.container-fluid {
		padding: 0 10px
	}
}

ul {
	padding: 0;
	margin: 0;
	list-style: none
}

button {
	border: none;
	background-color: #fff0;
	padding: 0
}

input:focus {
	color: var(--white);
	outline: none
}

input {
	color: var(--white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: 700;
	font-family: "Montserrat", serif;
	color: var(--black-2);
	letter-spacing: -.2px
}

h1 {
	font-size: 50px;
	line-height: 120%
}

h2 {
	font-size: 60px;
	line-height: 130%
}

@media (max-width:1199px) {
	h2 {
		font-size: 42px
	}
}

@media (max-width:767px) {
	h2 {
		font-size: 36px
	}
}

@media (max-width:575px) {
	h2 {
		font-size: 32px
	}
}

h3 {
	font-size: 24px;
	line-height: 150%
}

@media (max-width:575px) {
	h3 {
		font-size: 20px
	}
}

h4 {
	font-size: 20px;
	line-height: 137%
}

h5 {
	font-size: 18px;
	line-height: 150%
}

h6 {
	font-size: 16px;
	line-height: 145%
}

@media (max-width:767px) {
	br {
		display: none
	}
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--header);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

p {
	color: var(--text);
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	margin: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.search-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background-color: rgb(255 255 255 / .9)
}

.search-wrap .search-inner {
	position: relative;
	width: 100%;
	height: 100%
}

.search-wrap .search-cell {
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.search-wrap .search-field-holder {
	width: 50%;
	margin: auto;
	position: relative;
	-webkit-animation: slideInUp 0.3s;
	animation: slideInUp 0.3s
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.search-wrap .search-field-holder {
		width: 70%
	}
}

@media (max-width:575px) {
	.search-wrap .search-field-holder {
		width: 80%
	}
}

.search-wrap .main-search-input {
	width: 100%;
	height: 70px;
	border: 0;
	padding: 0 50px;
	text-transform: capitalize;
	background: #fff0;
	font-size: 25px;
	color: var(--header);
	border-bottom: 2px solid var(--header);
	text-align: center;
	letter-spacing: 2px
}

@media (max-width:575px) {
	.search-wrap .main-search-input {
		height: 50px;
		padding: 0 0;
		line-height: 50px;
		font-size: 18px
	}
}

input.main-search-input::-webkit-input-placeholder {
	color: var(--header);
	opacity: 1;
	font-size: 25px
}

input.main-search-input:-ms-input-placeholder {
	color: var(--header);
	opacity: 1;
	font-size: 25px
}

input.main-search-input::-ms-input-placeholder {
	color: var(--header);
	opacity: 1;
	font-size: 25px
}

@media (max-width:575px) {
	input.main-search-input::-webkit-input-placeholder {
		font-size: 18px
	}

	input.main-search-input:-ms-input-placeholder {
		font-size: 18px
	}

	input.main-search-input::-ms-input-placeholder {
		font-size: 18px
	}
}

.search-close {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: var(--theme);
	cursor: pointer
}

.scroll-up {
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	position: fixed;
	right: 25px;
	bottom: 35px;
	height: 50px;
	width: 50px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.scroll-up::after {
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	content: "\f176";
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	font-size: 18px;
	color: var(--theme-2);
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.scroll-up svg path {
	fill: none
}

.scroll-up svg.scroll-circle path {
	stroke: var(--theme-2);
	stroke-width: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden
}

@media (max-width:767px) {
	.mouse-cursor {
		display: none
	}
}

.cursor-inner {
	width: 6px;
	height: 6px;
	z-index: 10000001;
	background-color: var(--theme-2);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out
}

.cursor-outer {
	margin-left: -12px;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--theme-2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: .5;
	-webkit-transition: all 0.08s ease-out;
	transition: all 0.08s ease-out
}

.section-title {
	position: relative
}

@media (max-width:767px) {
	.section-title {
		margin-bottom: 0;
		text-align: center
	}
}

.section-title .sub-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    padding: 6px 19px;
    /*background: #f4de4a;*/
    background:#80000b;
    margin-bottom: 15px;
    border-radius: 4px;
}

.section-title .sub-title.white-sub-title {
	background: var(--white)
}
.section-title .sub-title span {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: .26px;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    color: #fff0;
    text-transform: uppercase;
}

.section-title h2 {
	color: var(--black-2);
	font-size: 42px;
	font-weight: 700;
	line-height: 55px;
	letter-spacing: -.84px;
	text-transform: none
}

@media (max-width:767px) {
	.section-title h2 {
		font-size: 38px
	}
}

@media (max-width:575px) {
	.section-title h2 {
    font-size: 22px;
    line-height: 33px;
}
}

.center {
	text-align: center;
	margin: 0 auto
}

.section-bg {
	background-color: var(--bg) !important
}

.section-bg-2 {
	background-color: var(--theme) !important
}

.section-padding {
	padding: 60px 0
}

@media (max-width:1199px) {
	.section-padding {
		padding: 50px 0
	}
}

@media (max-width:991px) {
	.section-padding {
		padding: 50px 0
	}
}

@-webkit-keyframes rounded {
	50% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
}

@keyframes rounded {
	50% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg)
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg)
	}
}

@-webkit-keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@-webkit-keyframes scroll3 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes scroll3 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@-webkit-keyframes zoomBig {
	0% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1)
	}

	50% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1)
	}

	100% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1)
	}
}

@keyframes zoomBig {
	0% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1)
	}

	50% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1)
	}

	100% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1)
	}
}

@-webkit-keyframes topToBottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes topToBottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.header-main {
	position: relative;
	z-index: 11
}

.header-main .main-menu {
	position: relative;
	margin-right: 30px;
	z-index: 11
}

.header-main .main-menu ul {
	margin-bottom: 0
}

.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	-webkit-margin-end: 30px;
	margin-inline-end: 30px
}

.header-main .main-menu ul li:last-child {
	-webkit-margin-end: 0;
	margin-inline-end: 0
}

.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
	padding: 20px 0;
	text-align: left;
	position: relative;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.header-main .main-menu ul li a i {
	padding-left: 5px;
	vertical-align: middle
}

.header-main .main-menu ul li a:hover {
	color: var(--theme-2) !important
}

.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 240px;
	background: var(--white);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	-webkit-transform-origin: top center;
	transform-origin: top center;
	color: var(--header);
	box-shadow: 0 0 10px 0 rgb(0 0 0 / .2);
	-webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / .2);
	-moz-box-shadow: 0 0 10px 0 rgb(0 0 0 / .2);
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.header-main .main-menu ul li .submenu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0
}

.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
	padding: 0 25px;
	padding-bottom: 11px;
	padding-top: 11px;
	width: 100%;
	border-bottom: 1px solid #eee
}

.header-main .main-menu ul li .submenu li:last-child a {
	border: none
}

.header-main .main-menu ul li .submenu li .submenu {
	inset-inline-start: 100%;
	top: 0;
	visibility: hidden;
	opacity: 0
}

.header-main .main-menu ul li .submenu li:hover>a {
	background: var(--theme-2);
	color: var(--white) !important
}

.header-main .main-menu ul li .submenu li:hover>a::after {
	color: var(--theme-2)
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
	-webkit-transform: translateY(1);
	transform: translateY(1);
	visibility: visible;
	opacity: 1
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
	position: absolute;
	top: 50%;
	inset-inline-end: 25px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--theme)
}

.header-main .main-menu ul li .has-homemenu {
	width: 1000px;
	padding: 30px 30px 10px 30px;
	opacity: 0;
	left: -250px;
	visibility: hidden;
	padding: 30px 30px 10px 30px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:991px) {
	.header-main .main-menu ul li .has-homemenu .homemenu-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
	position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
	position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	margin-top: 20px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
	min-width: 130px;
	text-align: center;
	color: var(--white);
	padding: 10px 15px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff0), to(#292930));
	background: linear-gradient(to bottom, #fff0 0%, #292930 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: ""
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%)
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
	width: 100%
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px
}

.header-main .main-menu ul li:hover>a {
	color: var(--theme-2)
}

.header-main .main-menu ul li:hover>a::after {
	color: var(--theme)
}

.header-main .main-menu ul li:hover>.submenu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	color: var(--black-2)
}

.header-2 {
	padding: 6px 0;
	border-bottom: 1px solid rgb(255 255 255 / .13)
}

@media (max-width:1199px) {
	.header-2 {
		padding: 16px 0
	}
}

.header-2 .header-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.header-2 .header-main .main-menu::after {
	background: rgb(255 255 255 / .13);
	height: 80px
}

.header-2 .header-main .main-menu ul li a {
	color: var(--white)
}

.header-2 .header-main .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px
}

.header-2 .header-main .header-right .contact-us {
	gap: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header-2 .header-main .header-right .contact-us .icon {
	width: 54px;
	height: 54px;
	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;
	cursor: pointer;
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	color: var(--white);
	font-size: 20px;
	line-height: 20px
}

.header-2 .header-main .header-right .contact-us p {
	color: var(--white-3)
}

.header-2 .header-main .header-right .contact-us span {
	color: var(--white);
	font-weight: 700
}

.header-2 .header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	color: var(--white)
}

.header-2.style-3 {
	background-color: var(--white);
	padding: 0;
	border: none
}

.header-2.style-3 .header-main .header-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px
}

@media (max-width:1399px) {
	.header-2.style-3 .header-main .header-left {
		gap: 15px
	}
}

.header-2.style-3 .header-main .header-left .logo {
	width: 300px;
	height: 80px;
	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: var(--header);
	margin-left: -70px;
	-webkit-clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%)
}

.logo img {
	height: 75px
}

.header-2.style-3 .header-main .header-left .main-menu::after {
	display: none
}

@media (max-width:1399px) {
	.header-2.style-3 .header-main .header-left .main-menu ul li {
		-webkit-margin-end: 20px;
		margin-inline-end: 20px
	}
}

.header-2.style-3 .header-main .header-left .main-menu ul li a {
	color: var(--black-2)
}

.header-2.style-3 .header-main .header-right {
	position: relative
}

.header-2.style-3 .header-main .header-right .contact-us {
	padding-right: 30px;
	gap: 15px
}

@media (max-width:1600px) {
	.header-2.style-3 .header-main .header-right .contact-us {
		display: none !important
	}
}

.header-2.style-3 .header-main .header-right .contact-us .icon {
	width: 54px;
	height: 54px;
	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;
	cursor: pointer;
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	color: var(--white)
}

.header-2.style-3 .header-main .header-right .contact-us p {
	color: var(--theme)
}

.header-2.style-3 .header-main .header-right .contact-us span {
	color: var(--black-2)
}

.header-2.style-3 .header-main .sidebar__toggle {
	font-size: 20px;
	color: var(--black-2)
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.9s;
	background-color: var(--white);
	-webkit-box-shadow: var(---box-shadow);
	box-shadow: var(---box-shadow);
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown
}

.sticky.header-2 {
	background-color: var(--black-2)
}

.sticky.header-2.style-3 {
	background-color: var(--white)
}

.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--theme-2);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
	transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none
}

.offcanvas__info::-webkit-scrollbar {
	display: none
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px
}

.offcanvas__wrapper .offcanvas__content .text {
	color: var(--text)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme-2);
	position: relative;
	z-index: 9;
	cursor: pointer
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 16px;
	font-weight: 500
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 15px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
	margin-right: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
	color: var(--theme-2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
	margin-top: 30px;
	gap: 10px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: #fff0;
	color: var(--header);
	border-radius: 50%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	text-align: center;
	border: 1px solid var(--border)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
	background-color: var(--theme-2);
	color: var(--white)
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0
}

.offcanvas__overlay.overlay-open {
	opacity: .8;
	visibility: visible
}

@media (max-width:450px) {
	.offcanvas__info {
		width: 300px
	}
}

@media (max-width:575px) {
	.offcanvas__wrapper {
		padding: 20px
	}
}

.hero-3 {
	position: relative
}

.hero-3 .array-button {
	position: absolute;
	top: 50%;
	right: 60px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.hero-3 .array-button .array-prev {
	background-color: #fff0;
	color: var(--white);
	border: 1px solid var(--white)
}

.hero-3 .array-button .array-next {
	background-color: #fff0;
	color: var(--white);
	border: 1px solid var(--white)
}

@media (max-width:991px) {
	.hero-3 .array-button {
		display: none
	}
}

.hero-3 .hero-inner {
	position: relative;
	height: 600px;
	overflow: hidden
}

.hero-3 .hero-inner .bg-image {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	mix-blend-mode: saturation;
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%)
}

.hero-3 .hero-inner .bg-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(89deg, rgb(2 5 36 / .84) .44%, rgb(2 5 36 / .1) 85.09%);
	z-index: -1
}

.hero-3 .hero-content {
	position: relative;
	z-index: 2;
	padding: 100px 0 100px!important;
	margin-left: -50px;
	/*-webkit-transform: translateY(-150px);*/
	/*transform: translateY(-150px)*/
}

@media (max-width:1399px) {
	.hero-3 .hero-content {
		margin-left: 0
	}
}

@media (max-width:767px) {
	.hero-3 .hero-content {
		padding-top: 30px!important;
		padding-bottom: 110px!important
	}
}

.hero-3 .hero-content h1 {
	color: #000;
	line-height: 87px;
	font-weight: 800;
	padding-bottom: 15px;
	text-shadow: 1px 2px 2px #fff
}

.hero-3 .hero-content h1 span {
	color: var(--base);
	line-height: 87px;
	font-weight: 800;
	padding-bottom: 15px;
	font-size: 60px
}

@media (max-width:1199px) {
	.hero-3 .hero-content h1 {
		font-size: 50px
	}
}

@media (max-width:991px) {
.hero-3 .hero-content h1 {
    font-size: 42px!important;
    line-height: 60px;
    margin-top: 25px;
}
}

.hero-3 .hero-content .text {
	padding-right: 0;
	color: #000;
	text-shadow: 1px 1px 5px #fff;
	font-weight: 700
}

@media (max-width:1399px) {
	.hero-3 .hero-content .text {
		padding-right: 0
	}
}

.hero-3 .hero-content .hero-button {
	margin-top: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

@media (max-width:991px) {
	.hero-3 .hero-content .hero-button {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width:575px) {
	.hero-3 .hero-content .hero-button {
		margin-top: 20px
	}
}

.hero-3 .hero-content .hero-button .contact-us {
	gap: 15px
}

.hero-3 .hero-content .hero-button .contact-us .icon {
	width: 54px;
	height: 54px;
	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;
	cursor: pointer;
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	color: var(--white);
	font-size: 16px;
	line-height: 20px;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	z-index: 11
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before,
.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0 0 0 0 rgb(63 181 253 / .6);
	box-shadow: 0 0 0 0 rgb(63 181 253 / .6);
	-webkit-animation: popupVideo 3s infinite;
	animation: popupVideo 3s infinite;
	border-radius: 50%
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	content: "";
	position: absolute
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	content: "";
	position: absolute
}

.hero-3 .hero-content .hero-button .contact-us p {
	color: var(--white-3);
	opacity: .5;
	text-align: start
}

.hero-3 .hero-content .hero-button .contact-us h4 {
	color: var(--white)
}

.hero-3 .shape .shape-1 {
	position: absolute;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px)
}

@media (max-width:991px) {
	.hero-3 .shape .shape-1 {
		display: none
	}
}

.hero-3 .shape .shape-2 {
	position: absolute;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px)
}

@media (max-width:991px) {
	.hero-3 .shape .shape-2 {
		display: none
	}
}

.hero-3 .shape .shape-3 {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateY(150px);
	transform: translateY(150px)
}

@media (max-width:991px) {
	.hero-3 .shape .shape-3 {
		display: none
	}
}

.hero-3 .shape .shape-4 {
	right: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateY(-150px);
	transform: translateY(-150px)
}

@media (max-width:991px) {
	.hero-3 .shape .shape-4 {
		display: none
	}
}

.hero-3 .shape .shape-5 {
	right: 20%;
	top: 5%;
	position: absolute;
	rotate: 90deg;
	z-index: 1
}

@media (max-width:991px) {
	.hero-3 .shape .shape-5 {
		display: none
	}
}

.hero-3 .swiper-slide.swiper-slide-active .hero-content {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1500ms ease;
	transition: all 1500ms ease
}

.hero-3 .swiper-slide.swiper-slide-active .hero-button {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 2000ms ease;
	transition: all 2000ms ease
}

.hero-3 .swiper-slide.swiper-slide-active .shape-1 {
	opacity: 10%;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: all 2500ms ease;
	transition: all 2500ms ease
}

.hero-3 .swiper-slide.swiper-slide-active .shape-2 {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: all 1500ms ease;
	transition: all 1500ms ease
}

.hero-3 .swiper-slide.swiper-slide-active .shape-3 {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1500ms ease;
	transition: all 1500ms ease
}

.hero-3 .swiper-slide.swiper-slide-active .shape-4 {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1500ms ease;
	transition: all 1500ms ease
}

.hero-3.style-2 {
	position: relative
}

.hero-3.style-2 .hero-inner .bg-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	mix-blend-mode: normal;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	z-index: -1
}

.hero-3.style-2 .hero-inner .bg-image::before {
	content: none
}

.hero-3.style-2 .hero-inner .shape-1 {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateY(-150px);
	transform: translateY(-150px)
}

.hero-3.style-2 .hero-inner .shape-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	white-space: nowrap;
	min-width: 100%;
	position: absolute;
	font-family: "Montserrat", serif;
	bottom: 30px;
	z-index: 1;
	left: -49px;
	font-size: 150px;
	line-height: 120px;
	color: rgb(255 255 255 / .16);
	font-weight: 900;
	letter-spacing: -3px;
	-webkit-animation: scroll3 50s linear infinite;
	animation: scroll3 50s linear infinite
}

.hero-3.style-2 .hero-inner .social-shape {
	position: absolute;
	z-index: 1;
	left: -460px;
	top: 35px;
	opacity: 0;
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px)
}

@media (max-width:1899px) {
	.hero-3.style-2 .hero-inner .social-shape {
		display: none
	}
}

.hero-3.style-2 .hero-inner .social-shape .social {
	position: absolute;
	right: 0;
	top: 42%;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	text-align: center
}

.hero-3.style-2 .hero-inner .social-shape .social p {
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 4.32px
}

.hero-3.style-2 .hero-inner .social-shape .social .icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a {
	width: 53px;
	height: 53px;
	background: rgb(255 255 255 / .1);
	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;
	cursor: pointer;
	font-size: 20px;
	color: var(--white);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a:hover {
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%)
}

.hero-3.style-2 .hero-inner .hero-content {
	padding: 50px 0 0
}

@media (max-width:1199px) {
	.hero-3.style-2 .hero-inner .hero-content h1 {
		font-size: 55px
	}
}

@media (max-width:1399px) {
	.hero-3.style-2 .hero-inner .hero-content {
		padding: 230px 0 90px
	}
}

@media (max-width:1199px) {
	.hero-3.style-2 .hero-inner .hero-content {
		padding: 150px 0 125px
	}
}

@media (max-width:991px) {
	.hero-3.style-2 .hero-inner .hero-content {
		text-align: center;
		height: 400px
	}
}

@media (max-width:991px) {
	.hero-3.style-2 .hero-inner .hero-content .hero-button .avater {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px
	}

	.hero-3 .hero-inner {
		height: 870px !important
	}
}

@media (max-width:1199px) {
	.hero-3.style-2 .hero-inner .hero-image {
		margin-left: 0;
		top: 122px;
		width: 500px;
		height: 690px
	}
}

@media (max-width:991px) {
	.hero-3.style-2 .hero-inner .hero-image {
		top: 10px
	}
}

.about-4 {
	position: relative
}

.about-4 .about-images {
	width: 870px;
	height: 700px;
	float: right;
	margin-right: 75px
}

@media (max-width:767px) {
	.about-4 .about-images {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover
	}
}

.about-4 .about-images img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-fit: contain;
	object-fit: contain
}

.about-4 .about-content .icon-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
	border-radius: 6px;
	background: var(--white);
	-webkit-box-shadow: 7px 11px 50px 52px rgb(2 8 66 / .03);
	box-shadow: 7px 11px 50px 52px rgb(2 8 66 / .03);
	padding: 15px 40px;
	max-width: 615px;
	margin-top: 25px
}

@media (max-width:767px) {
	.about-4 .about-content .icon-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center
	}
}

.about-4 .about-content .icon-box .icon {
	font-size: 55px;
	background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: #fff0
}

.about-4 .about-content .icon-box:hover .icon {
	-webkit-animation: bounceIn 1s linear;
	animation: bounceIn 1s linear
}

.about-4 .about-content .infu {
	margin-top: 35px;
	gap: 50px
}

@media (max-width:767px) {
	.about-4 .about-content .infu {
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.about-4 .about-content .infu .contact-us {
	gap: 20px
}

.about-4 .about-content .infu .contact-us span {
	color: var(--theme-2);
	font-weight: 700;
	line-height: 26px
}

.service-4 {
	position: relative;
	/*overflow: hidden;*/
	/*background-color: var(--base)*/
	border-top:1px solid var(--base);
}

.service-4 .shape-1 {
	position: absolute;
	bottom: -50px;
	left: 20px;
	-webkit-animation: spinner 30s infinite linear;
	animation: spinner 30s infinite linear
}

.service-4 .shape-2 {
	position: absolute;
	top: 70px;
	right: 30%;
	rotate: 90deg;
	opacity: .17;
	-webkit-animation: zoomBig 3s infinite linear;
	animation: zoomBig 3s infinite linear
}

.service-4 .shape-3 {
	position: absolute;
	bottom: -50px;
	right: -50px;
	opacity: .12;
	-webkit-animation: zoomBig 3s infinite linear;
	animation: zoomBig 3s infinite linear
}

.service-4 .array-button {
	position: absolute;
	top: 65%;
	right: 8%;
	left: 8%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99
}

.service-4 .array-button .array-prev {
	position: absolute;
	color: var(--black-2);
	border: 1px solid var(--black-2);
	left: 0
}

.service-4 .array-button .array-next {
	position: absolute;
	color: var(--black-2);
	border: 1px solid var(--black-2);
	right: 0
}

@media (max-width:1600px) {
	.service-4 .array-button {
		display: none
	}
}
.service-4 .signle-service-item {
    width: 100%;
    height: 540px;
    padding: 10px 10px 10px 10px;
    position: relative;
    margin-top: 25px;
    border-radius: 12px;
    text-align: center;
    background-color: var(--white);
    z-index: 1;
    border: 1px solid var(--base);
}

.service-4 .signle-service-item h4 a {
	color: var(--black-2)
}

.service-4 .signle-service-item .line {
	width: 130px;
	height: 4px;
	margin: 0 auto;
	background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%)
}

.service-4 .signle-service-item .infu-btn {
	/*background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);*/
	/*background-clip: text;*/
	/*-webkit-background-clip: text;*/
	color: #000;
	font-size: 17px;
	font-weight: 700;
	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;
	gap: 10px;
	margin-top: 20px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.service-4 .signle-service-item .service-bg {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	border-radius: 12px;
	cursor: move
}

.service-4 .signle-service-item .service-bg::before {
	content: "";
	position: absolute;
	top: -125%;
	left: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%)), color-stop(300%, RGBA(var(--getizy-white-rgb, 255, 255, 255))));
	background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%)
}

.service-4 .signle-service-item:hover .service-bg::before {
	-webkit-animation: projectCardShine 0.50s;
	animation: projectCardShine 0.50s
}

@-webkit-keyframes projectCardShine {
	100% {
		top: 125%
	}
}

@keyframes projectCardShine {
	100% {
		top: 125%
	}
}

.choose-us-4 {
	position: relative;
	overflow: hidden;
	border-top:1px solid var(--base);
}

.choose-us-4 .shape-1 {
	position: absolute;
	bottom: 20%;
	right: 20%;
	-webkit-animation: zoomBig 2s infinite linear;
	animation: zoomBig 2s infinite linear
}

@media (max-width:767px) {
	.choose-us-4 .shape-1 {
		display: none
	}
}

.choose-us-4 .shape-2 {
	position: absolute;
	bottom: -22%;
	right: 20%;
	-webkit-animation: spinner 50s infinite linear;
	animation: spinner 50s infinite linear
}

.choose-us-4 h3{margin-top:20px;
    font-size:18px;
}
@media (max-width:767px) {
	.choose-us-4 .shape-2 {
		display: none
	}
}

.choose-us-4 .shape-3 {
	position: absolute;
	top: 0%;
	right: 0%;
	-webkit-animation: zoomBig 3s infinite linear;
	animation: zoomBig 3s infinite linear;
	opacity: .6
}

@media (max-width:767px) {
	.choose-us-4 .shape-3 {
		display: none
	}
}

.choose-us-4 .shape-4 {
	position: absolute;
	top: 5%;
	left: 0%;
	-webkit-animation: zoomBig 5s infinite linear;
	animation: zoomBig 5s infinite linear;
	opacity: .6;
	z-index: -1
}

@media (max-width:767px) {
	.choose-us-4 .shape-4 {
		display: none
	}
}

.choose-us-4 .bg-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.choose-us-4 .choose-us-image {
	width: calc(100% + 40px);
	height: 314px;
	margin-left: -40px;
	position: relative
}

@media (max-width:991px) {
	.choose-us-4 .choose-us-image {
		width: 100%;
		margin-left: 0
	}
}

.choose-us-4 .choose-us-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50px 0 50px 0;
	position: relative
}

.choose-us-4 .choose-us-image::before {
	content: "";
	position: absolute;
	top: -25px;
	left: 25px;
	width: 100%;
	height: 100%;
	background: mediumpurple;
	border-radius: 50px 0 50px 0;
	pointer-events: none
}

.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px var(--theme);
	box-shadow: inset 0 0 5px var(--theme);
	border-radius: 5px
}

::-webkit-scrollbar-thumb {
	background: var(--theme);
	border-radius: 10px
}

.fix {
	overflow: hidden
}

@media (max-width:575px) {
	br {
		display: none
	}
}

.faq-1 .bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	background-position: center;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1
}

.border-none {
	border: none !important
}

.testimonial-1 {
	position: relative
}

.testimonial-1 .shape-1 {
	position: absolute;
	left: 0;
	z-index: -1;
	-webkit-animation: zoomBig 6s infinite linear;
	animation: zoomBig 6s infinite linear
}

.testimonial-1 .shape-2 {
	position: absolute;
	right: 0;
	bottom: -35%;
	z-index: -1;
	-webkit-animation: zoomBig 5s infinite linear;
	animation: zoomBig 5s infinite linear
}

.testimonial-1 .array-button {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:767px) {
	.testimonial-1 .array-button {
		display: none
	}
}

.testimonial-1 .array-button .array-prev {
	position: absolute;
	color: var(--black-2);
	border: 1px solid var(--black-2);
	left: 0;
	padding: 10px 15px
}

.testimonial-1 .array-button .array-prev:hover {
	background-color: var(--black-2);
	color: var(--white)
}

.testimonial-1 .array-button .array-next {
	position: absolute;
	color: var(--black-2);
	border: 1px solid var(--black-2);
	right: 0;
	padding: 10px 15px
}

.testimonial-1 .array-button .array-next:hover {
	background-color: var(--black-2);
	color: var(--white)
}

.testimonial-1 .testimonial-slide {
	overflow: inherit
}

.testimonial-1 .signle-testimonial-item {
	background-color: var(--white);
	border-radius: 12px;
	-webkit-box-shadow: 7px 11px 50px 52px rgb(2 8 66 / .03);
	box-shadow: 7px 11px 50px 52px rgb(2 8 66 / .03);
	margin: 0 155px;
	padding: 40px;
	padding-right: 60px;
	gap: 40px;
	position: relative;
	margin-top: 50px;
	margin-bottom: 120px
}

@media (max-width:1199px) {
	.testimonial-1 .signle-testimonial-item {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 80px
	}
}

@media (max-width:767px) {
	.testimonial-1 .signle-testimonial-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 40px 20px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}

.testimonial-1 .signle-testimonial-item::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	right: auto;
	background-color: var(--theme);
	left: -5px;
	z-index: -1;
	border-radius: 12px
}

.testimonial-1 .signle-testimonial-item img {
	width: 191px;
	height: 191px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover
}

.testimonial-1 .signle-testimonial-item .content .star {
	color: var(--theme-2);
	padding-bottom: 5px
}

.testimonial-1 .signle-testimonial-item .content p {
	color: var(--text);
	font-family: "Montserrat", serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 42px;
	letter-spacing: -.28px
}

@media (max-width:767px) {
	.testimonial-1 .signle-testimonial-item .content p {
		font-size: 18px;
		text-align: center
	}
}

.funfact-3 {
	position: relative
}

.funfact-3 .bg-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -120px;
	z-index: -1
}

.funfact-3 .shape-text {
	white-space: nowrap;
	min-width: 100%;
	z-index: 1;
	font-size: 150px;
	line-height: 120px;
	color: rgb(255 255 255 / .8);
	font-weight: 900;
	letter-spacing: -3px;
	white-space: nowrap;
	text-transform: uppercase;
	-webkit-animation: scroll3 50s linear infinite;
	animation: scroll3 50s linear infinite
}

.funfact-3 .funfact-inner {
	padding-top: 120px
}

.funfact-3 .funfact-inner .funfact-content {
	position: relative
}

.funfact-3 .funfact-inner .funfact-content .funfact-items {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto auto;
	grid-template-columns: auto auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
	row-gap: 70px
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px
}

@media (max-width:575px) {
	.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center
	}
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item .icon {
	width: 92px;
	height: 84px;
	border: 1px solid rgb(255 255 255 / .87);
	background: rgb(255 255 255 / .33);
	font-size: 50px;
	color: var(--white);
	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;
	cursor: pointer;
	border-radius: 6px
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item h2 {
	color: var(--theme-4);
	font-size: 48px;
	font-weight: 600
}

.funfact-3 .funfact-inner .funfact-image {
	float: right;
	position: relative
}

.funfact-3 .funfact-inner .funfact-image .shape-1 {
	position: absolute;
	top: 32px;
	left: -140px;
	z-index: -1;
	-webkit-animation: spinner 30s infinite linear;
	animation: spinner 30s infinite linear
}

@media (max-width:991px) {
	.funfact-3 .funfact-inner .funfact-image {
		float: none
	}
}

.funfact-3 .funfact-inner .funfact-image .image-1 {
	width: 435px;
	height: 580px
}

@media (max-width:991px) {
	.funfact-3 .funfact-inner .funfact-image .image-1 {
		width: 100%
	}
}

.funfact-3 .funfact-inner .funfact-image .image-1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-fit: cover;
	border-radius: 12px
}

.funfact-3 .funfact-inner .funfact-image .image-2 {
	width: 320px;
	height: 354px;
	position: absolute;
	bottom: -30px;
	left: -200px;
	z-index: 1
}

@media (max-width:1399px) {
	.funfact-3 .funfact-inner .funfact-image .image-2 {
		left: -100px
	}
}

.funfact-3 .funfact-inner .funfact-image .image-2::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--white);
	top: -12px;
	right: -12px;
	left: auto;
	bottom: auto;
	z-index: -1;
	border-radius: 12px
}

.funfact-3 .funfact-inner .funfact-image .image-2 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-fit: cover;
	border-radius: 12px
}

.faq-1 {
	position: relative
}

.faq-1 .faq-content .accordion-item {
	border: 0;
	margin-top: 15px;
	border-radius: 10px;
	background-color: #fff0;
	border: 1px solid var(--border)
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.18px;
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #fff0;
	padding: 10px 30px;
	padding-right: 20px
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button::after {
	content: "+";
	background: #fff0;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	line-height: 1;
	width: auto
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	content: "-";
	background: #fff0;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	line-height: 1
}

.faq-1 .faq-content .accordion-item .accordion-collapse .accordion-body {
	/*padding-top: 30px;*/
	padding-left: 30px;
	color: var(--white-3);
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	/*margin-top: -10px*/
}

.faq-1.style-2 .faq-content .accordion-item {
	border: 1px solid var(--base)
}

.faq-1.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
	color: var(--black-2)
}

.faq-1.style-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
	color: var(--black-2)
}

.faq-1.style-2 .faq-images {
	float: right;
	position: relative
}

@media (max-width:991px) {
	.faq-1.style-2 .faq-images {
		float: none
	}
}

.faq-1.style-2 .faq-images .image-1 {
	width: 100%;
	height: 100%
}

@media (max-width:1199px) {
	.faq-1.style-2 .faq-images .image-1 {
		width: 100%
	}
}

.faq-1.style-2 .faq-images .image-1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-fit: cover
}

.faq-1.style-2 .faq-images .image-2 {
	width: 320px;
	height: 354px;
	position: absolute;
	bottom: -60px;
	left: -60px;
	z-index: 1;
	-webkit-animation: topToBottom 2s linear infinite;
	animation: topToBottom 2s linear infinite
}

.faq-1.style-2 .faq-images .image-2::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--white);
	top: -12px;
	right: -12px;
	left: auto;
	bottom: auto;
	z-index: -1;
	border-radius: 12px
}

@media (max-width:1399px) {
	.faq-1.style-2 .faq-images .image-2 {
		display: none
	}
}

.faq-1.style-2 .faq-images .image-2 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-fit: cover;
	border-radius: 12px
}

.cta-2 {
	margin-top: -93px
}

.cta-2 .cta-inner {
	width: 100%;
	position: relative;
	padding: 60px 70px 60px 110px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 20px;
	/*background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);*/
	background:#fff;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	row-gap: 30px;
	border:1px solid var(--base);
}

@media (max-width:991px) {
	.cta-2 .cta-inner {
		padding: 60px 40px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center
	}
}

.cta-2 .cta-inner .icon {
	width: 114px;
	height: 114px;
	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;
	cursor: pointer;
	background-color: var(--white);
	font-size: 53px;
	position: absolute;
	left: -56px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:991px) {
	.cta-2 .cta-inner .icon {
		left: 50%;
		top: -56px;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%)
	}
}

.cta-2 .cta-inner .icon i {
	background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: #fff0
}

.cta-2 .cta-inner h3 {
	color: #000;
	font-size: 28px;
	font-weight: 700
}

.cta-2 .cta-inner p {
	font-size: 18px;
	color: #000
}

.cta-2.style-3 {
	margin-bottom: -105px
}

.cta-2.style-3 .cta-inner {
	/*background: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%)*/
}

.apps-wrapper {
	position: relative
}

.apps-wrapper .bg-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.apps-wrapper .apps-image {
	width: 560px;
	height: 700px;
	margin-left: -35px
}

.apps-wrapper .apps-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-fit: contain;
	object-fit: contain
}

@media (max-width:767px) {
	.apps-wrapper .apps-content {
		padding-bottom: 80px
	}
}

.apps-wrapper .apps-content .section-title h2 {
	font-size: 80px;
	line-height: 87px;
	padding-bottom: 40px
}

@media (max-width:767px) {
	.apps-wrapper .apps-content .section-title h2 {
		font-size: 50px;
		line-height: 60px
	}
}

.apps-wrapper .apps-content .avater {
	gap: 15px
}

.apps-wrapper .apps-content .input-form {
	position: relative;
	margin-top: 30px
}

.apps-wrapper .apps-content .input-form input {
	width: 100%;
	outline: none;
	border: none;
	padding: 19px 22px;
	color: var(--header);
	background-color: whitesmoke;
	font-weight: 500;
	border-radius: 4px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.apps-wrapper .apps-content .input-form .theme-btn {
	position: absolute;
	right: 6px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.apps-wrapper .apps-content .button {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 28px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.apps-wrapper .apps-content .button .theme-btn i {
	padding-left: 15px;
	font-size: 22px;
	margin-top: -10px
}

@media (max-width:767px) {
	.apps-wrapper .apps-content .button .theme-btn {
		width: 100%
	}
}

.scrolling-wrap {
	overflow: hidden;
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px
}

.scrolling-wrap .comm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-animation: scroll 60s linear infinite;
	animation: scroll 60s linear infinite;
	gap: 50px;
	cursor: pointer
}

.scrolling-wrap .comm .cmn-textslide {
	font-size: 42px;
	font-weight: 700;
	line-height: 55px;
	text-transform: capitalize;
	color: var(--white)
}

.scrolling-wrap .comm .cmn-textslide.color-2 {
	/*background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);*/
	background:#000;
	background-clip: text;
	-webkit-background-clip: text;
	color: #fff0
}

.scrolling-wrap .comm:nth-child(2) {
	-webkit-animation: scroll2 60s linear infinite;
	animation: scroll2 60s linear infinite
}

.scrolling-wrap:hover .comm {
	-webkit-animation-play-state: paused;
	animation-play-state: paused
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@-webkit-keyframes scroll2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@keyframes scroll2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

.marque-wrapper {
	-webkit-transform: rotate(-1deg);
	transform: rotate(-1deg)
}

.marque-wrapper .brand-slide-element {
	width: auto;
	display: inline-block
}

.marque-wrapper .brand-slide-element .marque-text {
	background-color: var(--theme-4);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 15px 35px;
	border-radius: 4px
}

.marque-wrapper .brand-slide-element .marque-text h3 {
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	font-family: "DM Sans", sans-serif
}

.marque-wrapper.style-2 .brand-slide-element .marque-text {
	background-color: var(--theme-2)
}

.footer-widgets-1 .single-footer-widget .widget-head {
	margin-bottom: 25px;
	background: var(--base);
	padding: 10px 15px
}

.footer-widgets-1 .single-footer-widget .widget-head h4 {
	font-size: 20px;
	font-weight: 600;
	position: relative;
	color:#fff;
	/*color: var(--black-2) !important*/
}

.footer-widgets-1 .single-footer-widget .footer-content p {
	margin-bottom: 22px
}

.footer-widgets-1 .single-footer-widget .footer-content h5 {
	color: var(--black-2);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 700
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input {
	position: relative;
	margin-top: 15px
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input {
	background: var(--bg);
	border: none;
	outline: none;
	padding: 10px 22px;
	width: 100%;
	border-radius: 4px;
	color: var(--text)
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::-webkit-input-placeholder {
	color: var(--text)
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input:-ms-input-placeholder {
	color: var(--text)
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::-ms-input-placeholder {
	color: var(--text)
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input .newsletter-btn {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 5px;
	width: 42px;
	height: 38px;
	border-radius: 5px;
	text-align: center;
	background-color: var(--theme);
	color: var(--white)
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon {
	gap: 25px;
	margin-top: 35px
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a {
	font-size: 26px;
	color: var(--text)
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a:hover {
	color: var(--theme-2)
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact a {
	width: 55px;
	height: 55px;
	line-height: 1;
	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;
	cursor: pointer;
	font-size: 20px;
	/*background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);*/
	color:var(--base);
	border:1px solid var(--base);
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu {
	width: 75%
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 {
	font-size: 16px;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 28px
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu span {
	/*color: #05F;*/
	color:var(--base);
	font-weight: 600
}

.footer-widgets-1 .single-footer-widget .list-area {
	padding-top: 5px
}

.footer-widgets-1 .single-footer-widget .list-area li {
	margin-bottom: 16px
}

.footer-widgets-1 .single-footer-widget .list-area li i {
	font-size: 4px
}

.footer-widgets-1 .single-footer-widget .list-area li a {
	color: var(--theme-2);
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}

.footer-widgets-1 .single-footer-widget .list-area li:hover a {
	padding-left: 10px
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content p {
	color: var(--white-3)
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content h5 {
	color: var(--white)
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a {
	color: var(--white-3)
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a:hover {
	color: var(--theme-2)
}

.footer-widgets-1.style-2 .single-footer-widget .list-area li a {
	color: var(--theme-2)
}

.footer-widgets-1.style-2 .single-footer-widget .widget-head h4 {
	color: var(--white)
}

.footer-bottom {
	/*background-color: var(--black-2);*/
	padding: 10px 0
}

.footer-bottom .footer-bottom-wrapper p {
	color: #000
}

.footer-bottom.style-2 {
	/*background-color:var(--base)*/
	border-top:1px solid var(--base);
}

@media (max-width:767px) {
	.footer-bottom.style-2 .footer-bottom-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 10px;
		text-align: center
	}

	.service-4 .signle-service-item {
		height: auto !important
	}
}

.footer-bottom.style-2 .footer-bottom-wrapper .security {
	color: #000
}

.footer-bottom.style-2 .footer-bottom-wrapper .security a {
	padding: 0 5px;
	color: #000
}

footer .gallery {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto auto auto;
	grid-template-columns: auto auto auto;
	grid-gap: 10px
}

footer .gallery .footer-gallery-img {
	width: 100%;
	position: relative;
	overflow: hidden
}

footer .gallery .footer-gallery-img img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px
}

@media (max-width:1199px) {
	footer .gallery .footer-gallery-img img {
		width: 100%;
		display: block
	}
}

footer .gallery .footer-gallery-img .content {
	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;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--white);
	background: linear-gradient(84deg, rgb(63 181 253 / .5) 0%, rgb(11 110 218 / .5) 100%);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 5px
}

footer .gallery .footer-gallery-img:hover .content {
	-webkit-transform: rotateX(0);
	transform: rotateX(0)
}

.highlight-row {
	/*background: linear-gradient(135deg, #ff3e541f 0%, #ff7b0021 100%);*/
	/*box-shadow: 0 10px 25px rgb(255 65 90 / .4);*/
	border: 1px solid var(--base);
	z-index: 5
}

.highlight-row h6 {
	letter-spacing: .5px;
	color: var(--theme-3) !important
}

.highlight-row h6 span {
	--bs-text-opacity: 1;
	color: #2145ff !important
}

.highlight-row .btn-warning {
	background: #ffc107;
	border: none;
	transition: 0.3s;
	margin-right: 20px
}

.highlight-row .btn-warning:hover {
	background: #ffdd54;
	transform: translateY(-2px)
}

.enquiry-form-box {
	background: #fff;
	border-radius: 12px;
	width: 400px;
	margin-top: 50px
}

@media (max-width:450px) {
	.enquiry-form-box {
		width: 100%
	}
}

.hero-image {
	border-radius: 10px;
	position: absolute;
	top: 20%;
	right: 20px
}

.hero-image img {
	width: auto;
	height: 100%
}

.nav-link {
	color: var(--black-2);
	font-weight: 700;
	padding: 5px 15px !important
}

.navbar {
	padding: 0;
	box-shadow: 5px 5px 10px #ccc;
	height: 80px;
}

.navbar-brand {
    width: 165px;
    /* height: 80px; */
    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: #fff;
    /* margin-left: -70px; */
    /* -webkit-clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%); */
    /* clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%); */
    /*position: absolute;*/
    /*top: 3px;*/
    /*border: 1px solid #ccc;*/
    /*box-shadow: 2px 2px 15px #ccc;*/
}
.navbar-brand img{ max-height:70px;}
@media (max-width:450px) {
    .top-bar{display:none;}
.navbar-brand {
    position: relative;
    border: none;
    box-shadow: none;
}
.navbar-brand img {
    z-index: 1;
    position: relative;
    max-height: 49px;
}
}
.navbar-brand img {
	z-index: 1;
	position: relative
}

.card-box {
	padding: 40px 30px;
	border: 1px solid var(--base);
	background: #fff;
	transition: .3s
}

.card-box:hover {
	box-shadow: 0 12px 35px rgb(0 0 0 / .08)
}
.card-box-2 {
	padding: 40px 30px;
	border: 1px solid var(--base);
	background: #fff;
	transition: .3s
}

.card-box-2:hover {
	box-shadow: 0 12px 35px rgb(0 0 0 / .08)
}

.partner-logo img {
	max-height: 75px;
	filter: grayscale(100%) brightness(70%);
	opacity: .7;
	transition: .5s
}

.partner-logo img:hover {
	filter: grayscale(0%) brightness(100%);
	opacity: 1;
	transform: scale(1.1)
}

.hire-nav,
.testimonial-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 12px 14px;
	border-radius: 50%;
	border: none;
	color: var(--black);
	font-size: 16px;
	transition: .3s;
	z-index: 10
}

.hire-nav:hover,
.testimonial-nav:hover {
	transform: translateY(-50%) scale(1.15)
}

.hire-nav.array-prev,
.testimonial-nav.array-prev {
	left: -10px
}

.hire-nav.array-next,
.testimonial-nav.array-next {
	right: -10px
}

.review-img {
	width: 65px;
	height: 65px;
	margin-right: 15px;
	border-radius: 50%;
	object-fit: cover
}

.star i {
	color: #fc0
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100
}

.my-float {
	margin-top: 16px
}

.top-bar a:hover {
	color: #ffc107 !important;
	opacity: .9
}

.feature-card {
	transition: all 0.4s ease;
	position: relative;
	padding-top: 30px !important
}

.feature-card:hover {
	transform: translateY(-10px);
	background: rgb(255 255 255 / .1) !important;
	border-color: rgb(255 255 255 / .3) !important
}

.feature-card .icon-box {
	position: absolute;
	top: -20px;
	background: #fff;
	border-radius: 50%;
	width: 60px;
	height: 50px;
	text-align: center;
	padding: 10px
}

.hover-lift {
	transition: transform 0.4s ease
}

.hover-lift:hover {
	transform: translateY(-8px)
}

.bg-gradient-warning {
	background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%)
}

.chooseSwiper img {
	object-fit: cover;
	width: 100%;
	height: 350px
}

.hiring-section {
	/*background-color: var(--theme)*/
	/*border-top:1px solid var(--theme);*/
}

.hiring-inner {
	position: relative;
	width: 100%
}

.hiring-slide,
.hiring-slide .swiper-wrapper,
.hiring-slide .swiper-slide {
	width: 100%;
	height: auto
}

.hiring-slide .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center
}

.hiring-logo img {
	max-width: 100%;
	max-height: 100px;
	height: auto;
	display: block
}

.placement-logo img {
	max-width: 100%;
	height: auto;
	display: block
}

.form-control {
	display: block;
	width: 100%;
	color: var(--bs-body-color);
	border: var(--bs-border-width) solid #020842
}
.border-red{border-top:1px solid red;}
.footer-wrapper{
    border-top:1px solid var(--base)
}
.text-warning{color:var(--base)!important;}