:root {
	--primary-color: #0B1030;
	--secondary-color: rgb(255, 250, 235);
	--accent-color: #ff8c33;
	--accent-color-two: #ff4c33;
	--orange-color: rgb(220, 100, 70);
	--text-color: #556171;
	--white-color: #FFFFFF;
	--divider-color: #55617124;
	--dark-divider-color: #FFFFFF24;
	--error-color: rgb(230, 87, 87);
	--default-font: sans-serif;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

.web-show {
	display: block;
}

.text-safe p {
	margin: 1em 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

#cookie-popup {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--primary-color);
	z-index: 999;
	padding: 30px;
	display: none;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.2s ease-out;
}

#cookie-popup.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup.hide {
	display: block;
	opacity: 0;
	transform: translateY(100%);
}

#cookie-popup .top-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup img {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

#cookie-popup h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

#cookie-popup .line {
	width: 100%;
	height: 1px;
	background-color: var(--white-color);
	margin: 20px 0;
	opacity: 0.5;
}

#cookie-popup p {
	margin-bottom: 6px;
	color: var(--white-color);
}

#cookie-popup p a {
	color: var(--white-color);
	text-decoration: underline;
}

#cookie-popup p a:hover {
	color: var(--accent-color);
}

#cookie-popup .but-box {
	width: 100%;
}

#cookie-popup .but-box .but {
	float: right;
	background-color: var(--white-color);
	padding: 8px 20px;
	margin-top: 16px;
	border-radius: 4px;
	color: var(--primary-color);
	cursor: pointer;
}

#cookie-popup .but-box .but:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
}

#cookie-popup .but-box .refuse-btn {
	margin-right: 16px;
}

#back-top {
	position: fixed;
	bottom: 60px;
	right: 30px;
	z-index: 999;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1.5px solid var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: var(--white-color);
	opacity: 0;
	visibility: hidden;
	transform: translateY(60px);
	transition: all 0.3s ease;
}

#back-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#back-top:hover {
	background-color: var(--accent-color);
	transform: translateY(-4px) scale(1.05);
}

#back-top:active {
	transform: translateY(-2px) scale(1);
}

#back-top:hover #back-top-svg path {
	fill: var(--white-color);
	transition: fill 0.3s ease;
}

.terms-privacy {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
	line-height: 1.8;
	color: var(--primary-color);
}

.terms-privacy h1 {
	text-align: center;
	font-size: 26px;
	margin-bottom: 30px;
	font-weight: 600;
}

.terms-privacy h2 {
	font-size: 20px;
	margin: 30px 0 15px;
	font-weight: 600;
}

.terms-privacy p {
	margin: 12px 0;
	font-size: 15px;
}

.terms-privacy .indent {
	padding-left: 20px;
}

.contacts-section {
	margin-top: 60px;
}

.contacts-section .section-title {
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 30px;
	padding-left: 12px;
	border-left: 4px solid var(--accent-color);
}

.contacts-section .section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 30px;
}

.contacts-section .section-card {
	height: 240px;
	perspective: 1000px;
}

.contacts-section .card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.contacts-section .contacts-code {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 16px;
	bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 20px;
	z-index: 2;
}

.contacts-section .contacts-code:hover {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	background-color: rgba(74, 21, 219, 0.08);
}

.contacts-section .section-card.flipped .card-inner {
	transform: rotateY(180deg);
}

.contacts-section .card-front,
.contacts-section .card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 16px;
	padding: 28px;
	background: var(--white-color);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
}

.contacts-section .card-back {
	transform: rotateY(180deg);
	justify-content: center;
	align-items: center;
}

.contacts-section .section-name {
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, var(--accent-color-two), var(--accent-color));
	color: var(--white-color);
	font-size: 18px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 16px 0 24px 0;
	box-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
	z-index: 2;
}

.contacts-section .section-info {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 14px;
	line-height: 1.6;
	display: flex;
}

.contacts-section .bottom {
	padding-top: 40px;
}

.contacts-section .section-info p {
	width: calc(100% - 44px);
	white-space: normal;
	overflow-wrap: break-word;
}

.contacts-section .section-info span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	border-radius: 50%;
	background-color: rgba(74, 21, 219, 0.08);
	margin-right: 10px;
}

.contacts-section .section-qrcode {
	width: 140px;
	height: 140px;
	margin-bottom: 30px;
	object-fit: cover;
}

.contacts-section .code-tip {
	font-size: 14px;
	color: var(--text-color);
	margin-top: 10px;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.pro-subtitle {
	white-space: pre-wrap;
}

.product-swiper-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 40px 0;
}

.pro-introduction p>span:nth-child(1) {
	color: var(--orange-color) !important;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-two) 100%);
	color: var(--white-color);
	border-radius: 50px;
	padding: 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background-color: transparent;
}

.btn-default::after,
.btn-default::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transform: skew(15deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default::before {
	left: -10px;
}

.btn-default::after {
	right: -10px;
}

.btn-default:hover::after,
.btn-default:hover::before {
	width: 60%;
}

.bg-section {
	width: 100%;
	max-width: 1820px;
	margin: 0 auto;
	border-radius: 46px;
}

.bg-sectiong {
	/* background-color: var(--secondary-color); */
	width: 100%;
	max-width: 1820px;
	margin: 0 auto;
	/* border-radius: 46px; */
}

.hero-bg-sectiong {
	width: 100%;
	max-width: 1820px;
	margin: 0 auto;
	border-radius: 46px;
}

.section-row {
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
}

.section-row .section-title {
	text-align: center;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.section-title {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-left: 34px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-sub-heading.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 24px;
}

.section-title h1 {
	font-size: 68px;
	font-weight: 600;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section p,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.section-title.dark-section h3::before {
	filter: brightness(0) invert(1);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-size: 14px;
	font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.talent-list>ul {
	list-style: none;
}

.talent-list ul .talent-li {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
}

.talent-list .entry-header {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	position: relative;
}

.talent-list .entry-header h4 {
	margin-left: 16px;
}

.talent-list .entry-header h4::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--accent-color);
}

.entry-header .publish-time {
	margin-left: 12px;
}

.job-description-wrap {
	position: relative;
	line-height: 1.6;
	margin: 20px 0 8px 0;
}

.job-description-text {
	overflow: hidden;
	max-height: 5.2em;
	transition: max-height 0.5s ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	position: relative;
}

.job-description-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5.2em;
	background: linear-gradient(transparent, #ffffff);
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.job-description-wrap.expanded .job-description-text {
	-webkit-line-clamp: unset;
	max-height: 2000px;
}

.job-description-wrap.expanded .job-description-text::after {
	opacity: 0;
	visibility: hidden;
}

.expand-btn {
	width: 100%;
	color: var(--accent-color);
	cursor: pointer;
	margin-top: 8px;
	display: inline-block;
	font-size: 14px;
	text-align: right;
}

.expand-btn:hover {
	text-decoration: underline;
}


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

header.main-header .header-sticky {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-radius: 0;
	transform: translateY(0%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.fixed {
	position: fixed;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	background: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0;
}

header.main-header .header-sticky.active {
	border-radius: 0;
	background: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	transform: translateY(0%);
	transition: transform 0.3s ease-in-out;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.navbar {
	padding: 25px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item .nav-link {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 20px;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu .navbar-nav li>ul li a::before {
	display: none;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	line-height: normal;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 6px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.main-menu ul li.submenu:hover>a:after {
	transform: rotate(180deg);
}

.main-menu ul li.pro-submenu:hover>a:after {
	transform: rotate(90deg);
}

.main-menu>.nav-menu-wrapper>ul>li::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transform: translateX(-50%);
	transition: width 0.3s ease-in-out;
}

.main-menu>.nav-menu-wrapper>ul>li.active::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	width: 50%;
	height: 2px;
	background-color: var(--accent-color-two);
	color: var(--accent-color);
	transform: translateX(-50%);
}

.main-menu>.nav-menu-wrapper>ul>li:hover::after {
	width: 50%;
}

.main-menu ul li.nav-item .nav-link:hover,
.main-menu ul li.nav-item .nav-link:focus,
.main-menu>.nav-menu-wrapper>ul>li.active>.nav-link {
	color: var(--accent-color);
}

.product-tips {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 16px 32px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 12px;
	z-index: 9999;
	opacity: 0;
	display: none;
	text-align: center;
}

@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translate(-50%, -60px);
	}

	100% {
		opacity: 0.8;
		transform: translate(-50%, 0);
	}
}

.product-tips.show {
	display: block;
	animation: slideDown 0.4s ease forwards;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	/* border-radius: 20px; */
	position: absolute;
	left: 0;
	top: 100%;
	/* background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-two) 100%); */
	background-color: var(--orange-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}


.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item .nav-link {
	color: var(--white-color);
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li.nav-item .nav-link:hover,
.main-menu ul ul li.nav-item .nav-link:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul ul li.nav-item .nav-link:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	display: block;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.header-right {
	position: relative;
	display: inline-block;
	margin-right: 40px;
}

.header-right::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -20px;
	z-index: 1;
	cursor: pointer;
}

.header-right ul {
	visibility: hidden;
	opacity: 0;
	transform: translateX(-50%) translateY(-8px);
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	margin: 6px 0 0;
	padding: 10px;
	list-style: none;
	z-index: 2;
	background-color: var(--orange-color);
	transition: all 0.25s ease;
	pointer-events: none;
}

.header-right:hover ul {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.header-right ul li {
	display: block;
	text-align: center;
	padding: 4px 12px;
}

.header-right ul li:hover a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.header-right ul li a {
	white-space: nowrap;
	color: var(--white-color);
}

.header-right div {
	cursor: pointer;
}

.cart-number {
	position: absolute;
	top: -8px;
	right: -18px;
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--error-color);
	color: var(--white-color);
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	z-index: 2;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: linear-gradient(90deg, var(--accent-color) 0, var(--accent-color-two) 100%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all .1s ease-in-out
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px)
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px)
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: linear-gradient(90deg, var(--accent-color) 0, var(--accent-color-two) 100%)
}

.slicknav_menu ul {
	margin: 5px 0
}

.slicknav_menu ul ul {
	margin: 0
}

.slicknav_nav .slicknav_row,
.slicknav_nav li>a {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	display: flex;
	transition: all .3s ease-in-out
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color)
}

.slicknav_nav,
.slicknav_nav ul {
	overflow: hidden;
	padding: 0;
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px
}

.slicknav_arrow {
	font-size: 0 !important
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all .3s ease-out
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color)
}

/************************************/
/***        04. Hero css	      ***/
/************************************/


.deputy-product-swiper .swiper-slide img,
.product-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-swiper-top {
	margin-top: 40px;
}

.product-swiper .swiper-slide,
.deputy-product-swiper .swiper-slide {
	background-size: cover;
	background-position: center;
}

.deputy-product-swiper {
	height: 80%;
	width: 100%;
}

.product-swiper {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}

.product-swiper .thumbnail img {
	width: 100%;
	height: 40px;
}

.product-swiper .swiper-slide {
	height: 100%;
	opacity: 0.4;
}

.product-swiper .swiper-slide-thumb-active {
	opacity: 1;
}

.workshop-swiper {
	width: 1000px;
	margin: 0 auto;
}

.workshop-prev {
	left: -150px;
	cursor: pointer;
	color: var(--orange-color);
}

.workshop-next {
	right: -150px;
	cursor: pointer;
	color: var(--orange-color);
}

.workshop-swiper .swiper-slide,
.workshop-swiper .swiper-slide .image-anime,
.workshop-swiper .swiper-slide .image-anime img {
	width: 100%;
	border-radius: 36px;
}

.hero {
	position: relative;
	padding: 80px 0 0;
	overflow: hidden;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	height: 800px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.hero-content .section-title p {
	font-size: 20px;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.hero.hero-bg-image .hero-content .hero-btn {
	justify-content: center;
}

.google-rating {
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

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

.google-rating ul li {
	display: inline-block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
}

.google-rating ul li:last-child {
	margin-right: 0;
}

.google-rating ul li span {
	color: #FFA800;
}

.google-rating ul li i {
	font-size: 14px;
	color: #FFA800;
}

.hero.hero-bg-image .hero-content .google-rating {
	border-color: var(--dark-divider-color);
}

.hero.hero-bg-image .hero-content .google-rating ul li {
	color: var(--white-color);
}

.hero-img img {
	width: 100%;
	aspect-ratio: 1 / 1.273;
	object-fit: contain;
}

.close-satisfied {
	position: fixed;
	bottom: 210px;
	right: 20px;
	width: 20px;
	height: 22px;
	z-index: 3;
	display: none;
}

.satisfied-clients-box {
	position: fixed;
	bottom: 140px;
	right: 30px;
	display: none;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 15px 20px;
	overflow: hidden;
	z-index: 2;
	border: 1px solid var(--accent-color);
}

.satisfied-clients-box .icon-box {
	position: relative;
	width: 42px;
	height: 42px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	z-index: 1;
}

.satisfied-clients-box .icon-box img {
	width: 100%;
	max-width: 25px;
}

.satisfied-clients-box p {
	color: var(--primary-color);
}

.satisfied-clients-content {
	position: relative;
	width: calc(100% - 52px);
	z-index: 1;
}


.satisfied-clients-content h3 {
	font-size: 20px;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.satisfied-clients-content p {
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

/************************************/
/***        05. About Us css      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-content {
	margin-right: 30px;
}

.about-us-body {
	margin-bottom: 40px;
}

.about-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.about-info-item:last-child {
	margin-bottom: 0;
}

.about-info-item .icon-box {
	position: relative;
	width: 70px;
	height: 70px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.about-info-item:hover .icon-box {
	background-color: transparent;
}

.about-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.about-info-item:hover .icon-box::before {
	transform: scale(1);
}

.about-info-item .icon-box svg,
.about-info-item .icon-box img {
	position: relative;
	max-width: 34px;
	height: auto;
	display: block;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.about-info-item:hover .icon-box svg,
.about-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-info-item-content {
	width: calc(100% - 100px);
}

.about-info-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-info-item-content p {
	margin: 0;
}

.about-us-images {
	position: relative;
}

.about-img-1 img {
	width: 100%;
	border-radius: 46px;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services {
	padding: 40px 0;
}

.service-item {
	background-color: var(--secondary-color);
	border-radius: 46px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover {
	transform: translateY(-5px);
}

.service-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.service-item-box {
	display: flex;
	align-items: center;
}

.service-item-box .icon-box {
	position: relative;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-two) 100%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.5s ease-in-out;
}

.service-item-box .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-box .icon-box::before {
	transform: scale(1);
}

.service-item-box .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.service-item-content {
	width: calc(100% - 75px);
}

.service-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.service-readmore {
	margin-left: 10px;
}

.service-readmore img {
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

.service-readmore a:hover img {
	filter: brightness(1) invert(0.5);
}

.service-body {
	margin-bottom: 30px;
}

.service-body p {
	margin: 0;
}

.service-body .service-body-en {
	height: 188px;
}

.service-body .service-body-zh {
	height: 102px;
}

.service-image a {
	display: block;
	border-radius: 26px;
	overflow: hidden;
}

.service-image img {
	aspect-ratio: 1 / 0.62;
	object-fit: cover;
	border-radius: 26px;
	transition: all 0.4s ease-out;
}

.service-image:hover img {
	transform: scale(1.1)
}

/************************************/
/***      07. Intro Video css     ***/
/************************************/

.intro-video {
	padding: 100px 0;
}

.intro-video .section-row .section-title {
	text-align: left;
	margin: 0;
}

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

.why-choose-list ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}

.why-choose-list ul li:last-child {
	margin-bottom: 0;
}

.why-choose-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 18px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 3px;
	left: 0;
}

.intro-video-box {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	padding: 190px 50px 60px;
}

.intro-video-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-video-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(11, 16, 48, 0) 0%, #0B1030 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.intro-video-image figure,
.intro-video-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button {
	position: relative;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	border: 1px solid var(--white-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
}

.video-play-button a img {
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover img {
	filter: brightness(1) invert(1);
}

.why-choose-box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 160px;
	padding-top: 40px;
	z-index: 1;
}

.why-choose-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.why-choose-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-color-two) 100%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-position: right center;
}

.why-choose-item .icon-box img {
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--white-color);
	margin: 0;
}

.why-choose-item-content .why-choose-item-content-en {
	height: 180px;
}

.why-choose-item-content .why-choose-item-content-zh {
	height: 78px;
}

/************************************/
/***        08. We Work css       ***/
/************************************/
.container-box {
	max-width: 1820px;
	margin: 0 auto;
	padding: 100px 0;
}

.container-box img {
	border-radius: 36px;
}

.timeline {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 100px 15px;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: var(--accent-color);
	top: 160px;
	bottom: 270px;
	left: 50%;
	margin-left: -3px;
	border-radius: 3px;
}

.timeline-item {
	padding: 10px 60px;
	position: relative;
	width: 50%;
	margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
	left: 0;
}

.timeline-item:nth-child(even) {
	left: 50%;
}

.timeline-content {
	padding: 20px 20px 2px 20px;
	background-color: var(--white-color);
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	z-index: 1;
}

.timeline-content::before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.timeline-content p {
	transition: all 0.4s ease-in-out;
}

.timeline-content:hover::before {
	top: 0;
}

.timeline-content:hover .project-title {
	border-left: 4px solid var(--white-color);
	color: var(--white-color);
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	color: var(--white-color);
}

.year {
	position: absolute;
	top: 20px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-color-two) 100%, var(--accent-color) 100%);
	color: var(--white-color);
	font-weight: bold;
	font-size: 1.4rem;
	border-radius: 50%;
	z-index: 1;
	box-shadow: 0 0 0 8px var(--white-color);
}

.timeline-item:nth-child(odd) .year {
	right: -40px;
}

.timeline-item:nth-child(even) .year {
	left: -40px;
}

.project-title {
	font-size: 1.4rem;
	margin-bottom: 12px;
	border-left: 4px solid var(--accent-color-two);
	padding-left: 12px;
	transition: all 0.4s ease-in-out;
}

.we-work {
	padding: 40px 0;
}

.software-down {
	width: 100%;
	padding-bottom: 100px;
	position: relative;
}

.down-bg .groove {
	width: 60px;
	height: 4px;
	background-color: #75A8F6;
	border-radius: 1px;
}

.down-bg>div {
	margin-top: 80px;
	padding-left: 30px;
}

.down-bg p {
	margin-top: 20px;
	width: 50%;
}

.software-down .down-bg {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url('../images/down-bg.png');
	background-size: cover;
	background-position: center;
	aspect-ratio: 1920 / 440;
	overflow: hidden;
}

.software-down .down-placeholder {
	width: 100%;
	height: 280px;
	background-color: transparent;
}

.software-down .app-down-box {
	width: 100%;
	z-index: 2;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
}

.windows-box {
	width: 100%;
	background-color: #F4F8FE;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-radius: 10px;
	padding: 30px 60px 30px 60px;
}

.windows-box .windows-left h2 {
	color: #0342C2;
}

.windows-box .windows-left p {
	margin-top: 10px;
	color: var(--primary-color);
}

.windows-box .windows-left ul li {
	line-height: 2.2;
	color: var(--primary-color);
	list-style: none;
	position: relative;
}

.windows-box .windows-left ul li:nth-child(1)::after {
	content: '\f17a';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	line-height: normal;
	color: #0342C2;
	display: inline-block;
	top: 8px;
	left: -30px;
}

.windows-box .windows-left ul li:nth-child(2)::after {
	content: '\f0a0';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 18px;
	line-height: normal;
	color: #0342C2;
	display: inline-block;
	top: 8px;
	left: -30px;
}

.read-label {
	width: 100%;
	text-align: center;
	margin-top: 16px;
}

.read-label label {
	font-size: 14px;
	color: var(--primary-color);
	display: inline-block;
	position: relative;
}

.read-label label::after {
	content: '\f06a';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 18px;
	line-height: normal;
	color: #0949C5;
	display: inline-block;
	top: 3px;
	left: -24px;
}

.read-label a {
	margin-left: 4px;
	color: #0949C5;
}

.windows-box .windows-right {
	background-color: #ffffff;
	padding: 30px 30px 40px 30px;
	border-radius: 10px;
	position: relative;
}

.windows-box .windows-right .difference {
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 100%;
	text-align: center;
	font-size: 14px;
}

.windows-box .windows-right .difference a {
	margin-left: 4px;
	color: #0949C5;
}

.windows-box .windows-right .version-time {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 40px;
	margin: 8px 0 4px 0;
}

.windows-box .windows-right .info {
	display: flex;
	align-items: center;
	gap: 30px;
}

.windows-box .windows-right .info .sha256 {
	width: 300px;
	overflow-wrap: break-word;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5;
}

.windows-box .windows-right .info img {
	width: 70px;
	height: 70px;
}

.windows-box .windows-right .windows-but {
	padding: 15px 0;
	width: 100%;
	border-radius: 8px;
	margin-top: 12px;
}

.mini-program-box {
	width: 100%;
	background-color: #F3F9F9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 10px;
	padding: 30px 60px 0 60px;
}

.mini-program-box .mini-program-left h2 {
	color: #0A9F6A;
}

.mini-program-box .mini-program-left p {
	margin-top: 10px;
	color: var(--primary-color);
}

.mini-program-box .mini-program-left ul li {
	line-height: 2.2;
	color: var(--primary-color);
	list-style: none;
	position: relative;
}

.mini-program-box .mini-program-left ul li::after {
	content: '\f00c';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	line-height: normal;
	color: #0A9F6A;
	display: inline-block;
	top: 8px;
	left: -30px;
}

.mini-program-box .mini-program-bg {
	user-select: none;
	pointer-events: none;
}

.mini-program-box .mini-program-code {
	text-align: center;
}

.mini-program-box .mini-program-code img {
	width: 180px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}

.mini-program-box .mini-program-code p {
	margin-top: 10px;
	color: var(--primary-color);
}

.app-down-box .app-left {
	width: 50%;
	display: flex;
	justify-content: space-around;
	gap: 20px;
	background-color: #F1F6FE;
	padding: 30px;
	border-radius: 10px;
}

.app-down-box .app-left img {
	width: 240px;
	aspect-ratio: 658 / 1341;
	user-select: none;
	pointer-events: none;
}

.app-down-box .app-left h2 {
	margin-top: 60px;
	color: #0949C5;
}

.app-down-box .app-left p {
	margin-top: 10px;
	color: var(--primary-color);
}

.app-down-box .app-left ul li {
	line-height: 3.2;
	color: var(--primary-color);
	list-style: none;
	position: relative;
}

.app-down-box .app-left ul li::after {
	content: '\f5fd';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	line-height: normal;
	color: #0949C5;
	display: inline-block;
	top: 16px;
	left: -30px;
}

.app-down-box .app-right {
	width: 50%;
	height: 100%;
	text-align: center;
}

.app-down-box .app-right .app-right-top {
	width: 100%;
	height: 84%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}

.app-down-box .app-right .app-right-top p {
	margin-top: 20px;
}

.app-down-box .app-right .prompts {
	width: 100%;
	height: 16%;
	padding-left: 40px;
}

.app-down-box .app-right .prompts p {
	display: inline-block;
	position: relative;
}

.app-down-box .app-right .prompts p::after {
	content: '\f06a';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 18px;
	line-height: normal;
	color: #0949C5;
	display: inline-block;
	top: 3px;
	left: -24px;
}

.app-down-box .app-right .line {
	width: 1px;
	height: 50%;
	background-color: #eeeeee;
}

.app-down-box .app-right img {
	width: 200px;
	aspect-ratio: 1 / 1;
	padding: 6px;
	border-radius: 10px;
	border: 1px solid #eeeeee;
}

.app-down-box .app-right h5 {
	margin-bottom: 30px;
}

.app-down-box .app-right p {
	margin-top: 10px;
	color: var(--primary-color);
	font-size: 14px;
}

/************************************/
/***    09. Our Excellence css    ***/
/************************************/

.excellence-counter-boxes {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: center;
	gap: 40px 0;
	margin-top: 40px;
}

.excellence-counter-box:first-child {
	margin-left: 0;
}

.excellence-counter-item {
	border: 2px solid rgb(226 226 224);
	border-radius: 50%;
	width: 302px;
	height: 302px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	text-align: center;
	padding: 30px;
	margin-left: -30px;
	transition: all 0.4s ease-in-out;
}

.excellence-counter-item:first-child {
	margin-left: 0;
}

.excellence-counter-item:nth-child(even) {
	background-color: rgb(65 75 96);
	transform: translateY(-40px);
}

.excellence-counter-boxes:hover .excellence-counter-item:nth-child(odd) {
	background-color: rgb(65 75 96);
	transform: translateY(-40px);
}

.excellence-counter-boxes:hover .excellence-counter-item:nth-child(even) {
	background-color: transparent;
	transform: translateY(0px);
}

.excellence-counter-item h2 {
	font-size: 36px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.excellence-counter-item p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.excellence-counter-boxes:hover .excellence-counter-item:nth-child(odd) p,
.excellence-counter-boxes:hover .excellence-counter-item:nth-child(odd) h2 {
	color: var(--white-color);
}

.excellence-counter-item:nth-child(even) p,
.excellence-counter-item:nth-child(even) h2 {
	color: var(--white-color);
}

.excellence-counter-boxes:hover .excellence-counter-item:nth-child(even) p,
.excellence-counter-boxes:hover .excellence-counter-item:nth-child(even) h2 {
	color: var(--primary-color);
}

/************************************/
/***    	10. Our FAQs css      ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	position: sticky;
	top: 30px;
	margin-right: 50px;
}

.faq-cta-box {
	position: relative;
	display: inline-flex;
	background: var(--white-color);
	border-radius: 46px;
	padding: 40px;
	overflow: hidden;
}

.faq-cta-box::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faq-cta-box:hover:before {
	top: 0;
}

.faq-cta-box .icon-box {
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.faq-cta-box .icon-box img,
.faq-cta-box .icon-box svg {
	max-width: 60px;
	height: auto;
	display: block;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box:hover .icon-box img,
.faq-cta-box:hover .icon-box svg {
	filter: brightness(0) invert(1);
}

.faq-cta-box .faq-cta-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.faq-cta-content p {
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.faq-cta-content p:last-child {
	margin-bottom: 0;
}

.faq-cta-content p a {
	color: inherit;
}

.faq-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box:hover .faq-cta-content h3,
.faq-cta-box:hover .faq-cta-content p {
	color: var(--white-color);
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--accent-color);
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--text-color);
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***  	  11. Our Team css  	  ***/
/************************************/

.our-team {
	padding: 100px 0 20px;
}

.team-member-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	box-sizing: border-box;
}

.team-image {
	overflow: hidden;
}

.team-image figure,
.team-image a {
	display: block;
	border-radius: 26px;
}

.team-image .image-anime {
	width: 100%;
	height: 376px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--divider-color);
	transition: border-color 0.3s ease;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.27;
	object-fit: contain;
	border-radius: 26px;
	transition: all 0.4s ease-in-out;
	padding: 30px;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-member-item:hover .team-image .image-anime {
	border: 1px solid var(--accent-color);
}

.team-member-item .icon-box svg {
	cursor: pointer;
}

.team-member-item:hover .icon-box svg {
	filter: brightness(0) invert(1);
}

.team-body {
	position: relative;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 26px;
	padding: 15px;
	margin: 0 10px;
	margin-top: -30px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
}

.team-member-item:hover .team-body {
	border-color: var(--accent-color);
}

.team-body:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.team-member-item:hover .team-body:after {
	top: 0;
}

.team-content {
	position: relative;
	z-index: 1;
}

.team-content h3 {
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.team-content h3 span {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	margin: 8px 0;
	text-align: left;
	transition: all 0.3s ease-in-out;
	color: var(--text-color);
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	cursor: pointer;
}

.team-member-item:hover .team-content h3,
.team-member-item:hover .team-content p {
	color: var(--white-color);
}

.team-member-item:hover .team-body img {
	filter: brightness(0) invert(1);
}

.team-body .icon-box {
	width: 100%;
	height: 100%;
	background-color: var(--dark-divider-color) !important;
	margin: 0 auto;
}

.team-body .icon-box img {
	cursor: pointer;
}

/************************************/
/***    	13. CTA Box css		  ***/
/************************************/


.our-testimonial {
	padding: 100px 0;
}

.testimonial-item {
	background: var(--white-color);
	border-radius: 46px;
	padding: 40px;
	overflow: hidden;
}


/************************************/
/***      15. Latest News css     ***/
/************************************/
.product-home {
	width: 100%;
}

.pro-description p {
	margin: 0;
}

.pro-description img {
	width: 100%;
	height: auto;
}

.product-home .product-home-swiper {
	width: 100%;
	height: auto;
	max-height: 790px;
}

.product-home .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 40px !important;
}

.swiper-pagination-bullet {
	width: 40px !important;
	height: 40px !important;
	background: transparent !important;
	opacity: 1;
	border-radius: 50%;
	position: relative;
	transition: all .3s ease;
	cursor: pointer;
}

.swiper-pagination-bullet::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background: #fff;
	opacity: .6;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s ease;
}

.swiper-pagination-bullet-active::before {
	opacity: 1;
}

.progress-ring {
	display: none;
}

.swiper-pagination-bullet-active .progress-ring {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
	pointer-events: none;
}

.product-home-swiper .product-home-slide {
	width: 100%;
	height: 790px;
	position: relative;
	overflow: hidden;
}

.product-home-swiper .product-home-slide-img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.product-home-swiper .product-home-slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.product-home-swiper .product-home-slide-content {
	width: 90%;
	max-width: 1200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-home-swiper .product-home-slide-content .img-box {
	transform: translateX(60px);
	transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	width: 40%;
	text-align: center;
}

.product-home-swiper .product-home-slide-content .text-box {
	color: var(--primary-color);
	transform: translateX(-60px);
	transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	width: 40%;
}

.product-home-swiper .product-home-slide-content .text-box h2 {
	color: var(--primary-color);
	font-size: 36px;
}

.product-home-swiper .product-home-slide-content .text-box .line {
	height: 3px;
	width: 10%;
	background: var(--orange-color);
	margin: 16px 0;
}

.product-home-swiper .product-home-slide-content .text-box p {
	font-size: 18px;
	line-height: 1.8;
}

.swiper-slide-active .product-home-slide-content {
	opacity: 1;
	visibility: visible;
}

.swiper-slide-active .product-home-slide-content .img-box {
	transform: translateX(-60px);
}

.swiper-slide-active .product-home-slide-content .text-box {
	transform: translateX(60px);
}

.progress-ring-bg {
	fill: none;
	stroke: rgba(255, 255, 255, 0.2);
	stroke-width: 2;
}

.progress-ring-circle {
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 94.25;
	stroke-dashoffset: 94.25;
}

.latest-news {
	padding: 100px 0;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	display: block;
	border-radius: 46px;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 46px;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-meta {
	margin-bottom: 15px;
}

.news-title {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
}

.news-title .author {
	margin: 10px 0;
}

.news-title h2 {
	margin-bottom: 10px;
}

.news-title .time-or-view-count {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.post-item-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.post-item-meta ul li {
	position: relative;
	color: var(--text-color);
	text-transform: capitalize;
	display: inline-block;
	margin-right: 24px;
}

.post-item-meta ul li .author {
	max-width: 120px;
	height: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.post-item-meta ul li:last-child {
	margin-right: 0;
}

.post-item-meta ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(18px, -50%);
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: var(--divider-color);
	margin-right: 3px;
}

.post-item-meta ul li:last-child::before {
	display: none;
}

.post-item-meta ul li a {
	color: inherit;
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h2 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-item-content h2 a {
	color: inherit;
}

/************************************/
/***    	16. Footer css  	  ***/
/************************************/

.main-footer.bg-section {
	background-color: var(--orange-color);
	padding: 60px 0 0;
	border-radius: 0;
	max-width: 100%;
}

.about-footer {
	width: 100%;
	max-width: 300px;
}

.footer-logo {
	margin-bottom: 60px;
	text-align: center;
}

.footer-logo img {
	width: 100%;
	max-width: 180px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
	font-size: 18px;
	text-align: center;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-links .qrcode {
	display: flex;
}

.footer-links .qrcode img {
	width: 110px;
	height: 110px;
	margin-right: 20px;
}

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

.footer-links ul li {
	position: relative;
	color: var(--white-color);
	margin-bottom: 10px;
	padding-left: 16px;
}

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

.footer-links ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	bottom: 0;
	transform: translateY(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::before {
	background-color: var(--white-color);
}

.footer-links ul li a {
	text-transform: capitalize;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
	color: var(--accent-color);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	overflow: hidden;
}

.footer-contact-item .icon-box i {
	color: var(--white-color);
	z-index: 2;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	opacity: 24%;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box::before {
	opacity: 100%;
}

.footer-contact-item .icon-box img {
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}

.footer-social-link hr {
	height: 1px;
	width: 45%;
	color: var(--white-color);
}

.footer-social-link ul {
	display: flex;
	justify-content: center;
	text-align: center;
	list-style: none;
	margin: 0 20px;
	padding: 0;
}

.footer-social-link ul li {
	display: inline-block;
	margin-right: 20px;
}

.footer-social-link .tooltip-wrapper {
	position: relative;
}

.footer-social-link .tooltip-box {
	width: 320px;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease;

	position: absolute;
	bottom: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);

	background: var(--white-color);
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	z-index: 999;
	margin: 0;
}

.footer-social-link .alone {
	width: 170px;
}

.footer-social-link .tooltip-box::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: var(--white-color);
}

.footer-social-link .tooltip-wrapper::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 28px;
	z-index: 998;
	opacity: 0;
}

.footer-social-link .tooltip-box img {
	width: 150px;
	height: 160px;
	display: block;
	object-fit: cover;
	float: left;
}

.tooltip-wrapper:hover .tooltip-box {
	opacity: 1;
	visibility: visible;
}

.footer-social-link ul li:last-child {
	margin: 0;
}

.footer-social-link ul li a {
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.footer-social-link ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	opacity: 24%;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
}

.footer-social-link ul li:hover a::before {
	opacity: 100%;
}

.footer-social-link ul li a i {
	position: relative;
	font-size: 18px;
	color: var(--white-color);
	z-index: 1;
}

.footer-social-link ul li a img {
	position: relative;
	font-size: 18px;
	width: 30px;
	height: 30px;
	color: var(--white-color);
	z-index: 1;
}

.footer-copyright {
	padding: 30px 0;
}

.web-tips {
	color: var(--white-color);
	margin-top: 6px;
}

.footer-copyright-text {
	text-align: left;
	display: flex;
	align-items: center;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-copyright-text a {
	margin-left: 4px;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-copyright-text a:hover {
	color: var(--accent-color);
}

.footer-terms-condition ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-terms-condition ul li {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.footer-terms-condition ul li:last-child {
	margin-right: 0;
}

.footer-terms-condition ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(18px, -50%);
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: var(--accent-color);
}

.footer-terms-condition ul li:last-child:before {
	display: none;
}

.footer-terms-condition ul li a {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-terms-condition ul li:hover a {
	color: var(--accent-color);
}

/************************************/
/***    17. About Us Page css  	  ***/
/************************************/

.page-header {
	position: relative;
	overflow: hidden;
}

.com-pro-banner {
	background-image: url('../images/static/com-pro-banner.png');
	height: 300px;
	background-size: cover;
}

.pro-banner {
	background-image: url('../images/static/pro-banner.png');
	height: 300px;
	background-size: cover;
}

.ser-banner {
	background-image: url('../images/static/ser-banner.png');
	height: 300px;
	background-size: cover;
}

.new-banner {
	background-image: url('../images/static/new-banner.png');
	height: 300px;
	background-size: cover;
}

.breadcrumb {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.2);
	margin: 0;
	color: var(--secondary-color);
	font-size: 16px;
	line-height: 60px;
}

.breadcrumb ul li {
	display: inline-flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.breadcrumb ul li a {
	color: var(--white-color);
}

.breadcrumb ul li a:hover,
.breadcrumb ul .home:hover::after {
	color: var(--accent-color);
}

.breadcrumb .icon-li {
	cursor: default;
	margin: 0 2px;
}

.breadcrumb ul .home a::after {
	content: '\f015';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 14px;
	top: 50%;
	left: -18px;
	transform: translateY(-50%);
}

/************************************/
/***   19. Services Single css    ***/
/************************************/

.service-catagery-list {
	border: 1px solid var(--divider-color);
	border-radius: 46px;
	padding: 40px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h4 {
	margin-bottom: 20px;
}

.service-catagery-list .arrow::after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	line-height: normal;
	font-size: 16px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.service-catagery-list .arrow.open::after {
	transform: rotate(180deg);
}


.service-catagery-list .item-parent {
	padding: 12px 0;
	font-size: 18px;
	cursor: pointer;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
}

.service-catagery-list .item-child {
	cursor: pointer;
	padding: 10px 0 10px 20px;
	font-size: 16px;
	display: none;
	border-bottom: 1px solid var(--secondary-color);
}

.service-catagery-list .item-parent a,
.service-catagery-list .item-parent span,
.service-catagery-list .item-child a {
	color: inherit !important;
	text-decoration: none !important;
}

.service-catagery-list .item-parent.active>span,
.service-catagery-list .item-parent.active>a,
.service-catagery-list .item-child.active>a {
	color: var(--accent-color-two) !important;
	font-weight: 600;
}

.sidebar-cta-box {
	position: relative;
	background: var(--orange-color);
	border-radius: 46px;
	padding: 40px;
	text-align: center;
	overflow: hidden;
}

.sidebar-cta-box::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 46px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.sidebar-cta-box:hover:after {
	top: 0;
	border-radius: 0;
}

.sidebar-cta-box .icon-box {
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.sidebar-cta-box .icon-box img {
	max-width: 60px;
}

.cta-contact-content {
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
	width: 230px;
	margin: 0 auto;
	text-align: left;
}

.cta-contact-content h3 {
	color: var(--white-color);
	font-size: 36px;
	text-align: center;
	margin-bottom: 20px;
}

.cta-contact-content .info {
	padding: 0 0 20px 0;
}

.cta-contact-content .info span {
	position: relative;
}

.cta-contact-content .info span span {
	position: absolute;
	width: 200px;
	left: 0;
	bottom: -1.5em;
	font-size: 13px;
}

.cta-contact-content p,
.cta-contact-content a {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***    20. Blog Archive css  	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 500;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***    21. Blog Single css  	  ***/
/************************************/

.page-single-post {
	background-color: var(--white-color);
	padding: 100px 0;
}

.post-tag-links {
	width: 100%;
	display: flex;
	align-items: center;
}

.post-tag-links div {
	width: 50%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.post-tag-links a {
	color: var(--text-color);
	font-size: 16px;

}

.post-tag-links a:hover {
	color: var(--accent-color);
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 12px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background-image: linear-gradient(to right, var(--accent-color) 0%, var(--accent-color-two) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 46px;
	padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background-position: right center;
}

/************************************/
/***    23. Doctor Single css  	  ***/
/************************************/

.page-doctor-single {
	padding: 100px 0;
}

.doctor-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.doctor-single-entry h2 {
	margin-bottom: 20px;
}

.doctor-single-entry p {
	margin-bottom: 20px;
}

.doctor-single-entry p:last-child {
	margin-bottom: 0;
}

.doctor-single-entry .doctor-member-expertise ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.doctor-single-entry .product-border {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--divider-color);
}

.doctor-single-entry .doctor-member-expertise ul li {
	position: relative;
	width: calc(50% - 10px);
	text-transform: capitalize;
	padding-left: 30px;
	cursor: pointer;
}

.doctor-single-entry .doctor-member-expertise ul li a {
	color: var(--primary-color);
}

.doctor-single-entry .doctor-member-expertise ul li a:hover {
	color: var(--accent-color);
}


.doctor-single-entry .doctor-member-expertise ul li::before {
	content: '\f15b';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.doctor-member-info,
.doctor-member-expertise {
	margin-bottom: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 16px;
	padding: 20px;
	box-shadow: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

/************************************/
/***   24. Case Study Page css 	  ***/
/************************************/

.page-case-study {
	padding: 100px 0 70px;
}

.case-study-nav {
	text-align: center;
	margin-bottom: 30px;
}

.case-study-nav .cart-li {
	position: relative;
}


.case-study-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;
	margin: 0;
}

.case-study-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--text-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.case-study-nav ul li a:before {
	content: '/';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -35px;
}

.case-study-nav ul li:last-child a:before {
	display: none;
}

.case-study-nav ul li a.active-btn,
.case-study-nav ul li a:hover {
	color: var(--accent-color);
}

.time-and-view-count {
	padding-bottom: 10px;
}

.time-and-view-count a {
	width: 120px;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: var(--primary-color);
}

.time-and-view-count a svg {
	width: 18px;
	transform: rotate(90deg);
	margin-left: 2px;
}

.case-study-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***   25. Case Study Single css  ***/
/************************************/

.page-case-study-single {
	padding: 100px 0;
}

.case-study-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.case-study-detail-box {
	border: 1px solid var(--divider-color);
	border-radius: 46px;
	margin-bottom: 40px;
	padding: 40px;
}

.case-study-entry {
	margin-bottom: 40px;
}

.case-study-entry h2 {
	font-size: 36px;
	letter-spacing: -0.02em;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.case-study-entry p {
	margin-bottom: 20px;
}

.case-study-entry p:last-child {
	margin-bottom: 0;
}

.case-study-entry ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.case-study-entry ul li {
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.case-study-entry ul li:last-child {
	margin-bottom: 0;
}

.case-study-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 3px;
	left: 0;
}

.client-challenge-box {
	margin-top: 40px;
}

/************************************/
/***    26. Image Gallery css  	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	width: 100%;
	height: 400px;
	background: var(--divider-color);
	margin-bottom: 30px;
	border-radius: 46px;
}


.photo-gallery a,
.photo-gallery figure.image-anime {
	display: block;
	width: 100%;
	height: 100%;
}

.page-gallery-box .photo-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-us-box {
	background-color: var(--white-color);
	box-shadow: 6px 4px 168px 0px #0000001A;
	border-radius: 46px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	padding: 60px;
}

.contact-info-box {
	width: calc(40% - 30px);
}

.contact-info-list {
	margin-bottom: 40px;
}

.contact-info-item {
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.contact-info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	right: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover::before {
	top: auto;
	height: 100%;
	bottom: 0;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-two) 100%);
	border-radius: 50%;
	margin-right: 20px;
	overflow: hidden;
}

.icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	right: 0;
	width: 100%;
	height: 0;
	background: var(--secondary-color);
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
	top: auto;
	height: 100%;
	bottom: 0;
}

.contact-info-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-info-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.my-cart-list {
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	color: var(--text-color);
	padding: 10px;
	border-radius: 16px;
	margin-bottom: 30px;
}

.my-cart-list h3 {
	font-size: 18px;
}

.my-cart-list .cart-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 10px;
	cursor: pointer;
}

.my-cart-list .cart-subtitle {
	font-size: 14px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	margin-top: 10px;
}

.my-cart-list img {
	width: 100px;
	aspect-ratio: 1 / 1.2;
	object-fit: contain;
	cursor: pointer;
}

.my-cart-list .delete-icon {
	width: 24px;
	margin: 0 10px;
	cursor: pointer;
}

.contact-info-empty {
	width: 100%;
	text-align: center;
	color: var(--text-color);
}


.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p {
	color: var(--white-color);
}

.contact-us-form {
	width: calc(60% - 30px);
}

.contact-us-form .contact-form .form-control {
	background-color: var(--secondary-color);
}

/************************************/
/***  30. Book Appoiment Page css ***/
/************************************/
.agree-wrap {
	margin-bottom: 20px;
	font-size: 15px;
	display: flex;
	gap: 10px;
	align-items: center;
}

.agree-wrap input[type="checkbox"] {
	accent-color: var(--accent-color-two);
}

.agree-wrap a {
	color: var(--accent-color-two);
}

/************************************/
/***      32. Responsive Css      ***/
/************************************/

@media only screen and (max-width: 1560px) {
	.workshop-swiper {
		width: 900px;
	}
}

@media only screen and (max-width: 1024px) {
	.workshop-swiper {
		width: 700px;
	}

	.main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 1134px) {
	.main-menu ul li.nav-item .nav-link {
		padding: 15px 8px;
	}
}

@media only screen and (max-width: 991px) {

	.app-down-box .app-left img,
	.mini-program-bg,
	.app-down-box .app-right .line {
		display: none;
	}

	.software-down .down-placeholder {
		height: 180px;
	}

	.app-down-box .app-right .app-right-top {
		justify-content: center;
	}

	.down-bg>div {
		margin-top: 30px;
	}

	.hero-bg-sectiong {
		border-radius: 0;
	}

	.workshop-swiper {
		width: 600px;
	}

	.navbar-brand img {
		max-width: 160px;
	}

	.navbar {
		padding: 20px 0px;
	}

	.main-menu ul li.highlighted-menu {
		display: block;
	}

	.responsive-menu {
		display: block;

	}

	.navbar-toggle {
		display: flex;
		align-items: center;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block
	}

	.btn-default {
		padding: 14px 20px;
	}

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		max-width: 100%;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title-content {
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title h1 {
		font-size: 48px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero.hero-bg-image {
		padding: 120px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		height: 400px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 10px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero.hero-bg-image .hero-content {
		max-width: 450px;
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.google-rating {
		margin-top: 30px;
		padding-top: 30px;
	}

	.satisfied-clients-content h3 {
		font-size: 18px;
	}

	.satisfied-clients-content p {
		font-size: 14px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.about-us-body {
		margin-bottom: 30px;
	}

	.our-services {
		padding: 30px 0;
	}

	.service-item {
		border-radius: 26px;
		padding: 30px;
	}

	.service-header {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-item-box .icon-box {
		width: 50px;
		height: 50px;
	}

	.service-item-box .icon-box img {
		max-width: 24px;
	}

	.service-item-content {
		width: calc(100% - 65px);
	}

	.service-body {
		margin-bottom: 20px;
	}

	.intro-video {
		padding: 50px 0;
	}

	.why-choose-list {
		margin-top: 15px;
	}

	.why-choose-list ul li {
		margin-bottom: 10px;
	}

	.intro-video-box {
		padding: 100px 15px 50px;
	}

	.why-choose-box {
		gap: 15px;
		margin-top: 100px;
		padding-top: 30px;
	}

	.why-choose-item {
		width: calc(33.33% - 10px);
		display: block;
	}

	.why-choose-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.why-choose-item-content {
		width: 100%;
	}

	.container-box {
		padding: 40px 0;
	}

	.we-work {
		padding: 30px 0;
	}

	.excellence-counter-item {
		width: 205px;
		height: 205px;
		padding: 20px;
	}

	.excellence-counter-item h2 {
		font-size: 20px;
		margin-bottom: 4px;
	}

	.excellence-counter-item p {
		font-size: 11px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		position: initial;
		top: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-cta-box {
		border-radius: 26px;
		padding: 20px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 0px;
	}

	.team-body {
		padding: 10px;
	}

	.our-testimonial {
		padding: 50px 0;
		background-position: center center;
		background-size: 100% auto;
	}

	.testimonial-item {
		padding: 30px;
	}

	.latest-news {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-featured-image a,
	.post-featured-image img {
		border-radius: 26px;
	}

	.post-item-meta {
		margin-bottom: 10px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.main-footer.bg-section {
		padding: 40px 0 0;
		border-radius: 0;
		max-width: 100%;
	}

	.about-footer {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-logo {
		margin-bottom: 30px;
		text-align: center;
	}

	.footer-social-link {
		margin-top: 30px;
	}

	.footer-copyright {
		padding: 20px 0;
	}

	.sidebar-cta-box {
		padding: 30px;
		border-radius: 26px;
	}

	.cta-contact-content h3 {
		font-size: 36px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .post-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-doctor-single {
		padding: 50px 0;
	}

	.doctor-single-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.doctor-member-info,
	.doctor-member-expertise {
		margin-bottom: 30px;
	}

	.contact-form .form-control {
		padding: 15px;
	}

	.page-case-study {
		padding: 50px 0 20px;
	}

	.case-study-nav {
		margin-bottom: 20px;
	}

	.case-study-nav ul {
		gap: 10px 40px;
	}

	.case-study-nav ul li a:before {
		right: -20px;
	}

	.page-case-study-single {
		padding: 50px 0;
	}

	.case-study-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.case-study-detail-box {
		border-radius: 26px;
		margin-bottom: 30px;
		padding: 30px;
	}

	.case-study-entry {
		margin-bottom: 30px;
	}

	.client-challenge-box {
		margin-top: 30px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.8;
		border-radius: 26px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-box {
		border-radius: 26px;
		padding: 30px;
		gap: 30px;
	}

	.contact-info-box {
		width: calc(40% - 15px);
	}

	.contact-info-list {
		margin-bottom: 30px;
	}

	.contact-info-item {
		padding: 15px;
		margin-bottom: 20px;
	}

	.contact-info-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box img {
		max-width: 25px;
	}

	.contact-info-content {
		width: calc(100% - 55px);
	}

	.contact-us-form {
		width: calc(60% - 15px);
	}
}

@media only screen and (max-width: 767px) {

	.app-down-box .app-left,
	.app-down-box .app-right {
		width: 100%;
		height: auto;
	}

	.software-down .down-placeholder {
		height: 80px;
	}

	.down-bg>div {
		display: none;
	}

	.app-down-box .app-right {
		margin-top: 40px;
	}

	.app-down-box .app-right .app-right-top {
		gap: 20px;
	}

	.windows-box .windows-right .version-time {
		gap: 20px;
	}

	.windows-box .windows-right .info .sha256 {
		width: 260px;
	}

	.windows-box .windows-right .windows-but {
		width: 100%;
	}

	.windows-box .windows-right .info img {
		display: none;
	}

	.windows-box .windows-right .windows-down::after {
		left: 60px;
	}

	.mini-program-box {
		justify-content: center;
	}

	.windows-box {
		padding: 30px;
	}

	.web-show {
		display: none;
	}

	.product-home .swiper-pagination {
		bottom: 12px !important;
	}

	.product-home-swiper .product-home-slide {
		height: 600px;
	}

	.swiper-slide-active .product-home-slide-content {
		width: 100%
	}

	.swiper-slide-active .product-home-slide-content .img-box {
		width: 50%;
		transform: translateX(-16px);
	}

	.swiper-slide-active .product-home-slide-content .text-box {
		width: 50%;
		transform: translateX(16px);
	}

	.product-swiper-btn {
		margin: 20px 0;
	}

	.product-swiper-btn .btn-default {
		font-size: 14px;
	}

	.product-home-swiper .product-home-slide-content .text-box h2 {
		font-size: 18px;
	}

	.product-home-swiper .product-home-slide-content .text-box .line {
		height: 3px;
		width: 10%;
		background: var(--orange-color);
		margin: 8px 0;
	}

	.product-home-swiper .product-home-slide-content .text-box p {
		font-size: 12px;
		line-height: 1.6;
	}

	.workshop-swiper {
		width: 400px;
	}

	.section-title h3 {
		padding-left: 30px;
	}

	.section-title h3::before {
		width: 20px;
		height: 20px;
	}

	.section-title h1 {
		font-size: 34px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 16px;
	}

	.google-rating ul li {
		font-size: 13px;
	}

	.google-rating ul li i {
		font-size: 12px;
	}

	.satisfied-clients-content {
		width: calc(100% - 43px);
	}

	.about-info-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.about-info-item .icon-box img {
		max-width: 28px;
	}

	.about-info-item-content {
		width: calc(100% - 75px);
	}

	.about-info-item-content h3 {
		font-size: 18px;
	}

	.about-info-item-content p {
		font-size: 14px;
	}

	.about-img-1 img {
		border-radius: 26px;
	}

	.service-item {
		padding: 20px;
	}

	.service-header {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-body {
		margin-bottom: 15px;
	}

	.intro-video-box {
		padding: 50px 15px;
	}

	.video-play-button a {
		width: 70px;
		height: 70px;
	}

	.why-choose-box {
		gap: 20px;
		margin-top: 50px;
		padding-top: 30px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.excellence-counter-boxes {
		gap: 20px 0;
	}

	.excellence-counter-item {
		width: 190px;
		height: 190px;
	}

	.excellence-counter-item h2 {
		font-size: 24px;
	}

	.faq-cta-box {
		border-radius: 26px;
		padding: 20px;
	}

	.faq-cta-box .icon-box {
		margin-right: 10px;
	}

	.faq-cta-box .icon-box img,
	.faq-cta-box .icon-box svg {
		max-width: 45px;
		height: auto;
		display: block;
	}

	.faq-cta-box .faq-cta-content {
		width: calc(100% - 55px);
	}

	.faq-cta-content p {
		margin-bottom: 5px;
	}

	.faq-cta-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.our-testimonial {
		background-size: 200% auto;
	}

	.testimonial-item {
		padding: 20px;
		border-radius: 26px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
		text-align: center;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-contact-item {
		margin-bottom: 15px;
	}

	.footer-social-link {
		margin-top: 0px;
	}

	.footer-social-link ul {
		margin: 0 10px;
	}

	.footer-social-link ul li {
		margin-right: 15px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-copyright-text {
		text-align: center;
		margin-bottom: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}

	.footer-terms-condition ul {
		text-align: center;
	}

	.sidebar-cta-box {
		padding: 20px;
		border-radius: 26px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 15px;
	}

	.cta-contact-content h3 {
		font-size: 26px;
	}

	.doctor-single-entry h2 {
		margin-bottom: 15px;
	}

	.doctor-single-entry p {
		margin-bottom: 15px;
	}

	.doctor-single-entry .doctor-member-expertise ul li {
		width: 100%;
	}

	.doctor-single-entry .doctor-member-expertise ul li::before {
		font-size: 18px;
	}

	.case-study-nav ul {
		gap: 10px 30px;
	}

	.case-study-nav ul li a:before {
		right: -18px;
	}

	.case-study-detail-box {
		padding: 20px;
	}

	.case-study-entry p {
		margin-bottom: 15px;
	}

	.case-study-entry ul {
		margin-bottom: 15px;
	}

	.case-study-entry ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.case-study-entry ul li::before {
		font-size: 18px;
	}

	.contact-us-box {
		padding: 20px;
	}

	.contact-info-box,
	.contact-us-form {
		width: 100%;
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.timeline::after {
		left: 50px;
		margin-bottom: 20px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 100px;
		padding-right: 20px;
		left: -14px !important;
	}

	.year {
		left: 20px !important;
		right: auto !important;
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 1.2rem;
	}
}