/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# Privacy Policy Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
	--thm-font: "Poppins", sans-serif;
	--thm-font-2: "PT Sans", sans-serif;
	--thm-base: #fb3c1d;
	--thm-base-rgb: 251, 60, 29;
	--thm-black: #010212;
	--thm-black-rgb: 1, 2, 18;
	--thm-gray: #6d8c54;
	--thm-gray-rgb: 109, 140, 84;
	--thm-color-1: #000000;
	--thm-color-1-rgb: 0, 0, 0;
}

.row {
	--bs-gutter-x: 30px;
}

.gutter-y-30 {
	--bs-gutter-y: 30px;
}

body {
	font-family: var(--thm-font);
	color: var(--thm-black);
	font-size: 16px;
	line-height: 34px;
	font-weight: 400;
}

body.locked {
	overflow: hidden;
}

a {
	color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--thm-primary);
	font-weight: 700;
	font-family: var(--thm-font-2);
	margin: 0;
}

p {
	margin: 0;
}

.noSelect {
	-ms-user-select: none;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
}

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

dl,
ol,
ul {
	margin-top: 0;
	margin-bottom: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

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

button {
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
}

.container {
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
	box-shadow: none !important;
	outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
	box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
	outline: none !important;
}

.bootstrap-select .dropdown-menu {
	border: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	z-index: 991;
	border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
	background: var(--thm-primary);
	color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
	font-size: 16px;
	font-weight: 500;
	padding: 4px 20px;
	color: #ffffff;
	background: var(--thm-black);
	transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
	background: var(--thm-primary);
	color: #fff;
	cursor: pointer;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

.section-separator {
	border-color: var(--thm-border);
	border-width: 1px;
	margin-top: 0;
	margin-bottom: 0;
}

/***
=============================================
    Thm Btn
=============================================
***/
.thm-btn {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	border: none;
	outline: none !important;
	background-color: var(--thm-base);
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	text-transform: none;
	padding: 15px 45px 14px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	font-family: var(--thm-font);
	overflow: hidden;
	z-index: 1;
}

.thm-btn:hover {
	color: #ffffff;
}

.thm-btn:after {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--thm-black);
	content: "";
	transform: scaleY(0) rotateX(0deg);
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.thm-btn:hover:after {
	transform: scaleY(1) rotateX(0deg);
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
	z-index: -1;
}

/***
=============================================
    Section Title
=============================================
***/
.sec-title {
	position: relative;
	display: block;
	margin-top: -10px;
	margin-bottom: 70px;
}

.sec-title__tagline {
	width: 100%;
	text-align: center;
	position: relative;
	display: inline-block;
	color: var(--thm-base);
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	margin-bottom: 19px;
}

.sec-title__title {
	color: var(--thm-black);
	font-size: 64px;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 27px;
}

.sec-title__title span {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.sec-title__title span::before {
	position: absolute;
	left: 0;
	bottom: -3px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/line1.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.line-none.sec-title__title span::before {
	display: none;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
	background-color: var(--thm-base);
}

.preloader {
	position: fixed;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999999999;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.preloader__image {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/***
=============================================
    Dot Style1
=============================================
***/
.owl-carousel.owl-dot-type1 .owl-stage-outer,
.owl-carousel.owl-nav-type1 .owl-stage-outer {
	position: relative;
	display: block;
	padding-top: 0px;
	padding-bottom: 0px;
	transition: all 100ms linear;
	transition-delay: 0.1s;
	padding-bottom: 66px;
}

.owl-carousel.owl-dot-type1 .owl-dots {
	position: relative;
	display: block;
	max-width: 180px;
	text-align: center;
	line-height: 12px;
	margin-top: 5px !important;
	float: left;
	transition: all 100ms linear;
	transition-delay: 0.1s;
	width: 100%;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot {
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #ebebeb;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 100ms linear;
	transition-delay: 0.1s;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot::before {
	position: absolute;
	top: -2px;
	left: -2px;
	bottom: -2px;
	right: -2px;
	background: var(--thm-base);
	content: "";
	transform: scale(0);
	border-radius: 50%;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot.active::before {
	transform: scale(1);
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot span {
	display: none;
}

/***
=============================================
    Owl Nav Style1
=============================================
***/
.owl-nav-type1.owl-theme .owl-nav {
	position: absolute;
	width: 100%;
	text-align: left;
	-webkit-tap-highlight-color: transparent;
	left: 0;
	bottom: -36px;
	z-index: 9;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next,
.owl-nav-type1.owl-carousel .owl-nav button.owl-prev {
	background: transparent;
	padding: 0 !important;
	font: inherit;
	border: 2px solid var(--thm-color-1);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	right: 0;
	bottom: 0px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next span::before,
.owl-nav-type1.owl-carousel .owl-nav button.owl-prev span::before {
	color: var(--thm-color-1);
	font-size: 15px;
	font-weight: 700;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-prev span::before {
	position: relative;
	display: inline-block;
	transform: rotate(180deg);
}

/***
=============================================
    Scroll To Top
=============================================
***/
.scroll-to-top {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 70px;
	background: var(--thm-base);
	position: fixed;
	bottom: 91px;
	right: 20px;
	z-index: 99;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
	transition: all 0.4s ease;
	display: none;
	transition: all 0.4s ease;
	overflow: hidden;
}

.scroll-to-top i {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	line-height: 70px;
	transform: rotate(-90deg);
}

.scroll-to-top:hover {
	background-color: var(--thm-black);
}

.scroll-to-top:hover i {
	color: #fff;
}

/***
=============================================
    Main Header One
=============================================
***/
.main-header {
	position: relative;
	display: block;
}

.main-menu {
	position: relative;
	z-index: 91;
}

.main-menu__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-direction: row;
	flex-wrap: wrap;
}

.main-menu__inner .left {
	display: flex;
	align-items: center;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	align-items: center;
	display: none;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
	position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
	margin-left: 40px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: clamp(0.8125rem, 0.1307rem + 0.9091vw, 1.125rem);
	font-weight: 400;
	text-transform: none;
	transition: all 500ms ease;
	font-family: var(--thm-font);
	padding-top: 39px;
	padding-bottom: 38px;
	z-index: 1;
	text-wrap: nowrap;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
	color: var(--thm-base);
}

.main-menu .main-menu__list > li.dropdown a,
.stricky-header .main-menu__list > li.dropdown a {
	padding-right: 0px;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
	transform: scale(1, 1);
	transform-origin: right center;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: #fff;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	opacity: 0;
	visibility: hidden;
	transition: 500ms ease;
	z-index: 99;
	box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
	margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
	margin-top: 0px;
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
	opacity: 1;
	visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
	flex: 1 1 100%;
	width: 100%;
	position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
	border-top: 1px solid #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
	position: relative;
	display: block;
	color: rgba(var(--thm-black-rgb), 0.7);
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: 500ms;
	font-family: var(--thm-font);
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
	background-color: var(--thm-base);
	color: #ffffff;
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
	top: 0;
	left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
	top: 0;
	left: auto;
	right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
	display: none;
}

.main-header-one__bottom .right {
	position: relative;
	display: block;
}

.main-menu__right {
	position: relative;
	display: flex;
	align-items: center;
}

.main-menu__right-login-register {
	position: relative;
	display: block;
	margin-right: 26px;
}

.main-menu__right-login-register ul {
	position: relative;
	display: block;
	overflow: hidden;
}

.main-menu__right-login-register ul li {
	position: relative;
	float: left;
	margin-left: 11px;
	padding-right: 12px;
}

.main-menu__right-login-register ul li::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 0;
	background: #e2e4eb;
	width: 1px;
	transform: rotate(20deg);
	content: "";
}

.main-menu__right-login-register ul li:first-child {
	margin-left: 0;
}

.main-menu__right-login-register ul li:last-child {
	padding-right: 0;
}

.main-menu__right-login-register ul li:last-child:before {
	display: none;
}

.main-menu__right-login-register ul li a {
	color: var(--thm-gray);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-menu__right-login-register ul li a:hover {
	color: var(--thm-base);
}

.main-menu__right-cart-search {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

.main-menu__right-cart-search::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	width: 1px;
	content: "";
}

.main-menu__right-cart-box {
	position: relative;
	display: block;
}

.main-menu__right-cart-box a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-menu__right-cart-box a:hover {
	color: var(--thm-base);
}

.main-menu__right-cart-box a span::before {
	font-size: 25px;
	line-height: 35px;
}

.main-menu__right-search-box {
	position: relative;
	display: block;
	margin-left: 29px;
}

.main-menu__right-search-box .thm-btn {
	font-size: 12px;
	padding: 5px 30px 2px;
}

.stricky-header {
	position: fixed;
	z-index: 991;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	visibility: hidden;
	transform: translateY(-120%);
	transition: transform 500ms ease, visibility 500ms ease;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
	padding: 0 0px;
}

.stricky-header.stricky-fixed {
	transform: translateY(0);
	visibility: visible;
}

.stricky-header .main-menu__inner {
	box-shadow: none;
	padding-right: 0;
	max-width: 1200;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.mobile-nav__buttons {
	display: flex;
	margin-left: auto;
	margin-right: 10px;
}

@media (min-width: 1200px) {
	.main-menu .main-menu__list,
	.main-menu .main-menu__list ul,
	.stricky-header .main-menu__list,
	.stricky-header .main-menu__list ul {
		display: flex;
	}
}

@media (max-width: 1199px) {
	.stricky-header {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.mobile-nav__buttons {
		display: none;
	}
}

@media (min-width: 1200px) {
	.main-menu .mobile-nav__toggler {
		display: none;
	}
}

.mobile-nav__buttons a {
	font-size: 20px;
	color: var(--thm-black);
	cursor: pointer;
}

.mobile-nav__buttons a + a {
	margin-left: 10px;
}

.mobile-nav__buttons a:hover {
	color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
	font-size: 30px;
	color: var(--thm-base);
	cursor: pointer;
	transition: 500ms;
	margin-right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
	color: var(--thm-black);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler {
	color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler:hover {
	color: #ffffff;
}

/***
=============================================
    Mobile Nav
=============================================
***/
.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	transform: translateX(-50%);
	transform-origin: right center;
	transition: transform 500ms ease-in, opacity 500ms linear,
		visibility 500ms ease-in;
	z-index: 999;
	visibility: hidden;
}

.mobile-nav__wrapper .container {
	padding-left: 0;
	padding-right: 0;
}

.mobile-nav__wrapper.expanded {
	opacity: 1;
	transform: translateX(0%);
	visibility: visible;
}

.mobile-nav__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	opacity: 0.5;
	cursor: pointer;
}

.mobile-nav__content {
	width: 320px;
	/* background: var(--thm-black); */
	background: #fff;
	z-index: 10;
	position: relative;
	height: 100%;
	overflow-y: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
}

.mobile-nav__content .thm-btn {
	padding: 8px 0;
	width: 100%;
	text-align: center;
}

.mobile-nav__content .logo-box {
	margin-bottom: 40px;
	display: flex;
}

.mobile-nav__close {
	position: absolute;
	top: 20px;
	right: 15px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
	display: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li ul {
	padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
	display: flex;
	justify-content: space-between;
	line-height: 30px;
	color: var(--thm-black);
	font-size: 16px;
	font-family: var(--thm-font);
	font-weight: 400;
	height: 46px;
	align-items: center;
	transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
	color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
	color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
	width: 28px;
	height: 28px;
	background-color: var(--thm-base);
	border: none;
	outline: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transform: rotate(-90deg);
	border-radius: 0px;
	transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
	transform: rotate(0deg);
	background-color: #fff;
	color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
	position: relative;
	top: auto;
	right: auto;
	transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
	font-size: 16px;
}

.mobile-nav__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
	color: var(--thm-text-dark);
}

.mobile-nav__container {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
	display: flex;
	align-items: center;
}

.mobile-nav__social a {
	font-size: 16px;
	color: var(--thm-base);
	transition: 500ms;
}

.mobile-nav__social a + a {
	margin-left: 30px;
}

.mobile-nav__social a:hover {
	color: #ffffff;
}

.mobile-nav__contact {
	margin-bottom: 0;
	margin-top: 20px;
	margin-bottom: 20px;
}

.mobile-nav__contact li {
	color: var(--thm-text-dark);
	font-size: 14px;
	font-weight: 400;
	position: relative;
	display: flex;
	align-items: center;
	letter-spacing: 0.07em;
}

.mobile-nav__contact li + li {
	margin-top: 15px;
}

.mobile-nav__contact li a {
	color: var(--thm-black);
	transition: 500ms;
}

.mobile-nav__contact li img.icon {
	width: 40px;
	margin-right: 10px;
}

.mobile-nav__contact li a:hover {
	color: var(--thm-base);
}

.mobile-nav__contact li > i {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--thm-base);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	margin-right: 10px;
	color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
	display: none;
}

/***
=============================================
    Search Popup
=============================================
***/

.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-110%);
	transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
	transform: translateY(0%);
}

.search-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thm-black);
	opacity: 0.9;
	cursor: pointer;
}

.search-popup__content {
	width: 100%;
	max-width: 560px;
}

.search-popup__content form {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background-color: #fff;
	border-radius: 0px;
	overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
	width: 100%;
	background-color: #fff;
	font-size: 16px;
	border: none;
	outline: none;
	height: 66px;
	padding-left: 30px;
	padding-right: 90px;
}

.search-popup__content .thm-btn2 {
	padding: 0;
	width: 68px;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	right: -1px;
	border-radius: 0;
	background-color: var(--thm-base);
	border: none;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.search-popup__content .thm-btn2::before {
	display: none;
}

.search-popup__content .thm-btn2:hover {
	background-color: var(--thm-black);
	color: #ffffff;
}

.search-popup__content .thm-btn2 i::before {
	margin: 0;
	color: #ffffff;
}

/***
=============================================
    Main Header One
=============================================
***/
.main-header--one {
	position: relative;
	display: block;
	background-color: #fff;
}

.main-header--one__wrapper {
	position: relative;
	display: block;
	background-color: #fff;
}

.main-header--one .auto-container {
	position: static;
	max-width: 100%;
	width: 100%;
	padding: 0px 50px;
	margin: 0 auto;
	background-color: #fff;
}

.main-header--one__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-header--one__left {
	position: relative;
	display: flex;
	align-items: center;
	float: left;
}

.main-header--one__left .logo {
	position: relative;
	display: inline-block;
	padding-top: 3px;
}

.main-header--one__left .logo a {
	position: relative;
	display: inline-block;
}

.main-menu--1 {
	position: relative;
	display: block;
}

.main-header--one__middle {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 1rem;
	padding-right: 1rem;
	gap: 30px;
}

.header-logo {
	width: 10rem;
	height: auto;
}

.main-header--one__right {
	position: relative;
	display: flex;
	align-items: center;
	float: right;
}

.socials {
	position: relative;
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.socials a {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 18px;
	margin-left: 10px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.socials .link img.icon {
	width: 30px;
}

.main-header--one__right .search-box {
	position: relative;
	display: block;
}

.main-header--one__right .search-box .search {
	position: relative;
	display: inline-block;
	width: 65px;
	height: 65px;
	background: #f5f5f5;
	border-radius: 50%;
	color: var(--thm-black);
	text-align: center;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one__right .search-box .search:hover {
	color: #ffffff;
	background: var(--thm-base);
}

.main-header--one__right .search-box .search span::before {
	position: relative;
	display: inline-block;
	font-size: 20px;
	line-height: 65px;
	font-weight: 700;
}

.main-header--one__right .contact-box {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 28px;
}

.main-header--one__right .contact-box .icon {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 45px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one__right .contact-box .icon:hover {
	color: var(--thm-base);
}

.main-header--one__right .contact-box .text {
	position: relative;
	display: block;
	padding-left: 8px;
}

.main-header--one__right .contact-box .text p {
	color: #868686;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.main-header--one__right .contact-box .text a {
	color: var(--thm-base);
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	font-family: var(--thm-font);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one__right .contact-box .text a:hover {
	color: var(--thm-black);
}

.main-header--one__right-btn {
	position: relative;
	display: block;
	margin-left: 30px;
}

.main-header--one__right-btn a {
	color: var(--thm-black);
	border: 1px solid #e3e3e3;
	background: transparent;
	border-radius: 5px;
	font-size: clamp(0.625rem, -0.4464rem + 1.4286vw, 1.125rem);
	text-wrap: nowrap;
}

.main-header--one__right-btn a::after {
	background: var(--thm-base);
}

/***
=============================================
    Main Header Two
=============================================
***/
.main-header--one--two {
	position: relative;
	display: block;
	background: #010212;
}

.main-header--one--two .main-menu .main-menu__list > li > a {
	color: #ffffff;
}

.main-header--one--two .main-header--one__middle {
	padding-left: 0px;
}

.main-header--one--two .main-header--one__right .contact-box .icon {
	color: #ffffff;
	font-size: 40px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__right .contact-box .icon:hover {
	color: var(--thm-base);
}

.main-header--one--two .main-header--one__right .search-box .search {
	width: 50px;
	height: 50px;
	background: transparent;
	border-radius: 50%;
	color: #ffffff;
	text-align: center;
	border: 2px solid #212121;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__right .search-box .search:hover {
	background: var(--thm-base);
}

.main-header--one--two
	.main-header--one__right
	.search-box
	.search
	span::before {
	font-size: 20px;
	line-height: 50px;
	font-weight: 500;
}

.main-header--one--two .main-header--one__right .contact-box {
	position: relative;
	padding-right: 30px;
}

.main-header--one--two .main-header--one__right .contact-box::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background: #0e0f1d;
	content: "";
}

.main-header--one--two .main-header--one__right .search-box {
	padding-left: 30px;
}

.main-header--one--two .main-header--one__right .contact-box .text a {
	font-size: 20px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__right .contact-box .text a:hover {
	color: #ffffff;
}

.main-header--one--two .main-header--one__right .contact-box .text {
	position: relative;
	display: block;
	padding-left: 23px;
}

/***
=============================================
    Main Header Three
=============================================
***/
.main-header--one--three .main-header--one__right .contact-box .icon {
	color: var(--thm-black);
	font-size: 35px;
	transform: rotate(260deg);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--three .main-header--one__right .contact-box .icon:hover {
	color: var(--thm-base);
}

.main-header--one--three .main-header--one__right .contact-box {
	margin-left: 23px;
}

.main-header--one--three .main-header--one__right-btn {
	margin-left: 15px;
}

/***
=============================================
    Main Header Three Blog
=============================================
***/
.main-header--one--three.blog {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 2px solid #dfebec;
	z-index: 999;
}

.main-header--one--three.blog .main-header--one__wrapper {
	position: relative;
	display: block;
	z-index: 999;
}

.main-header--one--three.blog .main-header--one__right .search-box .search {
	background: #ffffff;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--three.blog
	.main-header--one__right
	.search-box
	.search:hover {
	background: var(--thm-base);
}

.main-header--one--three.blog .main-header--one__right-btn a {
	color: #ffffff;
	border: 0px solid #e3e3e3;
	background: var(--thm-black);
	border-radius: 0px;
}

/***
=============================================
    Main Header Three Case
=============================================
***/
.main-header--one--three.case {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 2px solid #f9ebe2;
	z-index: 999;
}

.main-header--one--three.case .main-header--one__right .search-box .search {
	background: #ffffff;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-header--one--three.case
	.main-header--one__right
	.search-box
	.search:hover {
	background: var(--thm-base);
}

.main-header--one--three.case .main-header--one__right-btn a {
	color: #ffffff;
	border: 0px solid #e3e3e3;
	background: var(--thm-black);
	border-radius: 0px;
}

/***
=============================================
    Main Header Three Services Details
=============================================
***/
.main-header--one--three--services-details {
	position: relative;
	display: block;
	background: #f9f9f9;
}

/***
=============================================
    Slider One
=============================================
***/
.hero-wrapper {
	position: relative;
	display: block;
	min-height: 90vh;
}

.main-slider .swiper-slide {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hero-wrapper .shape1 {
	position: absolute;
	top: 120px;
	left: 0;
	opacity: 0;
	transform: translateY(-100%);
	z-index: 20;
}

.hero-wrapper .shape1 {
	opacity: 1;
	transform: translate(0);
	transition: all 1000ms ease;
	transition-delay: 200ms;
}

.hero-wrapper .shape2 {
	position: absolute;
	left: 70px;
	bottom: 200px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: 20;
}

.hero-wrapper .shape3 {
	position: absolute;
	bottom: -5px;
	right: 0;
	transform: translateX(100%);
	z-index: 20;
}

.hero-wrapper-active .shape3 {
	opacity: 1;
	transform: translate(0);
	transition: all 1000ms ease;
	transition-delay: 200ms;
}

.hero-wrapper .shape4 {
	position: absolute;
	bottom: 110px;
	right: 240px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: 20;
}

.hero-wrapper .shape5 {
	position: absolute;
	bottom: -10px;
	right: -310px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.5;
	z-index: 20;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.hero-wrapper .image-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	transform: scale(1);
	transition: transform 7000ms ease;
	z-index: 1;
}

/* .hero-wrapper .image-layer {
    transform: scale(1.3);
} */

.hero-wrapper .image-layer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(
		0deg,
		rgb(123, 123, 123) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	background-image: -webkit-linear-gradient(
		0deg,
		rgb(123, 123, 123) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	background-image: -ms-linear-gradient(
		0deg,
		rgb(123, 123, 123) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	content: "";
	z-index: 2;
}

.hero-wrapper .container {
	position: relative;
	padding-top: 170px;
	padding-bottom: 170px;
	z-index: 2;
}

.main-slider-inner {
	position: relative;
	display: block;
}

.main-slider__content {
	position: relative;
	display: block;
}

.main-slider-tagline {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	text-transform: capitalize;
	background: rgba(255, 0255, 255, 0.2);
	padding: 8px 10px 7px;
	border-radius: 5px;
	transition: all 1000ms ease;
	transform: translateY(80px);
	font-family: var(--thm-font);
}

.hero-wrapper .swiper-slide-active .main-slider-tagline {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1000ms;
}

.main-slider__title {
	color: #ffffff;
	font-size: 120px;
	line-height: 1em;
	font-family: var(--thm-font-2);
	margin-top: 22px;
	margin-bottom: 34px;
	transition: all 1500ms ease;
	transform: translateY(80px);
}

.main-slider__title span {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.main-slider__title span::before {
	position: absolute;
	left: 0;
	bottom: -8px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/line3.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.hero-wrapper .swiper-slide-active .main-slider__title {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1200ms;
}

.main-slider__text {
	color: #ffffff;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
	opacity: 0;
	transition: all 1500ms ease;
	transform: translateY(80px);
}

.hero-wrapper .swiper-slide-active .main-slider__text {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1600ms;
}

.main-slider__button-box {
	position: relative;
	display: inline-block;
	margin-top: 13px;
	transition: all 2000ms ease;
	transform: translateY(80px);
}

.hero-wrapper .swiper-slide-active .main-slider__button-box {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 2000ms;
}

.main-slider__nav {
	position: absolute;
	display: block;
	align-items: flex-start;
	bottom: 50px;
	right: 0;
	width: 150px;
	z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 100;
	width: 50px;
	height: 50px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 15px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	margin: 10px 0px;
	text-align: center;
	transition: all 500ms ease;
	border-radius: 50%;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
	color: #ffffff;
	background: transparent;
	border: 2px solid #ffffff;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
	display: none;
}

.main-slider__nav .swiper-button-prev {
	margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
	position: relative;
}

.main-slider__nav .swiper-button-prev {
	position: relative;
	transform: rotate(180deg);
}

#main-slider-pagination {
	position: absolute;
	left: 100px;
	bottom: 60px;
	width: 26px;
	z-index: 10;
}

#main-slider-pagination .swiper-pagination-bullet {
	position: relative;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.4;
}

#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
	margin-top: 10px;
}

#main-slider-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	position: relative;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #ffffff;
	left: -2px;
	opacity: 1;
}

/***
=============================================
    Slider Two
=============================================
***/
.main-slider-two {
	position: relative;
	display: block;
}

.main-slider.main-slider-two .image-layer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(
		0deg,
		rgba(47, 26, 26, 0.4902) 79%,
		rgba(27, 25, 25, 0) 100%
	);
	background-image: -webkit-linear-gradient(
		0deg,
		rgba(47, 26, 26, 0.4902) 79%,
		rgba(27, 25, 25, 0) 100%
	);
	background-image: -ms-linear-gradient(
		0deg,
		rgba(47, 26, 26, 0.4902) 79%,
		rgba(27, 25, 25, 0) 100%
	);
	content: "";
	z-index: 2;
}

.main-slider-two .shape-three {
	position: absolute;
	bottom: 110px;
	right: 240px;
	width: 70px;
	height: 70px;
	background: #fbca1d;
	border-radius: 50%;
	z-index: 2;
}

.main-slider-two .auto-container {
	position: static;
	max-width: 1650px;
	padding: 0px 15px;
	padding-top: 130px;
	padding-bottom: 130px;
	margin: 0 auto;
}

.main-slider-two .main-slider-two__img {
	position: relative;
	display: block;
	opacity: 0;
	transform: translateY(100%);
	z-index: 10;
}

.main-slider.main-slider-two .swiper-slide-active .main-slider-two__img {
	opacity: 1;
	transform: translate(0);
	transition: all 1000ms ease;
	transition-delay: 200ms;
}

.main-slider-two .main-slider-two__img .shape-one {
	position: absolute;
	top: -5px;
	left: -16px;
	z-index: -1;
}

.main-slider-two .main-slider-two__img .shape-two {
	position: absolute;
	top: -15px;
	left: 0px;
	opacity: 0;
	transform: translateY(-100%);
	z-index: 11;
}

.main-slider.main-slider-two .swiper-slide-active .shape-two {
	opacity: 1;
	transform: translate(0);
	transition: all 1000ms ease;
	transition-delay: 500ms;
}

.main-slider-two__img .inner {
	position: relative;
	display: block;
}

.main-slider-two__img .inner img {
	width: 100%;
}

.main-slider-two__content {
	position: relative;
	display: block;
	padding-left: 105px;
	z-index: 10;
}

.main-slider-two__icon {
	position: relative;
	display: inline-block;
	opacity: 0;
	transition: all 1000ms ease;
	transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__icon {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1000ms;
}

.main-slider-two__icon a {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 80px;
	background: var(--thm-base);
	color: #ffffff;
	font-size: 20px;
	line-height: 80px;
	text-align: center;
	border-radius: 50%;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.main-slider-two__icon a:hover {
	background: var(--thm-black);
}

.main-slider-two__content h2 {
	position: relative;
	color: #ffffff;
	font-size: 120px;
	line-height: 1em;
	font-weight: 700;
	margin-top: 19px;
	opacity: 0;
	transition: all 1500ms ease;
	transform: translateY(80px);
	z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__content h2 {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1500ms;
}

.main-slider-two__content h2 span {
	position: relative;
	display: inline-block;
}

.main-slider-two__content h2 span::before {
	position: absolute;
	left: 7px;
	bottom: 5px;
	width: 200px;
	height: 20px;
	background: var(--thm-base);
	content: "";
	z-index: -1;
}

.main-slider-two__btn {
	position: relative;
	display: block;
	opacity: 0;
	transition: all 2000ms ease;
	transform: translateY(80px);
	margin-top: 46px;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 2000ms;
}

.main-slider-two__btn .thm-btn {
	background: var(--thm-color-1);
}

.main-slider-two__btn .thm-btn::after {
	background: var(--thm-base);
}

/***
=============================================
    Page Header
=============================================
***/
.page-header {
	position: relative;
	display: block;
	background-attachment: scroll;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 180px 0px 0px;
	z-index: 1;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(
		0deg,
		rgb(51, 47, 47) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	background-image: -webkit-linear-gradient(
		0deg,
		rgb(51, 47, 47) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	background-image: -ms-linear-gradient(
		0deg,
		rgb(51, 47, 47) 0%,
		rgba(27, 25, 25, 0) 87%
	);
	z-index: -1;
}

.page-header .shape1 {
	position: absolute;
	left: 5px;
	bottom: -295px;
	z-index: -1;
}

.page-header .shape2 {
	position: absolute;
	right: 0;
	bottom: -370px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: -1;
}

.page-header .shape3 {
	position: absolute;
	top: 230px;
	left: 175px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: -1;
}

.page-header .shape4 {
	position: absolute;
	bottom: -220px;
	right: -280px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.5;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: -1;
}

.page-header__wrapper {
	position: relative;
	display: block;
}

.page-header__title {
	position: relative;
	display: block;
}

.page-header__title h2 {
	position: relative;
	color: #ffffff;
	font-size: 96px;
	line-height: 1.1em;
	font-weight: 700;
}

.page-header__title h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line1.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.page-header__wrapper .thm-breadcrumb {
	position: relative;
	display: block;
	margin-top: 186px;
	padding-bottom: 18px;
}

.page-header__wrapper .thm-breadcrumb li {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	padding-left: 7px;
	padding-right: 2px;
}

.page-header__wrapper .thm-breadcrumb li::before {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 1px;
	height: 2px;
	background: #ffffff;
	content: "";
}

.page-header__wrapper .thm-breadcrumb li:first-child::before {
	display: none;
}

.page-header__wrapper .thm-breadcrumb li a {
	color: #ffffff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.page-header__wrapper .thm-breadcrumb li a:hover {
	color: var(--thm-base);
}

/***
=============================================
    Page Header Services
=============================================
***/
.page-header__title.services h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line2.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/***
=============================================
    Page Header Case
=============================================
***/
.page-header__title.case h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line3.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/***
=============================================
    Page Header Team
=============================================
***/
.page-header__title.team h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line4.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/***
=============================================
    Page Header Blog
=============================================
***/
.page-header__title.blog h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line5.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/***
=============================================
    Page Header Blog Single
=============================================
***/
.page-header--blog-single {
	position: relative;
	display: block;
	background: #ebfafb;
	padding: 250px 0px 72px;
}

.page-header--blog-single .shape3 {
	position: absolute;
	top: auto;
	left: auto;
	bottom: 85px;
	right: 176px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: 1;
}

.page-header--blog-single .page-header__wrapper .thm-breadcrumb {
	margin-top: 38px;
	padding-bottom: 18px;
}

.page-header--blog-single.page-header::before {
	display: none;
}

.page-header--blog-single .page-header__title p {
	color: #8b8b8b;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 11px;
}

.page-header--blog-single .page-header__title h2 {
	color: var(--thm-black);
	font-size: 72px;
	line-height: 1.1em;
	font-weight: 700;
}

.page-header--blog-single .page-header__title h2::before {
	display: none;
}

.page-header--blog-single .thm-breadcrumb {
	position: relative;
	display: flex;
	justify-content: center;
}

.page-header--blog-single .thm-breadcrumb li {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
	padding-left: 10px;
	padding-right: 10px;
}

.page-header--blog-single .thm-breadcrumb li::before {
	position: absolute;
	top: 11px;
	left: 0;
	bottom: 21px;
	width: 2px;
	height: 30px;
	background: #e3eeef;
	content: "";
	z-index: -1;
}

.page-header--blog-single .thm-breadcrumb li .img {
	position: relative;
	display: block;
	padding-right: 10px;
}

.page-header--blog-single .thm-breadcrumb li .title {
	position: relative;
	display: block;
}

.page-header--blog-single .thm-breadcrumb li .title p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

/***
=============================================
    Page Header Case Single
=============================================
***/
.page-header--case-single {
	position: relative;
	display: block;
	background: #fff2e9;
	padding: 200px 0px 128px;
	z-index: 1;
}

.page-header--case-single .shape-one {
	position: absolute;
	left: 5px;
	bottom: -150px;
	z-index: -1;
}

.page-header--case-single .shape-two {
	position: absolute;
	left: 50px;
	bottom: 100px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: -1;
}

.page-header--case-single .shape-three {
	position: absolute;
	right: 0;
	bottom: -220px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: -1;
}

.page-header--case-single .shape-four {
	position: absolute;
	bottom: -65px;
	right: -280px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.5;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: -1;
}

.page-header--case-single .shape-five {
	position: absolute;
	bottom: 240px;
	right: 190px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: -1;
}

.page-header--case-single.page-header::before {
	display: none;
}

.page-header--case-single__wrapper {
	position: relative;
	display: block;
}

.page-header--case-single__wrapper .logo {
	position: relative;
	display: inline-block;
	margin-bottom: 17px;
}

.page-header--case-single__wrapper .logo img {
	width: 100%;
}

.page-header--case-single__wrapper h2 {
	position: relative;
	color: var(--thm-black);
	font-size: 96px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 47px;
}

.page-header--case-single__wrapper h2 span {
	position: relative;
	display: inline-block;
}

.page-header--case-single__wrapper h2 span::before {
	position: absolute;
	left: 0;
	bottom: -14px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line3.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.page-header--case-single__wrapper p {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 40px;
}

/***
=============================================
    Page Header Services Single
=============================================
***/
.page-header--services-single {
	position: relative;
	display: block;
	padding: 0px 0px 0px;
	z-index: 1;
}

.page-header--services-single .shape-one {
	position: absolute;
	top: 175px;
	left: -275px;
	width: 555px;
	height: 555px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: -1;
}

.page-header--services-single .shape-two {
	position: absolute;
	left: -113px;
	bottom: 180px;
	z-index: -1;
}

.page-header--services-single .shape-three {
	position: absolute;
	left: 30px;
	bottom: 180px;
	z-index: -1;
}

.page-header--services-single .shape-four {
	position: absolute;
	bottom: 90px;
	right: -5px;
	z-index: 2;
}

.page-header--services-single .shape-five {
	position: absolute;
	top: 240px;
	right: -260px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.5;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 2;
}

.page-header--services-single.page-header::before {
	display: none;
}

.page-header--services-single__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	background-position: top right;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	min-height: 875px;
	z-index: 1;
}

.page-header--services-single__img .icon {
	position: absolute;
	left: -65px;
	bottom: -10px;
	z-index: 5;
}

.page-header--services-single__img .icon a {
	position: relative;
	display: inline-block;
	width: 125px;
	height: 125px;
	line-height: 125px;
	border-radius: 50%;
	background: var(--thm-base);
	color: #ffffff;
	font-size: 30px;
	text-align: center;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.page-header--services-single__img .icon a:hover {
	background: var(--thm-black);
}

.page-header--services-single__content {
	position: relative;
	display: block;
	padding: 174px 0px 142px;
}

.page-header--services-single-title {
	position: relative;
	display: block;
	margin-bottom: 37px;
	z-index: 2;
}

.page-header--services-single-title h2 {
	color: var(--thm-black);
	font-size: 96px;
	line-height: 1.2em;
	font-weight: 700;
}

.page-header--services-single-title h2 span {
	position: relative;
	display: inline-block;
}

.page-header--services-single-title h2 span::before {
	position: absolute;
	left: 0;
	bottom: -15px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line3.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.page-header--services-single__inner {
	position: relative;
	display: block;
	max-width: 600px;
	width: 100%;
}

.page-header--services-single-text1 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 40px;
	font-weight: 400;
	margin-bottom: 22px;
}

.page-header--services-single-text2 {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 18px;
	line-height: 35px;
}

.page-header--services-single__logo-box {
	position: relative;
	display: block;
	margin-top: 36px;
}

.page-header--services-single__logo-box .title {
	position: relative;
	display: block;
	margin-bottom: 36px;
}

.page-header--services-single__logo-box .title h2 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	font-family: var(--thm-font);
}

.page-header--services-single__logo-box ul {
	position: relative;
	display: block;
}

.page-header--services-single__logo-box ul li {
	position: relative;
	display: inline-block;
	margin-right: 20px;
}

.page-header--services-single__logo-box ul li:last-child {
	margin-right: 0;
}

/***
=============================================
    About One
=============================================
***/
.about-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 130px 0px 175px;
	z-index: 1;
}

.about-one .sec-title {
	margin-bottom: 32px;
}

.about-one .shape5 {
	position: absolute;
	top: 250px;
	right: -310px;
	z-index: -1;
}

.about-one .shape6 {
	position: absolute;
	bottom: 70px;
	right: 170px;
	z-index: -1;
}

.about-one__left {
	position: relative;
	display: block;
	max-width: 685px;
	width: 100%;
	z-index: 1;
}

.about-one__left .shape1 {
	position: absolute;
	left: -240px;
	bottom: 30px;
	z-index: -1;
}

.about-one__left .shape3 {
	position: absolute;
	left: -180px;
	bottom: 55px;
	z-index: -1;
}

.about-one__left-img1 {
	position: absolute;
	top: 0;
	left: -140px;
	z-index: 5;
}

.about-one__left-img1 .inner {
	position: relative;
	display: block;
	z-index: 1;
}

.about-one__left-img1 .inner .shape2 {
	position: absolute;
	top: 50px;
	right: -50px;
	z-index: 1;
}

.about-one__left-img1 img {
	width: 100%;
}

.about-one__left-img1::before {
	position: absolute;
	top: 0;
	left: 35px;
	bottom: -35px;
	right: -35px;
	background: #ffffff;
	content: "";
	z-index: -1;
}

.about-one__left-img2 {
	position: relative;
	display: block;
	padding-top: 140px;
	width: 545px;
}

.about-one__left-img2 img {
	width: 100%;
}

.about-one__left-img2 .overlay-content {
	position: absolute;
	left: 60px;
	bottom: -100px;
	right: 60px;
	background: #f9e111;
	border-radius: 100px;
	padding: 42px 0px 42px;
	padding-left: 70px;
	padding-right: 35px;
	z-index: 1;
}

.about-one__left-img2 .overlay-content::before {
	position: absolute;
	top: -10px;
	left: -10px;
	bottom: 0;
	right: 0;
	border: 1px solid #ffffff;
	border-radius: 100px;
	content: "";
	z-index: -1;
}

.about-one__left-img2 .overlay-content h2 {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	font-family: var(--thm-font);
}

.about-one__content {
	position: relative;
	display: block;
	padding-left: 29px;
	z-index: 1;
}

.about-one__content .shape4 {
	position: absolute;
	top: 55px;
	right: -300px;
	z-index: 1;
}

.about-one__content-list {
	position: relative;
	display: block;
}

.about-one__content-list ul {
	position: relative;
	display: block;
	overflow: hidden;
}

.about-one__content-list ul li {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.about-one__content-list ul li:last-child {
	margin-bottom: 0;
}

.about-one__content-list ul li .icon {
	position: relative;
	display: block;
	transition-delay: 0.1s;
	transition: all 500ms ease;
}

.about-one__content-list ul li:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.about-one__content-list ul li .title {
	position: relative;
	display: block;
	padding-left: 20px;
}

.about-one__content-list ul li .title h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	text-transform: uppercase;
}

.about-one__content-btn {
	position: relative;
	display: block;
	margin-top: 46px;
}

.about-one__content-btn .thm-btn {
	color: var(--thm-black);
	background: transparent;
	border: 2px solid var(--thm-color-1);
	transition: all 200ms linear;
	transition-delay: 0.2s;
}

.about-one__content-btn .thm-btn:hover {
	color: #ffffff;
	border: 2px solid var(--thm-base);
}

.about-one__content-btn .thm-btn::after {
	background: var(--thm-base);
}

/***
=============================================
    Work History One
=============================================
***/

.work-history-one {
	position: relative;
	display: block;
	padding: 0px 0px 100px;
	z-index: 1;
}

.work-history-one .row {
	margin-left: -40px;
	margin-right: -40px;
}

.work-history-one .row [class*="col-"] {
	padding-left: 40px;
	padding-right: 40px;
}

.work-history-one__single {
	position: relative;
	display: block;
	background: #f9f9f9;
	padding: 43px 45px 48px;
	margin-bottom: 30px;
	z-index: 1;
}

.work-history-one__single-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 5px;
	background-repeat: no-repeat;
	background-position: left center;
	z-index: -1;
}

.work-history-one__single h3 {
	color: var(--thm-black);
	font-size: 64px;
	line-height: 1.1em;
}

.work-history-one__single h3 .k {
	position: relative;
	display: inline-block;
	top: 4px;
}

.work-history-one__single h3 .plus-icon {
	position: relative;
	display: inline-block;
	top: -8px;
	color: var(--thm-black);
	font-size: 30px;
}

.work-history-one__single-title {
	font-size: 23px;
	line-height: 34px;
	font-weight: 500;
	font-family: var(--thm-font);
	margin-top: 4px;
	margin-bottom: 15px;
}

.work-history-one .odometer.odometer-auto-theme,
.work-history-one .odometer.odometer-theme-default {
	font-family: var(--thm-font-2);
	line-height: 0.8em;
}

.work-history-one .odometer-formatting-mark {
	display: none;
}

/***
=============================================
    Services One
=============================================
***/
.services-one {
	position: relative;
	display: block;
	background: #faf4eb;
	padding: 130px 0px 120px;
	z-index: 1;
}

.services-one .shape1 {
	position: absolute;
	top: 230px;
	left: 140px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f9e111;
	z-index: -1;
}

.services-one .shape2 {
	position: absolute;
	top: 10px;
	right: 160px;
	z-index: -1;
}

.services-one .shape3 {
	position: absolute;
	top: 60px;
	right: 190px;
	z-index: -1;
}

.services-one .shape4 {
	position: absolute;
	left: 90px;
	bottom: 105px;
	z-index: -1;
}

.services-one .shape5 {
	position: absolute;
	right: 140px;
	bottom: 230px;
	z-index: -1;
}

.services-one .sec-title__title span::before {
	position: absolute;
	left: 0;
	bottom: -8px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/line2.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.services-one__single {
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: 5px;
	padding: 74px 35px 48px;
	margin-bottom: 30px;
}

.services-one__single .icon {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 90px;
	margin-bottom: 35px;
	transition-delay: 0.1s;
	transition: all 500ms ease;
	z-index: 1;
}

.services-one__single:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.services-one__single .icon::before {
	position: absolute;
	top: -10px;
	left: -30px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: #fffacf;
	z-index: -1;
	content: "";
}

.services-one__single.style1 .icon::before {
	position: absolute;
	top: -10px;
	left: -30px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: #d2f7ff;
	z-index: -1;
	content: "";
}

.services-one__single.style2 .icon::before {
	position: absolute;
	top: -10px;
	left: -30px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: #ffecda;
	z-index: -1;
	content: "";
}

.services-one__single h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 25px;
}

.services-one__single h2 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.services-one__single h2 a:hover {
	color: var(--thm-base);
}

.services-one__single-btn {
	position: relative;
	display: block;
	margin-top: 35px;
}

.services-one__single-btn a {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 25px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.services-one__single-btn a:hover {
	color: var(--thm-base);
}

.services-one__single .first-item {
	max-width: 500px;
}

.services-one__single .icon .services-ads-img {
	width: 90px;
}

.services-one__bottom {
	position: relative;
	display: block;
	margin-top: 50px;
}

.services-one__bottom__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}

.services-one__bottom-text {
	position: relative;
	display: block;
}

.services-one__bottom-text h2 {
	color: var(--thm-black);
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}

.services-one__bottom-btn {
	position: relative;
	display: block;
}

.services-one__bottom-btn .thm-btn {
	color: var(--thm-black);
	background: transparent;
	border: 2px solid var(--thm-color-1);
	transition: all 200ms linear;
	transition-delay: 0.2s;
}

.services-one__bottom-btn .thm-btn:hover {
	color: #ffffff;
	border: 2px solid var(--thm-base);
}

.services-one__bottom-btn .thm-btn::after {
	background: var(--thm-base);
}

/***
=============================================
    Our Mission and Vision
=============================================
***/

.our-mission-and-vision {
	margin: 2rem 0;
}

.our-mission-and-vision h2,
h3,
p {
	margin-bottom: 1.5rem;
}

.our-mission-and-vision p {
	text-align: left;
	max-width: 1200px;
}

/***
=============================================
    Digital Experience One
=============================================
***/
.digital-experience-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 130px 0px 130px;
}

.digital-experience-one .sec-title__title {
	font-size: 60px;
}

.digital-experience-one .sec-title__title span::before {
	position: absolute;
	left: 0;
	bottom: -8px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/line2.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.digital-experience-one__left {
	position: relative;
	display: block;
}

.digital-experience-one__left .sec-title {
	margin-bottom: 58px;
}

.digital-experience-one__progress {
	position: relative;
	display: block;
}

.digital-experience-one__progress-single {
	position: relative;
	display: block;
	margin-bottom: 20px;
}

.digital-experience-one__progress-single.mar-0 {
	margin-bottom: 0;
}

.digital-experience-one__progress-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 34px;
	text-transform: capitalize;
	margin-bottom: 20px;
	font-family: var(--thm-font);
}

.digital-experience-one__progress .bar {
	position: relative;
	width: 100%;
	height: 12px;
	background: #f5f5f5;
	margin-bottom: 6px;
}

.digital-experience-one__progress .bar-inner {
	position: relative;
	display: block;
	width: 0px;
	height: 12px;
	background: #fde285;
	-webkit-transition: all 1500ms ease;
	-ms-transition: all 1500ms ease;
	-o-transition: all 1500ms ease;
	-moz-transition: all 1500ms ease;
	transition: all 1500ms ease;
	z-index: 1;
}

.digital-experience-one__progress .bar-inner.bg-red {
	background: #ffa293;
}

.digital-experience-one__progress .bar-inner::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -5px;
	border-top: 10px solid var(--thm-black);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	z-index: -1;
}

.digital-experience-one__progress .count-text {
	position: absolute;
	top: -47px;
	right: -20px;
	color: var(--thm-color-1);
	font-size: 16px;
	line-height: 34px;
	font-weight: 500;
	text-align: center;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 1;
}

.digital-experience-one__right {
	position: relative;
	display: block;
	margin-left: 65px;
	z-index: 1;
}

.digital-experience-one__right-accordions {
	position: relative;
	display: block;
	z-index: 1;
}

.digital-experience-one__right-accordions .accrodion {
	position: relative;
	display: block;
	background: #ffffff;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.digital-experience-one__right-accordions .accrodion .accrodion-title {
	position: relative;
	display: block;
	cursor: pointer;
	background: #ffffff;
	padding: 0px 0px 20px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	padding-left: 10px;
}

.digital-experience-one__right-accordions .accrodion.active .accrodion-title {
	background: #ffffff;
}

.digital-experience-one__right-accordions .accrodion .accrodion-title h4 {
	position: relative;
	color: var(--thm-black);
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	padding-left: 30px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.digital-experience-one__right-accordions
	.accrodion.active
	.accrodion-title
	h4 {
	color: var(--thm-black);
}

.digital-experience-one__right-accordions
	.accrodion
	.accrodion-title
	h4::before {
	content: "\f067";
	font-family: "Font Awesome\ 5 Free";
	font-weight: 700;
	font-size: 15px;
	color: var(--thm-black);
	position: absolute;
	top: 50%;
	left: 0;
	text-align: center;
	transform: translateY(-50%);
	transition: all 500ms ease;
}

.digital-experience-one__right-accordions
	.accrodion.active
	.accrodion-title
	h4::before {
	content: "\f068";
	font-family: "Font Awesome\ 5 Free";
	color: var(--thm-black);
}

.digital-experience-one__right-accordions .accrodion .accrodion-content {
	position: relative;
	display: block;
	background: var(--thm-base);
	padding: 29px 50px 18px;
	border-radius: 5px;
	margin-bottom: 33px;
}

.digital-experience-one__right-accordions .accrodion .accrodion-content .inner {
	position: relative;
	display: block;
}

.digital-experience-one__right-accordions
	.accrodion
	.accrodion-content
	.inner
	p {
	color: #ffffff;
	font-size: 18px;
	line-height: 36px;
	font-weight: 400;
}

.digital-experience-one__right-bottom {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 32px;
}

.digital-experience-one__right-bottom-counter {
	position: relative;
	display: block;
	min-width: 215px;
	background: #fffcdf;
	text-align: center;
	border-radius: 10px;
	padding: 23px 0px 31px;
}

.digital-experience-one__right-bottom-counter h3 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 58px;
	font-weight: 700;
}

.digital-experience-one__right-bottom-counter h3 .plus-icon {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 10px;
}

.digital-experience-one__right-bottom-counter h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	margin-top: 10px;
	font-family: var(--thm-font);
}

.digital-experience-one__right-bottom-text {
	position: relative;
	display: block;
	padding-left: 35px;
}

.digital-experience-one__right-bottom .odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
	font-family: var(--thm-font-2);
	line-height: 0.7em;
}

.digital-experience-one__right-bottom .odometer-formatting-mark {
	display: none;
}

/***
=============================================
    Digital Strategy One
=============================================
***/
.digital-strategy-one {
	position: relative;
	display: block;
	background: #ebeff0;
	z-index: 1;
}

.digital-strategy-one .shape1 {
	position: absolute;
	top: 140px;
	left: 90px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #ffffff;
	z-index: -1;
}

.digital-strategy-one .shape2 {
	position: absolute;
	left: 195px;
	bottom: 90px;
	z-index: -1;
}

.digital-strategy-one .container-fullwidth {
	position: relative;
	display: block;
}

.digital-strategy-one__content-box {
	position: relative;
	display: block;
	max-width: 480px;
	float: right;
	margin-right: 70px;
	padding: 86px 0px 100px;
}

.digital-strategy-one__content-box-title {
	position: relative;
	display: block;
	margin-bottom: 41px;
}

.digital-strategy-one__content-box-title h2 {
	color: var(--thm-black);
	font-size: 64px;
	line-height: 1.2em;
	font-weight: 700;
}

.digital-strategy-one__content-box-list {
	position: relative;
	display: block;
}

.digital-strategy-one__content-box-list li {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 10px;
	max-width: 425px;
	padding: 19px 30px 18px;
	margin-bottom: 30px;
	z-index: 1;
}

.digital-strategy-one__content-box-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: transparent;
	border: 1px solid var(--thm-color-1);
	border-radius: 10px;
	transition: all 500ms ease;
	transform: scaleX(0);
	z-index: -1;
}

.digital-strategy-one__content-box-list li:hover:before {
	transform: scaleX(1);
}

.digital-strategy-one__content-box-list li:last-child {
	margin-bottom: 0;
}

.digital-strategy-one__content-box-list li .icon {
	position: relative;
	display: block;
	color: var(--thm-black);
	font-size: 30px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.digital-strategy-one__content-box-list li:hover .icon {
	color: var(--thm-base);
}

.digital-strategy-one__content-box-list li .text {
	position: relative;
	display: block;
	padding-left: 30px;
}

.digital-strategy-one__content-box-list li .text p {
	color: var(--thm-black);
	font-size: 18px;
	line-height: 36px;
}

.digital-strategy-one__img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	background-attachment: scroll;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right top;
}

.providing-quality-one__img img {
	width: 100%;
}

.digital-strategy-one__img .overlay-content {
	position: absolute;
	left: 45px;
	bottom: 0;
}

.digital-strategy-one__img .overlay-content .inner {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
}

.digital-strategy-one__img .overlay-content .inner .shape3 {
	position: absolute;
	top: 15px;
	right: 0;
	z-index: 1;
}

.digital-strategy-one__img .overlay-content .inner .icon {
	position: relative;
	display: block;
}

.digital-strategy-one__img .overlay-content .inner .icon a {
	position: relative;
	display: inline-block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--thm-base);
	text-align: center;
}

.digital-strategy-one__img .overlay-content .inner .icon a span::before {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 20px;
	line-height: 90px;
}

.digital-strategy-one__img .overlay-content .inner .text {
	position: relative;
	display: block;
	background: #fbca1d;
	padding: 28px 45px 27px;
	margin-left: 55px;
}

.digital-strategy-one__img .overlay-content .inner .text h2 {
	color: var(--thm-color-1);
	font-size: 36px;
	line-height: 50px;
	font-weight: 400;
	font-family: var(--thm-font);
}

/***
=============================================
    Case Studies One
=============================================
***/
.case-studies-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 130px 0px 100px;
	z-index: 1;
}

.case-studies-one .shape2 {
	position: absolute;
	top: 200px;
	left: 0;
	z-index: -1;
}

.case-studies-one .shape3 {
	position: absolute;
	bottom: 40px;
	right: 250px;
	z-index: -1;
}

.case-studies-one .auto-container {
	position: static;
	max-width: 1530px;
}

.case-studies-one__single {
	position: relative;
	display: block;
	padding: 48px 0px 60px;
	padding-left: 40px;
	border-radius: 5px;
	margin-bottom: 30px;
	z-index: 1;
}

.case-studies-one__single .shape1 {
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: -1;
}

.case-studies-one__single::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: transparent;
	border: 2px solid var(--thm-color-1);
	border-radius: 5px;
	transition: all 500ms ease;
	transform: scaleY(0);
	z-index: -1;
}

.case-studies-one__single:hover:before {
	transform: scaleY(1);
}

.case-studies-one__single.bg1 {
	background: #ffe27c;
}

.case-studies-one__single.bg2 {
	background: #ffe3d3;
}

.case-studies-one__single.bg3 {
	background: #d8f4ee;
}

.case-studies-one__single.bg4 {
	background: #e6fcfe;
}

.case-studies-one__single.bg5 {
	background: #fffcdf;
}

.case-studies-one__single.bg6 {
	background: #fff8f1;
}

.case-studies-one__single-img {
	position: relative;
	display: block;
}

.case-studies-one__single-img img {
	width: 100%;
}

.case-studies-one__single-top {
	position: relative;
	display: block;
}

.case-studies-one__single-top span {
	color: var(--thm-black);
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

.case-studies-one__single-top h2 {
	font-size: 36px;
	line-height: 49px;
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 10px;
}

.case-studies-one__single-top h2 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.case-studies-one__single-top h2 a:hover {
	color: var(--thm-base);
}

.case-studies-one__single-btn {
	position: relative;
	display: block;
	margin-top: 40px;
}

.case-studies-one__single-btn .thm-btn {
	color: var(--thm-black);
	background: #ffffff;
}

.case-studies-one__single-btn .thm-btn:hover {
	color: #ffffff;
	text-decoration: underline;
}

/***
=============================================
    Client Feed Back One
=============================================
***/
.client-feed-back-one {
	position: relative;
	display: block;
	padding: 140px 0px 240px !important;
	background: #ffffff;
	z-index: 1;
}

.client-feed-back-one .shape1 {
	position: absolute;
	top: 0;
	left: 110px;
	z-index: -1;
}

.client-feed-back-one .shape2 {
	position: absolute;
	top: 330px;
	right: 130px;
	z-index: -1;
}

.client-feed-back-one .auto-container {
	position: static;
	max-width: 1310px;
	width: 100%;
}

.client-feed-back-one__img {
	position: relative;
	display: block;
	z-index: 1;
}

.client-feed-back-one__img .shape3 {
	position: absolute;
	top: 220px;
	right: 0;
	width: 105px;
	height: 105px;
	border-radius: 50%;
	background: #f9e111;
	z-index: -1;
}

.client-feed-back-one__img .shape4 {
	position: absolute;
	left: 20px;
	bottom: -20px;
	width: 105px;
	height: 105px;
	border-radius: 50%;
	background: #ffe8dc;
	z-index: -1;
}

.client-feed-back-one__img img {
	width: 100%;
}

.client-feed-back-one__content {
	height: 300px;
	position: relative;
	display: block;
	margin-left: 85px;
}

.client-feed-back-one__carousel {
	height: 300px;
}

.client-feed-back-one__content-single {
	height: 300px;
	position: relative;
	display: block;
}

.client-feed-back-one__content-single .sec-title {
	margin-bottom: 50px;
}

.client-feed-back-one__content-single-text {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.client-feed-back-one__content-single .client-info {
	height: 75%;
	position: relative;
	display: block;
	margin-top: 33px;
}

.client-feed-back-one__content-single .client-info .image-box {
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.client-feed-back-one__content-single .client-info .image-box .mspy {
	width: 300px;
	filter: grayscale(1);
}

.client-feed-back-one__content-single .client-info .image-box .vedu {
	width: 350px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .aimbrella {
	width: 200px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .lakat {
	width: 400px;
	filter: invert(1) grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .itbridge {
	width: 300px;
	filter: invert(1) grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .kultprosvet {
	width: 125px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .appadd {
	width: 325px;
	filter: invert(1) grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .cardplata {
	width: 250px;
	filter: invert(1) grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .pushka {
	width: 300px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .pikotech {
	width: 300px;
	filter: invert(1) grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .retech {
	width: 300px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .relocateme {
	width: 300px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info .image-box .wami {
	width: 250px;
	filter: grayscale(1) opacity(0.5);
}

.client-feed-back-one__content-single .client-info h3 {
	position: relative;
	text-align: center;
	color: var(--thm-color-1);
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.client-feed-back-one__content-single .client-info p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 14px;
	line-height: 24px;
}

/***
=============================================
    Company Logos One
=============================================
***/
.company-logos-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 0px 0px 130px;
}

.company-logos-one__wrapper {
	position: relative;
	display: block;
}

.company-logos-one__carousel.owl-carousel .owl-item img {
	display: block;
	width: auto;
	text-align: center;
	margin: 0 auto;
}

.company-logos-one__single {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 40px 20px;
	border-radius: 10px;
	text-align: center !important;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.company-logos-one__single:hover {
	box-shadow: 0px 10px 30px 0px rgb(235, 235, 235);
}

.company-logos-one__carousel.owl-theme .owl-stage-outer {
	overflow: visible;
}

.company-logos-one__carousel .owl-stage-outer .owl-item {
	opacity: 0;
	transition: all 500ms linear;
	transition-delay: 0.1s;
}

.company-logos-one__carousel .owl-stage-outer .owl-item.active {
	opacity: 1;
}

/***
=============================================
    Blog One
=============================================
***/
.blog-one {
	position: relative;
	display: block;
	background: #ffe9d9;
	padding: 130px 0px 220px;
	z-index: 1;
}

.blog-one .shape1 {
	position: absolute;
	top: 150px;
	left: 140px;
	z-index: -1;
}

.blog-one .shape2 {
	position: absolute;
	top: 190px;
	right: 170px;
	z-index: -1;
}

.blog-one .shape3 {
	position: absolute;
	left: 0;
	bottom: 190px;
	z-index: -1;
}

.blog-one .shape4 {
	position: absolute;
	right: 0;
	bottom: 170px;
	z-index: -1;
}

.blog-one .shape5 {
	position: absolute;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #f9e111;
	right: 180px;
	bottom: 300px;
	z-index: -1;
}

.blog-one .sec-title {
	margin-bottom: 68px;
}

.blog-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.blog-one__single-img {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.blog-one__single-img::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: rgba(var(--thm-black-rgb), 0.6);
	transition-delay: 0.1s;
	transition-timing-function: ease-in-out;
	transition-duration: 0.5s;
	transition-property: all;
	opacity: 1;
	transform-origin: top;
	transform-style: preserve-3d;
	transform: scaleY(0);
	z-index: 1;
}

.blog-one__single:hover .blog-one__single-img::before {
	transform: scaleY(1);
}

.blog-one__single-img .overlay-icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	transition: 0.9s;
	transform: perspective(400px) scaleY(0);
	transform-origin: bottom;
}

.blog-one__single:hover .blog-one__single-img .overlay-icon {
	transform: perspective(400px) scaleY(1);
}

.blog-one__single .blog-one__single-img .overlay-icon a {
	position: relative;
	display: inline-block;
}

.blog-one__single .blog-one__single-img .overlay-icon span {
	color: #ffffff;
	font-size: 30px;
	line-height: 30px;
}

.blog-one__single-img img {
	width: 100%;
}

.blog-one__single__content {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 28px 30px 41px;
}

.blog-one__single__content .meta-info {
	position: relative;
	display: block;
}

.blog-one__single__content .meta-info li {
	position: relative;
	display: inline-block;
	padding-right: 15px;
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 14px;
}

.blog-one__single__content .meta-info li:last-child {
	padding-right: 0;
}

.blog-one__single__content h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-top: 15px;
}

.blog-one__single__content h2 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.blog-one__single__content h2 a:hover {
	color: var(--thm-base);
}

/***
=============================================
    Subscribe One
=============================================
***/
.subscribe-one {
	position: relative;
	display: block;
}

.subscribe-one__wrapper {
	position: relative;
	display: block;
	background: #f7faff;
	padding: 100px 0px 100px;
	margin-top: -130px;
	border-radius: 5px;
	z-index: 1;
}

.subscribe-one__wrapper .shape1 {
	position: absolute;
	top: 90px;
	left: 60px;
	z-index: -1;
}

.subscribe-one__wrapper .shape2 {
	position: absolute;
	top: -15%;
	left: 20%;
	z-index: -1;
}

.subscribe-one__wrapper .shape3 {
	position: absolute;
	top: 75px;
	right: 80px;
	z-index: -1;
}

.subscribe-one__wrapper .shape4 {
	position: absolute;
	left: 50px;
	bottom: 50px;
	-webkit-animation: animation1 5s ease-in infinite;
	animation: animation1 5s ease-in infinite;
	z-index: -1;
}

.subscribe-one__wrapper .shape5 {
	position: absolute;
	bottom: 15px;
	right: 50px;
	z-index: -1;
}

.subscribe-one__icon {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--thm-black);
	text-align: center;
	margin-bottom: 44px;
}

.subscribe-one__icon span::before {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 25px;
	line-height: 70px;
}

.subscribe-one__title {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 1.4em;
}

.subscribe-one__box {
	position: relative;
	display: block;
	max-width: 625px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	margin-top: 59px;
}

.subscribe-one__form {
	position: relative;
	display: block;
	width: 100%;
}

.subscribe-one__input-box {
	position: relative;
	display: block;
}

.subscribe-one__input-box .icon {
	position: absolute;
	top: 20px;
	left: 30px;
	color: #39425d;
	font-size: 18px;
}

.subscribe-one__input-box input[type="email"] {
	color: rgba(57, 66, 93, 0.8);
	font-size: 14px;
	height: 70px;
	width: 100%;
	font-weight: 400;
	padding-left: 65px;
	padding-right: 30px;
	background: #ffffff;
	outline: none;
	border: none;
	border: 1px solid transparent;
	text-transform: none;
	border-radius: 10px;
	max-width: 420px;
	width: 100%;
	float: left;
}

.subscribe-one__input-box input[type="email"]::-webkit-input-placeholder {
	color: rgba(57, 66, 93, 0.8);
}

.subscribe-one__input-box input[type="email"]:-moz-placeholder {
	color: rgba(57, 66, 93, 0.8);
}

.subscribe-one__input-box input[type="email"]::-moz-placeholder {
	color: rgba(57, 66, 93, 0.8);
}

.subscribe-one__input-box input[type="email"]:-ms-input-placeholder {
	color: rgba(57, 66, 93, 0.8);
}

.subscribe-one__btn {
	position: absolute;
	right: 0px;
	display: inline-block;
	border: none;
	outline: none;
}

.subscribe-one__btn.thm-btn {
	border-radius: 10px;
	padding: 18px 47px 18px;
	font-size: 17px;
}

/***
=============================================
    Footer One
=============================================
***/
.footer-one {
	position: relative;
	display: block;
	z-index: 1;
}

.footer-one .shape1 {
	position: absolute;
	top: -150px;
	left: 0;
	opacity: 0.5;
	z-index: -1;
}

.footer-one .shape2 {
	position: absolute;
	top: -150px;
	right: -150px;
	opacity: 0.5;
	z-index: -1;
}

.footer-one__top {
	position: relative;
	display: block;
	padding: 122px 0px 72px;
}

.footer-one__top-wrapper {
	position: relative;
	display: block;
}

.footer-widget__column {
	position: relative;
	display: block;
}

.footer-widget__about {
	position: relative;
	display: block;
	padding-top: 8px;
}

.footer-widget__about-logo {
	position: relative;
	display: inline-block;
	margin-bottom: 21px;
}

.footer-widget__about-logo a {
	position: relative;
	display: inline-block;
}

.footer-widget__about-text1 {
	color: var(--thm-black);
	font-size: 18px;
	line-height: 32px;
}

.footer-widget__about-text2 {
	color: var(--thm-black);
	font-size: 18px;
	line-height: 32px;
}

.footer-widget__about-contact-box {
	position: relative;
	display: block;
	margin-top: 21px;
}

.footer-widget__about-contact-box .phone {
	font-size: 18px;
	line-height: 32px;
}

.footer-widget__about-contact-box .phone a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.footer-widget__about-contact-box .phone a:hover {
	color: var(--thm-base);
}

.footer-widget__about-contact-box p {
	font-size: 18px;
	line-height: 32px;
}

.footer-widget__about-contact-box p a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.footer-widget__about-contact-box p a:hover {
	color: var(--thm-base);
}

.footer-widget__company {
	position: relative;
	display: block;
}

.footer-widget__title {
	color: rgba(8, 8, 8, 0.6);
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	font-family: var(--thm-font);
	margin-bottom: 19px;
}

.footer-widget__company-list {
	position: relative;
	display: block;
}

.footer-widget__company-list-item {
	position: relative;
	display: block;
}

.footer-widget__company-list-item a {
	color: var(--thm-black);
	font-size: 18px;
	line-height: 39px;
	font-weight: 400;
	font-family: var(--thm-font);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.footer-widget__company-list-item a:hover {
	color: var(--thm-base);
}

.footer-widget__link {
	position: relative;
	display: block;
	margin-left: 60px;
}

.footer-widget__link-list {
	position: relative;
	display: block;
}

.footer-widget__link-list-item {
	position: relative;
	display: block;
}

.footer-widget__link-list-item a {
	color: var(--thm-black);
	font-size: 18px;
	line-height: 39px;
	font-weight: 400;
	font-family: var(--thm-font);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.footer-widget__link-list-item a:hover {
	color: var(--thm-base);
}

.footer-widget__social-links {
	position: relative;
	display: block;
	margin-left: 30px;
	margin-top: 8px;
}

.footer-widget__social-links ul {
	position: relative;
	display: block;
}

.footer-widget__social-links ul li {
	position: relative;
	display: inline-block;
	margin-right: 21px;
}

.footer-widget__social-links ul li:last-child {
	margin-right: 0;
}

.footer-widget__social-links ul li a {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	transition: all 500ms ease;
	z-index: 1;
}

.footer-widget__social-links ul li a:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	content: "";
	background: var(--thm-black);
	border-radius: 50%;
	transform: scale(0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: -1;
}

.footer-widget__social-links ul li a:hover:before {
	transform: scaleX(1);
}

.footer-widget__social-links ul li a i:before {
	position: relative;
	display: inline-block;
	color: var(--thm-black);
	font-size: 15px;
	line-height: 40px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.footer-widget__social-links ul li a:hover i:before {
	color: #ffffff;
}

.download-btn-box {
	position: relative;
	display: block;
	margin-top: 37px;
}

.download-btn-box h3 {
	color: #5e6282;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	font-family: var(--thm-font);
	letter-spacing: 0.005em;
	margin-bottom: 17px;
}

.download-btn-box .download-btn1 {
	position: relative;
	display: inline-block;
}

.download-btn-box .download-btn1 .image {
	position: relative;
	display: inline-block;
}

.download-btn-box .download-btn1 .image a {
	position: relative;
	display: inline-block;
}

.download-btn-box .download-btn2 {
	position: relative;
	display: inline-block;
}

.download-btn-box .download-btn2 .image {
	position: relative;
	display: inline-block;
}

.download-btn-box .download-btn2 .image a {
	position: relative;
	display: inline-block;
}

.footer-one__bottom {
	position: relative;
	display: block;
}

.footer-one__bottom-inner {
	position: relative;
	display: block;
	border-top: 2px solid #f1f0ef;
	padding: 43px 0px 42px;
}

.footer-one__bottom-text {
	position: relative;
	display: block;
}

.footer-one__bottom-text p {
	color: rgba(var(--thm-black-rgb), 0.7);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}

/***
=============================================
    Services Two
=============================================
***/
.services-two {
	position: relative;
	display: block;
	overflow: hidden;
	background: #faf4eb;
	padding: 130px 0px 120px;
	z-index: 1;
}

.services-two__left-bg {
	position: absolute;
	left: 0;
	bottom: -30px;
	z-index: -1;
}

.services-two__right-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.services-two .shape1 {
	position: absolute;
	top: 35px;
	left: 70px;
	z-index: -1;
}

.services-two .shape2 {
	position: absolute;
	top: 190px;
	right: 150px;
	z-index: -1;
}

.services-two .shape3 {
	position: absolute;
	top: 50%;
	left: 35px;
	z-index: -1;
}

.services-two .shape4 {
	position: absolute;
	left: 220px;
	bottom: 500px;
	z-index: -1;
}

.services-two .shape5 {
	position: absolute;
	bottom: 645px;
	right: 165px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f9e111;
	z-index: -1;
}

.services-two .shape6 {
	position: absolute;
	bottom: 545px;
	right: 130px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--thm-black);
	z-index: -1;
}

.services-two .shape7 {
	position: absolute;
	bottom: 170px;
	right: 100px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--thm-base);
	z-index: -1;
}

.services-two .shape8 {
	position: absolute;
	bottom: 625px;
	right: 520px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--thm-black);
	z-index: -1;
}

.services-two .sec-title {
	margin-bottom: 68px;
}

.services-two__single {
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.services-two__single-icon {
	position: relative;
	display: inline-block;
	margin-bottom: 31px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.services-two__single:hover .services-two__single-icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.services-two__single-title {
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 25px;
}

.services-two__single-title a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.services-two__single-title a:hover {
	color: var(--thm-base);
}

.services-two__single-text {
	color: rgba(var(--thm-black-rgb), 0.8);
}

.services-two__single-btn {
	position: relative;
	display: block;
	margin-top: 27px;
}

.services-two__single-btn a {
	position: relative;
	color: var(--thm-color-1);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: 1;
}

.services-two__single-btn a:hover {
	color: var(--thm-base);
}

.services-two__single-btn a::before {
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 75%;
	height: 2px;
	background: #75726e;
	content: "";
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: -1;
}

.services-two__single-btn a:hover:before {
	background: var(--thm-base);
}

.services-two__single-btn a span::before {
	position: relative;
	display: inline-block;
	top: 2px;
	color: var(--thm-color-1);
	font-size: 15px;
	line-height: 25px;
	padding-left: 10px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.services-two__single-btn a:hover span::before {
	color: var(--thm-base);
}

.services-two__bottom {
	position: relative;
	display: block;
	margin-top: 40px;
}

.services-two__bottom-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.services-two__bottom-content-title {
	position: relative;
	display: block;
	max-width: 440px;
	width: 100%;
}

.services-two__bottom-content-title h2 {
	color: var(--thm-black);
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}

.services-two__bottom-img {
	position: absolute;
	bottom: 35px;
	right: -230px;
}

/***
=============================================
    Work History Two
=============================================
***/
.work-history-one--two {
	position: relative;
	display: block;
	padding-top: 70px;
	padding-bottom: 40px;
}

.work-history-one--two .work-history-one__single {
	background: transparent;
	padding: 43px 15px 48px;
}

.work-history-one--two .work-history-one__single.style1 {
	max-width: 280px;
	margin: 0 auto 30px;
}

.work-history-one--two .work-history-one__single.mr-l100 {
	margin-left: 100px;
}

.work-history-one--two .row {
	margin-left: -15px;
	margin-right: -15x;
}

.work-history-one--two .row [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

/***
=============================================
    Digital Experience Two
=============================================
***/
.digital-experience-one--two {
	position: relative;
	display: block;
	padding: 0px 0px 0px;
}

/***
=============================================
    Case Studies Two
=============================================
***/

.case-studies-two {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 130px 0px 130px;
	z-index: 1;
}

.case-studies-two .shape2 {
	position: absolute;
	top: 100px;
	left: 140px;
	z-index: -1;
}

.case-studies-two .shape3 {
	position: absolute;
	top: 150px;
	left: 110px;
	z-index: -1;
}

.case-studies-two .shape4 {
	position: absolute;
	top: 110px;
	left: 0px;
	z-index: -1;
}

.case-studies-two__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
	z-index: 1;
}

.case-studies-two__single .shape1 {
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	opacity: 1;
	-webkit-transform: perspective(400px) scale(1);
	-ms-transform: perspective(400px) scale(1);
	transform: perspective(400px) scale(1);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	z-index: 2;
}

.case-studies-two__single:hover .shape1 {
	-webkit-transform: perspective(400px) scale(0);
	-ms-transform: perspective(400px) scale(0);
	transform: perspective(400px) scale(0);
}

.case-studies-two__single-img {
	position: relative;
	display: block;
	overflow: hidden;
}

.case-studies-two__single-img::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 1;
}

.case-studies-two__single:hover .case-studies-two__single-img::before {
	-webkit-animation: circle 0.75s;
	animation: circle 0.75s;
}

.case-studies-two__single-img img {
	width: 100%;
	transform: scale(1);
	transition: all 0.7s ease 0s;
}

.case-studies-two__single:hover .case-studies-two__single-img img {
	transform: scale(1.1);
}

.case-studies-two__single-content {
	position: relative;
	display: block;
	box-shadow: 0px 0px 35px 0px rgba(178, 178, 178, 0.35);
	background: #ffffff;
	padding: 43px 45px 41px;
	z-index: 1;
}

.case-studies-two__single-content::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	border: 2px solid var(--thm-color-1);
	border-top: none;
	content: "";
	transition-delay: 0.05s;
	transition-timing-function: ease-in-out;
	transition-duration: 0.4s;
	transition-property: all;
	opacity: 1;
	transform-origin: top;
	transform-style: preserve-3d;
	transform: scaleY(0);
	z-index: -1;
}

.case-studies-two__single:hover .case-studies-two__single-content::before {
	transform: scaleY(1);
}

.case-studies-two__single-content p {
	color: var(--thm-black);
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

.case-studies-two__single-content h2 {
	font-size: 30px;
	line-height: 40px;
	margin-top: 18px;
}

.case-studies-two__single-content h2 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.case-studies-two__single-content h2 a:hover {
	color: var(--thm-base);
}

.case-studies-two__bottom {
	position: relative;
	display: block;
	margin-top: 60px;
}

.case-studies-two__bottom-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.case-studies-two__bottom-img {
	position: relative;
	display: block;
	max-width: 415px;
	width: 100%;
}

.case-studies-two__bottom-img img {
	width: 100%;
}

.case-studies-two__bottom-title {
	position: relative;
	display: block;
	max-width: 440px;
	width: 100%;
}

.case-studies-two__bottom-title h2 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}

.case-studies-two__bottom-btn {
	position: relative;
	display: block;
}

.case-studies-two__bottom-btn .thm-btn {
	color: var(--thm-color-1);
	border: 2px solid var(--thm-color-1);
	background: transparent;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.case-studies-two__bottom-btn .thm-btn:hover {
	border: 2px solid var(--thm-base);
	color: #ffffff;
}

.case-studies-two__bottom-btn .thm-btn::after {
	background: var(--thm-base);
}

/***
=============================================
    Team One
=============================================
***/
.team-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 130px 0px 100px;
	z-index: 1;
}

.team-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
	z-index: 1;
}

.team-one__single .shape1 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.team-one__single .shape2 {
	position: absolute;
	bottom: -3px;
	right: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	opacity: 1;
	-webkit-transform: perspective(400px) scale(0);
	-ms-transform: perspective(400px) scale(0);
	transform: perspective(400px) scale(0);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	z-index: 1;
}

.team-one__single:hover .shape2 {
	-webkit-transform: perspective(400px) scale(1);
	-ms-transform: perspective(400px) scale(1);
	transform: perspective(400px) scale(1);
}

.team-one__single-img {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.team-one__single-img::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: rgba(var(--thm-color-1-rgb), 0.8);
	transition-delay: 0.1s;
	transition-timing-function: ease-in-out;
	transition-duration: 0.5s;
	transition-property: all;
	opacity: 0.5;
	transform-origin: bottom;
	transform-style: preserve-3d;
	transform: scaleY(0);
	z-index: 1;
}

.team-one__single:hover .team-one__single-img::before {
	transform: scaleY(1);
}

.team-one__single-img img {
	width: 100%;
}

.team-one__single-img .social-icon {
	position: absolute;
	left: 0;
	bottom: 15px;
	right: 0;
	text-align: center;
	z-index: 10;
}

.team-one__single-img .social-icon ul {
	position: relative;
	display: block;
	opacity: 0;
	-webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
	-webkit-transform: perspective(400px) rotateX(90deg);
	-ms-transform: perspective(400px) rotateX(90deg);
	transform: perspective(400px) rotateX(90deg);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
}

.team-one__single:hover .social-icon ul {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateX(0deg);
	-ms-transform: perspective(400px) rotateX(0deg);
	transform: perspective(400px) rotateX(0deg);
}

.team-one__single-img .social-icon ul li {
	position: relative;
	display: inline-block;
	float: none;
	margin: 0 4px;
}

.team-one__single-img .social-icon ul li:first-child {
	margin-left: 0;
}

.team-one__single-img .social-icon ul li:last-child {
	margin-right: 0;
}

.team-one__single-img .social-icon ul li a {
	position: relative;
	display: block;
	width: 55px;
	height: 55px;
	background: #ffffff;
	border-radius: 50%;
	color: #0a0101;
	font-size: 20px;
	line-height: 55px;
	text-align: center;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.team-one__single-img .social-icon ul li a:hover {
	color: #ffffff;
	background: var(--thm-base);
}

.team-one__single-content {
	position: relative;
	display: block;
	box-shadow: 0px 0px 35px 0px rgba(178, 178, 178, 0.35);
	background: #ffffff;
	padding: 37px 0px 38px;
}

.team-one__single-content h2 {
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 4px;
}

.team-one__single-content h2 a {
	color: var(--thm-color-1);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
	color: var(--thm-base);
}

.team-one__single-content p {
	color: rgba(var(--thm-black-rgb), 0.7);
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

/***
=============================================
    Blog Two
=============================================
***/
.blog-one--two {
	position: relative;
	display: block;
	background: #faf4eb;
	padding: 130px 0px 100px;
}

.blog-one--two p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	margin-top: 20px;
}

.blog-one--two__btn {
	position: relative;
	display: block;
	margin-top: 22px;
}

.blog-one--two__btn a {
	position: relative;
	display: inline-block;
	color: var(--thm-color-1);
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	font-family: var(--thm-font);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.blog-one--two__btn a:hover {
	color: var(--thm-base);
}

.blog-one--two__btn a span:before {
	position: relative;
	display: inline-block;
	top: 3px;
	color: var(--thm-color-1);
	font-size: 15px;
	line-height: 25px;
	font-weight: 700;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.blog-one--two__btn a:hover span:before {
	color: var(--thm-base);
}

/***
=============================================
    Slogan One
=============================================
***/
.slogan-one {
	position: relative;
	display: block;
	background: #f7faff;
	padding: 117px 0px 130px;
	z-index: 1;
}

.slogan-one .shape1 {
	position: absolute;
	top: 90px;
	left: 440px;
	z-index: -1;
}

.slogan-one .shape2 {
	position: absolute;
	top: -50px;
	left: 34%;
	opacity: 0.8;
	z-index: -1;
}

.slogan-one .shape3 {
	position: absolute;
	top: 75px;
	right: 245px;
	z-index: -1;
}

.slogan-one .shape4 {
	position: absolute;
	left: 275px;
	bottom: 50px;
	z-index: -1;
	-webkit-animation: animation1 5s ease-in infinite;
	animation: animation1 5s ease-in infinite;
}

.slogan-one .shape5 {
	position: absolute;
	bottom: 35px;
	right: 120px;
	z-index: -1;
}

.slogan-one__wrapper {
	position: relative;
	display: block;
}

.slogan-one__wrapper h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 58px;
	margin-bottom: 41px;
}

.slogan-one__wrapper p {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.slogan-one__btn {
	position: relative;
	display: block;
	margin-top: 61px;
}

.slogan-one__btn .thm-btn {
	background: var(--thm-black);
}

.slogan-one__btn .thm-btn::after {
	background: var(--thm-base);
}

.slogan-one__btn span::before {
	position: relative;
	display: inline-block;
	top: 2px;
	color: #ffffff;
	font-size: 15px;
	line-height: 25px;
	font-weight: 700;
	padding-left: 11px;
}

/***
=============================================
    Subscribe Two
=============================================
***/
.subscribe-one--two {
	position: relative;
	display: block;
	padding: 130px 0px 0px;
	z-index: 2;
}

.subscribe-one--two__left {
	position: relative;
	display: block;
}

.subscribe-one--two__left .subscribe-one__icon {
	margin-bottom: 29px;
}

.subscribe-one--two__right {
	position: relative;
	display: block;
	max-width: 555px;
	width: 100%;
	margin-top: 76px;
}

.subscribe-one--two__right-text {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	font-family: var(--thm-font);
}

.subscribe-one--two__right .subscribe-one__input-box input[type="email"] {
	background: #f5f5f5;
}

.subscribe-one--two__right .subscribe-one__box {
	margin-top: 36px;
}

.subscribe-one--two__right .subscribe-one__input-box input[type="email"] {
	padding-right: 80px;
}

.subscribe-one--two__right .subscribe-one__box {
	max-width: 555px;
}

/***
=============================================
    Footer Two
=============================================
***/
.footer-one--two {
	position: relative;
	display: block;
}

.footer-one--two .footer-one__top {
	position: relative;
	display: block;
	padding: 106px 0px 72px;
}

/***
=============================================
    Client Feed Back Two
=============================================
***/
.client-feed-back-one--two {
	position: relative;
	display: block;
	background: #ecf6fc;
	padding: 130px 0px 130px;
	z-index: 1;
}

.client-feed-back-one--two .shape-one {
	position: absolute;
	top: 125px;
	left: 110px;
	z-index: -1;
}

.client-feed-back-one--two .shape-two {
	position: absolute;
	left: 165px;
	bottom: 70px;
	z-index: -1;
}

.client-feed-back-one--two .shape-three {
	position: absolute;
	top: 110px;
	right: 165px;
	z-index: -1;
}

.client-feed-back-one--two .shape-four {
	position: absolute;
	bottom: 180px;
	right: 100px;
	z-index: -1;
}

.client-feed-back-one--two .overlay-icon {
	position: absolute;
	top: 235px;
	right: -50px;
	width: 110px;
	height: 110px;
	background: var(--thm-black);
	color: #ffffff;
	border-radius: 50%;
	text-align: center;
}

.client-feed-back-one--two .overlay-icon span::before {
	position: relative;
	display: inline-block;
	font-size: 35px;
	line-height: 110px;
}

.client-feed-back-one--two .client-feed-back-one__img {
	position: relative;
	display: block;
	max-width: 485px;
	width: 100%;
}

/***
=============================================
    About Two
=============================================
***/
.about-two {
	position: relative;
	display: block;
	padding: 130px 0px 130px;
	background: #ffffff;
	z-index: 1;
}

.about-two .shape5 {
	position: absolute;
	top: 180px;
	right: -382px;
	z-index: -1;
}

.about-two .shape6 {
	position: absolute;
	bottom: 250px;
	right: 170px;
	z-index: -1;
}

.about-two__left {
	position: relative;
	display: block;
	max-width: 570px;
	width: 100%;
	padding-right: 83px;
	z-index: 1;
}

.about-two__left .shape-one {
	position: absolute;
	top: -80px;
	left: -261px;
	z-index: -1;
}

.about-two__left .shape-three {
	position: absolute;
	right: 98px;
	bottom: -165px;
	z-index: 5;
}

.about-two__left-img1 {
	position: absolute;
	top: 0;
	left: -183px;
}

.about-two__left-img1::before {
	position: absolute;
	top: 85px;
	left: -30px;
	bottom: -30px;
	right: 0;
	border-left: 30px solid #ffffff;
	border-bottom: 30px solid #ffffff;
	content: "";
}

.about-two__left-img1 .inner {
	position: relative;
	display: block;
}

.about-two__left-img1 .inner .shape-two {
	position: absolute;
	top: 30px;
	left: -45px;
	z-index: 1;
}

.about-two__left-img1 img {
	width: 100%;
}

.about-two__left-img2 {
	position: relative;
	display: block;
	margin-top: 65px;
	float: right;
	z-index: 1;
}

.about-two__left-img2::before {
	position: absolute;
	top: -25px;
	left: -25px;
	bottom: -25px;
	right: -25px;
	border: 25px solid #ffffff;
	content: "";
	z-index: -1;
}

.about-two__left-img2 .inner {
	position: relative;
	display: block;
	overflow: hidden;
}

.about-two__left-img2 .inner::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 1;
}

.about-two__left:hover .about-two__left-img2 .inner::before {
	-webkit-animation: circle 0.75s;
	animation: circle 0.75s;
}

.about-two__left-img2 img {
	width: 100%;
	transform: scale(1);
	transition: all 0.7s ease 0s;
}

.about-two__left:hover .about-two__left-img2 img {
	transform: scale(1.1);
}

.about-two__left-img2 .overlay-content {
	position: absolute;
	left: 40px;
	bottom: -175px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	width: 250px;
	height: 250px;
	padding: 0px 45px 0px;
	border-radius: 50%;
	z-index: 3;
}

.about-two__left-img2 .overlay-content::before {
	position: absolute;
	top: 0px;
	left: 0;
	bottom: 0;
	right: 0;
	background: #f9e111;
	border-radius: 50%;
	content: "";
	z-index: 1;
}

.about-two__left-img2 .overlay-content::after {
	position: absolute;
	top: -7px;
	left: 0;
	bottom: 0;
	right: 0;
	width: 250px;
	height: 250px;
	background: transparent;
	border-radius: 50%;
	border: 1px solid #ffffff;
	content: "";
	z-index: -1;
}

.about-two__left-img2 .overlay-content h2 {
	position: relative;
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	font-family: var(--thm-font);
	z-index: 2;
}

.about-two__left-img2 .overlay-content h2 span {
	color: var(--thm-base);
}

.about-two__content {
	position: relative;
	display: block;
	margin-left: 37px;
}

.about-two__content .shape4 {
	position: absolute;
	top: 0px;
	right: -310px;
	z-index: 1;
}

.about-two__content .sec-title {
	margin-bottom: 45px;
}

.about-two__content-text1 {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.about-two__content-list {
	position: relative;
	display: block;
	margin-top: 41px;
	margin-bottom: 35px;
}

.about-two__content-list ul {
	position: relative;
	display: flex;
	align-items: center;
}

.about-two__content-list ul li {
	position: relative;
	display: block;
	padding-right: 75px;
}

.about-two__content-list ul li:last-child {
	padding-right: 0px;
}

.about-two__content-list ul li .icon {
	position: relative;
	display: inline-block;
	transition-delay: 0.1s;
	transition: all 500ms ease;
}

.about-two__content-list ul li:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.about-two__content-list ul li .title {
	position: relative;
	display: block;
	margin-top: 16px;
}

.about-two__content-list ul li .title h4 {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}

.about-two__content-text2 {
	color: rgba(var(--thm-black-rgb), 0.8);
}

.about-two__content-btn {
	position: relative;
	display: block;
	margin-top: 55px;
}

.about-two__content-btn .thm-btn {
	color: var(--thm-black);
	background: transparent;
	border: 2px solid var(--thm-color-1);
	transition: all 200ms linear;
	transition-delay: 0.2s;
}

.about-two__content-btn .thm-btn span::before {
	position: relative;
	display: inline-block;
	top: 2px;
	font-size: 20px;
	font-weight: 700;
	padding-left: 22px;
}

.about-two__content-btn .thm-btn:hover {
	color: #ffffff;
	border: 2px solid var(--thm-base);
}

.about-two__content-btn .thm-btn::after {
	background: var(--thm-base);
}

/***
=============================================
    Work History One About
=============================================
***/
.work-history-one--about {
	position: relative;
	display: block;
	padding: 130px 0px 0px;
}

.work-history-one--about .title-box {
	position: relative;
	display: block;
	max-width: 885px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 61px;
}

.work-history-one--about .title-box h2 {
	color: var(--thm-black);
	font-size: 64px;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 56px;
}

.work-history-one--about .title-box p {
	color: rgba(var(--thm-black-rgb), 0.8);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

/***
=============================================
     About One About
=============================================
***/
.about-one--about {
	position: relative;
	display: block;
	padding: 100px 0px 208px;
}

/***
=============================================
    Digital Experience One About
=============================================
***/
.digital-experience-one--about {
	position: relative;
	display: block;
	padding: 0px 0px 130px;
}

/***
=============================================
    Company Logos One About
=============================================
***/
.company-logos-one--about {
	position: relative;
	display: block;
	padding: 130px 0px 130px;
}

/***
=============================================
    Subscribe One About
=============================================
***/
.subscribe-one--about {
	position: relative;
	display: block;
}

.subscribe-one--about .subscribe-one__wrapper {
	margin-top: 0px;
}

/***
=============================================
    Client Feed Back One Services
=============================================
***/
.client-feed-back-one--services {
	position: relative;
	display: block;
	padding: 130px 0px 140px;
}

.client-feed-back-one.client-feed-back-one--services .shape1 {
	position: absolute;
	top: 170px;
	left: 110px;
	z-index: -1;
}

.client-feed-back-one.client-feed-back-one--services .shape5 {
	position: absolute;
	top: 120px;
	right: 255px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--thm-black);
}

/***
=============================================
    Case Studies Two Case2
=============================================
***/
.case-studies-two--case2 {
	position: relative;
	display: block;
	padding: 130px 0px 100px;
}

/***
=============================================
    Team One Team
=============================================
***/
.team-one--team {
	position: relative;
	display: block;
	padding: 0px 0px 100px;
}

/***
=============================================
    Blog One Blog
=============================================
***/
.blog-one.blog-one--two .shape3 {
	position: absolute;
	left: 0;
	bottom: 48%;
	z-index: -1;
}

.blog-one.blog-one--two .shape4 {
	position: absolute;
	right: 0;
	bottom: 48%;
	z-index: -1;
}

.blog-one.blog-one--two .shape5 {
	position: absolute;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #f9e111;
	right: 180px;
	bottom: 52%;
	z-index: -1;
}

/***
=============================================
    Blog Page Two
=============================================
***/

.blog-page-two {
	position: relative;
	display: block;
	padding: 130px 0px 130px;
	background: #faf4eb;
	z-index: 1;
}

.blog-page-two .shape1 {
	position: absolute;
	top: 150px;
	left: 150px;
	z-index: -1;
}

.blog-page-two .shape2 {
	position: absolute;
	top: 190px;
	right: 160px;
	z-index: -1;
}

.blog-page-two .shape3 {
	position: absolute;
	top: 750px;
	right: 170px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #f9e111;
	z-index: -1;
}

.blog-page-two .shape4 {
	position: absolute;
	top: 865px;
	left: 10px;
	z-index: -1;
}

.blog-page-two .shape5 {
	position: absolute;
	top: 865px;
	right: 0px;
	z-index: -1;
}

.blog-page-two .sec-title {
	margin-bottom: 58px;
}

.blog-page-two__left {
	position: relative;
	display: block;
}

.blog-page-two .blog-one__single {
	margin-bottom: 50px;
}

.blog-page-two .blog-one__single__content h2 {
	font-size: 48px;
	line-height: 1.2em;
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 23px;
}

.blog-page-two .blog-one__single__content h2 a {
	color: var(--thm-color-1);
}

.blog-page-two .blog-one__single__content h2 a:hover {
	color: var(--thm-base);
}

.blog-page-two .blog-one__single__content p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-two .blog-one__single__content {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 28px 35px 41px;
}

.blog-page-two .blog-one--two__btn {
	margin-top: 32px;
}

.blog-page-two .blog-one__single__content.bg1 {
	background: #f2fdfe;
}

.blog-page-two .style2.blog-one__single-img:before {
	display: none;
}

.blog-page-two .blog-one__single-img .icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-page-two .blog-one__single-img .icon a {
	position: relative;
	display: inline-block;
	width: 95px;
	height: 95px;
	line-height: 95px;
	border-radius: 50%;
	background: var(--thm-base);
	color: #ffffff;
	font-size: 25px;
	text-align: center;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.blog-page-two .blog-one__single-img .icon a:hover {
	background: var(--thm-black);
}

.styled-pagination {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.styled-pagination li {
	position: relative;
	display: inline-block;
	margin: 0px 5px;
}

.styled-pagination li a {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ffffff;
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 60px;
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
	transition: all 500ms ease;
	z-index: 1;
}

.styled-pagination li a:hover {
	color: #ffffff;
	background: var(--thm-base);
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
	color: #ffffff;
	background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
	color: var(--thm-color-1);
	line-height: 60px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
	color: #ffffff;
}

.sidebar {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 50px 40px 50px;
}

.sidebar__single {
	position: relative;
	display: block;
	margin-bottom: 62px;
}

.sidebar__single.mar0 {
	margin-bottom: 0;
}

.sidebar__single .title {
	position: relative;
	display: block;
	margin-bottom: 26px;
}

.sidebar__single .title h3 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}

.sidebar__search {
	position: relative;
	display: block;
}

.sidebar__search-form {
	position: relative;
}

.sidebar__search-form input[type="search"] {
	position: relative;
	display: block;
	border: none;
	outline: none;
	background-color: #f7f7f7;
	color: #b5b5b5;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	padding-left: 60px;
	height: 65px;
	width: 100%;
	border-radius: 5px;
	padding-right: 20px;
	font-family: var(--thm-font);
}

.sidebar__search-form ::-webkit-input-placeholder {
	color: #b5b5b5;
	opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
	color: #b5b5b5;
	opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
	color: #b5b5b5;
	opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
	color: #b5b5b5;
	opacity: 1;
}

.sidebar__search-form ::placeholder {
	color: #b5b5b5;
	opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
	color: #0c0d24;
}

.sidebar__search-form ::-ms-input-placeholder {
	color: #b5b5b5;
}

.sidebar__search-form button[type="submit"] {
	position: absolute;
	top: 1px;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 65px;
	background-color: transparent;
	color: var(--thm-color-1);
	font-size: 20px;
	font-weight: 700;
	outline: none;
	border: none;
	padding: 0;
}

.sidebar__single.sidebar__categories {
	position: relative;
	display: block;
	margin-bottom: 42px;
}

.sidebar-categories-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.sidebar-categories-box li {
	position: relative;
	display: block;
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 45px;
	font-weight: 400;
	margin-bottom: 10px;
}

.sidebar-categories-box li:last-child {
	margin-bottom: 0;
}

.sidebar-categories-box li a {
	position: relative;
	display: block;
	color: var(--thm-color-1);
	background: #f7f7f7;
	border-radius: 5px;
	padding: 4px 0px 4px;
	padding-left: 20px;
	padding-right: 15px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: 1;
}

.sidebar-categories-box li a::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	content: "";
	z-index: -1;
	opacity: 0;
	transform: perspective(400px) rotateX(90deg);
	transform-origin: bottom;
	transition: all 300ms linear;
	transition-delay: 0.1s;
	border-radius: 5px;
	background: var(--thm-color-1);
}

.sidebar-categories-box li a:hover:before {
	opacity: 1;
	transform: perspective(400px) rotateX(0deg);
	transition: all 300ms linear;
	transition-delay: 0.1s;
}

.sidebar-categories-box li a span {
	position: relative;
	float: right;
}

.sidebar-categories-box li a:hover {
	color: #ffffff;
}

.sidebar__latest-post {
	position: relative;
	display: block;
}

.sidebar__latest-post .title {
	position: relative;
	display: block;
}

.sidebar__latest-post-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.sidebar__latest-post-single {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.sidebar__latest-post-single:last-child {
	margin-bottom: 0;
}

.sidebar__latest-post-single .img {
	position: relative;
	display: block;
}

.sidebar__latest-post-single .title {
	position: relative;
	display: block;
	margin-left: 20px;
	margin-bottom: 0;
}

.sidebar__latest-post-single .title span {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.sidebar__latest-post-single .title h4 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	font-family: var(--thm-font);
	margin-top: 6px;
}

.sidebar__latest-post-single .title h4 a {
	color: var(--thm-color-1);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.sidebar__latest-post-single .title h4 a:hover {
	color: var(--thm-base);
}

/***
=============================================
    Blog Page Two
=============================================
***/
.blog-page-single {
	position: relative;
	display: block;
	background: #faf4eb;
	padding: 130px 0px 130px;
}

.blog-page-single__left {
	position: relative;
	display: block;
	background: #ffffff;
}

.blog-page-single__left-img1 {
	position: relative;
	display: block;
}

.blog-page-single__left-img1 img {
	width: 100%;
}

.blog-page-single__left .bottom-content {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 44px 40px 90px;
}

.blog-page-single__left .text1 {
	position: relative;
	display: block;
	margin-bottom: 32px;
}

.blog-page-single__left .text1 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__left .text2 {
	position: relative;
	display: block;
	margin-bottom: 32px;
}

.blog-page-single__left .text2 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__left .text3 {
	position: relative;
	display: block;
	margin-bottom: 39px;
}

.blog-page-single__left .text3 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__left .text4 {
	position: relative;
	display: block;
}

.blog-page-single__left .text4 h2 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 20px;
}

.blog-page-single__left .text4 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__left .blockquote-box {
	position: relative;
	display: block;
	background: #f3fcff;
	border-radius: 10px;
	padding: 41px 40px 33px;
	margin-top: 38px;
	margin-bottom: 38px;
}

.blog-page-single__left .blockquote-box .icon {
	position: relative;
	display: inline-block;
	line-height: 0;
}

.blog-page-single__left .blockquote-box .icon span::before {
	color: var(--thm-color-1);
	font-size: 25px;
}

.blog-page-single__left .blockquote-box blockquote {
	position: relative;
	display: block;
	margin: 0;
}

.blog-page-single__left .blockquote-box blockquote p {
	color: var(--thm-color-1);
	position: relative;
	padding-left: 55px;
	margin-top: -10px;
}

.blog-page-single__left .text5 {
	position: relative;
	display: block;
	margin-bottom: 32px;
}

.blog-page-single__left .text5 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__left .text6 {
	position: relative;
	display: block;
}

.blog-page-single__left .text6 p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
}

.blog-page-single__tag-social-link {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 2px solid #f7f5f5;
	border-bottom: 2px solid #f7f5f5;
	padding: 27px 0 25px;
	margin-top: 43px;
}

.blog-page-single__tags {
	position: relative;
	display: block;
}

.blog-page-single__tags span {
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	margin-right: 18px;
}

.blog-page-single__tags a {
	color: var(--thm-color-1);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.005em;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.blog-page-single__tags a:hover {
	color: var(--thm-base);
}

.blog-page-single__tags a + a {
	margin-left: 2px;
}

.blog-page-single__social-links {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.blog-page-single__social-links a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	color: #080809;
	background-color: #ffffff;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	font-size: 15px;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-page-single__social-links a + a {
	margin-left: 25px;
}

.blog-page-single__social-links a:hover {
	color: #ffffff;
	background: var(--thm-black);
}

/***
=============================================
    Author
=============================================
***/
.author-one {
	background-color: #f8f5f0;
	padding: 48px 25px 40px;
	display: -webkit-box;
	display: flex;
	margin-bottom: 48px;
	border-radius: 8px;
	margin-top: 55px;
}

.author-one__image {
	position: relative;
	display: block;
}

.author-one__content {
	margin-left: 30px;
	margin-top: -10px;
}

.author-one__content h3 {
	font-size: 20px;
	line-height: 34px;
	font-weight: 500;
	font-family: var(--thm-font);
}

.author-one__content span {
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 16px;
	line-height: 34px;
	font-weight: 400;
}

.author-one__content p {
	color: rgba(var(--thm-color-1-rgb), 0.7);
	margin: 0;
	margin-top: 13px;
}

.author-one__content .social-links {
	position: relative;
	display: block;
	margin-top: 14px;
}

.author-one__content .social-links li {
	position: relative;
	display: inline-block;
	margin-right: 15px;
}

.author-one__content .social-links li:last-child {
	margin-right: 0;
}

.author-one__content .social-links li a {
	position: relative;
	display: inline-block;
	color: #080809;
	font-size: 15px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.author-one__content .social-links li a:hover {
	color: var(--thm-base);
}

/***
=============================================
    Comments
=============================================
***/
.comment-one {
	position: relative;
	display: block;
}

.comment-one__title,
.comment-form__title {
	margin: 0;
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 36px;
	font-family: var(--thm-font);
}

.comment-one__single {
	position: relative;
	display: block;
	border-bottom: 2px solid #f7f5f5;
	padding-bottom: 28px;
	margin-bottom: 30px;
}

.comment-one__image {
	position: absolute;
	top: 0;
	left: 0;
}

.comment-one__content {
	position: relative;
	display: block;
	margin-left: 85px;
}

.comment-one__content-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comment-one__content-text {
	position: relative;
	display: block;
	margin-bottom: 14px;
}

.comment-one__content-text h3 {
	color: var(--thm-color-1);
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 5px;
	font-family: var(--thm-font);
}

.comment-one__content-text p {
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.comment-one__content-text p span {
	position: relative;
	display: inline-block;
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	padding-left: 17px;
}

.comment-one__content p {
	color: rgba(var(--thm-color-1-rgb), 0.7);
}

.comment-one__content-btn {
	position: relative;
	display: block;
}

.comment-one__content-btn .thm-btn {
	padding: 3px 15px 2px;
	font-size: 16px;
	line-height: 26px;
	font-family: var(--thm-font);
	border-radius: 5px;
}

.comment-one__image img {
	border-radius: 50%;
}

.comment-form {
	position: relative;
	display: block;
	margin-top: 47px;
}

.comment-form__title {
	margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
	height: 55px;
	width: 100%;
	border: none;
	background: transparent;
	padding: 0 0px;
	padding-right: 30px;
	margin-bottom: 23px;
	outline: none;
	font-size: 16px;
	color: rgba(var(--thm-color-1-rgb), 0.8);
	border-bottom: 1px solid #dfdfdf;
	font-weight: 400;
}

.comment-form__input-box textarea {
	font-size: 16px;
	height: 200px;
	width: 100%;
	background: transparent;
	padding: 16px 0px 30px;
	padding-right: 30px;
	border: none;
	outline: none;
	color: rgba(var(--thm-color-1-rgb), 0.8);
	border-bottom: 1px solid #dfdfdf;
	margin-bottom: 20px;
	font-weight: 400;
}

.comment-form .thm-btn {
	margin-top: 3px;
}

.comment-form .create-acc {
	position: relative;
	display: block;
	margin-top: 33px;
}

.comment-form .create-acc .checkbox {
	position: relative;
	display: block;
}

.comment-form .create-acc .checkbox input[type="checkbox"] {
	position: relative;
	display: inline-block;
	width: 17px;
	height: 18px;
	border-color: #e3e3e3;
	top: 3px;
}

.comment-form .create-acc .checkbox label {
	position: relative;
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	cursor: pointer;
}

.comment-form .create-acc .checkbox label span {
	position: relative;
	display: inline-block;
	padding-left: 5px;
}

/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
	position: relative;
	display: block;
	background: #fff8f1;
	padding: 130px 0px 0px;
	z-index: 2;
}

.contact-page .title {
	position: relative;
	display: block;
	margin-bottom: 61px;
}

.contact-page .title h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 18px;
}

.contact-page .title p {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.contact-page__wrapper {
	position: relative;
	display: block;
	background: #ffffff;
	box-shadow: 0px 25px 25px 0px rgba(212, 207, 207, 0.25);
	padding: 33px 50px 85px;
	margin-bottom: -140px;
}

.contact-page__wrapper .comment-form__input-box input[type="text"],
.contact-page__wrapper .comment-form__input-box input[type="email"] {
	height: 55px;
	width: 100%;
	font-size: 18px;
	color: rgba(var(--thm-color-1-rgb), 0.7);
	border-bottom: 2px solid #777777;
	margin-bottom: 62px;
}

.contact-page__wrapper .comment-form__input-box textarea {
	font-size: 18px;
	height: 200px;
	color: rgba(var(--thm-color-1-rgb), 0.8);
	border-bottom: 2px solid #777777;
	padding: 8px 0px 30px;
}

/***
=============================================
    Slogan Two
=============================================
***/
.slogan-two {
	position: relative;
	display: block;
	background: #f7faff;
	padding: 275px 0px 130px;
	z-index: 1;
}

.slogan-two .shape1 {
	position: absolute;
	top: 120px;
	right: 120px;
	z-index: -1;
}

.slogan-two .shape2 {
	position: absolute;
	bottom: 150px;
	right: 225px;
	z-index: -1;
}

.slogan-two .shape3 {
	position: absolute;
	top: 0;
	left: 31%;
	opacity: 0.8;
	z-index: -1;
}

.slogan-two__content {
	position: relative;
	display: block;
}

.slogan-two__content h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 1.3em;
	font-weight: 700;
	margin-bottom: 28px;
}

.slogan-two__content p {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.slogan-two__btn {
	position: relative;
	display: block;
	margin-top: 61px;
}

.slogan-two__btn .thm-btn {
	background: var(--thm-black);
}

.slogan-two__btn .thm-btn::after {
	background: var(--thm-base);
}

.slogan-two__btn span::before {
	position: relative;
	display: inline-block;
	top: 2px;
	color: #ffffff;
	font-size: 15px;
	line-height: 25px;
	font-weight: 700;
	padding-left: 11px;
}

.slogan-two__right {
	position: relative;
	display: block;
	background: #ffffff;
	max-width: 410px;
	width: 100%;
	padding: 55px 0px 67px;
	padding-left: 50px;
	padding-right: 40px;
}

.slogan-two__right .title {
	position: relative;
	display: block;
	margin-bottom: 40px;
}

.slogan-two__right .title h2 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 700;
}

.slogan-two__right ul {
	position: relative;
	display: block;
}

.slogan-two__right ul li {
	position: relative;
	display: block;
	margin-bottom: 5px;
}

.slogan-two__right ul li:last-child {
	margin-bottom: 0;
}

.slogan-two__right ul li .icon {
	position: absolute;
	top: 0;
	left: 0;
}

.slogan-two__right ul li .icon.style2 {
	position: absolute;
	top: 0;
	left: 0;
}

.slogan-two__right ul li .icon.style2 span::before {
	position: relative;
	display: inline-block;
	color: #333333;
	top: 5px;
	font-size: 20px;
	font-weight: 500;
}

.slogan-two__right ul li .icon.style3 {
	position: absolute;
	top: 0;
	left: 0;
}

.slogan-two__right ul li .icon.style3 span::before {
	position: relative;
	display: inline-block;
	color: #333333;
	font-size: 25px;
	transform: rotate(270deg);
}

.slogan-two__right ul li .icon span::before {
	position: relative;
	display: inline-block;
	top: 10px;
	color: #333333;
	font-size: 30px;
}

.slogan-two__right ul li .text {
	position: relative;
	display: block;
	padding-left: 40px;
}

.slogan-two__right ul li .text p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 18px;
	line-height: 33px;
}

.slogan-two__right ul li .text p a {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.slogan-two__right ul li .text p a:hover {
	color: var(--thm-base);
}

/***
=============================================
    Faq Page
=============================================
***/
.faq-page {
	position: relative;
	display: block;
	padding: 130px 0px 0px;
	background: #f7faff;
	z-index: 1;
}

.faq-page .shape1 {
	position: absolute;
	top: -30px;
	left: 32%;
	opacity: 0.8;
}

.faq-page .title {
	position: relative;
	display: block;
	margin-bottom: 61px;
}

.faq-page .title h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 58px;
	font-weight: 700;
	margin-bottom: 30px;
}

.faq-page .title p {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.faq-page__wrapper {
	position: relative;
	display: block;
	background: #ffffff;
	box-shadow: 0px 25px 25px 0px rgba(212, 207, 207, 0.25);
	padding: 80px 45px 85px;
}

.faq-page__accordions {
	position: relative;
	display: block;
	z-index: 1;
}

.faq-page__accordions .accrodion {
	position: relative;
	display: block;
	background: #ffffff;
	margin-bottom: 20px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.faq-page__accordions .accrodion .accrodion-title {
	position: relative;
	display: block;
	cursor: pointer;
	background: #f8f8f8;
	padding: 16px 0px 16px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	padding-left: 10px;
}

.faq-page__accordions .accrodion.active .accrodion-title {
	background: #f8f8f8;
}

.faq-page__accordions .accrodion .accrodion-title h4 {
	position: relative;
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	padding-left: 30px;
	padding-right: 35px;
	font-family: var(--thm-font);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.faq-page__accordions .accrodion.active .accrodion-title h4 {
	color: var(--thm-black);
}

.faq-page__accordions .accrodion .accrodion-title h4::before {
	content: "\f067";
	font-family: "Font Awesome\ 5 Free";
	font-weight: 700;
	font-size: 15px;
	color: var(--thm-color-1);
	position: absolute;
	top: 50%;
	right: 35px;
	text-align: center;
	transform: translateY(-50%);
	transition: all 500ms ease;
}

.faq-page__accordions .accrodion.active .accrodion-title h4::before {
	content: "\f068";
	font-family: "Font Awesome\ 5 Free";
	color: var(--thm-color-1);
}

.faq-page__accordions .accrodion .accrodion-content {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 24px 40px 21px;
	border-radius: 5px;
	margin-bottom: 33px;
}

.faq-page__accordions .accrodion .accrodion-content .inner {
	position: relative;
	display: block;
}

.faq-page__accordions .accrodion .accrodion-content .inner p {
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 18px;
	line-height: 34px;
	font-weight: 400;
}

/***
=============================================
    Slogan Two Faq
=============================================
***/
.slogan-two--faq {
	position: relative;
	display: block;
	padding: 115px 0px 130px;
	z-index: 1;
}

.slogan-two--faq .shape3 {
	position: absolute;
	top: 100px;
	left: 105px;
	z-index: -1;
}

.slogan-two--faq__img {
	position: relative;
	display: block;
}

.slogan-two--faq__img img {
	width: 100%;
}

/***
=============================================
    Error Page
=============================================
***/
.error-page {
	position: relative;
	display: block;
	background-image: -moz-linear-gradient(
		0deg,
		rgb(255, 244, 238) 0%,
		rgb(246, 250, 255) 87%
	);
	background-image: -webkit-linear-gradient(
		0deg,
		rgb(255, 244, 238) 0%,
		rgb(246, 250, 255) 87%
	);
	background-image: -ms-linear-gradient(
		0deg,
		rgb(255, 244, 238) 0%,
		rgb(246, 250, 255) 87%
	);
	padding: 160px 0px 170px;
	z-index: 1;
}

.error-page .shape1 {
	position: absolute;
	left: 0;
	bottom: 80px;
	z-index: -1;
}

.error-page .shape2 {
	position: absolute;
	top: 230px;
	left: 170px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fbca1d;
	z-index: -1;
}

.error-page .shape3 {
	position: absolute;
	left: 505px;
	bottom: 80px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #ffede0;
	z-index: -1;
}

.error-page .shape4 {
	position: absolute;
	top: 140px;
	right: 390px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fde285;
	z-index: -1;
}

.error-page .shape5 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.error-page .shape6 {
	position: absolute;
	top: 240px;
	right: -260px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.5;
	z-index: -1;
}

.error-page__big-title {
	position: relative;
	display: block;
	margin-bottom: 53px;
}

.error-page__big-title h2 {
	position: relative;
	color: var(--thm-black);
	font-size: 160px;
	line-height: 0.8em;
	font-family: var(--thm-font-2);
	font-weight: 700;
	z-index: 1;
}

.error-page__big-title h2::before {
	position: absolute;
	left: 0;
	bottom: -21px;
	right: 0;
	top: 0;
	background-image: url(../images/shapes/page-header-line6.png);
	content: "";
	z-index: -1;
	background-attachment: scroll;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.error-page__content {
	position: relative;
	display: block;
}

.error-page__content h2 {
	font-size: 36px;
	line-height: 1.4em;
	font-weight: 700;
	font-family: var(--thm-font-2);
	margin-bottom: 10px;
}

.error-page__search {
	position: relative;
	display: block;
	margin-top: 58px;
}

.error-page__search form.search-form {
	position: relative;
	display: block;
	max-width: 670px;
	width: 100%;
	margin: 0 auto;
}

.error-page__search .search-form input[type="text"] {
	position: relative;
	display: block;
	width: 100%;
	height: 80px;
	background-color: #ffffff;
	border: 0px solid #ffffff;
	color: rgba(var(--thm-color-1-rgb), 0.7);
	font-size: 18px;
	font-weight: 400;
	padding-left: 30px;
	padding-right: 60px;
	transition: all 500ms ease 0s;
	font-family: var(--thm-font);
}

.error-page__search .search-form button {
	position: absolute;
	top: 15px;
	right: 10px;
	width: 50px;
	height: 50px;
	font-size: 15px;
	line-height: 50px;
	background: transparent;
	display: block;
	text-align: center;
	border: 0px solid #f6f4ec;
	transition: all 500ms ease 0s;
	padding: 0;
	outline: none;
	border: none;
}

.error-page__search .search-form button i {
	color: var(--thm-primary);
	font-size: 20px;
	line-height: 50px;
	font-weight: 700;
}

.error-page__search .search-form input[type="text"]:focus {
	outline: none;
	border: none;
}

.error-page__search .search-form input::-webkit-input-placeholder {
	color: rgba(var(--thm-color-1-rgb), 0.7);
}

.error-page__search .search-form input:-moz-placeholder {
	color: rgba(var(--thm-color-1-rgb), 0.7);
}

.error-page__search .search-form input::-moz-placeholder {
	color: rgba(var(--thm-color-1-rgb), 0.7);
}

.error-page__search .search-form input:-ms-input-placeholder {
	color: rgba(var(--thm-color-1-rgb), 0.7);
}

.error-page__btn {
	position: relative;
	display: block;
	margin-top: 70px;
}

/***
=============================================
    Services Details
=============================================
***/
.services-one--services-details {
	position: relative;
	display: block;
	padding: 130px 0px 100px;
	z-index: 1;
}

/***
=============================================
     Website Design Build One
=============================================
***/
.website-design-build-one {
	position: relative;
	display: block;
	background: #fff8f1;
	padding: 130px 0px 130px;
}

.website-design-build-one__content {
	position: relative;
	display: block;
}

.website-design-build-one__content .title {
	position: relative;
	display: block;
}

.website-design-build-one__content .title h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 58px;
	font-weight: 700;
	margin-bottom: 38px;
}

.website-design-build-one__content .title p {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 40px;
	font-weight: 400;
}

.website-design-build-one__content-list {
	position: relative;
	display: block;
	margin-top: 50px;
}

.website-design-build-one__content-list .title {
	position: relative;
	display: block;
	margin-bottom: 41px;
}

.website-design-build-one__content-list .title h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 0;
}

.website-design-build-one__content-list ul {
	position: relative;
	display: block;
	max-width: 485px;
	width: 100%;
}

.website-design-build-one__content-list ul li {
	position: relative;
	display: inline-block;
	width: 235px;
	margin-bottom: 40px;
}

.website-design-build-one__content-list ul li .icon {
	position: relative;
	display: inline-block;
	margin-bottom: 11px;
	transition-delay: 0.1s;
	transition: all 500ms ease;
	z-index: 1;
}

.website-design-build-one__content-list ul li:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.website-design-build-one__content-list ul li .icon .shape {
	position: absolute;
	top: -5px;
	left: -10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fbc41d;
	z-index: -1;
}

.website-design-build-one__content-list ul li .icon.style2 .shape {
	position: absolute;
	top: 0px;
	left: -10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fbc41d;
	z-index: -1;
}

.website-design-build-one__content-list ul li .icon span::before {
	position: relative;
	display: inline-block;
	color: #0a0101;
	font-size: 40px;
	line-height: 40px;
}

.website-design-build-one__content-list ul li .text {
	position: relative;
	display: block;
}

.website-design-build-one__content-list ul li .text p {
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 32px;
}

.website-design-build-one__img {
	position: relative;
	display: block;
}

.website-design-build-one__img-img1 {
	position: relative;
	display: block;
}

.website-design-build-one__img-img2 {
	position: absolute;
	left: 105px;
	bottom: -145px;
}

/***
=============================================
    History One Services Details
=============================================
***/
.work-history-one--two--services-details {
	position: relative;
	display: block;
	padding-top: 70px;
	padding-bottom: 25px;
}

.work-history-one--two--services-details .work-history-one__single h3 .week {
	position: relative;
	display: inline-block;
	top: 4px;
	padding-left: 15px;
}

.work-history-one--two--services-details .work-history-one__single h3 .percent {
	position: relative;
	display: inline-block;
	top: 7px;
}

/***
=============================================
    Solution One
=============================================
***/
.solution-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 0px 0px 130px;
}

.solution-one__left {
	position: relative;
	display: block;
	max-width: 590px;
	width: 100%;
}

.solution-one__left .title {
	position: relative;
	display: block;
	margin-bottom: 39px;
}

.solution-one__left .title h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 1.3em;
	font-weight: 700;
}

.solution-one__left p {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
}

.solution-one__left-btn {
	position: relative;
	display: block;
	margin-top: 51px;
}

.solution-one__right {
	position: relative;
	display: block;
}

.solution-one__right-list {
	position: relative;
	display: block;
}

.solution-one__right-list-item {
	position: relative;
	display: block;
	margin-bottom: 60px;
}

.solution-one__right-list-item:last-child {
	margin-bottom: 0;
}

.solution-one__right-list-item .icon {
	position: absolute;
	top: 8px;
	left: 0;
	transition-delay: 0.1s;
	transition: all 500ms ease;
}

.solution-one__right-list-item:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.solution-one__right-list-item .icon span::before {
	position: relative;
	display: inline-block;
	color: #0a0101;
	font-size: 40px;
	line-height: 40px;
}

.solution-one__right-list-item .title {
	position: relative;
	display: block;
	padding-left: 80px;
}

.solution-one__right-list-item .title h2 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 18px;
}

.solution-one__right-list-item .title p {
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}

/***
=============================================
    Strategy One
=============================================
***/
.strategy-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 122px 0px 130px;
}

.strategy-one__content {
	position: relative;
	display: block;
}

.strategy-one__content .title {
	position: relative;
	display: block;
	margin-bottom: 36px;
}

.strategy-one__content .title h2 {
	color: var(--thm-color-1);
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	font-family: var(--thm-font);
}

.strategy-one__content ul {
	position: relative;
	display: block;
	margin-bottom: 27px;
}

.strategy-one__content li {
	position: relative;
	display: inline-block;
	margin-right: 65px;
}

.strategy-one__content li .icon {
	position: relative;
	display: block;
	transition-delay: 0.1s;
	transition: all 500ms ease;
}

.strategy-one__content li:hover .icon {
	transform: rotateY(180deg);
	transition-delay: 0.1s;
}

.strategy-one__content li .icon span:before {
	color: #0a0101;
	font-size: 55px;
	line-height: 55px;
}

.strategy-one__content li .title {
	position: relative;
	display: block;
	margin-bottom: 0px;
}

.strategy-one__content li .title h4 {
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 32px;
	font-weight: 600;
	text-transform: uppercase;
}

.strategy-one__content .text {
	position: relative;
	display: block;
}

.strategy-one__content .text p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 20px;
	line-height: 36px;
}

.strategy-one__img {
	position: relative;
	display: block;
	max-width: 415px;
	width: 100%;
}

.strategy-one__img .icon {
	position: absolute;
	bottom: -15px;
	right: 0;
}

.strategy-one__img .icon a {
	position: relative;
	display: inline-block;
	width: 125px;
	height: 125px;
	line-height: 125px;
	border-radius: 50%;
	background: var(--thm-base);
	color: #ffffff;
	font-size: 30px;
	text-align: center;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.strategy-one__img .icon a:hover {
	background: var(--thm-black);
}

/***
=============================================
    Website Design Build Two
=============================================
***/
.website-design-build-two {
	position: relative;
	display: block;
	background: #fff8f1;
	padding: 130px 0px 80px;
}

.website-design-build-two__single {
	position: relative;
	display: block;
	max-width: 500px;
	width: 100%;
}

.website-design-build-two__single .title {
	position: relative;
	display: block;
	margin-bottom: 43px;
}

.website-design-build-two__single .title h2 {
	color: var(--thm-black);
	font-size: 48px;
	line-height: 58px;
	font-weight: 700;
}

.website-design-build-two__single .text1 {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 20px;
	line-height: 36px;
	font-weight: 400;
	margin-bottom: 18px;
}

.website-design-build-two__single .text2 {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 20px;
	line-height: 36px;
	font-weight: 400;
}

.website-design-build-two__img {
	position: relative;
	display: block;
	margin-top: 34px;
}

.website-design-build-two__img img {
	width: 100%;
}

/***
=============================================
    Solution One Case Single
=============================================
***/
.solution-one--case-single {
	position: relative;
	display: block;
	padding: 122px 0px 0px;
}

.solution-one--case-single .text {
	position: relative;
	display: block;
	margin-bottom: 46px;
}

.solution-one--case-single .text p {
	color: rgba(var(--thm-color-1-rgb), 0.8);
	font-size: 20px;
	line-height: 36px;
	font-weight: 400;
}

/***
=============================================
    Case Studies Two Case Single
=============================================
***/
.case-studies-two--case-single {
	position: relative;
	display: block;
	padding: 130px 0px 100px;
}

/***
=============================================
   Company Logos Two
=============================================
***/
.company-logos-one--two {
	position: relative;
	display: block;
	padding: 123px 0px 50px;
}

.company-logos-one--two .title {
	position: relative;
	display: block;
	margin-bottom: 33px;
}

.company-logos-one--two .title h5 {
	color: var(--thm-color-1);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	font-family: var(--thm-font);
}

.company-logos-one--two .title h5 span {
	color: var(--thm-base);
}

.company-logos-one--two .title h5 .odometer-formatting-mark {
	display: none;
}

/***
=============================================
    Privacy Policy Page
=============================================
***/

.privacy-policy-page {
	position: relative;
	display: block;
	padding: 100px 0px 100px;
	z-index: 1;
}

.privacy-policy-page > .container > ul {
	list-style: unset !important;
	margin-left: 30px !important;
}

.privacy-policy-page > .container > ul > li {
	list-style: unset !important;
	margin-left: 30px !important;
}

/***
=============================================
   Terms And Conditions Page
=============================================
***/

.terms-and-conditions-page {
	position: relative;
	display: block;
	padding: 100px 0px 100px;
	z-index: 1;
}

.terms-and-conditions-page > .container > ol > li {
	margin-bottom: 30px;
	border: none;
}

.terms-and-conditions-page > .container > ol > li > ol {
	padding-left: 5px;
}

.terms-and-conditions-page > ol.bulleted-list > li {
	list-style-type: circle !important;
}

/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
	width: 270px;
	margin: 0;
}

#scrollbar1 .viewport {
	position: relative;
	width: 270px;
	height: 530px;
	overflow: hidden;
}

#scrollbar1 .overview {
	list-style: none;
	position: absolute;
	left: 15px;
	top: 0;
	padding: 0;
	margin: 0;
	max-width: 500px;
	width: 100%;
	height: 100%;
}

#scrollbar1 .scrollbar {
	position: absolute;
	top: 0;
	right: 0px;
	background: #e7e7e7;
	width: 4px;
}

#scrollbar1 .track {
	background: transparent;
	height: 100%;
	width: 4px;
	position: relative;
	padding: 0;
}

#scrollbar1 .thumb {
	background: #fa401b;
	background-image: none;
	height: 20px;
	width: 4px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0px;
	opacity: 1;
	z-index: 3;
}

#scrollbar1 .thumb .end {
	background: #353742 no-repeat 50% 0;
	overflow: hidden;
	height: 0px;
	width: 4px;
}

#scrollbar1 .disable {
	display: none;
}

.stricky-one-logo {
	position: relative;
	display: none;
}

.stricky-header.main-menu .stricky-one-logo {
	display: block;
}

.stricky-header .main-menu__list > li > a {
	padding-top: 33px;
	padding-bottom: 33px;
}

/*
Form success
*/

.form-sended-message {
	padding-top: 20px;
	font-size: 20px;
	align-items: center;
	line-height: 1.3;
	display: none;
}
.form-sended-message img {
	width: 40px;
	margin-right: 15px;
	flex-shrink: 0;
}

/*
Form success END
*/
