/* ---------------------------------------------------------
    * Name:
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com

	* Abstracts variable

    * Reset css styles

    * Components

    * section

    * dashboard

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
	--Black: #000000;
	--White: #ffffff;
	--body-text: #555555;
	--Title: #1b1e23;
	--Text: #555555;
	--Text-2: #9c9c9c;
	--Text-3: #cecece;
	--Text-4: #6b6b6b;
	--Text-5: #89979a;
	--Text-6: #a3aaab;
	--Text-7: #7e7e7e;
	--Text-8: #939393;
	--Main-black: #1b1e23;
	--Main-black-2: #030917;
	--Main-black-3: #121212;
	--Main-yellow: #5cd0d0; /*#ffcd4c;*/
	--Main-yellow-2: #a6ffff; /*#f9d67c;*/
	--Main-gray: #f2edea;
	--Main-gray-2: #f7f3ec;
	--Main-gray-3: #f6f7f6;
	--Main-gray-4: #ece8e0;
	--Main-green: #163838;
	--Main-green-2: #1c5540;
	--Main-green-3: #1d3e3e;
	--Main-blue: #85a6a6;
	--Main-golden: #b69974;
	--Border: rgb(255, 255, 255, 0.1);
	--Border-2: rgba(27, 30, 35, 0.1);
	--Border-3: rgba(3, 9, 23, 0.2);
	--Border-4: rgba(27, 57, 66, 0.1);
	--Border-5: rgba(22, 56, 56, 0.1);
	--Border-6: rgba(18, 18, 18, 0.1);
	--Border-7: #d9d9d9;
	--Border-8: #0309171a;
	--Border-9: rgba(18, 18, 18, 0.07);
	--Border-10: rgba(18, 18, 18, 0.3);
	--Bg: rgb(255, 255, 255, 0.05);
	--Bg-2: #1b3942;
	--Bg-3: rgba(255, 255, 255, 0.3);
	--Bg-4: rgba(27, 57, 66, 0.05);
	--Bg-5: rgba(255, 255, 255, 0.03);
	--Bg-6: #313741;
	--Bg-7: #f6f7f6;
	--Bg-8: rgba(18, 18, 18, 0.8);
	--Bg-9: rgba(255, 255, 255, 0.07);
	--Bg-10: #0c2626;
	--Color-1: #ff3b30;
}

/*---------- Reset css styles ----------- */
/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	vertical-align: baseline;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	margin-right: 0 !important;
	font-size: 62.5%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background: var(--White);
	line-height: 1;
	padding: 0 !important;
}
body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-thumb {
	background-color: var(--Main-black);
	border-radius: 5px;
}
body.no-scroll {
	overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
}

blockquote,
q {
	quotes: none;
}

a img {
	border: 0;
}

img {
	max-width: 100%;
	height: auto;
}

select {
	max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
	font-family: 'Public Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--body-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	overflow-y: auto;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0px;
}

strong,
b,
cite {
	font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
	font-style: italic;
}

abbr,
acronym {
	border-bottom: 1px dotted #e0e0e0;
	cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

address {
	font-style: italic;
	margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
	margin: 20px 0;
	padding: 4px 12px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	overflow-x: auto;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	border-radius: 0;
	height: auto;
}

svg,
svg path {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Elements
-------------------------------------------------------------- */
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

hr {
	margin-bottom: 20px;
	border: dashed 1px #ccc;
}

/* List */
ul,
ol {
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

li {
	list-style: none;
}

ul li,
ol li {
	padding: 0;
}

dl,
dd {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

del,
.disable {
	text-decoration: line-through;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Table */
table,
th,
td {
	border: 1px solid #343444;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 30px;
	table-layout: fixed;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
}

td {
	border-width: 0 1px 1px 0;
}

th,
td {
	padding: 8px 12px;
}

/* Media */
embed,
object,
video {
	margin-bottom: 20px;
	max-width: 100%;
	vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
	margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
	line-height: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	line-height: inherit;
	margin: 0;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
	/* Removes default vertical scrollbar in IE6/7/8/9 */
	vertical-align: top;
	/* Improves readability and alignment in all browsers */
}

input[type='checkbox'] {
	display: inline;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	line-height: 1;
	cursor: pointer;
	-webkit-appearance: button;
	border: 0;
}

input[type='checkbox'],
input[type='radio'] {
	padding: 0;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
	vertical-align: sub;
	/* Addresses excess padding in IE8/9 */
}

input[type='search'] {
	-webkit-appearance: textfield;
	/* Addresses appearance set to searchfield in S5, Chrome */
}

input[type='search']::-webkit-search-decoration {
	/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type='search'] {
	outline: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	display: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
	color: #171412;
}

::-moz-placeholder {
	color: #171412;
	opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
	color: #171412;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: 'Manrope', sans-serif;
	color: var(--Title);
	font-weight: 700;
	margin: 0;
	text-rendering: optimizeLegibility;
}

h1,
.h1 {
	font-size: 120px;
	line-height: 132px;
	letter-spacing: -0.02em;
}

h2,
.h2 {
	font-size: 52px;
	line-height: 62px;
	letter-spacing: -0.02em;
}

h3,
.h3 {
	font-size: 24px;
	line-height: 35px;
	letter-spacing: 0px;
}

h4,
.h4 {
	font-size: 22px;
	line-height: 30px;
	letter-spacing: 0px;
}

h5,
.h5 {
	font-size: 20px;
	line-height: 27px;
	letter-spacing: 0px;
}

h6,
.h6 {
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0px;
}

.fs-22 {
	font-size: 22px;
}

.fs-20 {
	font-size: 20px;
}

.fs-18 {
	font-size: 18px;
}

.fs-14 {
	font-size: 14px;
}

.fs-12 {
	font-size: 12px;
}

.fs-8 {
	font-size: 8px;
}

.fw-7 {
	font-weight: 700;
}

.fw-6 {
	font-weight: 600;
}

.fw-5 {
	font-weight: 500;
}

.fw-3 {
	font-weight: 300;
}

/* link style
-------------------------------------------------------------- */
a {
	text-decoration: none;
	color: var(--Title);
	cursor: pointer;
	font-family: 'Manrope', sans-serif;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover,
a:focus {
	color: var(--Text);
	outline: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a.hover-text-main-yellow:hover {
	color: var(--Main-yellow) !important;
}
a.hover-text-main-golden:hover {
	color: var(--Main-golden) !important;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 1320px;
	max-width: 100%;
}
.tf-container .row {
	margin-left: -15px !important;
	margin-right: -15px !important;
}
.tf-container .row > * {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.tf-container.full {
	width: 100%;
}
.tf-container.w-1780 {
	max-width: 1810px;
	width: 100%;
}
.tf-container.w-1860 {
	max-width: 1890px;
	width: 100%;
}

/* Extra classes
-------------------------------------------------------------- */
#wrapper {
	width: 100vw;
}

.hidden {
	display: none;
}

.block {
	display: block;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed !important;
}

.position-unset {
	position: unset !important;
}

.z-5 {
	z-index: 5;
}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.item-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.font-main-3 {
	font-family: 'DM Sans', sans-serif;
}

.font-main-2 {
	font-family: 'Manrope', sans-serif;
}

.font-main {
	font-family: 'Public Sans', sans-serif;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-18 {
	margin-bottom: 18px;
}

.mb-17 {
	margin-bottom: 17px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-10 {
	margin-bottom: 10px;
}

.justify-space-between {
	justify-content: space-between;
}

.text-center {
	text-align: center;
}

.text-upper {
	text-transform: uppercase;
}

.overflow-x-auto {
	overflow-x: auto;
}
.overflow-x-auto::-webkit-scrollbar {
	height: 2px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
	background: var(--Border);
	border-radius: 999px;
}

.overflow-y-auto {
	overflow-y: auto;
}
.overflow-y-auto::-webkit-scrollbar {
	width: 2px;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
	background: var(--Border);
	border-radius: 999px;
}

.text-clamp-5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-clamp-4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-clamp-2 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-clamp-1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.swiper-slide {
	height: auto;
}
.swiper-slide > * {
	height: 100%;
}

/* Personal
-------------------------------------------------------------- */
.radius-20 {
	border-radius: 20px;
}

.lh-21 {
	line-height: 21px;
}

.color-main-black {
	color: var(--Main-black);
}

.text-main-green-3 {
	color: var(--Bg-2);
}

.bg-main-green {
	background-color: var(--Main-green);
}

.bg-main-gray {
	background-color: var(--Main-gray);
}

.grid-layout-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px 30px;
}

.grid-layout-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.grid-layout-3.gap-50-30 {
	gap: 50px 30px;
}

.grid-layout-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.text-white {
	color: var(--White);
}

/*------------ Components ---------------- */
/*------------ header ---------------- */
.tf-topbar {
	background-color: var(--Main-black);
}
.tf-topbar.style-2 {
	background-color: var(--Bg-2);
}
.tf-topbar.style-2 .topbar-inner {
	padding: 10px 0px;
}
.tf-topbar.style-2 .infor-list {
	gap: 50px;
}
.tf-topbar.style-2 .infor-list a {
	color: var(--White);
}
.tf-topbar.style-2 .infor-list i {
	font-size: 19px;
}
.tf-topbar.style-3 {
	background-color: transparent;
}
.tf-topbar.style-3 .topbar-inner {
	padding: 9px 0px;
}
.tf-topbar.style-3 .social-list {
	gap: 22px;
}
.tf-topbar.style-3 .infor-list {
	gap: 56px;
}
.tf-topbar.style-3 .infor-list a {
	color: var(--Text);
}
.tf-topbar.style-3 .infor-list a:hover {
	color: var(--Main-black);
}
.tf-topbar.style-3 .infor-list .icon i {
	font-size: 17px;
	color: var(--Text);
}
.tf-topbar.style-3 .infor-list li {
	gap: 7px;
}
.tf-topbar.style-3 .social {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 25px;
}
.tf-topbar.style-3 .line {
	width: 30px;
	height: 1px;
	display: inline;
	background-color: var(--Border-3);
}
.tf-topbar.style-3 .social-list a i {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Text);
}
.tf-topbar.style-3 .social-list a:hover i {
	color: var(--Main-black);
}
.tf-topbar.style-3 .social p {
	color: var(--Text);
}
.tf-topbar.style-4 {
	background-color: var(--White);
}
.tf-topbar.style-4 .topbar-inner {
	border-color: var(--Border-2);
}
.tf-topbar.style-4 i,
.tf-topbar.style-4 p,
.tf-topbar.style-4 span {
	color: var(--Text);
}

.topbar-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--Border);
	padding: 15px 11px 16px 0px;
}
.topbar-inner i {
	color: var(--White);
}
.topbar-inner p,
.topbar-inner span {
	color: var(--Text-2);
	font-weight: 500;
}
.topbar-inner .topbar-left {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 6px;
}
.topbar-inner .topbar-left .icon i {
	font-size: 18px;
}
.topbar-inner .infor-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 53px;
}
.topbar-inner .infor-list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.topbar-inner .infor-list .icon i {
	font-size: 20px;
}
.topbar-inner .infor-list a {
	color: var(--Text-2);
	font-family: 'Public Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
}
.topbar-inner .infor-list a:hover {
	color: var(--Main-yellow);
}

.tf-header {
	background-color: var(--Main-black);
	top: 0;
	position: sticky;
	z-index: 999;
}
.tf-header.style-2 {
	padding-bottom: 0px;
	background-color: var(--White);
}
.tf-header.style-2 .nav-list .item > a {
	color: var(--Main-black);
}
.tf-header.style-2 .nav-list .item:hover > a {
	color: var(--Text-2);
}
.tf-header.style-2 .nav-list .item:hover > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-2 .nav-list .item.has-child a::after {
	color: var(--Main-black);
}
.tf-header.style-2 .nav-list .item.has-child a:hover::after {
	color: var(--Text-2);
}
.tf-header.style-2 .nav-list .item.current a {
	color: var(--Text-2);
}
.tf-header.style-2 .nav-list .item.current a::before {
	background-color: var(--Text-2);
}
.tf-header.style-2 .nav-list .item.current a::after {
	color: var(--Text-2);
}
.tf-header.style-2 .sub-nav {
	background-color: var(--Main-black);
}
.tf-header.style-2 .sub-nav a:hover span {
	color: var(--White);
}
.tf-header.style-2 .sub-nav a:hover span::after {
	background-color: var(--White);
}
.tf-header.style-2 .sub-nav .current span {
	color: var(--White);
}
.tf-header.style-2 .sub-nav .current span::after {
	background-color: var(--White);
}
.tf-header.style-3 {
	background-color: transparent;
	padding-bottom: 0px;
}
.tf-header.style-3 .header-inner {
	background-color: var(--Main-green-3);
	border-radius: 10px;
	border: 1px solid var(--Border);
	padding: 0px 49px;
}
.tf-header.style-3 .header-left {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 166px;
}
.tf-header.style-3 .nav-list .item:hover > a {
	color: var(--Text-2);
}
.tf-header.style-3 .nav-list .item:hover > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-3 .nav-list .item > a {
	color: var(--Main-gray-2);
	line-height: 81px;
}
.tf-header.style-3 .nav-list .item > a::before {
	color: var(--White);
}
.tf-header.style-3 .nav-list .item.has-child a::after {
	color: var(--White);
}
.tf-header.style-3 .nav-list .item.has-child:hover a::after {
	color: var(--Text-2);
}
.tf-header.style-3 .nav-list .item.current > a {
	color: var(--Text-2);
}
.tf-header.style-3 .nav-list .item.current > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-3 .nav-list .item.current.has-child a::after {
	color: var(--Text-2);
}
.tf-header.style-3 .sub-nav {
	box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
.tf-header.style-3 .box-icon-contact {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 12px;
}
.tf-header.style-3 .box-icon-contact i {
	color: var(--White);
	font-size: 20px;
}
.tf-header.style-3 .box-icon-contact a {
	color: var(--White);
}
.tf-header.style-3 .box-icon-contact a:hover span {
	color: var(--Main-yellow);
}
.tf-header.style-3 .box-icon-contact span {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 20px;
}
.tf-header.style-4 {
	border-bottom: 1px solid var(--Border);
	padding-bottom: 0px;
	background-color: transparent;
}
.tf-header.style-4 .header-inner {
	border: unset;
}
.tf-header.style-4 .nav-list .item:hover > a {
	color: var(--Text-2);
}
.tf-header.style-4 .nav-list .item:hover > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-4 .nav-list .item > a {
	color: var(--White);
	line-height: 83px;
}
.tf-header.style-4 .nav-list .item > a::before {
	color: var(--White);
}
.tf-header.style-4 .nav-list .item.has-child a::after {
	color: var(--White);
}
.tf-header.style-4 .nav-list .item.has-child:hover a::after {
	color: var(--Text-2);
}
.tf-header.style-4 .nav-list .item.current > a {
	color: var(--Text-2);
}
.tf-header.style-4 .nav-list .item.current > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-4 .nav-list .item.current.has-child a::after {
	color: var(--Text-2);
}
.tf-header.style-4 .sub-nav a:hover span {
	color: var(--Main-black);
}
.tf-header.style-5 {
	background-color: var(--White);
}
.tf-header.style-5 .header-inner {
	border-color: var(--Border-2);
}
.tf-header.style-5 .nav-list .item > a {
	color: var(--Main-black);
}
.tf-header.style-5 .nav-list .item > a::before {
	background-color: var(--Text-2);
}
.tf-header.style-5 .nav-list .item.has-child > a::after {
	color: var(--Main-black);
}
.tf-header.style-5 .nav-list .item:hover > a {
	color: var(--Text-2);
}
.tf-header.style-5 .nav-list .item:hover.has-child > a::after {
	color: var(--Text-2);
}
.tf-header.style-5 .nav-list .item.current > a {
	color: var(--Text-2);
}
.tf-header.style-5 .nav-list .item.current.has-child > a::after {
	color: var(--Text-2);
}
.tf-header.style-5 .sub-nav a:hover span {
	color: var(--Main-black);
}

.header-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--Border);
}
.header-inner .tf-btn {
	padding: 12px 21px 12px;
}
.header-inner .nav-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 33px;
}
.header-inner .nav-list a {
	color: var(--Text-2);
	font-size: 16px;
	font-weight: 600;
	font-family: 'Manrope', sans-serif;
	display: block;
	position: relative;
}
.header-inner .nav-list .item {
	position: relative;
}
.header-inner .nav-list .item > a {
	line-height: 82px;
}
.header-inner .nav-list .item > a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	bottom: 39%;
	background-color: var(--White);
	transform-origin: center;
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-inner .nav-list .item > a span {
	position: relative;
	display: inline-block;
}
.header-inner .nav-list .item > a span::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	height: 82px;
	display: none;
	transform: translate(-50%, -50%);
	width: calc(100% + 65px);
}
.header-inner .nav-list .item.has-child > a {
	padding-right: 15px;
}
.header-inner .nav-list .item.has-child > a::after {
	content: '\e90a';
	position: absolute;
	font-family: 'icomoon';
	line-height: 0px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--Text-2);
	font-size: 6px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-inner .nav-list .item.has-child > a span::after {
	-webkit-transform: translate(-43%, -50%);
	-moz-transform: translate(-43%, -50%);
	-ms-transform: translate(-43%, -50%);
	-o-transform: translate(-43%, -50%);
	transform: translate(-43%, -50%);
	width: calc(100% + 80px);
}
.header-inner .nav-list .item:hover .sub-nav {
	transform: perspective(500px) rotateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}
.header-inner .nav-list .item:hover > a {
	color: var(--White);
}
.header-inner .nav-list .item:hover > a::before {
	transform: scaleX(1);
}
.header-inner .nav-list .item:hover > a::after {
	color: var(--White);
	transform: rotate(-180deg);
}
.header-inner .nav-list .item:hover > a span::after {
	display: block;
}
.header-inner .nav-list .item.current > a {
	color: var(--White);
}
.header-inner .nav-list .item.current > a::after {
	color: var(--White);
}
.header-inner .nav-list .item.current > a::before {
	transform: scaleX(1);
}
.header-inner .sub-nav {
	width: 220px;
	position: absolute;
	border-radius: 7px;
	background-color: var(--White);
	transform: perspective(500px) rotateY(20deg);
	transform-origin: -50% 0%;
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	padding: 10px 0px 10px 10px;
	box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
.header-inner .sub-nav li.current a {
	color: var(--Main-black);
}
.header-inner .sub-nav li.current span::after {
	width: 100%;
}
.header-inner .sub-nav a {
	padding: 10px;
}
.header-inner .sub-nav a:hover {
	color: var(--Main-black);
}
.header-inner .sub-nav a:hover span::after {
	right: auto;
	left: 0;
	width: 100%;
}
.header-inner .sub-nav a span {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-inner .sub-nav a span::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-inner .logo-site img {
	max-width: 139px;
}
.header-inner .header-right {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
}

.union {
	width: 25px;
	height: 25px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
}
.union .dot {
	display: flex;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--White);
}
.union .dot::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--White);
}
.union .dot::before {
	content: '';
	position: absolute;
	top: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--White);
}
.union.style-2 .dot {
	background-color: var(--Bg-2);
}
.union.style-2 .dot::after {
	background-color: var(--Bg-2);
}
.union.style-2 .dot::before {
	background-color: var(--Bg-2);
}
.union.style-3 .dot {
	background-color: var(--Main-blue);
}
.union.style-3 .dot::after {
	background-color: var(--Main-blue);
}
.union.style-3 .dot::before {
	background-color: var(--Main-blue);
}
.union.style-4 .dot {
	background-color: var(--Main-black);
}
.union.style-4 .dot::after {
	background-color: var(--Main-black);
}
.union.style-4 .dot::before {
	background-color: var(--Main-black);
}

.box-welcome {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 1000;
}
.box-welcome .tf-overlay {
	background-color: rgba(0, 0, 0, 0.4);
}
.box-welcome.active {
	visibility: visible;
	opacity: 1;
}
.box-welcome.active .popular-wrap {
	transform: translateX(0px);
}

.btn-close-welcome {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Main-black);
}
.btn-close-welcome:hover {
	color: var(--Main-golden);
}

.popular-wrap {
	position: fixed;
	right: 20px;
	top: 205px;
	max-width: 535px;
	width: 100%;
	background-color: var(--White);
	border-radius: 6px;
	padding: 60px 50px;
	z-index: 1001;
	transform: translateX(20px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.popular-wrap .wrap {
	margin-bottom: 30px;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--Border-2);
}
.popular-wrap .title {
	padding-left: 20px;
	color: var(--Main-black);
	font-size: 20px;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
	margin-bottom: 10px;
	position: relative;
}
.popular-wrap .title::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--Main-yellow);
}
.popular-wrap .text {
	color: var(--Text-2);
}
.popular-wrap .contact-list {
	margin-bottom: 10px;
}
.popular-wrap .contact-list p {
	color: var(--Text);
}
.popular-wrap .contact-list a {
	color: var(--Text-2);
	font-size: 14px;
}
.popular-wrap .contact-list a:hover {
	color: var(--Main-golden);
}
.popular-wrap .social-list a:hover {
	color: var(--Main-black);
}
.popular-wrap .gallery-image {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 10px;
}
.popular-wrap .gallery-image .image {
	max-width: 100px;
	border-radius: 10px;
	overflow: hidden;
}

.header-wrap {
	width: 100%;
	z-index: 3;
	z-index: 999;
}
.header-wrap.scrollHeader {
	position: sticky !important;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.header-wrap.scrollHeader.header-bg {
	border: unset;
	background-color: var(--Main-green-3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.header-wrap.scrollHeader .header-inner {
	border: unset !important;
}

.header-wrap-2 {
	width: 100%;
	z-index: 3;
	top: 20px;
	z-index: 999;
}
.header-wrap-2.scrollHeader {
	position: sticky !important;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.header-wrap-2.scrollHeader.header-bg {
	border: unset;
	background-color: var(--Main-black);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-nav-wrap {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: 9999999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mobile-nav-wrap.active {
	opacity: 1;
	visibility: visible;
}
.mobile-nav-wrap.active .inner-mobile-nav {
	left: 0 !important;
}
.mobile-nav-wrap .mobile-main-nav {
	border-bottom: 1px solid var(--Text-2);
}
.mobile-nav-wrap .overlay-mobile-nav {
	z-index: 300;
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.mobile-nav-wrap .inner-mobile-nav {
	z-index: 300;
	position: fixed;
	padding: 15px;
	z-index: 1001;
	height: 100%;
	width: 320px;
	background-color: var(--White);
	left: -320px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}
.mobile-nav-wrap .inner-mobile-nav .logo {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 40px;
}
.mobile-nav-wrap .inner-mobile-nav .logo img {
	max-width: 160px;
}
.mobile-nav-wrap .menu-item-has-children-mobile {
	padding-bottom: 10px;
	padding-top: 10px;
}
.mobile-nav-wrap .menu-item-has-children-mobile a {
	font-weight: 500;
	color: var(--Main-black);
}
.mobile-nav-wrap .menu-item-has-children-mobile.active .item-menu-mobile {
	color: var(--Text-2);
}
.mobile-nav-wrap .menu-item-has-children-mobile.active i {
	transform: rotate(-180deg);
}
.mobile-nav-wrap .menu-item-has-children-mobile .item-menu-mobile {
	justify-content: space-between;
	display: flex;
	margin-bottom: 15px;
	position: relative;
	transition-timing-function: linear;
	font-size: 18px;
	color: var(--Main-black);
	font-weight: 600;
	font-family: 'Public Sans', sans-serif;
}
.mobile-nav-wrap .menu-item-has-children-mobile .item-menu-mobile:hover {
	color: var(--Text-2);
}
.mobile-nav-wrap .menu-item-has-children-mobile .item-menu-mobile:hover i {
	color: var(--Secondary);
}
.mobile-nav-wrap .menu-item-has-children-mobile .item-menu-mobile.current {
	color: var(--Text-2);
}
.mobile-nav-wrap .menu-item-has-children-mobile .item-menu-mobile i {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 8px;
	height: max-content;
}
.mobile-nav-wrap .menu-item-has-children-mobile .sub-menu-mobile {
	display: none;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a {
	padding-left: 15px;
	display: block;
	line-height: 30px;
	font-size: 16px;
	font-family: 'Public Sans', sans-serif;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a::before {
	content: '\e917';
	position: relative;
	top: -1px;
	left: -10px;
	font-family: 'icomoon';
	color: var(--Secondary);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 10px;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a:hover {
	color: var(--Secondary);
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a:hover::before {
	left: -5px;
	visibility: visible;
	opacity: 1;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a:hover span::after {
	right: auto;
	left: 0;
	width: 100%;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a span {
	position: relative;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item a span::after {
	content: '';
	position: absolute;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--Text-2);
	bottom: 2px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item.current a {
	color: var(--Secondary);
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item.current a::before {
	left: -5px;
	visibility: visible;
	opacity: 1;
}
.mobile-nav-wrap .menu-item-has-children-mobile .menu-item.current a span::after {
	width: 100%;
}
.mobile-nav-wrap .mobile-nav-close {
	top: 20px;
	right: 20px;
	position: absolute;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Main-black);
}
.mobile-nav-wrap .mobile-nav-close:hover {
	color: var(--Main-golden);
}
.mobile-nav-wrap .social-list a:hover {
	color: var(--Main-black);
}
.mobile-nav-wrap .bottom .title {
	font-family: 'Manrope', sans-serif;
	color: var(--Main-black);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}
.mobile-nav-wrap .contact-list {
	margin-bottom: 10px;
}
.mobile-nav-wrap .contact-list p {
	color: var(--Text);
}
.mobile-nav-wrap .contact-list a {
	color: var(--Text-2);
	font-size: 14px;
}
.mobile-nav-wrap .contact-list a:hover {
	color: var(--Main-golden);
}

.mobile-button {
	display: none;
}

/*------------ footer ---------------- */
.tf-footer {
	padding-top: 100px;
	background-color: var(--Main-black-3);
	position: relative;
	overflow: hidden;
}
.tf-footer .logo-site img {
	max-width: 139px;
	width: 100%;
}
.tf-footer .f-item {
	position: absolute;
	right: 164px;
	top: 74px;
	pointer-events: none;
}
.tf-footer .f-item i {
	font-size: 307px;
	color: var(--Bg);
}
.tf-footer.style-2 {
	padding-top: 80px;
	background-color: var(--Main-black);
}
.tf-footer.style-2 .footer-top {
	padding-bottom: 80px;
}
.tf-footer.style-2 .footer-inner-border {
	border-bottom: 1px solid var(--Border);
}
.tf-footer.style-2 .footer-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	padding-bottom: 68px;
	padding-top: 0px;
	gap: 30px;
}
.tf-footer.style-2 .footer-inner .footer-title {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	margin-bottom: 20px;
}
.tf-footer.style-2 .footer-inner .list a {
	color: var(--Text-2);
	padding-left: 20px;
}
.tf-footer.style-2 .footer-inner .list a::after {
	width: 4px;
	height: 4px;
	top: 50%;
	left: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--Text-2);
}
.tf-footer.style-2 .footer-inner .list a:hover {
	color: var(--Main-yellow);
}
.tf-footer.style-2 .footer-inner .list a:hover::after {
	width: 6px;
	height: 6px;
	background-color: var(--Main-yellow);
}
.tf-footer.style-2 .inner-left {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 120px;
}
.tf-footer.style-2 .inner-right {
	max-width: 630px;
	width: 100%;
}
.tf-footer.style-2 .inner-right p {
	color: var(--Text-2);
	margin-bottom: 28px;
}
.tf-footer.style-2 .logo-site {
	margin-bottom: 48px;
}
.tf-footer.style-2 .footer-bottom {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0px;
}
.tf-footer.style-2 .footer-go-top {
	position: absolute;
}
.tf-footer.style-2 .footer-go-top::after {
	content: none;
}
.tf-footer.style-2 .policy-list .list {
	align-items: center;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 24px;
}
.tf-footer.style-2 .policy-list a {
	font-family: 'Public Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--Text-2);
}
.tf-footer.style-2 .policy-list a:hover {
	color: var(--White);
}
.tf-footer.style-2 .policy-list .dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--White);
}
.tf-footer.style-2 .no-copy {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.tf-footer.style-3 {
	background-color: var(--Bg-2);
}
.tf-footer.style-3 .footer-inner {
	padding: 0px 0px 101px;
	background-color: transparent;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 114px;
	border-bottom: 1px solid var(--Border);
}
.tf-footer.style-3 .logo-site {
	margin-bottom: 38px;
}
.tf-footer.style-3 .social-list a {
	color: var(--Text-3);
}
.tf-footer.style-3 .social-list a:hover {
	color: var(--White);
}
.tf-footer.style-3 .footer-inner-wrap a {
	color: var(--Text-3);
}
.tf-footer.style-3 .footer-inner-wrap a:hover {
	color: var(--White);
}
.tf-footer.style-3 .footer-inner-wrap a::after {
	content: none;
}
.tf-footer.style-3 .footer-inner-wrap.form-wrap {
	max-width: 300px;
	width: 100%;
}
.tf-footer.style-3 .footer-bottom {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0px;
}
.tf-footer.style-3 .footer-go-top {
	position: absolute;
}
.tf-footer.style-3 .footer-go-top::after {
	content: none;
}
.tf-footer.style-3 .policy-list .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 28px;
}
.tf-footer.style-3 .policy-list a {
	color: var(--Text-3);
}
.tf-footer.style-3 .policy-list a:hover {
	color: var(--White);
}
.tf-footer.style-4 {
	background-color: var(--Main-green);
	padding-top: 70px;
}
.tf-footer.style-4 .footer-inner {
	padding: 0px 0px 70px;
}
.tf-footer.style-4 .footer-top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	margin-bottom: 70px;
	padding-bottom: 70px;
	border-bottom: 1px solid var(--Border);
}
.tf-footer.style-4 .s-title {
	font-size: 35px;
	line-height: 48px;
}
.tf-footer.style-4 .footer-inner-wrap .list a {
	color: var(--Text-3);
}
.tf-footer.style-4 .footer-inner-wrap .list a:hover {
	color: var(--White);
}
.tf-footer.style-4 .footer-inner-wrap .list a::after {
	content: '';
}
.tf-footer.style-4 .policy-list .list {
	gap: 27px;
}

.footer-top {
	position: relative;
	padding-bottom: 100px;
}
.footer-top .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.footer-top .title {
	font-size: 52px;
	font-weight: 700;
	line-height: 62px;
	letter-spacing: -0.02em;
	color: var(--White);
	margin-bottom: 25px;
}
.footer-top .title span {
	font-weight: 300;
}
.footer-top .text {
	margin-bottom: 30px;
	color: var(--White);
}

.footer-inner {
	max-width: 1860px;
	width: 100%;
	margin: 0px auto;
	background-color: var(--Main-black);
	padding: 70px 0px 19px;
}
.footer-inner .inner-top {
	padding-bottom: 71px;
	margin-bottom: 70px;
	position: relative;
}
.footer-inner .inner-top::after {
	position: absolute;
	content: '';
	max-width: 1290px;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--Border);
}
.footer-inner .inner-top .title {
	color: var(--White);
	font-family: Manrope;
	font-size: 24px;
	line-height: 33px;
	letter-spacing: -0.02em;
}
.footer-inner .footer-title {
	line-height: 27px;
	color: var(--White);
	margin-bottom: 15px;
}
.footer-inner .inner-center {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 172px;
	padding-bottom: 70px;
	border-bottom: 1px solid var(--Border);
}
.footer-inner .inner-bottom {
	padding-top: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.footer-inner .social {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 25px;
}
.footer-inner .social p {
	line-height: 19px;
	color: var(--White);
}
.footer-inner .social .icon i {
	font-size: 8px;
	color: var(--White);
}
.footer-inner .list a {
	color: var(--Text-3);
	font-family: 'Public Sans', sans-serif;
	line-height: 40px;
	position: relative;
}
.footer-inner .list a::after {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	content: '';
	bottom: -1px;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--White);
}
.footer-inner .list a:hover {
	color: var(--White);
}
.footer-inner .list a:hover::after {
	left: 0;
	right: auto;
	width: 100%;
}
.footer-inner .policy-list .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 28px;
}

.footer-inner-wrap a {
	color: var(--Text-3);
}
.footer-inner-wrap a:hover {
	color: var(--White);
}
.footer-inner-wrap.s1 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 50px;
}
.footer-inner-wrap .text {
	color: var(--Text-3);
}
.footer-inner-wrap .list {
	white-space: nowrap;
}
.footer-inner-wrap.open .footer-title-mobile::before {
	opacity: 0;
}
.footer-inner-wrap.open .footer-title-mobile::after {
	transform: translate(0%, -50%) rotate(180deg);
}

.tf-collapse-content {
	display: flex;
	flex-direction: column;
}

.footer-title-mobile {
	display: none;
	position: relative;
	cursor: pointer;
}
.footer-title-mobile::after {
	position: absolute;
	content: '';
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 1px;
	background-color: var(--White);
	transition: 0.25s ease-in-out;
}
.footer-title-mobile::before {
	position: absolute;
	content: '';
	right: 15px;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 12px;
	background-color: var(--White);
	transition: 0.25s ease-in-out;
}

.footer-bottom {
	padding: 25px 0px;
	text-align: center;
}
.footer-bottom p {
	color: var(--Text-3);
}
.footer-bottom p span {
	color: var(--White);
	font-weight: 600;
}
.footer-bottom a {
	color: var(--White);
	font-family: 'Public Sans', sans-serif;
	line-height: 40px;
	position: relative;
}
.footer-bottom a::after {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	content: '';
	bottom: -2px;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--White);
}
.footer-bottom a:hover::after {
	left: 0;
	right: auto;
	width: 100%;
}

.subscribe-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 20px;
	height: 100%;
}
.subscribe-wrap .form-sub {
	width: 100%;
}
.subscribe-wrap .tf-btn {
	height: 100%;
	padding: 12px 43px;
}

.footer-go-top {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--White);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.footer-go-top i {
	color: var(--Title);
	animation: iconBounce 2s linear 0s infinite;
}
.footer-go-top:hover {
	background-color: var(--Main-yellow);
}

.no-copy.style-2 span {
	font-weight: 400;
	color: var(--Main-yellow);
}

/*------------ tabs ---------------- */
.wg-tabs.style-2 .menu-tab {
	margin-bottom: 50px;
	justify-content: center;
	align-items: center;
	padding: 0px;
	border: unset;
	box-shadow: unset;
	gap: 19px;
}
.wg-tabs.style-2 .menu-tab a {
	padding: 4px 12px 3px 14px;
	border-radius: 5px;
	border: 1px solid var(--White);
	font-weight: 600;
	font-size: 18px;
}
.wg-tabs.style-2 .menu-tab a::after {
	content: none;
}
.wg-tabs.style-2 .menu-tab a:hover {
	color: var(--Bg-2);
	box-shadow: 10px 4px 30px 0px rgba(178, 178, 178, 0.2);
	border-color: var(--Border-8);
}
.wg-tabs.style-2 .menu-tab .item.active a {
	color: var(--Bg-2);
	box-shadow: 10px 4px 30px 0px rgba(178, 178, 178, 0.2);
	border-color: var(--Border-8);
}

.menu-tab {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 42px;
	white-space: nowrap;
	box-shadow: 10px 4px 60px 0px rgba(182, 182, 182, 0.2509803922);
	border: 1px solid var(--Border-5);
	padding: 0px 33px;
}
.menu-tab .item {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.menu-tab .item.active a {
	color: var(--Main-green);
}
.menu-tab .item.active a::after {
	width: 100%;
}
.menu-tab .item.active span::after {
	visibility: visible;
	opacity: 1;
}
.menu-tab a {
	position: relative;
	display: block;
	padding: 24px 33px 25px 30px;
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	color: var(--Text);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.menu-tab a::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: auto;
	right: 0;
	height: 1px;
	width: 0;
	background-color: var(--Main-green);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.menu-tab a:hover {
	color: var(--Main-green);
}
.menu-tab a:hover::after {
	left: 0;
	right: auto;
	width: 100%;
}

.widget-content-tab .widget-content-inner {
	visibility: hidden;
	opacity: 0;
	transform: translateY(100px);
}
.widget-content-tab .widget-content-inner.active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

/*------------ button ---------------- */
button {
	transition: all 0.2s ease-in;
}

.tf-btn {
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	font-family: 'Manrope', sans-serif;
	color: var(--Main-black);
	background-color: var(--Main-yellow);
	border-radius: 7px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 31px 15px 30px;
	gap: 7px;
	width: max-content;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease-in;
	overflow: hidden;
}
.tf-btn.small {
	padding: 12px 21px 12px 20px;
	font-size: 14px;
	line-height: 19px;
}
.tf-btn.small.type-2 {
	padding: 11px 20px 11px 19px;
}
.tf-btn.style-2 {
	background-color: transparent;
	border: 1px solid var(--Border);
	color: var(--White);
}
.tf-btn.style-2 i {
	color: var(--White);
}
.tf-btn.style-3 {
	background-color: var(--Main-black);
	color: var(--White);
}
.tf-btn.style-4 {
	border: 1px solid var(--Main-black);
	background-color: var(--White);
	color: var(--Main-black);
}
.tf-btn.style-4::before {
	content: none;
}
.tf-btn.style-4:hover {
	border: 1px solid var(--Main-yellow);
	background-color: var(--Main-yellow);
}
.tf-btn.style-5 {
	background-color: var(--White);
	color: var(--Main-black);
}
.tf-btn.style-5::before {
	content: none;
}
.tf-btn.style-6 {
	background-color: var(--Main-green);
	color: var(--White);
}
.tf-btn.style-7 {
	background-color: var(--Main-golden);
	color: var(--White);
}
.tf-btn.style-8 {
	background-color: transparent;
	border: 1px solid var(--Border-2);
	color: var(--Text);
}
.tf-btn.style-8::before {
	content: none;
}
.tf-btn.style-8:hover {
	background-color: var(--Main-yellow);
	border: 1px solid var(--Main-yellow);
	color: var(--Main-black);
}
.tf-btn.style-9 {
	color: var(--Bg-2);
	border: 1px solid var(--Border-4);
	background-color: var(--Bg-4);
}
.tf-btn.style-9::before {
	content: none;
}
.tf-btn.style-9:hover {
	color: var(--White);
	border: 1px solid var(--Bg-2);
	background-color: var(--Bg-2);
}
.tf-btn.style-10 {
	color: var(--White);
	border: 1px solid var(--Border);
	background-color: var(--Bg);
}
.tf-btn.style-11 i {
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	color: var(--Bg-2);
}
.tf-btn.style-11:hover {
	background-color: var(--Main-blue);
}
.tf-btn.style-11:hover i {
	color: var(--White);
}
.tf-btn.style-12 {
	background-color: var(--Main-blue);
}
.tf-btn.style-12 i {
	color: var(--White);
}
.tf-btn.style-12:hover {
	background-color: var(--Main-yellow);
}
.tf-btn.style-13 {
	background-color: var(--Main-yellow-2);
	color: var(--Main-green);
}
.tf-btn.style-14 {
	background-color: var(--White);
	color: var(--Bg-2);
	border: 1px solid var(--Border-2);
}
.tf-btn.style-14::before {
	content: none;
}
.tf-btn.style-14:hover {
	background-color: var(--Bg-2);
	color: var(--White);
	border: 1px solid var(--Bg-2);
}
.tf-btn.style-15 {
	background-color: var(--Main-blue);
	color: var(--White);
}
.tf-btn.style-15::after {
	background-color: var(--Bg-2);
}
.tf-btn.style-15:hover::after {
	background-color: var(--Bg-2);
}
.tf-btn.style-15.type-2:hover::after {
	background-color: var(--Main-golden);
}
.tf-btn::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.3) 100%
	);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.tf-btn::after {
	content: none;
}
.tf-btn:hover::before {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
}
.tf-btn:hover i {
	animation: link-icon 0.3s linear;
}
.tf-btn.full {
	width: 100%;
}

.btn-slide {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	background-color: var(--Border);
}
.btn-slide i {
	color: var(--White);
	font-size: 9px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.btn-slide:hover {
	background-color: var(--Main-blue);
}
.btn-slide.swiper-button-disabled {
	background-color: var(--Border);
	pointer-events: none;
}
.btn-slide.style-2 {
	width: 55px;
	height: 55px;
	background-color: transparent;
	border: 1px solid var(--Border);
}
.btn-slide.style-2:hover {
	background-color: var(--Main-yellow-2);
}
.btn-slide.style-2:hover i {
	color: var(--Main-black);
}
.btn-slide.style-2 i {
	font-size: 16px;
	color: var(--Text-7);
}
.btn-slide.style-2.swiper-button-disabled {
	background-color: transparent;
	border: 1px solid var(--Border);
}
.btn-slide.style-2.swiper-button-disabled i {
	color: var(--Text-7);
}
.btn-slide.style-3 {
	border: 1px solid var(--Border-5);
}
.btn-slide.style-3:hover i {
	color: var(--White);
}
.btn-slide.style-3 i {
	font-size: 12px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Text);
}
.btn-slide.style-3.swiper-button-disabled {
	border: 1px solid var(--Border-5);
}
.btn-slide.style-3.swiper-button-disabled i {
	color: var(--Text);
}
.btn-slide.style-4 {
	width: 55px;
	height: 55px;
	background-color: var(--White);
}
.btn-slide.style-4:hover {
	background-color: var(--Main-yellow);
}
.btn-slide.style-4 i {
	font-size: 16px;
	color: var(--Main-black);
}
.btn-slide.style-4.swiper-button-disabled {
	background-color: var(--White);
}

.tf-btn-readmore {
	color: var(--Main-black);
	font-weight: 700;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: max-content;
}
.tf-btn-readmore::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(0% - 12px);
	height: 1px;
	background-color: var(--Text-2);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tf-btn-readmore:hover {
	color: var(--Text-2);
}
.tf-btn-readmore:hover::after {
	width: calc(100% - 13px);
}
.tf-btn-readmore.style-2 {
	color: var(--Main-yellow-2);
}
.tf-btn-readmore.style-2:hover {
	color: var(--White);
}
.tf-btn-readmore.style-2:hover::after {
	background-color: var(--White);
}
.tf-btn-readmore.style-3 {
	color: var(--Text);
}
.tf-btn-readmore.style-3:hover {
	color: var(--Main-black);
}
.tf-btn-readmore.style-4 {
	color: var(--White);
}
.tf-btn-readmore.style-4::after {
	background-color: var(--White);
}
.tf-btn-readmore.style-4:hover {
	color: var(--Main-yellow);
}
.tf-btn-readmore.style-4:hover::after {
	background-color: var(--Main-yellow);
}

.btn-view {
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.btn-view.has-text {
	gap: 8px;
	border: 1px solid var(--Border-5);
	color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding: 13px 15px;
	overflow: hidden;
}
.btn-view.has-text .plus {
	font-size: 22px;
	font-weight: 900;
	line-height: 22px;
	transform: translateX(44px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: visible;
	opacity: 1;
}
.btn-view.has-text .read {
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	transform: translateX(100%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
}
.btn-view.has-text:hover {
	width: 135px;
	border-radius: 10px;
	background-color: var(--Main-green);
}
.btn-view.has-text:hover span {
	color: var(--White);
}
.btn-view.has-text:hover .plus {
	transform: translateX(0px);
}
.btn-view.has-text:hover .read {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0.1s;
}
.btn-view.has-text.style-2 {
	background-color: var(--White);
}
.btn-view.has-text.style-2 .plus {
	transform: translateX(53px);
}
.btn-view.has-text.style-2:hover {
	background-color: var(--Main-golden);
}
.btn-view.has-text.style-2:hover .plus {
	transform: translateX(0px);
}
.btn-view.has-text.style-3 {
	background-color: transparent;
	border-color: var(--White);
}
.btn-view.has-text.style-3 .plus {
	color: var(--White);
}

.btn-download {
	display: block;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	position: relative;
	background-color: var(--Main-black);
	color: var(--White);
	height: 54px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 20px;
}
.btn-download .icon {
	top: 7px;
	right: 7px;
	bottom: 7px;
	width: 40px;
	height: 40px;
	position: absolute;
	border-radius: 7px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: var(--Main-yellow);
}
.btn-download .icon i {
	color: var(--Main-black);
	font-size: 16px;
}
.btn-download.style-2 {
	background-color: transparent;
	border: 1px solid var(--Main-black);
	color: var(--Main-black);
}
.btn-download.style-2 .icon {
	background-color: var(--White);
}
.btn-download.style-2:hover {
	border-color: var(--Main-yellow);
}
.btn-download:hover {
	background-color: var(--Main-yellow);
}
.btn-download:hover .icon {
	background-color: var(--White);
}

.btn-case {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 50px;
}
.btn-case .image-wrap {
	max-width: 150px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-case .image-wrap::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(27, 30, 35, 0.6509803922);
	transform: scale(0.5);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
}
.btn-case .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.3);
	width: 50px;
	height: 50px;
	background-color: var(--Main-yellow);
	z-index: 2;
	-webkit-transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: all 0.8s cubic-bezier(0.24, 0.74, 0.58, 1);
	visibility: hidden;
	opacity: 0;
	transition-delay: 0.1s;
}
.btn-case .icon i {
	color: var(--Main-black);
	font-weight: 700;
}
.btn-case .tag {
	font-family: 'Public Sans', sans-serif;
}
.btn-case .name-case {
	font-size: 20px;
	font-weight: 700;
	line-height: 27.32px;
}
.btn-case:hover .image-wrap::after {
	transform: scale(1);
	border-radius: 10px;
	visibility: visible;
	opacity: 1;
}
.btn-case:hover .icon {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
	opacity: 1;
}
.btn-case.next {
	text-align: right;
	gap: 30px;
}

/*------------ form ---------------- */
form {
	position: relative;
	z-index: 30;
}
form textarea,
form input[type='text'],
form input[type='password'],
form input[type='datetime'],
form input[type='datetime-local'],
form input[type='date'],
form input[type='month'],
form input[type='time'],
form input[type='week'],
form input[type='number'],
form input[type='email'],
form input[type='url'],
form input[type='search'],
form input[type='tel'],
form input[type='color'] {
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	width: 100%;
	padding: 19px 19px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	background-color: var(--White);
	border: 1px solid var(--Border);
	border-radius: 10px;
	color: var(--Soft-Text);
	overflow: hidden;
	margin-bottom: 0;
}
form textarea::placeholder,
form input[type='text']::placeholder,
form input[type='password']::placeholder,
form input[type='datetime']::placeholder,
form input[type='datetime-local']::placeholder,
form input[type='date']::placeholder,
form input[type='month']::placeholder,
form input[type='time']::placeholder,
form input[type='week']::placeholder,
form input[type='number']::placeholder,
form input[type='email']::placeholder,
form input[type='url']::placeholder,
form input[type='search']::placeholder,
form input[type='tel']::placeholder,
form input[type='color']::placeholder {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--Text);
}
form button,
form input[type='button'],
form input[type='reset'],
form input[type='submit'] {
	background-color: transparent;
	overflow: hidden;
	padding: 0;
}
form textarea {
	padding: 11px 18px 16px;
	height: 150px;
	border: 1px solid var(--Border-2);
	color: var(--Main-black);
	-webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
form textarea:focus {
	border-color: var(--Main-black);
}
form textarea:hover {
	border-color: var(--Main-black);
}
form textarea.h-100px {
	height: 100px;
}
form.style-2 input {
	padding: 10px 19px;
	border-radius: 7px;
	background-color: var(--Bg);
	color: #a3aaab;
}
form.style-2 input::placeholder {
	color: #a3aaab;
}
form.style-3 input {
	border: 1px solid var(--Border-2);
	padding: 13px 19px 10px;
	color: var(--Main-black);
	-webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	-o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
	transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
form.style-3 input:focus {
	border-color: var(--Main-black);
}
form.style-3 input:hover {
	border-color: var(--Main-black);
}
form.style-3 input:valid {
	background-color: var(--White);
	border-color: var(--Main-black);
}
form.style-3 textarea:valid {
	background: var(--White);
	border-color: var(--Main-black);
}
form.style-4 .icon {
	position: absolute;
	left: 26px;
	top: 50%;
	transform: translateY(-50%);
}
form.style-4 .icon i {
	font-size: 14px;
	color: var(--White);
}
form.style-4 fieldset {
	position: relative;
}
form.style-4 input {
	border-color: var(--Bg);
	background-color: var(--Bg-5);
	padding: 15px 170px 14px 50px;
	color: var(--Text-5);
}
form.style-4 input::placeholder {
	font-family: Public Sans;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--Text-5);
}
form.style-4 .tf-btn {
	position: absolute;
	top: 5px;
	right: 6px;
	bottom: 4px;
	height: calc(100% - 9px);
	padding: 12px 31px 12px 31px;
}
form.bg-transparent input,
form.bg-transparent textarea {
	background-color: transparent;
}
form.bg-transparent input:hover,
form.bg-transparent textarea:hover {
	background-color: var(--White);
}
form .cols {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}
form .cols.cols-two > * {
	width: 50%;
}

fieldset {
	margin-bottom: 0px;
	width: 100%;
}

.form-sb-search {
	position: relative;
}
.form-sb-search .btn-search {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}

.checkbox-item label {
	padding-left: 40px;
	cursor: pointer;
	position: relative;
}
.checkbox-item label .checkbox-item {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 50%;
	border-radius: 50%;
	transform: translate(0, -50%);
}
.checkbox-item label .checkbox-item:checked ~ .btn-checkbox:after {
	display: block;
}
.checkbox-item label .checkbox-item:checked ~ .btn-radio:after {
	display: block;
}
.checkbox-item label .btn-checkbox {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 25px;
	height: 25px;
	background-color: transparent;
	border: 2px solid var(--Border-2);
}
.checkbox-item label .btn-checkbox:after {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	background-color: var(--Border-2);
}
.checkbox-item.style-2 label {
	padding-left: 30px;
}
.checkbox-item.style-2 .text {
	color: var(--Text-3);
}
.checkbox-item.style-2 .checkbox-item:checked ~ .btn-checkbox {
	background-color: var(--White);
}
.checkbox-item.style-2 .checkbox-item:checked ~ .btn-checkbox:after {
	display: block;
}
.checkbox-item.style-2 .checkbox-item:checked ~ .btn-radio:after {
	display: block;
}
.checkbox-item.style-2 .btn-checkbox {
	background-color: unset;
	border-color: var(--White);
	width: 20px;
	height: 20px;
}
.checkbox-item.style-2 .btn-checkbox::after {
	content: '\e913';
	font-family: 'icomoon';
	color: var(--White);
	font-size: 9px;
	width: unset;
	height: unset;
	background-color: unset;
	color: var(--Bg-2);
}

.form-sub input::placeholder {
	font-size: 14px !important;
}
.form-sub.style-5 input {
	background-color: var(--Bg);
	border-color: var(--Border);
	color: var(--Text-6);
	padding: 10px 19px 8px;
}
.form-sub.style-5 input::placeholder {
	color: var(--Text-6);
}
.form-sub.style-5 .tf-btn {
	padding: 0px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 5px;
	right: 5px;
}
.form-sub.style-5 .tf-btn::after {
	content: none;
}
.form-sub.style-5 .tf-btn::before {
	content: none;
}

.form-comment .fieldset-text {
	margin-bottom: 26px;
}
.form-comment .checkbox-item {
	margin-bottom: 33px;
}

.form-contact input {
	padding: 11px 19px 7px 21px !important;
}
.form-contact input::placeholder {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
}

/*------------ slider ---------------- */
.slider-saylo {
	display: flex;
	animation: scroll 10s linear infinite;
	transition: animation-duration 0.3s;
}
.slider-saylo p {
	font-size: 220px;
	font-weight: 800;
	line-height: 300.52px;
	white-space: nowrap;
	color: var(--Bg-5);
}
.slider-saylo .marquee-item {
	padding-left: 18px;
	padding-right: 18px;
	display: flex;
	align-items: center;
}
.slider-saylo.style-2 p {
	color: var(--Border-4);
}
.slider-saylo.mt-50 {
	margin-top: 50px;
}
.slider-saylo.mt-65 {
	margin-top: 65px;
}
.slider-saylo.mb-50 {
	margin-bottom: 50px;
}

.tf-pagination .swiper-pagination-bullet {
	background: var(--Main-black);
	opacity: 1;
	width: 7px;
	height: 7px;
	position: relative;
	margin: 0px 11px !important;
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.tf-pagination .swiper-pagination-bullet::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid transparent;
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.tf-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	width: 21px;
	height: 21px;
	border-color: var(--Main-black);
}
.tf-pagination.style-2 .swiper-pagination-bullet {
	background: var(--Border-2);
}
.tf-pagination.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--Main-black);
}
.tf-pagination.style-3 .swiper-pagination-bullet {
	background: var(--White);
}
.tf-pagination.style-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	border-color: var(--White);
}
.tf-pagination.style-4 .swiper-pagination-bullet {
	background: var(--Bg-3);
}
.tf-pagination.style-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--White);
}
.tf-pagination.style-4 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	border-color: transparent;
}
.tf-pagination.style-5 .swiper-pagination-bullet {
	background: rgba(22, 56, 56, 0.2);
}
.tf-pagination.style-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--Main-green);
}
.tf-pagination.style-5 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	border-color: transparent;
}

.slider-project {
	position: relative;
	padding-bottom: 67px;
}
.slider-project .tf-pagination {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 21px;
}

.slider-team {
	position: relative;
}
.slider-team .tf-overlay {
	top: unset;
	z-index: 0;
	height: 210px;
	background-color: var(--Main-black);
}

.slider-testimonial-thumb .image {
	max-width: 270px;
	width: 100%;
}

.slider-home-2 {
	position: relative;
}
.slider-home-2 .tf-pagination {
	right: 13%;
	top: 50%;
	transform: translateY(-50%);
	flex-direction: column;
	gap: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.slider-home-2 .swiper-slide-active .access-trainsition {
	clip-path: inset(0 0 0 0);
}
.slider-home-2 .swiper-slide-active .fade-item-2 {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.2s;
}
.slider-home-2 .swiper-slide-active .fade-item-3 {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.4s;
}

.slider-home-2 .swiper-slide {
	transition:
		transform 0.8s ease-in,
		opacity 0.8s ease-in;
	transform-origin: center;
	opacity: 0;
}
.slider-home-2 .swiper-slide-active {
	z-index: 10;
	opacity: 1;
	transform: scale(1);
}
.slider-home-2 .swiper-slide-prev,
.slider-home-2 .swiper-slide-next {
	opacity: 0.5;
	transform: scale(0.9);
}
.slider-home-2 .swiper-slide-prev ~ .swiper-slide,
.slider-home-2 .swiper-slide-next ~ .swiper-slide {
	opacity: 0.2;
	transform: scale(0.8);
}

.slide-home-2 {
	overflow: hidden;
}

.slider-feedback-2 .direc-group {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 48px;
}
.slider-feedback-2 .tf-pagination {
	position: relative;
}

.service-pagination {
	visibility: hidden;
	opacity: 0;
}

.slider-testimonial-2 .wg-testimonial .bot {
	display: unset;
}

/*------------ blog ---------------- */
.tf-page-title {
	background-color: var(--Main-black);
	position: relative;
	z-index: 1;
	padding-top: 60px;
}
.tf-page-title .content-wrap {
	border-radius: 15px;
	min-height: 587px;
	background-size: cover;
	background-repeat: no-repeat;
	max-width: 1780px;
	width: 100%;
	margin: 0px auto;
	position: relative;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 87px;
	z-index: 2;
	overflow: hidden;
}
.tf-page-title .rellax {
	width: 100%;
	min-height: 0;
	transition: unset;
	border-radius: 15px;
	overflow: hidden;
}
.tf-page-title .rellax img {
	min-height: 400px;
}
.tf-page-title .content {
	position: relative;
	z-index: 3;
}
.tf-page-title .content .title {
	font-family: 'Manrope', sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 95.62px;
	letter-spacing: -0.02em;
	color: var(--White);
	margin-bottom: 20px;
}
.tf-page-title .content .title span {
	font-weight: 300;
}
.tf-page-title .content .title.mb-30 {
	margin-bottom: 30px;
}
.tf-page-title .tf-overlay {
	z-index: 2;
	background: linear-gradient(
		180deg,
		rgba(27, 30, 35, 0) 0%,
		rgba(27, 30, 35, 0.85) 54.02%,
		#1b1e23 100%
	);
}
.tf-page-title .breadcrums {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 18px;
}
.tf-page-title .breadcrums a {
	color: var(--White);
	font-size: 24px;
	font-weight: 500;
	line-height: 33px;
}
.tf-page-title .breadcrums a:hover {
	color: var(--Main-yellow);
}
.tf-page-title .breadcrums a.current {
	color: var(--Main-yellow);
	cursor: default;
}
.tf-page-title .breadcrums .icon i {
	font-size: 20px;
	color: var(--White);
}
.tf-page-title h2 {
	color: var(--White);
	margin-bottom: 30px;
}
.tf-page-title.style-2 h2 {
	margin-bottom: 39px;
}
.tf-page-title.style-2 .content-wrap {
	padding-bottom: 43px;
}
.tf-page-title.style-2 .breadcrums {
	margin-bottom: 30px;
}

.image-page-title {
	min-height: 600px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.tag-wrap {
	position: absolute;
	top: 20px;
	right: 20px;
	border-radius: 7px;
	background-color: var(--White);
	padding: 2px 10px 1px 11px;
}
.tag-wrap p {
	color: var(--Black);
	font-weight: 600;
}

.article-blog-item .entry-image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
}
.article-blog-item .entry-meta {
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--Border-2);
}
.article-blog-item .entry-title {
	margin-bottom: 20px;
}
.article-blog-item .entry-title p {
	font-size: 35px;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.02em;
	color: var(--Black);
}
.article-blog-item .entry-text {
	margin-bottom: 25px;
}

.entry-meta .meta-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 70px;
}
.entry-meta .meta-list a {
	font-family: 'Public Sans', sans-serif;
	color: var(--Text);
}
.entry-meta .meta-list a:hover {
	color: var(--Main-black);
}
.entry-meta .meta-list i {
	font-size: 17px;
	color: var(--Text);
}
.entry-meta .meta-list .entry {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 7px;
}
.entry-meta.style-2 .meta-list a {
	color: var(--White);
}
.entry-meta.style-2 .meta-list a:hover {
	color: var(--Main-yellow);
}
.entry-meta.style-2 .meta-list i {
	color: var(--White);
}

.block-quote {
	background-color: var(--Main-gray);
	padding: 35px 61px 38px 50px;
	border-radius: 10px;
}
.block-quote .cite {
	font-size: 27px;
	font-weight: 700;
	line-height: 45px;
	letter-spacing: -0.02em;
	color: var(--Black);
	margin-bottom: 25px;
}
.block-quote a {
	color: var(--Title);
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-left: 70px;
}
.block-quote .bot {
	position: relative;
}
.block-quote .bot::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--Main-black);
}

.tf-sidebar .sb-item {
	padding: 15px;
	border-radius: 10px;
	background-color: var(--Main-gray);
}
.tf-sidebar .sb-title {
	background-color: var(--White);
	border-radius: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 25px;
	margin-bottom: 20px;
}
.tf-sidebar .sb-content {
	padding: 0px 25px;
}
.tf-sidebar .sb-content.sb-category {
	padding-bottom: 26px;
}
.tf-sidebar .sb-content.sb-tag {
	padding: 0px 24px;
}
.tf-sidebar .category-list li:not(:last-child) a {
	padding-bottom: 19px;
	border-bottom: 1px solid var(--Border-2);
}
.tf-sidebar .category-list li:not(:last-child) a:hover {
	border-color: var(--Main-black);
}
.tf-sidebar .category-list li:not(:first-child) a {
	padding-top: 20px;
}
.tf-sidebar .category-list a {
	color: var(--Text);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 22px;
	font-weight: 600;
}
.tf-sidebar .category-list a i {
	color: var(--Text);
}
.tf-sidebar .category-list a:hover {
	color: var(--Main-black);
}
.tf-sidebar .category-list a:hover i {
	color: var(--Main-black);
}
.tf-sidebar .news-list {
	padding-bottom: 23px;
}
.tf-sidebar .news-list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
}
.tf-sidebar .news-list li:not(:last-child) {
	margin-bottom: 20px;
}
.tf-sidebar .news-list .image {
	max-width: 80px;
	border-radius: 10px;
	overflow: hidden;
}
.tf-sidebar .news-list .caption {
	margin-bottom: 7px;
}
.tf-sidebar .news-list .caption a {
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	color: var(--Black);
	display: inline;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(currentColor),
		color-stop(98%, currentColor)
	);
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: left 100%;
}
.tf-sidebar .news-list .caption a:hover {
	background-size: 100% 1px;
}
.tf-sidebar .news-list .date {
	font-size: 14px;
	line-height: 16px;
}
.tf-sidebar .sb-service {
	padding: 0px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.tf-sidebar .sb-service .tf-overlay {
	background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}
.tf-sidebar .sb-service .content {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 2;
}
.tf-sidebar .sb-service p {
	color: var(--White);
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.tf-sidebar .sb-service p span {
	font-weight: 300;
}
.tf-sidebar .sb-contact .sb-content {
	padding: 20px 25px 25px 25px;
}
.tf-sidebar .sb-download {
	padding: 10px 25px 25px 25px;
}

.tag-popular-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-bottom: 16px;
}
.tag-popular-list a {
	font-family: 'Public Sans', sans-serif;
	color: var(--Title);
	display: flex;
	padding: 12px 19px 11px 21px;
	border-radius: 10px;
	background-color: var(--White);
}
.tag-popular-list a:hover {
	background-color: var(--Main-yellow);
}
.tag-popular-list.style-2 {
	padding-bottom: 0px;
}
.tag-popular-list.style-2 a {
	border: 1px solid var(--Border-2);
	font-weight: 500;
	padding: 9px 15px 9px 14px;
}
.tag-popular-list.style-2 a:hover {
	border-color: var(--Main-yellow);
}

.author-post {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 40px;
	background-color: var(--Main-gray);
	border-radius: 10px;
	padding: 32px 40px 32px 39px;
	border: 1px solid rgba(27, 30, 35, 0.1019607843);
}
.author-post .entry-image-author {
	border-radius: 50%;
	max-width: 130px;
	height: 130px;
	overflow: hidden;
	flex-shrink: 0;
}
.author-post .entry-image-author img {
	object-fit: cover;
	height: 100%;
	object-position: center;
}

/*------------ accordion ---------------- */
.accordion .accordion-button {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	background-color: transparent;
}
.accordion .accordion-button::after {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	content: '';
	margin-left: unset;
	background-image: unset;
	width: auto;
	height: max-content;
	display: block;
}
.accordion .accordion-button::before {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.accordion .accordion-button:not(.collapsed) {
	background-color: unset;
	box-shadow: unset;
}
.accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(90deg);
}
.accordion .accordion-button:focus {
	box-shadow: unset;
}
.accordion .accordion-item {
	border-color: transparent;
	background-color: transparent;
}
.accordion .accordion-collapse {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.accordion .accordion-body {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.tf-accordion .accordion-button {
	font-family: 'Manrope', sans-serif;
	padding: 0px 0px 26px;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--Border);
	color: var(--White);
	margin-bottom: 30px;
}
.tf-accordion .accordion-button::after {
	position: absolute;
	color: var(--White);
	content: '\e90c';
	font-family: 'icomoon';
	color: var(--White);
	font-size: 12px;
	right: 10px;
	top: 1px;
}
.tf-accordion .accordion-button.last {
	margin-bottom: 0px;
}
.tf-accordion .accordion-button:not(.collapsed) {
	margin-bottom: 21px;
}
.tf-accordion .accordion-body {
	padding: 0px 0px 30px;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--Text-2);
}
.tf-accordion .accordion-item.item-last .accordion-button {
	margin-bottom: 0px;
}
.tf-accordion.style-2 .accordion-item {
	border-radius: 10px;
	background-color: var(--Bg);
	border: 1px solid var(--Border);
	margin-bottom: 10px;
}
.tf-accordion.style-2 .accordion-button {
	border: unset;
	padding: 17px 18px 16px 24px;
	margin-bottom: 0;
	font-weight: 600;
}
.tf-accordion.style-2 .accordion-button::after {
	color: var(--White);
	right: 25px;
	top: 18px;
}
.tf-accordion.style-2 .accordion-button:not(.collapsed) {
	padding: 19px 18px 16px 24px;
}
.tf-accordion.style-2 .accordion-body {
	padding: 5px 47px 23px 24px;
	color: var(--White);
}
.tf-accordion.style-3 .accordion-item.last {
	margin-bottom: 0px;
}
.tf-accordion.style-3 .accordion-button {
	color: var(--Main-black);
	border-color: var(--Border-2);
}
.tf-accordion.style-3 .accordion-button::after {
	color: var(--Main-black);
}
.tf-accordion.style-3 .accordion-body {
	color: var(--Text);
}
.tf-accordion.style-4 .accordion-item {
	background-color: var(--Main-gray);
	border: unset;
	margin-bottom: 11px;
}
.tf-accordion.style-4 .accordion-item.last {
	margin-bottom: 0px;
}
.tf-accordion.style-4 .accordion-button {
	color: var(--Main-black);
	font-weight: 700;
	padding: 17px 18px 17px 30px;
}
.tf-accordion.style-4 .accordion-button::after {
	color: var(--Main-black);
	right: 21px;
}
.tf-accordion.style-4 .accordion-button:not(.collapsed) {
	padding: 24px 18px 11px 29px;
}
.tf-accordion.style-4 .accordion-body {
	padding: 5px 47px 23px 29px;
	color: var(--Text);
}

.tf-accordion-type-2 {
	max-width: 562px;
	width: 100%;
	position: relative;
	margin-left: auto;
}
.tf-accordion-type-2::after {
	position: absolute;
	left: 19px;
	top: 19px;
	content: '';
	height: 90%;
	width: 1px;
	background-color: var(--Border-6);
	z-index: 1;
}
.tf-accordion-type-2 .accordion-item {
	padding-bottom: 45px;
	border: unset;
	max-width: 452px;
	width: 100%;
	margin-left: auto;
}
.tf-accordion-type-2 .accordion-item.last {
	padding-bottom: 0px;
}
.tf-accordion-type-2 .accordion-button {
	padding: 0px;
	margin-bottom: 25px;
	overflow: visible;
	justify-content: space-between;
}
.tf-accordion-type-2 .accordion-button .title {
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	color: var(--Main-black-3);
}
.tf-accordion-type-2 .accordion-button::after {
	content: none;
}
.tf-accordion-type-2 .accordion-button:not(.collapsed) .number {
	background: var(--Main-green-2);
	color: var(--White);
	box-shadow: 10px 4px 60px 0px rgba(28, 85, 64, 0.5019607843);
}
.tf-accordion-type-2 .accordion-button:not(.collapsed) .icon::after {
	transform: rotate(90deg);
}
.tf-accordion-type-2 .accordion-button:not(.collapsed) .icon::before {
	transform: rotate(90deg);
	visibility: hidden;
	opacity: 0;
}
.tf-accordion-type-2 .accordion-body {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--Text);
	padding: 0px;
	padding-bottom: 30px;
}
.tf-accordion-type-2 .accordion-header {
	position: relative;
}
.tf-accordion-type-2 .number {
	position: absolute;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	left: -110px;
	top: 50%;
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 10px 4px 60px 0px rgba(125, 125, 125, 0.2509803922);
	border: 1px solid var(--Border-6);
	transform: translate(0px, -50%);
	background: var(--White);
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tf-accordion-type-2 .icon {
	height: 11px;
	width: 11px;
	position: relative;
}
.tf-accordion-type-2 .icon::after {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	width: 2px;
	height: 11px;
	background-color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tf-accordion-type-2 .icon::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 2px;
	background-color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.tf-accordion-type-3 .accordion-button {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	padding: 27px 50px 28px 50px;
	gap: 169px;
}
.tf-accordion-type-3 .accordion-button::after {
	position: absolute;
	color: var(--White);
	content: '\e91c';
	font-family: 'icomoon';
	color: var(--Main-black);
	font-size: 12px;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}
.tf-accordion-type-3 .accordion-button:not(.collapsed) .step {
	border: 1px solid var(--Main-black);
	background-color: var(--Main-yellow);
}
.tf-accordion-type-3 .accordion-button:not(.collapsed):not(.step) {
	color: transparent;
}
.tf-accordion-type-3 .accordion-button:not(.collapsed)::after {
	color: transparent;
}
.tf-accordion-type-3 .accordion-item {
	border-radius: 20px;
	border: 1px solid var(--Border-2);
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 20px;
}
.tf-accordion-type-3 .accordion-item.last {
	margin-bottom: 0px;
}
.tf-accordion-type-3 .accordion-item.active {
	background-color: var(--Main-gray);
}
.tf-accordion-type-3 .accordion-item.active .image {
	visibility: visible;
	opacity: 1;
}
.tf-accordion-type-3 .accordion-item.active .accordion-button {
	padding: 48px 50px 30px 50px;
}
.tf-accordion-type-3 .accordion-item.active .fade-1 {
	bottom: 0;
	transition-delay: 0.2s;
	visibility: visible;
	opacity: 1;
}
.tf-accordion-type-3 .accordion-item.active .fade-2 {
	bottom: 0;
	transition-delay: 0.3s;
	visibility: visible;
	opacity: 1;
}
.tf-accordion-type-3 .accordion-item.active .fade-3 {
	bottom: 0;
	transition-delay: 0.4s;
	visibility: visible;
	opacity: 1;
}
.tf-accordion-type-3 .step {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: var(--Main-black);
	display: block;
	border-radius: 7px;
	border: 1px solid var(--Border-2);
	background-color: var(--Main-gray);
	padding: 7px 9px 7px 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tf-accordion-type-3 .image {
	max-width: 520px;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 10px;
	margin-left: auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
}
.tf-accordion-type-3 .image img {
	object-fit: cover;
	height: 100%;
}
.tf-accordion-type-3 .accordion-body {
	padding: 54px 0px 42px 99px;
	max-width: 750px;
	width: 100%;
}
.tf-accordion-type-3 .accordion-body .title {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	margin-bottom: 8px;
}
.tf-accordion-type-3 .benefit-list i {
	font-size: 20px;
}
.tf-accordion-type-3 .benefit-list li:not(:first-child) {
	padding-top: 0px;
}
.tf-accordion-type-3 .benefit-list li:not(:last-child) {
	padding-bottom: 4px;
}

/*------------ map ---------------- */
.box-map {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.box-map .map {
	height: 822px;
	width: 100%;
}
.box-map .map .marker {
	background-size: cover;
	width: 35px;
	height: 50px;
	cursor: pointer;
}

.mapboxgl-ctrl-attrib a,
.mapboxgl-ctrl-attrib.mapboxgl-compact {
	display: none !important;
}

a.mapboxgl-ctrl-logo {
	display: none !important;
}

.mapboxgl-control-container,
.mapboxgl-touch-pan-blocker,
.mapboxgl-scroll-zoom-blocker {
	display: none;
}

/*------------ animation ---------------- */
@keyframes slide-har {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
@keyframes iconBounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-8px);
		-ms-transform: translateY(-8px);
		transform: translateY(-8px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.tf-animate-zoom-in-out {
	-webkit-animation: tf-animate-zoom-in-out 60s linear infinite;
	-khtml-animation: tf-animate-zoom-in-out 60s linear infinite;
	-moz-animation: tf-animate-zoom-in-out 60s linear infinite;
	-ms-animation: tf-animate-zoom-in-out 60s linear infinite;
	-o-animation: tf-animate-zoom-in-out 60s linear infinite;
	animation: tf-animate-zoom-in-out 60s linear infinite;
}

@keyframes tf-animate-zoom-in-out {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes ripple {
	0% {
		width: 50px;
		height: 50px;
		opacity: 1;
	}
	100% {
		width: 80px;
		height: 80px;
		opacity: 0;
	}
}
.tf-animate__box,
.tf-animate__box-2,
.tf-animate__rotate-left,
.tf-animate__rotate-right {
	visibility: hidden;
}
.tf-animate__box.animate__animated,
.tf-animate__box-2.animate__animated,
.tf-animate__rotate-left.animate__animated,
.tf-animate__rotate-right.animate__animated {
	visibility: visible;
}

.tf-animate-1 {
	clip-path: inset(0 100% 0 0);
	-webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-1.active-animate {
	clip-path: inset(0 0 0 0);
	animation-delay: 0.5s;
}
.tf-animate-1.transition-1s {
	-webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-2 {
	clip-path: inset(0 0 100% 0);
	-webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-2.active-animate {
	clip-path: inset(0 0 0 0);
	animation-delay: 0.7s;
}

.tf-animate-3 {
	clip-path: inset(100% 0 0 0);
	-webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-3.active-animate {
	clip-path: inset(0 0 0 0);
	animation-delay: 0.5s;
}

.tf-animate-4 {
	clip-path: inset(0 0 0 100%);
	-webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-4.active-animate {
	clip-path: inset(0 0 0 0);
	animation-delay: 0.5s;
}

.rollInRight {
	animation-name: rollInRight;
	animation-duration: 1s;
	animation-fill-mode: both;
}

@keyframes rollInRight {
	0% {
		opacity: 0;
		transform: translateX(100%) rotate(120deg);
	}
	100% {
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
}
.moveLeftToRight {
	animation: moveLeftRight 1s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

@keyframes moveLeftRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(5px);
	}
}
.tf-trainsition-draw-left {
	clip-path: inset(0 100% 0 0);
	-webkit-transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
	-khtml-transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
	-moz-transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
	-ms-transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
	-o-transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
	transition: 0.8s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.fade-item {
	transform: translateY(100px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.tf-fade-right {
	transform: translateX(30px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.tf-fade-left {
	transform: translateX(-30px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.tf-fade-bottom {
	transform: translateY(30px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.tf-fade-top {
	transform: translateY(-30px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@keyframes tf-spin {
	0% {
		transform: rotate(0deg);
		box-shadow: 0 2px 0 var(--Main-yellow);
	}
	50% {
		transform: rotate(180deg);
		box-shadow: 0 2px 0 var(--Main-yellow);
	}
	100% {
		transform: rotate(360deg);
		box-shadow: 0 2px 0 var(--Main-yellow);
	}
}
@keyframes goTopToBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
@keyframes link-icon {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	49% {
		transform: translateX(10px);
		opacity: 0;
	}
	50% {
		transform: translateX(-10px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
/*------------ hover ---------------- */
.tf-hover .hover-1 {
	overflow: hidden;
}
.tf-hover .hover-1 img {
	width: 100%;
	height: 100%;
	transform: scale(1.01);
	-webkit-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.tf-hover .hover-2 img {
	width: 100%;
	-webkit-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-khtml-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-moz-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-ms-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	-o-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
	transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.tf-hover .hover-5 figure {
	max-width: 410px;
	max-height: 450px;
	width: 100%;
	height: 100%;
}
.tf-hover .hover-5 img {
	margin-left: 30px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	object-fit: cover;
	object-position: left;
}
.tf-hover .hover-14 {
	position: relative;
}
.tf-hover .hover-14::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.3) 100%
	);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.tf-hover:hover .hover-1 img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.tf-hover:hover .hover-2 img {
	-webkit-transform: scale(1.2) rotate(-3deg);
	transform: scale(1.2) rotate(-3deg);
}
.tf-hover:hover .hover-5 img {
	margin-left: 0px;
}
.tf-hover:hover .hover-14::before {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}
.tf-hover-icon .hover-icon i {
	transform: rotateY(0);
	-khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.tf-hover-icon .hover-icon-2 {
	transform: rotateY(0);
	display: flex;
	width: max-content;
	-khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.tf-hover-icon:hover .hover-icon i {
	transform: rotateY(180deg);
}
.tf-hover-icon:hover .hover-icon-2 {
	transform: rotateY(180deg);
	-khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}

/*------------ widgets ---------------- */
.tf-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.icon-chevron-right {
	font-size: 12px;
}

.comment-wrap {
	padding: 49px 50px 49px 49px;
	border-radius: 10px;
	background-color: var(--Main-gray);
	border: 1px solid var(--Border-2);
}
.comment-wrap h3 {
	margin-bottom: 12px;
	line-height: 18px;
}
.comment-wrap.style-2 {
	background-color: var(--White);
}

.wg-feature-item {
	border-radius: 15px;
	padding: 70px;
	background-color: var(--White);
}
.wg-feature-item .icon-item {
	width: 100px;
	height: 100px;
	border-radius: 7px;
	background-color: var(--Main-yellow);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 39px;
}
.wg-feature-item .icon-item i {
	color: var(--Main-black);
	font-size: 60px;
}
.wg-feature-item .title {
	font-size: 27px;
	line-height: 37px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
	margin-bottom: 10px;
}
.wg-feature-item .text {
	margin-bottom: 40px;
}
.wg-feature-item li i {
	color: var(--Main-black);
}
.wg-feature-item li p {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	color: var(--Main-black);
}
.wg-feature-item .line {
	background-color: var(--Border-2);
}
.wg-feature-item.style-2 {
	background-color: var(--Main-yellow);
}
.wg-feature-item.style-2 .icon-item {
	background-color: var(--White);
}
.wg-feature-item.style-3 {
	background-color: var(--Bg-6);
}
.wg-feature-item.style-3 .icon-item {
	background-color: var(--White);
}
.wg-feature-item.style-3 .icon i {
	color: var(--White);
}
.wg-feature-item.style-3 p {
	color: var(--White);
}
.wg-feature-item.style-3 .line {
	background-color: var(--Border);
}

.line {
	display: block;
	width: 100%;
	height: 1px;
}
.line.style-stand {
	height: 100%;
	width: 1px;
}

.card-case .tf-overlay {
	z-index: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	height: 100%;
	background: linear-gradient(180deg, rgba(27, 57, 66, 0) 0%, #1b3942 100%);
}
.card-case .text {
	margin-bottom: 27px;
}
.card-case .content {
	position: absolute;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 1;
	bottom: 38px;
	left: 0;
	right: 0;
	padding: 0px 15px;
	transform: translateY(127px);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.card-case .content p {
	color: var(--White);
}
.card-case .title {
	color: var(--White);
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	display: inline-flex;
	position: relative;
	margin-bottom: 5px;
}
.card-case .title::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--White);
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.card-case .sub-title {
	font-family: 'Public Sans', sans-serif;
}
.card-case .sub-title a {
	font-family: 'Public Sans', sans-serif;
	color: var(--White);
	line-height: 19px;
}
.card-case .sub-title a:hover {
	color: var(--Main-yellow);
}
.card-case .text,
.card-case .tf-btn {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
}
.card-case:hover .tf-overlay {
	top: -100px;
	height: calc(100% + 100px);
}
.card-case:hover .content {
	transform: translateY(0px);
}
.card-case:hover .text,
.card-case:hover .tf-btn {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: visible;
	opacity: 1;
}
.card-case:hover .title::after {
	left: 0;
	right: auto;
	width: 100%;
}
.card-case:hover .fade-1 {
	bottom: 0;
	transition-delay: 0.2s;
	visibility: visible;
	opacity: 1;
}
.card-case:hover .fade-2 {
	bottom: 0;
	visibility: visible;
	opacity: 1;
	transition-delay: 0.3s;
}
.card-case .tf-fade-item {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.card-service {
	border-radius: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 35px 15px 38px 15px;
	background-color: var(--White);
}
.card-service .image {
	max-width: 170px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 38px;
}

.card-service-2 {
	background-color: var(--Main-gray);
	border-radius: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card-service-2 .image {
	border-radius: 10px;
	overflow: hidden;
	margin: 10px 10px 0px;
}
.card-service-2 .content {
	padding: 40px 40px 33px;
}
.card-service-2 .icon {
	margin-bottom: 17px;
}
.card-service-2 .icon i {
	font-size: 55px;
	color: var(--Main-black);
}
.card-service-2 .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	position: relative;
	margin-bottom: 13px;
	display: inline-flex;
}
.card-service-2 .title::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card-service-2 .text {
	margin-bottom: 28px;
}
.card-service-2:hover {
	background-color: var(--White);
	box-shadow: 10px 4px 60px 0px rgba(190, 190, 190, 0.2509803922);
}
.card-service-2:hover .title {
	color: var(--Main-black);
}
.card-service-2:hover .title::after {
	width: 100%;
}
.card-service-2.style-2 {
	background-color: var(--White);
}
.card-service-2.style-2 .content {
	padding: 42px 40px 43px 40px;
}

.box-project {
	position: relative;
	overflow: hidden;
}
.box-project:hover .tf-overlay {
	top: 0%;
}
.box-project:hover .content {
	bottom: 40px;
	visibility: visible;
	opacity: 1;
}
.box-project:hover .fade-1 {
	bottom: 0;
	transition-delay: 0.3s;
	visibility: visible;
	opacity: 1;
}
.box-project:hover .fade-2 {
	bottom: 0;
	visibility: visible;
	opacity: 1;
	transition-delay: 0.4s;
}
.box-project:hover .fade-3 {
	bottom: 0;
	visibility: visible;
	opacity: 1;
	transition-delay: 0.5s;
}
.box-project .tf-overlay {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	top: 100%;
	background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}
.box-project .tag-text-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.box-project .content {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 50px;
	bottom: 10px;
	right: 50px;
	z-index: 2;
	justify-content: space-between;
}
.box-project .title {
	font-size: 27px;
	font-weight: 700;
	line-height: 37px;
	color: var(--White);
}
.box-project .title:hover {
	color: var(--Main-yellow);
}
.box-project .btn-view {
	background-color: var(--Main-yellow);
	position: relative;
}
.box-project .btn-view i {
	font-weight: 700;
	font-size: 18px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Main-black);
	position: relative;
	z-index: 3;
}
.box-project .btn-view:hover i {
	transform: rotate(45deg);
}
.box-project .btn-view:hover::after {
	width: 100%;
	height: 100%;
}
.box-project .btn-view::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 0%;
	height: 0%;
	background-color: var(--White);
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	z-index: 2;
}

.tf-fade-item {
	position: relative;
	bottom: -20px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
}

.tag-text-wrap {
	font-family: 'Public Sans', sans-serif;
	color: var(--White);
}
.tag-text-wrap a {
	font-family: 'Public Sans', sans-serif;
	color: var(--White);
	line-height: 19px;
}
.tag-text-wrap a:hover {
	color: var(--Main-yellow);
}
.tag-text-wrap.style-2 {
	color: var(--Text);
}
.tag-text-wrap.style-2 a {
	color: var(--Text);
}
.tag-text-wrap.style-2 a:hover {
	color: var(--Main-golden);
}

.icon.style-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
}
.social-list a {
	color: var(--Text-4);
}
.social-list a:hover {
	color: var(--White);
}
.social-list.style-2 {
	gap: 10px;
}
.social-list.style-2 a {
	width: 35px;
	height: 35px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1.2px solid var(--Border-2);
}
.social-list.style-2 a:hover {
	background-color: var(--Main-black);
	border-color: var(--Main-black);
}
.social-list.style-2 i {
	font-size: 12px;
}
.social-list.style-3 a:hover {
	color: var(--Main-black);
}
.social-list.style-4 {
	gap: 5px;
}
.social-list.style-4 a {
	width: 35px;
	height: 35px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--Main-gray);
	color: var(--Text);
	border-radius: 3px;
}
.social-list.style-4 a:hover {
	background-color: var(--Main-black);
}
.social-list.style-4 a:hover i {
	color: var(--White);
}
.social-list.style-4 i {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 14px;
}
.social-list.style-4.w-h-45 a {
	width: 45px;
	height: 45px;
}
.social-list.style-5 a {
	background-color: var(--White);
}

.card-member {
	max-width: 457px;
	width: 100%;
	position: relative;
	border-radius: 20px 20px 20px 0px;
	overflow: hidden;
}
.card-member.first {
	border-radius: 0px 10px 10px 0px;
}
.card-member.last {
	border-radius: 10px 0px 0px 0px;
}
.card-member .content {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 350px;
	width: 100%;
	margin-right: auto;
	background-color: var(--White);
	border-radius: 0px 10px 0px 0px;
	padding: 21px 15px 30px 50px;
	z-index: 2;
	transform: translateY(60px);
}
.card-member a {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
}
.card-member .duty {
	margin-bottom: 14px;
}
.card-member:hover .content {
	background-color: var(--Main-yellow);
	transform: translateY(0px);
}
.card-member:hover .social-list li {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}
.card-member .social-list li {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-20px);
}
.card-member .social-list li:first-child {
	transition-delay: 0.2s;
}
.card-member .social-list li:nth-child(2) {
	transition-delay: 0.3s;
}
.card-member .social-list li:nth-child(3) {
	transition-delay: 0.4s;
}
.card-member .social-list li:nth-child(4) {
	transition-delay: 0.5s;
}
.card-member.style-2 {
	border-radius: 10px;
	position: relative;
}
.card-member.style-2 .image {
	position: relative;
}
.card-member.style-2 .image img {
	object-fit: cover;
}
.card-member.style-2 .content {
	position: absolute;
	bottom: 30px;
	right: 30px;
	border-radius: 10px;
	text-align: center;
	padding: 19px 15px 20px 15px;
	transform: translateY(0) translateX(-50%);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: calc(100% - 30px);
	left: 50%;
}
.card-member.style-2 .duty {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: -40px;
}
.card-member.style-2 .social-list {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transform: translateY(200%);
}
.card-member.style-2 .name:hover {
	color: var(--Text);
}
.card-member.style-2:hover .content {
	background-color: var(--White);
	padding: 23px 15px 30px 15px;
}
.card-member.style-2:hover .duty {
	margin-bottom: 15px;
}
.card-member.style-2:hover .social-list {
	transform: translateY(0);
}

.card-guide {
	border-radius: 10px;
	border: 1px solid var(--Border-5);
	padding: 10px 10px 24px 10px;
}
.card-guide .duty {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin-top: 6px;
}
.card-guide .image {
	border-radius: 10px;
	overflow: hidden;
}
.card-guide .content {
	position: relative;
	text-align: center;
	padding-top: 48px;
}
.card-guide .social-list {
	position: absolute;
	top: -23px;
	left: 50%;
	width: max-content;
	transform: translate(-50%, -100%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card-guide .social-list li {
	transform: translateY(10px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.card-guide .social-list.active {
	top: -30px;
}
.card-guide .social-list.active li:nth-child(1) {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}
.card-guide .social-list.active li:nth-child(2) {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.1s;
}
.card-guide .social-list.active li:nth-child(3) {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.2s;
}
.card-guide .social-list.active li:nth-child(4) {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.3s;
}
.card-guide .icon {
	position: absolute;
	width: 46px;
	height: 46px;
	box-shadow: 7px 4px 30px 0px rgba(22, 56, 56, 0.2);
	top: 0;
	left: 50%;
	background-color: var(--White);
	transform: translate(-50%, -50%);
	font-weight: 600;
	font-size: 25px;
	color: var(--Main-green);
	cursor: pointer;
}
.card-guide .icon span {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	z-index: 3;
}
.card-guide .icon:hover span {
	transform: rotate(90deg);
	color: var(--White);
	transition-delay: 0.1s;
}
.card-guide .icon:hover::after {
	width: 100%;
	height: 100%;
}
.card-guide .icon::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 0%;
	height: 0%;
	background-color: var(--Main-yellow);
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	z-index: 2;
}
.card-guide .name {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
}

.odometer {
	font-family: 'Manrope', sans-serif !important;
	font-size: 55px;
	font-weight: 700;
	line-height: 75px;
	color: var(--Main-black);
}
.odometer .odometer-value {
	width: 100%;
	text-align: right !important;
}
.odometer .odometer-digit {
	vertical-align: unset !important;
}
.odometer .odometer-formatting-mark {
	display: none;
}

.sub-odo {
	font-family: 'Manrope', sans-serif;
	font-size: 55px;
	font-weight: 700;
	line-height: 50px;
	color: var(--Main-black);
	position: relative;
	top: 13px;
}

.wg-counter.style-2 .odometer,
.wg-counter.style-2 .sub-odo {
	color: var(--Bg-2);
	font-size: 75px;
	font-weight: 600;
	line-height: 82px;
	letter-spacing: -0.03em;
}
.wg-counter.style-2 .sub-odo {
	top: 20px;
}
.wg-counter.style-2.type-2 .sub-odo,
.wg-counter.style-2.type-2 .odometer {
	font-size: 52px;
	font-weight: 700;
	line-height: 62px;
	letter-spacing: -0.02em;
}
.wg-counter.style-2.type-2 .sub-odo {
	top: 12px;
}
.wg-counter.style-3 .odometer,
.wg-counter.style-3 .sub-odo {
	font-size: 52px;
	font-weight: 700;
	line-height: 62px;
	letter-spacing: -0.02em;
	color: var(--White);
}
.wg-counter.style-4 .odometer,
.wg-counter.style-4 .sub-odo {
	font-size: 180px;
	font-weight: 250;
	line-height: 130px;
	letter-spacing: -0.02em;
	color: var(--Main-yellow);
}
.wg-counter.style-4 .sub-odo {
	top: 60px;
}
.wg-counter.style-5 .odometer,
.wg-counter.style-5 .sub-odo {
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	color: var(--White);
}
.wg-counter.style-5 .sub-odo {
	top: 5px;
}
.wg-counter.style-6.text-white .sub-odo,
.wg-counter.style-6.text-white .odometer {
	color: var(--White);
}
.wg-counter.style-6 .sub-odo {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: -0.02em;
	top: -13px;
}
.wg-counter.style-7 .odometer {
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
	color: var(--White);
}
.wg-counter.style-7 .sub-odo {
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	color: var(--White);
	top: 4px;
}
.wg-counter.style-8 {
	position: relative;
}
.wg-counter.style-8 .odometer,
.wg-counter.style-8 .sub-odo {
	font-size: 80px;
	font-weight: 600;
	line-height: 109px;
	letter-spacing: -0.05em;
}
.wg-counter.style-8 .sub-odo {
	top: 46%;
	transform: translate(0px, -50%);
	display: inline-block;
	position: absolute;
}
.wg-counter.style-9 .odometer,
.wg-counter.style-9 .sub-odo {
	font-size: 65px;
	font-weight: 700;
	line-height: 76px;
	letter-spacing: -0.03em;
}

.counter-wrap .sub-counter {
	font-weight: 500;
}
.counter-wrap.style-2 {
	position: relative;
	width: max-content;
}
.counter-wrap.style-2 .wg-counter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.counter-wrap.style-2 .sub-counter {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
	color: var(--Text-2);
}
.counter-wrap.style-3 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: var(--Bg-7);
	border-radius: 20px;
	border: 1px solid var(--Border-5);
	padding: 4px 24px;
}
.counter-wrap.style-3 .sub-counter {
	color: var(--Main-green);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
}
.counter-wrap.style-4 {
	max-width: max-content;
	position: relative;
}
.counter-wrap.style-4 .relative {
	padding: 5px;
	border-radius: 50%;
	border: 2px solid var(--White);
	max-width: max-content;
	margin-bottom: 20px;
}
.counter-wrap.style-4 .wg-counter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.counter-wrap.style-4 .sub-counter {
	color: var(--White);
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
}

.wg-testimonial {
	background-color: var(--White);
	border-radius: 10px;
	padding: 50px 65px 50px 70px;
}
.wg-testimonial.default {
	padding: 0px;
}
.wg-testimonial .icon {
	background-color: var(--Main-yellow);
}
.wg-testimonial .icon.style-circle {
	width: 65px;
	height: 65px;
}
.wg-testimonial .icon i {
	color: var(--Main-black);
	transform: translateX(21px);
	font-size: 33px;
}
.wg-testimonial .say {
	font-size: 30px;
	font-weight: 700;
	line-height: 45px;
	color: var(--Main-black);
}
.wg-testimonial .name {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	color: var(--Main-black);
	display: block;
	margin-bottom: 10px;
}
.wg-testimonial .name:hover {
	color: var(--Text-2);
}
.wg-testimonial .duty {
	font-size: 14px;
	line-height: 16px;
}
.wg-testimonial.style-2 {
	border-radius: 10px;
	padding: 30px 50px 35px;
	background-color: var(--White);
}
.wg-testimonial.style-2 .avatar {
	max-width: 65px;
	border-radius: 50%;
	overflow: hidden;
}
.wg-testimonial.style-2 .author-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 25px;
	align-items: center;
}
.wg-testimonial.style-2 .infor {
	height: max-content;
}
.wg-testimonial.style-2 .infor .name {
	margin-bottom: 6px;
}
.wg-testimonial.style-2 .name {
	color: var(--Bg-2);
	font-size: 18px;
}
.wg-testimonial.style-2 .name:hover {
	color: var(--Text-2);
}
.wg-testimonial.style-2 .top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 29px;
	margin-bottom: 35px;
	border-bottom: 1px solid var(--Border-2);
}
.wg-testimonial.style-2 .icon {
	background-color: transparent;
	width: 85px;
	height: 85px;
	background: linear-gradient(180deg, #f9d67c 0%, rgba(249, 214, 124, 0) 100%);
}
.wg-testimonial.style-2 .icon i {
	font-size: 47px;
	color: var(--Bg-2);
	transform: translateX(-15px);
}
.wg-testimonial.style-2 .say {
	font-size: 20px;
	line-height: 35px;
	color: var(--Bg-2);
}
.wg-testimonial.style-3 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	border-radius: 10px;
	background-color: var(--Bg-7);
	padding: 22px 30px 0px 59px;
	border: 1px solid var(--Border-5);
	gap: 22px;
	align-items: center;
}
.wg-testimonial.style-3 .content-left {
	padding-bottom: 27px;
}
.wg-testimonial.style-3 .image-wrap {
	flex-shrink: 0;
	position: relative;
}
.wg-testimonial.style-3 .item-circle {
	position: absolute;
	background: linear-gradient(180deg, rgba(22, 56, 56, 0.1) 0%, rgba(22, 56, 56, 0) 100%);
	width: 300px;
	height: 300px;
	border-radius: 50%;
	top: 78px;
	right: 0px;
}
.wg-testimonial.style-3 .icon {
	width: 85px;
	height: 85px;
	background-color: transparent;
	background: linear-gradient(180deg, rgba(27, 57, 66, 0.2) 0%, rgba(27, 57, 66, 0) 100%);
}
.wg-testimonial.style-3 .icon i {
	font-size: 47px;
	color: var(--Bg-2);
	transform: translateX(-15px);
}
.wg-testimonial.style-3 .say {
	font-size: 24px;
	font-weight: 700;
	line-height: 35px;
	color: var(--Bg-2);
}
.wg-testimonial.style-3 .name {
	font-size: 18px;
	color: var(--Bg-2);
	margin-bottom: 6px;
}
.wg-testimonial.style-3 .name:hover {
	color: var(--Text-2);
}
.wg-testimonial.style-4 {
	border-radius: 10px;
	background-color: var(--White);
	padding: 30px 30px 18px;
	border: 1px solid var(--White);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-testimonial.style-4:hover {
	border: 1px solid var(--Border-6);
}
.wg-testimonial.style-4 .top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 19px;
	padding-bottom: 29px;
	border-bottom: 1px solid var(--Border-6);
}
.wg-testimonial.style-4 .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wg-testimonial.style-4 .bot span {
	padding-left: 4px;
	font-size: 14px;
}
.wg-testimonial.style-4 .bot .flex {
	align-items: center;
}
.wg-testimonial.style-4 .bot .name {
	margin-bottom: 0px;
}
.wg-testimonial.style-4 .name {
	font-size: 18px;
}
.wg-testimonial.style-4 .image {
	max-width: 100px;
	width: 100%;
	border-radius: 50%;
	overflow: hidden;
}
.wg-testimonial.style-4 .say {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--Main-black-3);
}
.wg-testimonial.style-4 .star-rate i {
	color: var(--Main-green-2);
}

.card-blog-item:hover .tf-btn::before {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
}
.card-blog-item:hover .tf-btn i {
	animation: link-icon 0.3s linear;
}
.card-blog-item .entry-image {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-bottom: 32px;
}
.card-blog-item .entry-image .entry-date {
	position: absolute;
	border-radius: 7px;
	background-color: var(--White);
	bottom: 10px;
	right: 10px;
	padding: 10px 14px 12px 15px;
}
.card-blog-item .entry-image .day {
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	color: var(--Main-black);
}
.card-blog-item .entry-image .month {
	line-height: 18px;
}
.card-blog-item .meta-list {
	gap: 20px;
}
.card-blog-item .meta-list a:hover {
	color: var(--Black);
}
.card-blog-item .line {
	width: 20px;
	height: 1px;
	background-color: var(--Border-7);
}
.card-blog-item .title {
	color: var(--Main-black);
	font-size: 24px;
	display: block;
	line-height: 35px;
}
.card-blog-item .title:hover {
	color: var(--Text-2);
}
.card-blog-item.style-2 {
	box-shadow: 10px 4px 60px 0px rgba(182, 182, 182, 0.2509803922);
}
.card-blog-item.style-2 .tag-wrap {
	top: 15px;
	right: 15px;
}
.card-blog-item.style-2 .content {
	padding: 30px 40px;
}
.card-blog-item.style-2 .entry-image {
	border-radius: 10px 10px 0px 0px;
	margin-bottom: 0px;
}
.card-blog-item.style-2 .meta-list {
	gap: 15px 26px;
	flex-wrap: wrap;
}
.card-blog-item.style-2 .title {
	font-size: 22px;
	line-height: 30px;
	color: var(--Bg-2);
}
.card-blog-item.style-2 .title:hover {
	color: var(--Text-2);
}
.card-blog-item.style-3 .entry-meta ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 20px;
}
.card-blog-item.style-3 .entry-meta .sub {
	font-weight: 600;
	line-height: 19px;
	color: var(--Main-green-2);
}
.card-blog-item.style-3 .entry-meta a {
	font-family: 'Public Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
}
.card-blog-item.style-3 .dot {
	display: block;
	width: 5px;
	height: 5px;
	background-color: var(--Border-6);
	border-radius: 50%;
}
.card-blog-item.style-4 .entry-meta {
	padding-bottom: 21px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--Border-8);
}
.card-blog-item.style-4 .entry-image {
	margin-bottom: 21px;
}
.card-blog-item.style-4 .date {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: 'Public Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
}
.card-blog-item.style-4 .title {
	display: inline;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(currentColor),
		color-stop(98%, currentColor)
	);
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: left 100%;
}
.card-blog-item.style-4 .title:hover {
	background-size: 100% 1px;
	color: var(--Main-black);
}

.wg-pricing {
	border-radius: 10px;
	border: 1px solid var(--Border-2);
	background-color: var(--Main-gray);
	padding: 38px 45px 40px 39px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-pricing .plan {
	width: max-content;
	border-radius: 10px;
	background-color: var(--White);
	padding: 7px 15px;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-pricing .plan p {
	font-weight: 500;
	line-height: 19px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-pricing .text {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-pricing .price {
	font-size: 52px;
	font-weight: 700;
	line-height: 61.1px;
	letter-spacing: -0.02em;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--Main-black);
}
.wg-pricing .price span {
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.wg-pricing .benefit-list li {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--Border-8);
	padding-bottom: 14px;
}
.wg-pricing .benefit-list li:not(:last-child) {
	padding-bottom: 14px;
}
.wg-pricing .benefit-list i,
.wg-pricing .benefit-list p {
	color: var(--Main-black);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-pricing .benefit-list .icon-xmark {
	font-size: 13px;
}
.wg-pricing.style-2 {
	position: relative;
}
.wg-pricing.style-2 .rating-group {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--Main-yellow);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	border-radius: 5px;
	padding: 7px 13px;
}
.wg-pricing.style-2 .rating-group i {
	color: var(--Main-black);
}
.wg-pricing:hover {
	background-color: var(--Main-black);
}
.wg-pricing:hover .plan p {
	color: var(--Main-black);
}
.wg-pricing:hover p {
	color: var(--White);
}
.wg-pricing:hover .benefit-list i {
	color: var(--White);
}
.wg-pricing:hover .benefit-list li {
	border-color: var(--Border);
}
.wg-pricing:hover .tf-btn {
	background-color: var(--Main-yellow);
}

.box-icon {
	border-radius: 15px;
	padding: 48px 64px 44px 59px;
	border: 1px solid var(--White);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.box-icon:hover {
	border-color: var(--Main-black);
}
.box-icon:hover .tf-btn-readmore {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}
.box-icon .icon {
	margin-bottom: 32px;
	display: flex;
	width: max-content;
}
.box-icon .icon i {
	font-size: 55px;
	color: var(--Main-black);
}
.box-icon .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
	margin-bottom: 13px;
	display: block;
}
.box-icon .tf-btn-readmore {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transform: translateY(30px);
}
.box-icon.default {
	background-color: var(--White);
	padding: 48px 64px 28px 59px;
}
.box-icon.default:hover {
	padding: 48px 64px 47px 59px;
}
.box-icon.default:hover .text {
	margin-bottom: 28px;
}
.box-icon.default .text {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 0;
}
.box-icon.style-2 {
	padding: 39px 52px 32px 49px;
	background-color: var(--White);
	border-radius: 10px;
}
.box-icon.style-2 .icon {
	background-color: var(--Main-yellow);
	width: 70px;
	height: 70px;
	margin-bottom: 30px;
}
.box-icon.style-2 .icon i {
	font-size: 40px;
}
.box-icon.style-2 .title {
	font-size: 22px;
	margin-bottom: 8px;
}
.box-icon.style-3 {
	background-color: var(--Bg-7);
	border-color: var(--Border-5);
	padding: 39px 53px 33px 49px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 10px;
}
.box-icon.style-3 .text {
	flex-grow: 1;
}
.box-icon.style-3 .icon {
	box-shadow: 10px 4px 4px 0px rgba(22, 56, 56, 0.1019607843);
	background-color: var(--White);
	border: 1px solid var(--Border-5);
	border-radius: 10px;
	width: 75px;
	height: 75px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 30px;
}
.box-icon.style-3 .icon i {
	font-size: 45px;
	color: var(--Main-green);
}
.box-icon.style-3 .title {
	color: var(--Main-green);
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 11px;
}
.box-icon.style-3 .title:hover {
	color: var(--Text);
}
.box-icon.style-3:hover {
	border-color: var(--Main-green);
}
.box-icon.style-3:hover .icon {
	background-color: var(--Main-green);
}
.box-icon.style-3:hover .icon i {
	color: var(--White);
}
.box-icon.style-4 {
	position: relative;
	overflow: hidden;
	background-color: var(--Main-gray-4);
	border: unset;
	padding: 40px 41px 34px 40px;
}
.box-icon.style-4 .image-wrap {
	top: 0;
	left: 0;
	position: absolute;
	width: 0%;
	height: 100%;
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.box-icon.style-4 .image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.box-icon.style-4 .image-wrap .tf-overlay {
	background-color: var(--Bg-8);
}
.box-icon.style-4 .icon {
	margin-bottom: 25px;
}
.box-icon.style-4 .icon i {
	font-size: 50px;
	color: var(--Main-black-3);
}
.box-icon.style-4 .title {
	color: var(--Main-black-3);
	margin-bottom: 50px;
	font-size: 20px;
	line-height: 27px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.box-icon.style-4 .text {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.box-icon.style-4:hover .image-wrap {
	width: 100%;
}
.box-icon.style-4:hover i {
	color: var(--White);
}
.box-icon.style-4:hover .title,
.box-icon.style-4:hover p {
	color: var(--White);
}
.box-icon.style-6 {
	padding: 0px;
	border: unset;
}
.box-icon.style-6.type-2 {
	padding: 35px 50px 24px;
	border-radius: 10px;
	background-color: var(--Main-gray);
}
.box-icon.style-6.type-2 .icon {
	margin-bottom: 30px;
}
.box-icon.style-6.type-2 .icon i {
	font-size: 50px;
	display: flex;
}
.box-icon.style-6.type-2 .title {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 10px;
}
.box-icon.style-6.type-2 .title:hover {
	color: var(--Main-golden);
}
.box-icon.style-6.type-2 .text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
.box-icon.style-7 {
	border-radius: unset;
	border-color: var(--Border-6);
	padding: 38px 37px 29px 48px;
}
.box-icon.style-7 .step {
	border-radius: 10px;
	background-color: var(--White);
	border: 1px solid var(--Border-10);
	width: max-content;
	padding: 4px 12px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.box-icon.style-7 .step span {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--Main-green-2);
	text-transform: uppercase;
}
.box-icon.style-7 .title {
	margin-bottom: 50px;
	font-size: 20px;
	line-height: 27px;
}
.box-icon.style-7 .icon {
	margin-bottom: 52px;
}
.box-icon.style-7:hover {
	background-color: var(--Main-gray-4);
	border-color: var(--Main-gray-4);
}
.box-icon.style-7:hover .step {
	border-color: var(--Main-gray-4);
}
.box-icon.style-8 {
	border-radius: 10px;
	border: unset;
	position: relative;
	padding: 40px 55px 25px 50px;
	overflow: hidden;
	background-color: var(--White);
}
.box-icon.style-8 .title {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 40px;
}
.box-icon.style-8 .icon {
	margin-bottom: 30px;
}
.box-icon.style-8 .line {
	background-color: var(--Border-2);
	margin-bottom: 31px;
}
.box-icon.style-8 .image {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateY(-100%);
	-webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	-o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
	transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.box-icon.style-8 .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.box-icon.style-8:hover .image {
	transform: translateY(0%);
}

.card-project {
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card-project .image-wrap {
	padding-bottom: 86px;
}
.card-project .image {
	border-radius: 10px;
	overflow: hidden;
}
.card-project .content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	background-color: var(--White);
	border-radius: 15px;
	padding: 30px 55px 40px;
	transform: translateY(156px);
	border: 1px solid var(--White);
	pointer-events: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card-project .text {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(30px);
}
.card-project .title {
	position: relative;
}
.card-project .btn-view {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	position: relative;
	border: 1px solid var(--Border-2);
	transform: translateY(30px);
}
.card-project .btn-view span {
	font-size: 22px;
	font-weight: 900;
	line-height: 22px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	z-index: 3;
}
.card-project .btn-view:hover {
	background-color: var(--Main-black);
}
.card-project .btn-view:hover span {
	transform: rotate(90deg);
	color: var(--White);
}
.card-project:hover {
	overflow: visible;
}
.card-project:hover .content {
	padding: 35px 55px 40px;
	transform: translateY(0px);
	box-shadow: 10px 4px 60px 0px rgba(182, 182, 182, 0.2509803922);
	border: 1px solid var(--Border-5);
	pointer-events: all;
}
.card-project:hover .text {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transition-delay: 0.1s;
}
.card-project:hover .btn-view {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transition-delay: 0.2s;
}
.card-project.style-2 {
	position: relative;
}
.card-project.style-2 .tf-overlay {
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}
.card-project.style-2 .title {
	font-size: 27px;
	line-height: 37px;
	color: var(--White);
}
.card-project.style-2 .content {
	z-index: 2;
	bottom: 44px;
	left: 50px;
	background-color: unset;
	border-radius: unset;
	padding: unset;
	transform: translateY(125px);
	border: unset;
	pointer-events: unset;
	align-items: start;
	text-align: left;
}
.card-project.style-2 .text {
	color: var(--White);
}
.card-project.style-2 .tf-btn-readmore {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
}
.card-project.style-2:hover {
	overflow: hidden;
}
.card-project.style-2:hover .content {
	box-shadow: unset;
	transform: translateY(0px);
}
.card-project.style-2:hover .tf-btn-readmore {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transition-delay: 0.2s;
}

.progress {
	border-radius: unset;
	background-color: transparent;
}
.progress .progress-bar {
	background-color: unset;
	background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.progress.style-2 {
	border-radius: 10px;
	height: 20px;
}

.box-benefit {
	border-radius: 10px;
	padding: 40px 42px 34px 40px;
	background-color: var(--Main-gray-2);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.box-benefit .icon {
	width: 40px;
	height: 40px;
	border: 1px solid var(--Border-4);
	background-color: var(--White);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 15px;
}
.box-benefit .icon span {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 14px;
}
.box-benefit .title {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	color: var(--Bg-2);
	margin-bottom: 51px;
	display: block;
}
.box-benefit .title:hover {
	color: var(--Text-2);
}
.box-benefit .line {
	display: block;
	margin-bottom: 41px;
	width: 135px;
	height: 1px;
	background-color: var(--Border-4);
}
.box-benefit:hover {
	background-color: var(--White);
	box-shadow: 10px 4px 60px 0px rgba(181, 181, 181, 0.2509803922);
}
.box-benefit:hover .icon {
	background-color: var(--Main-yellow-2);
}
.box-benefit:hover .icon span {
	color: var(--Bg-2);
}

.wg-career {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	padding: 9px 10px 9px 10px;
	border-radius: 10px;
	border: 1px solid var(--Border-2);
	gap: 20px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-career .icon {
	border-radius: 10px;
	background-color: var(--Main-gray);
	width: 70px;
	height: 70px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-career .icon i {
	color: var(--Main-black);
	font-size: 40px;
}
.wg-career a {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--Main-black);
}
.wg-career a span {
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
}
.wg-career a:hover {
	color: var(--Main-green-2);
}
.wg-career:hover {
	background-color: var(--Main-yellow);
	border-color: var(--Main-yellow);
}
.wg-career:hover a {
	font-size: 22px;
	line-height: 30px;
}
.wg-career:hover .icon {
	background-color: var(--White);
}

.wg-case {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 9px;
	position: relative;
	border-radius: 0px;
	border-bottom: 1px solid var(--Border-6);
	border-top: 1px solid var(--White);
	border-right: 1px solid var(--White);
	border-left: 1px solid var(--White);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
}
.wg-case.hidden {
	display: none;
}
.wg-case .image-left {
	width: 50%;
}
.wg-case .image {
	margin-left: calc(100% - 410px);
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 410px;
	min-height: 200px;
	transition:
		background-position 8s linear,
		margin-left 0.3s ease;
}
.wg-case .tag-text-wrap {
	margin-bottom: 4px;
}
.wg-case .number {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	left: 0;
	top: 50%;
	background-color: var(--White);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--Border-6);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: visible;
	opacity: 1;
}
.wg-case .number p {
	color: var(--Main-black);
}
.wg-case .number.s2 {
	right: 51%;
	left: unset;
	top: 0;
	transform: translateY(-100%);
	visibility: hidden;
	opacity: 0;
}
.wg-case .content {
	padding-left: 70px;
	width: 50%;
}
.wg-case .title a:hover {
	color: var(--Main-golden);
}
.wg-case:hover {
	border-radius: 10px;
	background-color: var(--Main-gray-4);
	border-color: var(--Border-9);
}
.wg-case:hover .image {
	margin-left: 0px;
	background-position: bottom;
}
.wg-case:hover .number {
	top: 0;
	transform: translateY(-100%);
	visibility: hidden;
	opacity: 0;
}
.wg-case:hover .number.s2 {
	top: 32px;
	transform: translateY(0%);
	transition-delay: 0.2s;
	visibility: visible;
	opacity: 1;
}

.text-rotate {
	display: flex;
	justify-content: center;
	align-items: center;
	height: max-content;
	width: max-content;
	margin: 0;
	background-color: transparent;
	animation: rotate 10s linear infinite;
}
.text-rotate .circle {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	position: relative;
}
.text-rotate .text span {
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	position: absolute;
	top: 0;
	left: 50%;
	transform-origin: 0 110px;
	color: var(--Main-black);
	padding-top: 9px;
}

.wg-curve-text {
	position: relative;
	width: max-content;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background-color: var(--Main-yellow);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wg-curve-text .icon {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-color: var(--White);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wg-curve-text .icon i {
	color: var(--Main-black);
	font-size: 40px;
}
.wg-curve-text.style-2 {
	background-color: var(--White);
	width: 200px;
	height: 200px;
}
.wg-curve-text.style-2 .circle {
	width: 200px;
	height: 200px;
}
.wg-curve-text.style-2 .text span {
	color: var(--Bg-2);
	transform-origin: 0 100px;
	padding-top: 0px;
}
.wg-curve-text.style-2 .icon {
	background-color: var(--Main-gray);
	border: 1px solid var(--Border-4);
}
.wg-curve-text.style-2 .icon i {
	color: var(--Bg-2);
}
.wg-curve-text.style-3 {
	background-color: var(--Main-green);
}
.wg-curve-text.style-3 .text span {
	color: var(--White);
}
.wg-curve-text.style-3 .icon i {
	color: var(--Main-green);
}
.wg-curve-text.style-4 {
	background-color: var(--Main-golden);
}
.wg-curve-text.style-4 .text span {
	color: var(--White);
}
.wg-curve-text.style-4 .icon i {
	color: var(--Main-green-2);
}

.video-wrap a {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--White);
	line-height: 19px;
}
.video-wrap a:hover {
	color: var(--Main-yellow-2);
}
.video-wrap a:hover i {
	color: var(--Main-yellow-2);
}
.video-wrap .icon {
	border: 1px solid var(--Border);
	background-color: var(--Bg-9);
	position: relative;
}
.video-wrap .icon i {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--White);
	transform: translateX(2px);
}
.video-wrap .icon .bg {
	content: '';
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 200ms;
	background-color: var(--Bg-9);
	z-index: 3;
}
.video-wrap .icon .wave-3 {
	background-color: var(--Bg-9);
	content: '';
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: 2;
}
.video-wrap.style-2 {
	position: relative;
}
.video-wrap.style-2 a {
	width: 100px;
	height: 100px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid;
	backdrop-filter: blur(80px);
	background: linear-gradient(
		144.6deg,
		rgba(224, 224, 224, 0.3) 13.99%,
		rgba(227, 227, 227, 0.35) 83.93%
	);
	border-radius: 50%;
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-khtml-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.video-wrap.style-2 a i {
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-khtml-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	font-size: 18px;
}
.video-wrap.style-2 a:hover {
	height: 105px;
	width: 105px;
	background-color: transparent;
	border: 1px solid var(--White);
	background-color: unset;
	backdrop-filter: unset;
}
.video-wrap.style-2 a:hover i {
	color: var(--White);
}
.video-wrap.style-3 {
	position: relative;
	border-radius: 7px;
	overflow: hidden;
}
.video-wrap.style-3 .tf-overlay {
	background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.7) 100%);
	z-index: 0;
}
.video-wrap.style-3 .popup-youtube {
	position: absolute;
	bottom: 25px;
	left: 25px;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	gap: 20px;
}
.video-wrap.style-3 .wave {
	position: absolute;
	display: block;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-color: var(--White);
	border-radius: 50%;
	animation: ripple 1s infinite;
}
.video-wrap.style-3 .icon {
	position: relative;
	background-color: var(--White);
}
.video-wrap.style-3 .icon i {
	color: var(--Main-green-3);
}
.video-wrap.style-4 {
	position: relative;
}
.video-wrap.style-4 a {
	display: block;
	width: 100px;
	height: 100px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	background-color: var(--White);
	border-radius: 50%;
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-khtml-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-moz-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-ms-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	-o-transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.video-wrap.style-4 a i {
	color: var(--Main-black);
	font-size: 18px;
}
.video-wrap.style-4 a:hover {
	border-color: var(--Main-black);
	background-color: var(--Main-black);
}
.video-wrap.style-4 a:hover i {
	color: var(--White);
}

.progress-circle-2 {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	transform: rotate(90deg) rotateY(180deg);
	background: conic-gradient(
		var(--Main-yellow) 0deg,
		var(--Main-yellow) 334.8deg,
		transparent 334.8deg,
		transparent 360deg
	);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black 0);
	mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black 0);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.progress-circle-2.per86 {
	background: conic-gradient(
		var(--Main-yellow) 0deg,
		var(--Main-yellow) 309.6deg,
		transparent 309.6deg,
		transparent 360deg
	);
}
.progress-circle-2.per79 {
	background: conic-gradient(
		var(--Main-yellow) 0deg,
		var(--Main-yellow) 284.4deg,
		transparent 284.4deg,
		transparent 360deg
	);
}
.progress-circle-2.style-2 {
	width: 86px;
	height: 86px;
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black 0);
	background: conic-gradient(
		var(--White) 0deg,
		var(--White) 334.8deg,
		transparent 334.8deg,
		transparent 360deg
	);
}
.progress-circle-2.style-2.per86 {
	background: conic-gradient(
		var(--White) 0deg,
		var(--White) 309.6deg,
		transparent 309.6deg,
		transparent 360deg
	);
}

.circle-container {
	position: relative;
	width: 130px;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.circle-container .circle {
	transform: rotateX(180deg);
	stroke: var(--Main-yellow);
}
.circle-container .progress-circle-93 {
	stroke-dasharray: 392.7;
	stroke-dashoffset: 27.489;
	transition: stroke-dashoffset 1s;
}
.circle-container .progress-circle-86 {
	stroke-dasharray: 392.7;
	stroke-dashoffset: 54.978;
	transition: stroke-dashoffset 1s;
}
.circle-container .progress-circle-79 {
	stroke-dasharray: 392.7;
	stroke-dashoffset: 82.467;
	transition: stroke-dashoffset 1s;
}
.circle-container.style-2 {
	width: 86px;
	height: 86px;
	overflow: visible;
}
.circle-container.style-2 .progress-circle-86 {
	stroke-dasharray: 270.1776;
	stroke-dashoffset: 37.824864;
	transition: stroke-dashoffset 1s;
}
.circle-container.style-2 .progress-circle-93 {
	stroke-dasharray: 270.1776;
	stroke-dashoffset: 18.912432;
	transition: stroke-dashoffset 1s;
}
.circle-container.style-2 .circle {
	transform: rotateX(180deg);
	stroke: var(--White);
}

.wg-partner {
	border-radius: 10px;
	background-color: var(--Main-gray-2);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--Border-4);
	border-left: 1px solid var(--Border-4);
}
.wg-partner a {
	width: 33.333%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 72px 86px 64px 87px;
	border-right: 1px solid var(--Border-4);
	border-bottom: 1px solid var(--Border-4);
}
.wg-partner a img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
	opacity: 0.4;
}
.wg-partner a img.img1 {
	clip-path: inset(0% 0 0 0);
	transform: translateX(50%);
}
.wg-partner a img.img2 {
	clip-path: inset(0 0 100% 0);
	top: 0;
	left: 0;
	opacity: 1;
	transform: translateX(-50%);
}
.wg-partner a:hover img.img1 {
	clip-path: inset(100% 0 0 0);
}
.wg-partner a:hover img.img2 {
	clip-path: inset(0 0 0% 0);
}
.wg-partner.style-2 img {
	max-width: 110px;
}

.skill-name {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	color: var(--White);
}

.wg-progress {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	width: 100%;
	max-width: 487px;
}
.wg-progress .progress {
	width: 100%;
	max-width: 374px;
	flex-shrink: 0;
}

.wg-service {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.wg-service .content {
	border-radius: 10px;
	background-color: var(--Main-blue);
	padding: 50px 120px 50px 60px;
}
.wg-service .icon {
	margin-bottom: 32px;
}
.wg-service .icon i {
	font-size: 55px;
	color: var(--White);
}
.wg-service .title {
	color: var(--White);
}
.wg-service .title:hover {
	color: var(--Main-black);
}
.wg-service .text {
	color: var(--White);
}
.wg-service .image {
	max-width: 740px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.wg-our-saylo {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.wg-our-saylo .image-left {
	max-width: 630px;
	width: 100%;
	position: relative;
}
.wg-our-saylo .text {
	margin-bottom: 44px;
}
.wg-our-saylo .image {
	border-radius: 10px;
	overflow: hidden;
}
.wg-our-saylo .image img {
	border-radius: 10px;
}
.wg-our-saylo .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 19px 0px;
	margin-bottom: 34px;
}
.wg-our-saylo .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 50%;
}
.wg-our-saylo .list i {
	font-size: 18px;
	color: var(--Bg-2);
}
.wg-our-saylo .content-right {
	max-width: 520px;
	width: 100%;
}
.wg-our-saylo .title {
	color: var(--Bg-2);
}
.wg-our-saylo .wg-graph {
	position: absolute;
	bottom: -30px;
	right: 30px;
}

.wg-graph {
	background-color: var(--White);
	box-shadow: 10px 4px 60px 0px rgba(178, 178, 178, 0.2509803922);
	width: max-content;
	border-radius: 10px;
	padding: 12px 15px 30px;
}
.wg-graph p {
	font-family: 'Inter', sans-serif;
	text-align: center;
	font-weight: 700;
}
.wg-graph .number {
	font-size: 30px;
	line-height: 36px;
	color: var(--Main-green);
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 700;
}
.wg-graph .text {
	font-size: 10px;
	line-height: 12px;
	color: var(--Text-8);
	margin-bottom: 12px;
}

.item-customer {
	border-radius: 10px;
	background-color: var(--White);
	padding: 34px 40px 31px 40px;
	max-width: 300px;
	width: 100%;
}
.item-customer a {
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	position: relative;
	display: block;
	width: max-content;
}
.item-customer a::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--Main-black);
}
.item-customer .line {
	background: rgba(18, 18, 18, 0.1019607843);
	margin-bottom: 35px;
}
.item-customer .list-author {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.item-customer .list-author li {
	max-width: 50px;
	border-radius: 50%;
	overflow: hidden;
}
.item-customer .list-author li:not(:first-child) {
	margin-left: -10px;
}
.item-customer.style-2 {
	background-color: var(--Main-yellow);
	max-width: unset;
	padding: 50px 70px 56px 60px;
}
.item-customer.style-2 .list-author {
	margin-bottom: 60px;
}
.item-customer.style-2 .list-author li {
	max-width: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--White);
}
.item-customer.style-2 .line {
	background-color: var(--Border-10);
}
.item-customer.style-3 {
	box-shadow: 10px 4px 60px 0px rgba(197, 197, 197, 0.2509803922);
}
.item-customer.style-3 p {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
}

.customer-avatar a {
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	position: relative;
	color: var(--White);
}
.customer-avatar a::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--White);
}
.customer-avatar a:hover {
	color: var(--Main-yellow-2);
}
.customer-avatar ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.customer-avatar li {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--White);
	overflow: hidden;
}
.customer-avatar li:not(:first-child) {
	margin-left: -7px;
}

.container-loadmore .bottom a {
	margin-top: 50px;
}
.container-loadmore .item.mt-30 {
	margin-top: 30px;
}

.tf-marquee {
	overflow: hidden;
}
.tf-marquee .wrap-marquee {
	display: flex;
	-webkit-animation: slide-har 180s linear infinite;
	animation: slide-har 180s linear infinite;
	transition: animation-duration 300ms;
}
.tf-marquee .wrap-marquee:hover {
	animation-play-state: paused;
}
.tf-marquee .marquee-item {
	padding-left: 18px;
	padding-right: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.tf-marquee .marquee-item .text {
	white-space: nowrap;
	text-transform: uppercase;
}
.tf-marquee .marquee-item p {
	white-space: nowrap;
}
.tf-marquee.default .marquee-item {
	padding-left: unset;
	padding-right: unset;
	display: flex;
	align-items: center;
	gap: unset;
}
.tf-marquee.type-2 .wrap-marquee {
	-webkit-animation: slide-har 30s linear infinite;
	animation: slide-har 30s linear infinite;
}

.wg-company {
	background-color: var(--Main-gray);
	border-radius: 15px;
	padding: 50px 70px 44px;
}
.wg-company .title {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
}
.wg-company .title a {
	font-size: 27px;
	font-weight: 700;
	line-height: 36.88px;
	letter-spacing: -0.02em;
}
.wg-company li:not(:last-child) {
	padding-bottom: 35px;
	border-bottom: 1px solid var(--Border-2);
}
.wg-company li:not(:first-child) {
	padding-top: 40px;
}
.wg-company .icon {
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background-color: var(--White);
}
.wg-company .icon i {
	font-size: 35px;
	color: var(--Main-black);
}

.wg-skill .name {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}
.wg-skill .name p {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	color: var(--White);
}

.wg-process {
	padding: 20px 50px 22px 50px;
	border-radius: 10px;
	background-color: var(--White);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wg-process .text {
	max-width: 233px;
	width: 100%;
}
.wg-process .step-number {
	border-radius: 10px;
	border: 1px solid var(--Border-10);
	width: max-content;
	padding: 5px 12px 4px 12px;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-process .step-number span {
	text-transform: uppercase;
	color: var(--Main-black);
	font-size: 14px;
	line-height: 16px;
}
.wg-process .name-process {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
}
.wg-process:hover .step-number {
	background-color: var(--Main-yellow);
}

.wg-step-skill {
	max-width: 520px;
	width: 100%;
	background-color: var(--Main-yellow);
	border-radius: 10px;
	padding: 40px 70px 33px 70px;
}
.wg-step-skill .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 35px;
	color: var(--Main-black);
}
.wg-step-skill .line {
	background-color: var(--Main-black);
	margin-bottom: 36px;
}
.wg-step-skill .benefit-list li {
	gap: 12px;
}
.wg-step-skill .benefit-list li:not(:last-child) {
	padding-bottom: 9px;
}
.wg-step-skill .benefit-list li:not(:first-child) {
	padding-top: 0px;
}
.wg-step-skill .benefit-list i {
	font-size: 18px;
	color: var(--Main-black);
}
.wg-step-skill .benefit-list p {
	color: var(--Main-black);
}

.btn-down-list li:not(:last-child) {
	padding-bottom: 15px;
}

.wg-benefit {
	background-color: var(--Main-gray);
	border-radius: 10px;
	padding: 20px 60px 20px 50px;
}
.wg-benefit .name {
	margin-bottom: 5px;
}

.box-cta {
	border-radius: 7px;
	background-color: var(--Bg-5);
	border: 1px solid var(--Bg);
	padding: 25px 43px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.box-cta p {
	color: var(--Text-2);
}
.box-cta p.caption {
	color: var(--White);
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 0px;
}
.box-cta.style-2 {
	background-color: var(--White);
}
.box-cta.style-2 .caption {
	color: var(--Main-black);
}

.contact-infor-list .caption {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin-bottom: 7px;
}
.contact-infor-list .infor {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	color: var(--Main-black);
}
.contact-infor-list .infor:hover {
	color: var(--Main-golden);
}
.contact-infor-list li:not(:last-child) {
	padding-bottom: 29px;
}
.contact-infor-list.style-2 li:not(:last-child) {
	padding-bottom: 10px;
}
.contact-infor-list.style-2 a {
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
}

.s-page-faq .line {
	background-color: rgba(27, 30, 35, 0.1019607843);
	margin-bottom: 50px;
}
.s-page-faq .title {
	font-family: 'Manrope', sans-serif;
	font-size: 35px;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
	margin-bottom: 30px;
}

.wg-office {
	max-width: 325px;
	width: 100%;
	text-align: center;
}
.wg-office .image {
	border-radius: 50%;
	max-width: 300px;
	overflow: hidden;
	margin: 0px auto;
}
.wg-office .entry-image {
	margin-bottom: 40px;
}
.wg-office h3 {
	margin-bottom: 10px;
}
.wg-office h3 a {
	color: var(--Main-black);
}
.wg-office h3 a:hover {
	color: var(--Main-golden);
}
.wg-office .sub {
	margin-bottom: 30px;
}
.wg-office .line {
	background-color: rgba(27, 30, 35, 0.1019607843);
	position: relative;
	margin-bottom: 40px;
}
.wg-office .line::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 3px;
	background-color: var(--Main-black);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.wg-job {
	padding: 30px 50px;
	background-color: var(--White);
	border-radius: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wg-job .name-job {
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 5px;
	display: block;
}
.wg-job .sub-job {
	display: block;
	width: max-content;
	border-radius: 10px;
	color: var(--White);
	font-size: 13px;
	font-weight: 500;
	line-height: 15px;
	padding: 6px 10px;
	margin-bottom: 12px;
}
.wg-job .sub-job.part {
	background-color: var(--Main-green-2);
}
.wg-job .sub-job.full {
	background-color: var(--Color-1);
}
.wg-job .text {
	margin-bottom: 10px;
}
.wg-job .salary {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	margin-bottom: 15px;
	color: var(--Main-black);
}
.wg-job:hover {
	box-shadow: 10px 4px 60px 0px rgba(182, 182, 182, 0.2509803922);
}

#loading {
	background-color: var(--White);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
	left: 0px;
	bottom: 0px;
	overflow: hidden;
	right: 0px;
	z-index: 999999;
}
#loading #loading-center {
	width: 100%;
	height: 100%;
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
#loading #loading-center .loader-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
#loading #loading-center .loader-container .wrap-loader {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#loading #loading-center .loader-container .wrap-loader .icon {
	position: absolute;
}
#loading #loading-center .loader-container .wrap-loader .icon img {
	max-width: 50px;
}
#loading #loading-center .loader-container .loader {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	animation: tf-spin 1s linear infinite;
}

.progress-wrap {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background: var(--Main-black);
	border: 1.2px solid rgba(134, 134, 134, 0.12);
}
.progress-wrap:hover {
	box-shadow: 0 8px 16px rgba(27, 30, 35, 0.5);
	background: var(--Main-black);
}
.progress-wrap::after {
	position: absolute;
	content: '\e905';
	font-family: 'icomoon';
	text-align: center;
	line-height: 40px;
	font-size: 8px;
	color: var(--White);
	height: 40px;
	width: 40px;
	cursor: pointer;
	z-index: 1;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
	animation: iconBounce 2s linear 0s infinite;
}
.progress-wrap::after:active {
	animation: goTopToBottom 0.6s forwards;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	box-sizing: border-box;
	stroke: var(--White);
	stroke-width: 4;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 0.4s;
	transition-timing-function: linear;
}

/*------------ sections ---------------- */
.main-content {
	padding: 130px 0px;
}
.main-content.padding-0 {
	padding: 0px;
}
.main-content.style-2 {
	padding-top: 130px;
	padding-bottom: 70px;
}
.main-content.style-3 {
	padding-top: 30px;
	padding-bottom: 130px;
}

.s-sub-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	color: var(--Text);
	margin-bottom: 17px;
}
.s-sub-title i {
	padding-right: 4px;
	padding-bottom: 1px;
	font-size: 11px;
}
.s-sub-title.text-white {
	color: var(--White);
}
.s-sub-title.mb-18 {
	margin-bottom: 18px;
}
.s-sub-title.mb-20 {
	margin-bottom: 18px;
}
.s-sub-title.mb-16 {
	margin-bottom: 16px;
}
.s-sub-title.mb-12 {
	margin-bottom: 12px;
}
.s-sub-title.mb-13 {
	margin-bottom: 13px;
}

.s-title {
	font-family: 'Manrope', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 62px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
}
.s-title.letter-space-0 {
	letter-spacing: 0px;
}
.s-title span {
	font-weight: 300;
}
.s-title.text-white-yellow {
	color: var(--White);
}
.s-title.text-white-yellow span {
	color: var(--Main-yellow-2);
}
.s-title.text-main-green-3 {
	color: var(--Bg-2);
}
.s-title.text-fs-70 {
	font-size: 70px;
	line-height: 77px;
}
.s-title.text-fs-75 {
	font-size: 75px;
	line-height: 85px;
	letter-spacing: -0.02em;
}
.s-title.text-70-84 {
	font-size: 70px;
	line-height: 84px;
}
.s-title.style-2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.02em;
}

.tf-spacing-1 {
	padding-top: 130px;
	padding-bottom: 130px;
}

.tf-spacing-2 {
	padding-top: 130px;
	padding-bottom: 0px;
}

.tf-spacing-3 {
	padding-top: 0px;
	padding-bottom: 130px;
}

.tf-spacing-5 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.tf-spacing-6 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.tf-spacing-7 {
	padding-top: 50px;
	padding-bottom: 130px;
}

.tf-spacing-8 {
	padding-top: 130px;
	padding-bottom: 50px;
}

.tf-spacing-9 {
	padding-top: 80px;
	padding-bottom: 100px;
}

.tf-spacing-10 {
	padding-top: 126px;
	padding-bottom: 0px;
}

.tf-spacing-11 {
	padding-top: 126px;
	padding-bottom: 130px;
}

.pagination-section {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 21px;
}
.pagination-section a {
	color: var(--Text);
	font-weight: 600;
}
.pagination-section ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 10px;
}
.pagination-section ul a {
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--Border-2);
	font-family: 'Public Sans', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 21px;
}
.pagination-section ul a.active {
	color: var(--White);
	background-color: var(--Main-black);
}
.pagination-section ul a:hover {
	color: var(--White);
	background-color: var(--Main-black);
}
.pagination-section .btn-next-pagination {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
}
.pagination-section .btn-next-pagination i {
	color: var(--Text);
	position: relative;
	bottom: -1px;
	transform: translateX(0);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pagination-section .btn-next-pagination:hover i {
	transform: translateX(-5px);
}

.s-blog-details .entry-image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 40px;
}
.s-blog-details .content .title {
	font-size: 30px;
	font-weight: 700;
	line-height: 45px;
	color: var(--Title);
}
.s-blog-details .content .title.s1 {
	margin-bottom: 31px;
}
.s-blog-details .benefit-list {
	margin-bottom: 35px;
}
.s-blog-details .entry-image-2 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
}
.s-blog-details .entry-image-2 .image {
	border-radius: 10px;
	overflow: hidden;
}
.s-blog-details .line {
	margin-bottom: 50px;
	display: flex;
	width: 100%;
	height: 1px;
	background-color: var(--Border-2);
}
.s-blog-details .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-blog-details .tags {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 12px;
}
.s-blog-details .socials {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
}
.s-blog-details .benefit-list.style-2 li:not(:last-child) {
	padding-bottom: 15px;
}
.s-blog-details .benefit-list .icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--Main-yellow);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.s-blog-details .benefit-list .icon i {
	color: var(--Main-black);
	font-size: 9px;
}

.benefit-list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
}
.benefit-list li:not(:last-child) {
	padding-bottom: 15px;
}
.benefit-list li:not(:first-child) {
	padding-top: 15px;
}
.benefit-list.style-2 li:not(:last-child) {
	padding-bottom: 10px;
}
.benefit-list.style-2 li:not(:first-child) {
	padding-top: 0px;
}
.benefit-list.style-3 li:not(:last-child) {
	padding-bottom: 15px;
}
.benefit-list.style-3 li:not(:first-child) {
	padding-top: 0px;
}

.btn-blog-group {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.btn-blog-group .date {
	font-size: 14px;
	line-height: 16px;
	margin-top: 7px;
}
.btn-blog-group .btn-blog {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 339px;
	width: 100%;
}
.btn-blog-group .btn-blog:hover a {
	background-size: 100% 1px;
}
.btn-blog-group .image {
	max-width: 80px;
	border-radius: 10px;
	overflow: hidden;
}
.btn-blog-group a {
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	color: var(--Black);
	display: inline;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(currentColor),
		color-stop(98%, currentColor)
	);
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.page-title-home-1 {
	background-color: var(--Main-black);
	padding-top: 60px;
	padding-bottom: 50px;
}
.page-title-home-1 .s-sub-title {
	margin-bottom: 21px;
}
.page-title-home-1 .content {
	border-radius: 15px;
	padding: 100px 100px 100px 99px;
	background-color: var(--Bg);
	border: 1px solid var(--Border);
	height: 100%;
}
.page-title-home-1 .content .text {
	color: var(--White);
	font-size: 18px;
	line-height: 35px;
}
.page-title-home-1 .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
}
.page-title-home-1 .line {
	max-width: 550px;
	background-color: var(--White);
}
.page-title-home-1 .image-wrap {
	position: relative;
}
.page-title-home-1 .image {
	border-radius: 15px;
	overflow: hidden;
}
.page-title-home-1 .wg-curve-text {
	position: absolute;
	bottom: 50px;
	left: 50px;
}

.page-title-home-2 .slide-home-2 {
	position: relative;
}
.page-title-home-2 .tf-overlay {
	background-color: var(--Bg-2);
	opacity: 0.4;
}
.page-title-home-2 .content-wrap {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.page-title-home-2 .content {
	max-width: 1290px;
	width: 100%;
	margin: 0px auto;
}

.page-title-home-3 {
	background-color: var(--Main-green);
	position: relative;
	overflow: hidden;
	margin-top: -103px;
}
.page-title-home-3 .wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.page-title-home-3 .image-right {
	max-width: 835px;
	width: 100%;
	position: relative;
	padding-left: 4px;
	padding-bottom: 4px;
}
.page-title-home-3 .image-right img {
	object-fit: cover;
}
.page-title-home-3 .image-item {
	border-radius: 10px;
	background-color: var(--White);
	overflow: hidden;
	max-width: 276px;
	width: 100%;
	text-align: center;
	position: absolute;
}
.page-title-home-3 .image-item p {
	font-family: 'Inter', sans-serif;
}
.page-title-home-3 .image-item .caption {
	color: var(--Main-green);
}
.page-title-home-3 .image-item .number {
	font-size: 26px;
	font-weight: 700;
	line-height: 31px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--White);
}
.page-title-home-3 .image-item .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin-top: 10px;
	align-items: center;
	gap: 10px;
	padding: 0px 10px 0px 23px;
}
.page-title-home-3 .image-item .percent {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: var(--Main-green);
}
.page-title-home-3 .image-item .text {
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
}
.page-title-home-3 .image-item.img-item-1 {
	padding-top: 25px;
	top: 212px;
	left: -117px;
}
.page-title-home-3 .image-item.img-item-2 {
	padding: 21px 0px 31px;
	top: 483px;
	left: -49px;
}
.page-title-home-3 .image-item.img-item-2 .caption {
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
}
.page-title-home-3 .image-item.img-item-2 img {
	margin-top: -17px;
}
.page-title-home-3 .content-left {
	max-width: 877px;
	width: 100%;
	margin-left: auto;
	padding-top: 108px;
}
.page-title-home-3 .content-left .text {
	color: var(--White);
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
}
.page-title-home-3 .s-title {
	margin-bottom: 130px;
}
.page-title-home-3 .item {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.page-title-home-3 .item-1 {
	width: 958px;
	height: 958px;
	background: rgba(255, 255, 255, 0.0196078431);
	border: 1px solid rgba(255, 255, 255, 0.0196078431);
}
.page-title-home-3 .item-2 {
	width: 710px;
	height: 710px;
	background: rgba(255, 255, 255, 0.0196078431);
	border: 1px solid rgba(255, 255, 255, 0.0196078431);
}
.page-title-home-3 .item-3 {
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.0196078431);
	border: 1px solid rgba(255, 255, 255, 0.0196078431);
}
.page-title-home-3 .item-group {
	position: absolute;
	width: 958px;
	height: 958px;
	bottom: -400px;
	left: -250px;
	pointer-events: none;
}

.page-title-home-4 {
	position: relative;
	margin-top: -83px;
}
.page-title-home-4 .image img {
	min-height: 800px;
	width: 100%;
	object-fit: cover;
}
.page-title-home-4 .tf-overlay {
	background-color: var(--Main-black-3);
	z-index: 2;
	opacity: 0.65;
}
.page-title-home-4 .content-wrap {
	position: absolute;
	bottom: 130px;
	left: 0;
	width: 100%;
	z-index: 2;
}
.page-title-home-4 .title {
	font-size: 70px;
	font-weight: 700;
	line-height: 91px;
	letter-spacing: -0.02em;
	font-family: 'Manrope', sans-serif;
}
.page-title-home-4 .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 52px;
}
.page-title-home-4 .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 12px;
}
.page-title-home-4 .list i {
	font-size: 17px;
	color: var(--White);
}
.page-title-home-4 .list p {
	line-height: 19px;
	color: var(--White);
}
.page-title-home-4 .content {
	position: relative;
}
.page-title-home-4 .item-customer {
	position: absolute;
	right: 0;
	bottom: 0;
}

.s-feature {
	background-color: var(--Main-black);
}

.half-circle {
	display: block;
	width: 175px;
	height: 350px;
	background-color: var(--Main-yellow);
	border-top-left-radius: 175px;
	border-bottom-left-radius: 175px;
}
.half-circle.item-2 {
	background-color: var(--Main-black);
}

.s-about-company {
	padding-bottom: 78px;
}
.s-about-company .content-section {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}
.s-about-company .s-sub-title {
	margin-bottom: 13px;
}
.s-about-company .image-wrap {
	position: relative;
}
.s-about-company .image {
	border-radius: 20px;
	overflow: hidden;
}
.s-about-company .half-circle {
	position: absolute;
	bottom: -50px;
	right: 200px;
}
.s-about-company .half-circle.item-2 {
	right: 50px;
}
.s-about-company .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.s-about-company .list li:not(:last-child) {
	padding-bottom: 50px;
	border-bottom: 1px solid var(--Border-6);
}
.s-about-company .list li:not(:first-child) {
	padding-top: 50px;
}
.s-about-company .list .text {
	max-width: 351px;
	width: 100%;
}
.s-about-company .list p:not(.text) {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	color: var(--Main-black);
}
.s-about-company .slider-saylo {
	margin-top: -130px;
}

.s-service {
	background-color: var(--Main-gray);
}
.s-service .image {
	border-radius: 20px;
	overflow: hidden;
}
.s-service .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 100px;
	position: relative;
}
.s-service .line {
	height: 73px;
	width: 2px;
	background-color: var(--Border-2);
}

.s-slider-project {
	padding-bottom: 50px;
}

.s-working-2 {
	padding-top: 141px;
	background-color: var(--Main-black);
}
.s-working-2 .pb-100 {
	padding-bottom: 100px;
}
.s-working-2 .image {
	border-radius: 20px;
	overflow: hidden;
}
.s-working-2 .content-right {
	max-width: 570px;
	width: 100%;
	margin-left: auto;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.s-working-2 .content-right .text {
	color: var(--Text-2);
	line-height: 35px;
}
.s-working-2 .content-right .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}
.s-working-2 .content-left {
	max-width: 530px;
	width: 100%;
	margin-right: auto;
}
.s-working-2 .tab-content {
	display: none;
}
.s-working-2 .tab-content.current {
	display: block;
}

.testimonial-thumbs {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	position: relative;
	gap: 100px;
}
.testimonial-thumbs .slider-testimonial-thumb {
	overflow: hidden;
	max-width: 270px;
	width: 100%;
	border-radius: 20px;
	pointer-events: none;
}
.testimonial-thumbs .slider-testimonial {
	max-width: 730px;
	width: 100%;
	overflow: hidden;
	margin-right: auto;
}
.testimonial-thumbs .tf-pagination {
	position: absolute;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	flex-direction: column;
	display: flex;
	gap: 14px;
}

.s-our-testimonial {
	padding-bottom: 115px;
}
.s-our-testimonial .tf-marquee {
	padding-top: 41px;
}

.s-contact .content-wrap {
	border-radius: 20px;
	background-color: var(--Main-gray);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
}
.s-contact .content-wrap > * {
	width: 50%;
}
.s-contact .content-left {
	padding: 71px 0px 0px 71px;
}
.s-contact .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 70px;
}
.s-contact .list .cap {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: var(--Main-black);
	margin-bottom: 10px;
}
.s-contact .content-right {
	margin: 30px 30px 31px 0px;
	padding: 32px 49px 40px 50px;
	border-radius: 20px;
	background-color: var(--White);
	max-width: 600px;
	width: 100%;
}
.s-contact .content-right .title {
	color: var(--Main-black);
	font-size: 24px;
	font-weight: 700;
	line-height: 33px;
}
.s-contact .s-title {
	margin-bottom: 99px;
}

.s-partner .tf-overlay {
	display: block;
}
.s-partner a {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 83px 83px 82px 83px;
	border-top: 1px solid var(--Border-2);
	border-right: 1px solid var(--Border-2);
	border-bottom: 1px solid var(--Border-2);
	position: relative;
}
.s-partner a img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
	opacity: 0.4;
	max-width: 150px;
}
.s-partner a img.img1 {
	clip-path: inset(0% 0 0 0);
	transform: translateX(50%);
}
.s-partner a img.img2 {
	clip-path: inset(0 0 100% 0);
	top: 0;
	left: 0;
	opacity: 1;
	transform: translateX(-50%);
}
.s-partner a:hover img.img1 {
	clip-path: inset(100% 0 0 0);
}
.s-partner a:hover img.img2 {
	clip-path: inset(0 0 0% 0);
}
.s-partner a:hover::after {
	width: 100%;
	transition-delay: 0.1s;
}
.s-partner a:hover::before {
	height: 100%;
	transition-delay: 0.4s;
}
.s-partner a:hover .tf-overlay::after {
	width: 100%;
	transition-delay: 0.1s;
}
.s-partner a:hover .tf-overlay::before {
	height: 100%;
	transition-delay: 0.4s;
}
.s-partner a::after {
	position: absolute;
	content: '';
	width: 0%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: var(--Main-black);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.s-partner a::before {
	position: absolute;
	content: '';
	height: 0%;
	width: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--Main-black);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.s-partner .tf-overlay::after {
	position: absolute;
	content: '';
	width: 0%;
	height: 1px;
	right: 0;
	bottom: 0;
	background-color: var(--Main-black);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.s-partner .tf-overlay::before {
	position: absolute;
	content: '';
	height: 0%;
	width: 1px;
	right: 0;
	top: 0;
	background-color: var(--Main-black);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.s-partner.style-2 {
	background-color: var(--Main-gray-4);
}

.s-about-company-2 .wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	padding-right: 40px;
	justify-content: space-between;
}
.s-about-company-2 .image-1 {
	max-width: 411px;
	width: 100%;
}
.s-about-company-2 .image-2 {
	min-width: 410px;
}
.s-about-company-2 .content {
	padding-top: 44px;
}

.s-counter {
	max-width: 1780px;
	width: 100%;
	margin: 0px auto;
	background-color: var(--Main-gray-2);
	border-radius: 20px 20px 0px 0px;
	margin-bottom: -23px;
	padding: 100px 0px 123px;
}
.s-counter .title {
	color: var(--Bg-2);
}
.s-counter .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}
.s-counter .wg-counter {
	margin-top: -18px;
	margin-bottom: 5px;
}

.s-service-2 {
	border-radius: 20px;
	background-color: var(--Bg-2);
	max-width: 1780px;
	width: 100%;
	margin: 0 auto;
}
.s-service-2 .s-heading {
	margin-bottom: 69px;
}

.s-why-choose {
	position: relative;
	max-width: 1600px;
	width: 100%;
	margin: 0px auto;
}
.s-why-choose .video-wrap {
	border-radius: 20px;
	overflow: hidden;
}
.s-why-choose .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 19px 24px;
	margin-bottom: 44px;
}
.s-why-choose .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	width: calc(50% - 50px);
}
.s-why-choose .list i {
	font-size: 18px;
	color: var(--Bg-2);
}
.s-why-choose .list p {
	color: var(--Bg-2);
}
.s-why-choose .tf-overlay {
	top: 323px;
	background: linear-gradient(180deg, rgba(247, 243, 236, 0) 0%, #f7f3ec 100%);
	z-index: -1;
	border-radius: 20px;
}
.s-why-choose .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.s-case-study {
	padding-bottom: 30px;
}
.s-case-study .heading {
	margin-bottom: 49px;
}

.s-feedback {
	max-width: 1780px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	background-image: url('./../images/section/feedback.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: 1;
}
.s-feedback .tf-overlay {
	background-color: rgba(27, 57, 66, 0.968627451);
	z-index: 2;
}
.s-feedback .content {
	position: relative;
	z-index: 3;
}
.s-feedback .slider-feedback {
	position: relative;
	z-index: 3;
	overflow: hidden;
}
.s-feedback .btn-group {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 15px;
}
.s-feedback .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 70px;
	gap: 15px 30px;
	flex-wrap: wrap;
}

.s-business-benefit .content-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 100px;
}
.s-business-benefit .image {
	max-width: 765px;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
}
.s-business-benefit .content {
	max-width: 670px;
	width: 100%;
	padding-top: 38px;
}
.s-business-benefit .wrap-2 {
	margin-top: -236px;
}

.s-partner-2 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.s-cta {
	overflow: hidden;
}
.s-cta .wrap {
	min-height: 578px;
	position: relative;
}
.s-cta .bg-image {
	align-items: unset;
}
.s-cta .bg-image .rellax {
	min-height: unset;
}
.s-cta .bg-image img {
	min-height: 800px;
}
.s-cta .content {
	top: 50%;
	left: 50%;
	transform: translate(-9px, -50%);
	position: absolute;
	z-index: 2;
}
.s-cta .tf-overlay {
	background: rgba(3, 14, 17, 0.6509803922);
}

.s-feature-2 .content {
	border-radius: 10px;
	background-color: var(--Main-green);
	padding: 30px 70px 44px;
	height: 100%;
}
.s-feature-2 .s1 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 70px;
	align-items: center;
	padding: 50px 70px 48px 70px;
}
.s-feature-2 .percent-customer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	width: 50%;
}
.s-feature-2 .wg-counter {
	white-space: nowrap;
}
.s-feature-2 .img-avt {
	max-width: 55px;
	border-radius: 50%;
	border: 2px solid var(--White);
	overflow: hidden;
}
.s-feature-2 .image-customer-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.s-feature-2 .image-customer-list li:not(:last-child) {
	margin-right: -15px;
}
.s-feature-2 .top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 20px;
}
.s-feature-2 .top a {
	color: var(--White);
	position: relative;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
}
.s-feature-2 .top a::after {
	content: '';
	bottom: 0;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--White);
	position: absolute;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.s-feature-2 .top a:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}
.s-feature-2 .line {
	height: 140px;
	background-color: var(--Border);
}
.s-feature-2 .our-customer {
	width: 50%;
}
.s-feature-2 .s2 .title {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 33px;
}
.s-feature-2 .list-skill li:not(:last-child) {
	margin-bottom: 27px;
}

.list-skill li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.list-skill li:not(:last-child) {
	margin-bottom: 44px;
}
.list-skill .skill-name {
	display: block;
}
.list-skill.style-2 li:not(:last-child) {
	margin-bottom: 40px;
}
.list-skill.style-2 .wg-progress {
	max-width: 413px;
}
.list-skill.style-2 .progress {
	max-width: 330px;
}

.s-about-company-3 .experience {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 20px;
}
.s-about-company-3 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.s-about-company-3 .author-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 20px;
}
.s-about-company-3 .author-wrap .img-avt {
	border-radius: 50px;
	overflow: hidden;
}
.s-about-company-3 .author-wrap .img-avt img {
	object-fit: cover;
	max-width: 60px;
	min-height: 60px;
}
.s-about-company-3 .author-wrap .name {
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
}
.s-about-company-3 .infor .duty {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin-top: 7px;
}
.s-about-company-3 .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
}
.s-about-company-3 .content-left {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
	position: relative;
	height: 100%;
	min-height: 738px;
}
.s-about-company-3 .wg-curve-text {
	position: absolute;
	bottom: 59px;
	right: 25px;
}
.s-about-company-3 .image {
	max-width: 300px;
	border-radius: 15px;
	overflow: hidden;
	height: max-content;
}
.s-about-company-3 .image.s1 {
	margin-top: 123px;
}
.s-about-company-3 .image.s3 {
	position: absolute;
	bottom: 0;
	left: 110px;
}

.s-service-3 {
	max-width: 1860px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--Main-green);
	border-radius: 20px;
	position: relative;
}
.s-service-3 .item {
	position: absolute;
	display: block;
	width: 270px;
	height: 80px;
	gap: 0px;
	border-radius: 38px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.s-service-3 .item.s1 {
	left: 66px;
	bottom: 130px;
}
.s-service-3 .item.s2 {
	top: 150px;
	right: 90px;
}
.s-service-3 .slider-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 74px;
}
.s-service-3 .direc-group {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.s-service-3 .direc-group .tf-pagination {
	position: relative;
}

.s-break-page {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 72px;
}
.s-break-page > * {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 100%;
}
.s-break-page p {
	color: var(--White);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
}
.s-break-page p a {
	color: var(--White);
	font-weight: 700;
	position: relative;
}
.s-break-page p a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--White);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.s-break-page p a:hover {
	color: var(--Main-yellow);
}
.s-break-page p a:hover::after {
	background-color: var(--Main-yellow);
}
.s-break-page .s1 {
	background-color: var(--Main-green);
}
.s-break-page .s2 {
	background-color: var(--Bg-10);
}
.s-break-page.style-2 .s1 {
	background-color: var(--Main-yellow);
}
.s-break-page.style-2 .s1 p {
	color: var(--Main-black);
}
.s-break-page.style-2 .s1 a {
	color: var(--Main-black);
}
.s-break-page.style-2 .s1 a::after {
	background-color: var(--Main-black);
}
.s-break-page.style-2 .s1 a:hover {
	color: var(--Text-2);
}
.s-break-page.style-2 .s1 a:hover::after {
	background-color: var(--Text-2);
}
.s-break-page.style-2 .s2 {
	background-color: var(--Main-black);
}

.s-our-advisor {
	background-color: var(--Bg-7);
	border-radius: 20px;
	border: 1px solid var(--Border-5);
	max-width: 1500px;
	width: 100%;
	margin: 0px auto;
	overflow: hidden;
}
.s-our-advisor .heading {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-our-advisor .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.s-our-advisor .bot p {
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
	color: var(--Main-green);
}
.s-our-advisor .bot a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 10px;
	color: var(--White);
	border-radius: 7px;
	padding: 9px 15px;
	background-color: var(--Main-green);
}
.s-our-advisor .bot a:hover {
	background-color: var(--Main-golden);
}

.s-faq {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 10px;
}
.s-faq .image {
	max-width: 615px;
	width: 100%;
}
.s-faq .content-wrap {
	background-color: var(--Main-green);
	padding: 100px 134px 80px 100px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 80px;
	position: relative;
	overflow: hidden;
}
.s-faq .content-right {
	max-width: 520px;
	width: 100%;
	flex-shrink: 0;
}
.s-faq .item-group {
	border-radius: 50%;
	width: 530px;
	height: 530px;
	background: rgba(255, 255, 255, 0.031372549);
	border: 1px solid rgba(255, 255, 255, 0.0509803922);
	position: absolute;
	bottom: -313px;
	left: -158px;
}
.s-faq .item {
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.031372549);
	border: 1px solid rgba(255, 255, 255, 0.0509803922);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.s-faq .item.item-2 {
	width: 430px;
	height: 430px;
}
.s-faq .item.item-3 {
	width: 350px;
	height: 350px;
}

.s-new-blog-3 .heading {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.s-feature-4 {
	padding-top: 30px;
}

.s-cta-2 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;
	justify-content: center;
	overflow: hidden;
}
.s-cta-2 .image img {
	min-height: 650px;
	width: 100%;
	object-fit: cover;
}
.s-cta-2 .content {
	background-color: var(--Main-green-2);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0px 90px;
	max-width: 615px;
	width: 100%;
	position: relative;
	z-index: 2;
}
.s-cta-2 .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.s-funfact .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	padding-bottom: 20px;
}
.s-funfact .content-right {
	border-radius: 10px;
	background-color: var(--Main-gray-4);
}
.s-funfact .counter-list {
	padding: 69px 87px 48px 95px;
}
.s-funfact .counter-list .sub {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32.78px;
	letter-spacing: -0.02em;
	color: var(--Main-black-3);
	position: absolute;
	top: 0;
	left: 109px;
}
.s-funfact .counter-list .text {
	font-weight: 500;
	font-style: 20px;
	font-family: 'Manrope', sans-serif;
	max-width: 300px;
	width: 100%;
}
.s-funfact .counter-list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.s-funfact .counter-list li:not(:last-child) {
	padding-bottom: 27px;
	border-bottom: 1px solid var(--Border-6);
}
.s-funfact .counter-list li:not(:first-child) {
	margin-top: 47px;
}
.s-funfact .counter-list li .text {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}
.s-why-choose-2 {
	margin-top: 70px;
	position: relative;
	background-color: var(--Main-black-3);
}
.s-why-choose-2 .bot {
	padding: 34px 66px 34px 70px;
	background-color: var(--Main-green-2);
}
.s-why-choose-2 .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 68px;
	flex-wrap: wrap;
}
.s-why-choose-2 .list li {
	width: calc(50% - 70px);
}
.s-why-choose-2 .list .icon {
	margin-bottom: 24px;
}
.s-why-choose-2 .list .icon i {
	font-size: 30px;
	color: var(--White);
}
.s-why-choose-2 .list .title {
	color: var(--White);
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	display: block;
	margin-bottom: 10px;
}
.s-why-choose-2 .list .title:hover {
	color: var(--Main-yellow-2);
}
.s-why-choose-2 .list .text {
	color: var(--White);
	opacity: 0.7;
}
.s-why-choose-2 .content-left.s1 {
	top: unset;
	bottom: unset;
	position: unset;
	left: unset;
	display: none;
}
.s-why-choose-2 .content-left.s2 {
	top: -70px;
	bottom: 115px;
	position: absolute;
	left: 50%;
}
.s-why-choose-2 .image-wrap {
	position: relative;
	margin-left: auto;
	padding-left: 15px;
}
.s-why-choose-2 .image-wrap .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-why-choose-2 .image img {
	max-height: 670px;
	width: 100%;
	object-fit: cover;
}
.s-why-choose-2 .wg-curve-text {
	transform: translateX(-28%);
	position: absolute;
	bottom: 89px;
	left: 50%;
}
.s-why-choose-2 .review-rating {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 28px;
}
.s-why-choose-2 .review-rating .point {
	font-size: 65px;
	font-weight: 700;
	line-height: 89px;
	letter-spacing: -0.05em;
	color: var(--White);
}
.s-why-choose-2 .review-rating h6 {
	color: var(--White);
}
.s-why-choose-2 .rating-group {
	margin-bottom: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 5px;
}
.s-why-choose-2 .rating-group i {
	font-size: 13px;
	color: var(--Main-yellow);
}
.s-why-choose-2 .customer-avatar ul {
	margin-top: 10px;
}

.s-feedback-3 {
	background-color: var(--Main-gray-4);
}

.s-about {
	background-color: var(--Main-black);
}
.s-about .content-right {
	max-width: 480px;
	width: 100%;
	margin-left: auto;
}
.s-about .image {
	border-radius: 10px;
	overflow: hidden;
}
.s-about .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 50px;
}
.s-about .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
}
.s-about .list i {
	color: var(--White);
}
.s-about .list p {
	color: var(--White);
}

.s-why-choose-3 .image {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
}
.s-why-choose-3 .wg-company {
	margin-bottom: 30px;
}
.s-why-choose-3 .content {
	border-radius: 15px;
	background-color: var(--Main-black);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	padding: 70px;
}
.s-why-choose-3 .content-right {
	max-width: 450px;
	width: 100%;
}
.s-why-choose-3 .content-left {
	max-width: 460px;
	width: 100%;
}

.s-solution {
	background-color: var(--Main-black);
}
.s-solution .content-right {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.s-solution .s-title {
	margin-bottom: 42px;
}

.s-testimonial .image {
	border-radius: 15px;
	overflow: hidden;
}
.s-testimonial .item-customer {
	height: 100%;
}
.s-testimonial .slider-saylo {
	margin-bottom: -116px;
}

.feature-group {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
	border-radius: 10px;
	background-color: var(--Main-gray);
	padding: 30px;
}

.s-process {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.s-process .content-wrap {
	position: relative;
	z-index: 2;
}
.s-process .tf-overlay {
	background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}

.parallax-mirror {
	border-radius: 10px;
	overflow: hidden;
}
.parallax-mirror img {
	border-radius: 10px;
	transition: transform 1s ease-out;
}

.s-process-2 {
	position: relative;
	overflow: hidden;
	max-width: 1600px;
	width: 100%;
	margin: 0px auto;
	border-radius: 10px;
	overflow: hidden;
}
.s-process-2 .tf-overlay {
	background: linear-gradient(236.56deg, rgba(27, 30, 35, 0) 30.34%, rgba(27, 30, 35, 0.9) 79.67%);
}
.s-process-2 .content {
	max-width: 420px;
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}
.s-process-2 .bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.s-process-2 .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 10px;
}
.s-process-2.style-2 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}
.s-process-2.style-2 .tf-overlay {
	background: linear-gradient(180deg, rgba(242, 237, 234, 0) 0%, #f2edea 100%);
}

.rellax {
	min-height: 1000px;
	transition: all 1s ease;
}
.rellax img {
	min-height: 1000px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.rellax.default {
	min-height: unset;
}
.rellax.default img {
	min-height: unset;
	height: unset;
	width: unset;
	object-fit: cover;
}
.rellax.type-2 {
	transition: unset;
	transition: all 0.1s ease;
}
.rellax.type-2 img {
	margin-top: -600px;
}

.s-why-choose-4 .image-right {
	max-width: 835px;
	width: 100%;
	margin-left: auto;
}
.s-why-choose-4 .content-left {
	max-width: 630px;
	width: 100%;
	margin-left: auto;
}
.s-why-choose-4 .content-left .text {
	margin-bottom: 24px;
}
.s-why-choose-4 .content-left .benefit-list {
	margin-bottom: 43px;
}
.s-why-choose-4 .content-left .benefit-list li {
	gap: 12px;
}
.s-why-choose-4 .content-left .benefit-list i {
	font-size: 18px;
}
.s-why-choose-4 .content-right {
	max-width: 660px;
	width: 100%;
	margin-right: auto;
}
.s-why-choose-4 .content-right .s-title {
	margin-bottom: 33px;
}
.s-why-choose-4 .image {
	overflow: hidden;
}
.s-why-choose-4 .image img {
	object-fit: cover;
}
.s-why-choose-4 .content-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.s-why-choose-4 .content-wrap > * {
	width: 50%;
}
.s-why-choose-4 .content-wrap.wrap-2 {
	gap: 0px;
}
.s-why-choose-4 .list {
	position: relative;
}
.s-why-choose-4 .list .number {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: var(--Main-gray);
	border: 1px solid var(--Border-2);
}
.s-why-choose-4 .list .number p {
	font-family: 'Public Sans', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
}
.s-why-choose-4 .list a {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	color: var(--Main-black);
	display: block;
	margin-bottom: 13px;
}
.s-why-choose-4 .list p {
	color: var(--Text);
}
.s-why-choose-4 .list li {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 40px;
}
.s-why-choose-4 .list li:not(:last-child) {
	padding-bottom: 43px;
}
.s-why-choose-4 .list::after {
	content: '';
	position: absolute;
	left: 27px;
	top: 65px;
	width: 1px;
	height: 57%;
	background-color: rgba(27, 30, 35, 0.1019607843);
}

.s-service-4 {
	position: relative;
	overflow: hidden;
}
.s-service-4 .bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.s-service-4 .bg-image img {
	min-height: 1142px;
	transform: scale(1.1);
}
.s-service-4 .tf-overlay {
	background: linear-gradient(180deg, rgba(27, 30, 35, 0.4) 0%, #1b1e23 100%);
}

.bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg-image .rellax {
	height: 100%;
}
.s-faq-2 .image {
	max-width: 520px;
	width: 100%;
	margin-left: auto;
	border-radius: 10px;
	overflow: hidden;
}
.s-faq-2 .image-wrap {
	position: relative;
}
.s-faq-2 .item-customer {
	position: absolute;
	bottom: -40px;
	left: 40px;
}
.s-faq-2 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.s-service-detail .entry-image {
	border-radius: 10px;
	overflow: hidden;
}
.s-service-detail .content .title {
	font-family: 'Manrope', sans-serif;
	font-size: 35px;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--Main-black);
}
.s-service-detail .title-2.s1 {
	margin-bottom: 16px;
}
.s-service-detail .text.s3 {
	margin-bottom: 29px;
}
.s-service-detail .list-1 {
	margin-bottom: 69px;
}
.s-service-detail .list-1 h6 {
	margin-bottom: 11px;
}
.s-service-detail .list-1 li {
	gap: 35px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.s-service-detail .list-1 li:not(:last-child) {
	padding-bottom: 29px;
}
.s-service-detail .list-1 .number {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--Main-black);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.s-service-detail .list-1 .number p {
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
	color: var(--White);
}
.s-service-detail .entry-image-2 {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.s-service-detail .experience {
	position: absolute;
	background-color: var(--Main-yellow);
	bottom: 0;
	right: 0;
	padding: 16px 56px 30px 52px;
}
.s-service-detail .experience .sub-exp {
	color: var(--Main-black);
}
.s-service-detail .list-2 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.s-service-detail .list-2 li {
	max-width: 230px;
	width: 100%;
}
.s-service-detail .list-2 .step-number {
	line-height: 19px;
	margin-bottom: 5px;
}
.s-service-detail .list-2 .caption {
	margin-bottom: 25px;
}
.s-service-detail .list-2 .icon {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: var(--Main-black);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 21px;
}
.s-service-detail .list-2 .icon i {
	font-size: 9px;
	color: var(--White);
}
.s-service-detail .list-2 .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
.s-service-detail .list-2::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	top: 86px;
	background-color: rgba(27, 30, 35, 0.1019607843);
}

.s-case-detail .top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 30px;
}
.s-case-detail .top .title {
	color: var(--Main-black);
}
.s-case-detail .top .line {
	max-width: 400px;
	background-color: rgba(27, 30, 35, 0.1019607843);
}
.s-case-detail .entry-image-right {
	max-width: 740px;
	border-radius: 10px;
	overflow: hidden;
}
.s-case-detail .entry-meta {
	border-radius: 10px;
	background-color: var(--Main-gray);
	padding: 40px 50px 44px 50px;
	margin-bottom: 30px;
}
.s-case-detail .entry-meta ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 100px;
}
.s-case-detail .name-meta {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 19px;
	margin-bottom: 2px;
}
.s-case-detail .entry-image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	min-height: 515px;
	margin-bottom: 40px;
}
.s-case-detail .title-2 {
	font-family: 'Manrope', sans-serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 37px;
	color: var(--Main-black);
	margin-bottom: 15px;
}
.s-case-detail .line {
	background-color: rgba(27, 30, 35, 0.1019607843);
}
.s-case-detail .line.s1 {
	margin: 70px 0px;
}
.s-case-detail .line.s2 {
	margin-bottom: 100px;
}
.s-case-detail .bot {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.s-cta-3 {
	min-height: 650px;
	position: relative;
	overflow: hidden;
	padding: 157px 0px 52px;
	max-width: 1600px;
	width: 100%;
	margin: 0px auto;
	border-radius: 10px;
}
.s-cta-3 .tf-overlay {
	background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}
.s-cta-3 .video-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	margin-bottom: 158px;
}

.s-faq-3 .content {
	max-width: 435px;
	width: 100%;
}

.s-team-member .image {
	position: relative;
	min-height: 500px;
	overflow: hidden;
}
.s-team-member .image .bg-image {
	transform: translateY(40%);
}
.s-team-member .image .bg-image img {
	min-height: unset;
}
.s-team-member .content-wrap {
	background-color: var(--Main-black);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	padding: 70px;
}
.s-team-member .skill {
	max-width: 451px;
	width: 100%;
}
.s-team-member .content .s-title {
	margin-bottom: 31px;
}

.s-team-detail .social-list {
	gap: 10px;
}
.s-team-detail .entry-avatar {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 25px;
}
.s-team-detail .entry-name {
	font-family: 'Manrope', sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 41px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
	margin-bottom: 7px;
}
.s-team-detail .entry-duty {
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
	margin-bottom: 40px;
}
.s-team-detail .line {
	background-color: var(--Border-2);
	margin-bottom: 40px;
}
.s-team-detail .line.s2 {
	max-width: 50px;
	width: 100%;
	background-color: var(--Main-black);
}
.s-team-detail .line.s2.type-2 {
	margin-bottom: 29px;
}
.s-team-detail .title-profile {
	color: var(--Main-black);
	margin-bottom: 15px;
}
.s-team-detail .contact-infor-list {
	margin-bottom: 40px;
}
.s-team-detail .title {
	font-size: 30px;
	line-height: 40px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
}
.s-team-detail .list .number {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--Main-gray);
	flex-shrink: 0;
}
.s-team-detail .list .number span {
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
	color: var(--Main-black);
}
.s-team-detail .list li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 35px;
}
.s-team-detail .list li:not(:last-child) {
	padding-bottom: 30px;
}
.s-team-detail .list .type {
	margin-bottom: 10px;
}
.s-team-detail .list-skill {
	background-color: var(--Main-black);
	padding: 43px 50px 45px 50px;
}
.s-team-detail .content {
	max-width: 780px;
	width: 100%;
	margin-left: auto;
}
.s-team-detail .hello {
	margin-bottom: 22px;
}
.s-team-detail .list-skill .wg-progress {
	max-width: 430px;
}
.s-team-detail .list-skill li:not(:last-child) {
	margin-bottom: 27px;
}

.s-page-contact .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.s-map {
	position: relative;
}
.s-map .content-wrap {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	pointer-events: none;
}
.s-map .content-wrap .content {
	pointer-events: all;
}

.s-job {
	max-width: 1500px;
	width: 100%;
	margin: 0px auto;
	background-color: var(--Main-gray);
	border-radius: 10px;
}

.s-achivement .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.s-achivement .image-wrap {
	position: relative;
}
.s-achivement .image {
	border-radius: 10px;
	overflow: hidden;
}
.s-achivement .item-customer {
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.achievement-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 74px;
}
.achievement-list li {
	max-width: 270px;
	width: 100%;
}
.achievement-list .title {
	margin-bottom: 12px;
}
.achievement-list .icon {
	margin-bottom: 20px;
}
.achievement-list .icon i {
	font-size: 65px;
	color: var(--Main-black);
}
.achievement-list .text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

.wg-award {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 40px 50px 30px;
	border-radius: 10px;
	background-color: var(--Main-gray);
	border: 1px solid rgba(27, 30, 35, 0.1019607843);
}
.wg-award .image {
	margin-bottom: 30px;
}
.wg-award .name {
	margin-bottom: 35px;
}
.wg-award .line {
	border: 1px solid rgba(27, 30, 35, 0.1019607843);
	margin-bottom: 30px;
}

.slider-award {
	overflow: hidden;
}
.slider-award .award-pagination {
	margin-top: 50px;
	height: 21px;
	position: relative;
}

.s-mission .image {
	border-radius: 10px;
	overflow: hidden;
}
.s-mission .list li {
	padding-top: 50px;
	border-top: 1px solid rgba(27, 30, 35, 0.1019607843);
}
.s-mission .list li:not(:last-child) {
	padding-bottom: 50px;
}
.s-mission .list .icon {
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--Main-yellow);
	border-radius: 10px;
}
.s-mission .list .icon i {
	font-size: 35px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	color: var(--Main-black);
}
.s-mission .list .title-top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
}
.s-mission .list .company {
	font-family: 'Manrope', sans-serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 37px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
}

.s-image-breakpage .content {
	min-height: 770px;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.s-404 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.s-404 .image {
	margin-bottom: 100px;
}
.s-404 .not-found {
	font-family: 'Manrope', sans-serif;
	font-size: 75px;
	font-weight: 700;
	line-height: 102px;
	letter-spacing: -0.02em;
	color: var(--Main-black);
	margin-bottom: 20px;
}
.s-404 .sub {
	margin-bottom: 30px;
}

.s-team .tf-marquee {
	margin-bottom: 56px;
}
.s-team .tf-marquee.mb-50 {
	margin-bottom: 50px;
}

.s-our-saylo .s-title {
	margin-bottom: 31px;
}
.s-our-saylo .heading {
	margin-bottom: 49px;
}
.s-our-saylo .menu-tab {
	margin-bottom: 69px;
}

.s-working-3 {
	padding-top: 103px;
}

.s-case-study-3 .bottom a {
	margin-top: 52px;
}

.s-meet-team .bottom a {
	margin-top: 47px;
}

.s-break .s1 {
	background-color: var(--Main-green);
}
.s-break .s2 {
	background-color: var(--Bg-10);
}
.s-break p {
	color: var(--White);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	padding: 25px 206px;
}
.s-break p a {
	color: var(--White);
	position: relative;
	font-weight: 800;
}
.s-break p a::after {
	position: absolute;
	content: '';
	bottom: 2px;
	left: auto;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: var(--Main-yellow);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.s-break p a:hover {
	color: var(--Main-yellow);
}
.s-break p a:hover::after {
	left: 0;
	right: auto;
	width: 100%;
}
.s-break.style-2 .s1 {
	background-color: var(--Main-yellow);
}
.s-break.style-2 .s1 p {
	color: var(--Main-black);
}
.s-break.style-2 .s1 p a {
	color: var(--Main-black);
}
.s-break.style-2 .s1 p a:hover {
	color: var(--White);
}
.s-break.style-2 .s1 p a:hover::after {
	background-color: var(--White);
}
.s-break.style-2 .s2 {
	background-color: var(--Main-black);
}

/*-------------- Responsive ----------------- */
@media (min-width: 1920px) {
	.page-title-home-3 .wrap {
		justify-content: center;
	}
	.page-title-home-3 .content-left {
		margin-left: unset;
	}
	.s-faq {
		justify-content: center;
	}
	.s-faq .image img {
		object-fit: cover;
		height: 100%;
	}
	.s-why-choose-4 .image-right {
		max-width: unset;
		margin-left: unset;
	}
	.s-why-choose-4 .image img {
		width: 100%;
		max-height: 600px;
	}
	.s-why-choose-4 .content-wrap.wrap-2 {
		gap: 30px;
	}
}
@media (min-width: 576px) {
	.tf-collapse-content {
		display: flex !important;
		flex-direction: column;
	}
}
@media (min-width: 992px) {
	.s-mission .content {
		max-width: 660px;
		width: 100%;
		margin-left: auto;
	}
}
@media (min-width: 992px) and (max-width: 1800px) {
	.s-why-choose-4 .image-left {
		padding-right: 30px;
	}
	.s-feature-2 .content {
		padding: 30px;
	}
	.s-feature-2 br {
		display: none;
	}
}
@media (min-width: 992px) and (max-width: 1439px) {
	.animationtext.clip {
		display: block;
	}
	.s-funfact .counter-list {
		padding: 50px;
	}
	.s-funfact .counter-list .text {
		max-width: 240px;
	}
	.s-feature-2 .content .title {
		margin-bottom: 20px;
	}
	.s-feature-2 .content .icon svg {
		max-width: 130px;
		width: 100%;
	}
	.s-feature-2 .content.s2 h5 {
		white-space: nowrap;
	}
	.s-feature-2 .percent-customer {
		gap: 15px 30px;
		flex-wrap: wrap;
	}
	.s-feature-2 .s1 {
		gap: 30px;
	}
	.s-feature-2 .list-skill li {
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.s-feature-2 .wg-progress {
		max-width: unset;
	}
	.box-benefit {
		padding: 30px;
	}
	.wg-feature-item {
		padding: 45px;
	}
	.wg-feature-item .icon {
		margin-bottom: 30px;
	}
	.wg-feature-item .text {
		margin-bottom: 30px;
	}
	.wg-feature-item .benefit-list .icon {
		margin-bottom: 0px;
	}
	.page-title-home-1 .content br {
		display: none;
	}
	.page-title-home-1 .content .s-title {
		font-size: 60px;
		line-height: 70px;
		margin-bottom: 50px;
	}
	.page-title-home-1 .content .line {
		margin-bottom: 50px;
	}
	.page-title-home-1 .content .bot {
		gap: 20px;
		flex-wrap: wrap;
	}
	.tf-sidebar .sb-content {
		padding: 0px 15px;
	}
	.tf-sidebar .sb-content.sb-category {
		padding-bottom: 15px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.wg-pricing {
		padding: 30px;
		height: 100%;
	}
	.wg-pricing .price {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.wg-pricing .benefit-list p {
		line-height: 19px;
	}
	.s-service .bot {
		gap: 45px;
	}
	.wg-feature-item {
		padding: 30px;
	}
	.tf-sidebar .news-list li {
		gap: 15px;
	}
}
/* --------------------------------- */
@media (max-width: 1800px) {
	.s-faq {
		justify-content: center;
	}
	.s-faq .content-wrap {
		padding: 60px;
		gap: 30px;
	}
	.s-faq .image img {
		object-fit: cover;
		height: 100%;
	}
	.page-title-home-3 .wrap {
		min-height: 800px;
		height: 100%;
		align-items: unset;
	}
	.page-title-home-3 .content-left {
		padding: 140px 15px 15px 15px;
	}
	.page-title-home-3 .image-right {
		max-width: unset;
		height: 100%;
		padding: 0px;
	}
	.page-title-home-3 .image {
		height: 100%;
	}
	.page-title-home-3 .image img {
		height: 100%;
		min-height: 800px;
		object-fit: cover;
		width: 100%;
	}
	.page-title-home-3 .image-item.img-item-1 {
		left: 10px;
	}
	.page-title-home-3 .image-item.img-item-2 {
		left: 30px;
	}
	.tf-header.style-3 .header-inner {
		gap: 20px;
	}
	.tf-header.style-3 .header-inner .nav-list {
		gap: 20px;
	}
	.tf-header.style-3 .header-left {
		gap: 50px;
	}
	.tf-header.style-3 .header-right {
		gap: 20px;
	}
	.s-business-benefit .content-wrap {
		min-height: 630px;
	}
	.s-business-benefit .hover-1 {
		height: 100%;
	}
	.s-business-benefit .hover-1 img {
		object-fit: cover;
	}
	.s-business-benefit .content {
		padding-top: 0px;
	}
	.swiper-container {
		overflow: hidden;
	}
	.swiper-container.slider-blog {
		overflow: visible;
	}
	.s-new-blog-3,
	.s-new-blog-2 {
		overflow: hidden;
	}
	.wg-feature-item {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.wg-feature-item .text {
		flex-grow: 1;
	}
	.page-title-home-1 .image-wrap {
		height: 100%;
	}
	.page-title-home-1 .image {
		height: 100%;
	}
	.page-title-home-1 .image img {
		height: 100%;
		object-fit: cover;
	}
}
@media (max-width: 1600px) {
	.s-why-choose-2 .content-left.s2 {
		top: 0;
		bottom: 0;
	}
	.s-faq .content-wrap {
		flex-wrap: wrap;
	}
}
@media (max-width: 1439px) {
	.popular-wrap {
		top: 130px;
	}
	.s-case-detail .content .top {
		gap: 30px;
		align-items: unset;
	}
	.s-case-detail .content .top .hover-1 {
		height: 100%;
	}
	.s-case-detail .content .top .hover-1 img {
		object-fit: cover;
	}
	.s-case-detail .content .top br {
		display: none;
	}
	.s-case-detail .content .top > * {
		width: 50%;
	}
	.grid-layout-4 {
		grid-template-columns: repeat(3, 1fr);
	}
	.grid-layout-4 .card-project .content {
		padding: 30px;
	}
	.s-why-choose-4 .content-left {
		padding-left: 15px;
	}
	.s-why-choose-4 .content-wrap {
		height: auto;
		align-items: unset;
	}
	.s-why-choose-4 .content-right {
		padding-left: 15px;
	}
	.s-why-choose-4 .image-right .image,
	.s-why-choose-4 .image-left .image {
		height: 100%;
	}
	.s-why-choose-4 .image-right .image img,
	.s-why-choose-4 .image-left .image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	.s-testimonial .image {
		height: 100%;
	}
	.s-testimonial .image .hover-1 {
		height: 100%;
	}
	.s-testimonial .image img {
		height: 100%;
		object-fit: cover;
	}
	.s-why-choose-3 .image {
		height: calc(100% - 30px);
	}
	.s-why-choose-3 .image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	.s-why-choose-3 .content {
		gap: 30px;
	}
	.card-member.style-2 {
		max-width: unset;
	}
	.card-member.style-2 .content {
		bottom: 10px;
		left: 50%;
		right: unset;
		transform: translateX(-50%);
	}
	.s-why-choose-2 .wg-curve-text {
		transform: translate(-50%, -50%);
		bottom: 0;
	}
	.s-why-choose-2 .content-left {
		height: 100%;
	}
	.s-why-choose-2 .content-left.s2 {
		display: none;
	}
	.s-why-choose-2 .content-left.s1 {
		display: block;
	}
	.s-why-choose-2 .content-left .image-wrap {
		padding-left: unset;
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.s-why-choose-2 .content-left .image {
		height: 100%;
	}
	.s-why-choose-2 .content-left .image img {
		height: 100%;
	}
	.s-why-choose-2 .content-left .bot {
		padding: 30px;
	}
	.s-our-saylo .menu-tab {
		margin-bottom: 50px;
	}
	.wg-our-saylo {
		gap: 30px;
	}
	.s-service-3 .slider-wrap {
		gap: 30px;
	}
	.wg-service .content {
		padding: 30px;
		margin-right: unset;
		width: 35%;
	}
	.wg-service .image {
		max-width: unset;
		width: 65%;
	}
	.s-about-company-3 .experience {
		flex-wrap: wrap;
	}
	.s-about-company-3 .experience .counter-wrap {
		flex-wrap: wrap;
		gap: 0px 20px;
	}
	.s-about-company-3 .bot {
		flex-wrap: wrap;
	}
	.tf-header.style-3 .mobile-button {
		display: flex;
	}
	.tf-header.style-3 .btn-open-welcome {
		display: none;
	}
	.tf-header.style-3 .header-inner {
		padding: 15px;
	}
	.tf-header.style-3 .header-inner .nav-list {
		display: none;
	}
	.box-benefit {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 100%;
	}
	.box-benefit .title {
		flex-grow: 1;
		margin-bottom: 20px;
	}
	.box-benefit .line {
		margin-bottom: 20px;
	}
	.s-business-benefit .wrap-1 .s-title {
		margin-bottom: 30px;
	}
	.s-business-benefit .wrap-2 {
		margin-top: -150px;
	}
	.page-title-home-2 .content-wrap {
		padding: 0px 15px;
	}
	.page-title-home-2 .image img {
		min-height: 650px;
		object-fit: cover;
	}
	.page-title-home-2 .tf-pagination {
		right: 15px;
	}
	.box-cta {
		padding: 30px;
	}
	.s-contact .content-wrap {
		align-items: center;
	}
	.s-contact .content-left {
		padding: 50px;
	}
	.s-contact .s-title {
		margin-bottom: 50px;
	}
	.s-contact .list {
		gap: 30px;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.testimonial-thumbs {
		gap: 30px;
	}
	.testimonial-thumbs br {
		display: none;
	}
	.testimonial-thumbs .wg-testimonial {
		padding-right: 30px;
	}
	.testimonial-thumbs .slider-testimonial-thumb {
		width: 30%;
	}
	.testimonial-thumbs .slider-testimonial-thumb .image {
		height: 100%;
		max-width: unset;
	}
	.testimonial-thumbs .slider-testimonial-thumb .image img {
		height: 100%;
		object-fit: cover;
	}
	.testimonial-thumbs .slider-testimonial {
		max-width: unset;
		width: 70%;
	}
	.page-title-home-1 .content {
		padding: 50px;
	}
	.footer-inner .inner-center {
		gap: 100px;
		justify-content: space-between;
	}
	.topbar-inner .infor-list {
		gap: 20px;
	}
	.topbar-inner .infor-list li {
		gap: 10px;
	}
	.topbar-inner .infor-list .icon i {
		font-size: 16px;
	}
}
@media (max-width: 1199px) {
	.s-about .list {
		gap: 15px 30px;
		flex-wrap: wrap;
	}
	br {
		display: none;
	}
	.tf-footer .footer-inner-wrap .text br {
		display: block;
	}
	.s-about-company-4 .video-wrap img {
		width: 100%;
		min-height: 450px;
		max-height: 450px;
		object-fit: cover;
	}
	.s-about-company-4 .content-left {
		margin-bottom: 50px;
	}
	.s-about-company-4 .tf-accordion-type-2 {
		max-width: unset;
		margin-left: unset;
		position: relative;
	}
	.s-about-company-4 .tf-accordion-type-2 .accordion-item {
		max-width: unset;
		padding-left: 100px;
	}
	.s-about-company-4 .tf-accordion-type-2 .number {
		left: -100px;
	}
	.page-title-home-3 .s-title {
		font-size: 60px;
		line-height: 70px;
		margin-bottom: 60px;
	}
	.page-title-home-3 .image-item {
		max-width: 230px;
	}
	.tf-footer.style-3 .footer-inner {
		gap: 30px;
	}
	.tf-footer.style-4 .footer-top {
		gap: 15px 30px;
		flex-wrap: wrap;
	}
	.wg-partner a {
		min-height: 170px;
		padding: 50px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.wg-partner a img {
		max-width: 140px;
	}
	.s-about-company-2 .wrap {
		padding: 0px;
	}
	.tf-topbar.style-2 .infor-list {
		gap: 15px;
	}
	.tf-topbar.style-2 .infor-list li {
		gap: 5px;
	}
	.tf-topbar.style-2 .topbar-right {
		width: unset;
	}
	.tf-topbar.style-2 .topbar-left {
		display: flex;
	}
	.tf-topbar.style-3 .infor-list {
		gap: 15px;
	}
	.tf-topbar.style-3 .infor-list li {
		gap: 5px;
	}
	.tf-topbar.style-3 .topbar-right {
		width: unset;
	}
	.tf-topbar.style-3 .topbar-left {
		display: flex;
	}
	.tf-topbar.style-3 .social {
		gap: 20px;
	}
	.s-contact .content-wrap {
		flex-wrap: wrap;
	}
	.s-contact .content-wrap > * {
		width: 100%;
	}
	.s-contact .list {
		justify-content: unset;
	}
	.s-contact .content-left {
		padding: 30px 30px 0px 30px;
	}
	.s-contact .content-right {
		max-width: unset;
		margin: 0px 30px 30px 30px;
	}
	.tf-accordion-type-3 br {
		display: none;
	}
	.tf-accordion-type-3 .accordion-body {
		padding: 20px 50px 50px 50px;
		max-width: 50%;
	}
	.tf-accordion-type-3 .image {
		width: 50%;
	}
	.tf-accordion-type-3 .image .hover-1 {
		height: 100%;
	}
	.topbar-inner .topbar-left {
		display: none;
	}
	.topbar-inner .topbar-right {
		width: 100%;
	}
	.topbar-inner .infor-list {
		justify-content: space-between;
	}
	.header-inner {
		gap: 20px;
	}
	.header-inner .nav-list {
		gap: 20px;
	}
	.header-inner .nav-list .item > a span::after {
		width: calc(100% + 40px);
	}
	.header-inner .nav-list .item.has-child > a span::after {
		width: calc(100% + 55px);
	}
}
@media (max-width: 1024px) {
	.grid-layout-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.tf-topbar.style-2 .topbar-right {
		display: none;
	}
	.tf-topbar.style-2 .topbar-left {
		width: 100%;
	}
	.tf-topbar.style-2 .infor-list {
		width: 100%;
		justify-content: space-between;
	}
}
@media (max-width: 991px) {
	.carousel-pagination,
	.service-pagination {
		height: 21px;
		margin-top: 10px;
		position: relative;
		visibility: visible;
		opacity: 1;
	}
	.s-map .box-map .map {
		height: 450px;
	}
	.s-map .content-wrap {
		padding: 80px 0px;
		position: relative;
		transform: unset;
		pointer-events: all;
	}
	.wg-office .entry-image {
		margin-bottom: 20px;
	}
	.wg-office .sub {
		margin-bottom: 20px;
	}
	.wg-office .line {
		margin-bottom: 20px;
	}
	.s-page-contact .content {
		gap: 50px 30px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.s-case-detail .text.s1 {
		margin-bottom: 5px;
	}
	.s-case-detail .text.s3 {
		margin-bottom: 30px;
	}
	.s-case-detail .text.s3.mb-0 {
		margin-bottom: 0px;
	}
	.s-case-detail .line.s1 {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.s-case-detail .content .top {
		flex-wrap: wrap;
	}
	.s-case-detail .content .top > * {
		width: 100%;
		max-width: unset;
	}
	.s-case-detail .content .top .title {
		margin-bottom: 20px;
	}
	.s-case-detail .content .top .line {
		margin-bottom: 20px;
	}
	.s-case-detail .entry-image-right img {
		max-height: 500px;
		min-height: 500px;
	}
	.s-case-detail .entry-meta {
		padding: 30px;
	}
	.s-case-detail .entry-meta ul {
		gap: 30px;
	}
	.s-case-detail .bot {
		gap: 30px;
	}
	.s-case-detail .bot .btn-case {
		gap: 30px;
	}
	.card-project.style-2 .content {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}
	.s-service-detail .content {
		margin-bottom: 50px;
	}
	.s-service-detail .experience br {
		display: block;
	}
	.s-service-detail .entry-image-2 img {
		min-height: 600px;
		max-height: 600px;
		object-fit: cover;
	}
	.s-service-detail .list-2 {
		gap: 30px;
	}
	.s-faq-2 .content {
		margin-bottom: 50px;
	}
	.s-faq-2 .image {
		max-width: unset;
	}
	.s-faq-2 .image img {
		width: 100%;
		object-fit: cover;
		min-height: 600px;
		max-height: 600px;
	}
	.s-why-choose-4 .content-wrap {
		flex-wrap: wrap-reverse;
	}
	.s-why-choose-4 .content-wrap.wrap-2 {
		flex-wrap: wrap;
		gap: 30px;
	}
	.s-why-choose-4 .content-wrap > * {
		width: 100%;
		max-width: unset;
	}
	.s-why-choose-4 .image img {
		width: 100%;
		min-height: 550px;
		max-height: 550px;
	}
	.s-process-2 .content {
		max-width: unset;
		margin-bottom: 50px;
	}
	.s-process-2 .content .s-title {
		margin-bottom: 20px;
	}
	.s-process-2 .content .text {
		margin-bottom: 20px;
	}
	.s-process-2 .bg-image {
		align-items: unset;
	}
	.s-process-2 .bg-image img {
		transform: scale(1.5);
	}
	.s-process .content-wrap .row {
		gap: 50px;
	}
	.s-process .wg-process {
		gap: 30px;
	}
	.s-process .heading {
		margin-bottom: 30px;
	}
	.s-process .rellax {
		min-height: unset;
		height: 100%;
	}
	.s-process .rellax img {
		min-height: unset;
	}
	.s-process .wg-step-skill {
		max-width: unset;
		padding: 30px;
	}
	.s-we-do .feature-group {
		gap: 15px;
	}
	.s-we-do .box-icon {
		padding: 30px;
	}
	.s-testimonial .item-customer {
		margin-bottom: 50px;
		height: unset;
	}
	.s-testimonial .slider-saylo {
		margin-bottom: 0px;
	}
	.s-testimonial .image img {
		min-height: 500px;
		max-height: 500px;
	}
	.s-solution .s-title {
		margin-bottom: 20px;
	}
	.s-solution .content {
		margin-bottom: 30px;
	}
	.s-solution .content-right {
		justify-content: flex-start;
	}
	.s-solution .wg-feature-item {
		height: unset;
		margin-bottom: 30px;
	}
	.s-solution .wg-feature-item.last {
		margin-bottom: 0px;
	}
	.s-why-choose-3 .image img {
		max-height: 550px;
		min-height: 550px;
		object-position: top;
	}
	.s-why-choose-3 .content {
		flex-wrap: wrap;
		padding: 50px 30px;
	}
	.s-why-choose-3 .content > * {
		max-width: unset;
	}
	.s-title.mb-70 {
		margin-bottom: 40px;
	}
	.s-about .image img {
		width: 100%;
		min-height: 500px;
		max-height: 500px;
		object-fit: cover;
	}
	.s-about .content-right {
		max-width: unset;
		margin-left: unset;
	}
	.s-about .sub-counter {
		margin-bottom: 40px;
	}
	.s-404 .image {
		margin-bottom: 50px;
	}
	.s-page-faq .content {
		margin-bottom: 50px;
	}
	.s-page-faq .content .s-title {
		margin-bottom: 30px;
	}
	.s-page-faq .content .line {
		margin-bottom: 30px;
	}
	.s-page-faq .tf-accordion.mb-70 {
		margin-bottom: 50px;
	}
	.s-image-breakpage .content {
		min-height: 550px;
	}
	.s-mission .image {
		margin-bottom: 50px;
	}
	.s-mission .image img {
		width: 100%;
		object-fit: cover;
		object-position: top;
		min-height: 650px;
		max-height: 650px;
	}
	.s-mission .content .s-title {
		margin-bottom: 20px;
	}
	.s-mission .content .s-sub-title {
		margin-bottom: 20px;
	}
	.s-mission .content .text {
		margin-bottom: 20px;
	}
	.s-mission .content .list li {
		padding-top: 20px;
	}
	.s-mission .content .list li:not(:last-child) {
		padding-bottom: 20px;
	}
	.s-mission .content .list .text {
		margin-bottom: 0px;
	}
	.s-feedback-3 .wg-testimonial .top {
		gap: 15px;
	}
	.s-feedback-3 .wg-testimonial .bot {
		flex-wrap: wrap;
	}
	.s-achivement .content {
		margin-bottom: 50px;
	}
	.s-achivement .content .text {
		margin-bottom: 20px;
	}
	.s-achivement .image img {
		min-height: 650px;
		max-height: 650px;
		object-fit: cover;
	}
	.grid-layout-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.s-faq-3 .content {
		max-width: unset;
		margin-bottom: 50px;
	}
	.s-faq-3 .content .s-title {
		margin-bottom: 20px;
	}
	.s-faq-3 .content .s-sub-title {
		margin-bottom: 20px;
	}
	.s-faq-3 .content .text {
		margin-bottom: 20px;
	}
	.s-faq-3 .content .accordion-button {
		padding: 17px 40px 17px 30px;
	}
	.s-cta-3 .box-cta {
		margin-bottom: 30px;
	}
	.wg-pricing {
		margin-bottom: 30px;
	}
	.wg-pricing.last {
		margin-bottom: 0px;
	}
	.wg-pricing .price {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.wg-pricing .benefit-list p {
		line-height: 19px;
	}
	.s-team-detail .content {
		max-width: unset;
		margin-left: unset;
	}
	.s-team-detail .profile {
		margin-bottom: 50px;
	}
	.s-team-detail .entry-avatar img {
		min-height: 650px;
		max-height: 650px;
		object-fit: cover;
		object-position: top;
	}
	.s-team-detail .entry-duty {
		margin-bottom: 20px;
	}
	.s-team-detail .line {
		margin-bottom: 20px;
	}
	.s-team-detail .contact-infor-list {
		margin-bottom: 30px;
	}
	.s-team-detail .contact-infor-list li:not(:last-child) {
		padding-bottom: 15px;
	}
	.s-team-detail .hello {
		margin-bottom: 10px;
	}
	.s-team-detail .text.s1 {
		margin-bottom: 30px;
	}
	.s-team-detail .title {
		margin-bottom: 10px;
	}
	.s-team-detail .list {
		margin-bottom: 40px;
	}
	.s-team-detail .list li:not(:last-child) {
		padding-bottom: 15px;
	}
	.s-team-detail .list-skill .wg-progress {
		max-width: 385px;
	}
	.s-team-member .image .bg-image img {
		min-height: 700px;
	}
	.s-team-member .content-wrap {
		padding: 50px 30px;
		gap: 30px;
	}
	.wg-case {
		flex-wrap: wrap;
		border: unset;
		margin-bottom: 30px;
	}
	.wg-case.last {
		margin-bottom: 0px;
	}
	.wg-case h3 {
		margin-bottom: 10px;
	}
	.wg-case .content {
		padding-left: unset;
		width: 100%;
	}
	.wg-case .image {
		margin-left: unset;
		max-width: unset;
	}
	.wg-case .image img {
		min-height: 300px;
		max-height: 300px;
		width: 100%;
		object-fit: cover;
	}
	.wg-case .image-left {
		width: 100%;
	}
	.wg-case .number:not(.s2) {
		display: none;
	}
	.s-why-choose-2 .content {
		margin-bottom: 50px;
	}
	.s-why-choose-2 .content .s-title {
		margin-bottom: 40px;
	}
	.s-why-choose-2 .content .list {
		gap: 30px 0px;
	}
	.s-why-choose-2 .content .list > * {
		width: 50%;
		padding-right: 15px;
	}
	.s-funfact .content-right {
		max-width: 700px;
	}
	.s-cta-2 {
		flex-wrap: wrap;
	}
	.s-cta-2 .image img {
		min-height: 500px;
		max-height: 500px;
		object-fit: cover;
	}
	.s-cta-2 .content {
		max-width: unset;
		padding: 30px 15px;
		align-items: unset;
	}
	.s-cta-2 .bot {
		justify-content: unset;
		gap: 30px;
	}
	.page-title-home-4 {
		margin-top: -73px;
	}
	.page-title-home-4 .item-customer {
		display: none;
	}
	.page-title-home-4 .image img {
		min-height: 750px;
	}
	.page-title-home-4 .content-wrap {
		top: 50%;
		transform: translateY(-50%);
		bottom: unset;
		left: 0;
		width: 100%;
		z-index: 2;
	}
	.s-new-blog-3 .heading {
		margin-bottom: 40px;
		gap: 10px 30px;
		flex-wrap: wrap;
	}
	.s-faq {
		flex-wrap: wrap;
		gap: 0px;
	}
	.s-faq .image {
		max-width: unset;
		width: 100%;
	}
	.s-faq .image img {
		width: 100%;
		min-height: 600px;
		max-height: 600px;
		object-position: top;
	}
	.s-faq .content-wrap {
		padding: 60px 15px;
	}
	.s-faq .content-wrap .s-title {
		margin-bottom: 20px;
	}
	.s-faq .content-wrap .text {
		margin-bottom: 20px;
	}
	.s-faq .content-right {
		max-width: unset;
	}
	.s-faq .accordion-button {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		text-overflow: ellipsis;
		padding-bottom: 0px !important;
		padding-right: 39px !important;
		margin-bottom: 16px !important;
	}
	.s-our-advisor .heading {
		margin-bottom: 30px;
		flex-wrap: wrap;
		gap: 15px 30px;
	}
	.s-our-advisor .bot {
		flex-wrap: wrap;
	}
	.wg-our-saylo {
		flex-wrap: wrap;
	}
	.wg-our-saylo .image-left {
		max-width: unset;
	}
	.wg-our-saylo .content-right {
		max-width: unset;
	}
	.wg-our-saylo .content-right .text {
		margin-bottom: 20px;
	}
	.wg-our-saylo .content-right .list {
		margin-bottom: 20px;
	}
	.wg-our-saylo .image img {
		width: 100%;
		max-height: 500px;
		min-height: 500px;
		object-fit: cover;
	}
	.wg-our-saylo .wg-graph {
		bottom: 100px;
	}
	.wg-tabs .menu-tab {
		justify-content: flex-start !important;
	}
	.s-service-3 .item {
		display: none;
	}
	.s-service-3 .slider-wrap {
		gap: 15px;
	}
	.slider-service-2 .image {
		clip-path: inset(0% 0% 0% 0%);
	}
	.slider-service-2 .content {
		transform: translateX(0%);
	}
	.slider-service-2 .swiper-slide-active .content {
		transition-delay: unset;
	}
	.slider-service-2 .swiper-slide-active .image {
		transition-delay: unset;
	}
	.wg-service {
		flex-wrap: wrap-reverse;
	}
	.wg-service .content {
		width: 100%;
	}
	.wg-service .icon {
		margin-bottom: 20px;
	}
	.wg-service h3 {
		margin-bottom: 20px;
	}
	.wg-service .image {
		width: 100%;
	}
	.wg-service .image img {
		max-height: 450px;
		max-height: 450px;
		object-fit: cover;
		width: 100%;
	}
	.s-about-company-3 .content-left {
		padding-bottom: 50px;
		min-height: 850px;
	}
	.s-about-company-3 .image {
		max-width: unset;
	}
	.s-about-company-3 .image.s3 {
		bottom: 50px;
		left: 19%;
	}
	.s-feature-2 .row {
		gap: 30px;
	}
	.s-feature-2 .content {
		padding: 30px;
	}
	.page-title-home-3 .wrap {
		flex-wrap: wrap-reverse;
	}
	.page-title-home-3 .image img {
		min-height: 700px;
		max-height: 700px;
		object-position: top;
	}
	.page-title-home-3 .image-item.img-item-1 {
		top: 20%;
		left: 30px;
	}
	.page-title-home-3 .image-item.img-item-2 {
		top: 50%;
		left: unset;
		right: 30px;
	}
	.page-title-home-3 .content-left {
		max-width: unset;
		margin-left: unset;
		padding: 40px 15px 30px;
	}
	.page-title-home-3 .s-title {
		margin-bottom: 30px;
	}
	.tf-footer.style-3 .footer-inner {
		flex-wrap: wrap;
		gap: 40px 0px;
		padding-bottom: 50px;
	}
	.tf-footer.style-3 .logo-site {
		margin-bottom: 20px;
	}
	.tf-footer.style-3 .footer-inner-wrap {
		width: 50%;
	}
	.tf-footer.style-3 .footer-inner-wrap .text.mb-70 {
		margin-bottom: 20px;
	}
	.tf-footer.style-3 .footer-inner-wrap.form-wrap {
		max-width: unset;
		width: 50%;
	}
	.tf-footer.style-3 .footer-inner-wrap.s1 {
		gap: 30px;
	}
	.tf-footer.style-3 .footer-inner-wrap.s1 br {
		display: block;
	}
	.tf-footer.style-3 .footer-inner-wrap.s1 .footer-title {
		margin-bottom: 5px;
	}
	.tf-footer.style-3 .footer-bottom {
		gap: 0px 40px;
		flex-wrap: wrap;
		justify-content: center;
		padding: 30px 0px 15px;
	}
	.tf-footer.style-3 .footer-bottom .list {
		gap: 15px;
	}
	.tf-footer.style-4 .footer-top {
		padding-bottom: 50px;
		margin-bottom: 50px;
		text-align: center;
	}
	.s-partner-2 .content {
		padding-bottom: 50px;
	}
	.s-partner-2 .s-title {
		margin-bottom: 20px;
	}
	.heading.mb-70 {
		margin-bottom: 40px;
	}
	.s-business-benefit .content-wrap {
		gap: 30px;
		padding-bottom: 50px;
	}
	.s-business-benefit .wrap-2 {
		margin-top: 0px;
	}
	.s-business-benefit .wrap-2 .row {
		gap: 30px 0px;
	}
	.card-case .title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.s-why-choose .content {
		padding-bottom: 50px;
		justify-content: unset;
		height: unset;
	}
	.s-why-choose .content .s-title {
		margin-bottom: 20px;
	}
	.s-why-choose .content .text {
		margin-bottom: 20px;
	}
	.s-why-choose .content .list {
		margin-bottom: 20px;
		gap: 10px 0px;
	}
	.s-why-choose .content .list li {
		width: 50%;
		padding-right: 10px;
	}
	.s-why-choose .video-wrap img {
		width: 100%;
		object-fit: cover;
		max-height: 500px;
		min-height: 450px;
		object-position: top;
	}
	.s-why-choose .box-icon {
		margin-bottom: 30px;
	}
	.s-why-choose .box-icon.last {
		margin-bottom: 0px;
	}
	.s-counter {
		padding: 80px 0px;
	}
	.s-counter .content {
		flex-wrap: wrap;
		gap: 20px;
	}
	.s-counter .title {
		width: 100%;
	}
	.s-counter .counter-wrap {
		width: calc(33.33333% - 20px);
	}
	.s-counter .wg-counter {
		margin-bottom: -10px;
	}
	.s-counter .odometer,
	.s-counter .sub-odo {
		font-size: 40px !important;
		line-height: 60px !important;
	}
	.s-counter .sub-odo {
		top: 8px !important;
	}
	.s-about-company-2 .wrap {
		height: 100%;
	}
	.s-about-company-2 .wrap > * {
		height: 100%;
		width: 50%;
	}
	.s-about-company-2 .s-title {
		margin-bottom: 50px;
	}
	.s-about-company-2 .image-2 {
		min-width: unset;
		height: 100%;
	}
	.s-about-company-2 .image-2 img {
		object-fit: cover;
	}
	.slide-home-2 .content {
		padding: 0px 15px;
	}
	.slide-home-2 .s-title {
		font-size: 60px;
		line-height: 75px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.tf-footer.style-2 .logo-site {
		margin-bottom: 30px;
	}
	.tf-footer.style-2 .footer-top .row {
		gap: 30px 0px;
	}
	.tf-footer.style-2 .footer-inner {
		flex-wrap: wrap;
	}
	.tf-footer.style-2 .footer-inner .inner-left {
		gap: 30px;
		width: 100%;
	}
	.tf-footer.style-2 .footer-inner .inner-right {
		max-width: unset;
	}
	.s-contact .s-title {
		margin-bottom: 30px;
	}
	.testimonial-thumbs .wg-testimonial .icon {
		margin-bottom: 20px;
	}
	.testimonial-thumbs .wg-testimonial .say {
		margin-bottom: 20px;
	}
	.s-working-2 {
		padding-top: 80px;
	}
	.s-working-2 .image img {
		min-height: 400px;
		max-height: 500px;
		object-fit: cover;
	}
	.s-working-2 .pb-100 {
		padding-bottom: 50px;
	}
	.s-working-2 .content-right {
		max-width: unset;
		margin-left: unset;
		padding-bottom: 40px;
	}
	.s-working-2 .content-right .relative {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
	}
	.s-working-2 .content-right .bot {
		gap: 10px;
	}
	.s-working-2 .sub-counter {
		text-align: center;
	}
	.s-working-2 .content-left {
		max-width: unset;
		margin-right: unset;
		padding-bottom: 40px;
	}
	.s-team .flex {
		gap: 20px;
		flex-wrap: wrap;
		margin-bottom: 50px;
	}
	.s-working .s-title {
		margin-bottom: 50px;
	}
	.tf-accordion-type-3 .accordion-body {
		padding: 10px 30px 30px 30px;
	}
	.tf-accordion-type-3 .accordion-button {
		gap: 40px;
	}
	.tf-accordion-type-3 .accordion-item.active .accordion-button {
		padding: 30px;
	}
	.tf-accordion-type-3 .benefit-list p {
		line-height: 19px;
	}
	.s-service .content {
		margin-bottom: 60px;
	}
	.s-service .s-sub-title {
		margin-bottom: 5px;
	}
	.s-service .s-title {
		margin-bottom: 50px;
	}
	.s-service .image img {
		min-height: 500px;
		object-fit: cover;
	}
	.s-sub-title.mb-18 {
		margin-bottom: 5px;
	}
	.s-sub-title.mb-20 {
		margin-bottom: 5px;
	}
	.s-sub-title.mb-16 {
		margin-bottom: 5px;
	}
	.s-sub-title.mb-12 {
		margin-bottom: 5px;
	}
	.s-sub-title.mb-13 {
		margin-bottom: 5px;
	}
	.s-about-company .row {
		gap: 50px;
	}
	.s-about-company .s-sub-title {
		margin-bottom: 5px;
	}
	.s-about-company .s-title {
		margin-bottom: 40px;
	}
	.s-about-company .list {
		margin-bottom: 40px;
	}
	.s-about-company .list li {
		gap: 30px;
		justify-content: flex-start;
	}
	.s-about-company .list li:not(:last-child) {
		padding-bottom: 30px;
	}
	.s-about-company .list li:not(:first-child) {
		padding-top: 30px;
	}
	.s-about-company .list p:first-child {
		white-space: nowrap;
		width: 30%;
		flex-shrink: 0;
	}
	.s-about-company .list .text {
		max-width: unset;
	}
	.s-about-company .image img {
		max-height: 600px;
		min-height: 450px;
		width: 100%;
		object-fit: cover;
		object-position: top;
	}
	.s-about-company .slider-saylo {
		margin-top: unset;
	}
	.s-feature .row {
		gap: 30px;
	}
	.page-title-home-1 .image-wrap {
		margin-top: 50px;
		max-height: 600px;
		min-height: 500px;
	}
	.page-title-home-1 .image img {
		width: 100%;
	}
	.page-title-home-1 .wg-curve-text {
		left: 30px;
		bottom: 30px;
	}
	.author-post {
		margin-bottom: 40px;
	}
	.s-blog-details .comment-wrap {
		margin-bottom: 50px;
	}
	.s-blog-details .entry-image {
		margin-bottom: 30px;
	}
	.s-blog-details .content .title.s1 {
		margin-bottom: 20px;
	}
	.s-blog-details .content .text {
		margin-bottom: 30px;
	}
	.s-blog-details .benefit-list p {
		line-height: 20px;
	}
	.s-blog-details .block-quote {
		margin-bottom: 50px;
	}
	.s-blog-details .bot {
		margin-bottom: 50px;
		flex-wrap: wrap;
		gap: 20px;
	}
	br {
		display: none;
	}
	.tf-sidebar .sb-service img {
		max-height: 500px;
		width: 100%;
		object-fit: cover;
	}
	.pagination-section {
		margin-bottom: 50px;
		flex-wrap: wrap;
	}
	.article-blog-item .meta-list {
		gap: 15px;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.main-content {
		padding: 80px 0px;
	}
	.main-content.padding-0 {
		padding: 0px;
	}
	.main-content.style-2 {
		padding-top: 80px;
		padding-bottom: 70px;
	}
	.main-content.style-3 {
		padding-top: 30px;
		padding-bottom: 80px;
	}
	.slider-saylo p {
		font-size: 150px;
		font-weight: 800;
		line-height: 150px;
	}
	.subscribe-wrap .tf-btn {
		padding: 15px 43px;
		height: max-content;
	}
	.footer-inner .inner-center {
		gap: 40px 0px;
		flex-wrap: wrap;
	}
	.footer-inner .inner-top .flex {
		margin-bottom: 30px;
	}
	.footer-inner .inner-bottom {
		padding-top: 30px;
		gap: 15px 20px;
		flex-wrap: wrap;
	}
	.footer-inner .policy-list .list {
		gap: 15px;
	}
	.footer-inner-wrap {
		width: 50%;
		padding-right: 15px;
		gap: 20px;
	}
	.footer-inner-wrap.s1 {
		justify-content: unset;
	}
	.topbar-right .infor-list {
		gap: 15px;
	}
	.tf-header {
		top: -1px;
	}
	.header-inner {
		padding: 15px 0px;
	}
	.main-nav {
		display: none;
	}
	.btn-open-welcome {
		display: none;
	}
	.mobile-button {
		display: flex;
	}
	.tf-spacing-1 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.tf-spacing-2 {
		padding-top: 80px;
	}
	.tf-spacing-3 {
		padding-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.rellax.type-2 img {
		max-height: 700px;
		min-height: unset;
	}
	.tf-sidebar .sb-contact {
		padding: 0px;
	}
	.tf-sidebar .sb-contact .sb-content {
		padding: 15px;
	}
	.s-case-detail .entry-meta ul {
		flex-wrap: wrap;
		gap: 15px 30px;
	}
	.s-case-detail .bot {
		flex-wrap: wrap;
	}
	.card-project.style-2 .image img {
		min-height: 500px;
		max-height: 500px;
		object-fit: cover;
	}
	.grid-layout-4 {
		grid-template-columns: repeat(1, 1fr);
	}
	.grid-layout-4 .card-project .image img {
		min-height: 450px;
		max-height: 450px;
		object-fit: cover;
	}
	.s-service-detail .list-2 li {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
	}
	.s-service-detail .list-2 .caption {
		flex-grow: 1;
	}
	.s-service-detail .list-2::after {
		content: none;
	}
	.s-process-2 .wg-testimonial {
		padding: 30px;
	}
	.s-process-2 .wg-testimonial .icon {
		margin-bottom: 20px;
	}
	.s-process-2 .wg-testimonial .say {
		margin-bottom: 20px;
	}
	.s-we-do .feature-group {
		gap: 30px;
		flex-wrap: wrap;
	}
	.s-we-do .box-icon {
		width: 100%;
	}
	.grid-layout-2 {
		grid-template-columns: repeat(1, 1fr);
	}
	.grid-layout-3 {
		grid-template-columns: repeat(1, 1fr);
	}
	.s-team-detail .list-skill {
		padding: 30px;
	}
	.s-team-detail .list-skill .skil-name {
		width: 100%;
	}
	.s-team-detail .list-skill .wg-progress {
		max-width: unset;
	}
	.s-team-detail .list-skill .progress {
		max-width: unset;
		width: 80%;
		flex-shrink: unset;
	}
	.s-team-detail .list-skill .wg-counter {
		white-space: nowrap;
	}
	.s-team-detail .list-skill .progress-bar {
		max-width: unset;
	}
	.s-team-detail .list-skill li {
		flex-wrap: wrap;
		gap: 15px 30px;
	}
	.s-meet-team .grid-layout-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.s-team-member .content-wrap {
		flex-wrap: wrap;
	}
	.s-team-member .skill {
		max-width: unset;
	}
	.s-funfact .counter-list {
		padding: 50px;
	}
	.page-title-home-4 .title {
		font-size: 60px;
		line-height: 75px;
		margin-bottom: 40px;
	}
	.page-title-home-4 .list {
		flex-wrap: wrap;
		gap: 15px;
	}
	.tf-topbar.style-3 .topbar-right {
		display: none;
	}
	.tf-topbar.style-3 .infor-list {
		width: 100%;
		justify-content: space-between;
	}
	.tf-topbar.style-3 .topbar-left {
		width: 100%;
	}
	.card-project {
		border: 1px solid var(--Border-5);
		border-radius: 10px;
	}
	.wg-testimonial.style-3 {
		flex-wrap: wrap-reverse;
		padding: 30px;
	}
	.wg-testimonial.style-3 .content-left {
		padding-bottom: 0px;
	}
	.wg-testimonial.style-3 .content-left .icon {
		margin-bottom: 20px;
	}
	.wg-testimonial.style-3 .content-left .say {
		margin-bottom: 10px;
	}
	.s-about-company-3 .wg-curve-text {
		right: 50%;
		transform: translateX(50%);
	}
	.s-about-company-3 .content-left {
		min-height: unset;
	}
	.s-about-company-3 .image img {
		min-height: 450px;
	}
	.s-about-company-3 .image.s1 {
		margin-top: 0px;
		height: 100%;
	}
	.s-about-company-3 .image.s1 img {
		height: 100%;
		object-fit: cover;
	}
	.s-about-company-3 .image.s2 {
		margin-top: 0px;
		height: 100%;
	}
	.s-about-company-3 .image.s2 img {
		height: 100%;
		object-fit: cover;
	}
	.s-about-company-3 .image.s3 {
		display: none;
	}
	.s-feature-2 .percent-customer {
		gap: 15px 30px;
		flex-wrap: wrap;
	}
	.s-feature-2 .s1 {
		gap: 30px;
	}
	.s-feature-2 .list-skill .skil-name {
		margin-bottom: 5px;
	}
	.s-feature-2 .list-skill li {
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.s-feature-2 .wg-progress {
		max-width: unset;
	}
	.s-feature-2 .wg-progress .progress {
		max-width: unset;
		flex-shrink: unset;
	}
	.s-feature-2 .title {
		margin-bottom: 20px;
	}
	.s-feature-2 .icon svg {
		max-width: 130px;
		width: 100%;
	}
	.tf-header.style-3 .box-icon-contact {
		display: none;
	}
	.s-cta .wrap {
		min-height: 450px;
	}
	.s-cta .content {
		left: 0px;
		transform: translate(0, -50%);
		padding-left: 15px;
	}
	.s-business-benefit .image img {
		min-height: 450px;
		max-height: 450px;
	}
	.s-business-benefit .content-wrap {
		flex-wrap: wrap;
	}
	.s-feedback .content {
		margin-bottom: 40px;
	}
	.s-service-2 .s-heading {
		margin-bottom: 30px;
	}
	.s-about-company-2 .content .text {
		margin-bottom: 30px;
	}
	.s-about-company-2 .wg-curve-text {
		margin-bottom: 30px;
	}
	.footer-go-top {
		width: 40px;
		height: 40px;
	}
	.footer-go-top i {
		font-size: 6px;
	}
	.tf-footer.style-2 .footer-top {
		padding-bottom: 50px;
	}
	.tf-footer.style-2 .footer-inner {
		padding-bottom: 50px;
	}
	.tf-footer.style-2 .footer-bottom {
		gap: 5px 30px;
		padding: 30px 0px 15px;
		justify-content: center;
	}
	.tf-footer .footer-bottom {
		flex-wrap: wrap;
		justify-content: center;
	}
	.tf-footer .no-copy {
		line-height: 19px;
	}
	.tf-footer .no-copy span {
		line-height: 19px;
	}
	.tf-footer .no-copy a {
		line-height: 19px;
	}
	.tf-accordion-type-3 .image {
		display: none;
	}
	.tf-accordion-type-3 .accordion-body {
		width: 100%;
		max-width: unset;
	}
	.tf-accordion-type-3 .accordion-button {
		padding: 20px;
		gap: 15px;
		overflow: hidden;
	}
	.tf-accordion-type-3 .accordion-button .step {
		white-space: nowrap;
	}
	.tf-accordion-type-3 .accordion-button::after {
		right: 15px;
	}
	.tf-accordion-type-3 .accordion-button span:last-child {
		overflow: hidden;
		-webkit-line-clamp: 1;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
	}
	.s-service .bot {
		gap: 20px 50px;
		flex-wrap: wrap;
	}
	.s-about-company .list li {
		gap: 15px;
		flex-wrap: wrap;
	}
	.page-title-home-1 .s-sub-title {
		margin-bottom: 5px;
	}
	.page-title-home-1 .s-title {
		margin-bottom: 50px;
	}
	.page-title-home-1 .line {
		margin-bottom: 50px;
		max-width: unset;
	}
	.page-title-home-1 .bot {
		flex-wrap: wrap;
		gap: 15px;
	}
	.page-title-home-1 .tf-marquee {
		padding-top: 50px;
	}
	.s-title {
		font-size: 35px;
		line-height: 50px;
	}
	.s-title.text-fs-70 {
		font-size: 50px;
		line-height: 60px;
	}
	.comment-wrap {
		padding: 30px;
	}
	.comment-wrap .bot {
		margin-bottom: 0px;
	}
	.btn-blog-group {
		gap: 10px;
		flex-wrap: wrap;
	}
	.btn-blog-group .btn-blog {
		gap: 15px;
	}
	.author-post {
		padding: 30px;
		gap: 30px;
	}
	.block-quote {
		padding: 30px;
	}
	.article-blog-item .entry-image img {
		min-height: 400px;
		object-fit: cover;
	}
	.tf-page-title .content-wrap {
		min-height: 450px;
		padding-bottom: 50px;
	}
	.tf-page-title .content .title {
		font-size: 60px;
		line-height: 70px;
	}
	.tf-page-title .breadcrums {
		gap: 10px;
	}
	.tf-page-title .breadcrums a {
		font-size: 20px;
	}
	.tf-page-title .breadcrums .icon i {
		font-size: 14px;
	}
	.tf-page-title.style-2 .content-wrap {
		min-height: 650px;
	}
	.tf-page-title.style-2 .meta-list {
		gap: 15px;
		flex-wrap: wrap;
	}
	.tf-page-title.style-2 .meta-list .entry {
		gap: 5px;
	}
	.topbar-inner {
		padding: 5px 0px;
	}
	.topbar-right .infor-list li:last-child {
		display: none;
	}
}
@media (max-width: 575px) {
	.btn-service-2 {
		transform: rotate(-90deg);
	}
	.s-service-3 .slider-wrap {
		flex-wrap: wrap;
		gap: 50px;
	}
	.s-service-3 .direc-group {
		flex-direction: row;
		align-items: center;
		gap: 20px;
	}
	.wow {
		visibility: visible !important;
		animation-name: none !important;
	}
	.animationtext.clip {
		display: block;
	}
	.tf-marquee.type-2 .wrap-marquee {
		-webkit-animation: slide-har 10s linear infinite;
		animation: slide-har 10s linear infinite;
	}
	.wg-partner a img {
		max-width: 120px;
	}
	.tf-collapse-content {
		display: none;
	}
	.footer-title-desktop {
		display: none;
	}
	.footer-title-mobile {
		display: block;
	}
	.feature-group {
		padding: 15px;
		gap: 15px;
	}
	.feature-group .box-icon {
		padding: 15px;
	}
	.page-title-home-3 .image-item {
		top: 60% !important;
		max-width: 150px;
	}
	.page-title-home-3 .image-item.img-item-1 {
		padding: 10px 10px 0px 10px;
		left: 10px;
	}
	.page-title-home-3 .image-item.img-item-2 {
		padding: 10px;
		right: 10px;
	}
	.page-title-home-3 .image-item.img-item-2 .bot {
		padding: 0px;
		margin: 0px;
		flex-wrap: wrap;
		gap: 5px;
		justify-content: center;
	}
	.wg-company {
		padding: 15px;
	}
	.breadcrums {
		flex-wrap: wrap;
	}
	.s-service-detail .list-2 {
		flex-wrap: wrap;
		margin-bottom: 50px;
	}
	.s-service-detail .list-2 li {
		width: 100%;
		max-width: unset;
	}
	.s-service-detail .list-2 .caption {
		margin-bottom: 10px;
	}
	.s-service-detail .list-2 .icon {
		margin-bottom: 10px;
	}
	.s-process .wg-process {
		flex-wrap: wrap;
	}
	.s-process .wg-process .right {
		max-width: unset;
		width: 100%;
	}
	.s-process .wg-process .text {
		max-width: unset;
	}
	.s-404 .not-found {
		font-size: 60px;
		line-height: 80px;
	}
	.s-achivement .achievement-list {
		gap: 30px;
		flex-wrap: wrap;
	}
	.s-achivement .achievement-list li {
		max-width: unset;
	}
	.s-meet-team .grid-layout-3 {
		grid-template-columns: repeat(1, 1fr);
	}
	.wg-testimonial.style-4 .top {
		gap: 15px 30px;
		flex-wrap: wrap;
	}
	.wg-testimonial.style-4 .bot {
		gap: 10px;
		flex-wrap: wrap;
	}
	.wg-testimonial.style-4 .flex {
		flex-wrap: wrap;
	}
	.s-why-choose-2 .content-left .bot {
		flex-wrap: wrap;
	}
	.s-why-choose-2 .content-left .image img {
		min-height: 450px;
	}
	.s-why-choose-2 .wg-curve-text {
		display: none;
	}
	.s-funfact .counter-list {
		padding: 30px;
	}
	.s-funfact .counter-list li {
		flex-wrap: wrap;
	}
	.s-funfact .counter-list li:not(:first-child) {
		margin-top: 20px;
	}
	.s-funfact .counter-list .wg-counter {
		width: 100%;
		margin-bottom: -20px;
	}
	.s-funfact .counter-list .text {
		max-width: unset;
	}
	.s-cta-2 .content .s-title {
		margin-bottom: 20px;
	}
	.s-cta-2 .content .text {
		margin-bottom: 20px;
	}
	.tf-topbar.style-3 .icon {
		display: none;
	}
	.tf-topbar.style-3 .infor-list {
		gap: 0px 30px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.tf-topbar.style-2 .infor-list {
		gap: 10px 40px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.wg-our-saylo .list {
		gap: 10px;
	}
	.wg-our-saylo .list li {
		width: 100%;
	}
	.s-about-company-3 .content-left {
		flex-wrap: wrap;
	}
	.s-about-company-3 .content-left .image {
		height: unset;
		width: 100%;
	}
	.s-about-company-3 .content-left .image img {
		width: 100%;
		max-height: 450px;
		object-position: top;
	}
	.s-about-company-3 .wg-curve-text {
		top: 50%;
		transform: translate(50%, -70%);
	}
	.s-feature-2 .s1 {
		flex-wrap: wrap;
	}
	.s-feature-2 .s1 .line {
		display: none;
	}
	.s-feature-2 .s1 > * {
		width: 100%;
	}
	.s-feature-2 .s2 .title {
		justify-content: center;
	}
	.s-feature-2 .s2 .icon {
		display: none;
	}
	.tf-footer.style-3 .footer-inner-wrap {
		width: 100%;
	}
	.tf-footer.style-3 .footer-inner-wrap.form-wrap {
		width: 100%;
	}
	.wg-partner a {
		width: 50%;
		min-height: 140px;
	}
	.wg-testimonial.style-2 {
		padding: 30px;
	}
	.wg-testimonial.style-2 .top {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.wg-testimonial.style-2 .author-wrap {
		gap: 10px;
	}
	.s-why-choose .content .list li {
		width: 100%;
		padding-right: unset;
	}
	.s-counter .counter-wrap {
		width: 100%;
	}
	.s-about-company-2 .wrap {
		flex-wrap: wrap;
		gap: 40px;
	}
	.s-about-company-2 .wrap > * {
		height: unset;
		width: 100%;
	}
	.s-about-company-2 .s-title {
		margin-bottom: 20px;
	}
	.s-about-company-2 .image-2 img {
		min-height: 450px;
		max-height: 450px;
		object-position: top;
	}
	.s-about-company-2 .image-1 {
		max-width: unset;
	}
	.slide-home-2 .content {
		padding: 0px;
	}
	.slide-home-2 .s-title {
		font-size: 40px;
		line-height: 60px;
		margin-bottom: 30px;
	}
	.slide-home-2 .image img {
		min-height: 450px;
	}
	.s-contact .content-right {
		padding: 15px;
	}
	.s-contact .cols {
		flex-wrap: wrap;
	}
	.s-contact .cols > * {
		width: 100%;
	}
	.testimonial-thumbs {
		flex-wrap: wrap;
		gap: 40px;
	}
	.testimonial-thumbs .slider-testimonial {
		width: 100%;
	}
	.testimonial-thumbs .image img {
		width: 100%;
		object-fit: cover;
		min-height: 400px;
		max-height: 400px;
	}
	.testimonial-thumbs .slider-testimonial-thumb {
		width: 100%;
		max-width: unset;
	}
	.testimonial-thumbs .tf-pagination {
		flex-direction: row;
		right: unset;
		top: 51%;
		left: 0;
	}
	.s-working-2 .content-right .bot {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}
	.box-project .content {
		left: 20px;
		bottom: 10px;
		right: 20px;
	}
	.box-project .content .icon {
		flex-shrink: 0;
	}
	.box-icon.default {
		padding: 30px;
	}
	.box-icon.default:hover {
		padding: 30px;
	}
	.s-about-company .half-circle.item-1 {
		left: unset;
		right: 100px;
	}
	.s-about-company .half-circle.item-2 {
		right: 30px;
	}
	.half-circle {
		width: 125px;
		height: 250px;
		border-top-left-radius: 125px;
		border-bottom-left-radius: 125px;
	}
	.wg-feature-item {
		padding: 45px;
	}
	.wg-feature-item .icon {
		margin-bottom: 30px;
	}
	.wg-feature-item .text {
		margin-bottom: 30px;
	}
	.wg-feature-item .benefit-list .icon {
		margin-bottom: 0px;
	}
	.s-title.text-fs-70 {
		font-size: 50px;
		line-height: 60px;
	}
	.page-title-home-1 .content {
		padding: 35px;
	}
	.page-title-home-1 .s-title {
		margin-bottom: 30px;
	}
	.page-title-home-1 .line {
		margin-bottom: 30px;
	}
	.page-title-home-1 .text {
		margin-bottom: 30px;
	}
	.comment-wrap {
		padding: 20px;
	}
	.form-comment .cols {
		flex-wrap: wrap;
		gap: 15px;
		margin-bottom: 15px;
	}
	.form-comment .cols > * {
		width: 100%;
	}
	.author-post {
		flex-wrap: wrap;
		padding: 25px;
	}
	.author-post .duty {
		margin-bottom: 0px;
	}
	.s-blog-details .entry-image-2 {
		flex-wrap: wrap;
	}
	.s-blog-details .entry-image-2 .image {
		width: 100%;
	}
	.s-blog-details .entry-image-2 .image figure {
		max-width: unset;
	}
	.s-blog-details .entry-image-2 .image img {
		width: 100%;
	}
	.tf-page-title.style-2 .breadcrums {
		margin-bottom: 10px;
	}
	.tf-page-title.style-2 h2 {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 4;
	}
	.tf-sidebar .sb-content {
		padding: 0px 15px;
	}
	.tf-sidebar .sb-content.sb-category {
		padding-bottom: 15px;
	}
	.tf-sidebar .news-list li {
		gap: 15px;
	}
	.article-blog-item .meta-list {
		gap: 15px 0px;
		margin-bottom: 15px;
	}
	.article-blog-item .meta-list li {
		width: 50%;
		padding-right: 15px;
	}
	.tf-page-title .content-wrap {
		min-height: 400px;
		padding-bottom: 30px;
	}
	.footer-inner .inner-center {
		gap: 30px 0px;
	}
	.footer-inner-wrap {
		width: 100%;
		padding-right: 0px;
	}
	.footer-inner-wrap.s1 {
		gap: 30px;
	}
	.topbar-right .infor-list {
		gap: 5px;
		flex-wrap: wrap;
	}
	.topbar-right .infor-list .icon {
		display: none;
	}
}
@media (max-width: 425px) {
	.s-about-company-3 .experience .counter-wrap {
		width: 100%;
	}
	.tf-footer.style-3 .footer-inner {
		gap: 30px 0px;
	}
	.tf-footer.style-3 .footer-inner .footer-title {
		margin-bottom: 5px;
	}
	.tf-footer.style-3 .no-copy {
		margin-bottom: 10px;
	}
	.tf-footer.style-3 .footer-bottom .list {
		flex-wrap: wrap;
		gap: 0px 15px;
		justify-content: center;
	}
	.tf-footer.style-3 .footer-bottom .list li a {
		line-height: 19px;
	}
	.topbar-right .infor-list {
		justify-content: center;
	}
	.s-testimonial .item-customer {
		margin-bottom: 30px;
		height: unset;
	}
	.wg-partner a img {
		max-width: 100px;
	}
	.tf-page-title .content .title {
		font-size: 40px;
		line-height: 55px;
	}
	h2 {
		font-size: 40px;
		line-height: 55px;
	}
	.card-project.style-2 .text {
		display: none;
	}
	.card-project.style-2 .content {
		transform: translateY(50px);
	}
	.wg-pricing {
		padding: 30px;
	}
	.tf-footer .footer-inner .inner-bottom .policy-list .list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.tf-footer .footer-inner .inner-bottom .policy-list .list a {
		line-height: 19px;
	}
	.subscribe-wrap {
		flex-wrap: wrap;
	}
	.subscribe-wrap .tf-btn {
		width: 100%;
	}
	.s-why-choose-2 .content .list {
		gap: 15px 0px;
	}
	.s-why-choose-2 .content .list .icon {
		margin-bottom: 0px;
	}
	.s-why-choose-2 .content .list > * {
		width: 100%;
		padding-right: 0px;
	}
	.page-title-home-3 .s-title {
		font-size: 40px;
		line-height: 60px;
	}
	.wg-testimonial.style-2 .icon {
		display: none;
	}
	.box-icon.style-2 {
		padding: 30px;
	}
	.tf-footer.style-2 .footer-inner .inner-left {
		flex-wrap: wrap;
	}
	.wg-feature-item {
		padding: 30px;
	}
	.block-quote .bot a {
		margin-left: 40px;
	}
	.block-quote .bot::after {
		width: 30px;
	}
	.block-quote .cite {
		font-size: 20px;
		line-height: 35px;
		margin-bottom: 10px;
	}
	.article-blog-item .meta-list li {
		width: 100%;
	}
	.header-inner .header-right .tf-btn {
		display: none;
	}
}

/*# sourceMappingURL=styles.css.map */
