/* ---------------------------------------------------------
    * Name: Fodge
    * Version: 1.0.0
    * Author: WordPressRiver
    * Author URI: https://themeforest.net/user/wordpressriver

	* Abstracts variable

    * Reset css styles

    * Components

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
  --black: #000000;
  --white: #ffffff;
  --body-text: #847777;
  --text: #847777;
  --text-2: #211b1b;
  --text-3: #000000e5;
  --text-4: #000000d9;
  --text-5: #77787b;
  --text-6: #ffffffd9;
  --line: #d3d3d3;
  --line-2: #ebe9e9;
  --line-3: #0040c133;
  --line-4: #0040c136;
  --line-5: #0040c138;
  --line-6: #e9e9e9;
  --primary: #0040c1;
  --primary-2: #0040c166;
  --bg: #eef4ff;
  --bg-2: #ffffff66;
  --yellow: #ffa826;
}

/*---------- 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: 3px;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

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: "Inter", serif;
  font-size: 15px;
  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: 15px;
  line-height: 25px;
}

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: "Inter", serif;
  color: var(--black);
  margin: 0;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-size: 66px;
  line-height: 50px;
  letter-spacing: -2.2px;
}

.display-lg {
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -2.2px;
}

h2,
.h2 {
  font-size: 48px;
  line-height: 50px;
  letter-spacing: -0.4px;
}

.display-md {
  font-size: 42px;
  line-height: 44px;
  letter-spacing: -0.6px;
}

.display-md-2 {
  font-size: 30px;
  line-height: 29px;
  letter-spacing: -0.6px;
}

.display-md-3 {
  font-size: 35px;
  line-height: 40px;
  letter-spacing: -0.2px;
}

.display-md-4 {
  font-size: 38px;
  line-height: 28px;
}

h3,
.h3 {
  font-size: 31px;
  line-height: 40px;
  letter-spacing: -0.72px;
}

.display-sm {
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.3px;
}

.display-sm-2 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
}

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

h5,
.h5 {
  font-size: 18px;
  line-height: 30px;
}

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

.text-xl {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.2px;
}

.text-lg {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.text-md {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.text-sm {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.04px;
}

.text-sm-2 {
  font-size: 15px;
  line-height: 18px;
}

.text-xs {
  font-size: 12px;
  line-height: 9px;
}

.text-xs-2 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4px;
}

.text-xs-3 {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.4px;
}

.text-xs-4 {
  font-size: 12px;
  line-height: 9px;
}

.long-text {
  color: var(--text);
  font-size: 16px;
  line-height: 23px;
}

.lh-22 {
  line-height: 22px !important;
}

.lt_sp-06 {
  letter-spacing: -0.6px !important;
}

.lt_sp-04 {
  letter-spacing: -0.4px !important;
}

.lt_sp-03 {
  letter-spacing: -0.3px !important;
}

.lt_sp-02 {
  letter-spacing: -0.2px !important;
}

.lt_sp-016 {
  letter-spacing: -0.16px !important;
}

.lt_sp-0 {
  letter-spacing: 0px !important;
}

.body-1 {
  font-size: 18px;
  line-height: 28px;
}

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

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

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

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

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

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

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

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

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

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

/* link style
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--text-2);
  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;
}
a:hover, a:focus {
  color: var(--primary);
  outline: 0;
}
a::after, a::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;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1440px;
  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;
}

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

.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;
}

.tf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.text-primary {
  color: var(--primary) !important;
}

.text-main {
  color: var(--text) !important;
}

.text-main-2 {
  color: var(--text-2) !important;
}

.text-main-3 {
  color: var(--text-3) !important;
}

.text-main-4 {
  color: var(--text-4) !important;
}

.text-main-5 {
  color: var(--text-5) !important;
}

.text-main-6 {
  color: var(--text-6) !important;
}

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

.text-black {
  color: var(--black) !important;
}

.text-bg {
  color: var(--bg) !important;
}

.font-main {
  font-family: "Inter", serif;
}

.font-2 {
  font-family: "Inter Tight", serif;
}

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

.bg-main-2 {
  background-color: var(--bg-2) !important;
}

.bg-text-main {
  background-color: var(--text) !important;
}

.bg-text-5 {
  background-color: var(--text-5) !important;
}

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

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

.bg-line-2 {
  background-color: var(--line-2) !important;
}

.bg-line-3 {
  background-color: var(--line-3) !important;
}

.bg-line-6 {
  background-color: var(--line-6) !important;
}

.bg-linear {
  background: linear-gradient(180deg, rgba(238, 244, 255, 0.9) -9.4%, rgba(255, 255, 255, 0.9) 83.73%);
}

/* Personal
-------------------------------------------------------------- */
.odometer-value {
  width: 100%;
  text-align: right !important;
}

.odometer-digit {
  vertical-align: unset !important;
}

.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;
}

.tf-grid-layout {
  display: grid;
  gap: 15px;
}
.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}
.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.tf-grid-layout .wg-pagination {
  grid-column: 1/-1;
  width: 100%;
}
.tf-grid-layout .wd-load {
  grid-column: 1/-1;
}

.link {
  -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;
}
.link:hover {
  color: var(--primary) !important;
}

.link-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;
}
.link-yellow:hover {
  color: var(--yellow) !important;
}

.link-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;
}
.link-white:hover {
  color: var(--white) !important;
}

.link-text-6 {
  -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;
}
.link-text-6:hover {
  color: var(--text-6) !important;
}

.link-text-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;
}
.link-text-5:hover {
  color: var(--text-5) !important;
}

.link-icon {
  display: inline-flex;
  gap: 11px;
  align-items: center;
}

.br-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.br-line.type-vertical {
  height: 15px;
  width: 2px;
}

.line {
  border: 1px solid var(--line);
}

.line-2 {
  border: 1px solid var(--line-2);
}

.line-3 {
  border: 1px solid var(--line-3);
}

.line-4 {
  border: 1px solid var(--line-4);
}

.line-5 {
  border: 1px solid var(--line-5);
}

.line-white {
  border: 1px solid var(--white);
}

.line-black {
  border: 1px solid var(--black);
}

.text-underline {
  position: relative;
}
.text-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
}
.text-underline.l-under-primary::before {
  background-color: var(--primary);
}
.text-underline.l-under-black::before {
  background-color: var(--black);
}

.link:hover {
  color: var(--primary) !important;
}

.icon-polygon {
  font-size: 7px;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.radius-5 {
  border-radius: 5px;
}

.w-1440 {
  max-width: 1440px;
  width: 100%;
  margin: 0px auto;
}

.w-1362 {
  max-width: 1362px;
  width: 100%;
  margin: 0px auto;
}

.w-1314 {
  max-width: 1314px;
  width: 100%;
  margin: 0px auto;
}

.w-1311 {
  max-width: 1311px;
  width: 100%;
  margin: 0px auto;
}

.w-1320 {
  max-width: 1320px;
  width: 100%;
  margin: 0px auto;
}

.w-1305 {
  max-width: 1305px;
  width: 100%;
  margin: 0px auto;
}

.w-1300 {
  max-width: 1300px;
  width: 100%;
  margin: 0px auto;
}

.w-1290 {
  max-width: 1290px;
  width: 100%;
  margin: 0px auto;
}

.w-1280 {
  max-width: 1280px;
  width: 100%;
  margin: 0px auto;
}

.w-1209 {
  max-width: 1209px;
  width: 100%;
  margin: 0px auto;
}

.w-1205 {
  max-width: 1205px;
  width: 100%;
  margin: 0px auto;
}

.w-1250 {
  max-width: 1250px;
  width: 100%;
  margin: 0px auto;
}

.w-1220 {
  max-width: 1220px;
  width: 100%;
  margin: 0px auto;
}

.w-1230 {
  max-width: 1230px;
  width: 100%;
  margin: 0px auto;
}

.w-1237 {
  max-width: 1237px;
  width: 100%;
  margin: 0px auto;
}

.w-1240 {
  max-width: 1240px;
  width: 100%;
  margin: 0px auto;
}

.w-1200 {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
}

.w-1170 {
  max-width: 1170px;
  width: 100%;
  margin: 0px auto;
}

.w-1148 {
  max-width: 1148px;
  width: 100%;
  margin: 0px auto;
}

.w-1158 {
  max-width: 1158px;
  width: 100%;
  margin: 0px auto;
}

.w-1072 {
  max-width: 1072px;
  width: 100%;
  margin: 0px auto;
}

.w-993 {
  max-width: 993px;
  width: 100%;
  margin: 0px auto;
}

.p-0-15 {
  padding: 0px 15px;
}

.w-max-content {
  width: max-content;
}

.img-clip-path {
  clip-path: polygon(69% 0, 75% 8%, 100% 8%, 100% 100%, 0 100%, 0 0);
  overflow: hidden;
}

.pointer-none {
  pointer-events: none;
}

.initial-child-container {
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
  align-items: center;
}

.bg-img-net {
  background-image: url("./../images/item/we-do.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.bg-img-net-2 {
  background-image: url("./../images/item/exp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.bg-img-net-3 {
  background-image: url("./../images/item/net.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

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

.simpleParallax {
  height: 100%;
  width: 100%;
}
.simpleParallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-0 {
  padding-top: 0px !important;
}

/*------------ Components ---------------- */
/*------------ header ---------------- */
.topbar-inner {
  padding: 17px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* -- Header --*/
.tf-header {
  border-bottom: 1px solid var(--line-2);
}
.tf-header.style-2 .main-nav .nav-list {
  gap: 39px;
}

header {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  right: 0;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.5s cubic-bezier(0.63, 0.25, 0.25, 1);
  z-index: 888;
  background-color: var(--white);
}
header.header-bg {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header-inner .btn-email {
  gap: 3px;
  display: flex;
  align-items: center;
}
.header-inner .nav-search i {
  font-size: 22px;
}
.header-inner .nav-support {
  display: grid;
  gap: 9px;
}
.header-inner .nav-support .title-type {
  font-size: 11px;
  line-height: 9px;
}
.header-inner .nav-support .number-phone {
  font-size: 15px;
  line-height: 11px;
  letter-spacing: -1px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  /* Sub Menu */
  /* Mega Menu*/
}
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav .nav-item:hover .item-link {
  color: var(--primary);
}
.main-nav .nav-item:hover .item-link::before {
  display: block;
}
.main-nav .nav-item:hover .item-link i {
  transform: rotate(180deg);
  color: var(--primary);
}
.main-nav .nav-item:hover .sub-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.main-nav .nav-item.active .item-link {
  color: var(--primary);
}
.main-nav .nav-item.active .item-link i {
  color: var(--primary);
}
.main-nav .item-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  line-height: 85px;
  position: relative;
}
.main-nav .item-link 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-2);
}
.main-nav .item-link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 0px);
  width: calc(100% + 70px);
  display: none;
}
.main-nav .sub-mega-list .menu li a {
  font-size: 13px;
  line-height: 10px;
  font-family: "Inter Tight", serif;
  color: var(--text) !important;
  font-weight: 500 !important;
}
.main-nav .sub-mega-list .menu li + li {
  margin-top: 21px;
}
.main-nav .sub-mega-list .menu li a:hover{
  color: var(--primary) !important;
} 
.main-nav .mega-item-link.active {
  color: var(--primary) !important;
}
.main-nav .sub-menu {
  position: absolute;
  background-color: var(--white);
  min-width: 239px;
  z-index: 999;
  top: 100%;
  left: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 9px 0px rgba(0, 64, 193, 0.2);
  border: 1px solid var(--line-2);
  transform: translateY(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;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.main-nav .sub-menu.mega-menu {
  left: 0;
  padding: 30px;
  display: flex;
  right: 15px;
  left: 15px;
  justify-content: space-between;
}
.main-nav .sub-menu.mega-menu.style-2 {
  justify-content: unset;
  gap: 80px;
}
.main-nav .sub-menu.mega-menu.style-2 .wrapper-sub-menu {
  width: 100%;
}
.main-nav .sub-menu.mega-menu.style-2 .wrapper-sub-menu .br-line {
  max-width: unset;
}
.main-nav .sub-menu.mega-menu .sub-menu-grid {
  width: max-content;
}
.main-nav .sub-menu.mega-service .card-service-item .card-content {
  padding: 11px 18px 11px 55px;
}
.main-nav .sub-menu.mega-service .card-service-item .card-content a {
  line-height: 11px;
}
.main-nav .menu-list {
  padding: 4px 0px;
}
.main-nav .menu-list .br-line {
  max-width: 159px;
  margin: 0 auto;
}
.main-nav .menu-list .menu li a {
  font-size: 15px;
  line-height: 11px;
  padding: 25px 39px;
  display: block;
  font-weight: 500 !important;
}
.main-nav ul li .menu-list li {
  border-bottom: 1px solid var(--line);
}
.main-nav ul li .menu-list li:last-child{
  border: none;
}
.main-nav .menu-link-text.active {
  color: var(--primary);
}
.main-nav .wrapper-sub-we {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 70px;
  position: relative;
}
.main-nav .wrapper-sub-we .box-title {
  display: grid;
  gap: 15px;
}
.main-nav .wrapper-sub-we .we-top {
  display: grid;
  gap: 11px;
}
.main-nav .wrapper-sub-we .br-line {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
}
.main-nav .wrapper-sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-nav .wrapper-sub-menu .br-line {
  margin: 30px auto;
}
.main-nav .mega-menu-list {
  display: flex;
  gap: 30px;
}
.main-nav .mega-menu-list .mega-menu-item {
  display: grid;
  gap: 32px;
}
.main-nav .mega-menu-list .sub-mega-list {
  display: grid;
  gap: 21px;
}
.main-nav .wrapper-sub-project {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.main-nav .card-project-item {
  position: relative;
  max-width: 332px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 4px 9px 0px rgba(0, 64, 193, 0.2);
}
.main-nav .card-project-item .image {
  height: 100%;
}
.main-nav .card-project-item .image img {
  height: 100%;
  object-fit: cover;
}
.main-nav .card-project-item .box-content {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 11px;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.card-service-item {
  display: flex;
  align-items: center;
  position: relative;
}
.card-service-item .avt {
  max-width: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -45px;
  position: relative;
  z-index: 2;
}
.card-service-item .card-content {
  border-radius: 5px;
  border: 1px solid var(--line-2);
  padding: 5px 12px 5px 49px;
  margin-left: 8px;
}
.card-service-item .card-content p {
  line-height: 25px;
  color: rgba(0, 0, 0, 0.8980392157);
}

.social-list {
  display: flex;
  gap: 20px;
}
.social-list a {
  height: 30px;
  width: 30px;
  border-radius: 4px;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-list a:hover {
  border-color: var(--primary);
}
.social-list i {
  font-size: 30px;
}
.social-list.style-2 a {
  width: 35px;
  height: 35px;
}

.mobile-button {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: transparent;
  cursor: pointer;
  display: block;
}
.mobile-button span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 12px;
  background-color: var(--primary);
  border-radius: 10px;
}
.mobile-button::before {
  content: "";
  position: absolute;
  top: 5px;
  height: 2px;
  width: 100%;
  left: 0;
  background-color: var(--primary);
  border-radius: 10px;
}
.mobile-button::after {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 2px;
  width: 100%;
  left: 0;
  background-color: var(--primary);
  border-radius: 10px;
}

/* -- Start Open Nav Mobile -- */
.canvas-mb .logo-site {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 100;
}
.canvas-mb .mb-body {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  overscroll-behavior-y: contain;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.canvas-mb .mb-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}
.canvas-mb .mb-body::-webkit-scrollbar {
  width: 3px;
}
.canvas-mb .mb-bottom {
  padding-right: 15px;
  padding-left: 15px;
}
.canvas-mb .mb-bottom .btn-select {
  padding: 10px 0px;
}
.canvas-mb .btn-close-mb {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  color: var(--black);
  z-index: 100;
}
.canvas-mb .mb-canvas-content {
  padding-top: 50px;
  min-width: 100%;
  max-width: min(90%, 320px);
  grid-auto-rows: minmax(0, 1fr) auto;
  isolation: isolate;
  height: 100%;
  width: 100%;
  display: grid;
  align-content: start;
}

.nav-ul-mb .sub-nav-menu {
  padding-left: 10px;
  margin-bottom: 15px;
}
.nav-ul-mb .sub-nav-menu.sub-menu-level-2 {
  margin-bottom: 5px;
}
.nav-ul-mb .btn-open-sub {
  position: relative;
  width: 20px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-ul-mb .btn-open-sub:after, .nav-ul-mb .btn-open-sub::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  transition: 0.4s ease 0.1s;
  margin: auto;
}
.nav-ul-mb .btn-open-sub::before {
  width: 2px;
  height: 12px;
}
.nav-ul-mb .btn-open-sub::after {
  width: 12px;
  height: 2px;
}
.nav-ul-mb .nav-mb-item {
  padding: 2px 0px;
}
.nav-ul-mb .nav-mb-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.nav-ul-mb .nav-mb-item .mb-menu-link {
  min-height: 40px;
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-ul-mb .nav-mb-item .mb-menu-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}
.nav-ul-mb .nav-mb-item.active .mb-menu-link {
  color: var(--primary);
}
.nav-ul-mb .nav-mb-item.active .mb-menu-link .btn-open-sub::after, .nav-ul-mb .nav-mb-item.active .mb-menu-link .btn-open-sub::before {
  background-color: var(--primary);
}
.nav-ul-mb .nav-mb-item.active .sub-nav-link.active {
  color: var(--primary);
}
.nav-ul-mb .nav-mb-item.active .sub-nav-link.active .btn-open-sub::after, .nav-ul-mb .nav-mb-item.active .sub-nav-link.active .btn-open-sub::before {
  background-color: var(--primary);
}
.nav-ul-mb .nav-mb-item .sub-nav-menu li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.nav-mb-item.title {
  font-family: "Inter", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
}
.nav-ul-mb li,
.mb-info p{
  font-family: "Inter", serif;
}
.nav-ul-mb .sub-nav-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}
.nav-ul-mb .sub-nav-link .btn-open-sub::after, .nav-ul-mb .sub-nav-link .btn-open-sub::before {
  background-color: var(--black);
}

/* -- End Open Nav Mobile -- */
.progress-wrap-2 {
  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(--primary);
  border: 1.2px solid rgba(134, 134, 134, 0.12);
}
.progress-wrap-2:hover {
  box-shadow: 0 8px 16px rgba(79, 96, 250, 0.5);
  background: var(--primary);
}
.progress-wrap-2::after {
  position: absolute;
  content: "\e90f";
  font-family: "icomoon";
  text-align: center;
  line-height: 40px;
  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-2::after:active {
  animation: goTopToBottom 0.6s forwards;
}
.progress-wrap-2.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap-2 svg path {
  fill: none;
}
.progress-wrap-2 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;
}

@keyframes goTopToBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes iconBounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
/*------------ footer ---------------- */
.ft-body-wrap {
  background-color: var(--black);
}

.ft-body .ft-inner {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px 30px;
  gap: 30px;
  flex-wrap: wrap;
}
.ft-body .ft-form-wrap {
  max-width: 358px;
  width: 100%;
  display: grid;
  gap: 20px;
}
.ft-body .ft-form-wrap .box-title {
  display: grid;
  gap: 16px;
}
.ft-body .ft-menu-list {
  display: grid;
  gap: 20px;
}
.ft-body .ft-menu-list .has-note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-body .ft-menu-list .note {
  font-size: 10px;
  line-height: 9px;
  display: inline-flex;
  border-radius: 5px;
  background-color: var(--primary);
  padding: 5px 6px;
}
.ft-body .ft-menu-list .menu li a {
  font-family: "Inter Tight", serif;
  color: var(--text-6) !important;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 9px;
  letter-spacing: 0px !important;
}
.ft-body .ft-menu-list .menu li + li {
  margin-top: 20px;
}
.ft-body .ft-menu-list .menu li a:hover {
  color: var(--white) !important;
}
.ft-body .box-achievement {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.ft-body .box-achievement .per-rate {
  display: flex;
  gap: 15px;
}
.ft-body .box-achievement .brand {
  display: grid;
  gap: 7px;
}
.ft-body .box-achievement .brand img {
  max-width: 66px;
  height: 22px;
}
.ft-body .box-achievement .wg-rating {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  margin-top: -10px;
}
.ft-body .go_top p {
  font-size: 18px;
  line-height: 15px;
  letter-spacing: -0.2px;
}
.ft-body .inner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
}
.ft-body .inner-bottom .go_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ft-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
  gap: 10px;
  flex-wrap: wrap;
}
.ft-bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.ft-bottom .box-support {
  display: grid;
  gap: 7px;
}
.ft-bottom .box-support .title-type {
  font-size: 11px;
  line-height: 9px;
}
.ft-bottom .box-support .number-phone {
  font-size: 14px;
  line-height: 11px;
  letter-spacing: -0.4px;
}

.ft-link-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: unset;
}

.wg-rating .rate-star {
  display: flex;
}
.wg-rating .rate-star i {
  color: var(--yellow);
}

/*------------ tabs ---------------- */
.wg-tabs .menu-tab .item {
  cursor: pointer;
}

@keyframes fadeTab {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.case-study-tab {
  display: flex;
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.case-study-tab .box-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  transform: translateY(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;
  visibility: hidden;
  opacity: 0;
}
.case-study-tab .menu-tab {
  width: 30%;
  border-radius: 5px;
  border-right: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
}
.case-study-tab .menu-tab .item {
  border-radius: 5px;
  -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;
}
.case-study-tab .menu-tab .item:not(:last-child) {
  border-bottom: 1px solid var(--line-2);
}
.case-study-tab .menu-tab .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 100%;
  background-color: var(--primary);
  -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;
}
.case-study-tab .menu-tab .item:hover {
  border-color: var(--white);
}
.case-study-tab .menu-tab .item:hover .btn-case {
  background-color: var(--white);
}
.case-study-tab .menu-tab .item:hover::after {
  width: 5px;
}
.case-study-tab .menu-tab .item.active {
  border-color: var(--white);
}
.case-study-tab .menu-tab .item.active .box-btn {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.case-study-tab .menu-tab .item.active .btn-case {
  background-color: var(--white);
}
.case-study-tab .menu-tab .item.active::after {
  width: 5px;
}
.case-study-tab .btn-case {
  padding: 20px;
  border-radius: 5px;
  background-color: var(--bg);
  -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;
  display: grid;
  gap: 8px;
  height: 100%;
}
.case-study-tab .widget-content-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}
.case-study-tab .widget-content-inner .image {
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}
.case-study-tab .widget-content-inner .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.case-study-tab .box-title {
  display: grid;
  gap: 16px;
}
.case-study-tab .box-title .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*------------ button ---------------- */
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;
}

.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 11px;
  color: var(--white);
  padding: 17px 26px;
  position: relative;
  overflow: hidden;
}
.tf-btn:hover {
  color: var(--white);
}
.tf-btn.w100 {
  width: 100%;
}
.tf-btn.small {
  padding: 12px 26px;
}
.tf-btn.small-2 {
  padding: 12px 10px;
}
.tf-btn.large {
  padding: 20px 28px;
}
.tf-btn.large-2 {
  padding: 20px 16px;
}
.tf-btn.btn-icon {
  gap: 8px;
}
.tf-btn.btn-hover-2:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}
.tf-btn.btn-footer {
  font-size: 12px;
  line-height: 8px;
  letter-spacing: -0.16px;
  padding: 11px 18px;
}

.animate-btn {
  position: relative;
  overflow: hidden;
}
.animate-btn:hover::after {
  animation: shine-forward 1s forwards;
}

.animate-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100%;
  opacity: 0.6;
  animation: shine-reverse 1s forwards;
}

@keyframes shine-forward {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.shine-item {
  position: relative;
  overflow: hidden;
}
.shine-item.hv-shine-2::after {
  transform: translate(-50%, -50%);
  transition: all 1s ease;
}
.shine-item::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  transition: all 0.6s ease;
}
.shine-item:hover::after {
  height: 350%;
  background-color: transparent;
}
.shine-item:not(:hover)::after {
  transition: none;
}

.tf-btn-line {
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.tf-btn-line i {
  font-size: 8px;
  transform: translateY(1px);
}
.tf-btn-line i.fs-11 {
  font-size: 11px;
}
.tf-btn-line .text-underline::before {
  bottom: -2px;
  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-line:hover {
  color: var(--primary);
}
.tf-btn-line:hover .text-underline::before {
  background-color: var(--primary);
}
.tf-btn-line.style-2 {
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.4px;
  color: var(--primary);
}
.tf-btn-line.style-2 .text-underline::before {
  bottom: -3px;
  background-color: var(--primary);
}
.tf-btn-line.style-2:hover {
  color: var(--text);
}
.tf-btn-line.style-2:hover .text-underline::before {
  background-color: var(--text);
}
.tf-btn-line.style-3 {
  font-size: 15px;
  line-height: 11px;
  letter-spacing: -0.16px;
  color: var(--primary);
}
.tf-btn-line.style-3 i {
  font-size: 11px;
}

.tf-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary);
}
.tf-btn-icon i {
  color: var(--white);
  font-size: 11px;
  -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-icon:hover i {
  transform: rotate(45deg);
}

/*------------ range slider ---------------- */
/*range-slider
    ---------------------*/
.range-slider {
  position: relative;
}
.range-slider #range-two-val {
  margin-bottom: 10px;
  height: 10px;
  box-shadow: none;
  border: 0;
  border-radius: 7px;
  background-color: var(--primary);
  margin-bottom: 21px;
}
.range-slider #range-two-val .noUi-connects .noUi-connect {
  background-color: var(--bg);
  pointer-events: none;
}
.range-slider #range-two-val .noUi-origin .noUi-handle-upper {
  display: none;
}
.range-slider #range-two-val .noUi-origin .noUi-handle {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border: unset;
  box-shadow: unset;
  top: 4.5px;
  transform: translate(-50%, -50%);
}
.range-slider #range-two-val .noUi-origin .noUi-handle::after, .range-slider #range-two-val .noUi-origin .noUi-handle::before {
  display: none;
}
.range-slider .bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.range-slider .bottom p {
  font-family: "Inter Tight", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 9px;
  color: var(--text);
}

/*------------ 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: 16px 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 9px;
  background-color: var(--bg);
  border: 1px solid var(--line-3);
  border-radius: 5px;
  color: var(--text-5);
  overflow: hidden;
  margin-bottom: 0;
  -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::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-family: "Inter Tight", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 9px;
  color: var(--text-5);
}
form textarea:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus {
  border-color: var(--primary);
}
form textarea:hover,
form input[type=text]:hover,
form input[type=password]:hover,
form input[type=datetime]:hover,
form input[type=datetime-local]:hover,
form input[type=date]:hover,
form input[type=month]:hover,
form input[type=time]:hover,
form input[type=week]:hover,
form input[type=number]:hover,
form input[type=email]:hover,
form input[type=url]:hover,
form input[type=search]:hover,
form input[type=tel]:hover,
form input[type=color]:hover {
  border-color: var(--primary);
}
form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 223px;
}
form .f-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form .cols {
  display: flex;
  gap: 15px;
}
form .cols > * {
  width: 100%;
}
form .cols.gap-17 {
  gap: 17px;
}
form fieldset label {
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--text-3);
}

.form-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.form-container > * {
  width: 100%;
}

.form-search {
  position: relative;
}
.form-search .button-submit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.form-search .button-submit i {
  color: var(--black);
  font-size: 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;
}
.form-search .button-submit:hover i {
  color: var(--primary);
}

.checkbox-item {
  position: relative;
  height: 35px;
  display: flex;
  align-items: center;
}
.checkbox-item label {
/*  padding-left: 45px;*/
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.checkbox-item label .text {
  font-size: 14px;
  line-height: 18px;
}
/*.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: flex;
  justify-content: center;
  align-items: center;
}
.checkbox-item label .checkbox-item:checked ~ .btn-radio:after {
  display: block;
}
.checkbox-item .btn-checkbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  width: 35px;
  height: 35px;
  background-color: var(--bg);
  border: 1px solid var(--line-3);
}
.checkbox-item .btn-checkbox:after {
  content: "\e901";
  position: absolute;
  border-radius: 5px;
  font-family: "icomoon";
  color: var(--white);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--primary);
  display: none;
}
.checkbox-item.style-2 .btn-checkbox {
  width: 30px;
  height: 30px;
}
.checkbox-item.style-2 .text {
  font-size: 13px;
  line-height: 15px;
}

.form-email {
  position: relative;
}
.form-email .box-btn {
  top: 7px;
  right: 7px;
  bottom: 7px;
  position: absolute;
}
.form-email .tf-btn {
  height: 100%;
  padding: 0 24px;
}
.form-email fieldset input {
  background-color: var(--black);
  border: 1px solid var(--text-5);
}
.form-email fieldset input::placeholder {
  font-size: 14px;
  font-weight: 500;
  line-height: 10px;
  color: var(--text-5);
}

.lb-checkbox {
  position: relative;
}
.lb-checkbox input {
  position: absolute;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}
.lb-checkbox input:checked + label {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}
.lb-checkbox label {
  position: relative;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 5px;
  width: max-content;
  color: var(--text);
  font-size: 13px;
  line-height: 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;
  background-color: var(--bg);
  border: 1px solid var(--line-3);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
}

/*------------ slider ---------------- */
.slider-partner::before {
  background: linear-gradient(251.03deg, #ffffff 90.77%, rgba(255, 255, 255, 0) 140.2%);
  bottom: 0;
  filter: blur(4px);
  content: "";
  position: absolute;
  width: 34px;
  left: -17px;
  z-index: 2;
  height: 200%;
  top: 50%;
  transform: translateY(-50%);
}
.slider-partner::after {
  background: linear-gradient(251.03deg, #ffffff 90.77%, rgba(255, 255, 255, 0) 140.2%);
  filter: blur(4px);
  content: "";
  position: absolute;
  width: 34px;
  right: -17px;
  height: 200%;
  bottom: 0;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.sw-line {
  display: flex;
  gap: 13px;
}
.sw-line .swiper-pagination-bullet {
  width: 73px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  opacity: 1;
  position: relative;
}
.sw-line .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
  width: 0;
  background-color: var(--white);
  transition: all 2s ease-in-out;
  z-index: 2;
}
.sw-line .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 100%;
}
.sw-line .swiper-pagination-bullet:not(.swiper-pagination-bullet-active)::after {
  transition: none;
}
.sw-line .swiper-pagination-bullet:first-child::after {
  width: 0%;
}
.sw-line .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active::after {
  width: 100%;
}

.slider-home .image-wrap {
  position: relative;
}
.slider-home .image-wrap .image {
  border-radius: 5px;
  overflow: hidden;
}
.slider-home .image-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
.slider-home .box-tag-list {
  position: absolute;
  left: 15px;
  bottom: 40px;
}
.slider-home .wrap-pagination {
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.slider-effect-fade .swiper-slide .fade-item {
  transform: translateY(100px);
  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;
}
.slider-effect-fade .swiper-slide .fade-item.fade-box {
  transition-delay: 0.4s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
  transition-delay: 0.5s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
  transition-delay: 0.6s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
  transition-delay: 0.7s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
  transition-delay: 0.8s;
}
.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.slider-partner {
  padding: 14px 0px 13px !important;
}
.slider-partner .swiper-slide {
  height: auto;
}
.slider-partner .swiper-slide > * {
  height: 100%;
}
.slider-partner .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-sw-slideshow .wrap-pagination {
  position: relative;
  z-index: 1;
}

.sw-dots {
  display: flex;
  gap: 10px;
  padding: 20px 0px 0px;
}
.sw-dots .swiper-pagination-bullet {
  position: relative;
  background: var(--primary);
  opacity: 0.3;
  -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);
}
.sw-dots .swiper-pagination-bullet::after {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.sw-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-testimonial-2 .swiper-slide {
  transform: scale(0.85);
  -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;
}
.slider-testimonial-2 .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.slider-our-project .card-portfolio {
  box-shadow: 0px 4px 4px 4px rgba(0, 64, 193, 0.1019607843);
}

/*------------ off canvas ---------------- */
.offcanvas {
  z-index: 3000;
}

.offcanvas-backdrop {
  cursor: url(./../icons/cursor-close.svg), auto;
}

.offcanvas-search {
  height: max-content !important;
}
.offcanvas-search .btn-close-search {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: var(--bg-4);
  font-size: 13px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
.offcanvas-search .offcanvas-body {
  padding: 30px 0 20px;
}

/*------------ blog ---------------- */
.blog-post-item {
  border-radius: 5px;
  border: 1px solid var(--line-2);
  padding: 15px;
  display: grid;
  gap: 15px;
}
.blog-post-item .entry_image {
  border-radius: 5px;
  overflow: hidden;
}
.blog-post-item .br-line {
  margin-bottom: 21px;
}
.blog-post-item .box-title {
  display: grid;
  gap: 8px;
  position: relative;
  margin-bottom: 15px;
}
.blog-post-item .box-btn {
  position: absolute;
  right: 0;
  bottom: -10px;
}
.blog-post-item .entry-meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-post-item .entry_author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-item .entry_author .avatar {
  max-width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-post-item .entry_author .info {
  display: grid;
  gap: 11px;
}
.blog-post-item .entry_author .name {
  font-size: 17px;
  line-height: 12px;
  letter-spacing: -0.2px;
}
.blog-post-item .entry_author .date {
  line-height: 11px;
}
.blog-post-item .box-mins {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  border: 1px solid var(--line-2);
  padding: 9px 8px;
}
.blog-post-item .box-mins i {
  font-size: 15px;
  color: var(--primary);
}
.blog-post-item .box-mins p {
  font-size: 12px;
  line-height: 10px;
  letter-spacing: -0.16px;
}

/*Blog Comments*/
.blog-comment-box {
    background: var(--white);
    border-radius: 10px;
    padding: 50px 24px 45px 24px;
    margin: 40px;
}
 .blog-comment-box h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 35px;
}
/*.comments-list .comment-box .comment-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}*/
.comment-box {
    border-bottom: 1px solid var(--line-4);
    padding-bottom: 40px;
}
/*.comment-box .comment-box {
    padding-left: 80px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgb(44 44 44 / 50%);
}*/
.comment-box .comment-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 22px;
}
.comment-box .comment-box-inner img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex: none;
    object-fit: cover;
    display: block;
}
.comment-box .comment-box-inner .comment-body .comment-date {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}
.comment-box .comment-box-inner .comment-body h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}
.comment-box .comment-box-inner .comment-body p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
}
.comment-form-wrap {
    margin-top: 40px;
}
/*.comment-form-wrap h3 {
    margin-bottom: 40px;
}*/
.comment-form-wrap form .input-group {
    margin-top: 16px;
}

/*------------ 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;
}

.accordion-exper {
  display: flex;
  justify-content: space-between;
  gap: 25px 15px;
  width: 100%;
}
.accordion-exper .accordion-item {
  cursor: pointer;
}
.accordion-exper .accordion-item:not(.collapsed) .ic-plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-exper .accordion-item:not(.collapsed) .accordion-head {
  margin-bottom: 15px;
}
.accordion-exper .ic-plus {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 15px;
  right: 15px;
  border-radius: 2px;
  background-color: var(--primary);
}
.accordion-exper .ic-plus::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 0.75px;
  background-color: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-exper .ic-plus::before {
  content: "";
  position: absolute;
  width: 0.75px;
  height: 9px;
  background-color: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease 0.1s;
}
.accordion-exper .accordion-item {
  position: relative;
  padding: 20px 50px 20px 20px;
}
.accordion-exper .accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.accordion-exper .accordion-head {
  -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-exper .accordion-image-group {
  max-width: 520px;
  width: 100%;
  position: sticky;
  height: max-content;
  top: 10px;
}
.accordion-exper .accordion-image-group .name-image {
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.2px;
}
.accordion-exper .accordion-image-group .name-image .text-black {
  margin-right: 3px;
}
.accordion-exper .accordion-image-group .image-wrap {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.accordion-exper .accordion-image-group .image-wrap .image {
  border-radius: 5px;
  overflow: hidden;
}
.accordion-exper .accordion-btn-group {
  height: max-content;
}

/*------------ 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;
  overflow: hidden;
}
.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 1s;
  animation: shine 1s;
}

@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);
}

/*------------ animation ---------------- */
@keyframes tf-ani-tada {
  0%, 100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.tf-ani-tada {
  -webkit-animation: tf-ani-tada 2s infinite;
  animation: tf-ani-tada 2s infinite;
}

@keyframes infiniteScroll {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes link-icon-fade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.text-anime-clip {
  display: inline-block;
  overflow: hidden;
  transition: clip-path 0.6s ease-in-out;
}

/*------------ dropdown ---------------- */
.tf-dropdown-sort {
  cursor: pointer;
}
.tf-dropdown-sort .btn-select {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tf-dropdown-sort .btn-select i {
  font-size: 7px;
}
.tf-dropdown-sort .dropdown-menu {
  width: 96px;
  background-color: var(--white);
  border: 0;
  padding: 5px 0px;
  z-index: 999;
  border: 1px solid var(--line);
}
.tf-dropdown-sort .dropdown-menu span {
  font-size: 12px;
  line-height: 20px;
}
.tf-dropdown-sort .text-value-item {
  display: block;
  -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: 0px 5px;
}
.tf-dropdown-sort .select-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;
}
.tf-dropdown-sort .select-item:hover {
  background-color: var(--line);
}

/*------------ Widgets ---------------- */
.benefit-check {
  display: flex;
  align-items: center;
  gap: 5px;
}
.benefit-check .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--primary);
}
.benefit-check .icon i {
  font-size: 12px;
}

.ic-half-square {
  position: absolute;
  top: 7px;
  right: 7px;
  display: block;
  width: 14px;
  height: 14px;
  border-top-right-radius: 2px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.tf-progress {
  width: 100%;
  background-color: var(--primary-2);
  height: 4px;
  position: relative;
  border-radius: 2px;
}
.tf-progress .progress-bar {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  transition: width 2s ease;
  border-radius: 2px;
}
.tf-progress.style-2 {
  height: 12px;
  border-radius: 7px;
}
.tf-progress.style-2 .progress-bar {
  border-radius: 7px;
}

.ic-dot-square {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: var(--primary);
  border-radius: 2px;
  z-index: 2;
}

.card-our-field {
  display: grid;
  gap: 20px;
}
.card-our-field .box-title {
  display: grid;
  gap: 8px;
}
.card-our-field .card-content {
  display: flex;
  align-items: end;
  gap: 10px;
}
.card-our-field .image {
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}
.card-our-field .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-testimonial-2 {
  position: relative;
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wg-testimonial-2 .box-text {
  display: inline-grid;
  gap: 8px;
}
.wg-testimonial-2 .img-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.wg-testimonial-2 .img-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
.wg-testimonial-2 .box-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.wg-testimonial-2 .author {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wg-testimonial-2 .author .info {
  display: grid;
}
.wg-testimonial-2 .author .avatar {
  max-width: 55px;
  overflow: hidden;
  border-radius: 50%;
}

.wg-testimonial {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wg-testimonial .box-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.wg-testimonial .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-testimonial .box-author {
  display: flex;
  gap: 8px;
  align-items: center;
}
.wg-testimonial .box-author .avatar {
  max-width: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.wg-testimonial .content {
  display: grid;
  gap: 10px;
}
.wg-testimonial.style-2 {
  justify-content: end;
}
.wg-testimonial.style-2 .box-text {
  display: grid;
  gap: 8px;
}

.wg-partner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid var(--line-3);
  flex-wrap: wrap;
}
.wg-partner .infor {
  display: grid;
  gap: 5px;
}
.wg-partner .logo img {
  height: 30px;
}
.wg-partner .current {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  border: 1px solid var(--line-3);
  border-radius: 5px;
  padding: 9px 19px;
}

.card-member {
  border-radius: 5px;
  padding: 15px;
  display: grid;
  gap: 20px;
}
.card-member .box-content {
  display: grid;
  gap: 15px;
}
.card-member .entry_image {
  border-radius: 5px;
  overflow: hidden;
}
.card-member .box-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-member .icon {
  width: 40px;
  height: 40px;
  font-size: 40px;
  background-color: var(--primary);
  border-radius: 5px;
  color: var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-member .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-member.style-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.card-member.style-2 .box-title {
  display: grid;
  gap: 8px;
}

.wg-counter {
  display: grid;
  gap: 5px;
}
.wg-counter .odometer {
  font-size: 20px;
  line-height: 15px;
  font-family: "Inter", serif !important;
}
.wg-counter .sub-odo {
  font-size: 18px;
  line-height: 14px;
  letter-spacing: -0.2px;
}
.wg-counter .number-count {
  display: flex;
  align-items: center;
  gap: 4px;
}
.wg-counter .odometer-formatting-mark {
  display: none;
}

.counter-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-image .name-accordion {
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.2px;
}

.tab-content {
  display: none;
}
.tab-content.current {
  display: block;
}

.wg-consulting {
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.wg-consulting .image {
  width: 100%;
  max-height: 350px;
}
.wg-consulting .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.wg-consulting .content {
  padding: 20px;
  width: 100%;
  display: grid;
  gap: 20px;
}
.wg-consulting .tf-grid-layout {
  row-gap: 18px;
}
.wg-consulting .box-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.wg-consulting .box-title {
  display: grid;
  gap: 8px;
}
.wg-consulting .box-title .heading {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-news-item {
  padding: 20px;
  display: grid;
  gap: 20px;
}
.post-news-item .image {
  width: 100%;
}
.post-news-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-news-item .box-title {
  display: grid;
  gap: 5px;
  position: relative;
}
.post-news-item .box-title .head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 5px;
}
.post-news-item .box-title .box-btn {
  position: absolute;
  bottom: -31px;
  right: 0;
}
.post-news-item .content {
  display: grid;
  gap: 15px;
}

.wg-career {
  padding: 20px;
  border-radius: 5px;
  display: grid;
  gap: 15px;
}
.wg-career .box-title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wg-career .image {
  max-width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.wg-career .trend-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.wg-career .trend-list li {
  padding: 8px 15px;
  background-color: var(--bg);
}

.jobs-list {
  padding: 20px;
  display: grid;
  gap: 15px;
}

.wg-job {
  display: flex;
  align-items: start;
  padding: 20px;
  gap: 20px;
  border-radius: 5px;
}
.wg-job .content {
  display: grid;
  gap: 20px;
}
.wg-job .time-job {
  font-size: 14px;
  line-height: 11px;
  letter-spacing: -0.16px;
  display: inline-block;
  padding: 9px 20px;
}
.wg-job .box-title {
  display: grid;
  gap: 15px;
}
.wg-job .list-info-job {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wg-job .list-info-job i {
  color: var(--primary);
  font-size: 24px;
}
.wg-job .list-info-job li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wg-job .box-btn {
  display: flex;
  gap: 15px;
}

.wg-event {
  padding: 20px;
  border-radius: 5px;
  display: grid;
  gap: 20px;
}
.wg-event .content {
  gap: 20px;
  display: grid;
}
.wg-event .image {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
.wg-event .image img {
  width: 100%;
  height: 100%;
  object-position: top right;
  object-fit: cover;
}
.wg-event .box-title {
  display: grid;
  gap: 10px;
}
.wg-event .box-title .head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.wg-event .box-title .date {
  display: inline-block;
  height: max-content;
  border-radius: 5px;
  background-color: var(--white);
  padding: 9px 18px;
}
.wg-event .box-btn {
  display: flex;
  gap: 5px;
  align-items: end;
}
.wg-event .list-info-event {
  gap: 5px 15px;
}
.wg-event .list-info-event i {
  color: var(--primary);
  font-size: 24px;
}
.wg-event .list-info-event li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-event-item {
  display: grid;
  gap: 20px;
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.post-event-item .box-title {
  display: grid;
  gap: 8px;
  position: relative;
}
.post-event-item .box-title .box-btn {
  position: absolute;
  right: 0;
  bottom: -10px;
}
.post-event-item .content {
  display: grid;
  gap: 20px;
}
.post-event-item .schedule-list {
  display: flex;
  align-items: center;
  gap: 5px 25px;
  flex-wrap: wrap;
}
.post-event-item .schedule-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  padding: 9px 12px;
}
.post-event-item .schedule-list p {
  font-size: 14px;
  line-height: 11px;
  letter-spacing: -0.16px;
}

.wg-pricing {
  padding: 20px;
  display: flex;
  gap: 20px 20px;
  border-radius: 5px;
}
.wg-pricing .entry_price {
  display: flex;
  align-items: center;
  gap: 2px 5px;
  flex-wrap: wrap;
}
.wg-pricing .entry_price .sale-up {
  padding: 8px;
}
.wg-pricing .entry_price .sale-up p {
  font-size: 11px;
  line-height: 8px;
  letter-spacing: -0.4px;
}
.wg-pricing .entry_price .price {
  font-size: 31px;
  line-height: 23px;
  letter-spacing: -0.2px;
}
.wg-pricing .entry_price .per {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.wg-pricing .content {
  display: grid;
  gap: 20px;
}
.wg-pricing .benefit-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wg-new-release {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.wg-new-release .image {
  border-radius: 5px;
  overflow: hidden;
  width: 50%;
}
.wg-new-release .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
.wg-new-release .content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  gap: 15px;
  width: 50%;
}
.wg-new-release .content .box-title {
  display: grid;
  gap: 8px;
}
.wg-new-release .content .box-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 5px;
}

.box-feature {
  padding: 15px;
  display: grid;
  gap: 15px;
}

.note-box {
  display: inline-block;
  top: 15px;
  right: 15px;
  padding: 8px 15px;
}

.box-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 25px;
  min-height: 255px;
  height: 100%;
}
.box-contact .title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-contact .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 5px;
}
.box-contact .icon i {
  color: var(--white);
}
.box-contact .box-info {
  display: grid;
  gap: 4px;
}

.tf-marquee {
  width: 100%;
}
.tf-marquee .marquee-wrapper {
  display: flex;
  animation: infiniteScroll 20s linear infinite;
  align-items: center;
  transition: animation-duration 300ms;
}
.tf-marquee .marquee-wrapper:hover {
  animation-play-state: paused;
}

.tf-smoke {
  position: relative;
}
.tf-smoke::before {
  background: linear-gradient(251.03deg, #ffffff 90.77%, rgba(255, 255, 255, 0) 140.2%);
  top: 0;
  bottom: 0;
  filter: blur(4px);
  content: "";
  position: absolute;
  width: 17px;
  z-index: 2;
  height: 100%;
  transform: translateX(-50%);
}
.tf-smoke::after {
  background: linear-gradient(251.03deg, #ffffff 90.77%, rgba(255, 255, 255, 0) 140.2%);
  filter: blur(4px);
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 17px;
  height: 100%;
  z-index: 2;
  top: 0;
  transform: translateX(50%);
}

.clut-rating {
  display: flex;
  gap: 8px;
}
.clut-rating .brand {
  display: grid;
  gap: 8px;
}
.clut-rating .wg-rating {
  display: grid;
  gap: 10px;
}

.wg-idea {
  display: flex;
  flex-wrap: wrap-reverse;
  width: 1048px;
  max-width: 100%;
  margin: auto;
}
.wg-idea .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  gap: 15px;
}
.wg-idea .image {
  width: 50%;
  border-radius: 5px;
  overflow: hidden;
}
.wg-idea .image img {
  width: 100%;
  object-fit: cover;
  object-position: top right;
}
.wg-idea .box-content {
  display: grid;
  gap: 15px;
}
.wg-idea .box-title {
  display: grid;
  gap: 14px;
}
.wg-idea .box-title .title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.card-service {
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 64, 193, 0.2);
  padding: 70px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-service .long-text {
  flex-grow: 1;
}

.wg-trust {
  padding: 15px;
  display: flex;
  gap: 20px 30px;
  align-items: end;
  flex-wrap: wrap;
}
.wg-trust .content {
  display: grid;
  gap: 15px;
}
.wg-trust .box-title {
  display: grid;
  gap: 8px;
}
.wg-trust .image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}
.wg-trust .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.box-book {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.box-banner-pricing {
  height: max-content;
  overflow: hidden;
}
.box-banner-pricing .box-text {
  position: absolute;
  top: 15px;
  left: 15px;
}
.box-banner-pricing .image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.box-banner-pricing .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-context-exper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.wg-context-exper .image-group {
  height: max-content;
  width: 100%;
}
.wg-context-exper .image-group .image {
  max-height: 350px;
}
.wg-context-exper .image-wrap {
  display: flex;
  gap: 15px;
}
.wg-context-exper .image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 485/315;
  width: 100%;
}
.wg-context-exper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-context-exper .context-list {
  display: grid;
  gap: 30px;
  width: 100%;
}

.wd-context {
  display: grid;
  gap: 15px;
}
.wd-context .box-title {
  display: grid;
  gap: 10px;
}
.wd-context .box-title .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wd-context .box-title .title i {
  color: var(--primary);
  font-size: 25px;
}
.wd-context .box-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.card-work {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 449px;
  padding: 15px;
  border-radius: 5px;
  padding: 20px;
  overflow: hidden;
}
.card-work .head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.card-work .box-title {
  display: grid;
  gap: 8px;
}

.has-bg-img {
  background-size: contain;
  background-repeat: no-repeat;
}

.work-list {
  display: flex;
  gap: 20px;
}

.faq-list {
  display: grid;
  gap: 30px;
}
.faq-list .faq-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.faq-list .faq-item .right > * {
  width: 100%;
}

.card-portfolio {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.card-portfolio .content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.card-portfolio .box-title {
  display: grid;
  gap: 9px;
}
.card-portfolio .image img {
  width: 100%;
  object-fit: cover;
}

.flat-alert {
  color: #FF4500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.4px;
  color: #FF4500;
  margin-bottom: 0 !important;
}

.notification_error,
.notification_ok {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.4px;
  color: #FF4500;
  margin-top: 10px;
}

/*------------ Sections ---------------- */
/*-- Page Tile -- */
.s-page-title {
  position: relative;
}
.s-page-title .image img {
  min-height: 300px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-page-title .title-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.s-page-title .box-title-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.s-page-title.style-2 .box-text {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.s-tag-name {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  border-radius: 5px;
  padding: 8px 14px;
  gap: 10px;
}
.s-tag-name .icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 1px;
}
.s-tag-name .text-name {
  font-size: 14px;
  line-height: 11px;
}
.s-tag-name .text-name-2 {
  font-size: 16px;
  line-height: 12px;
}

/*-- End Page Tile -- */
.tf-sp-1,
.tf-sp-2,
.tf-sp-3,
.tf-sp-4,
.tf-sp-5,
.tf-sp-6,
.tf-sp-7,
.tf-sp-8,
.tf-sp-9,
.tf-sp-10,
.tf-sp-12,
.tf-sp-13,
.tf-sp-14,
.tf-sp-15,
.tf-sp-16,
.tf-sp-17,
.tf-sp-18,
.tf-sp-19,
.tf-sp-20,
.tf-sp-22,
.tf-sp-23,
.tf-sp-24,
.tf-sp-25,
.tf-sp-26,
.tf-sp-27,
.tf-sp-28,
.tf-sp-29,
.tf-sp-30 {
  padding: 60px 0px;
}

.tf-sp-31,
.tf-sp-32,
.tf-sp-33,
.tf-sp-34,
.tf-sp-35,
.tf-sp-37,
.tf-sp-38,
.tf-sp-39,
.tf-sp-40,
.tf-sp-41,
.tf-sp-43,
.tf-sp-44,
.tf-sp-45,
.tf-sp-46,
.tf-sp-47,
.tf-sp-49,
.tf-sp-50,
.tf-sp-51,
.tf-sp-52,
.tf-sp-53,
.tf-sp-55,
.tf-sp-56,
.tf-sp-57,
.tf-sp-58,
.tf-sp-60 {
  padding: 60px 0px;
}

.tf-sp-61,
.tf-sp-62,
.tf-sp-63,
.tf-sp-64,
.tf-sp-65,
.tf-sp-66,
.tf-sp-67,
.tf-sp-68,
.tf-sp-69,
.tf-sp-70,
.tf-sp-71,
.tf-sp-72,
.tf-sp-73,
.tf-sp-74,
.tf-sp-75,
.tf-sp-76,
.tf-sp-77 {
  padding: 60px 0px;
}

.tf-sp-11,
.tf-sp-36,
.tf-sp-42,
.tf-sp-48,
.tf-sp-59 {
  padding: 60px 0px 0px;
}

.tf-sp-21,
.tf-sp-54 {
  padding: 0px 0px 60px;
}

.s-box-title {
  margin-bottom: 30px;
}
.s-box-title .s-tag-name {
  margin-bottom: 10px;
}
.s-box-title .s-heading {
  margin-bottom: 8px;
}
.s-box-title.style-2 .box-text {
  gap: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}
.s-box-title.style-2 .s-heading {
  margin-bottom: 0%;
}
.s-box-title.style-2 .box-sub {
  display: grid;
  gap: 4px;
}

.s-banner {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.s-banner.style-default {
  display: flex;
  padding: 30px;
  justify-content: space-between;
  gap: 20px 15px;
  flex-wrap: wrap;
}
.s-banner.style-default .box-btn {
  display: flex;
  gap: 20px;
  align-items: center;
}
.s-banner.style-default .banner-content {
  display: grid;
  gap: 15px;
}
.s-banner.style-default .br-line {
  margin-bottom: 0px;
}
.s-banner.style-default .s-box-title {
  margin-bottom: 0px;
}
.s-banner.style-default .rate-star li:first-child {
  padding-right: 5px;
}
.s-banner.style-absolute .banner-content {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.s-banner.style-absolute .image img {
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.banner-benefit .s-box-title {
  margin-bottom: 26px;
}
.banner-benefit .br-line {
  max-width: 407px;
  background-color: var(--text-6);
  margin-bottom: 20px;
}

.s-contact {
/*  background-image: url("./../images/banner/cta.jpg");*/
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.s-contact.style-2 {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.s-contact.style-2 .s-box-title {
  margin-bottom: 0px;
}
.s-contact.style-2 .content-left {
  width: 100%;
  display: grid;
  gap: 15px;
}
.s-contact.style-2 .contact-form-wrap {
  padding: 20px;
  border-radius: 5px;
  display: grid;
  gap: 20px;
  width: 100%;
}
.s-contact.style-2 .benefit-check {
  gap: 9px;
}
.s-contact.style-2 .benefit-check .icon {
  width: 25px;
  height: 25px;
}
.s-contact.style-2 .benefit-check .icon i {
  font-size: 16px;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: 15px 0px;
}
.contact-form-wrap .wrapper-top {
  padding: 0px 15px 15px;
}
.contact-form-wrap .wrapper-inner {
  padding: 15px;
}
.contact-form-wrap .wrapper-bottom {
  padding: 0px 15px;
}
.contact-form-wrap .contact-list-wrap {
  background-color: var(--bg);
  border: 1px solid var(--line-3);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
.contact-form-wrap .contact-list-wrap .contact-item {
  display: grid;
  gap: 5px;
}
.contact-form-wrap .contact-list-wrap .info-list {
  display: grid;
  gap: 5px;
}
.contact-form-wrap .contact-list-wrap .br-line {
  display: none;
}
.contact-form-wrap.style-2 {
  margin: 30px 0px;
}

.s-page-single {
  display: grid;
  gap: 30px;
}
.s-page-single .entry_image {
  border-radius: 5px;
  overflow: hidden;
}
.s-page-single .entry_image img {
  min-height: 300px;
  object-fit: cover;
  object-position: right;
}
.s-page-single .content-wrap {
  display: grid;
  gap: 35px;
  border-radius: 5px;
  background-color: var(--bg);
  padding: 20px;
}
.s-page-single .box-content {
  display: grid;
  gap: 15px;
}
.s-page-single.how-we-single {
  margin-top: 50px;
}

.s-feature-post {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap-reverse;
}
.s-feature-post .s-box-title {
  margin-bottom: 20px;
}

.s-why-us {
  padding: 20px;
  display: grid;
  gap: 20px;
}
.s-why-us .image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  min-height: 350px;
}
.s-why-us .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.s-why-us .box-title {
  display: grid;
  gap: 12px;
}
.s-why-us .box-title .box-text {
  display: grid;
  gap: 9px;
}
.s-why-us .content {
  display: grid;
  gap: 20px;
}

.s-banner-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap-reverse;
}
.s-banner-image .br-line {
  margin-bottom: 15px;
}
.s-banner-image .s-box-title {
  margin-bottom: 15px;
}
.s-banner-image .banner-content {
  width: 100%;
}
.s-banner-image .image {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
}
.s-banner-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.s-banner-img-text {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.s-banner-img-text .image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.s-banner-img-text .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top right;
}
.s-banner-img-text .banner-content {
  gap: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-banner-img-text .s-box-title {
  margin-bottom: 0px;
}
.s-banner-img-text .box-text {
  display: grid;
  gap: 10px;
}
.s-banner-img-text.style-2 .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.task-marqee {
  padding: 12px 0px;
}
.task-marqee .marquee-child-item {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0px 5px;
  padding: 8px;
}

.page-title-home {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 30px;
}
.page-title-home .s-box-title .s-tag-name {
  margin-bottom: 0px;
}
.page-title-home .p-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-title-home .sub-tag {
  font-size: 16px;
  line-height: 12px;
}
.page-title-home .s-box-title {
  display: grid;
  gap: 15px;
  margin-bottom: 0;
}
.page-title-home .content-slide {
  display: grid;
  gap: 15px;
}
.page-title-home .content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.page-title-home .box-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-title-home .bot {
  display: flex;
  align-items: end;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.page-title-home .business-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-title-home .avt-group {
  display: flex;
}
.page-title-home .avt-group li {
  border-radius: 50%;
  overflow: hidden;
  max-width: 34px;
  border: 1px solid var(--white);
}
.page-title-home .avt-group li:not(:last-child) {
  margin-right: -18px;
}
.page-title-home .slider-right {
  width: calc(50% - 30px);
}
.page-title-home .content-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-title-home .content-right .image-title {
  max-width: 130px;
  height: 138px;
}
.page-title-home .content-right .image-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-tag-list {
  display: flex;
  gap: 5px 12px;
  flex-wrap: wrap;
}
.box-tag-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  background-color: var(--white);
  padding: 8px;
}

.s-page-title-home {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.s-page-title-home .slide-task {
  width: 437px;
  max-width: 100%;
}

.s-banner-text .box-btn {
  margin-bottom: 20px;
}
.s-banner-text .s-box-title {
  margin-bottom: 20px;
}
.s-banner-text .s-box-title .s-heading {
  margin-bottom: 0px;
}
.s-banner-text .service-card-list {
  gap: 15px;
}

.s-box-btn {
  gap: 11px;
  flex-wrap: wrap;
}

.s-we-do .process-progress-content {
  margin-bottom: 40px;
}

.process-progress-content {
  display: flex;
  justify-content: center;
  gap: 5px 20px;
  max-width: 943px;
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
}
.process-progress-content .process-progress-wrap {
  display: grid;
  gap: 15px;
  max-width: 685px;
  width: 100%;
}
.process-progress-content .step-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.process-progress-content .btn-step-list {
  display: flex;
  gap: 6px;
}

.btn-step-list .btn-step {
  color: var(--text-5);
  cursor: pointer;
}
.btn-step-list .btn-step.active {
  color: var(--black);
}

.s-our-partner {
  gap: 30px;
}

.s-job-open .content {
  display: grid;
  gap: 30px;
}

.s-our-pricing .content-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.s-our-pricing .box-banner-pricing {
  width: 100%;
  max-height: 350px;
}

.s-our-project .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.s-our-project .box-btn {
  display: flex;
  gap: 30px;
}

.s-feature-service {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.s-banner-event {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 30px;
}
.s-banner-event .content-card {
  padding: 15px;
  border-radius: 5px;
  display: grid;
  gap: 20px;
  width: 100%;
}
.s-banner-event .content-card .image {
  border-radius: 5px;
  overflow: hidden;
}
.s-banner-event .content-card .box-title {
  display: grid;
  gap: 12px;
}
.s-banner-event .content-detail {
  display: grid;
  gap: 25px;
  width: 100%;
}
.s-banner-event .content-detail .heading {
  display: grid;
  gap: 20px;
}
.s-banner-event .content-detail .box-head {
  display: grid;
  gap: 5px;
}
.s-banner-event .content-detail .box-text {
  display: grid;
  gap: 15px;
}
.s-banner-event .info-event-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.s-banner-event .info-event-list li i {
  font-size: 25px;
}

.s-our-field .slider-wrap {
  display: flex;
  gap: 30px;
}
.s-our-field .slider-field {
  width: 100%;
}
.s-our-field .number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 45px;
}
.s-our-field .number-wrap .br-line {
  height: 100%;
  width: 3px;
}

.header-landing {
  margin-top: -43px;
  position: relative;
  z-index: 4;
}

.footer-landing .nocopy {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
}

.hero-banner {
  position: relative;
}
.hero-banner .image img {
  min-height: 450px;
  width: 100%;
  object-fit: cover;
}
.hero-banner .content-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hero-banner .content-container .content {
  display: grid;
  gap: 25px;
}
.hero-banner .content-container .box-title {
  display: grid;
  gap: 10px;
}

.home-page-display .content {
  max-width: 1194px;
  width: 100%;
  margin: auto;
  gap: 40px 15px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}
.home-page-display .box-view {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px 0px;
}
.home-page-display .image {
  box-shadow: 0px 3px 14px 8px rgba(0, 64, 193, 0.2);
}

.s-mega-menu {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.s-mega-menu > * {
  width: 100%;
}
.s-mega-menu .image {
  border-radius: 5px;
  border: 1px solid var(--line-2);
  box-shadow: 0px 2.16px 4.86px 0px rgba(0, 64, 193, 0.2);
}

.image-inner-group {
  display: flex;
  align-items: end;
}
.image-inner-group .image {
  position: relative;
}
.image-inner-group .image.center {
  z-index: 3;
  box-shadow: 5px 4px 50px 10px rgba(0, 64, 193, 0.2509803922), -5px 0px 20px 0px rgba(0, 64, 193, 0.2);
  margin: 0px -100px;
}
.image-inner-group .image.inner-left {
  margin-left: -100px;
  box-shadow: -10px 4px 40px 0px rgba(0, 64, 193, 0.2);
  z-index: 2;
}
.image-inner-group .image.inner-right {
  margin-right: -100px;
  z-index: 2;
  box-shadow: 10px 4px 40px 0px rgba(0, 64, 193, 0.2);
}

.s-banner-easy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.s-land-feature .content-wrap {
  display: grid;
  gap: 15px;
}
.s-land-feature .content {
  display: flex;
  background-color: var(--black);
  background-image: url("./../images/item/testimonial.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 31px 0px;
  height: 471px;
  position: relative;
}
.s-land-feature .bot {
  display: flex;
  gap: 15px;
}
.s-land-feature .bot > * {
  width: 100%;
}
.s-land-feature .bot .btn-item {
  display: grid;
  gap: 15px;
}
.s-land-feature .line-pg {
  display: block;
  height: 8px;
  width: 100%;
  border-radius: 5px;
  background-color: var(--primary);
}

.tab-container .btn-tab-item {
  cursor: pointer;
}
.tab-container .btn-tab-item .line-pg {
  -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;
  opacity: 0.2;
}
.tab-container .btn-tab-item p {
  -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(10px);
}
.tab-container .btn-tab-item.active .line-pg {
  opacity: 1;
}
.tab-container .btn-tab-item.active p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.tab-container .image-item {
  position: absolute;
  padding: 0px 15px;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
}
.tab-container .image-item.active {
  visibility: visible;
  opacity: 1;
}

.s-elite .slider-wrap {
  margin-bottom: 30px;
}

.s-image-parralax .image {
  height: 350px;
  overflow: hidden;
}

.s-article .slider-wrap {
  margin-bottom: 30px;
}

.s-contact-2 .w-1220 {
  padding: 0px 15px;
}

.tf-flex-col-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tf-flex-col-2 .cols {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/*-------------- Responsive ----------------- */
/* --- Screen Min Width --- */
@media (min-width: 576px) {
  .header-left,
  .header-right {
    gap: 15px;
  }
  .tf-grid-layout.gap-20 {
    gap: 20px;
  }
  .tf-grid-layout.gap-18 {
    gap: 18px;
  }
  .tf-grid-layout.row-gap-18 {
    row-gap: 18px;
  }
  .tf-grid-layout.row-gap-25 {
    row-gap: 25px;
  }
  .tf-grid-layout.row-gap-28 {
    row-gap: 28px;
  }
  .tf-grid-layout.cl-gap-0 {
    column-gap: 0;
  }
  .tf-grid-layout.cl-gap-15 {
    column-gap: 15px;
  }
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-col-sm-2 {
    width: 16.6666666667%;
  }
  .tf-col-sm-3 {
    width: 25%;
  }
  .tf-col-sm-4 {
    width: 33.3333333333%;
  }
  .tf-col-sm-5 {
    width: 41.6666666667%;
  }
  .tf-col-sm-6 {
    width: 50%;
  }
  .tf-col-sm-7 {
    width: 58.3333333333%;
  }
  .tf-col-sm-8 {
    width: 66.6666666667%;
  }
  .tf-col-sm-9 {
    width: 75%;
  }
  .tf-col-sm-10 {
    width: 83.3333333333%;
  }
  .tf-col-sm-11 {
    width: 91.6666666667%;
  }
  .tf-col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .tf-flex-col-2 {
    column-gap: 30px;
    row-gap: 25px;
  }
  .tf-flex-col-2.row-gap-28 {
    row-gap: 28px;
  }
  .tf-flex-col-2.row-gap-28 .cols {
    row-gap: 28px;
  }
  .tf-flex-col-2 .cols {
    row-gap: 25px;
    width: auto;
  }
  .s-mega-menu .s-box-title {
    width: 50%;
  }
  .s-mega-menu .menu-grid {
    width: 50%;
  }
  .s-banner-event > * {
    width: 50%;
  }
  .s-feature-service .content-left {
    position: sticky;
    top: 20px;
    height: max-content;
  }
  .s-feature-service > * {
    width: 50%;
  }
  .wg-context-exper .image-group {
    position: sticky;
    top: 75px;
    max-width: 485px;
  }
  .wg-context-exper .image-group .image {
    max-height: unset;
  }
  .wg-context-exper .context-list {
    width: 50%;
  }
  .s-our-pricing .box-banner-pricing {
    position: sticky;
    top: 10px;
    width: auto;
    max-height: unset;
  }
  .s-why-us .tf-grid-layout {
    width: max-content;
  }
  .s-our-special #accordionExper {
    max-width: 680px;
    width: 100%;
  }
  .post-news-item.style-2,
  .wg-event.style-2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .post-news-item.style-2 .image,
  .wg-event.style-2 .image {
    max-width: 555px;
    height: 100%;
    width: 100%;
  }
  .post-news-item.style-2 .content,
  .wg-event.style-2 .content {
    padding-top: 25px;
    max-width: 565px;
    width: 100%;
  }
  .wg-consulting {
    flex-wrap: nowrap;
  }
  .wg-consulting .image {
    max-width: 520px;
    width: 100%;
    max-height: unset;
  }
  .wg-consulting .content {
    max-width: 518px;
    width: 100%;
  }
  .feature-post-study .box-right {
    max-width: 635px;
    width: 100%;
  }
  .feature-post-blog .box-right {
    max-width: 430px;
    width: 100%;
  }
  .s-feature-post {
    gap: 15px;
    flex-wrap: nowrap;
  }
  .s-feature-post .box-left {
    position: sticky;
    top: 20px;
    height: max-content;
  }
  .s-feature-post .box-right {
    margin-top: -19px;
  }
  .footer-col-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .form-container {
    gap: 30px;
    flex-wrap: nowrap;
  }
  .s-banner.style-absolute .banner-content {
    left: 30px;
    right: unset;
  }
  .s-page-title .box-title-content {
    gap: 10px;
  }
  .tf-grid-layout.row-gap-30 {
    row-gap: 30px;
  }
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-col-md-2 {
    width: 16.6666666667%;
  }
  .tf-col-md-3 {
    width: 25%;
  }
  .tf-col-md-4 {
    width: 33.3333333333%;
  }
  .tf-col-md-5 {
    width: 41.6666666667%;
  }
  .tf-col-md-6 {
    width: 50%;
  }
  .tf-col-md-7 {
    width: 58.3333333333%;
  }
  .tf-col-md-8 {
    width: 66.6666666667%;
  }
  .tf-col-md-9 {
    width: 75%;
  }
  .tf-col-md-10 {
    width: 83.3333333333%;
  }
  .tf-col-md-11 {
    width: 91.6666666667%;
  }
  .tf-col-md-12 {
    width: 100%;
  }
  .s-solution .tf-grid-layout .wg-consulting {
	  position: sticky;
	  top: 20px;
  }
}
@media (min-width: 992px) {
  .home-page-display .box-view {
    padding: 19px 40px;
    margin-bottom: 30px;
  }
  .s-our-project {
    display: flex;
    gap: 30px;
    justify-content: space-between;
  }
  .s-our-project .heading {
    padding: 30px 0px;
    margin-bottom: 0;
  }
  .s-our-project .box-btn {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: max-content;
  }
  .s-our-project .slider-wrap {
    width: 57%;
  }
  .slider-our-project .swiper-slide {
    transform: scale(0.85);
    -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;
  }
  .slider-our-project .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  .faq-list .faq-item .right {
    max-width: 664px;
    width: 100%;
  }
  .faq-list .faq-item .left {
    height: max-content;
    position: sticky;
    top: 95px;
  }
  .wg-trust .image {
    max-width: 560px;
    max-height: unset;
  }
  .s-why-us .tf-grid-layout {
    column-gap: 40px;
  }
  .s-contact.style-2 .content-left {
    width: 50%;
  }
  .s-contact.style-2 .contact-form-wrap {
    max-width: 550px;
  }
  .s-banner-text .service-card-list {
    max-width: 728px;
    width: 100%;
  }
  .marquee-sale .marquee-wrapper {
    animation: infiniteScroll 40s linear infinite;
  }
  .mb-lg-30 {
    margin-bottom: 30px;
  }
  .s-banner-image .banner-content {
    width: 100%;
  }
  .s-banner-image .image {
    width: 100%;
    max-height: unset;
    max-width: 662px;
  }
  .s-banner-image .br-line {
    max-width: 407px;
  }
  .tf-btn.small-3 {
    padding: 15px 28px;
  }
  .wg-testimonial-2 {
    padding: 20px;
  }
  .ft-body .ft-heading {
    line-height: 15px;
  }
  .ft-bottom {
    justify-content: space-between;
  }
  .tf-sp-2,
  .tf-sp-3,
  .tf-sp-4,
  .tf-sp-5,
  .tf-sp-6,
  .tf-sp-7,
  .tf-sp-8,
  .tf-sp-9,
  .tf-sp-10,
  .tf-sp-13,
  .tf-sp-14,
  .tf-sp-15,
  .tf-sp-16,
  .tf-sp-17,
  .tf-sp-18,
  .tf-sp-19,
  .tf-sp-20,
  .tf-sp-22,
  .tf-sp-25,
  .tf-sp-26,
  .tf-sp-27,
  .tf-sp-28,
  .tf-sp-29,
  .tf-sp-30 {
    padding: 80px 0px;
  }
  .tf-sp-31,
  .tf-sp-32,
  .tf-sp-33,
  .tf-sp-34,
  .tf-sp-35,
  .tf-sp-37,
  .tf-sp-38,
  .tf-sp-39,
  .tf-sp-40,
  .tf-sp-41,
  .tf-sp-43,
  .tf-sp-44,
  .tf-sp-45,
  .tf-sp-46,
  .tf-sp-47,
  .tf-sp-49,
  .tf-sp-50,
  .tf-sp-51,
  .tf-sp-52,
  .tf-sp-53,
  .tf-sp-55,
  .tf-sp-57,
  .tf-sp-58,
  .tf-sp-60 {
    padding: 80px 0px;
  }
  .tf-sp-61,
  .tf-sp-62,
  .tf-sp-64,
  .tf-sp-65,
  .tf-sp-66,
  .tf-sp-67,
  .tf-sp-68,
  .tf-sp-69,
  .tf-sp-70,
  .tf-sp-71,
  .tf-sp-73,
  .tf-sp-74,
  .tf-sp-75,
  .tf-sp-76,
  .tf-sp-77 {
    padding: 80px 0px;
  }
  .tf-sp-72 {
    padding: 73px 0px 77px;
  }
  .tf-sp-56 {
    padding: 60px 0px 87px;
  }
  .tf-sp-63 {
    padding: 60px 0px 85px;
  }
  .tf-sp-11,
  .tf-sp-36,
  .tf-sp-42,
  .tf-sp-48,
  .tf-sp-59 {
    padding: 80px 0px 0px;
  }
  .tf-sp-12 {
    padding: 70px 0px 98px;
  }
  .tf-sp-21,
  .tf-sp-54 {
    padding: 0px 0px 80px;
  }
  .contact-form-wrap {
    padding: 30px 0px;
  }
  .contact-form-wrap .wrapper-top {
    padding: 0px 30px 30px;
  }
  .contact-form-wrap .wrapper-inner {
    padding: 30px;
  }
  .contact-form-wrap .wrapper-bottom {
    padding: 0px 30px;
  }
  .contact-form-wrap .contact-list-wrap {
    padding: 30px;
  }
  .contact-form-wrap .contact-list-wrap .br-line {
    display: block;
  }
  .benefit-check {
    gap: 14px;
  }
  .s-page-title .box-title-content {
    gap: 15px;
  }
  .tf-grid-layout {
    gap: 30px;
  }
  .tf-grid-layout.row-gap-20 {
    row-gap: 20px;
  }
  .tf-grid-layout.gap-25 {
    gap: 25px;
  }
  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-col-lg-2 {
    width: 16.6666666667%;
  }
  .tf-col-lg-3 {
    width: 25%;
  }
  .tf-col-lg-4 {
    width: 33.3333333333%;
  }
  .tf-col-lg-5 {
    width: 41.6666666667%;
  }
  .tf-col-lg-6 {
    width: 50%;
  }
  .tf-col-lg-7 {
    width: 58.3333333333%;
  }
  .tf-col-lg-8 {
    width: 66.6666666667%;
  }
  .tf-col-lg-9 {
    width: 75%;
  }
  .tf-col-lg-10 {
    width: 83.3333333333%;
  }
  .tf-col-lg-11 {
    width: 91.6666666667%;
  }
  .tf-col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .case-study-tab .btn-case {
    padding: 42px 30px;
    gap: 15px;
  }
  .case-study-tab .widget-content-tab {
    width: 70%;
  }
  .ic-half-square {
    top: 14px;
    right: 14px;
  }
  .s-page-title.style-2 .box-text {
    gap: 15px;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
  .s-page-title.style-2 .page-sub {
    line-height: 24px;
    text-align: right;
  }
}
@media (max-width: 1200px) {
  .tf-sp-35.d-flex{
    flex-direction: column;
    gap: 50px;
  }
  .tf-sp-35.d-flex .blog-2-sidebar-wrap{
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .home-page-display .content {
    gap: 150px;
  }
  .wg-context-exper .image-group {
    top: 95px;
  }
  .s-our-partner .content-right {
    max-width: 692px;
    width: 100%;
  }
  .overflow-xl-visible {
    overflow: visible !important;
  }
  .s-why-us .tf-grid-layout {
    column-gap: 30px;
  }
  .ft-body .ft-inner {
    flex-wrap: nowrap;
  }
  .ft-link-wrap {
    gap: 50px;
    width: unset;
    justify-content: unset;
  }
  .blog-post-item {
    padding: 30px 25px 27px 25px;
    gap: 22px;
  }
  .blog-post-item .br-line {
    margin-bottom: 21px;
    margin-top: 29px;
  }
  .s-page-title .image img {
    max-height: 375px;
    min-height: 375px;
  }
  .s-page-title .title-container {
    top: unset;
    bottom: 40px;
    transform: unset;
  }
  .header-right .br-mobile {
    display: none;
  }
  .mobile-button {
    display: none;
  }
  .main-nav .mega-menu .sub-menu-grid {
    gap: 25px;
  }
  .main-nav .wrapper-sub-menu .br-line {
    transform: translateX(-25px);
    width: calc(100% + 25px);
  }
  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-col-xl-2 {
    width: 16.6666666667%;
  }
  .tf-col-xl-3 {
    width: 25%;
  }
  .tf-col-xl-4 {
    width: 33.3333333333%;
  }
  .tf-col-xl-5 {
    width: 41.6666666667%;
  }
  .tf-col-xl-6 {
    width: 50%;
  }
  .tf-col-xl-7 {
    width: 58.3333333333%;
  }
  .tf-col-xl-8 {
    width: 66.6666666667%;
  }
  .tf-col-xl-9 {
    width: 75%;
  }
  .tf-col-xl-10 {
    width: 83.3333333333%;
  }
  .tf-col-xl-11 {
    width: 91.6666666667%;
  }
  .tf-col-xl-12 {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .tf-flex-col-2 {
    column-gap: 80px;
  }
  .s-land-feature .s-box-title {
    margin-bottom: 100px;
  }
  .s-land-feature .s-heading {
    margin-bottom: 22px !important;
  }
  .s-banner-easy {
    align-items: start;
  }
  .s-banner-easy .s-box-title {
    padding-top: 35px;
  }
  .s-inner-page .s-box-title {
    margin-bottom: 124px;
  }
  .s-inner-page .s-box-title .s-heading {
    margin-bottom: 22px;
  }
  .header-landing .content-container {
    top: 185px;
    transform: unset;
  }
  .header-landing .image img {
    height: 678px;
  }
  .footer-landing .image img {
    height: 687px;
  }
  .s-faq-list .s-box-title {
    margin-bottom: 134px;
  }
  .s-faq-list .accordion-exper .accordion-item {
    padding: 35px 50px 34px 30px;
  }
  .s-faq-list .accordion-exper .accordion-item:not(.collapsed) {
    padding: 38px 50px 34px 30px;
  }
  .s-faq-list .faq-list {
    gap: 131px;
  }
  .s-our-value .s-box-title,
  .s-field-single .s-box-title {
    margin-bottom: 130px;
  }
  .s-break-image {
    padding-top: 50px;
  }
  .s-partner-trust .s-box-title,
  .s-new-release .s-box-title {
    margin-bottom: 150px;
  }
  .s-blog .blog-post-item {
    padding: 28px 25px 30px 25px;
  }
  .s-our-team .s-box-title,
  .s-we-do-grid .s-box-title,
  .s-event-coming .s-box-title {
    margin-bottom: 140px;
  }
  .s-our-exper .s-box-title,
  .s-event-post .s-box-title,
  .s-testimonial-2 .s-box-title {
    margin-bottom: 170px;
  }
  .s-solution .s-box-title {
    margin-bottom: 131px;
  }
  .s-solution .banner-getstart {
    padding: 77px 60px 72px 60px !important;
  }
  .s-solution .banner-getstart .s-heading {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -0.6px;
  }
  .s-our-special .s-box-title,
  .s-news .s-box-title {
    margin-bottom: 138px;
  }
  .s-we-serve .s-box-title,
  .s-case-study .s-box-title {
    margin-bottom: 160px;
  }
  .s-contact .s-box-title {
    margin-bottom: 68px;
  }
  .s-article .slider-wrap {
    margin-bottom: 69px;
  }
  .s-faq .s-box-title,
  .s-article .s-box-title,
  .s-testimonial .s-box-title,
  .s-job-open .s-box-title,
  .s-faq-2 .s-box-title {
    margin-bottom: 120px;
  }
  .s-new-release .wg-new-release .content {
    padding: 30px 63px 40px 34px;
  }
  .s-case-study .post-news-item {
    padding: 29px 40px 30px 39px;
  }
  .s-case-study .post-news-item .box-title {
    padding-bottom: 0px;
  }
  .s-case-study .post-news-item .box-title .box-btn {
    bottom: 2px;
    right: 19px;
  }
  .s-case-study .post-news-item .benefit-grid {
    margin-bottom: 0px !important;
    row-gap: 28px;
  }
  .s-case-study .post-news-item .content {
    padding-top: 0px;
    max-width: 580px;
  }
  .s-case-study .post-news-item .content .br-line {
    margin-bottom: 10px;
    margin-top: 6px;
  }
  .s-case-study .post-news-item.style-2 {
    padding: 29px 34px 29px 40px;
  }
  .s-case-study .post-news-item.style-2 .content {
    margin-top: -29px;
  }
  .s-case-study .post-news-item.style-2 .box-btn {
    right: 45px;
  }
  .s-image-parralax .image {
    height: 584px;
  }
  .s-case-study-tab .s-box-title {
    margin-bottom: 131px;
  }
  .wg-idea .box-content {
    gap: 26px;
  }
  .process-progress-content .process-progress-wrap {
    gap: 24px;
  }
  .s-we-do .s-box-title {
    margin-bottom: 133px;
  }
  .s-we-do .process-progress-content {
    margin-bottom: 70px;
  }
  .s-elite .slider-wrap {
    margin-bottom: 60px;
  }
  .s-elite .s-box-title {
    margin-bottom: 135px;
  }
  .s-elite.type-spacing .s-box-title {
    margin-bottom: 80px;
  }
  .s-what-we-do .s-tag-name {
    margin-bottom: 23px;
  }
  .s-what-we-do .s-box-title {
    margin-bottom: 24px;
  }
  .s-what-we-do .box-btn {
    margin-bottom: 50px;
  }
  .s-what-we-do .card-service-item .avt {
    max-width: 50px;
  }
  .clut-rating {
    margin-top: -4px;
  }
  .s-land-feature .content-wrap {
    gap: 21px;
  }
  .s-land-feature .bot {
    gap: 53px;
  }
  .s-land-feature .bot .btn-item {
    gap: 27px;
  }
  .image-inner-group .image.center {
    margin: 0px -145px;
  }
  .image-inner-group .image.inner-left {
    margin-left: -117px;
  }
  .image-inner-group .image.inner-right {
    margin-right: -117px;
  }
  .s-mega-menu .menu-grid {
    padding-top: 15px;
    row-gap: 63px;
    max-width: 775px;
    width: 100%;
  }
  .s-mega-menu .s-heading {
    margin-bottom: 23px;
  }
  .hero-banner .content-container .content {
    gap: 55px;
  }
  .hero-banner .content-container .box-title {
    gap: 22px;
  }
  .slider-work {
    margin-right: -40px !important;
  }
  .slider-work .swiper-wrapper {
    justify-content: space-between;
    width: 100%;
  }
  .slider-work .swiper-wrapper .swiper-slide {
    width: auto;
  }
  .work-list {
    gap: 35px;
    margin-right: -40px;
  }
  .s-our-field .s-box-title {
    margin-bottom: 81px;
  }
  .s-our-field .number-wrap {
    gap: 38px;
    padding-top: 20px;
  }
  .s-our-field .slider-wrap {
    margin-right: -40px;
    gap: 90px;
    padding-left: 20px;
  }
  .s-our-field .card-our-field {
    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;
  }
  .s-our-field .card-our-field .image {
    position: relative;
    z-index: 2;
  }
  .s-our-field .card-our-field .progress-card {
    transform: translateY(-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;
  }
  .s-our-field .card-our-field .card-content {
    transform: translateY(-20px);
    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;
  }
  .s-our-field .card-our-field.active .progress-card {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
  }
  .s-our-field .card-our-field.active .card-content {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
  }
  .s-banner-event .content-card {
    padding: 30px 30px 32px;
    gap: 30px;
    max-width: 530px;
    width: 100%;
  }
  .s-banner-event .content-card .image {
    margin-bottom: 5px;
  }
  .s-banner-event .content-card .box-title {
    gap: 24px;
  }
  .s-banner-event .content-detail {
    margin-left: 75px;
    margin-right: auto;
    gap: 40px;
    width: auto;
    padding-bottom: 15px;
  }
  .s-banner-event .content-detail .heading {
    gap: 39px;
  }
  .s-banner-event .content-detail .box-head {
    gap: 16px;
  }
  .s-banner-event .content-detail .box-text {
    gap: 23px;
    margin-bottom: -11px;
  }
  .s-banner-event .content-detail .br-line {
    margin-bottom: 6px;
  }
  .s-feature-service .content-right {
    padding-top: 60px;
    max-width: 100%;
    width: 597px;
  }
  .s-our-project {
    gap: 135px;
  }
  .s-our-project .s-box-title {
    margin-bottom: 30px;
  }
  .s-our-project .heading {
    padding: 76px 0px 20px;
  }
  .app-grid {
    width: max-content;
  }
  .card-portfolio .content {
    left: 30px;
    right: 30px;
    bottom: 40px;
  }
  .card-portfolio .box-title {
    gap: 18px;
  }
  .card-work {
    width: 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;
    max-width: 243px;
  }
  .card-work .ic-half-square {
    -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-work.active {
    max-width: 601px;
    padding: 30px 50px 30px 25px;
  }
  .card-work.active .ic-half-square {
    visibility: visible;
    opacity: 1;
  }
  .card-work.active .text-old {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0%;
    transform: translateY(0%);
  }
  .card-work.active .text-new {
    bottom: -100%;
    visibility: hidden;
    opacity: 0;
  }
  .card-work.active .head {
    bottom: 108px;
  }
  .card-work.active .head .tf-btn-icon {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  .card-work .text-old {
    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;
    margin-bottom: -50%;
    transform: translateY(50%);
  }
  .card-work .text-new {
    visibility: visible;
    opacity: 1;
    -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;
  }
  .card-work .box-title {
    position: relative;
  }
  .card-work .head {
    -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: 62px;
    width: 100%;
  }
  .card-work .head .tf-btn-icon {
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
  }
  .wd-context {
    gap: 29px;
  }
  .wd-context .box-title {
    gap: 28px;
  }
  .wd-context .box-title .title {
    gap: 13px;
  }
  .wd-context .box-btn {
    padding-right: 33px;
  }
  .wd-context .box-btn .tf-btn-icon {
    height: 40px;
    width: 40px;
  }
  .wg-context-exper .image-wrap {
    gap: 50px;
  }
  .wg-context-exper .image-group {
    max-width: 570px;
    width: 100%;
  }
  .wg-context-exper .context-list {
    padding-top: 15px;
    max-width: 505px;
    width: 100%;
    gap: 44px;
  }
  .wg-testimonial-2 {
    gap: 107px;
  }
  .s-our-pricing .s-box-title {
    margin-bottom: 140px;
  }
  .s-our-pricing .content-wrap {
    gap: 35px;
  }
  .s-our-pricing .box-banner-pricing {
    max-width: 417px;
  }
  .s-our-pricing .box-banner-pricing .box-text {
    top: 30px;
    left: 30px;
  }
  .s-job-open .content {
    gap: 45px;
  }
  .box-book {
    padding: 34px 40px;
  }
  .s-our-partner {
    padding: 90px 40px 73px 50px !important;
  }
  .s-our-partner .content-right {
    padding-top: 49px;
  }
  .s-our-partner .banner-content {
    gap: 23px !important;
  }
  .s-our-partner .banner-content .br-line {
    margin-bottom: 5px !important;
  }
  .wg-trust {
    padding: 30px 33px 30px 40px;
    gap: 47px;
  }
  .wg-trust .content {
    gap: 26px;
    padding-bottom: 13px;
  }
  .wg-trust .box-title {
    gap: 16px;
  }
  .s-contact .checkbox-item {
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .s-contact.style-2 {
    padding: 45px 60px;
  }
  .s-contact.style-2 .s-box-title {
    margin-bottom: 11px;
  }
  .s-contact.style-2 .content-left {
    margin-top: -68px;
  }
  .s-contact.style-2 .content-left .br-line {
    max-width: 405px;
    margin-bottom: 15px;
  }
  .s-contact.style-2 .contact-form-wrap {
    padding: 30px 40px;
  }
  .s-contact.style-2 .contact-form-wrap .checkbox-item {
    margin-top: 3px;
  }
  .s-contact.style-2 .contact-form-wrap fieldset label {
    margin-bottom: 10px;
  }
  .s-contact.style-2 .contact-form-wrap fieldset input {
    padding: 14px 20px 15px 18px;
  }
  .s-contact.style-2 .contact-form-wrap .br-line {
    margin-top: 4px;
    margin-bottom: 3px;
  }
  .wg-testimonial {
    gap: 147px;
  }
  .wg-testimonial .br-line {
    margin-top: 1px;
    margin-bottom: 10px;
  }
  .process-progress-content {
    gap: 45px;
  }
  .card-service {
    padding: 147px 35px 30px 25px;
  }
  .card-service .br-line {
    margin-top: -1px;
    margin-bottom: 7px;
  }
  .s-banner-text .service-card-list {
    gap: 35px;
  }
  .wg-idea .content {
    padding: 28px 31px 31px 34px;
  }
  .wg-idea .image {
    max-width: 517px;
    width: 100%;
  }
  .s-page-title-home > .br-line {
    margin-top: 6px;
    margin-bottom: 27px;
  }
  .page-title-home .s-box-title .p-title {
    margin-bottom: 6px;
  }
  .page-title-home .s-box-title .page-heading {
    margin-bottom: 12px;
  }
  .page-title-home .box-btn {
    padding-left: 16px;
    gap: 37px;
  }
  .page-title-home .content-slide {
    gap: 21px;
  }
  .page-title-home .content-left {
    padding-top: 10px;
    max-width: 718px;
    width: 100%;
  }
  .page-title-home .slider-right {
    max-width: 530px;
    width: 100%;
  }
  .page-title-home .content-left {
    gap: 17px;
  }
  .page-title-home .content-left .br-line {
    margin-top: 29px;
    margin-bottom: 24px;
  }
  .page-title-home .bot {
    gap: 10px 47px;
  }
  .page-title-home.style-2 .s-box-title .p-title {
    margin-bottom: 14px;
  }
  .page-title-home.style-2 .s-box-title .page-heading {
    margin-bottom: 6px;
  }
  .page-title-home.style-2 .box-btn {
    gap: 21px;
  }
  .page-title-home.style-2 .content-right {
    padding-top: 35px;
  }
  .page-title-home.style-2 .content-right .business-wrap {
    margin-bottom: -2px;
  }
  .page-title-home.style-2 .content-right > .text-md {
    margin-bottom: 7px;
  }
  .slider-home .wrap-pagination {
    left: 30px;
    bottom: 30px;
  }
  .slider-home .box-tag-list {
    left: 30px;
    bottom: 58px;
  }
  .tf-btn-line.style-3 {
    gap: 8px;
  }
  .mb-xxl-30 {
    margin-bottom: 30px;
  }
  .s-banner-img-text {
    gap: 130px;
    justify-content: unset;
    align-items: unset;
  }
  .s-banner-img-text .s-box-title {
    margin-bottom: 22px;
  }
  .s-banner-img-text .s-box-title .s-heading {
    margin-bottom: 24px;
  }
  .s-banner-img-text .box-text .s2 {
    margin-bottom: 30px;
  }
  .s-banner-img-text .image {
    max-width: 640px;
  }
  .s-banner-img-text .banner-content {
    max-width: 545px;
    display: grid;
    height: max-content;
  }
  .s-banner-img-text.style-2 {
    gap: 120px;
    justify-content: space-between;
    align-items: start;
  }
  .s-banner-img-text.style-2 .image {
    max-width: 607px;
  }
  .s-banner-img-text.style-2 .banner-content {
    max-width: 523px;
  }
  .s-banner-img-text.style-2 .box-text {
    margin-bottom: 15px;
  }
  .s-banner-img-text.banner-event .banner-content {
    padding-top: 45px;
  }
  .s-banner-img-text.banner-event .image {
    max-width: 607px;
    width: 100%;
  }
  .s-banner-img-text.banner-field {
    max-width: 1307px;
    width: 100%;
    margin: auto;
    padding-left: 7px;
  }
  .s-banner-img-text.banner-field .image {
    max-width: 640px;
    width: 100%;
  }
  .s-banner-img-text.banner-field .banner-content {
    max-width: 530px;
    width: 100%;
  }
  .s-banner-image .banner-content {
    width: auto;
  }
  .s-banner-image .s-box-title {
    margin-bottom: 25px;
  }
  .s-banner-image .br-line {
    margin-bottom: 30px;
  }
  .s-banner-image .image {
    width: auto;
  }
  .tf-sp-3 {
    padding: 120px 0px;
  }
  .tf-sp-4 {
    padding: 55px 0px 145px;
  }
  .tf-sp-5 {
    padding: 150px 0px 180px;
  }
  .tf-sp-6 {
    padding: 120px 0px 90px;
  }
  .tf-sp-7 {
    padding: 150px 0px 190px;
  }
  .tf-sp-8 {
    padding: 60px 0px 130px;
  }
  .tf-sp-9 {
    padding: 105px 0px;
  }
  .tf-sp-10 {
    padding: 150px 0px;
  }
  .tf-sp-11 {
    padding: 90px 0px 0px;
  }
  .tf-sp-13 {
    padding: 120px 0px 80px;
  }
  .tf-sp-14 {
    padding: 100px 0px 170px;
  }
  .tf-sp-15 {
    padding: 90px 0px 50px;
  }
  .tf-sp-16 {
    padding: 149px 0px 178px;
  }
  .tf-sp-17 {
    padding: 95px 0px 138px;
  }
  .tf-sp-18 {
    padding: 124px 0px 142px;
  }
  .tf-sp-19 {
    padding: 146px 0px 90px;
  }
  .tf-sp-20 {
    padding: 120px 0px 170px;
  }
  .tf-sp-21 {
    padding: 0px 0px 160px;
  }
  .tf-sp-22 {
    padding: 80px 0px 111px;
  }
  .tf-sp-23 {
    padding: 60px 0px 49px;
  }
  .tf-sp-24 {
    padding: 100px 0px 130px;
  }
  .tf-sp-25 {
    padding: 130px 0px 160px;
  }
  .tf-sp-26 {
    padding: 80px 0px 130px;
  }
  .tf-sp-27 {
    padding: 90px 0px 80px;
  }
  .tf-sp-28 {
    padding: 133px 0px 107px;
  }
  .tf-sp-29 {
    padding: 140px 0px 110px;
  }
  .tf-sp-30 {
    padding: 110px 0px 108px;
  }
  .tf-sp-31 {
    padding: 130px 0px 120px;
  }
  .tf-sp-32 {
    padding: 140px 0px;
  }
  .tf-sp-33 {
    padding: 60px 0px 120px;
  }
  .tf-sp-34 {
    padding: 150px 0px 170px;
  }
  .tf-sp-35 {
    padding: 50px 0px 100px;
  }
  .tf-sp-36 {
    padding: 93px 0px 0px;
  }
  .tf-sp-37 {
    padding: 180px 0px 170px;
  }
  .tf-sp-38 {
    padding: 60px 0px 100px;
  }
  .tf-sp-39 {
    padding: 80px 0px 150px;
  }
  .tf-sp-40 {
    padding: 100px 0px 80px;
  }
  .tf-sp-41 {
    padding: 130px 0px 170px;
  }
  .tf-sp-42 {
    padding: 163px 0px 0px;
  }
  .tf-sp-43 {
    padding: 165px 0px 140px;
  }
  .tf-sp-44 {
    padding: 140px 0px 170px;
  }
  .tf-sp-45 {
    padding: 60px 0px 160px;
  }
  .tf-sp-46 {
    padding: 170px 0px 160px;
  }
  .tf-sp-47 {
    padding: 180px 0px 190px;
  }
  .tf-sp-48 {
    padding: 240px 0px 0px;
  }
  .tf-sp-49 {
    padding: 110px 0px 110px;
  }
  .tf-sp-50 {
    padding: 120px 0px 160px;
  }
  .tf-sp-51 {
    padding: 140px 0px 100px;
  }
  .tf-sp-52 {
    padding: 170px 0px 170px;
  }
  .tf-sp-53 {
    padding: 180px 0px 150px;
  }
  .tf-sp-54 {
    padding: 0px 0px 150px;
  }
  .tf-sp-55 {
    padding: 150px 0px 120px;
  }
  .tf-sp-57 {
    padding: 87px 0px 156px;
  }
  .tf-sp-58 {
    padding: 140px 0px 158px;
  }
  .tf-sp-59 {
    padding: 160px 0px 0px;
  }
  .tf-sp-60 {
    padding: 180px 0px 180px;
  }
  .tf-sp-61 {
    padding: 160px 0px 170px;
  }
  .tf-sp-62 {
    padding: 180px 0px 160px;
  }
  .tf-sp-64 {
    padding: 180px 0px 130px;
  }
  .tf-sp-65 {
    padding: 75px 0px 130px;
  }
  .tf-sp-66 {
    padding: 110px 0px 193px;
  }
  .tf-sp-67 {
    padding: 194px 0px 160px;
  }
  .tf-sp-68 {
    padding: 60px 0px 180px;
  }
  .tf-sp-69 {
    padding: 120px 0px 58px;
  }
  .tf-sp-70 {
    padding: 150px 0px 160px;
  }
  .tf-sp-71 {
    padding: 60px 0px 110px;
  }
  .tf-sp-73 {
    padding: 170px 0px 180px;
  }
  .tf-sp-74 {
    padding: 190px 0px 170px;
  }
  .tf-sp-75 {
    padding: 60px 0px 108px;
  }
  .tf-sp-76 {
    padding: 230px 0px 140px;
  }
  .tf-sp-77 {
    padding: 153px 0px 146px;
  }
  .box-contact {
    padding: 40px 30px;
    gap: 22px;
  }
  .box-contact .title {
    gap: 14px;
  }
  .box-contact .box-info {
    gap: 16px;
  }
  .note-box {
    top: 25px;
    right: 25px;
  }
  .box-feature {
    padding: 40px 30px;
    gap: 23px;
  }
  .wg-new-release {
    padding: 29px 40px 29px 40px;
    gap: 35px;
  }
  .wg-new-release .image {
    max-width: 560px;
  }
  .wg-new-release .content {
    padding: 30px 40px 30px 36px;
    gap: 26px;
  }
  .wg-new-release .content .box-title {
    gap: 16px;
  }
  .wg-pricing {
    padding: 30px 84px 29px 29px;
    gap: 109px;
  }
  .wg-pricing .content {
    max-width: 510px;
    width: 100%;
    flex-shrink: 0;
  }
  .wg-pricing .entry_level {
    margin-bottom: 13px;
  }
  .wg-pricing .entry_price {
    gap: 20px;
    margin-bottom: 7px;
  }
  .wg-pricing .sale-up {
    transform: translateY(-2px);
  }
  .wg-pricing .benefit-wrap {
    gap: 33px;
  }
  .wg-pricing .long-text {
    margin-bottom: 3px;
  }
  .post-event-item {
    gap: 30px;
    padding: 25px 25px 31px 25px;
  }
  .post-event-item .content {
    gap: 30px;
  }
  .post-event-item .box-title {
    gap: 16px;
  }
  .event-grid {
    row-gap: 73px !important;
  }
  .wg-event {
    padding: 29px 39px 27px 40px;
    gap: 30px;
  }
  .wg-event .box-title {
    gap: 20px;
  }
  .wg-event .br-line {
    margin-bottom: 12px;
  }
  .wg-event .list-info-event {
    margin-bottom: 17px;
    gap: 24px;
    width: max-content;
  }
  .wg-event .list-info-event li {
    gap: 11px;
  }
  .wg-event .box-btn .long-text {
    padding-bottom: 21px;
  }
  .wg-event.style-2 {
    padding: 29px 49px 28px 39px;
  }
  .jobs-list {
    gap: 25px;
    padding: 40px;
  }
  .wg-job {
    gap: 69px;
    padding: 40px 38px 39px 39px;
  }
  .wg-job .time-job {
    margin-top: -9px;
  }
  .wg-job .box-btn {
    gap: 30px;
  }
  .wg-job .content {
    gap: 30px;
  }
  .wg-job .box-title {
    gap: 23px;
  }
  .wg-job .list-info-job {
    gap: 42px;
  }
  .wg-job .list-info-job li {
    gap: 11px;
  }
  .wg-job .list-info-job {
    margin-bottom: 7px;
  }
  .wg-career {
    padding: 20px 30px 29px 30px;
  }
  .wg-career .trend-list {
    margin-bottom: 4px;
    margin-right: -5px;
  }
  .wg-career .box-title {
    gap: 11px;
  }
  .wg-career .br-line {
    margin-top: 1px;
    margin-bottom: 4px;
  }
  .s-why-us {
    padding: 30px 40px 34px 40px;
    gap: 40px;
  }
  .s-why-us .box-title {
    gap: 23px;
  }
  .s-why-us .box-title .box-text {
    gap: 18px;
  }
  .s-why-us .content {
    gap: 28px;
  }
  .s-why-us .content .br-line {
    margin-bottom: 2px;
  }
  .s-why-us.type-spacing {
    padding: 30px 40px 29px 40px;
  }
  .post-news-item {
    padding: 28px 40px 27px 40px;
    gap: 30px;
  }
  .post-news-item .box-title {
    gap: 20px;
    padding-bottom: 27px;
  }
  .post-news-item .box-title .box-btn {
    bottom: 0;
  }
  .post-news-item .content {
    gap: 20px;
  }
  .post-news-item .content .br-line {
    margin-bottom: 5px;
  }
  .post-news-item .content .benefit-grid {
    margin-bottom: 15px;
  }
  .post-news-item.style-2 {
    padding: 30px 40px 28px 40px;
  }
  .wg-consulting {
    padding: 30px 40px;
    gap: 40px;
  }
  .wg-consulting .box-title {
    gap: 16px;
  }
  .wg-consulting .box-title .heading {
    gap: 11px;
  }
  .wg-consulting .content {
    padding: 40px 23px 40px 30px;
  }
  .wg-consulting .content .br-line {
    margin: 3px 0px 20px;
  }
  .wg-consulting .box-btn .tf-btn-icon {
    width: 40px;
    height: 40px;
  }
  .wg-consulting .box-btn .tf-btn-icon i {
    font-size: 13px;
  }
  .accordion-exper .accordion-item {
    padding: 35px 50px 34px 30px;
  }
  .accordion-exper .accordion-item:not(.collapsed) {
    padding: 37px 50px 40px 30px;
  }
  .accordion-exper .accordion-item:not(.collapsed) .accordion-head {
    margin-bottom: 35px;
  }
  .accordion-exper .accordion-item:not(.collapsed) .ic-plus {
    top: 37px;
  }
  .accordion-exper .ic-plus {
    top: 33px;
    right: 28px;
  }
  .card-member {
    padding: 30px 30px 25px 30px;
    gap: 30px;
  }
  .card-member .box-name {
    display: grid;
    gap: 10px;
  }
  .card-member .box-content {
    gap: 24px;
  }
  .card-member.style-2 {
    gap: 25px;
    padding: 43px 40px 25px 35px;
  }
  .card-member.style-2 .box-title {
    gap: 16px;
  }
  .card-member.style-2 .box-title .text-end {
    margin-bottom: -6px;
  }
  .card-member.style-2 .box-title h4 {
    margin-bottom: 5px;
  }
  .card-member.style-2 .box-title .br-line {
    max-width: 250px;
    margin: auto;
  }
  .card-member.style-2 .long-text {
    margin-bottom: 0;
  }
  .wg-partner {
    padding: 29px 40px 30px 39px;
  }
  .wg-partner .infor {
    gap: 23px;
    padding-top: 6px;
  }
  .wg-partner .current {
    top: 25px;
    right: 40px;
  }
  .wg-testimonial-2 {
    padding: 40px 30px;
  }
  .wg-testimonial-2 .wg-rating {
    margin-bottom: 5px;
  }
  .wg-testimonial-2 .box-text {
    gap: 16px;
  }
  .wg-testimonial-2 .author {
    gap: 12px;
  }
  .wg-testimonial-2 .author .info {
    gap: 10px;
  }
  .wg-testimonial {
    padding: 30px 25px;
  }
  .wg-testimonial .box-author .info {
    display: grid;
    gap: 7px;
  }
  .wg-testimonial.style-2 {
    padding: 24px 21px 24px 25px;
  }
  .wg-testimonial.style-2 .box-text {
    gap: 16px;
  }
  .card-our-field .tf-btn-icon {
    width: 40px;
    height: 40px;
  }
  .card-our-field .tf-btn-icon i {
    font-size: 13px;
  }
  .card-our-field .image {
    margin-bottom: 27px;
  }
  .card-our-field .progress-card {
    margin-bottom: 16px;
  }
  .card-our-field .box-title {
    gap: 16px;
  }
  .card-our-field .card-content {
    gap: 15px;
  }
  .lh-48 {
    line-height: 48px;
  }
  .lh-43 {
    line-height: 43px;
  }
  .lh-32 {
    line-height: 32px;
  }
  .lh-31 {
    line-height: 31px;
  }
  .lh-27 {
    line-height: 27px;
  }
  .lh-25 {
    line-height: 25px;
  }
  .lh-22 {
    line-height: 22px;
  }
  .lh-19 {
    line-height: 19px !important;
  }
  .lh-17 {
    line-height: 17px;
  }
  .lh-16 {
    line-height: 16px;
  }
  .lh-14 {
    line-height: 14px !important;
  }
  .lh-15 {
    line-height: 15px !important;
  }
  .lh-12 {
    line-height: 12px;
  }
  .lh-11 {
    line-height: 11px;
  }
  .lh-10 {
    line-height: 10px;
  }
  .lh-9 {
    line-height: 9px;
  }
  .case-study-tab .box-btn {
    top: unset;
    right: 33px;
    bottom: 22px;
  }
  .case-study-tab .widget-content-tab {
    width: 100%;
  }
  .case-study-tab .menu-tab {
    max-width: 390px;
    width: 100%;
  }
  .case-study-tab .widget-content-inner {
    gap: 49px;
    padding: 35px 40px 48px;
  }
  .case-study-tab .btn-case {
    padding: 43px 30px 41px 29px;
  }
  .s-feature-post .box-left {
    padding-top: 46px;
  }
  .s-feature-post .s-box-title {
    margin-bottom: 27px;
  }
  .s-feature-post .s-heading {
    margin-bottom: 23px !important;
  }
  .s-page-single {
    gap: 65px;
  }
  .s-page-single .content-wrap {
    padding: 40px 75px 40px 40px;
    gap: 65px;
  }
  .s-page-single .box-content {
    gap: 25px;
  }
  .s-page-single .box-content .text-1 {
    margin-bottom: -3px;
  }
  .s-page-single .box-content .text-2 {
    margin-bottom: 18px;
  }
  .s-page-single .tf-grid-layout {
    row-gap: 25px;
    column-gap: 0px;
  }
  .s-page-single.how-we-single .box-content .text-2 {
    margin-bottom: 40px;
  }
  .s-page-single.how-we-single .box-content .text-3 {
    margin-bottom: 23px;
  }
  .display-sm {
    line-height: 19px;
  }
  .ft-link-wrap {
    gap: 85px;
  }
  .checkbox-item label .text {
    line-height: 11px;
    font-size: 15px;
  }
  form .cols {
    gap: 30px;
  }
  form .f-col {
    gap: 18px;
  }
  form fieldset label {
    margin-bottom: 8px;
  }
  .form-container {
    gap: 100px;
  }
  .contact-form-wrap {
    padding: 50px 0px;
  }
  .contact-form-wrap .wrapper-top {
    padding: 0px 50px 24px;
  }
  .contact-form-wrap .wrapper-inner {
    padding: 29px 50px 56px;
  }
  .contact-form-wrap .wrapper-bottom {
    padding: 0px 50px;
  }
  .contact-form-wrap .contact-list-wrap {
    padding: 40px 29px 35px 29px;
  }
  .contact-form-wrap .contact-list-wrap .contact-item {
    gap: 18px;
  }
  .contact-form-wrap .contact-list-wrap .info-list {
    gap: 15px;
  }
  .contact-form-wrap.style-2 {
    padding: 50px 0px 69px;
    margin: 50px 0px;
  }
  .contact-form-wrap.style-2 .wrapper-inner {
    padding: 29px 50px 0px;
  }
  .contact-form-wrap.style-2 .budget {
    margin-bottom: 5px;
  }
  .contact-form-wrap.style-2 .budget > label {
    margin-bottom: 14px;
  }
  .contact-form-wrap.style-2 .budget .noUi-target {
    margin-bottom: 19px;
  }
  .contact-form-wrap.style-2 .checkbox-item {
    margin-bottom: 6px;
  }
  .contact-form-wrap.style-2 .app-grid {
    gap: 20px 16px;
  }
  .contact-form-wrap.style-2 .app-grid .checkbox-item label {
    padding-left: 40px;
  }
  .banner-benefit .br-line {
    margin-bottom: 30px;
  }
  .s-box-title {
    margin-bottom: 40px;
  }
  .s-box-title .s-tag-name {
    margin-bottom: 22px;
  }
  .s-box-title .s-heading {
    margin-bottom: 16px;
  }
  .s-box-title.style-2 .box-sub {
    gap: 16px;
  }
  .ft-body .ft-inner {
    padding: 80px 0px 50px;
  }
  .ft-body .inner-bottom {
    padding: 44px 0px 66px 0px;
  }
  .ft-body .ft-form-wrap {
    display: unset;
  }
  .ft-body .ft-form-wrap .box-title {
    margin-bottom: 30px;
  }
  .ft-body .ft-form-wrap .form-email {
    margin-bottom: 33px;
  }
  .ft-body .inner-bottom .notify {
    line-height: 22px;
    max-width: 702px;
    width: 100%;
  }
  .ft-bottom {
    padding: 20px 0px;
  }
  .contact-form-wrap .wrapper-top .text-sm {
    line-height: 22px;
  }
  .br-line.type-vertical.h-20 {
    height: 20px;
  }
  .br-line.type-vertical.h-30 {
    height: 30px;
  }
  .br-line.type-vertical.w-3 {
    width: 3px;
  }
  .s-banner.style-default {
    padding: 114px 60px;
  }
  .s-banner.style-default .box-btn {
    align-items: end;
    gap: 46px;
  }
  .s-banner.style-default .box-btn .tf-btn-line {
    padding-bottom: 5px;
  }
  .s-banner.style-default .s-box-title {
    margin-bottom: 11px;
  }
  .s-banner.style-default .br-line {
    margin-bottom: 11px;
  }
  .s-banner.style-absolute .banner-content {
    left: 60px;
  }
  .banner-getstart.style-default {
    padding: 140px 60px 152px 60px;
  }
  .benefit-check .text-sm-2 {
    line-height: 10px;
  }
  .s-page-title .box-title-content {
    gap: 23px;
  }
  .s-page-title .page-heading {
    margin-bottom: 3px;
  }
  .s-page-title.style-2 .title-container {
    bottom: 68px;
  }
  .s-page-title.style-2 .page-heading {
    margin-bottom: 1px;
    margin-top: 7px;
  }
  .s-page-title.style-2 .page-sub {
    margin-bottom: 10px;
  }
  .page-heading {
    display: grid;
    gap: 20px;
    letter-spacing: -2.2px !important;
  }
  .offcanvas-search .offcanvas-body {
    padding: 60px 0;
  }
  .offcanvas-search .btn-close-search {
    font-size: 22px;
  }
  .tf-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .tf-container .row {
    margin-left: -17.5px !important;
    margin-right: -17.5px !important;
  }
  .tf-container .row > * {
    padding-left: 17.5px !important;
    padding-right: 17.5px !important;
  }
  .tf-header.style-2 .header-left,
  .tf-header.style-2 .header-right {
    gap: 40px;
  }
  .tf-header.style-2 .nav-btn a {
    padding: 20px 28px 19px;
  }
  .header-left,
  .header-right {
    gap: 30px;
  }
  .main-nav .nav-list {
    gap: 33px;
  }
  .main-nav .sub-menu.mega-menu {
    max-width: 1440px;
    width: 100%;
    left: 0px;
    right: 0;
    padding: 60px 39px 52px;
  }
  .main-nav .sub-menu.mega-menu.mega-company .wrapper-sub-menu {
    padding-right: 60px;
  }
  .main-nav .sub-menu.mega-menu.mega-portfolio .card-project-item {
    max-width: 332px;
    height: 130px;
  }
  .main-nav .sub-menu.mega-menu.mega-portfolio .card-project-item img {
    width: 100%;
  }
  .main-nav .sub-menu.mega-menu.mega-portfolio .wrapper-sub-menu .br-line {
    margin-top: 28px;
    margin-bottom: 22px;
  }
  .main-nav .sub-menu.mega-menu.mega-service .service-card-list {
    gap: 26px;
  }
  .main-nav .sub-menu.mega-menu.mega-service .mega-menu-list {
    gap: 41px;
  }
  .main-nav .wrapper-sub-we .br-line {
    min-height: 352px;
  }
  .main-nav .wrapper-sub-menu .mega-menu-list {
    gap: 61px;
  }
  .main-nav .wrapper-sub-menu .br-line {
    margin: 57px auto 32px;
  }
  .main-nav .mega-menu .sub-menu-grid {
    gap: 25px 80px;
  }
  .tf-grid-layout {
    gap: 60px 35px;
    /* Row Gap */
    /* Column Gap */
  }
  .tf-grid-layout.gap-30 {
    gap: 30px;
  }
  .tf-grid-layout.row-gap-140 {
    row-gap: 140px;
  }
  .tf-grid-layout.row-gap-60 {
    row-gap: 60px;
  }
  .tf-grid-layout.row-gap-65 {
    row-gap: 65px;
  }
  .tf-grid-layout.row-gap-35 {
    row-gap: 35px;
  }
  .tf-grid-layout.cl-gap-80 {
    column-gap: 80px;
  }
  .tf-grid-layout.cl-gap-50 {
    column-gap: 50px;
  }
  .tf-grid-layout.cl-gap-40 {
    column-gap: 40px;
  }
  .tf-grid-layout.cl-gap-4 {
    column-gap: 4px;
  }
  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-col-xxl-2 {
    width: 16.6666666667%;
  }
  .tf-col-xxl-3 {
    width: 25%;
  }
  .tf-col-xxl-4 {
    width: 33.3333333333%;
  }
  .tf-col-xxl-5 {
    width: 41.6666666667%;
  }
  .tf-col-xxl-6 {
    width: 50%;
  }
  .tf-col-xxl-7 {
    width: 58.3333333333%;
  }
  .tf-col-xxl-8 {
    width: 66.6666666667%;
  }
  .tf-col-xxl-9 {
    width: 75%;
  }
  .tf-col-xxl-10 {
    width: 83.3333333333%;
  }
  .tf-col-xxl-11 {
    width: 91.6666666667%;
  }
  .tf-col-xxl-12 {
    width: 100%;
  }
}
@media (min-width: 1600) {
  .lh-xxl-14 {
    line-height: 14px !important;
  }
}
/* --- Screen Max Width --- */
@media (max-width: 1439px) {
  .tf-flex-col-2.type-2 {
    gap: 15px 20px;
  }
  .tf-flex-col-2.type-2 .cols {
    gap: 15px 20px;
  }
  .card-work .text-new {
    display: none !important;
  }
  h1,
  .h1 {
    font-size: 55px;
    line-height: 55px;
  }
  h6,
  .h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
  br.br-col-xl,
  .br-line.br-col-xl {
    display: none;
  }
}
@media (max-width: 1199px) {
  .ft-body .ft-form-wrap {
    max-width: unset;
  }
  .ft-body .box-achievement {
    justify-content: start;
  }
  .card-work {
    min-height: 350px;
  }
  .blog-post-item .box-btn {
    bottom: -33px;
  }
  .header-inner {
    padding: 10px 0px;
  }
  .main-nav {
    display: none;
  }
  br.br-col-lg,
  .br-line.br-col-lg {
    display: none;
  }
}
@media (max-width: 1023px) {
  .case-study-tab {
    flex-direction: column;
  }
  .case-study-tab .menu-tab {
    flex-direction: row;
    width: 100%;
    overflow: auto;
  }
  .case-study-tab .menu-tab .item {
    width: 300px;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) {
  .box-contact {
    min-height: 200px;
    padding: 15px;
  }
  .banner-getstart.style-default {
    justify-content: center;
    text-align: center;
  }
  .banner-getstart.style-default .br-line {
    margin: auto;
  }
  .banner-getstart.style-default .banner-content {
    width: 100%;
  }
  .banner-getstart.style-default .box-btn {
    justify-content: center;
  }
  .page-title-home .content-left {
    width: 100%;
  }
  .page-title-home .slider-right {
    width: 100%;
    max-width: unset;
  }
  .page-title-home .slider-right .image img {
    max-height: 450px;
  }
  .contact-form-wrap .contact-list-wrap {
    flex-wrap: wrap;
    gap: 10px 0px;
  }
  .contact-form-wrap .contact-list-wrap > * {
    width: 50%;
  }
  .text-sm {
    font-size: 14px;
    line-height: 18px;
  }
  .display-md-2 {
    font-size: 24px;
    line-height: 28px;
  }
  h2,
  .h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .display-md,
  .display-md-3,
  .display-md-4 {
    font-size: 30px;
    line-height: 35px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  .text-md {
    font-size: 16px;
    line-height: 20px;
  }
  h1,
  .h1,
  .display-lg {
    font-size: 45px;
    line-height: 50px;
  }
  .h4,
  h4 {
    font-size: 18px;
    line-height: 24px;
  }
  h6,
  .h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .tf-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  br.br-col-md,
  .br-line.br-col-md {
    display: none;
  }
}
@media (max-width: 767px) {
  .s-our-field .slider-wrap {
    gap: 15px;
  }
  .slider-testimonial-2 {
    padding: 0px 15px !important;
  }
  .wg-partner {
    padding: 15px;
  }
  .s-contact.style-2 {
    padding: 15px;
  }
  .s-contact.style-2 .contact-form-wrap {
    padding: 15px;
  }
  .s-banner.style-default {
    padding: 60px 15px;
  }
  .wg-idea .image {
    width: 100%;
    max-height: 400px;
  }
  .s-banner-img-text .image {
    max-height: 400px;
  }
  .wg-new-release {
    flex-wrap: wrap;
    padding: 15px;
    gap: 30px 15px;
  }
  .wg-new-release .image {
    max-height: 350px;
    width: 100%;
  }
  .wg-new-release .content {
    padding: 15px;
    width: 100%;
  }
  .wg-pricing {
    padding: 15px;
  }
  .wg-pricing .content,
  .wg-pricing .benefit-wrap {
    gap: 15px;
  }
  .wg-event {
    padding: 15px;
  }
  .wg-event .content {
    gap: 15px;
  }
  .wg-event .image {
    max-height: 350px;
  }
  .jobs-list,
  .box-book {
    padding: 15px;
  }
  .wg-job {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
  }
  .wg-job .content {
    gap: 15px;
  }
  .wg-job .box-title {
    gap: 5px;
  }
  .s-why-us {
    padding: 15px;
  }
  .s-why-us .content {
    gap: 15px;
  }
  .s-why-us .box-title {
    gap: 7px;
  }
  .post-news-item {
    padding: 15px;
  }
  .post-news-item .image {
    max-height: 350px;
  }
  .wg-consulting {
    padding: 15px;
  }
  .wg-consulting .content {
    padding: 15px;
  }
  .accordion-exper {
    flex-wrap: wrap;
  }
  .accordion-exper .accordion-item {
    padding: 15px 40px 15px 15px;
  }
  .accordion-exper .accordion-item:not(.collapsed) .accordion-head {
    margin-bottom: 5px;
  }
  .accordion-exper .accordion-image-group {
    position: unset;
    max-width: unset;
  }
  .accordion-exper .accordion-image-group .image-wrap {
    gap: 15px;
  }
  .counter-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
  .counter-list .wg-counter {
    text-align: center;
    justify-content: center;
  }
  .counter-list .br-line {
    display: none;
  }
  .counter-list .number-count {
    justify-content: center;
  }
  .counter-list.style-2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .counter-list.style-2 .wg-counter {
    text-align: left;
    justify-content: start;
  }
  .counter-list.style-2 li:first-child {
    grid-column: 1/-1;
    width: 100%;
  }
  .counter-list.style-2 li:last-child {
    grid-column: unset;
  }
  .case-study-tab .widget-content-inner {
    padding: 15px;
    gap: 15px;
  }
  .case-study-tab .btn-case {
    padding: 15px;
  }
  .ft-body .ft-menu-list {
    gap: 15px;
  }
  .ft-body .footer-heading-mobile {
    margin-bottom: 10px;
  }
  .ft-body .footer-col-block {
    margin-bottom: 25px;
  }
  .ft-body .ft-inner {
    gap: 0px;
  }
  .ft-body .inner-bottom {
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
  }
  .ft-body .inner-bottom > * {
    width: 100%;
  }
  .ft-link-wrap {
    flex-wrap: wrap;
  }
  .ft-link-wrap > * {
    width: 100%;
  }
  .footer-heading-mobile {
    display: block;
    position: relative;
    padding-right: 20px;
  }
  .footer-heading-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-heading-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-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }
  .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }
  .footer-col-block .tf-collapse-content {
    display: none;
  }
  .text-xl {
    font-size: 20px;
    line-height: 24px;
  }
  .text-lg {
    font-size: 18px;
    line-height: 20px;
  }
  .text-md,
  .long-text,
  .text-sm-2 {
    font-size: 14px;
    line-height: 18px;
  }
  .long-text {
    font-size: 14px;
    line-height: 18px;
  }
  h1,
  .h1,
  .display-lg {
    font-size: 40px;
    line-height: 45px;
  }
  .form-search fieldset input {
    padding: 11px 15px;
  }
  .form-search .button-submit i {
    font-size: 16px;
  }
  .header-inner .nav-support {
    display: none;
  }
  br.br-col-sm,
  .br-line.br-col-sm {
    display: none;
  }
}
@media (max-width: 575px) {
  .wg-pricing {
    flex-wrap: wrap;
  }
  .counter-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-list li:last-child {
    grid-column: 1/-1;
  }
  .counter-list.style-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-page-single .content-wrap {
    padding: 15px;
  }
  .s-page-single .tf-grid-layout {
    row-gap: 15px;
    column-gap: 15px;
  }
  .tf-footer .box-achievement {
    justify-content: center;
    gap: 10px 20px;
    flex-wrap: wrap;
  }
  br.br-col-xs,
  .br-line.br-col-xs {
    display: none;
  }
  .contact-form-wrap .contact-list-wrap > * {
    width: 100%;
  }
  form .cols {
    flex-wrap: wrap;
  }
  h6,
  .h6 {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 424px) {
  .d-none-sx {
    display: none !important;
  }
  .header-right .nav-search {
    display: none;
  }
  br.br-col,
  .br-line.br-col {
    display: none;
  }
}
@media (max-width: 374px) {
  .s-land-feature .content {
    height: 300px;
  }
  .topbar-left {
    display: none;
  }
  .topbar-right {
    text-align: center;
    width: 100%;
  }
  .header-inner .nav-btn {
    display: none;
  }
  .header-inner .br-line {
    display: none;
  }
}

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

/* Additional CSS */
.swiper-slide .wg-testimonial.bg-primary a,
.swiper-slide .wg-testimonial.bg-primary p
{
  color: var(--bg) !important;
}
.swiper-slide .card-portfolio.bg-black a,
.swiper-slide .card-portfolio.bg-black .number,
.slide-task .task-marqee .bg-primary i,
.slide-task .task-marqee .bg-primary p
{
  color: var(--white) !important;
}
.swiper-slide .card-portfolio.bg-black a:hover
{
  color: var(--primary) !important;
}
.swiper-slide .card-work.bg-white p,
.swiper-slide .card-work.bg-main p
{
  color: var(--black) !important;
}
.swiper-slide .card-work.bg-primary a
{
  background-color: var(--white) !important;
}
.swiper-slide .card-work.bg-primary a i
{
  color: var(--primary) !important;
}
.form-container .checkbox-item .wpcf7-list-item {
  margin: 0px;
}
input[type=checkbox] {
  border-radius: 5px;
  width: 30px;
  height: 30px;
  background: var(--bg);
  border: 1px solid var(--line-3);
}
.form-email.form-newsletter .box-btn p{
  height: 100%;
}

.contact-form-wrap .form-container .checkbox-group .wpcf7-radio{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
}
.contact-form-wrap .form-container .checkbox-group .wpcf7-radio .wpcf7-list-item label,
.contact-form-wrap .form-container .app-grid .checkbox-item > p label
{
  margin-bottom: 0px;
}
.contact-form-wrap .form-container .checkbox-group .wpcf7-radio .wpcf7-list-item label input[type="radio"]
{
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    opacity: 0;
}
.contact-form-wrap .form-container .checkbox-group .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    position: relative;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 5px;
    width: max-content;
    color: var(--text);
    font-size: 13px;
    line-height: 9px;
	font-weight: 400;
    -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(--bg);
    border: 1px solid var(--line-3);
}
.contact-form-wrap .form-container .checkbox-group .wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked~.wpcf7-list-item-label {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}
.contact-form-wrap .form-container .checkbox-group .wpcf7-list-item,
.contact-form-wrap.style-2 .checkbox-item{
  margin: 0px;
}
.contact-form-wrap .wpcf7-checkbox .wpcf7-list-item-label{
  display: none;
}
.contact-form-wrap .form-container .app-grid .checkbox-item > p{
  display: flex;
  gap:12px;
  align-items: center;
}
.contact-form-wrap .form-container .app-grid .checkbox-item > p label{
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: var(--text) !important;
  padding: 0px;
}
input#pi_input{
  width: 100%;
  margin-bottom: 20px;
}

/*.tag-box {
  display: -webkit-box;
}*/
.tags {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.tag-box .tags li {
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid var(--line-2);
  padding: 10px 18px;
}
.tag-box .tags li a:hover {
  color: var(--primary) !important;
}
/* Blog Sidebar */
.blog-2-sidebar-wrap {
    max-width: 470px;
    width: 100%;
    flex: none;
}
.blog-2-sidebar-wrap .blog-2-sidebar-widget + .blog-2-sidebar-widget {
    margin-top: 40px;
}
.blog-2-sidebar-widget {
    background: var(--bg);
    border-radius: 5px;
    padding: 48px 48px 45px 30px;
}
.blog-2-sidebar-widget h3 {
    font-size: 20px;
    letter-spacing: -0.3px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.blog-2-sidebar-widget.categories-widget form input{
    border: none;
    background: #ffffff;
    padding: 15px;
    min-height: 60px;
}
.blog-2-sidebar-widget.categories-widget form button {
    position: absolute;
    right:5px;
    border-radius: 5px;
    width: auto !important;
    font-size: 14px;
    padding: 22px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--primary) !important;
    color: #ffffff !important;
}
.blog-2-sidebar-widget.categories-widget form input.search-submit{
    border-radius: 5px;
    background: var(--primary) !important;
    color: #ffffff !important;
}
.blog-2-sidebar-widget.categories-widget ul li {
    font-size: 20px;
    font-weight: 400;
}
.blog-2-sidebar-widget.categories-widget ul li + li {
    margin-top: 35px;
}
.blog-2-sidebar-widget.categories-widget ul li a {
    color: var(--black);
}
.blog-2-sidebar-widget.categories-widget ul li a:hover {
    color: var(--primary);
}
.blog-2-sidebar-widget .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-2-sidebar-widget .tagcloud a {
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid var(--line-2);
  padding: 10px 18px;
}
.topbar-left a i{
  font-size: 20px;
}
