@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('color.css');

body {
	font-family: var(--font-family);
	color: var(--black);
	font-size: 16px;
}

@media (max-width: 991px) {
	body {
		font-size: 14px;
	}
}

img {
	max-width: 100%;
}

a {
	display: inline-block;
	color: var(--primary);
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:hover {
	color: var(--primary);
	opacity: .85;
}

.article ul,
.article ol {
	margin-top: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--dark-1);
	margin: 0px;
}

h1,
.h1 {
	font-size: 2.75rem;
	line-height: 2.95rem;
	font-weight: 800;
}

.highlight {
	color: var(--primary);
}

h2,
.h2 {
	font-size: 1.9rem;
	line-height: 2.25rem;
	font-weight: 700;
}

h3,
.h3 {
	font-size: 1.6rem;
	line-height: 1.8rem;
}

h4,
.h4 {
	font-size: 1.5rem;
	line-height: 1.25;
}

h5,
.h5 {
	font-size: 1.25rem;
	line-height: 1.25;
}

h6,
.h6 {
	font-size: 0.875rem;
	line-height: 1.25;
}

@media (max-width: 767px) {
	h2 {
		font-size: 1.5rem;
		line-height: 1.9rem;
	}

	h3 {
		font-size: 1.3rem;
		line-height: 1.5rem;
	}
}

.display-1 {
	font-size: 5.5rem;
	line-height: 1.25;
}

.display-2 {
	font-size: 4.75rem;
	line-height: 1.25;
}

.display-3 {
	font-size: 4rem;
	line-height: 1.25;
}

.display-4 {
	font-size: 3.25rem;
	line-height: 1.25;
}

p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--dark-3);
}

.article p {
	margin-top: 1rem;
}

.article h2,
.article h3,
.article h4 {
	margin-top: 2rem;
}

.text-small {
	font-size: 0.875rem;
	line-height: 1.5;
}

.text-lg {
	font-size: 1.15rem;
	line-height: 1.5;
}

.bg_cover {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media (max-width: 767px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.btn {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	padding: 12px 24px;
	text-transform: capitalize;
	border-radius: 4px;
	border: none;
}

.btn {
	-webkit-transition: all 0.2s ease-out 0s;
	-moz-transition: all 0.2s ease-out 0s;
	-ms-transition: all 0.2s ease-out 0s;
	-o-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.btn:hover {
	color: var(--secondary);
	box-shadow: var(--shadow-4);
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}

.btn-light:hover {
	color: var(--primary);
}

.primary-btn {
	background: var(--gradient-1);
	color: var(--white);
	box-shadow: var(--shadow-2);
}

.navbar-btn a {
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0;
}

.navbar-btn .primary-btn {
	font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.navbar-btn .primary-btn {
		padding: 12px 20px;
	}
}

@media only screen and (max-width: 576px) {
	.navbar-btn .primary-btn {
		font-size: 14px;
		line-height: 16px;
		padding: 9px 19px;
	}
}

.btn:focus {
	box-shadow: none;
	outline: none;
}

.btn.btn-lg {
	font-size: 1.15rem;
	padding: 16px 24px;
}

.btn.btn-sm {
	padding: 8px 16px;
}

.btn.square {
	border-radius: 0px;
}

.btn.semi-rounded {
	border-radius: 12px;
}

.btn.rounded-full {
	border-radius: 50px;
}

.btn.icon-left span,
.btn.icon-left i {
	margin-right: 8px;
}

.btn.icon-right span,
.btn.icon-right i {
	margin-left: 8px;
}

.btn.icon-btn {
	width: 48px;
	height: 48px;
	padding: 0;
	line-height: 48px;
}

.btn.icon-btn.btn-lg {
	width: 56px;
	height: 56px;
	line-height: 56px;
}

.btn.icon-btn.btn-sm {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler {
	padding: 0.25rem 0.45rem;
}

.mb-100 {
	margin-bottom: 100px;
}

/*===== NAVBAR SIX =====*/
.navbar-six {
	background-color: var(--light-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six {
		padding: 10px 0;
	}
}

.navbar-headersticky {
	position: -webkit-sticky;
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: hsla(0, 0%, 100%, .8);
	box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);
}

.navbar-six .navbar {
	position: relative;
	padding: 0;
}

.navbar-brand img,
.footer-logo img {
	height: 45px;
}

.navbar-six .navbar-toggler .toggler-icon {
	width: 30px;
	height: 2px;
	background-color: var(--black);
	margin: 5px 0;
	display: block;
	position: relative;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.navbar-six .navbar-toggler.active .toggler-icon:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 7px;
}

.navbar-six .navbar-toggler.active .toggler-icon:nth-of-type(2) {
	opacity: 0;
}

.navbar-six .navbar-toggler.active .toggler-icon:nth-of-type(3) {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-collapse {
		position: absolute;
		top: 116%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		z-index: 8;
		padding: 10px 16px;
	}
}

.navbar-six .navbar-nav {
	margin-right: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav {
		margin-right: 0;
	}
}

.navbar-six .navbar-nav .nav-item {
	position: relative;
}

.navbar-six .navbar-nav .nav-item a {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	color: var(--black);
	text-transform: capitalize;
	position: relative;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-weight: 500;
	margin: 22px 6px;
	border: 1px solid transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item a {
		padding: 10px;
		display: block;
		border: 0;
		margin: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item a.active {
		border: 0;
	}
}

.navbar-six .navbar-nav .nav-item a i {
	font-size: 14px;
	font-weight: 700;
	padding-left: 8px;
}

.navbar-six .navbar-nav .nav-item:hover>a {
	background-color: var(--primary);
	color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item:hover>a {
		border: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-nav-toggler {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		padding: 10px 14px;
		font-size: 16px;
		background: none;
		border: 0;
		color: var(--black);
	}
}

.navbar-six .navbar-nav .nav-item .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 260px;
	background-color: var(--white);
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0.3s;
	z-index: 99;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	padding: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu {
		position: relative !important;
		width: 100% !important;
		left: 0 !important;
		top: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
		right: auto;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-transition: all none ease-out 0s;
		-moz-transition: all none ease-out 0s;
		-ms-transition: all none ease-out 0s;
		-o-transition: all none ease-out 0s;
		transition: all none ease-out 0s;
		box-shadow: none;
		text-align: left;
		border-top: 0;
		height: 0;
	}
}

.navbar-six .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
	height: auto;
	display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
		height: 0;
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu.show {
		height: auto;
	}
}

.navbar-six .navbar-nav .nav-item .sub-menu li {
	list-style-type: none;
	position: relative;
	margin-bottom: 6px;
}

.navbar-six .navbar-nav .nav-item .sub-menu li:last-child {
	margin-bottom: 0px;
}

.navbar-six .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
	color: var(--black);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.navbar-six .navbar-nav .nav-item .sub-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	position: relative;
	color: var(--black);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	border-radius: 0;
	margin: 0 0;
	opacity: 1;
	border: 0;
	border-radius: 5px;
}

.navbar-six .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler {
	color: var(--black);
}

.navbar-six .navbar-nav .nav-item .sub-menu li a i {
	font-weight: 700;
	font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu li a i {
		display: none;
	}
}

.navbar-six .navbar-nav .nav-item .sub-menu li a.active {
	color: var(--white);
}

.navbar-six .navbar-nav .nav-item .sub-menu li a.active i {
	color: var(--white);
}

.navbar-six .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
	display: inline-block;
}

.navbar-six .navbar-nav .nav-item .sub-menu li a::after,
.navbar-six .navbar-nav .nav-item .sub-menu li a::before {
	display: none;
}

.navbar-six .navbar-nav .nav-item .sub-menu li .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
	.navbar-six .navbar-nav .nav-item .sub-menu li .sub-menu {
		margin-left: 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu li .sub-menu {
		padding-left: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.navbar-six .navbar-nav .nav-item .sub-menu li .sub-menu.show {
		visibility: visible;
		height: auto;
		position: relative;
	}
}

.navbar-six .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

.navbar-six .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
	color: var(--white);
}

.navbar-six .navbar-nav .nav-item .sub-menu li:hover>a {
	background: var(--primary);
	color: var(--white);
}

.navbar-six .navbar-nav .nav-item .sub-menu li:hover>a::before {
	opacity: 1;
}

.navbar-six .navbar-nav .nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
	.navbar-six .navbar-btn {
		position: absolute;
		right: 70px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media (max-width: 767px) {
	.navbar-six .navbar-btn {
		position: absolute;
		right: 60px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

/* promobar */
.promo-bar {
	position: fixed;
	padding: .9rem 1.5rem;
	top: -300px;
	left: 50%;
	transform: translateX(-50%);
	background: hsla(0, 0%, 100%, .8);
	box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);
	border: 1px solid #ddd;
	border-radius: 5px;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 600px;
	box-sizing: border-box;
	opacity: 0;
	transition: top 0.9s ease-out, opacity 1s ease-out;
}

.promo-bar.show {
	top: 95px;
	opacity: 1;
}

.promo-bar i {
	margin-left: .5rem;
}

.promo-bar a.promo-text {
	color: #333;
	text-decoration: none;
	flex-grow: 1;
}

.promo-bar button.close-promo-bar {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: .5rem;
	transform: translateY(-50%);
}

@media (max-width: 600px) {
	.promo-bar {
		left: 0;
		transform: translateY(-100%);
	}

	.promo-bar.show {
		transform: translateY(0);
		top: 70px;
	}
}

/* ===== Buttons Css ===== */
.primary-btn span {
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
}

/* блик */
.btn {
	position: relative;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}

.shine {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: skewX(-10deg) translateX(-150%);
	pointer-events: none;
	box-shadow: 0 0 15px rgba(255, 255, 255, .3);
	animation: shining 2s infinite;
}

@keyframes shining {
	0% {
		transform: skewX(60deg) translateX(-150%);
	}

	50% {
		transform: skewX(-10deg) translateX(-75%);
		background: rgba(255, 255, 255, 0.5);
	}

	100% {
		transform: skewX(-60deg) translateX(150%);
	}
}

.bg-dark-2 {
	background-color: var(--light-2);
}

/*======================================
    header Area CSS
========================================*/
.header-ten {
	position: relative;
	overflow: hidden;
	padding: 150px 0;
}

.header-ten .header-inner {
	height: auto;
	background-size: cover;
	background-position: center;
	position: relative;
}

.header-ten .header-text {
	float: none;
}

.header-ten .header-text p {
	color: var(--primary);
	font-size: 16px;
	display: block;
	margin-bottom: 15px;
}

.header-ten .header-text h1 {
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.header-ten .header-text p {
	color: var(--dark-1);
}

.header-ten .header-text .light-rounded-buttons {
	margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.header-ten .header-image {
		display: none;
	}

	.header-ten {
		padding: 60px 0;
	}
}

.header-ten .verticle-lines .vlines {
	width: 3px;
	height: 100%;
	background: #473bf036;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	-webkit-animation-name: lineanim;
	animation-name: lineanim;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
	animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	opacity: 0.2;
}

.header-ten .verticle-lines .vlines.vlines.one {
	left: 20%;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.header-ten .verticle-lines .vlines.vlines.two {
	left: 40%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.header-ten .verticle-lines .vlines.vlines.three {
	left: 60%;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.header-ten .verticle-lines .vlines.vlines.four {
	left: 80%;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

@-webkit-keyframes lineanim {
	50% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		-webkit-transform-origin: top left;
		transform-origin: top left;
	}

	50.1% {
		-webkit-transform-origin: bottom left;
		transform-origin: bottom left;
	}

	100% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transform-origin: bottom left;
		transform-origin: bottom left;
	}
}

@keyframes lineanim {
	50% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		-webkit-transform-origin: top left;
		transform-origin: top left;
	}

	50.1% {
		-webkit-transform-origin: bottom left;
		transform-origin: bottom left;
	}

	100% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transform-origin: bottom left;
		transform-origin: bottom left;
	}
}

/*===========================
  services kak css 
===========================*/
.services-seven {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.services-seven {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-seven .section-title-four {
		margin-bottom: 45px;
	}
}

@media (max-width: 767px) {
	.services-seven .section-title-four {
		margin-bottom: 35px;
	}
}

@media (max-width: 767px) {
	.services-seven .section-title-four span {
		margin-bottom: 15px;
	}
}

.services-seven .section-title-four h2 {
	margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-seven .section-title-four h2 {
		font-size: 1.9rem;
		line-height: 2.8rem;
	}
}

@media (max-width: 767px) {
	.services-seven .section-title-four h2 {
		font-size: 1.5rem;
		line-height: 1.9rem;
	}
}

.services-seven .section-title-four p {
	color: var(--dark-1);
}

.services-seven .single-service {
	position: relative;
	text-align: left;
	padding: 50px;
	box-shadow: var(--shadow-2);
	border-radius: 5px;
	border: 1px solid var(--light-3);
	background-color: var(--white);
	overflow: hidden;
	margin-top: 30px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-seven .single-service {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.services-seven .single-service {
		padding: 35px;
	}
}

.services-seven .single-service::before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 0%;
	content: "";
	background-color: var(--primary);
	transition: all 0.4s ease-in-out;
}

.services-seven .single-service:hover {
	box-shadow: var(--shadow-4);
}

.services-seven .single-service:hover::before {
	width: 100%;
}

.services-seven .single-service .serial {
	font-size: 45px;
	display: block;
	margin-bottom: 7px;
	-webkit-text-stroke-width: 1px;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: var(--primary);
	font-weight: 800;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.services-seven .single-service:hover .serial {
	-webkit-text-stroke-color: transparent;
	-webkit-text-fill-color: var(--primary);
}

.services-seven .single-service h3 {
	color: var(--black);
	font-weight: 600;
}

.services-seven .single-service p {
	color: var(--dark-3);
	margin-top: 25px;
}

.services-seven .single-service .light-rounded-buttons {
	margin-top: 25px;
}

/*===========================
  services trebovan css 
===========================*/
.services-one {
	position: relative;
	background-color: var(--white);
	padding-top: 120px;
	padding-bottom: 120px;
}

.services-one .section-title {
	padding-bottom: 10px;
}

.services-one .section-title .title {
	color: var(--black);
	margin-bottom: 16px;
}



.services-one .section-title p {
	color: var(--dark-3);
}

.services-one .services-content {
	margin-top: 40px;
	display: flex;
}

.services-one .services-content .services-icon {
	height: 80px;
	width: 80px;
	line-height: 75px;
	text-align: center;
	border-radius: 12px;
	background: var(--gradient-1);
	color: var(--white);
	font-size: 35px;
	float: left;
	margin-right: 20px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.services-one .services-content .services-icon svg path {
	fill: var(--secondary);
}

.services-one .services-content:hover .services-icon {
	background: var(--gradient-1);
	color: var(--white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.services-one .services-content .media-body {
		padding-right: 10px;
	}
}

@media (max-width: 767px) {
	.services-one .services-content .media-body {
		padding-left: 0;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.services-one .services-content .media-body {
		padding-left: 0px;
		padding-top: 0;
	}
}

.services-one .services-content .media-body .services-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 30px;
	color: var(--black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.services-one .services-content .media-body .services-title {
		font-size: 22px;
	}
}

.services-one .services-content .media-body .text {
	color: var(--dark-3);
	margin-top: 8px;
}

.services-one .services-image {
	position: absolute;
	width: 40%;
	height: 100%;
	top: 0;
	right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.services-one .services-image {
		width: 35%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.services-one .services-image {
		width: 34%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-one .services-image {
		position: relative;
		width: 720px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.services-one .services-image {
		position: relative;
		width: 100%;
		padding-left: 15px;
		padding-right: 16px;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.services-one .services-image {
		position: relative;
		width: 540px;
		margin: 0 auto;
	}
}

.services-one .services-image .image {
	max-width: 400px;
	width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-one .services-image .image {
		margin: 0 auto;
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.services-one .services-image .image {
		margin: 0 auto;
		padding-top: 50px;
	}
}

.services-one .services-image .image img {
	width: 100%;
}

/*===== call action four =====*/
.call-action .inner-content {
	position: relative;
	padding: 50px;
	border-radius: 10px;
	background: var(--gradient-1);
	overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call-action .inner-content {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.call-action .inner-content {
		padding: 30px;
		text-align: center;
	}
}

.call-action .inner-content .bg-shape {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.call-action .text h2 {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 42px;
	color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call-action .text h2 {
		font-size: 25px;
		line-height: 38px;
	}
}

@media (max-width: 767px) {
	.call-action .text h2 {
		font-size: 22px;
		line-height: 32px;
	}
}

.call-action .text h2 span {
	display: block;
	color: var(--primary);
}

/*===========================
  features css 
===========================*/
.features-thirteen {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.features-thirteen {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.features-thirteen .section-title-four {
		margin-bottom: 45px;
	}
}

@media (max-width: 767px) {
	.features-thirteen .section-title-four {
		margin-bottom: 35px;
	}
}

.features-thirteen .section-title-four h2 {
	margin-bottom: 15px;
}

.features-thirteen .section-title-four p {
	color: var(--dark-1);
}

.features-style-thirteen {
	text-align: center;
	background-color: var(--white);
	padding: 70px 40px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-2);
	border-radius: 10px;
	margin-top: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.features-style-thirteen {
		padding: 50px 30px;
	}
}

.features-style-thirteen::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 4px;
	width: 0%;
	background-color: var(--primary);
	transition: all 0.4s ease-in-out;
}

.features-style-thirteen:hover {
	box-shadow: var(--shadow-4);
}

.features-style-thirteen:hover::before {
	width: 100%;
}

.features-style-thirteen i {
	height: 70px;
	width: 70px;
	line-height: 70px;
	background-color: var(--primary);
	fill: var(--secondary);
	text-align: center;
	display: inline-block;
	font-size: 35px;
	border-radius: 5px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.features-thirteen .features-style-thirteen .services-icon {
	font-size: 35px;
	height: 70px;
	width: 70px;
	line-height: 65px;
	background: var(--gradient-1);
	fill: var(--secondary);
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.features-style-thirteen h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	color: var(--black);
	margin-bottom: 10px;
}

.features-style-thirteen p {
	color: var(--dark-3);
}

.features-style-thirteen:hover i,
.features-thirteen .features-style-thirteen:hover .services-icon {
	border-radius: 50%;
	transform: rotate(360deg);
}

/*===== TESTIMONIAL STYLE TWO =====*/
.testimonial-two {
	padding-top: 100px;
	padding-bottom: 120px;
}

.testimonial-two .testimonial-two-active {
	margin: 0;
}

.testimonial-two .section-title-seven {
	text-align: center;
	max-width: 550px;
	margin: auto;
	margin-bottom: 50px;
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-two .section-title-seven {
		margin-bottom: 45px;
	}
}

@media (max-width: 767px) {
	.testimonial-two .section-title-seven {
		margin-bottom: 35px;
	}
}

.testimonial-two .section-title-seven span {
	text-transform: uppercase;
	color: var(--primary);
	display: inline-block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 600;
}

.testimonial-two .section-title-seven h5 {
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--primary);
	text-transform: uppercase;
	font-size: 1rem;
}

@media (max-width: 767px) {
	.testimonial-two .section-title-seven h5 {
		font-size: 0.8rem;
	}
}

.testimonial-two .section-title-seven h2 {
	margin-bottom: 18px;
	position: relative;
	padding-bottom: 15px;
}

.testimonial-two .section-title-seven h2::before {
	position: absolute;
	content: "";
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	height: 3px;
	width: 50px;
	background-color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-two .section-title-seven h2 {
		font-size: 2rem;
		line-height: 2.8rem;
	}
}

@media (max-width: 767px) {
	.testimonial-two .section-title-seven h2 {
		font-size: 1.5rem;
		line-height: 1.9rem;
	}
}

.testimonial-two .section-title-seven p {
	color: var(--dark-3);
}

.testimonial-two .single-testimonial {
	border: 1px solid var(--gray-4);
	padding: 30px;
	border-radius: 8px;
	background-color: var(--white);
	margin-top: 30px;
}

.testimonial-two .single-testimonial .testimonial-author .author-image img {
	width: 80px;
	border-radius: 50%;
}

.testimonial-two .single-testimonial .testimonial-author .author-name {
	padding-left: 20px;
}

@media (max-width: 767px) {
	.testimonial-two .single-testimonial .testimonial-author .author-name {
		padding: 0;
		padding-top: 15px;
	}
}

.testimonial-two .single-testimonial .testimonial-author .author-name .name {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	color: var(--black);
	margin-bottom: 0;
}

.testimonial-two .single-testimonial .testimonial-author .author-name .sub-title {
	font-size: 14px;
	line-height: 24px;
	color: var(--dark-3);
}

.testimonial-two .single-testimonial .testimonial-author .author-name ul {
	padding-left: 0rem;
}

.testimonial-two .single-testimonial .testimonial-author .author-name .ratings li {
	display: inline-block;
}
.testimonial-two .single-testimonial .testimonial-author .author-name .ratings svg {
	width: .85rem;
	vertical-align: baseline;
	fill: var(--primary);
}

.testimonial-two .single-testimonial .testimonial-text {
	margin-top: 25px;
}

.testimonial-two .single-testimonial .testimonial-text .text {
	color: var(--dark-1);
}

.testimonial-two .testimonial-two-wrapper {
	position: relative;
}

.testimonial-two .testimonial-two-wrapper .tns-nav {
	position: absolute;
	bottom: -60px;
	left: -10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonial-two .testimonial-two-wrapper .tns-nav button {
	font-size: 0;
	width: 10px;
	height: 10px;
	border-radius: 8px;
	background-color: var(--primary);
	opacity: 0.3;
	border: 0;
	margin: 0 3px;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.testimonial-two .testimonial-two-wrapper .tns-nav button.tns-nav-active {
	opacity: 1;
	width: 20px;
}

/* accordion-style-two */
.accordion-style-two .accordion .card {
	margin-top: 8px;
	border: 1px solid var(--gray-5) !important;
	border-radius: 4px;
}

.accordion-style-two .accordion .card .card-header {
	padding: 0;
	background: none;
}

.accordion-style-two .accordion .card .card-header a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	position: relative;
	color: var(--white);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	border: 1px solid var(--primary);
	margin: -1px;
	border-radius: 4px;
	padding: 13px 16px;
	background: var(--primary);
}

.accordion-style-two .accordion .card .card-header a::before {
	position: absolute;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
	font-family: lineicons !important;
	right: 16px;
	top: 14px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-style-two .accordion .card .card-header a.collapsed {
	color: var(--black);
	border-color: var(--gray-4);
	background-color: transparent;
}

.accordion-style-two .accordion .card .card-header a.collapsed::before {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}

.accordion-style-two .accordion .card .card-body {
	padding: 16px;
}

.accordion-style-two .accordion .card .card-body .text {
	color: var(--dark-1);
}

.about-six .faq-accordion {
	margin-top: 45px;
}

.about-six .faq-accordion .accordion .card {
	border: 0;
	background: none;
}

.about-six .faq-accordion .accordion .card .card-header {
	padding: 0;
	border: 0;
	background: none;
	margin-top: 40px;
}

.about-six .faq-accordion .accordion .card .card-header a {
	font-size: 18px;
	font-weight: 500;
	color: var(--black);
	display: block;
	position: relative;
	padding-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.about-six .faq-accordion .accordion .card .card-header a {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.about-six .faq-accordion .accordion .card .card-header a {
		font-size: 16px;
	}
}

.about-six .faq-accordion .accordion .card .card-header a::before {
	content: "\eb30";
	font-family: "LineIcons";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.about-six .faq-accordion .accordion .card .card-header .collapsed::before {
	content: "\eb5c";
}

.about-six .faq-accordion .accordion .card .card-body {
	padding: 20px 20px 0;
}

.about-six .faq-image {
	margin-top: 50px;
}

.about-six .faq-image img {
	width: 100%;
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
	padding: 120px 0;
}

.brand-area .section-title {
	text-align: left;
	margin-bottom: 0;
	padding-right: 50px;
	position: relative;
}

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.brand-area .section-title {
		margin-bottom: 40px;
	}
}

.brand-area .section-title h2 {
	margin-bottom: 18px;
	text-transform: capitalize;
	position: relative;
	font-weight: 700;
	padding-bottom: 14px;
}

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.brand-area .section-title h2 {
		font-size: 30px;
		line-height: 38px;
	}
}

.brand-area .section-title h2:before {
	position: absolute;
	left: 0;
	margin-left: 0;
	bottom: -1px;
	height: 2px;
	width: 50px;
	background: var(--primary);
	content: "";
}

.brand-area .section-title p {
	color: var(--dark-3);
}

.brand-area .section-title.white-text h2 {
	color: var(--white);
}

.brand-area .section-title.white-text h2::before {
	background-color: var(--white);
}

.brand-area .section-title.white-text span {
	color: var(--white);
}

.brand-area .section-title.white-text p {
	color: var(--white);
}

.brand-logo-wrapper ul {
	padding-left: 0;
}

.brand-area .brand-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.brand-area .brand-list li {
	flex-basis: 33.33%;
	list-style-type: none;
}

@media (max-width: 767px) {
	.brand-area .brand-list li {
		flex-basis: 50%;
	}
}

.brand-area .brand-list li .brand-list-item {
	display: block;
	text-align: center;
	height: 150px;
	line-height: 150px;
	border: 1px solid var(--gray-4);
}

.brand-area .brand-list li .brand-list-item:hover {
	background-color: var(--primary);
}

.brand-area .brand-list li .brand-list-item:hover img {
	transform: scale(1);
	opacity: 1;
}

.brand-area .brand-list li .brand-list-item img {
	transition: all 0.4s ease;
	transform: scale(0.9);
	opacity: 0.7;
	max-width: 40%;
}

.brand-area .bg-color-white .brand-list::before {
	background: var(--light-1);
}

/*======================================
	Contact CSS
========================================*/
.contact-us {
	position: relative;
	padding-bottom: 100px;
	padding-top: 100px;
}

.contact-us .contact-head {
	background: var(--white);
	border-radius: 7px;
	overflow: hidden;
	box-shadow: var(--shadow-4);
	position: relative;
}

.contact-us .title {
	margin-bottom: 30px;
}

.contact-us .contact-inner-title h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--white);
	text-transform: capitalize;
}

.contact-us .contact-inner-title p {
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	line-height: 23px;
	margin-top: 10px;
	display: block;
}

.contact-us .single-head {
	padding: 50px;
	height: 100%;
	background: var(--gradient-1);
	position: relative;
	overflow: hidden;
}

@media (max-width: 767px) {
	.contact-us .single-head {
		padding: 2rem 1rem 2rem 1rem;
	}

	.contact-us .map {
		height: 400px;
	}
}

.contact-us .single-info {
	text-align: left;
	margin-bottom: 16px;
	position: relative;
}

.contact-us .single-info .title {
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--white);
	font-size: 18px;
}

.contact-us .single-info .title span {
	display: block;
	font-size: 14px;
	margin-top: 8px;
	font-weight: 500;
}

.contact-us .single-info ul li {
	color: var(--white);
	font-size: 1rem;
	list-style-type: none;
}

.contact-us .single-info ul li a {
	font-weight: 500;
	color: var(--white);
	display: inline-block;
	font-size: 15px;
}

.contact-us .single-info ul li a :hover {
	color: var(--white);
}

.contact-us .contact-social {
	display: block;
	margin-top: 65px;
}

.contact-us .contact-social p {
	color: var(--white);
	font-weight: 600;
	font-size: 18px;
}

.contact-us .contact-social ul {
	display: inline-block;
	position: relative;
	left: -9px;
	margin-top: 15px;
}

.contact-us .contact-social ul li {
	display: inline-block;
	margin-right: 5px;
}

.contact-us .contact-social ul li:last-child {
	margin-right: 0;
}

.contact-us .contact-social ul li a {
	position: relative;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	display: block;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	overflow: hidden;
}
.contact-us .contact-social ul li a svg {
	font-size: 1.3rem;
	fill: var(--white);
}

.contact-us .contact-social ul li a span {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	display: block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.contact-us .contact-social ul li a:hover .icon-1 {
	top: -15px;
}

.contact-us .contact-social ul li a .icon-2 {
	top: 50px;
}

.contact-us .contact-social ul li a:hover .icon-2 {
	top: 15px;
}

.contact-us .contact-social ul li a:hover {
	color: var(--white);
}

/*--popup----------------*/
/* popup button */
.message-container {
	padding: 20px;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 350px;
	max-height: 400px;
	z-index: 3;
}

.message {
	display: none;
	font-weight: 500;
	margin-bottom: 20px;
	animation: slide-up 0.5s ease-in-out;
}

.bg-primary {
	background: var(--gradient-1);
	color: var(--secondary);
}

@media (max-width: 768px) {
	.message-container {
		padding: 0;
		width: 100%;
		max-width: 100%;
		left: 0;
		bottom: 0;
	}

	#messageList {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.message {
		margin-bottom: 0px;
	}
}

@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Окно*/
.popup,
.popup *,
.popup :after,
.popup :before {
	box-sizing: border-box;
}

.popup3 {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.popup2 {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 20px;
	width: 100%;
	max-width: 450px;
	height: auto;
	z-index: 9999;
	transition: transform 0.5s ease-out, opacity 0.3s ease-out;
	transform: translateY(100%);
	opacity: 0;
}

.popup2.show {
	transform: translateY(0);
	opacity: 1;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
}

@media (max-width: 767px) {
	.popup2 {
		bottom: 50%;
		left: 50%;
		transform: translate(-50%, 0%);
	}

	.popup2.show {
		transform: translate(-50%, 50%);
		opacity: 1;
	}
}

.call-action-popup .inner-content {
	position: relative;
	padding: 50px;
	border-radius: 10px;
	background: var(--gradient-1);
	overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call-action-popup .inner-content {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.call-action-popup .inner-content {
		padding: 30px;
		text-align: center;
	}
}

.call-action-popup .text h2 {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5rem;
}

.call-action-popup .text h2,
.call-action-popup .text p {
	color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call-action-popup .text h2 {
		font-size: 1.1rem;
		line-height: 1.3rem;
	}

	.call-action-popup .text p {
		font-size: .8rem;
	}
}

@media (max-width: 767px) {
	.call-action-popup .text h2 {
		font-size: 22px;
		line-height: 32px;
	}
}

.call-action-popup .text h2 span {
	display: block;
	color: var(--primary);
}

.popup_hidden {
	visibility: hidden;
}

/* Затемнение фона */
.popup-outer {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
}

/* Кнопка закрытия */
.popup-close {
	position: absolute;
	top: 0px;
	right: 15px;
	font-family: 'Open Sans';
	font-size: 30px;
	opacity: .5;
	cursor: pointer;
}

.popup2 .popup-close {
	top: 25px;
	right: 35px;
}

.popup-close:hover {
	opacity: 1;
}

@media (max-width: 500px) {
	.popup-close {
		top: 0;
		right: 5px;
	}
}

.popup-window {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 600px;
	border-radius: 4px;
}

/* partners section */
.features-style-three {
	margin-top: 40px;
	background-color: var(--light-1);
	border-radius: 8px;
	padding: 35px;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.features-style-three .features-icon {
	padding: 0rem 1rem;
}

.features-style-three .features-icon img {
	width: auto;
	height: 40px;
	object-fit: contain;
}

.features-style-three .features-icon .shape {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
}

.features-style-three:hover {
	box-shadow: var(--shadow-4);
}

@media (max-width: 767px) {
	.features-style-three {
		padding: 20px;
	}

	.features-style-three .features-icon img {
		height: 30px;
	}
}

.features-style-three .features-content {
	margin-top: 30px;
}

.features-style-three .features-title {
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	color: var(--black);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.features-style-three .features-title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.features-style-three .features-title {
		font-size: 20px;
	}
}

.features-style-three .text {
	color: var(--dark-3);
	margin-top: 16px;
}

/* TOC */
.toc-wrapper {
	max-height: 200px;
	overflow: hidden;
	position: relative;
}

#tocContainer ul,
#tocContainer li ul {
	list-style-type: none;
	padding-left: 20px;
	margin-top: 0;
}

.toc-wrapper::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
}

.toc-wrapper.light-2::after {
	background: linear-gradient(transparent, var(--light-2));
}

.toc-wrapper.white::after {
	background: linear-gradient(transparent, var(--white));
}

#expandTocBtn {
	display: none;
}

.toc-wrapper.expanded::after {
	display: none;
}

/*===== ERROR FOUE Style =====*/
.error-area {
	min-height: 500px;
	height: 60vh;
	text-align: center;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	position: relative;
	overflow: hidden;
	background-color: var(--white);
	z-index: 2;
}

.error-area .shape {
	position: absolute;
	left: 300px;
	top: 0;
	z-index: -1;
	height: 80%;
	opacity: 0.5;
}

.error-area .shape2 {
	position: absolute;
	right: 300px;
	bottom: 0;
	z-index: -1;
	height: 80%;
	opacity: 0.5;
	transform: rotate(180deg);
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table {
	display: table !important;
}

.d-table-cell {
	vertical-align: middle;
}

.d-table-cell {
	display: table-cell !important;
}

.error-area .error-content {
	background-color: var(--white);
	display: inline-block;
	padding: 70px 60px;
	box-shadow: var(--shadow-5);
	border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.error-area .error-content {
		padding: 60px 50px;
	}
}

@media (max-width: 767px) {
	.error-area .error-content {
		padding: 40px 30px;
	}
}

.error-area .error-content h1 {
	font-size: 80px;
	color: var(--primary);
	margin-bottom: 25px;
	font-weight: 800;
	line-height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.error-area .error-content h1 {
		font-size: 60px;
		line-height: 50px;
	}
}

@media (max-width: 767px) {
	.error-area .error-content h1 {
		font-size: 45px;
		line-height: 30px;
	}
}

.error-area .error-content h2 {
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--dark-2);
	font-weight: 600;
	line-height: 24px;
}

.error-area .error-content .button {
	margin-top: 30px;
}

.error-area .error-content .button .primary-btn {
	color: var(--white);
	border-color: var(--gray-4);
}

.error-area .error-content p {
	font-weight: 400;
	margin-bottom: 40px;
	color: var(--gray-2);
}

/*===== FOOTER ONE =====*/
.footer-one {
	background-color: var(--light-2);
}

.footer-one .footer-logo {
	margin-top: 30px;
}

.footer-one .footer-widget {
	padding-top: 70px;
	padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer-one .footer-widget {
		padding-top: 40px;
		padding-bottom: 70px;
	}
}

@media (max-width: 767px) {
	.footer-one .footer-widget {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}

.footer-one .footer-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: var(--black);
	position: relative;
}

.footer-one .footer-widget ul {
	padding-left: 0;
}

.footer-one .footer-widget li {
	list-style-type: none;
}

.footer-app-store {
	padding-top: 22px;
}

.footer-one .footer-app-store .download-title {
	font-size: 15px;
	display: block;
	margin-bottom: 15px;
	font-weight: 500;
	color: var(--dark-1);
}

.footer-app-store ul {
	padding-left: 0;
}

.footer-app-store li {
	display: inline-block;
	margin-right: 8px;
}

.footer-app-store li img {
	max-width: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.footer-app-store li {
		margin-right: 6px;
	}
}

.footer-app-store li:last-child {
	margin-right: 0;
}

@media (max-width: 767px) {
	.footer-app-store li {
		width: 120px;
		display: block;
		margin-bottom: 10px;
	}

	.footer-app-store li:last-child {
		margin: 0;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.footer-app-store li {
		width: auto;
	}
}

.footer-app-store li a {
	-webkit-transition: all 0.2s ease-out 0s;
	-moz-transition: all 0.2s ease-out 0s;
	-ms-transition: all 0.2s ease-out 0s;
	-o-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.footer-app-store li a:hover {
	box-shadow: var(--shadow-4);
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}

.footer-one .f-about {
	margin-top: 30px;
}

.footer-one .f-about .text {
	margin-top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
	.footer-one .f-about {
		padding-right: 200px;
	}
}

.footer-one .footer-link {
	margin-top: 30px;
}

.footer-one .footer-link ul {
	margin-top: 8px;
}

.footer-one .footer-link ul a {
	font-size: 16px;
	line-height: 24px;
	color: var(--dark-3);
	margin-top: 16px;
	font-weight: 400;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.footer-one .copyright a {
	color: var(--dark-3);
}

@media (max-width: 767px) {

	.footer-one .footer-link ul a,
	.footer-one .copyright a {
		margin-top: 12px;
	}
}

.footer-one .footer-link ul a:hover,
.footer-one .copyright a:hover {
	color: var(--primary);
}

.footer-one .footer-contact {
	margin-top: 30px;
}

.footer-one .footer-contact ul {
	margin-top: 24px;
}

.footer-one .footer-contact ul li {
	display: block;
	margin-top: 15px;
	position: relative;
	padding-left: 24px;
	color: var(--dark-3);
}

.footer-one .footer-contact ul li:first-child {
	margin: 0;
}

.footer-one .footer-contact ul li svg {
	font-size: 1rem;
	position: absolute;
	left: 0;
	top: 4px;
	fill: var(--dark-3);
}

.footer-one .footer-copyright {
	border-top: 1px solid var(--gray-4);
}

.footer-one .copyright {
	padding-bottom: 23px;
	padding-top: 13px;
}

.footer-one .copyright .text {
	color: var(--dark-3);
	margin-top: 10px;
}

.footer-one .social {
	margin-top: 10px;
}

.footer-one .social li {
	display: inline-block;
	margin-right: 15px;
}

.footer-one .social li:last-child {
	margin-right: 0;
}

.footer-one .social li a svg {
	font-size: 1.3rem;
	fill: var(--dark-3);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.footer-one .social li a svg:hover {
	fill: var(--primary);
}