@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  --main-color: #0d96d7;
  --white: #ffffff;
  --black: #000000;
  --secondary: #004aab;
  --on-surface: #121315;
  --color-text: #6C6E76;
  --color-text-2: #D9D9D9;
  --color-text-3: #595959;
  --color-text-4: #3F4254;
  --color-text-5: rgba(255, 255, 255, 0.7);
  --color-text-6: #0F0D1D;
  --color-text-7: #595959;
  --color-text-8: #1E2023;
  --color-text-9: #445375;
  --line: #E5E5E5;
  --line-2: hsla(216, 8%, 13%, 0.1);
  --line-3: #F3F4F7;
  --line-4: #E6E5E5;
  --line-5: rgba(255, 255, 255, 0.2);
  --line-6: #E3E3E3;
  --line-7: #D4DCED;
  --line-8: rgba(108, 110, 118, 0.3);
  --line-9: rgba(255, 255, 255, 0.3);
  --line-10: rgba(255, 255, 255, 0.1);
  --line-11: rgba(255, 255, 255, 0.5);
  --line-12: rgba(255, 255, 255, 0.4);
  --line-13: #ECF8FF;
  --line-14: #D4DCFF;
  --line-15: #FFFFFF26;
  --yelow: #F7921E;
  --blue: #1300F1;
  --green: #03CF0B;
  --red: #F10101;
  --yelow2: #F0A003;
  --brown: #A46810;
}

/*---------- Reset css styles ----------- */
title 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,
main,
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);
}

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: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--On-Surface);
  -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: 26px;
}

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: "Plus Jakarta Sans", sans-serif;
  color: var(--main-color);
  margin: 0;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-size: 72px;
  line-height: 90.72px;
}

h2,
.h2 {
     font-size:31px;
    line-height: 40.6px;
}

h3,
.h3 {
     font-size: 36px;
    line-height: 39.48px;
}

h4,
.h4 {
  font-size: 30px;
  line-height: 44px;
}

h5,
.h5 {
  font-size: 28px;
  line-height: 40px;
}

h6,
.h6 {
  font-size: 22px;
  line-height: 32px;
}

/* link style
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--main-color);
  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(--main-color);
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1200px;
  max-width: 100%;
}
.tf-container .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.tf-container .row > * {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.tf-container.full {
  width: 100vw;
}
.tf-container.w-1206 {
  width: 1206px;
}
.tf-container.w-1410 {
  width: 1410px;
}
.tf-container.w-1450 {
  width: 1450px;
}
.tf-container.w-1495 {
  width: 1495px;
}
.tf-container.w-1530 {
  width: 1530px;
}
.tf-container.w-1550 {
  width: 1550px;
}
.tf-container.w-1580 {
  width: 1580px;
}
.tf-container.w-1600 {
  width: 1600px;
}
.tf-container.w-1650 {
  width: 1650px;
}
.tf-container.w-1690 {
  width: 1690px;
}
.tf-container.w-1880 {
  width: 1880px;
}
.tf-container.w-1890 {
  width: 1890px;
}

/* Extra classes
-------------------------------------------------------------- */
.hidden {
  display: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed !important;
}

.position-unset {
  position: unset !important;
}

.z-5 {
  z-index: 5;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.body-2 {
  font-size: 16px;
  line-height: 28px;
}

.caption-1 {
  font-size: 14px !important;
  line-height: 16px !important;
}

.caption-2 {
  font-size: 12px !important;
  line-height: 14px !important;
}

.body-3 {
  font-size: 15px;
  line-height: 25.2px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right !important;
}

.rg-30 {
  row-gap: 30px;
}

.rg-60 {
  row-gap: 60px;
}

.rg-27 {
  row-gap: 27px;
}

.gap-10 {
  gap: 10px !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw6 {
  font-weight: 600 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fw8 {
  font-weight: 800 !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-21 {
  margin-bottom: 21px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-33 {
  margin-bottom: 33px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.mt-62 {
  margin-top: 62px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.overflow-x-auto {
  overflow-x: auto;
}

.fs-80 {
  font-size: 80px;
}

.lh-80 {
  line-height: 80px;
}

.fs-50 {
  font-size: 50px;
}

.gap-37 {
  gap: 37px !important;
}

/*------------ Components ---------------- */
/*------------ header ---------------- */
.top-bar {
  background-color: #004aab;
}
.top-bar .top-bar-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
}
.top-bar .top-bar-inner .tf-tb-right,
.top-bar .top-bar-inner .tf-tb-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}

.top-bar-content {
  color: var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 20px;
  border-right: 1px solid var(--line-12);
}
.top-bar-content i {
  font-size: 14px;
}
.top-bar-content:last-child {
  padding-right: 0;
  border-right: 0;
}


.tf-tb-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  align-items: center;
}
.tf-tb-social .text {
  color: var(--white);
}
.tf-tb-social .social a {
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-tb-social .social a :hover {
  color: var(--main-color);
}

.social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 13px;
}

.header.style-2 .item-link {
  line-height: 103px !important;
}
.header.style-2 .main-header-right {
  gap: 39px !important;
}
.header.style-2 .main-menu {
  margin-left: 0 !important;
}
.header.style-2 .nav-search a i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}
.header.style-2 .nav-search a:hover i {
  color: var(--main-color);
}
.header.style-3 {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--white);
}
.header.style-3 .header-inner {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
}
.header.style-3 .header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.style-3 .menu-primary-menu .item-link {
  color: #121213;
  -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;
  line-height: 77px;
}
.header.style-3 .menu-primary-menu .item-link span::before, .header.style-3 .menu-primary-menu .item-link span::after {
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.style-3 .menu-primary-menu .menu-item:hover .item-link {
  color: var(--main-color);
}
.header.style-3 .menu-primary-menu .menu-item:hover .item-link span::before, .header.style-3 .menu-primary-menu .menu-item:hover .item-link span::after {
  background-color: var(--main-color);
}
.logo img{height: 70px;}
.header.style-3 .nav-search a i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}

.header.style-3 .nav-search a:hover i {
  color: var(--main-color);
}
.header.style-3 .nav-cart i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.style-3 .nav-cart a:hover i {
  color: var(--main-color);
}
.header.style-3 .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header.style-3 .header-right .nav-icon {
  margin-right: 24px;
}
.header.style-3 .mega-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 17px;
  position: relative;
  margin-right: 14px;
}
.header.style-3 .mega-menu::before {
  content: "";
  background-color: var(--secondary);
  width: 1px;
  position: absolute;
  right: 0;
  height: 15.56px;
  top: 54%;
  transform: translateY(-50%);
}
.header.style-4 {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--white);
}
.header.style-4 .header-inner {
  position: relative;
}
.header.style-4 .header-inner .image {
  position: absolute;
  top: 0;
  z-index: -1;
}
.header.style-4 .header-inner .image.image-bg-header-1 {
  left: 0;
}
.header.style-4 .header-inner .image.image-bg-header-2 {
  right: 0;
}
.header.style-4 .header-inner .logo {
  position: relative;
}
.header.style-4 .header-inner .logo a {
  display: inline-block;
  width: 260px;
  height: 153.5px;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  z-index: 2;
  position: relative;
}
.header.style-4 .header-inner .logo a svg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header.style-4 .header-inner .logo .overlay {
  display: inline-block;
  width: 260px;
  height: 153.5px;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: -43px;
  opacity: 0.5;
  z-index: 1;
}
.header.style-4 .header-inner .nav-search a i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}
.header.style-4 .header-inner .nav-search a:hover i {
  color: var(--main-color);
}
.header.style-4 .header-inner .nav-cart i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.style-4 .header-inner .nav-cart a:hover i {
  color: var(--main-color);
}
.header.style-4 .header-inner .header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 120px;
  position: relative;
  justify-content: space-between;
}
.header.style-4 .header-inner .header-content .menu-primary-menu .item-link {
  color: var(--secondary);
  -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;
  line-height: 120px;
}
.header.style-4 .header-inner .header-content .menu-primary-menu .item-link span::before, .header.style-4 .header-inner .header-content .menu-primary-menu .item-link span::after {
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.style-4 .header-inner .header-content .menu-primary-menu .menu-item:hover .item-link {
  color: var(--main-color);
}
.header.style-4 .header-inner .header-content .menu-primary-menu .menu-item:hover .item-link span::before, .header.style-4 .header-inner .header-content .menu-primary-menu .menu-item:hover .item-link span::after {
  background-color: var(--main-color);
}
.header.style-4 .header-inner .header-content .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top {
  position: relative;
  overflow: hidden;
}
.header-top .image {
  position: absolute;
  top: 0;
}
.header-top .image.image-bg-header-1 {
  left: 0;
}
.header-top .image.image-bg-header-2 {
  right: 0;
}

.header-top-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.content-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.content-contact .icon {
  width: 63px;
  height: 63px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
}
.content-contact .icon::before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  background-color: var(--white);
  border-radius: 50%;
}
.content-contact .icon i {
  color: var(--main-color);
  position: relative;
  z-index: 1;
}
.content-contact .content .title {
  color: var(--secondary);
  text-transform: capitalize;
  margin-bottom: 6px;
}
.content-contact .content .body-3 {
  color: var(--secondary);
  font-weight: 700;
}

.main-header {
  background-color: var(--main-color);
}
.main-header .main-header-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .main-header-inner .main-header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-primary-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 51px;
}
.menu-primary-menu .menu-item {
  position: relative;
  cursor: pointer;
  padding-right: 12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.menu-primary-menu .menu-item:not(.menu-item-has-children) {
  padding-right: 0;
}
.menu-primary-menu .menu-item .item-link {
  display: inline-block;
  line-height: 89px;
  color: var(--white);
}
.menu-primary-menu .menu-item:hover .sub-menu,
.menu-primary-menu .menu-item:hover .sub-menu-2 {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: all;
}

.menu-item-has-children span {
  position: absolute;
  top: 50%;
  right: 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;
}
.menu-item-has-children span::after {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-item-has-children span::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-item-has-children-2 {
  position: relative;
}
.menu-item-has-children-2 .item-link-2 {
  width: 100%;
  position: relative;
}
.menu-item-has-children-2 .item-link-2::before {
  position: absolute;
  content: "\e90c";
  font-family: "icomoon";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-item-has-children-2 .item-link-2:hover::before {
  right: 7px;
}

.sub-menu {
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  left: -25px;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -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;
  pointer-events: none;
  padding: 16px 25px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0px 10px 25px rgba(43, 52, 74, 0.12);
}
.sub-menu .sub-menu-item a {
  display: inline-block;
  padding: 6px 0;
  color: var(--on-surface);
}
.sub-menu .sub-menu-item:first-child {
  padding-top: 0;
}
.sub-menu .sub-menu-item:last-child {
  padding-bottom: 0;
}
.sub-menu .sub-menu-item:hover a {
  color: var(--main-color);
}

.sub-menu-2 {
  position: absolute;
  background-color: var(--white);
  min-width: 244px;
  left: -25px;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -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;
  pointer-events: none;
  padding: 4px 0 4px 8px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0px 10px 25px rgba(43, 52, 74, 0.12);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.sub-menu-2 .sub-menu-item-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-menu-2 .sub-menu-item-2 i {
  font-size: 14px;
  margin-right: 24px;
}
.sub-menu-2 .sub-menu-item-2 .item-link-2 {
  position: relative;
    padding: 4px 0px;
    color: var(--on-surface);
    text-transform: capitalize;
    font-size: 15px;
}
.sub-menu-2 .sub-menu-item-2:hover .item-link-2 {
  color: var(--main-color);
}
.sub-menu-2 .sub-menu-item-2:hover .sub-menu-3 {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: -41%;
}

.sub-menu-3 {
  position: absolute;
  background-color: var(--white);
  min-width: 290px;
  max-width: max-content;
  left: 100%;
  top: 10%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 4px 21px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0px 10px 25px rgba(43, 52, 74, 0.12);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.sub-menu-3 li a {
  display: inline-block;
  padding: 2px 0;    font-size: 14px;
  color: var(--on-surface);text-transform: capitalize;
}
.logo-mobile img{height: 60px}
.sub-menu-3 li:hover a {
  color: var(--main-color);
}

.nav-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search a i {
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}
.nav-search a:hover i {
  color: var(--secondary);
}

.nav-cart i {
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}
.nav-cart a:hover i {
  color: var(--secondary);
}

.mobile-button {
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-wrap .inner-mobile-nav {
  padding:10px;
  max-width: 430px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 999999;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-nav-close {
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-nav-close svg {
  width: 15px;
  height: 15px;
}
.mobile-nav-wrap .inner-mobile-nav .top-header-mobi {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-wrap .inner-mobile-nav a {
  color: var(--on-surface);
}
.mobile-nav-wrap .mobile-nav-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-nav-wrap .socials-mobile .date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 10px;
}
.mobile-nav-wrap .socials-mobile .socials-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.mobile-nav-wrap .socials-mobile .socials-icon .socials-item {
  width: 40px;
  height: 40px;
  border: 1px solid var(--Line);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav-wrap .socials-mobile .socials-icon .socials-item a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-wrap .socials-mobile .socials-icon .socials-item:first-child, .mobile-nav-wrap .socials-mobile .socials-icon .socials-item:nth-child(2), .mobile-nav-wrap .socials-mobile .socials-icon .socials-item:nth-child(3), .mobile-nav-wrap .socials-mobile .socials-icon .socials-item:nth-child(4) {
  border-right: 0;
}
.mobile-nav-wrap .socials-mobile .socials-icon .socials-item:hover {
  background-color: var(--On-Surface);
  border-color: var(--On-Surface);
}
.mobile-nav-wrap .socials-mobile .socials-icon .socials-item:hover i {
  color: var(--White);
}

#menu-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
#menu-mobile > li {
  position: relative;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
#menu-mobile > li a {
  padding: 10px 0;
}
#menu-mobile > li .sub-menu-mobile {
  border-radius: 8px;
  text-align: start;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-bottom: 15px;
}
#menu-mobile > li .sub-menu-mobile .sub-menu-mobile2 a {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
#menu-mobile > li .sub-menu-mobile.show {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
#menu-mobile > li .sub-menu-mobile li {
  cursor: pointer;
}
#menu-mobile > li .sub-menu-mobile li a {
  padding: 5px 20px;
}
#menu-mobile > li .sub-menu-mobile li:last-child {
  border: none;
}
#menu-mobile li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  width: 100%;
  display: inline-block;
}
#menu-mobile li.menu-item-has-children-mobile > a {
  position: relative;
}
#menu-mobile li.menu-item-has-children-mobile > a::after {
  content: "\e901";
  position: absolute;
  font-family: "icomoon";
  font-weight: 300;
  position: absolute;
  font-size: 7px;
  right: 0;
  top: 39%;
  line-height: 16px;
  -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;
}
#menu-mobile li.menu-item-has-children-mobile > a.collapsed::after {
  transform: rotate(0deg);
}
#menu-mobile li.menu-item-has-children-mobile > a:not(.collapsed)::after {
  transform: rotate(180deg);
}
#menu-mobile li.menu-item-has-children-mobile2 > a {
  position: relative;
}
#menu-mobile li.menu-item-has-children-mobile2 > a::after {
  content: "\e901";
  position: absolute;
  font-family: "icomoon";
  font-weight: 300;
  font-size: 7px;
  right: 0;
  top: 25%;
  -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;
}
#menu-mobile li.menu-item-has-children-mobile2 > a.collapsed::after {
  transform: rotate(0deg);
}
#menu-mobile li.menu-item-has-children-mobile2 > a:not(.collapsed)::after {
  transform: rotate(180deg);
}
#menu-mobile .menu-item-has-children a {
  position: relative;
}
#menu-mobile .menu-item-has-children a:not(.collapsed) span {
  transform: rotate(180deg);
}
#menu-mobile .menu-item-has-children a:not(.collapsed) span::before {
  opacity: 0;
  visibility: hidden;
}
#menu-mobile .menu-item-has-children span {
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#menu-mobile .menu-item-has-children span::after {
  background-color: var(--on-surface);
}
#menu-mobile .menu-item-has-children span::before {
  background-color: var(--on-surface);
}

.icon-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-mobile .nav-search i {
  color: var(--secondary);
  font-size: 17px;
}
.icon-mobile .nav-cart i {
  color: var(--secondary);
  font-size: 17px;
}
.icon-mobile .mobile-button svg path {
  fill: var(--on-surface);
}

.contact-mobile .title-contact-mobile {
  font-weight: 800;
  color: var(--on-surface);
  padding-bottom: 20px;
}
.contact-mobile .content-contact-moblile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
}
.contact-mobile .content-contact-moblile i {
  color: var(--main-color);
}
.contact-mobile .content-contact-moblile a:hover {
  color: var(--main-color);
}
.contact-mobile .content-contact-moblile:last-child {
  padding-bottom: 0;
}

.tf-social-header-mobile {
  margin: 30px 0 0;
}
.tf-social-header-mobile .text {
  padding-bottom: 20px;
}

.current-menu-item > a {
  color: var(--main-color) !important;
}
.current-menu-item span::after, .current-menu-item span::before {
  background-color: var(--main-color) !important;
}
.current-menu-item.color-secondary > a {
  color: var(--secondary) !important;
}
.current-menu-item.color-secondary span::after, .current-menu-item.color-secondary span::before {
  background-color: var(--secondary) !important;
}

.current-item > a {
  color: var(--main-color) !important;
}

.header-inner-1 {
  display: none;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
}
.header-inner-1 .header-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner-1 .menu-primary-menu .item-link {
  color: var(--secondary);
  -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;
  line-height: 106px;
}
.header-inner-1 .menu-primary-menu .item-link span::before, .header-inner-1 .menu-primary-menu .item-link span::after {
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-inner-1 .menu-primary-menu .menu-item:hover .item-link {
  color: var(--main-color);
}
.header-inner-1 .menu-primary-menu .menu-item:hover .item-link span::before, .header-inner-1 .menu-primary-menu .menu-item:hover .item-link span::after {
  background-color: var(--main-color);
}
.header-inner-1 .nav-search a i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 17px;
}
.header-inner-1 .nav-search a:hover i {
  color: var(--main-color);
}
.header-inner-1 .nav-cart i {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-inner-1 .nav-cart a:hover i {
  color: var(--main-color);
}
.header-inner-1 .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header-inner-1 .header-right .nav-icon {
  margin-right: 24px;
}
.header-inner-1 .mega-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 17px;
  position: relative;
  margin-right: 14px;
}
.header-inner-1 .mega-menu::before {
  content: "";
  background-color: var(--secondary);
  width: 1px;
  position: absolute;
  right: 0;
  height: 15.56px;
  top: 54%;
  transform: translateY(-50%);
}

#header_main.is-fixed .header-inner {
  display: none;
}
#header_main.is-fixed .header-fix .header-inner-1 {
  display: block;
  position: fixed;
  padding: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  border: none;
  z-index: 1000;
  transform: translateY(-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;
}
#header_main.is-fixed.is-fixed.is-small .header-fix .header-inner-1 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  transform: translateY(0);
}

/*------------ footer ---------------- */
.footer {
  background-image: url(../image/section/bg-footer.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer .footer-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
      padding-top: 113px;
    padding-bottom: 20px;

}

.footer-left .logo-footer {
  margin-bottom: 22px;
}
.footer-left .text {
  color: var(--color-text-2);
  margin-bottom: 26px;
  line-height: 28px;
}
.footer-left .footer-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-left .footer-social .text {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}
.footer-left .footer-social .text::before {
  position: absolute;
  content: "";
  width: 20.02px;
  height: 1.5px;
  background-color: var(--color-text-2);
  top: 50%;
  left: 0;
}
.footer-left .footer-social .social li a {
  color: var(--color-text-2);
}
.footer-left .footer-social .social li a:hover {
  color: var(--main-color);
}

.footer-col-block.open .title i {
  transform: rotate(180deg);
}

.footer-content .title {
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 13px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-content .title i {
  font-size: 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;
  display: none;
}
.footer-content .title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1.5px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
}
.footer-content .title::after {
  content: "";
  position: absolute;
  width: 63px;
  height: 1.5px;
  background-color: var(--white);
  bottom: 0;
  left: 29px;
}
.footer-content .title.title-ig {
  margin-bottom: 22px;
}
.footer-content ul {
  padding-top: 25px;
}
.footer-content ul li {
  padding-bottom: 14px;
}
.footer-content ul li a {
  color: var(--color-text-2);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-content ul li i {
  font-size: 12px;
}
.footer-content ul li:last-child() {
  padding-bottom: 0;
}
.footer-content ul li:hover a {
  color: var(--main-color);
}
.footer-content ul li:hover a i {
  animation: hover-support-item-footer 0.8s infinite linear;
}

.list-img-ig {
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  display: grid;
  position: relative;
}
.list-img-ig .ig-item {
  position: relative;
}
.list-img-ig .ig-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-img-ig .ig-item .ig-content {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  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;
}
.list-img-ig .ig-item .ig-content i {
  color: var(--white);
}
.list-img-ig .ig-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--main-color);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list-img-ig .ig-item:hover .ig-content {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.list-img-ig .ig-item:hover::before {
  height: 100%;
}

.footer-bottom {
 text-align: center;
  padding-top: 22px;
  border-top: 1px solid var(--line-5);
  padding-bottom: 25px;
  
}
.footer-bottom .left .text {
  color: var(--color-text-2);
}
.footer-bottom .right ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom .right ul li a {
  color: var(--color-text-2);
}
.footer-bottom .right ul li a:hover {
  color: var(--main-color);
}

/*------------ tabs ---------------- */
.wg-tab {
  position: relative;
  max-width: 1146.46px;
  margin: 0 auto;
}
.wg-tab ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  gap: 25px;
  position: relative;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.wg-tab ul::before {
  width: 8.2px;
  height: 8.2px;
  background-color: var(--main-color);
  content: "";
  position: absolute;
  left: 2px;
  bottom: -5px;
  transform: rotate(45deg);
}
.wg-tab ul::after {
  width: 8.2px;
  height: 8.2px;
  background-color: var(--main-color);
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  transform: rotate(45deg);
}
.wg-tab ul li a {
  display: inline-block;
  color: var(--secondary);
  padding: 0 10px 14px;
  position: relative;
}
.wg-tab ul li a::before {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  height: 2px;
  width: 0;
  bottom: 0;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-tab ul li a.active {
  color: var(--main-color);
}
.wg-tab ul li a.active::before {
  left: 0;
  right: auto;
  width: 100%;
}
.wg-tab ul li:hover a {
  color: var(--main-color);
}
.wg-tab ul li:hover a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.wg-tab.style-2 {
  max-width: max-content;
}
.wg-tab.style-2 ul {
  gap: 10px;
  border-bottom: 0;
  margin-bottom: 0;
}
.wg-tab.style-2 ul::after, .wg-tab.style-2 ul::before {
  display: none;
}
.wg-tab.style-2 ul a {
  padding: 13px 25px;
  background-color: var(--white);
  border-top: 1px solid var(--main-color);
}
.wg-tab.style-2 ul a::before {
  display: none;
}
.wg-tab.style-2 ul li:hover a {
  background-color: var(--main-color);
  color: var(--white);
}
.wg-tab.color-white {
  background-color: var(--secondary);
}
.wg-tab.color-white a {
  color: var(--white);
}
.wg-tab.w-576 {
  width: 576px;
}

.flat-animate-tab {
  overflow: hidden;
}
.flat-animate-tab .tab-content {
  margin-top: 49px;
}

.tab-content {
  position: relative;
}
.tab-content .tab-pane {
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}
.tab-content .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}
.about-content p{padding-bottom: 10px}
/*------------ button ---------------- */
.tf-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: max-content;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}
.tf-btn span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 21px;
  -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;
  text-transform: capitalize;
}
.tf-btn.bg-color-line-3 {
  background-color: var(--line-3);
  color: var(--color-text-6);
  padding: 10px 25px;
  border: 1px solid var(--line);
}
.tf-btn.bg-color-white {
  background-color: var(--white);
  padding: 15px 25px;
  color: var(--secondary);
}
.tf-btn.bg-main-color {
  background-color: var(--main-color);
  padding: 12px 14px;
}
.tf-btn.bg-main-color span {
  color: var(--white);
}
.tf-btn.bg-main-color i {
  color: var(--white);
}
.tf-btn.style-arrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.tf-btn.style-arrow i {
  font-size: 24px;
  z-index: 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;
}
.tf-btn.style-arrow.style-2 i {
  font-size: 15px;
}
.tf-btn.style-arrow:hover i {
  animation: hover-btn-arrow 0.3s linear;
  color: var(--white);
}
.tf-btn.style-border {
  border: 1px solid var(--main-color);
  padding: 16.5px 25px;
  color: var(--main-color);
  width: 100%;
  text-align: center;
  border-radius: 8px;
}
.tf-btn.style-border i {
  font-size: 15px;
}
.tf-btn.style-border span {
  color: var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}
.tf-btn.style-border:hover {
  border-color: var(--secondary);
}
.tf-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
.tf-btn:hover span {
  color: var(--white);
}
.tf-btn:hover::before {
  left: 0;
}
.tf-btn.bg-color-secondary {
  background-color: var(--secondary);
  padding: 15px 25px;
}
.tf-btn.bg-color-secondary::before {
  background-color: var(--main-color);
}
.tf-btn.bg-color-secondary span {
  color: var(--white);
}
.tf-btn.w-full {
  width: 100%;
}

.tf-btn-default {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}
.tf-btn-default:hover {
  color: var(--main-color);
}
.tf-btn-default:hover i {
  animation: hover-btn-arrow 0.4s linear;
}

.tf-btn-search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: var(--white);
}
.tf-btn-search i {
  font-size: 20px;
}
.tf-btn-search.style-2 {
  background-color: transparent;
  color: var(--main-color);
}

.tf-btn-reply {
  background-color: var(--main-color);
  color: var(--white);
  padding: 7px 14px 7px 17px;
  border-radius: 999px;
}
.tf-btn-reply:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.tf-btn-arrow-up-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--main-color);
}
.tf-btn-arrow-up-right i {
  transform: rotate(-45deg);
  font-weight: 600;
  -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-arrow-up-right:hover i {
  transform: rotate(0deg);
}

.wg-billing-details .billing-details-content {
  width: 100%;
}

.fillter-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--secondary);
  opacity: 0;
  visibility: hidden;
}

/*------------ range slider ---------------- */
/*range-slider
    ---------------------*/
.range-slider .range-two-val {
  height: 7px;
  box-shadow: none;
  border: 0;
  background-color: var(--line);
  border: 1px solid var(--main-color);
}
.range-slider .range-two-val .noUi-connects .noUi-connect {
  background-color: var(--main-color);
}
.range-slider .range-two-val .noUi-origin .noUi-handle {
  cursor: pointer;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--white);
  border: 5px solid var(--main-color);
  box-shadow: none;
  top: -6px;
  right: -9px;
}
.range-slider .range-two-val .noUi-origin .noUi-handle::after, .range-slider .range-two-val .noUi-origin .noUi-handle::before {
  display: none;
}
.range-slider .range-two-val .noUi-origin .noUi-handle:active {
  right: -10px !important;
}
.range-slider .bottom {
  margin-top: 21px;
}
.range-slider .value {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
}
.range-slider .value .price-max,
.range-slider .value .price-min {
  border: 1px solid var(--Line);
  padding: 6px 12px;
  border-radius: 8px;
  width: 100%;
  position: relative;
}
.range-slider .value > div {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--color-text);
}
.range-slider .input-container div {
  position: absolute;
  width: max-content;
  padding: 5px;
  margin: 0;
  border: 1px solid var(--Line);
  border-radius: 5px;
  top: 20%;
  background-color: var(--White);
}
.range-slider .input-container div::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid var(--Line);
  border-top-color: transparent;
  border-top-color: var(--White);
}

.noUi-handle-lower {
  display: none;
}

/*------------ 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] {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  border: unset;
  overflow: hidden;
  margin-bottom: 0;
  outline: none;
}
form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text);
}
form textarea.style-default,
form input[type=text].style-default,
form input[type=password].style-default,
form input[type=datetime].style-default,
form input[type=datetime-local].style-default,
form input[type=date].style-default,
form input[type=month].style-default,
form input[type=time].style-default,
form input[type=week].style-default,
form input[type=number].style-default,
form input[type=email].style-default,
form input[type=url].style-default,
form input[type=search].style-default,
form input[type=tel].style-default,
form input[type=color].style-default {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background-color: transparent;
}
form input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}
form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 112px;
}
form textarea.h-204 {
  height: 204px;
}

fieldset {
  width: 100%;
}

.cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}

.form-contact {
  border-top: 7px solid var(--main-color);
  background-color: var(--white);
  padding: 40px 60px 52px;
}
.form-contact input[type=text],
.form-contact input[type=email],
.form-contact input[type=date],
.form-contact textarea {
  background-color: var(--line-3);
  padding: 15px 20px;
  font-size: 14px;
  line-height: 24px;
}
.form-contact input[type=text]::placeholder,
.form-contact input[type=email]::placeholder,
.form-contact input[type=date]::placeholder,
.form-contact textarea::placeholder {
  color: var(--color-text);
  font-size: 14px;
  line-height: 24px;
}
.form-contact textarea {
  height: 110px;
}
.form-contact .nice-select {
  background-color: var(--line-3);
}
.form-contact .nice-select .current {
  font-size: 14px;
  line-height: 24px;
}
.form-contact .title-contact {
  color: var(--secondary);
  padding-bottom: 18px;
}
.form-contact .cols {
  padding-bottom: 12px;
  gap: 20px;
}
.form-contact .cols:last-child {
  padding-bottom: 0;
}
.form-contact .form-contact-item {
  width: 100%;
}
.form-contact .form-contact-item .title {
  padding-bottom: 8px;
  color: var(--secondary);
  text-transform: capitalize;
}
.form-contact .btn-submit {
  margin-top: 18px;
  padding: 17px 73px;
}

.form-call-now-CTA {
  padding-right: 40px;
  border: 0;
  width: 100%;
  max-width: 673px;
}
.form-call-now-CTA .tf-btn {
  padding: 20px 25px;
}
.form-call-now-CTA .cols {
  margin-bottom: 20px;
  gap: 21px;
}
.form-call-now-CTA .cols:last-child {
  margin-bottom: 0;
}
.form-call-now-CTA input[type=text],
.form-call-now-CTA input[type=email] {
  padding: 18px 23px;
  border: 1px solid var(--line);
  background-color: var(--white);
}

.check-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}

input[type=checkbox] {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  overflow: visible;
}
input[type=checkbox]:checked::before {
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
input[type=checkbox]::before {
  content: "\e930";
  position: absolute;
  font-size: 10px;
  color: var(--white);
  font-family: "icomoon";
  opacity: 0;
}

.form-write-review textarea {
  background-color: var(--line-3);
  border-bottom: 1px solid transparent;
  font-size: 14px;
  line-height: 14px;
  padding: 20px;
  height: 144px;
}
.form-write-review textarea::placeholder {
  font-size: 14px;
  line-height: 14px;
}
.form-write-review textarea:focus {
  background-color: var(--white);
  border-color: var(--line);
}
.form-write-review input[type=text],
.form-write-review input[type=email] {
  padding: 14px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 14px;
}
.form-write-review input[type=text]::placeholder,
.form-write-review input[type=email]::placeholder {
  font-size: 14px;
  line-height: 14px;
}
.form-write-review input[type=text]:focus,
.form-write-review input[type=email]:focus {
  background-color: var(--white);
}
.form-write-review .tf-btn {
  padding: 17px 24px;
}
.form-write-review .tf-btn i {
  font-size: 15px;
}

.radio-btn {
  position: relative;
  border: 1px solid var(--color-text);
  border-radius: 50% !important;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-btn::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-btn:checked {
  border: 1px solid var(--main-color);
  font-weight: 700;
}
.radio-btn:checked::before {
  background-color: var(--main-color);
}
.radio-btn.style-2 {
  border: none;
}
.radio-btn.style-2:checked {
  background-color: rgba(243, 93, 34, 0.1019607843);
}
.radio-btn.style-2:checked::before {
  background-color: var(--main-color);
}

.date-input {
  display: inline-block;
  position: relative;
}
.date-input::before {
  content: "\e90a";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--main-color);
  font-size: 20px;
}

.form-login {
  padding: 50px 65px;
  flex: 1 1 50%;
}
.form-login .title-login {
  color: var(--secondary);
  margin-bottom: 45px;
  font-size: 40px;
  line-height: 50px;
  text-transform: capitalize;
}
.form-login .login-checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.form-login .login-checkbox .check-box {
  flex: 1 1 50%;
}
.form-login input[type=email],
.form-login input[type=password] {
  padding: 20px 0 !important;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.form-login input[type=email]::placeholder,
.form-login input[type=password]::placeholder {
  text-transform: capitalize;
}
.form-login input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form-login .bg-main-color {
  margin-bottom: 12px;
}

/*------------ slider ---------------- */
.slider-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slider-arrow i {
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background-color: var(--white);
}
.slider-arrow:hover i {
  color: var(--main-color);
}
.slider-arrow.style-2 {
  border-color: var(--main-color);
}
.slider-arrow.style-2 i {
  color: var(--main-color);
}
.slider-arrow.style-2:hover {
  background-color: var(--main-color);
}
.slider-arrow.style-2:hover i {
  color: var(--white);
}
.slider-arrow.style-3 {
  border-color: var(--white);
}
.slider-arrow.style-3 i {
  color: var(--white);
}
.slider-arrow.style-3:hover {
  background-color: var(--white);
}
.slider-arrow.style-3:hover i {
  color: var(--main-color);
}

.arrow-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-arrow {
  position: absolute;
  transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-page-title-home-1 {
  position: relative;
}
.slider-page-title-home-1 .swiper-arrow {
  top: 31%;
  left: 40px;
  opacity: 0;
  transform: translateX(-10px);
  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-page-title-home-1:hover .swiper-arrow {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slider-page-title-home-2 {
  position: relative;
}
.slider-page-title-home-2 .swiper-arrow {
  top: 50%;
  right: 34px;
  z-index: 2;
}

.slider-page-title-home-3 {
  position: relative;
}
.slider-page-title-home-3 .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  border-color: var(--main-color);
}
.slider-page-title-home-3 .slider-arrow i {
  color: var(--main-color);
}
.slider-page-title-home-3 .slider-arrow.swiper-next {
  right: 0;
}
.slider-page-title-home-3 .slider-arrow.swiper-prev {
  left: 0;
}
.slider-page-title-home-3:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
}
.slider-page-title-home-3:hover .slider-arrow.swiper-next {
  right: 50px;
}
.slider-page-title-home-3:hover .slider-arrow.swiper-prev {
  left: 50px;
}

.slider-page-title-home .swiper-slide-active .fade-item-1 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.6s;
}
.slider-page-title-home .swiper-slide-active .fade-item-2 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s;
}
.slider-page-title-home .swiper-slide-active .fade-item-3 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
}

.swiper-project {
  position: relative;
}
.swiper-project .swiper-slide {
  width: max-content;
}

.swiper-team .swiper-slide-active .team-item.style-3 .social-item {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) !important;
}
.swiper-team .swiper-slide-active .team-item.style-3 .item-bg {
  opacity: 1;
}

.testimonial-slider-3 {
  padding: 15px;
  margin: -15px;
}

.swiper-button-disabled {
  pointer-events: none;
  position: relative;
}
.swiper-button-disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.5;
  border-radius: 50%;
}

/*------------ off canvas ---------------- */
.offcanvas-search {
  --bs-offcanvas-height: max-content;
  background-color: var(--white);
  padding: 40px 0;
  overflow-y: auto;
}
.offcanvas-search .btn-close-login {
  background-color: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
}
.offcanvas-search .wg-box-search .title-search {
  font-weight: 600;
  color: var(--On-Surface);
  padding-bottom: 16px;
}
.offcanvas-search .wg-box-search .form-search {
  padding-bottom: 40px;
}
.offcanvas-search .wg-box-search .form-search .input-search {
  margin-bottom: 16px;
  position: relative;
}
.offcanvas-search .wg-box-search .form-search .input-search .tf-btn {
  position: absolute;
  top: 8px;
  right: 8px;
}
.offcanvas-search .wg-box-search .form-search ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.offcanvas-search .search-content .heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--Line);
}
.offcanvas-search .search-content .heading h5 {
  font-weight: 600;
  color: var(--On-Surface);
}
.offcanvas-search .search-content .search-list-article {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.offcanvasMegamenu {
  background-color: var(--white);
  max-width: 420px;
  --bs-offcanvas-height: max-content;
  overflow-y: auto;
  padding: 20px;
}
.offcanvasMegamenu .btn-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  overflow: visible;
}
.offcanvasMegamenu .heading {
  margin-bottom: 30px;
  position: relative;
}
.offcanvasMegamenu .title-contact {
  color: var(--secondary);
  margin-bottom: 30px;
}
.offcanvasMegamenu .contact-offcanvas-megamenu {
  margin-bottom: 30px;
}
.offcanvasMegamenu .contact-offcanvas-megamenu .contact-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.offcanvasMegamenu .contact-offcanvas-megamenu .contact-item:last-child {
  margin-bottom: 0;
}
.offcanvasMegamenu .contact-offcanvas-megamenu .contact-item .icon i {
  color: var(--main-color);
}
.offcanvasMegamenu .contact-offcanvas-megamenu .contact-item .text a {
  color: var(--secondary);
}
.offcanvasMegamenu .contact-offcanvas-megamenu .contact-item .text a:hover {
  color: var(--main-color);
}
.offcanvasMegamenu .tf-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  align-items: center;
}
.offcanvasMegamenu .tf-social .social li a {
  color: var(--secondary);
  padding: 10px;
  border: 1px solid var(--line);
}
.offcanvasMegamenu .tf-social .social li a:hover {
  color: var(--white);
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}

.offcanvas-backdrop {
  cursor: url(../image/icon/cursor-close.svg), auto;
}

.modalCenter {
  width: 100vw !important;
  padding-right: 0 !important;
}
.modalCenter .modal-dialog {
  max-width: 1165px;
}

.offcanvasLogin {
  height: 100vh !important;
  max-width: 1165px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background-color: transparent;
}
.offcanvasLogin.show {
  top: 20%;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 9999 !important;
}

.offcanvasRegister {
  height: 100vh !important;
  max-width: 1165px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background-color: transparent;
}
.offcanvasRegister.show {
  top: 100px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 9999 !important;
}

.offcanvasFillter {
  padding: 15px;
  overflow-y: auto;
}
.offcanvasFillter .header-popup {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.offcanvasFillter .title {
  color: var(--secondary);
}

/*------------ product ---------------- */
/*------------ blog ---------------- */
.tf-post-grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-post-grid .tf-post-grid-content {
  padding: 30px 30px 24px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.tf-post-grid .tf-post-grid-content .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  margin-bottom: 15px;
  width: 100%;
}
.tf-post-grid .tf-post-grid-content .title {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 11px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.tf-post-grid .tf-post-grid-content .title:hover {
  color: var(--main-color);
}
.tf-post-grid.desc {
  padding: 30px;
  border: 1px solid var(--line-6);
  margin-bottom: 30px;
}
.tf-post-grid.desc .image {
  border-radius: 8px;
  margin-bottom: 33px;
}
.tf-post-grid.desc .date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}
.tf-post-grid.desc .tf-post-grid-content {
  padding: 0;
  box-shadow: unset;
}
.tf-post-grid.desc .title {
  margin-bottom: 6px;
}
.tf-post-grid.desc .text-desc {
  margin-bottom: 23px;
  line-height: 28px;
  color: var(--color-text-3);
}
.tf-post-grid.desc .tf-btn span {
  font-size: 14px;
  line-height: 25px;
}
.tf-post-grid.desc:last-child {
  margin-bottom: 0;
}
.tf-post-grid.style-2 {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  padding: 14px 16px 0;
}
.tf-post-grid.style-2 .image {
  position: relative;
}
.tf-post-grid.style-2 .image .date {
  position: absolute;
  top: 16px;
  left: 16px;
}
.tf-post-grid.style-2 .tf-post-grid-content {
  padding: 24px 14px;
  box-shadow: none;
}
.tf-post-grid.style-2 .tf-post-grid-content .top {
  margin-bottom: 0 !important;
}
.tf-post-grid.style-2 .tf-post-grid-content .title {
  margin-bottom: 12px;
}
.tf-post-grid.style-3 {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  padding: 14px 16px 0;
}
.tf-post-grid.style-3 .image {
  position: relative;
}
.tf-post-grid.style-3 .image .date {
  position: absolute;
  top: 16px;
  left: 16px;
}
.tf-post-grid.style-3 .top {
  margin-bottom: 22px;
}
.tf-post-grid.style-3 .tf-post-grid-content {
  position: relative;
  padding: 0 14px 23px;
  margin-top: -22px;
  box-shadow: none;
  z-index: 2;
}
.tf-post-grid.style-3 .tf-post-grid-content .title {
  margin-bottom: 11px;
}
.tf-post-grid.style-absolute {
  position: relative;
}
.tf-post-grid.style-absolute::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 25, 76, 0) 0%, #00194C 100%);
}
.tf-post-grid.style-absolute .top {
  margin-bottom: 12px;
}
.tf-post-grid.style-absolute .date {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 4;
}
.tf-post-grid.style-absolute .tf-post-grid-content {
  padding: 0;
  position: absolute;
  bottom: 31px;
  left: 40px;
  right: 40px;
  z-index: 4;
}
.tf-post-grid.style-absolute .tf-post-grid-content .title,
.tf-post-grid.style-absolute .tf-post-grid-content .text-desc {
  color: var(--white);
}
.tf-post-grid.style-absolute .tf-post-grid-content .title {
  font-size: 28px;
  line-height: 40px;
}
.tf-post-grid.style-absolute .tf-post-grid-content .text a {
  color: var(--white);
}
.tf-post-grid.style-absolute .tf-post-grid-content .meta {
  padding-bottom: 0;
}

.meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px 26px;
  padding-bottom: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.meta .text a {
  color: var(--secondary);
}
.meta .text a:hover {
  color: var(--main-color);
}
.meta .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  align-items: center;
}
.meta .content .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta .content i {
  color: var(--main-color);
  font-size: 20px;
}
.meta.style-2 {
  justify-content: center;
  gap: 12px;
  align-items: center;
  background-image: url(../image/section/bg-meta.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 12px 0;
}
.meta.style-2 .content {
  padding-right: 12px;
  border-right: 1px solid var(--line-11);
}
.meta.style-2 .content:last-child {
  padding-right: 0;
  border-right: none;
}
.meta.style-2 .content i {
  color: var(--white);
}
.meta.style-2 .content .text a {
  color: var(--white);
}

.date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--main-color);
  min-width: 59px;
  min-height: 61px;
  gap: 3px;
}
.date span {
  color: var(--white);
}
.date .day {
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
}
.date:hover {
  background-color: var(--secondary);
}

.wg-pagination {
  padding-top: 60px;
}
.wg-pagination ul {
  gap: 9px;
}
.wg-pagination ul a,
.wg-pagination ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--line-3);
  cursor: pointer;
  color: #504E4E;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}
.wg-pagination ul a:hover,
.wg-pagination ul li:hover {
  background: var(--main-color);
  color: var(--white);
}
.wg-pagination ul a.active,
.wg-pagination ul li.active {
  background: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.wg-pagination.style-2 a,
.wg-pagination.style-2 li {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 6px;
  font-size: 12px;
  line-height: 16px;
}
.wg-pagination.style-2 a.style-boder,
.wg-pagination.style-2 li.style-boder {
  border: 1px solid var(--line);
  padding: 12px 16px;
  width: auto;
  height: auto;
}
.wg-pagination.style-2 a:hover,
.wg-pagination.style-2 li:hover {
  border-color: var(--main-color);
}
.wg-pagination.style-2 a.active,
.wg-pagination.style-2 li.active {
  border: 1px solid var(--main-color);
}

.sidebar-content {
  padding: 30px 30px 41px;
  background-color: var(--line-3);
  margin-bottom: 30px;
}
.sidebar-content .title {
  color: var(--secondary);
  font-weight: 700;
  position: relative;
  padding-bottom: 9px;
  margin-bottom: 23px;
}
.sidebar-content .title::before {
  content: "";
  position: absolute;
  height: 1.5px;
  background-color: var(--secondary);
  width: 19px;
  left: 0;
  bottom: 0;
}
.sidebar-content .title::after {
  content: "";
  height: 1.5px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  width: 63px;
  left: 26px;
}
.sidebar-content.search {
  margin-bottom: 28px;
}
.sidebar-content.search input[type=text] {
  padding: 21px 20px 23px;
  width: 100%;
  border: none;
  background-color: var(--white);
  outline: none;
}
.sidebar-content.search input[type=text]::-webkit-input-placeholder {
  color: var(--color-text);
}
.sidebar-content.search fieldset {
  position: relative;
}
.sidebar-content.search fieldset .tf-btn-search {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 58px;
}
.sidebar-content.categories .categories-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-content.categories .categories-list a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background-color: var(--white);
  color: var(--secondary);
}
.sidebar-content.categories .categories-list a:hover {
  color: var(--white);
  background-color: var(--main-color);
}
.sidebar-content.resent-post {
  padding-bottom: 38px;
}

.tf-post-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-4);
  margin-bottom: 20px;
}
.tf-post-list .tf-post-list-content {
  width: calc(100% - 85px);
}
.tf-post-list .calendar {
  color: var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  padding-top: 5px;
}
.tf-post-list .calendar i {
  font-size: 20px;
}
.tf-post-list .name {
  line-height: 24px;
}
.tf-post-list .name a {
  font-weight: 700;
  color: var(--on-surface);
}
.tf-post-list .name a:hover {
  color: var(--main-color);
}
.tf-post-list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.tags-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-list .tabs-item {
  padding: 12px 16px;
  background-color: var(--white);
  color: var(--on-surface);
}
.tags-list .tabs-item:hover {
  color: var(--white);
  background-color: var(--main-color);
}

.contact.style-2 {
  padding: 35px 50px;
  background: var(--main-color);
  border-radius: 20px;
  justify-content: space-between;
  gap: 10px !important;
  margin-bottom: -68px;
  position: relative;
  z-index: 2;
}
.contact.style-2 .content .title {
  color: var(--white);
  font-weight: 500;
}
.contact.style-2 .content a {
  color: var(--white);
  font-weight: 500;
}
.contact.style-2 .office-email {
  padding-left: 0px;
}
.contact.style-2 .content-contact .icon {
  border-color: var(--line-15);
}

.link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.blog-details-content {
  padding-bottom: 39px;
}
.blog-details-content .image-blog-datails {
  position: relative;
}
.blog-details-content .image-blog-datails .image {
  margin-bottom: 40px;
}
.blog-details-content .image-blog-datails .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-content .image-blog-datails .date {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-details-content .image-blog-datails .meta {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-7);
  margin-bottom: 9px;
}
.blog-details-content .image-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 31px;
}
.blog-details-content .image-list .image-blog-datails .image {
  margin-bottom: 0;
}
.blog-details-content .title {
  color: var(--secondary);
  margin-bottom: 10px;
}
.blog-details-content .content-details {
  padding-bottom: 32px;
}
.blog-details-content .content-details p {
  color: var(--color-text);
  padding-bottom: 15px;
  line-height: 28px;
}
.blog-details-content .content-details p:last-child {
  padding-bottom: 0;
}
.blog-details-content .wg-quote {
  margin-bottom: 33px;
}

.wg-quote {
  padding: 29px 36px;
  background-color: var(--line-3);
  border-left: 4px solid var(--main-color);
  position: relative;
}
.wg-quote p {
  color: var(--secondary);
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.wg-quote .icon {
  position: absolute;
  right: 40px;
  bottom: 23px;
}

.tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-4);
  border-top: 1px solid var(--line-4);
  gap: 15px;
  flex-wrap: wrap;
}
.tag .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag .left .tabs-item {
  border: 1px solid var(--line-4);
  padding: 10px 16px;
}
.tag .tags-list {
  gap: 8px;
}
.tag .text {
  color: var(--secondary);
}
.tag .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.tag .right ul a i {
  color: var(--secondary);
}
.tag .right ul a:hover i {
  color: var(--main-color);
}
.tag .right .social {
  gap: 17px;
}

.comment-content .title-wg-comment {
  font-size: 24px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 30px;
}
.comment-content .title-wg-comment.color-on-surface {
  color: var(--on-surface);
}
.comment-content .title-wg-comment.color-secondary {
  color: var(--secondary);
}

.comment-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-4);
}
.comment-item .image {
  overflow: hidden;
  position: relative;
}
.comment-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.comment-item .comment-item-content {
  max-width: calc(100% - 116px);
}
.comment-item .comment-item-content .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  margin-top: -5px;
  flex-wrap: wrap;
  gap: 10px;
}
.comment-item .comment-item-content .top .info .name {
  color: var(--secondary);
  display: inline-block;
  line-height: 22px;
}
.comment-item .comment-item-content .top .info .name:hover {
  color: var(--main-color);
}
.comment-item .comment-item-content .top .info .time {
  color: var(--color-text);
}
.comment-item .comment-item-content .bottom p {
  color: var(--color-text);
  line-height: 28px;
}
.comment-item .comment-item-content .tf-btn-reply {
  margin-top: 9px;
}
.comment-item.style-2 {
  padding-bottom: 32px;
  margin-bottom: 30px;
}
.comment-item.style-2 .comment-item-content {
  padding-top: 18px;
}
.comment-item.style-2 .comment-item-content .top {
  margin-top: 0;
  margin-bottom: 26px;
}
.comment-item.style-2 .comment-item-content .name {
  padding-bottom: 10px;
}
.comment-item.style-2 .comment-item-content .bottom p {
  line-height: 30px;
}
.comment-item.style-2:last-child {
  padding-bottom: 23px;
  margin-bottom: 0;
}

.write-review fieldset .title-input {
  color: var(--secondary);
  font-weight: 500;
  padding-bottom: 7px;
}
.write-review fieldset textarea,
.write-review fieldset input[type=text],
.write-review fieldset input[type=email] {
  border: 1px solid var(--line-7);
  padding: 14px 19px;
}
.write-review fieldset textarea::placeholder,
.write-review fieldset input[type=text]::placeholder,
.write-review fieldset input[type=email]::placeholder {
  color: var(--color-text);
}
.write-review fieldset textarea {
  height: 200px;
}
.write-review .bottom-btn {
  padding-top: 30px;
}
.write-review .bottom-btn .tf-btn {
  padding: 17px 24px;
}

/*------------ testimonial ---------------- */
.testimonial-item .text {
 color: #000;
    text-align: justify;
  padding-bottom: 22px;
  font-style: italic;
  line-height: 28px !important;
}
.testimonial-item .line {
  width: 100%;
  height: 1px;
  background-color: var(--color-text-2);
  position: relative;
  margin-bottom: 24px;
}
.testimonial-item .line::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: var(--main-color);
}
.testimonial-item .testimonial-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-item .testimonial-content .info a {
  color: var(--secondary);
  letter-spacing: -0.4px;
}
.testimonial-item .testimonial-content .info a:hover {
  color: var(--main-color);
}
.testimonial-item .testimonial-content .info p {
  color: var(--color-text);
}
.testimonial-item .rating {
  padding-top: 20px;
  padding-right: 3px;
}
.testimonial-item .rating i {
  color: var(--main-color);
}
.testimonial-item.style-2 {
  background-color: var(--white);
  padding: 32px 30px 40px 40px;
  position: relative;
}
.testimonial-item.style-2 .image-item {
  position: absolute;
  bottom: 14px;
  left: 14px;
}
.testimonial-item.style-2 .text {
  font-style: normal;
  line-height: 26px !important;
  padding-bottom: 24px;
}
.testimonial-item.style-2 .testimonial-content .bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.testimonial-item.style-2 .testimonial-content .bottom .image {
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-item.style-2 .testimonial-content .bottom .info {
  padding-top: 5px;
}
.testimonial-item.style-2 .testimonial-content .bottom .name {
  padding-bottom: 7px;
  display: inline-block;
}
.testimonial-item.style-2 .testimonial-content .bottom .sub-title {
  padding-bottom: 14px;
}
.testimonial-item.style-2 .testimonial-content .bottom .rating {
  padding: 0;
}
.testimonial-item.style-2 .testimonial-content .bottom .rating i {
  font-size: 18px;
  margin-right: -1px;
}
.testimonial-item.style-2 .testimonial-content .image-brand {
  margin-top: 15px;
}
.testimonial-item.style-3 {
  background-color: var(--white);
  padding: 22px 30px 30px;
}
.testimonial-item.style-3 .rating {
  padding-bottom: 25px;
}
.testimonial-item.style-3 .rating i {
  color: var(--yelow);
}
.testimonial-item.style-3 .text {
  padding-bottom: 27px;
}
.testimonial-item.style-3 .testimonial-content {
  align-items: end;
}
.testimonial-item.style-3 .testimonial-content .bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-item.style-3 .testimonial-content .bottom .image {
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--main-color);
  position: relative;
  max-width: 68px;
}
.testimonial-item.style-3 .testimonial-content .bottom .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item.style-3 .testimonial-content .bottom .name {
  padding-bottom: 0;
}
.testimonial-item.style-3 .testimonial-content .bottom .sub-title {
  padding-bottom: 0;
}
.testimonial-item.style-3 .testimonial-content .bottom-icon {
  padding: 4px 10px;
}
.testimonial-item.style-3 .testimonial-content .bottom-icon i {
  font-size: 37px;
  color: var(--main-color);
}
.testimonial-item.style-4 {
  background-color: var(--white);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  padding: 38px 30px 38px 30px;
  border-radius: 16px;
}
.testimonial-item.style-4 .rating {
  padding-top: 0;
  padding-right: 0;
}
.testimonial-item.style-4 .rating i {
  color: var(--yelow);
  font-size: 17px;
}
.testimonial-item.style-4 .testimonial-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
}
.testimonial-item.style-4 .top-icon i {
  font-size: 22.5px;
  color: var(--main-color);
}
.testimonial-item.style-4 .testimonial-content {
  justify-content: start;
  gap: 12px;
}
.testimonial-item.style-4 .testimonial-content .image {
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--main-color);
  position: relative;
}
.testimonial-item.style-4 .testimonial-content .name {
  padding-bottom: 5px;
  display: inline-block;
}
.testimonial-item.style-4 .text {
  padding-bottom: 30px;
}

.testimonial-pagination {
  margin-top: 24px;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-text-2);
  border-radius: 0;
  opacity: 1;
  margin-right: 12px !important;
}
.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------ accordion ---------------- */
.according-item {
  background-color: var(--white);
  margin-bottom: 10px;
  padding: 20px 30px;
  border: 1px solid var(--color-text);
}
.according-item .title-according {
  display: inline-block;
  line-height: 40px;
  color: var(--color-text-6);
  position: relative;
  width: 100%;
}
.according-item .title-according::before {
  content: "\e907";
  font-family: "icomoon";
  position: absolute;
  right: 4px;
  font-size: 13px;
  -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;
}
.according-item .title-according:not(.collapsed) {
  color: var(--main-color);
}
.according-item .title-according:not(.collapsed)::before {
  transform: rotate(90deg);
}
.according-item .title-according:hover {
  color: var(--main-color);
}
.according-item p {
  color: var(--color-text-9);
  line-height: 28px;
}
.according-item.style-border-line {
  border-color: var(--line);
  padding: 19px 30px;
}
.according-item:last-child {
  margin-bottom: 0;
}

/*------------ shop ---------------- */
.product-item {
  border: 1px solid var(--line);
}
.product-item .image {
  margin-bottom: 30px;
  position: relative;
}
.product-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item .product-item-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 30px;
  padding-left: 34px;
  padding-right: 30px;
}
.product-item .product-item-content .rating {
  margin-bottom: 16px;
}
.product-item .product-item-content .rating i {
  color: var(--yelow);
  font-size: 13px;
}
.product-item .product-item-content .name-product {
  color: var(--secondary);
  margin-bottom: 9px;
}
.product-item .product-item-content .price {
  color: var(--color-text);
  margin-bottom: 15px;
}
.product-item .product-item-content .tf-btn {
  padding: 6px 16px;
}
.product-item .product-item-content .tf-btn span {
  text-transform: uppercase;
}
.product-item .product-item-content .tf-btn i {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--line-5);
}
.product-item.style-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  gap: 48px;
  margin-bottom: 30px;
  padding: 11px 16px 7px 16px;
}
.product-item.style-list .image {
  background-color: var(--line-3);
  max-width: 270px;
  width: 100%;
  flex: 1 1 auto;
  margin-bottom: 0;
}
.product-item.style-list .product-item-content {
  align-items: start;
  padding: 0;
  flex: 1 1 auto;
  padding-top: 15px;
}
.product-item.style-list .product-item-content .name-product {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30.24px;
}
.product-item.style-list .product-item-content .rating {
  margin-bottom: 17px;
}
.product-item.style-list .product-item-content .desc {
  margin-bottom: 17px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  text-transform: lowercase;
}
.product-item.style-list .product-item-content .price {
  margin-bottom: 26px;
}
.product-item.style-list:last-child {
  margin-bottom: 0;
}

.wg-products-details .tf-product-info-choose-option {
  margin-top: -7px;
}
.wg-products-details .tf-product-info-choose-option .top-product-info {
  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;
  margin-bottom: 27px;
}
.wg-products-details .tf-product-info-choose-option .top-product-info .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary);
}
.wg-products-details .tf-product-info-choose-option .rating {
  gap: 8px;
}
.wg-products-details .tf-product-info-choose-option .rating i {
  color: var(--yelow);
}
.wg-products-details .tf-product-info-choose-option .rating .text {
  color: var(--color-text);
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-wrap {
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-desc p {
  color: var(--color-text);
  margin-bottom: 30px;
  line-height: 30px;
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-btn .tf-btn {
  padding: 14px 16px;
  min-width: 193px;
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-btn .tf-btn span {
  text-transform: uppercase;
  font-size: 15px;
  text-align: left;
}
.wg-products-details .tf-product-info-choose-option .tf-product-info-btn .tf-btn i {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--line-5);
}
.wg-products-details .tf-product-info-quanlity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.wg-products-details .tf-product-info-quanlity .title-quanlity {
  color: var(--secondary);
}
.wg-products-details .tf-product-info-socail {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 17px;
  flex-wrap: wrap;
}
.wg-products-details .tf-product-info-socail .text {
  text-transform: uppercase;
  color: var(--color-text);
}
.wg-products-details .tf-product-info-socail .social li a {
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-products-details .tf-product-info-socail .social li a i {
  color: var(--color-text);
}
.wg-products-details .tf-product-info-socail .social li a:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.wg-products-details .tf-product-info-socail .social li a:hover i {
  color: var(--white);
}

.wg-quanlity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  width: min-content;
}
.wg-quanlity .quanlity-product {
  color: var(--secondary);
}
.wg-quanlity .btn-wg-quanlity .btn-quanlity {
  color: var(--color-text);
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 12px;
  line-height: 24px;
}
.wg-quanlity input {
  width: 62px !important;
  padding: 0 !important;
  text-align: center;
  border: none;
}

/*------------ map ---------------- */
#map {
  max-width: 100%;
  height: 566px;
}
#map .marker {
  cursor: pointer;
}
#map .marker::before {
  content: "\e92b";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "icomoon";
  color: var(--main-color);
  font-size: 40px;
}

.mapboxgl-ctrl-attrib a,
.mapboxgl-ctrl-attrib.mapboxgl-compact,
a.mapboxgl-ctrl-logo {
  display: none !important;
}

/*------------ nice-select ---------------- */
.nice-select {
  border: unset !important;
  position: relative;
  padding: 15px 20px !important;
}
.nice-select::before {
  content: "\e91d";
  font-family: "icomoon";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  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;
  color: var(--main-color);
}
.nice-select::after {
  display: none;
}
.nice-select > span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text);
}
.nice-select > .list {
  margin-top: 10px;
  border-radius: 16px;
  max-height: unset;
  max-width: 300px;
  min-width: 150px;
  border: unset !important;
  top: 110%;
  border: 1px solid var(--Line);
  box-shadow: 0px 5px 18px 5px rgba(64, 72, 87, 0.1490196078);
}
.nice-select > .list .option {
  height: 41px;
  padding: 0 15px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 41px;
  color: var(--secondary);
  position: relative;
}
.nice-select > .list .option.selected {
  color: var(--secondary);
  font-weight: 400;
}
.nice-select.open {
  z-index: 50;
}
.nice-select.open::before {
  transform: translateY(-50%) rotate(180deg);
}
.nice-select.default {
  padding: 0;
  padding-right: 18px;
  border: 0 !important;
}
.nice-select.default::after {
  right: 0;
  top: 44%;
  right: 2px;
}
.nice-select.default ul.list {
  width: 220px;
  right: 0;
  left: unset;
}
.nice-select.border {
  border: 1px solid var(--line) !important;
  padding: 11px 0 11px 16px !important;
  border-radius: 8px !important;
}
.nice-select.border span {
  color: var(--color-text);
}
.nice-select.border.open .list {
  top: 100% !important;
}

/*------------ animation ---------------- */
@keyframes hover-btn-arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  25% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
  50% {
    width: 200%;
    height: 200%;
    opacity: 0.5;
  }
  100% {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
}
@keyframes glow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes rotare {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tf-fade-top {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tf-fade-left {
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tf-fade-right {
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tf-fade-bottom-left {
  transform: translate(10px, -10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tf-fade-top-right {
  transform: translate(-10px, -10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tf-animate-1 {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-1.active-animate {
  clip-path: inset(0 0 0 0);
  animation-delay: 0.5s;
}
.tf-animate-1.transition-1s {
  -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-2 {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-2.active-animate {
  clip-path: inset(0 0 0 0);
  animation-delay: 0.7s;
}

.tf-animate-3 {
  clip-path: inset(100% 0 0 0);
  -webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-3.active-animate {
  clip-path: inset(0 0 0 0);
  animation-delay: 0.5s;
}

.tf-animate-4 {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-4.active-animate {
  clip-path: inset(0 0 0 0);
  animation-delay: 0.5s;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(3deg);
  }
  80% {
    transform: rotate(-3deg);
  }
  90% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes l3 {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes hover-support-item-footer {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes tranform-x-item {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes tranform-y-item {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*------------ widgets ---------------- */
.wg-video {
  background-image: url(../image/section/wg-video-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  position: relative;
}
.wg-video .popup-youtube {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  height: 84px;
  width: 84px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--main-color);
}
.wg-video .popup-youtube .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.wg-video .popup-youtube i {
  font-size: 30px;
  color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-video .popup-youtube:hover {
  background-color: var(--main-color);
}
.wg-video .popup-youtube:hover i {
  color: var(--white);
}
.wg-video .popup-youtube:hover .wave {
  animation-play-state: paused;
}
.wg-video .wave {
  width: 150px;
  height: 150px;
  background-color: transparent;
  border: 1px solid var(--white);
}
.wg-video.style-small {
  background-image: unset;
  background-color: var(--white);
  width: 276px;
  height: 235px;
  border-radius: 16px;
}
.wg-video.style-small .popup-youtube {
  height: 47.12px;
  width: 47.12px;
}
.wg-video.style-small .popup-youtube i {
  font-size: 20px;
}
.wg-video.style-small::before {
  background-image: url(../image/section/wg-video-small.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  bottom: 7px;
  right: 7px;
  border-radius: 8px;
}
.wg-video.style-2 {
  background-image: url(../image/section/wg-video-3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0% 50%);
}
.wg-video.style-3 {
  background-image: url(../image/section/wg-video-4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 292px;
}
.wg-video.style-3.h-361 {
  height: 361px;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: ripple 2s infinite;
}
.wave:nth-child(2) {
  animation-delay: 0.5s;
}
.wave:nth-child(3) {
  animation-delay: 1s;
}

.services-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.services-list.grid-5 {
  flex-wrap: wrap;
}
.services-list.grid-5 .services-item {
  flex: 1 1 20%;
}
.services-list.grid-4 {
  flex-wrap: wrap;
}
.services-list.grid-4 .services-item {
  flex: 1 1 25%;
  max-width: 25%;
}

.services-item {
  position: relative;
  z-index: 5;
}
.services-item .image {
  position: relative;
}
.services-item .image img {
  width: 100%;
      height: 300px;
  object-fit: cover;
}
.services-item .services-icon {
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  z-index: 4;
}
.services-item .services-icon i {
  font-size: 40px;
}
.services-item .services-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.services-item .services-content {
  z-index: 4;
}
.services-item .services-content .name-services {
  color: var(--secondary);
  font-weight: 700;
  padding-bottom: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;    text-transform: capitalize;
}
.services-item .services-content .name-services:hover {
  color: var(--main-color);
}
.services-item .services-content .sub-heading {
  color: var(--color-text-4);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.services-item.style-absolute .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--line-3);
  opacity: 0.9;
  -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;
}
.services-item.style-absolute .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--secondary);
  opacity: 0.6;
  -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;
}
.services-item.style-absolute .services-icon {
  position: absolute;
  top: 35px;
  right: 25px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: unset;
}
.services-item.style-absolute .services-icon::before {
  background-color: var(--main-color);
}
.services-item.style-absolute .services-icon i {
  color: var(--main-color);
}
.services-item.style-absolute .number-services {
  position: absolute;
  top: 35px;
  left: 36px;
  font-weight: 700;
  font-size: 50px;
  line-height: 45px;
}
.services-item.style-absolute .services-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
}
.services-item.style-absolute .services-content .services-btn {
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-8);
  -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;
}
.services-item.style-absolute:hover .services-icon i {
  color: var(--white);
}
.services-item.style-absolute:hover .services-icon::before {
  background-color: var(--white);
}
.services-item.style-absolute:hover .number-services {
  -webkit-text-stroke: 1px var(--white);
  opacity: 0.8;
}
.services-item.style-absolute:hover .services-content .name-services {
  color: var(--white);
}
.services-item.style-absolute:hover .services-content .name-services:hover {
  color: var(--main-color);
}
.services-item.style-absolute:hover .services-content .sub-heading {
  color: var(--white);
}
.services-item.style-absolute:hover .services-content .services-btn {
  border-color: var(--line-9);
}
.services-item.style-absolute:hover .services-content .services-btn .tf-btn-arrow-up-right {
  color: var(--white);
}
.services-item.style-absolute:hover .image::before {
  width: 0;
}
.services-item.style-absolute:hover .image::after {
  width: 100%;
}
.services-item.style-2 {
  border: 1px solid var(--line);
}
.services-item.style-2 .image {
  margin: 12px 12px 0;
}
.services-item.style-2 .services-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 23px;
  padding: 0 30px 27px;
  background-color: var(--white);
}
.services-item.style-2 .services-icon {
  background-color: var(--main-color);
  padding: 14px;
  position: relative;
}
.services-item.style-2 .services-icon::before {
  left: 15px;
  right: 15px;
  background-color: var(--white);
}
.services-item.style-2 .services-icon i {
  color: var(--white);
  font-size: 40px;
}
.services-item.style-2 .services-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-top: 20px;
}
.services-item.style-2 .services-content h6 {
  line-height: 26px !important;
}
.services-item.style-2 .services-content .name-services {
  padding-bottom: 0;
}
.services-item.style-2 .services-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--line-3);
  padding: 15px 30px;
  position: relative;
  z-index: 2;
}
.services-item.style-2 .services-bottom .number-services {
  font-weight: 700;
  font-size: 30px;
  line-height: 26px;
}
.services-item.style-2 .services-bottom .tf-btn-arrow-up-right {
  color: var(--color-text);
}
.services-item.style-2:hover .services-icon::before {
  left: 0;
  right: 0;
}
.services-item.style-2:hover .arrow-container .arrow {
  animation: glow 1.5s infinite;
}
.services-item.style-2:hover .arrow-container .arrow:nth-child(1) {
  animation-delay: 0s;
}
.services-item.style-2:hover .arrow-container .arrow:nth-child(2) {
  animation-delay: 0.5s;
}
.services-item.style-2:hover .arrow-container .arrow:nth-child(3) {
  animation-delay: 1s;
}
.services-item.style-2:hover .arrow-container .arrow:nth-child(4) {
  animation-delay: 1.5s;
}
.services-item.style-2:hover .number-services {
  -webkit-text-stroke: 1px var(--main-color);
}
.services-item.style-2:hover .tf-btn-arrow-up-right {
  color: var(--main-color);
}
.services-item.style-3 {
  background-color: var(--line-3);margin: 0 0 24px;
}
.services-item.style-3 .image {
  margin: 12px 12px 0;
}
.services-item.style-3 .services-content {
  position: relative;
  margin-top: 22px;
  padding: 11px 30px 25px;
}
.services-item.style-3 h6 {
  line-height: 26px;
}
.services-item.style-3 .services-icon {
  background-color: var(--white);
  position: absolute;
  top: -57px;
  left: 30px;
}
.services-item.style-3 .services-icon::before {
  background-color: var(--main-color);
  left: 15px;
  right: 15px;
}
.services-item.style-3 .services-icon i {
  color: var(--main-color);
}
.services-item.style-3 .number-services {
  position: absolute;
  top: 0;
  right: 30px;
  font-weight: 700;
  font-size: 50px;
  line-height: 45px;
}
.services-item.style-3 .services-btn {
  margin-top: 15px;
  padding-top:8px;
  border-top: 1px solid var(--line-8);
  -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;
}
.services-item.style-3 .services-btn .tf-btn-arrow-up-right {
  color: var(--color-text);
}
.services-item.style-3:hover .services-icon::before {
  left: 0;
  right: 0;
}
.services-item.style-3:hover .number-services {
  -webkit-text-stroke: 1px var(--main-color);
}
.services-item.style-3:hover .tf-btn-arrow-up-right {
  color: var(--main-color);
}
.services-item.no-image {
  padding: 80px 36px 62px 30px;
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 1px solid var(--line-10);
}
.services-item.no-image:last-child {
  border-right: 1px solid var(--line-10);
}
.services-item.no-image .services-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 23px;
  position: relative;
  z-index: 4;
}
.services-item.no-image .services-icon {
  background-color: var(--main-color);
  position: relative;
}
.services-item.no-image .services-icon::before {
  left: 15px;
  right: 15px;
  background-color: var(--white);
}
.services-item.no-image .services-icon i {
  color: var(--white);
}
.services-item.no-image .services-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.services-item.no-image .services-content h6 {
  line-height: 26px;
}
.services-item.no-image .services-content .name-services {
  padding-bottom: 0;
  color: var(--white);
}
.services-item.no-image .services-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 44px;
  position: relative;
  z-index: 5;
}
.services-item.no-image .services-bottom .number-services {
  font-weight: 700;
  font-size: 30px;
  line-height: 26px;
  -webkit-text-stroke: 1px var(--white);
  opacity: 1;
}
.services-item.no-image .services-bottom .tf-btn-arrow-up-right {
  color: var(--white);
  padding-top: 7px;
}
.services-item.no-image .services-bottom .tf-btn-arrow-up-right i {
  font-size: 38px;
  font-weight: 400;
}
.services-item.no-image .arrow-container {
  margin-top: 0;
}
.services-item.no-image::before {
  content: "";
  background-image: url(../image/services-item-img/bg-hover-services-item.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.services-item.no-image:hover {
  background-color: var(--main-color);
}
.services-item.no-image:hover .services-icon {
  background-color: var(--white);
}
.services-item.no-image:hover .services-icon::before {
  background-color: var(--main-color);
}
.services-item.no-image:hover .services-icon i {
  color: var(--main-color);
}
.services-item.no-image:hover::before {
  visibility: visible;
  opacity: 0.5;
}
.services-item.no-image:hover .arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-item.no-image:hover .arrow-container .arrow {
  animation: glow 1.5s infinite;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.services-item.no-image:hover .arrow-container .arrow:nth-child(1) {
  animation-delay: 0s;
}
.services-item.no-image:hover .arrow-container .arrow:nth-child(2) {
  animation-delay: 0.5s;
}
.services-item.no-image:hover .arrow-container .arrow:nth-child(3) {
  animation-delay: 1s;
}
.services-item.no-image:hover .arrow-container .arrow:nth-child(4) {
  animation-delay: 1.5s;
}
.services-item.style-5 {
  background-color: var(--white);
}
.services-item.style-5 .services-content {
  position: relative;
  margin-top: 23px;
  padding: 32px 30px 30px;
  background-color: var(--white);
}
.services-item.style-5 .services-icon {
  background-image: url(../image/services-item-img/bg-icon-sevices-item.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -70px;
  left: 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  width: 94px;
  height: 94px;
}
.services-item.style-5 .services-icon::before {
  display: none;
}
.services-item.style-5 .services-icon i {
  color: var(--white);
}
.services-item.style-5 .name-services {
  padding-bottom: 10px;
}
.services-item.style-5 .number-services {
  position: absolute;
  top: 0;
  right: 30px;
  font-weight: 700;
  font-size: 50px;
  line-height: 45px;
}
.services-item.style-5 .services-btn {
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-8);
  -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;
}
.services-item.style-5 .services-btn .tf-btn-arrow-up-right {
  color: var(--color-text);
}
.services-item.style-5:hover .number-services {
  -webkit-text-stroke: 1px var(--main-color);
  opacity: 1;
}
.services-item.style-5:hover .tf-btn-arrow-up-right {
  color: var(--main-color);
}

.number-services {
  color: transparent;
  -webkit-text-stroke: 1px var(--secondary);
  font-weight: bold;
  opacity: 0.4;
  -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;
  z-index: 4;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}
.arrow-container .arrow {
  width: 20px;
  height: 20px;
  border-left: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(-45deg);
  margin-bottom: -7px;
  opacity: 0.3;
  -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;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.team-item {
  position: relative;
}
.team-item .image {
  position: relative;
  z-index: 1;
}
.team-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.team-item .team-content {
  position: relative;
}
.team-item .info {
  text-align: center;
  position: relative;
}
.team-item .info .name {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.team-item .info .name:hover {
  color: var(--main-color);
}
.team-item .info .position {
  color: var(--color-text);
  position: relative;
  z-index: 2;
}
.team-item .team-social {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.team-item:hover .social-item {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) !important;
}
.team-item.style-1 .team-content {
  position: relative;
  margin-top: -37px;
  padding: 35px 0px 21px 10px;
}
.team-item.style-1 .team-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/team-item/bg-team-info.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.team-item.style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.team-item.style-2 .image {
  max-width: 310px;
  position: relative;
}
.team-item.style-2 .image img {
  border-radius: 40%;
  border-bottom-left-radius: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.team-item.style-2 .image::before {
  content: "";
  background-color: var(--secondary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: -10px;
  z-index: 1;
  border-radius: 40%;
  border-bottom-left-radius: 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;
}
.team-item.style-2 .team-content {
  padding: 82px 0 0;
  background-color: var(--line-3);
  width: 100%;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  margin-top: -100px;
}
.team-item.style-2 .team-content .team-social {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  z-index: 3;
}
.team-item.style-2 .team-content .info {
  padding: 23px 0;
  clip-path: none;
  background-color: transparent;
  box-shadow: none;
}
.team-item.style-2:hover .image::before {
  background-color: var(--main-color);
}
.team-item.style-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.team-item.style-3 .item-bg {
  position: absolute;
  width: 95px;
  height: 244px;
  background-color: var(--main-color);
  opacity: 0.3;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  top: 33%;
  -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;
  z-index: -1;
}
.team-item.style-3 .item-bg.item-1 {
  transform: rotateY(180deg);
  left: -20px;
}
.team-item.style-3 .item-bg.item-2 {
  right: -20px;
}
.team-item.style-3 .image {
  max-width: 330px;
}
.team-item.style-3 .team-content {
  background-color: transparent;
  width: 100%;
  margin-top: -30px;
}
.team-item.style-3 .team-content .team-social {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  z-index: 3;
}
.team-item.style-3 .team-content .info {
  padding: 22px 0 30px;
  clip-path: none;
  background-color: transparent;
  box-shadow: none;
}
.team-item.style-3 .team-content .info .name {
  color: var(--white);
}
.team-item.style-3 .team-content .info .name:hover {
  color: var(--main-color);
}
.team-item.style-3 .team-content .info .position {
  color: var(--white);
}
.team-item.style-3:hover .item-bg {
  opacity: 1;
}

.team-social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.team-social ul .social-item {
  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;
}
.team-social ul .social-item:first-child {
  transform: translateX(30%);
  -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;
}
.team-social ul .social-item:last-child {
  transform: translateX(-30%);
  -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;
}
.team-social ul .social-item a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--white);
  box-shadow: 0px 4px 25px 0px rgba(19, 76, 179, 0.1490196078);
  -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;
}
.team-social ul .social-item a i {
  color: var(--secondary);
  -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;
}
.team-social ul .social-item a:hover {
  background-color: var(--main-color);
}
.team-social ul .social-item a:hover i {
  color: var(--white);
}
.team-social ul .social-item.share {
  opacity: 1;
  visibility: visible;
}
.team-social ul .social-item.share a {
  background-color: var(--main-color);
  box-shadow: none;
}
.team-social ul .social-item.share a i {
  color: var(--white);
}

.wg-counter {
  padding: 60px 64px 60px;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 40px;
}
.wg-counter.style-2 {
  background-color: var(--white);
  padding: 0;
  gap: 15px 83px;
}
.wg-counter.style-2 .counter-item {
  padding: 0;
}
.wg-counter.column {
  flex-direction: column;
  gap: 0 !important;
  background-color: transparent;
  padding: 0;
}
.wg-counter .odometer .odometer-digit {
  vertical-align: unset !important;
}

.counter-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}
.counter-item .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-item .icon i {
  font-size: 60px;
  color: var(--white);
}
.counter-item .number-counter {
  position: relative;
  width: max-content;
  padding-right: 24px;
}
.counter-item .number-counter span {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif !important;
  width: max-content;
}
.counter-item .number-counter .plus {
  position: absolute;
  bottom: 11px;
  right: -4px;
}
.counter-item p {
  color: var(--white);
}
.counter-item.bg-color-white {
  background-color: var(--white);
  padding: 18px 22px 20px 22px;
  gap: 16px;
}
.counter-item.bg-color-white .number-counter {
  padding-right: 10px;
}
.counter-item.bg-color-white span {
  color: var(--secondary);
  font-size: 28px;
  margin-bottom: 2px;
}
.counter-item.bg-color-white .icon i {
  color: var(--main-color);
  font-size: 40px;
}
.counter-item.bg-color-white .icon svg path {
  fill: var(--main-color);
}
.counter-item.bg-color-white .text {
  color: var(--color-text);
}
.counter-item.bg-color-white.style-2 {
  gap: 24px;
}
.counter-item.bg-color-white.style-2 .icon i {
  font-size: 60px;
}
.counter-item.bg-color-white.style-2 span {
  color: var(--secondary);
  font-size: 36px;
  margin-bottom: 0;
}
.counter-item.bg-color-white.style-2 .number-counter {
  padding-right: 24px;
}
.counter-item.boder-left {
  border-left: 2px solid var(--main-color);
  border-radius: 8px;
}
.counter-item.style-3 {
  flex-direction: column;
  align-items: center;
}
.counter-item.style-3 .icon {
  width: 98px;
  height: 98px;
  background-color: var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.counter-item.style-3 .icon i {
  color: var(--main-color);
  -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;
}
.counter-item.style-3 .counter {
  background-color: var(--white);
  width: 100%;
  text-align: center;
  padding: 70px 0 23px;
  margin-top: -70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.counter-item.style-3 span {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
}
.counter-item.style-3 p {
  color: var(--color-text);
}
.counter-item.style-3:hover .icon {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.counter-item.style-3:hover .icon i {
  color: var(--white);
  animation: bounceIn 1s linear;
}
.counter-item.style-3:hover .icon svg {
  animation: bounceIn 1s linear;
}
.counter-item.style-3:hover .icon svg path {
  fill: var(--white);
}
.counter-item.style-4 {
  padding: 22px 20px 22px 30px;
  width: 240px;
  gap: 16px;
}
.counter-item.style-4 .icon i {
  font-size: 40px;
}
.counter-item.style-4 .number-counter span {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.counter-item.style-4 .number-counter .plus {
  position: absolute;
  bottom: 1px;
  right: 5px;
}
.counter-item.style-4 p {
  color: var(--white);
}
.counter-item.bg-color-main {
  background-color: var(--main-color);
}
.counter-item.bg-secondary {
  background-color: var(--secondary);
}

.pricing-card-items {
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pricing-card-items .pricing-card-header {
  padding: 30px 0 85px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background-color: var(--main-color);
}
.pricing-card-items .pricing-card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/section/bg-pricing-card-items-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
}
.pricing-card-items .pricing-card-header::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  right: 0;
  bottom: 46px;
  background-color: var(--white);
  clip-path: path("M 0 65 Q 57 56 65 0 L 65 65 Z");
}
.pricing-card-items .pricing-card-header .btn-top {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.pricing-card-items .pricing-card-header .btn-top .tf-btn {
  border-radius: 8px;
  min-width: 176px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.pricing-card-items .pricing-card-header .btn-top .tf-btn::before {
  border-radius: 5px;
}
.pricing-card-items .pricing-card-header .btn-top .tf-btn span {
  color: var(--black);
}
.pricing-card-items .pricing-card-header .btn-top .tf-btn:hover span {
  color: var(--white);
}
.pricing-card-items .pricing-card-header .price {
  position: relative;
  font-size: 40px;
  line-height: 47px;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}
.pricing-card-items .pricing-card-header p {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.pricing-card-items .pricing-card-content {
  padding: 28px 40px 30px;
  margin-top: -47px;
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-top-left-radius: 63px;
}
.pricing-card-items .pricing-bottom .tf-btn {
  justify-content: center;
}
.pricing-card-items .price-list {
  padding-bottom: 34px;
}
.pricing-card-items .price-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  padding-bottom: 12px;
  text-transform: capitalize;
}
.pricing-card-items .price-list li i {
  color: var(--main-color);
}
.pricing-card-items .price-list li:last-child {
  padding-bottom: 0;
}
.pricing-card-items.active .pricing-card-header {
  background-color: var(--secondary);
}
.pricing-card-items.active .tf-btn.style-border {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.pricing-card-items.active .tf-btn.style-border span {
  color: var(--white);
}
.pricing-card-items.active .tf-btn.style-border:hover {
  border-color: var(--main-color);
}
.pricing-card-items.active .tf-btn.style-border:hover::before {
  background-color: var(--main-color);
}
.pricing-card-items.active .tf-btn.bg-color-white:hover::before {
  background-color: var(--main-color);
}
.pricing-card-items.most-popular {
  overflow: hidden;
}
.pricing-card-items.most-popular::before {
  content: "Most popular";
  position: absolute;
  top: 25px;
  right: -30px;
  background-color: var(--main-color);
  z-index: 2;
  font-size: 12px;
  color: var(--white);
  padding: 0 31px;
  transform: rotate(45deg);
}
.pricing-card-items.style-2 .item-1 {
  width: 312px;
  height: 179px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background-color: var(--secondary);
}
.pricing-card-items.style-2 .item-1::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 281px;
  height: 161px;
  background-color: var(--main-color);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.pricing-card-items.style-2 .item-1::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 281px;
  height: 161px;
  background-image: url(../image/section/bg-pricing-card-item2.png);
  mix-blend-mode: screen;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.pricing-card-items.style-2 .item-1 .text {
  position: absolute;
  left: 5px;
  width: 100%;
  top: 30px;
  background-color: var(--white);
  color: var(--secondary);
  padding: 10px 29px;
  z-index: 2;
}
.pricing-card-items.style-2 .pricing-card-header {
  background-color: unset;
  padding: 0;
  align-items: flex-start;
}
.pricing-card-items.style-2 .pricing-card-header::after, .pricing-card-items.style-2 .pricing-card-header::before {
  display: none;
}
.pricing-card-items.style-2 .pricing-card-header .price {
  color: var(--secondary);
  position: absolute;
  bottom: 6px;
  right: 69px;
}
.pricing-card-items.style-2 .pricing-card-header .price p {
  color: var(--secondary);
}
.pricing-card-items.style-2 .pricing-card-content {
  margin-top: 21px;
  padding-top: 0;
}
.pricing-card-items.style-3 {
  padding: 0 40px 28px;
}
.pricing-card-items.style-3 .pricing-card-header {
  background-color: unset;
  padding: 30px 0 22px;
  margin-bottom: 39px;
  border-bottom: 1px solid var(--line);
}
.pricing-card-items.style-3 .pricing-card-header::after, .pricing-card-items.style-3 .pricing-card-header::before {
  display: none;
}
.pricing-card-items.style-3 .pricing-card-header .price {
  color: var(--secondary);
  padding-bottom: 1px;
}
.pricing-card-items.style-3 .pricing-card-header p {
  color: var(--color-text);
}
.pricing-card-items.style-3 .btn-top {
  background-color: var(--main-color);
  clip-path: polygon(100% 0, 91% 50%, 100% 100%, 0% 100%, 12% 49%, 0% 0%);
  margin-bottom: 19px;
}
.pricing-card-items.style-3 .btn-top a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 47px;
  color: var(--white);
}
.pricing-card-items.style-3 .pricing-card-content {
  margin-top: 0;
  padding: 0;
}

.support-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.support-item :last-child {
  margin-bottom: 0;
}
.support-item .icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 50%;
}
.support-item .icon i {
  font-size: 40px;
  color: var(--white);
}
.support-item .support-content {
  flex-grow: 1;
  flex-shrink: 1;
  width: calc(100% - 90px);
}
.support-item .title {
  display: inline-block;
  padding-bottom: 4px;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.support-item .sub-title {
  color: var(--color-text-5);
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.support-item.color-secondary {
  margin-bottom: 0;
  gap: 18px;
  align-items: start;
}
.support-item.color-secondary .icon {
  width: 60px;
  height: 60px;
  margin-top: 8px;
}
.support-item.color-secondary .icon i {
  font-size: 30px;
}
.support-item.color-secondary .title {
  color: var(--secondary);
}
.support-item.color-secondary .title:hover {
  color: var(--main-color);
}
.support-item.color-secondary .sub-title {
  color: var(--color-text);
}

.call-now-CTA {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
}
.call-now-CTA .call-now-CTA-content {
  background-color: var(--main-color);
  position: relative;
  clip-path: polygon(0 0%, 100% 0%, 86% 100%, 100% 100%, 0% 100%);
  padding: 69px 136px 60px 44px;
}
.call-now-CTA .call-now-CTA-content::before {
  background-image: url(../image/section/bg-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}
.call-now-CTA .call-now-CTA-content .sub-heading {
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.call-now-CTA .call-now-CTA-content .title {
  color: var(--white);
  position: relative;
}
.call-now-CTA .cols {
  gap: 21px 24px;
}
.call-now-CTA .cols fieldset {
  flex: 1 1 50%;
}
.call-now-CTA .tf-btn {
  white-space: nowrap;
  flex: 1 1 50%;
}
.call-now-CTA .item-call-now-CTA {
  position: absolute;
}
.call-now-CTA .item-call-now-CTA img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.call-now-CTA .item-call-now-CTA.item-1 {
  bottom: 0;
  left: 29%;
}
.call-now-CTA .item-call-now-CTA.item-2 {
  bottom: 14px;
  left: 30.3%;
}
.call-now-CTA.style-2 {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--main-color);
  box-shadow: unset;
}
.call-now-CTA.style-2::before {
  content: "";
  background-image: url(../image/section/bg-banner-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 929px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.call-now-CTA.style-2 .image-call-now-CTA img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.call-now-CTA.style-2 .item-call-now-CTA.item-2 {
  bottom: 16px;
  left: 23%;
  max-width: 147px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
}
.call-now-CTA.style-2 .form-call-now-CTA {
  background-color: transparent;
}
.call-now-CTA.style-2 .form-call-now-CTA .title {
  color: var(--white);
  padding-bottom: 19px;
}

.wg-testimonial.w-547 {
  max-width: 547px;
}

.wg-brands .brand-item i {
  font-size: 80px;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-brands .brand-item.color-line-11 i {
  color: var(--line-11);
}
.wg-brands .brand-item:hover i {
  color: var(--main-color);
}

.number-year-ex {
  width: 183px;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px 21px;
  border-bottom-right-radius: 20px;
  position: relative;
}
.number-year-ex .number-year {
  position: relative;
}
.number-year-ex .number-year p {
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: url(../image/section/bg-text-number-year-ex.jpg);
  -webkit-text-stroke: 1px var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  z-index: 4;
  margin-bottom: 5px;
}
.number-year-ex .number-year p:last-child {
  margin-bottom: 0;
}
.number-year-ex .number-year .body-2 {
  line-height: 24px;
}
.number-year-ex::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  clip-path: path("M 0 0 Q 0 30 30 30 L 0 30 Z");
  position: absolute;
  right: -30px;
  top: 0;
  transform: rotate(90deg);
}

.wg-gallery {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.wg-gallery .gallery-item {
  position: relative;
}
.wg-gallery .gallery-item .image {
  position: relative;
}
.wg-gallery .gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-gallery .gallery-item .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(0, 25, 76, 0.3);
  opacity: 0;
  visibility: hidden;
  -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;
}
.wg-gallery .gallery-item .gallery-content .icon {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -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;
  z-index: 4;
}
.wg-gallery .gallery-item .gallery-content .icon i {
  font-size: 30px;
  color: var(--white);
}
.wg-gallery .gallery-item:hover .image::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.wg-gallery .gallery-item:hover .gallery-content .icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transition-delay: 0.2s;
}
.wg-gallery .gallery-item.item-1, .wg-gallery .gallery-item.item-2, .wg-gallery .gallery-item.item-3 {
  flex: 1 1 calc(33.33% - 30px);
}
.wg-gallery .gallery-item.item-4, .wg-gallery .gallery-item.item-5 {
  flex: 1 1 calc(50% - 30px);
}

.tf-post-list.desc {
  flex-direction: row-reverse;
  gap: 0;
  border: none;
  padding-bottom: 30px;
  margin-bottom: 0;
}
.tf-post-list.desc .image {
  position: relative;
}
.tf-post-list.desc .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-post-list.desc .tf-post-list-content {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 15px;
}
.tf-post-list.desc .tf-post-list-content .meta {
  flex-wrap: wrap;
  padding-bottom: 17px;
}
.tf-post-list.desc .tf-post-list-content .name {
  padding-bottom: 9px;
}
.tf-post-list.desc .tf-post-list-content .name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 32px;
}
.tf-post-list.desc .tf-post-list-content .text-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-text);
}
.tf-post-list.desc:last-child {
  padding-bottom: 0px;
}

.guide-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 28px;
}
.guide-wrap .icon-guide-wrap {
  padding-bottom: 60px;
}

.guide-wrap-item {
  max-width: 270px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--white);
  position: relative;
  border-bottom-left-radius: 1200px;
  border-bottom-right-radius: 1200px;
}
.guide-wrap-item .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 114px;
  height: 114px;
  position: absolute;
  top: -58px;
  left: 47%;
  transform: translateX(-50%);
  background-color: transparent;
}
.guide-wrap-item .icon i {
  font-size: 40px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.guide-wrap-item .icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  background-color: var(--main-color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guide-wrap-item .guide-wrap-content {
  text-align: center;
  padding: 78px 30px 47px;
}
.guide-wrap-item .guide-wrap-content .title {
  display: inline-block;
  color: var(--secondary);
  -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-bottom: 8px;
}
.guide-wrap-item .guide-wrap-content .title:hover {
  color: var(--main-color);
}
.guide-wrap-item .guide-wrap-content .sub-title {
  color: var(--color-text);
  padding-bottom: 28px;
}
.guide-wrap-item .guide-wrap-content .number-services {
  -webkit-text-stroke: 1px var(--color-text);
  opacity: 0.5;
}
.guide-wrap-item:hover .icon i {
  color: var(--main-color);
  animation: pulse 0.5s ease;
}
.guide-wrap-item:hover .icon::before {
  background-color: var(--white);
}
.guide-wrap-item:hover .number-services {
  -webkit-text-stroke: 1px var(--main-color);
}

.call-to-action {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background-color: var(--white);
  position: relative;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  gap: 48px;
}
.call-to-action .image {
  position: relative;
}
.call-to-action .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.call-to-action .call-icon {
  width: 68px;
  height: 68px;
  background-color: transparent;
  border: 1px solid var(--main-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  z-index: 2;
}
.call-to-action .call-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background-color: var(--main-color);
  border-radius: 50%;
}
.call-to-action .call-icon svg {
  position: relative;
  animation: ring 1s infinite;
}
.call-to-action .call-to-action-content {
  padding-top: 5px;
}
.call-to-action .call-to-action-content .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 19px;
}
.call-to-action .call-to-action-content .number-phone a {
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.3px;
}
.call-to-action .image-item {
  position: absolute;
  bottom: 0;
  right: 0;
}
.call-to-action.style-2 {
  background-color: var(--secondary);
  flex-direction: column;
  gap: 0;
}
.call-to-action.style-2 .image {
  overflow: hidden;
}
.call-to-action.style-2 .image img {
  clip-path: polygon(50% 68%, 100% 35%, 100% 0, 0 0, 0 35%);
}
.call-to-action.style-2 .call-to-action-content {
  padding-top: 0px;
}
.call-to-action.style-2 .call-icon {
  border: none;
  width: 76px;
  height: 76px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  top: 52%;
}
.call-to-action.style-2 .call-icon::before {
  display: none;
}
.call-to-action.style-2 .call-to-action-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  margin-bottom: 33px;
}
.call-to-action.style-2 .call-to-action-content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.call-to-action.style-2 .call-to-action-content .number-phone {
  margin-bottom: 20px;
}
.call-to-action.style-2 .call-to-action-content .number-phone a {
  color: var(--main-color);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.call-to-action.style-2 .call-to-action-content .tf-btn.style-arrow::before {
  background: var(--main-color);
}

.wg-project-information {
  background-color: var(--main-color);
}
.wg-project-information .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 21px 0 22px;
  letter-spacing: -0.5px;
}
.wg-project-information .project-information-content {
  padding: 17px 30px 20px;
}
.wg-project-information .project-information-item {
  padding-bottom: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-12);
}
.wg-project-information .project-information-item .title-information {
  color: var(--white);
  margin-bottom: 3px;
  text-transform: capitalize;
}
.wg-project-information .project-information-item .text {
  color: var(--white);
}
.wg-project-information .project-information-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.wg-project-information .project-information-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 22px;
  justify-content: center;
}
.wg-project-information .project-information-social .social a i {
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-project-information .project-information-social .social a:hover i {
  color: var(--secondary);
}

.progress-bars {
  padding-bottom: 10px;
}
.progress-bars .progress-bars-line {
  display: block;
  height: 15px;
  background-color: var(--line-3);
  position: relative;
}
.progress-bars .progress-bars-line > div {
  display: block;
  height: 15px;
  background-color: var(--main-color);
  position: relative;
}
.progress-bars .progress-bars-line > div .progress-bars-number {
  position: absolute;
  right: -10px;
  top: -29px;
  font-weight: 700;
  color: var(--main-color);
  text-transform: capitalize;
}
.progress-bars .progress-bars-line > div .progress-bars-text {
  position: absolute;
  left: 0;
  top: -29px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: capitalize;
}

.wg-page-not-found {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wg-page-not-found .image {
  margin-bottom: 45px;
}
.wg-page-not-found .page-not-found-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wg-page-not-found .title {
  margin-bottom: 6px;
  text-align: center;
}
.wg-page-not-found .title span:last-child {
  color: var(--secondary);
}
.wg-page-not-found .sub-title {
  color: var(--color-text);
  margin-bottom: 40px;
}

.form-contact-us textarea,
.form-contact-us input[type=text],
.form-contact-us input[type=email] {
  border: 1px solid var(--line) !important;
    padding: 6px 20px;
    margin-bottom: 18px;
}
.form-contact-us textarea::placeholder,
.form-contact-us input[type=text]::placeholder,
.form-contact-us input[type=email]::placeholder {
  color: var(--color-text);
}
.form-contact-us fieldset label {
  padding-bottom: 8px;
  color: var(--secondary);
}
.form-contact-us .cols {
  margin-bottom: 27px;
}
.form-contact-us .tf-btn {
      padding: 10px 10px;
    margin-top: 3px;
}
.form-contact-us textarea {
  height: 200px;
}

.box-card {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box-card .image {
  position: relative;
  width: 100%;
}
.box-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-card .icon {
  width: 94px;
  height: 94px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
}
.box-card .icon i {
  position: relative;
  color: var(--white);
  font-size: 40px;
  z-index: 2;
}
.box-card .icon::before {
  content: "";
  width: 84px;
  height: 84px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  clip-path: polygon(9% 25%, 50% 0, 93% 25%, 93% 78%, 50% 100%, 9% 78%);
}
.box-card .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.2;
  clip-path: polygon(9% 25%, 50% 0, 93% 25%, 93% 78%, 50% 100%, 9% 78%);
}
.box-card .box-card-content {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  background-color: var(--white);
     padding: 51px 22px 25px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: relative;
    min-height: 180px;
}
.box-card .box-card-content .title {
  margin-bottom: 4px;
}
.box-card .box-card-content .title a {
  color: var(--secondary);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}
.box-card .box-card-content .title a:hover {
  color: var(--main-color);
}
.box-card .box-card-content .sub-title {
  color: var(--color-text);
}

.tf-sort {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 3px;
}
.tf-sort .tf-sort-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tf-sort .tf-sort-content .text {
  white-space: nowrap;
  color: var(--secondary);
}
.tf-sort .nice-select {
  min-width: 140px;
  width: max-content;
  padding: 10px 38px 10px 15px !important;
  background-color: var(--line-3);
  color: var(--color-text);
  text-transform: capitalize;
}
.tf-sort .nice-select::before {
  content: "\e933";
  color: var(--color-text);
  font-size: 10px;
}
.tf-sort .nice-select::after {
  right: 20px;
}
.tf-sort .nice-select .list {
  z-index: 99;
}

.wg-fillter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wg-fillter .fillter-item {
  padding: 30px;
  background-color: var(--line-3);
}
.wg-fillter .fillter-item .title {
  color: var(--secondary);
  margin-bottom: 20px;
}
.wg-fillter .fillter-item .text {
  color: var(--color-text);
  text-transform: capitalize;
}
.wg-fillter .fillter-item.fillter-item-2 {
  padding: 21px 27px 25px 32px;
}
.wg-fillter .fillter-item.fillter-item-2 .title {
  margin-bottom: 13px;
}
.wg-fillter .fillter-item.fillter-item-2 .range-slider .bottom {
  margin-top: 9px;
}
.wg-fillter .fillter-search fieldset {
  position: relative;
}
.wg-fillter .fillter-search fieldset input[type=text] {
  width: 100%;
  border: 1px solid var(--line-13);
  padding: 14.5px 10px;
}
.wg-fillter .fillter-search fieldset input[type=text]::placeholder {
  color: var(--color-text);
}
.wg-fillter .fillter-search fieldset .tf-btn-search {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.wg-fillter .range-slider {
  background-color: var(--white);
  padding: 16px 22px 9px 10px;
}
.wg-fillter .fillter-categories .title {
  margin-bottom: 19px !important;
}
.wg-fillter .fillter-categories ul li {
  margin-bottom: 10px;
}
.wg-fillter .fillter-categories ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.wg-fillter .fillter-categories ul li a i {
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-fillter .fillter-categories ul li:last-child {
  margin-bottom: 0;
}
.wg-fillter .fillter-categories ul li:hover a {
  color: var(--main-color);
}
.wg-fillter .fillter-categories ul li:hover a i {
  transform: translateX(5px);
}
.wg-fillter .fillter-by-color .title {
  margin-bottom: 19px !important;
}
.wg-fillter .fillter-product-status ul li {
  margin-bottom: 10px;
}
.wg-fillter .fillter-product-status ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.wg-fillter .fillter-product-status ul li a i {
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-fillter .fillter-product-status ul li:last-child {
  margin-bottom: 0;
}
.wg-fillter .fillter-product-status ul li:hover a {
  color: var(--main-color);
}
.wg-fillter .fillter-product-status ul li:hover a i {
  transform: translateX(5px);
}
.wg-fillter .fillter-review-star {
  padding: 18px 32px 26px !important;
}
.wg-fillter .fillter-review-star .title {
  margin-bottom: 17px !important;
}
.wg-fillter .fillter-review-star .rating {
  gap: 5.5px;
}
.wg-fillter .fillter-review-star .rating i {
  color: var(--yelow2);
}
.wg-fillter .fillter-review-star .rating span {
  text-transform: lowercase;
}
.wg-fillter .fillter-review-star input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.wg-fillter .fillter-review-star input[type=checkbox]::before {
  font-size: 7px;
}

.color-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 14px;
}
.color-item:last-child {
  margin-bottom: 0;
}
.color-item .color {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.color-item .bg-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.color-item .bg-color.bg-color-black {
  background-color: var(--black) !important;
}
.color-item .bg-color.bg-color-green {
  background-color: var(--green) !important;
}
.color-item .bg-color.bg-color-blue {
  background-color: var(--blue) !important;
}
.color-item .bg-color.bg-color-red {
  background-color: var(--red) !important;
}
.color-item .bg-color.bg-color-yelow {
  background-color: var(--yelow2) !important;
}
.color-item .bg-color.bg-color-brown {
  background-color: var(--brown) !important;
}
.color-item .bg-color.bg-color-white {
  background-color: var(--white) !important;
}

.size-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.size-item:last-child {
  margin-bottom: 0;
}

.comment-item.style-2 .rating i {
  color: var(--yelow);
}

.wg-write-review .title {
  color: var(--secondary);
  margin-bottom: 17px;
  line-height: 37.8px;
}
.wg-write-review .sub-title {
  color: var(--color-text);
  margin-bottom: 17px;
}
.wg-write-review span {
  color: var(--secondary);
}
.wg-write-review .rating {
  flex-direction: row-reverse;
  justify-content: left;
}
.wg-write-review .rating input {
  display: none;
}
.wg-write-review .rating label {
  font-size: 20px;
  color: transparent;
  -webkit-text-stroke: 1px var(--yelow);
  cursor: pointer;
  transition: color 0.3s ease;
}
.wg-write-review .rating input:checked ~ label,
.wg-write-review .rating label:hover,
.wg-write-review .rating label:hover ~ label {
  color: var(--yelow);
}

.tf-table-page-cart {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.tf-table-page-cart tr {
  border-bottom: 1px solid var(--line);
}
.tf-table-page-cart thead {
  font-weight: bold;
}
.tf-table-page-cart thead th {
  padding: 0 0 25px;
  text-align: center;
  border: none;
  color: var(--secondary);
  font-size: 20px;
  line-height: 20px;
}
.tf-table-page-cart thead th:first-child {
  text-align: left;
  width: 290px;
}
.tf-table-page-cart thead th:nth-child(2) {
  width: 195px;
}
.tf-table-page-cart thead th:nth-child(3) {
  width: 294px;
}
.tf-table-page-cart thead th:nth-child(4) {
  width: 242px;
}
.tf-table-page-cart thead th:last-child {
  text-align: right;
  width: 149px;
}
.tf-table-page-cart tbody tr td {
  padding: 28px 0;
  border: none;
}
.tf-table-page-cart tbody tr td.tf-cart-item_product {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tf-table-page-cart tbody tr td.tf-cart-item_product .img-box {
  flex-shrink: 0;
}
.tf-table-page-cart tbody tr td.tf-cart-item_product .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-table-page-cart tbody tr td.tf-cart-item_product .name-product {
  text-decoration: none;
  color: var(--secondary);
  white-space: nowrap;
}
.tf-table-page-cart tbody tr td.tf-cart-item_product .name-product:hover {
  color: var(--main-color);
}
.tf-table-page-cart tbody tr td.tf-cart-item_price, .tf-table-page-cart tbody tr td.tf-cart-item_total {
  text-align: center;
  color: var(--secondary);
}
.tf-table-page-cart tbody tr td.tf-cart-item_quantity .quanlity-product {
  color: var(--main-color);
}
.tf-table-page-cart tbody tr td.remove-cart {
  text-align: center;
}
.tf-table-page-cart tbody tr td.remove-cart .remove {
  padding: 0 10px;
  cursor: pointer;
}
.tf-table-page-cart tbody tr td:last-child {
  text-align: right;
}

.ip-discount-code {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 15px;
}
.ip-discount-code .title {
  color: var(--color-text-7);
  margin-bottom: 10px;
}
.ip-discount-code .ip-discount-code-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.ip-discount-code .ip-discount-code-content input[type=text] {
  padding: 16px 18px;
  min-width: 268px;
  border: 1px solid var(--line);
}
.ip-discount-code .ip-discount-code-content input[type=text]::placeholder {
  color: var(--color-text-7);
}
.ip-discount-code .tf-btn {
  padding: 17px 26px;
}

.box-subtotal {
  max-width: 318px;
  margin-top: 60px;
  margin-left: auto;
}
.box-subtotal .title {
  color: var(--secondary);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.box-subtotal .box-subtotal-content .top-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.box-subtotal .box-subtotal-content .top-content .title-top-content {
  color: var(--secondary);
}
.box-subtotal .box-subtotal-content .top-content .price {
  color: var(--main-color);
}
.box-subtotal .box-subtotal-content .bottom-content {
  margin-bottom: 29px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.box-subtotal .box-subtotal-content .bottom-content .title-bottom-content {
  color: var(--color-text-7);
  margin-bottom: 9px;
}
.box-subtotal .box-subtotal-content .bottom-content .sub-title {
  color: var(--color-text-7);
}

.wg-billing-details .title-billing {
  font-size: 24px;
  line-height: 30.24px;
  color: var(--secondary);
  text-transform: capitalize;
}
.wg-billing-details .billing-details-content .title {
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.wg-billing-details .billing-details-content input {
  background-color: var(--line-3);
  padding: 15px 18px;
  text-transform: capitalize;
  color: var(--color-text);
}
.wg-billing-details .billing-details-content .nice-select {
  background-color: var(--line-3);
  text-transform: capitalize;
}
.wg-billing-details .billing-details-content .nice-select::before {
  content: "\e933";
  color: var(--color-text);
  font-size: 10px;
}
.wg-billing-details .billing-details-content textarea {
  background-color: var(--line-3);
  color: var(--color-text);
}

.wg-different-address {
  padding-top: 53px;
}
.wg-different-address textarea {
  height: 176px;
  padding: 20px;
  text-align: left;
}
.wg-different-address .title-billing {
  padding-left: 18px;
  margin-bottom: 20px;
}

.wg-your-order .title {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.wg-your-order .your-order-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-your-order .your-order-content .title-top-your-order {
  color: var(--secondary);
  text-transform: capitalize;
}
.wg-your-order .top-your-order {
  margin-bottom: 27px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--line);
}
.wg-your-order .middle-your-order {
  margin-bottom: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.wg-your-order .middle-your-order .middle-order {
  margin-bottom: 23px;
}
.wg-your-order .middle-your-order .middle-order .text,
.wg-your-order .middle-your-order .middle-order .price {
  color: var(--color-text);
}
.wg-your-order .middle-your-order .middle-order .text {
  text-transform: capitalize;
}
.wg-your-order .middle-your-order .middle-order:last-child {
  margin-bottom: 0;
}
.wg-your-order .bottom-your-order .title-total {
  color: var(--main-color);
  text-transform: capitalize;
}
.wg-your-order .bottom-your-order .price-total {
  color: var(--main-color);
  text-transform: capitalize;
}

.form-payment {
  padding: 15px;
  background-color: var(--line-3);
}
.form-payment .tf-btn {
  padding: 16px 26px;
}
.form-payment .tf-btn span {
  letter-spacing: -0.6px;
}

.payment-item {
  color: var(--secondary);
}
.payment-item .payment-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.payment-item .payment-header .title {
  color: var(--secondary);
  text-transform: capitalize;
  line-height: 20.16px;
  font-weight: 700;
}
.payment-item .payment-body {
  padding: 15px 15px 15px 36px;
}
.payment-item .payment-body .text {
  color: var(--color-text);
  line-height: 30px;
}
.payment-item.payment-item2 {
  padding-bottom: 95px;
}

.wg-login {
  max-width: 1165px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.0784313725);
  background-color: var(--white);
  overflow: auto;
  position: relative;
}
.wg-login .image {
  max-width: 627px;
  background-color: var(--main-color);
  position: relative;
  flex: 1 1 50%;
}
.wg-login .image img {
  width: 100%;
  max-width: 512px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  margin-left: 90px;
}
.wg-login .image .blur {
  position: absolute;
  width: 310px;
  height: 310px;
  top: 107px;
  left: 159px;
  background-color: #D9D9D9;
  filter: blur(175px);
}
.wg-login .form-login {
  max-width: 538px;
}
.wg-login .login-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 5px;
  align-items: center;
}
.wg-login .login-btn .tf-btn {
  padding: 10px 20px;
}
.wg-login .login-btn .tf-btn.log-in-btn {
  border: 1px solid transparent;
}
.wg-login .login-btn .tf-btn.log-in-btn:hover {
  border-color: var(--white);
  background: transparent;
}
.wg-login .login-btn .tf-btn.log-in-btn:hover::before {
  background: transparent;
}
.wg-login .login-btn .tf-btn.create-account-btn {
  border: 1px solid var(--white);
  color: var(--white);
}
.wg-login .login-btn .tf-btn.create-account-btn:hover {
  border: 1px solid var(--secondary);
}
.wg-login .login-btn.mobile {
  display: none;
}
.wg-login .login-btn.desltop {
  transform: rotate(-90deg) translateY(-50%);
  position: absolute;
  top: 50%;
  z-index: 2;
  left: -20px;
}
.wg-login .btn-hide-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  z-index: 5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-login .btn-hide-popup i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-login .btn-hide-popup:hover {
  background-color: var(--white);
}
.wg-login .btn-hide-popup:hover i {
  color: var(--main-color);
}
.wg-login .check-box label {
  color: var(--secondary);
}

.login-radiobox .header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-radiobox .header .title {
  color: var(--secondary);
  text-transform: capitalize;
}

.wg-signature {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 63px;
}
.wg-signature .info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wg-signature .info .image {
  border-radius: 50%;
}
.wg-signature .info .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-signature .info p {
  margin-bottom: 10px;
  color: var(--color-text-8);
}
.wg-signature .info a {
  color: var(--on-surface);
}
.wg-signature .info a:hover {
  color: var(--main-color);
}

.project-item {
  position: relative;
  overflow: hidden;
}
.project-item .image {
  position: relative;
  max-width: 538px;
  width: 100%;
}
.project-item .image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.project-item .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(0, 25, 76, 0) 32.18%, #00194C 94.25%);
  -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;
}
.project-item .project-item-content {
  background: transparent;
  position: absolute;
  left: 0;
  bottom: 30px;
  transform: translateX(-10%);
  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;
  z-index: 4;
}
.project-item .project-item-content .title {
  color: var(--secondary);
  background-color: var(--white);
  margin-bottom: 4px;
  padding: 4px 21px;
  display: inline-block;
}
.project-item .project-item-content .title:hover {
  color: var(--main-color);
}
.project-item .project-item-content .sub-title {
  color: var(--secondary);
  background-color: var(--white);
  padding: 4px 17px;
  width: min-content;
}
.project-item.active .image {
  max-width: 723px;
}
.project-item:hover .image::before {
  height: 100%;
  transition-delay: 0.2s;
}
.project-item:hover .project-item-content {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.project-item.style-2 .image-item {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-10px, 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;
}
.project-item.style-2 .project-item-content {
  position: absolute;
  left: 30px;
  bottom: 44px;
}
.project-item.style-2:hover .image::before {
  height: 100%;
  transition-delay: 0.2s;
}
.project-item.style-2:hover .project-item-content {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.project-item.style-2:hover .image-item {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.project-item.hover:hover .image::before {
  height: 100%;
}
.project-item.hover:hover .project-item-content {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.project-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
}

.wg-box-search .title-search {
  font-weight: 600;
  color: var(--On-Surface);
  padding-bottom: 16px;
}
.wg-box-search .form-search {
  padding-bottom: 40px;
}
.wg-box-search .form-search .input-search {
  margin-bottom: 16px;
  position: relative;
}
.wg-box-search .form-search .input-search input {
  border: 1px solid var(--line);
}
.wg-box-search .form-search .input-search .btn-search {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.wg-box-search .form-search .input-search .btn-search i {
  font-size: 20px;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-box-search .form-search .input-search .btn-search:hover i {
  color: var(--main-color);
}
.wg-box-search .form-search ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.benefit-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.benefit-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: var(--secondary);
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}
.benefit-item i {
  color: var(--main-color);
}

.box-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 23px;
}
.box-icon .icon {
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
}
.box-icon .icon i {
  font-size: 40px;
  color: var(--white);
}
.box-icon h6 {
  line-height: 26px;
}
.box-icon h6 .name {
  color: var(--secondary);
}

.sidebar-services {
  padding: 30px 30px 39px;
}
.sidebar-services ul li {
  margin-bottom: 10px;
}
.sidebar-services ul li:last-child {
  margin-bottom: 0;
    font-size: 14px;
}
.sidebar-services ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 17px;
  background-color: var(--white);
  color: var(--secondary);
    text-transform: capitalize;    font-size: 14px;
}
.sidebar-services ul li a i {
  color: var(--main-color);
}
.sidebar-services ul li a:hover {
  background-color: var(--main-color);
  color: var(--white);
}
.sidebar-services ul li a:hover i {
  color: var(--white);
}

.sidebar-opening ul {
  padding-bottom: 11px;
}
.sidebar-opening ul li {
  margin-bottom: 10px;
}
.sidebar-opening ul li:last-child {
  margin-bottom: 0;
}
.sidebar-opening ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14.9px 24px;
  background-color: var(--white);
  color: var(--secondary);
  letter-spacing: -0.2px;
}
.sidebar-opening ul li a i {
  color: var(--main-color);
}
.sidebar-opening ul li a:hover {
  background-color: var(--main-color);
  color: var(--white);
}
.sidebar-opening ul li a:hover i {
  color: var(--white);
}
.sidebar-opening .tf-btn {
  justify-content: center;
}

.wg-services-details .image-services-details {
  margin-bottom: 28px;
}
.wg-services-details .image-services-details img {
     width: 100%;
    height: 400px;
    object-fit: contain;
}

.image-details-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}

.details-content .title {
  color: var(--secondary);    text-trans@mform: capitalize;
    font-weight: 600;
}
.details-content .text {
  color: var(--color-text);
}

.list-details {
  margin-left: -5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 0;
  margin-bottom: 36px;
}
.list-details ul {
  flex: 1 1 auto;
  max-width: 46%;
}
.list-details ul:last-child {
  max-width: 54%;
}
.list-details .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--secondary);
  margin-bottom: 16px;
}
.list-details .item:last-child {
  margin-bottom: 0;
}
.list-details .item i {
  color: var(--main-color);
  font-size: 27px;
}

.wg-project-details .image-project-details {
  width: 100%;
}
.wg-project-details .image-project-details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-prev-next {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--line-14);
  border-bottom: 1px solid var(--line-14);
}
.wg-prev-next .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.wg-prev-next .item .image {
  max-width: 62px;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-prev-next .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wg-prev-next .item .text {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 24px;
  line-height: 30.24px;
}
.wg-prev-next .item.next {
  flex-direction: row-reverse;
}
.wg-prev-next .item:hover .image {
  border-color: var(--main-color);
}
.wg-prev-next .item:hover .text {
  color: var(--main-color);
}

.wg-team-details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
}
.wg-team-details .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-team-details .wg-team-details-content {
  max-width: calc(100% - 421px);
}

.wg-team-details-content .heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-3);
  padding-bottom: 29px;
  margin-bottom: 21px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.wg-team-details-content .info .name {
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.wg-team-details-content .info .position {
  color: var(--color-text);
  font-size: 15px;
  line-height: 14px;
  letter-spacing: -0.02em;
}
.wg-team-details-content .social {
  gap: 6px;
}
.wg-team-details-content .social .item {
  background-color: var(--line-3);
  border-radius: 50%;
}
.wg-team-details-content .social .item a {
  display: inline-block;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
}
.wg-team-details-content .middle .text {
  margin-bottom: 66px;
}
.wg-team-details-content .middle .text p {
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 30px;
  margin-bottom: 12px;
}
.wg-team-details-content .middle .text p:last-child {
  margin-bottom: 0;
}
.wg-team-details-content .bottom .contact-team-details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  row-gap: 15px;
}
.wg-team-details-content .bottom .contact-team-details .item-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wg-team-details-content .bottom .contact-team-details .item-contact .icon {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--line-3);
  border-radius: 50%;
  color: var(--main-color);
}
.wg-team-details-content .bottom .contact-team-details .item-contact .content a {
  color: var(--color-text);
}

.personal-information .title {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.personal-information .text {
  margin-bottom: 52px;
}
.personal-information .text p {
  color: var(--color-text);
  letter-spacing: -0.014em;
  line-height: 30px;
}
.personal-information .text:last-child {
  padding-bottom: 0;
}

.personal-skills {
  background-color: var(--white);
  padding: 28px 40px;
}
.personal-skills .title-personal-skills {
  color: var(--secondary);
  margin-bottom: 61px;
  letter-spacing: -0.02em;
}
.personal-skills .progress-bars-list {
  margin-bottom: 32px;
}

.progress-bars-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 43px 31px;
}
.progress-bars-list .progress-bars {
  flex: 1 1 calc(50% - 57px);
}

.grid-3 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  position: relative;
}

.hover-img .image {
  position: relative;
  overflow: hidden;
}
.hover-img .image img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hover-img .image::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--line-9);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.hover-img:hover .image img {
  transform: scale(1.05);
}
.hover-img:hover .image::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.hover-img-scale .image {
  overflow: hidden;
}
.hover-img-scale .image img {
  -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;
}
.hover-img-scale:hover .image img {
  transform: scale(1.05);
}

.hover-img2 {
  overflow: hidden;
}
.hover-img2 .image {
  position: relative;
  overflow: hidden;
}
.hover-img2 .image img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hover-img2 .image::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  left: 50%;
  right: 50%;
  top: 50%;
  background-color: var(--main-color);
  opacity: 0.2;
  z-index: 1;
  -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;
}
.hover-img2:hover .image img {
  transform: scale(1.05);
}
.hover-img2:hover .image::before {
  left: 0%;
  top: 0%;
  height: 100%;
  width: 100%;
}

.preload-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  height: 100%;
  width: 100vw;
  background-color: var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preload-container .middle {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preload-container .logo-preload {
  position: absolute;
  animation: l3 1s infinite linear;
}

.progress-wrap {
  position: fixed;
  bottom: 40px;
  right: 20px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: var(--white);
}
.progress-wrap::after {
  position: absolute;
  content: "\e90c";
  font-family: "icomoon";
  text-align: center;
  line-height: 40px;
  font-size: 10px;
  color: var(--secondary);
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  transform: rotate(180deg);
  transform: rotate(-90deg);
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--main-color);
  stroke-width: 5;
  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;
}

.ui-corner-all {
  position: relative;
  background-image: unset;
}
.ui-corner-all .ui-icon {
  display: none !important;
}
.ui-corner-all::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary);
}
.ui-corner-all.ui-datepicker-prev::before {
  content: "\e90b";
  font-size: 10px;
  font-family: "icomoon";
}
.ui-corner-all.ui-datepicker-next::before {
  content: "\e90c";
  font-size: 10px;
  font-family: "icomoon";
}

/*------------ sections ---------------- */
.tf-spacing-1 {
  margin-top: 165px;
  margin-bottom: 120px;
}

.tf-spacing-2 {
  margin-top: 160px;
  margin-bottom: 120px;
}

.tf-spacing-3 {
  margin-top: 0;
  margin-bottom: 120px;
}

.tf-spacing-4 {
  padding-top: 112px;
  padding-bottom: 120px;
}

.tf-spacing-5 {
  padding-top: 112px;
  padding-bottom: 112px;
}

.tf-spacing-6 {
  margin-top: 0;
  margin-bottom: 60px;
}

.tf-spacing-7 {
  padding-top: 0;
  padding-bottom: 120px;
}

.tf-spacing-8 {
  padding-top: 112px;
  padding-bottom: 100px;
}

.tf-spacing-9 {
  padding-top: 0;
  padding-bottom: 100px;
}

.tf-spacing-10 {
  margin-top: 100px;
  margin-bottom: 140px;
}

.tf-spacing-11 {
  padding-top: 236px;
  padding-bottom: 124px;
}

.tf-spacing-12 {
  padding-top: 112px;
  padding-bottom: 254px;
}

.tf-spacing-13 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.tf-spacing-14 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.tf-spacing-15 {
  padding-top: 128px;
  padding-bottom: 120px;
}

.tf-spacing-16 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tf-spacing-17 {
  padding-top: 112px;
  padding-bottom: 142px;
}

.tf-spacing-18 {
  padding-top:50px;
  padding-bottom: 50px;
}

.tf-spacing-19 {
  padding-top: 122px;
  padding-bottom: 205px;
}

.tf-spacing-20 {
  padding-top: 214px;
  padding-bottom: 120px;
}

.tf-spacing-21 {
     padding-top: 45px;
    padding-bottom: 41px;
}

.tf-spacing-22 {
  padding-top: 112px;
  padding-bottom: 147px;
}

.tf-spacing-23 {
  padding-top: 247px;
  padding-bottom: 307px;
}

.tf-spacing-24 {
  padding-top: 110px;
  padding-bottom: 103px;
}

.tf-spacing-25 {
  padding-top: 112px;
  padding-bottom: 93px;
}

.tf-spacing-26 {
  margin-top: 165px;
  margin-bottom: 117px;
}

.tf-spacing-27 {
  padding-top: 117px;
  padding-bottom: 123px;
}

.tf-spacing-28 {
  margin-top: 165px;
  margin-bottom: 121px;
}

.tf-spacing-29 {
  padding-top: 128px;
  padding-bottom: 123px;
}

.tf-spacing-30 {
      margin-top: 60px;
    margin-bottom: 60px;
}

.tf-spacing-31 {
  margin-top: 165px;
  margin-bottom: 123px;
}

.tf-spacing-32 {
  margin-top: 165px;
  margin-bottom: 60px;
}

.tf-spacing-33 {
     margin-top: 44px;
    margin-bottom: 60px;
}

.tf-spacing-34 {
     margin-top: 86px;
    margin-bottom: 85px;
}

.tf-spacing-35 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.tf-spacing-36 {
  padding-top: 112px;
  padding-bottom: 258px;
}

.page-title {
  position: relative;
}
.page-title .page-title-inner {
  background-image: url(../image/slider2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.page-title .page-title-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  opacity: 0.4;
  z-index: 1;
}
.page-title .page-title-inner .page-title-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 0 50px;
}
.page-title .page-title-inner .page-title-content .title {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  font-weight: 800;
  padding-bottom: 12px;text-transform: capitalize;
}
.page-title .page-title-inner .page-title-content .breadkcum {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 9px;
  align-items: center;
}
.page-title .page-title-inner .page-title-content .breadkcum a {
  color: var(--white);
  font-weight: 700;
}
.page-title .page-title-inner .page-title-content .breadkcum i {
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}
.page-title .page-title-inner .page-title-content .breadkcum span {
  color: var(--main-color);
  font-weight: 700;
}
.page-title .page-title-inner .icon-page-title {
  position: absolute;
  z-index: 2;
}
.page-title .page-title-inner .icon-page-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title .page-title-inner .icon-page-title.icon-1 {
  top: -56px;
  right: 73px;
  animation: tranform-y-item 2s infinite linear;
}
.page-title .page-title-inner .icon-page-title.icon-2 {
  bottom: 0;
  left: -93px;
  animation: tranform-x-item 2s infinite linear;
}
.page-title .bottom-page-title {
  position: absolute;
  bottom: -37px;
  z-index: -1;
  width: 100%;
  height: 100px;
}
.page-title .bottom-page-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title-home .page-title-inner .page-title-content {
  padding-left: 37px;
  padding-top: 38px;
  padding-bottom: 30px;
}
.page-title-home .page-title-inner .page-title-content .text-sub-heading {
  color: var(--main-color);
  padding-bottom: 0;
}
.page-title-home .page-title-inner .page-title-content .title {
  color: var(--secondary);
  padding-bottom: 40px;
}
.page-title-home .page-title-inner .page-title-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 30px;
}
.page-title-home .page-title-inner .page-title-btn .tf-btn {
  padding: 15px 25px;
}
.page-title-home .page-title-inner .page-title-btn .play-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.page-title-home .page-title-inner .page-title-btn .play-icon .icon {
  width: 47.2px;
  height: 47.2px;
  display: inline-block;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title-home .page-title-inner .page-title-btn .play-icon .icon i {
  color: var(--main-color);
}
.page-title-home .page-title-inner .page-title-btn .play-icon .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(-47deg);
}
.page-title-home .page-title-inner .page-title-btn .play-icon:hover .icon::before {
  animation: rotare 1s infinite linear;
}
.page-title-home .page-title-inner .page-title-btn .play-icon span {
  color: var(--secondary);
  text-transform: capitalize;
}
.page-title-home .image-item {
  position: absolute;
}
.page-title-home .image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonial-content img{height: 100px}
.page-title-home .boder-box {
  box-sizing: border-box;
  position: absolute;
  width: 185px;
  height: 383px;
  border-width: 6px 0px 6px 6px;
  border-style: solid;
  border-color: var(--main-color);
}
.page-title-home.style-1 {
  position: relative;
}
.page-title-home.style-1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 27px;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}
.page-title-home.style-1 .image {
  position: absolute;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90.5%, 50% 100%, 0 90.5%);
  top: 0;
  left: 0;
  width: 100%;
}
.page-title-home.style-1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title-home.style-1 .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F3F3F3 26.32%, rgba(243, 244, 247, 0.5) 113.83%);
}
.page-title-home.style-1 .image::after {
  background-image: url(../image/page-title/overlay-home-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-title-home.style-1 .image-item {
  position: absolute;
  z-index: 2;
}
.page-title-home.style-1 .image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-title-home.style-1 .image-item.item-1 {
  top: 0;
  right: 0;
}
.page-title-home.style-1 .page-title-inner {
  max-width: 1460px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
  padding: 191px 0 256px 0;
}
.page-title-home.style-1 .page-title-inner .image-item.item-2 {
  bottom: -14px;
  right: 0;
}
.page-title-home.style-1 .page-title-inner .image-item.item-3 {
  bottom: -4px;
  right: 27%;
}
.page-title-home.style-1 .boder-box {
  box-sizing: border-box;
  position: absolute;
  width: 185px;
  height: 383px;
  border-width: 6px 0px 6px 6px;
  border-style: solid;
  border-color: var(--main-color);
}
.page-title-home.style-1 .cd-words-wrapper .item-text {
  background-image: none;
  -webkit-text-fill-color: var(--secondary);
}
.page-title-home.style-2 {
  position: relative;
}
.page-title-home.style-2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 39px;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}
.page-title-home.style-2 .image {
  position: absolute;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90.5%, 50% 100%, 0 90.5%);
  top: 0;
  left: 0;
  width: 100%;
}
.page-title-home.style-2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title-home.style-2 .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F3F3F3 26.32%, rgba(243, 244, 247, 0.5) 113.83%);
}
.page-title-home.style-2 .image::after {
  background-image: url(../image/page-title/overlay-home-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-title-home.style-2 .page-title-inner {
  padding-top: 129px;
  padding-bottom: 330px;
  position: relative;
}
.page-title-home.style-2 .page-title-content {
  position: relative;
}
.page-title-home.style-2 .page-title-content .title {
  color: var(--white);
  position: relative;
}
.page-title-home.style-2 .page-title-content .tf-btn::before {
  background-color: var(--white);
}
.page-title-home.style-2 .page-title-content .tf-btn:hover span {
  color: var(--secondary);
}
.page-title-home.style-2 .page-title-content .tf-btn:hover i {
  color: var(--secondary);
}
.page-title-home.style-2 .page-title-content .play-icon span {
  color: var(--white);
}
.page-title-home.style-2 .item-1 {
  right: 8.7%;
  top: 7px;
}
.page-title-home.style-2 .item-2 {
  top: 88px;
  left: 5.5%;
}
.page-title-home.style-2 .item {
  position: absolute;
}
.page-title-home.style-2 .item.item-3 {
  top: 0;
  left: 0;
  width: 1342px;
  height: 773px;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 51.5% 100%, 0 74%);
}
.page-title-home.style-2 .item.item-3::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 1358px;
  height: 773px;
  background-color: var(--secondary);
  clip-path: polygon(0 0, 100% 0, 53% 100%, 0 73%);
}
.page-title-home.style-3 {
  background-image: url(../image/page-title/bg-page-home-3.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-3 .page-title-content {
  padding-top: 160px;
  padding-bottom: 305px;
  padding-left: 0;
  max-width: 1550px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-title-home.style-3 .swiper-img {
  background-color: var(--main-color);
  clip-path: polygon(20.5% 0%, 100% 0%, 100% 50%, 100% 100%, 20% 100%, 0% 51%);
  padding-left: 65px;
  padding-top: 56.5px;
  padding-right: 123px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.page-title-home.style-3 .swiper-img .image {
  clip-path: polygon(22% 0%, 100% 0%, 100% 50%, 100% 100%, 26% 100%, 0% 46.5%);
  position: relative;
}
.page-title-home.style-3 .swiper-img::before {
  width: 1px;
  height: 250px;
  content: "";
  background-color: var(--white);
  opacity: 0.6;
  position: absolute;
  top: 49.5px;
  right: 62px;
  z-index: 2;
}
.page-title-home.style-3 .swiper-img::after {
  width: 1px;
  height: 250px;
  content: "";
  background-color: var(--white);
  opacity: 0.6;
  position: absolute;
  bottom: 49.5px;
  right: 62px;
  z-index: 2;
}
.page-title-home.style-4 {
  background-image: url(../image/page-title/bg-page-home-4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.page-title-home.style-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F2F1FE 11.08%, rgba(255, 255, 255, 0) 85.25%);
}
.page-title-home.style-4 .title {
  padding-bottom: 45px !important;
}
.page-title-home.style-4 .page-title-inner {
  padding-top: 235px;
  padding-bottom: 206px;
  max-width: 1518px;
  margin: 0 auto;
}
.page-title-home.style-4 .page-title-content {
  position: relative;
  z-index: 2;
  padding: 0;
}
.page-title-home.style-4 .page-title-content .text-sub-heading {
  color: var(--secondary);
}

.heading-section {
  position: relative;
  z-index: 3;
}
.heading-section .sub-heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  color: var(--secondary);
  gap: 8px;
  margin-bottom: 15px;
}
.heading-section .sub-heading i {
  color: var(--main-color);
  font-size: 11.5px;
}
.heading-section .title {
  color: var(--secondary);
  letter-spacing: -0.1px;
}
.heading-section.style-color-white .sub-heading {
  color: var(--white);
}
.heading-section.style-color-white .title {
  color: var(--white);
}
.heading-section.style-2 {
  text-align: center;
}
.heading-section.style-2 .sub-heading {
  justify-content: center;
}

.section-content .text {
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: 0.1px;
}
.section-content .bottom-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.section-content .arrow-heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-content.style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 35px;
}
.section-content.mb-50 {
  margin-bottom: 50px;
}

.section-about {
  position: relative;
}
.section-about.home-1 .image-item {
  position: absolute;
  right: 0;
  top: -57px;
  z-index: -1;
}
.section-about.home-1 .about-left {
  position: relative;
}
.section-about.home-1 .about-left .image {
  border-radius: 8px;
 
}
.section-about.home-1 .about-left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about.home-1 .about-left .item-1 {
  padding-left: 46px;
}
.section-about.home-1 .about-left .item-2 {
  position: absolute;
  right: 30px;
  bottom: 23px;
}
.section-about.home-1 .about-left .item-3 {
  position: absolute;
  left: 0;
  top: 28px;
}
.section-about.home-1 .about-left .item-4 {
  width: 19px;
  height: 209px;
  border-radius: 8px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-about.home-1 .about-right.about-content ul {
  border-left: 4px solid var(--main-color);
  padding-left: 12px;
  margin-bottom: 40px;
}
.section-about ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  margin-bottom: 4px;
}
.section-about ul li i {
  color: var(--main-color);
  font-size: 20px;
}
.section-about.home-2 {
  background-image: url(../image/section/bg-section-about-h2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section-about.home-2::before {
  content: "";
  position: absolute;
  bottom: -87px;
  left: 0;
  width: 100%;
  height: 87px;
  background-color: var(--main-color);
}
.section-about.home-2 .about-left {
  position: relative;
  max-height: 559px;
  height: 100%;
  max-width: 528px;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}
.section-about.home-2 .about-left .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about.home-2 .about-left .item.item-1 {
  position: absolute;
  top: 8px;
  left: 17px;
}
.section-about.home-2 .about-left .item.item-2 {
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  overflow: hidden;
  max-height: 343px;
}
.section-about.home-2 .about-left .item.item-3 {
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  overflow: hidden;
}
.section-about.home-2 .item-4 {
  position: absolute;
  bottom: 29px;
  right: 0;
}
.section-about.home-2 .about-right {
  position: relative;
}
.section-about.home-2 .about-right .image {
  position: relative;
}
.section-about.home-2 .about-right .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about.home-2 .about-right .wg-tab {
  margin-bottom: 28px;
}
.section-about.home-2 .about-right .wg-tab .nav-tab-item {
  margin-bottom: 0;
}
.section-about.home-2 .about-right .text {
  letter-spacing: 0px;
}
.section-about.home-2 .about-right .tab-content {
  margin-top: 0 !important;
}
.section-about.home-4 .image-item {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: -1;
}
.section-about.home-4 .about-left {
  position: relative;
}
.section-about.home-4 .about-left .image {
  border-radius: 8px;
}
.section-about.home-4 .about-left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about.home-4 .about-left .item-2 {
  position: absolute;
  right: 30px;
  bottom: 52px;
}
.section-about.home-4 .about-right .about-right-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 39px;
}
.section-about.home-4 .about-right .counter-item .text {
  margin-bottom: 0;
}
.section-about.home-4 .about-right .rigth {
  margin-top: -4px;
}
.section-about.home-4 .section-content .text {
  margin-bottom: 32px;
}
.section-about.home-4 .benefit-list {
  margin-bottom: 38px;
}
.section-about.home-4 .image-about {
  max-width: 1095px;
  margin: 0 auto;
  transform: translateY(5%);
}

.tf-slider-banner-h1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.tf-slider-banner-h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 26px);
  background-color: var(--white);
}
.tf-slider-banner-h1 .left {
  max-width: 47%;
  width: 100%;
  background-color: var(--main-color);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85.5% 100%, 0% 100%);
}
.tf-slider-banner-h1 .left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/section/bg-slide-banner-h1.png);
  mix-blend-mode: screen;
}
.tf-slider-banner-h1 .right {
  margin-left: -100px;
  max-width: 58%;
  width: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.tf-slider-banner-h1 .slider-banner-prev {
  position: absolute;
  top: 50%;
  left: 42%;
  z-index: 5;
  transform: translateY(-50%);
  background-color: var(--main-color);
  border-color: transparent;
}
.tf-slider-banner-h1 .slider-banner-prev i {
  color: var(--white);
}
.tf-slider-banner-h1 .slider-banner-prev:hover {
  background-color: var(--white);
}
.tf-slider-banner-h1 .slider-banner-prev:hover i {
  color: var(--main-color);
}
.tf-slider-banner-h1 .slider-banner-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
  background-color: var(--main-color);
  border-color: transparent;
}
.tf-slider-banner-h1 .slider-banner-next i {
  color: var(--white);
}
.tf-slider-banner-h1 .slider-banner-next:hover {
  background-color: var(--white);
}
.tf-slider-banner-h1 .slider-banner-next:hover i {
  color: var(--main-color);
}

.tf-slider-banner-content {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 61px 0 0;
}
.tf-slider-banner-content .logo-banner {
  width: 166px;
  height: 147px;
  background-color: var(--white);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 9px;
}
.tf-slider-banner-content .logo-banner img {
  margin-right: 25px;
}
.tf-slider-banner-content .logo-banner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 11px;
  bottom: 8px;
  border-top: 1px dashed var(--main-color);
  border-bottom: 1px dashed var(--main-color);
  border-right: 1px dashed var(--main-color);
  background-color: transparent;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 1;
}
.tf-slider-banner-content .content .sub-title {
  color: var(--white);
  margin-bottom: 5px;
}
.tf-slider-banner-content .content .title {
  color: var(--white);
  margin-bottom: 29px;
}
.tf-slider-banner-content .content .tf-btn.bg-color-white {
  padding: 15px 36px;
}

.slider-banner-item .image {
  width: 99.2%;
  height: 290px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.slider-banner-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-our-services {
  position: relative;
}
.section-our-services.home-1 {
  background-image: url(../image/section/bg-our-services-h1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 257px;
  padding-bottom: 120px;
  margin-top: -145px;
}
.section-our-services.home-1 .section-content {
  margin-bottom: 48px;
}
.section-our-services.home-1 .section-content .heading-section {
  margin-bottom: 0;
  max-width: 628px;
}
.section-our-services.home-1 .section-content .text {
  max-width: 404px;
  color: var(--white);
  margin-bottom: 0;
  font-family: "Barlow", sans-serif;
}
.section-our-services.home-2 .image-item {
  position: absolute;
  top: -68px;
  right: 0;
}
.section-our-services.home-3 {
  background-image: url(../image/section/bg-section-our-services-h3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-our-services.home-3 .image-item {
  position: absolute;
  bottom: 0;
  right: 7px;
}
.section-our-services.home-4 {
  background-color: var(--line-3);
  position: relative;
}
.section-our-services.home-4::before {
  content: "";
  background-image: url(../image/section/bg-section-our-services-h4.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-our-team-member.home-1 {
  background-image: url(../image/section/bg-section-our-team-member.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-our-project {
  position: relative;
}
.section-our-project.home-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 69%;
  background-color: var(--line-3);
}
.section-our-project.home-1 .image-item {
  position: absolute;
  top: 89px;
  right: 0;
}
.section-our-project.home-2 {
  background-color: #F2F6FF;
  clip-path: polygon(50% 0%, 100% 3.5%, 100% 100%, 0 100%, 0 3.5%);
  margin-top: -13px;
  position: relative;
}
.section-our-project.home-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  clip-path: polygon(50% 0%, 100% 8%, 100% 100%, 0 100%, 0 8%);
}
.section-our-project.home-2 .swiper-arrow {
  transform: translateX(0);
  bottom: 159px;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
}
.section-our-project.home-2 .swiper-arrow::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  left: -270px;
}
.section-our-project.home-2 .swiper-arrow::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  right: -270px;
}
.section-our-project.home-2 .item {
  position: absolute;
}
.section-our-project.home-2 .item.item-1 {
  max-width: 1018px;
  width: 100%;
  height: 385px;
  background-color: var(--main-color);
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 43%, 100% 100%, 0 100%, 0% 43%);
}
.section-our-project.home-2 .image-item {
  position: absolute;
}
.section-our-project.home-2 .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-our-project.home-2 .image-item.item-2 {
  bottom: -223px;
  left: -65px;
  animation: rotare 10s infinite linear;
}
.section-our-project.home-2 .image-item.item-3 {
  bottom: 10px;
  right: 0;
}
.section-our-project.home-4 {
  overflow: hidden;
}
.section-our-project.home-4 .bg-section {
  position: absolute;
  width: 100%;
  height: 546px;
  top: 0;
  left: 0;
  background-color: var(--line-3);
}
.section-our-project.home-4 .bg-section::before {
  content: "";
  position: absolute;
  max-width: 48.4%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--main-color);
}
.section-our-project.home-4 .bg-section::after {
  content: "";
  background-image: url(../image/section/bg-section-project-h4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  max-width: 48.4%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
.section-our-project.home-4 .flat-animate-tab .tab-content {
  position: relative;
  margin-top: 49px;
}
.section-our-project.home-4 .heading-section .sub-heading i {
  color: var(--white);
}
.section-our-project.home-4 .section-content {
  align-items: start;
}
.section-our-project.home-4 .section-content .wg-tab {
  margin: 104px 0 0;
}

.section-our-pricing-plans {
  position: relative;
}
.section-our-pricing-plans .bottom-btn .tf-btn {
  padding: 5px 25px;
}
.section-our-pricing-plans .bottom-btn .tf-btn span {
  font-size: 15px;
  list-style: 18.6px;
}
.section-our-pricing-plans .image-item {
  position: absolute;
  right: 0;
  top: 108px;
}
.section-our-pricing-plans.home-2 {
  background-image: url(../image/section/bg-section-our-pricing-plans-h2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-our-pricing-plans.home-2 .image-item {
  position: absolute;
}
.section-our-pricing-plans.home-2 .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-our-pricing-plans.home-2 .image-item.item-1 {
  top: 137px;
  right: 18.4%;
  z-index: 2;
}
.section-our-pricing-plans.home-2 .image-item.item-2 {
  top: 215px;
  right: 7px;
  z-index: 1;
}

.section-costmary-benefit.home-1 {
  background-image: url(../image/section/bg-section-costmary-benefit-h1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.section-costmary-benefit.home-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #00194C 59.9%, rgba(0, 25, 76, 0) 193.33%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.section-costmary-benefit.home-1 .image-item {
  position: absolute;
}
.section-costmary-benefit.home-1 .image-item.item-1 {
  right: 0;
  bottom: 48px;
  z-index: 2;
}
.section-costmary-benefit.home-1 .image-item.item-2 {
  right: 0;
  bottom: 0;
  z-index: 1;
}
.section-costmary-benefit.home-1 .text {
  color: var(--color-text-5);
}

.section-testimonial {
  position: relative;
}
.section-testimonial.home-1 {
  background-color: var(--line-3);
  overflow: hidden;
}
.section-testimonial.home-1 .seciton-testimonial-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.section-testimonial.home-1 .image {
  max-width: 24.7%;
  width: 100%;
}
.section-testimonial.home-1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-testimonial.home-1 .section-testimonial-content {
  max-width: 54.8%;
  width: 100%;
  padding-left: 100px;
}
.section-testimonial.home-1 .image-item {
  position: absolute;
  bottom: 52px;
  right: 0;
}
.section-testimonial.home-3 {
  background-color: var(--line-3);
  overflow: hidden;
}
.section-testimonial.home-3::before {
  content: "";
  background-image: url(../image/section/bg-section-testimonial-h3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.section-testimonial.home-3 .section-testimonials-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px 60px;
  justify-content: space-between;
  margin-right: -32%;
}
.section-testimonial.home-3 .section-testimonials-inner .section-testimonial-content {
  max-width: calc(100% - 467px);
}
.section-testimonial.home-4 {
  background-image: url(../image/section/bg-section-testimonial-h4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-testimonial.home-4 .section-content {
  align-items: end;
}
.section-testimonial.home-4 .section-testimonial-content {
  position: relative;
}
.section-testimonial.home-4 .section-testimonial-content .wg-testimonial {
  position: absolute;
  right: 30px;
  bottom: -4px;
}
.section-testimonial.home-4 .image-section {
  margin-bottom: 40px;
}
.section-testimonial.home-4 .wg-testimonial {
  position: relative;
}
.section-testimonial.home-4 .wg-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -6px;
  left: 10px;
  right: 10px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  background-color: var(--white);
  opacity: 0.8;
}
.section-testimonial.home-4 .wg-testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -12px;
  left: 20px;
  right: 20px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  background-color: var(--white);
  opacity: 0.8;
}
.section-testimonial.home-4 .image-item {
  position: absolute;
  right: 0;
  top: 223px;
}
.section-testimonial.home-4 .tf-btn::before {
  background-color: var(--white);
}
.section-testimonial.home-4 .tf-btn:hover i,
.section-testimonial.home-4 .tf-btn:hover span {
  color: var(--secondary);
}
.section-testimonial.about-us {
  overflow: hidden;
}
.section-testimonial.about-us .section-testimonials-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px 78px;
  margin-right: -33%;
}
.section-testimonial.about-us .section-testimonials-inner .section-testimonial-content {
  max-width: calc(100% - 467px);
}

.section-new.home-1 {
  position: relative;
}
.section-new.home-1 .image-item {
  position: absolute;
  bottom: -67px;
  right: 0;
  z-index: -1;
}
.section-new.home-1 .tf-post-grid .meta {
  padding-bottom: 15px !important;
}

.section-call-now-CTA {
  margin-bottom: -124px;
  z-index: 5;
  position: relative;
}
.section-call-now-CTA.home-3 {
  margin-top: -114px;
}
.section-call-now-CTA.home-4 {
  margin-top: -138px;
  margin-bottom: -135px;
}
.section-call-now-CTA.home-4 .form-call-now-CTA {
  padding: 33px 50px 49px 15px;
  max-width: 696px;
}

.section-why-choose-us {
  position: relative;
}
.section-why-choose-us.home-2 .image {
  max-width: 49.4%;
  position: relative;
  margin: 0 auto;
  padding-left: 9px;
}
.section-why-choose-us.home-2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-why-choose-us.home-2 .image-item {
  position: absolute;
}
.section-why-choose-us.home-2 .image-item.item-1 {
  left: 0;
  top: 169px;
}
.section-why-choose-us.home-2 .image-item.item-2 {
  right: 0;
  top: 169px;
}
.section-why-choose-us.home-2 .text-item {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  width: 272px;
  height: 108px;
  padding: 20px 40px 20px 20px;
  align-items: center;
  background-image: url(../image/section/bg-text-item.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
  z-index: 2;
}
.section-why-choose-us.home-2 .text-item .icon {
  width: 68px;
  height: 68px;
  background-color: var(--main-color);
  position: relative;
  z-index: 3;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.0588235294);
}
.section-why-choose-us.home-2 .text-item .icon::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  height: 4px;
  background-color: var(--white);
}
.section-why-choose-us.home-2 .text-item .icon i {
  color: var(--white);
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-why-choose-us.home-2 .text-item .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.section-why-choose-us.home-2 .text-item .content span {
  color: var(--secondary);
}
.section-why-choose-us.home-2 .text-item.style-2 {
  background-image: url(../image/section/bg-text-item-2.png);
  background-position: left;
  padding: 20px 20px 20px 40px;
}
.section-why-choose-us.home-2 .text-item.item-1 {
  top: -0.5%;
  left: 0%;
}
.section-why-choose-us.home-2 .text-item.item-2 {
  top: 37.7%;
  left: 0%;
}
.section-why-choose-us.home-2 .text-item.item-3 {
  bottom: 3%;
  left: 0%;
}
.section-why-choose-us.home-2 .text-item.item-4 {
  top: -2px;
  right: -7px;
}
.section-why-choose-us.home-2 .text-item.item-5 {
  top: 37.5%;
  right: -15px;
}
.section-why-choose-us.home-2 .text-item.item-6 {
  bottom: 3%;
  right: -15px;
}
.section-why-choose-us.home-2 .animate-item {
  position: absolute;
  width: 14px;
  height: 14px;
}
.section-why-choose-us.home-2 .animate-item .line {
  height: 1px;
  position: absolute;
  background-color: var(--main-color);
}
.section-why-choose-us.home-2 .animate-item .line.line-1 {
  width: 66.5px;
  transform: translateX(-50%) rotate(90deg);
  left: 50%;
  top: -18px;
}
.section-why-choose-us.home-2 .animate-item .line.line-1::before {
  content: "";
  position: absolute;
  top: 83px;
  right: -17px;
  width: 167px;
  height: 100%;
  background-color: var(--main-color);
  transform: rotate(90deg);
}
.section-why-choose-us.home-2 .animate-item .line.line-2 {
  width: 205px;
  top: 50%;
  right: 0;
}
.section-why-choose-us.home-2 .animate-item .line.line-3 {
  width: 267px;
  top: 50%;
  right: 0;
}
.section-why-choose-us.home-2 .animate-item .line.line-4 {
  width: 29.5px;
  transform: translateX(-50%) rotate(90deg);
  left: 50%;
  top: -18px;
}
.section-why-choose-us.home-2 .animate-item .line.line-4::before {
  content: "";
  position: absolute;
  top: -83px;
  right: -54px;
  width: 167px;
  height: 100%;
  background-color: var(--main-color);
  transform: rotate(90deg);
}
.section-why-choose-us.home-2 .animate-item .line.line-5 {
  width: 56.5px;
  transform: translateX(-50%) rotate(90deg);
  left: 50%;
  bottom: -18px;
}
.section-why-choose-us.home-2 .animate-item .line.line-5::before {
  content: "";
  position: absolute;
  top: -83px;
  left: -28px;
  width: 167px;
  height: 100%;
  background-color: var(--main-color);
  transform: rotate(90deg);
}
.section-why-choose-us.home-2 .animate-item .line.line-6 {
  width: 267px;
  top: 50%;
  left: 0;
}
.section-why-choose-us.home-2 .animate-item .plus-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 50%;
}
.section-why-choose-us.home-2 .animate-item .plus-icon span {
  position: relative;
  z-index: 2;
}
.section-why-choose-us.home-2 .animate-item .plus-icon span::before {
  content: "";
  height: 7px;
  width: 1px;
  border-radius: 999px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-why-choose-us.home-2 .animate-item .plus-icon span::after {
  content: "";
  width: 7px;
  height: 1px;
  border-radius: 999px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-why-choose-us.home-2 .animate-item .wave {
  background-color: var(--main-color);
  animation: ripple2 2s infinite;
}
.section-why-choose-us.home-2 .animate-item.item01 {
  top: 19.4%;
  left: 35.9%;
}
.section-why-choose-us.home-2 .animate-item.item02 {
  top: 46.2%;
  left: 39.3%;
}
.section-why-choose-us.home-2 .animate-item.item03 {
  bottom: 13%;
  left: 44.7%;
}
.section-why-choose-us.home-2 .animate-item.item04 {
  top: 16.7%;
  right: 32%;
}
.section-why-choose-us.home-2 .animate-item.item05 {
  top: 36.9%;
  right: 27%;
}
.section-why-choose-us.home-2 .animate-item.item06 {
  bottom: 11.8%;
  right: 41%;
}
.section-why-choose-us.home-3 {
  background-image: url(../image/section/bg-section-why-choose-us-h3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-why-choose-us.home-3 .section-content {
  position: relative;
  z-index: 5;
}
.section-why-choose-us.home-3 .text {
  text-transform: capitalize;
  margin-bottom: 36px;
}
.section-why-choose-us.home-3 .support-item {
  margin-bottom: 34px;
}
.section-why-choose-us.home-3 .support-item:last-child {
  margin-bottom: 0;
}
.section-why-choose-us.home-3 .item {
  position: absolute;
}
.section-why-choose-us.home-3 .item.item-1 {
  right: 0;
  top: 3px;
  bottom: 0;
  max-width: 881.5px;
  width: 50%;
}
.section-why-choose-us.home-3 .item.item-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  clip-path: polygon(20% 0%, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0% 50%);
}
.section-why-choose-us.home-3 .item.item-2 {
  bottom: 17px;
  left: 0;
}

.section-how-it-work {
  position: relative;
}
.section-how-it-work.home-2 {
  background-image: url(../image/section/section-how-it-work-h2-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.section-how-it-work.home-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #00194C 59.9%, rgba(0, 25, 76, 0) 193.33%);
}
.section-how-it-work.home-2 .heading-section {
  margin-bottom: 106px;
}
.section-how-it-work.home-2 .image-item {
  position: absolute;
}
.section-how-it-work.home-2 .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-how-it-work.home-2 .image-item.item-1 {
  bottom: 0;
  right: 0;
}
.section-how-it-work.home-2 .image-item.item-2 {
  right: 21px;
  bottom: 0;
}
.section-how-it-work.home-2 .image-item.item-3 {
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
}
.section-how-it-work.home-2 .guide-wrap {
  position: relative;
  z-index: 3;
}

.section-FAQ {
  position: relative;
}
.section-FAQ.home-2 {
  background-image: url(../image/section/bg-section-FAQ-h2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.section-FAQ.home-2 .image-item {
  position: absolute;
}
.section-FAQ.home-2 .image-item.item-1 {
  top: 0;
  left: 0;
}
.section-FAQ.home-2 .image-item.item-2 {
  bottom: 38px;
  right: 0;
}
.section-FAQ.home-2 .image-item.item-3 {
  bottom: 0;
  right: 0;
}
.section-FAQ.home-2 .wg-according {
  position: relative;
  z-index: 3;
}

.section-what-we-do {
  position: relative;
}
.section-what-we-do.home-3 {
  background-image: url(../image/section/bg-section-what-we-do-h3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 77px;
}
.section-what-we-do.home-3 .section-what-we-do-inner {
  margin-top: -165px;
  position: relative;
  margin-bottom: 80px;
}
.section-what-we-do.home-3 .item {
  position: relative;
  z-index: 3;
}
.section-what-we-do.home-3 .item.item-1 {
  width: 19px;
  height: 209px;
  border-radius: 8px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-what-we-do.home-3 .what-we-do-content {
  position: relative;
  padding-left: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 60px;
  z-index: 3;
}
.section-what-we-do.home-3 .what-we-do-content .section-content {
  max-width: calc(100% - 494px);
  padding-right: 60px;
}
.section-what-we-do.home-3 .what-we-do-content .section-content .text {
  line-height: 30px;
  text-transform: capitalize;
  letter-spacing: 0.05px;
  margin-bottom: 29px;
}
.section-what-we-do.home-3 .what-we-do-content .image {
  position: relative;
  z-index: 2;
  margin-top: 8px;
}
.section-what-we-do.home-3 .what-we-do-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-what-we-do.home-3 .wg-brands {
  position: relative;
  z-index: 3;
}
.section-what-we-do.home-3 .support-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.section-what-we-do.home-3 .support-list .support-item {
  flex: 1 1 calc(50% - 22px);
}
.section-what-we-do.home-3 .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-what-we-do.home-3 .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-what-we-do.home-3 .image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  max-width: 1131px;
  width: 100%;
  height: 363px;
  background-color: var(--main-color);
  bottom: 0;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 92.5% 100%, 0 100%, 0% 50%);
}
.section-what-we-do.home-3 .image-bg::after {
  content: "";
  position: absolute;
  top: -1px;
  max-width: 1103px;
  width: 100%;
  height: 364px;
  background-color: var(--white);
  bottom: 0;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 92% 100%, 0 100%, 0% 50%);
}

.section-call-to-action {
  position: relative;
  z-index: 5;
}
.section-call-to-action.home-3 {
  margin-top: -92px;
  margin-bottom: -102px;
}

.section-achievement.home-3 {
  background-image: url(../image/section/section-how-it-work-h2-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.section-achievement.home-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #00194C 59.9%, rgba(0, 25, 76, 0) 193.33%);
}
.section-achievement.home-3 .heading-section {
  margin-bottom: 68px;
}
.section-achievement.home-3 .section-achievement-content {
  position: relative;
  z-index: 5;
}
.section-achievement.home-3 .image-item {
  position: absolute;
}
.section-achievement.home-3 .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-achievement.home-3 .image-item.item-1 {
  bottom: 0;
  right: 0;
  max-width: 370px;
}
.section-achievement.home-3 .image-item.item-2 {
  right: 21px;
  bottom: 0;
  max-width: 296px;
}
.section-achievement.home-3 .image-item.item-3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.section-video.home-4 {
  margin-top: -225px;
  margin-bottom: 94px;
}

.section-wg-counter.home-4 {
  padding-bottom: 96px;
}

.section-personal-information {
  background-color: var(--line-3);
  padding: 57px 0 189px;
  margin-bottom: -85px;
}

.section-FAQ-list {
  margin-bottom: 60px;
}

.section-contact-us .section-contact-us-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.section-contact-us .section-contact-us-inner .wg-map {
  flex: 1 1 auto;
  width: 100%;
  max-width: 500px;
}
.section-contact-us .section-contact-us-inner .wg-contact-us {
  flex: 1 1 auto;
  width: 100%;
  max-width: calc(100% - 560px);
}

.section-description .description-content {
  margin-bottom: 51px;
}
.section-description .description-content .title {
  color: var(--secondary);
  line-height: 37.8px;
  margin-bottom: 21px;
}
.section-description .description-content .text p {
  line-height: 30px;
  margin-bottom: 30px;
  color: var(--color-text);
}
.section-description .description-content .text p:last-child {
  margin-bottom: 0;
}
.section-description .description-content.description {
  padding-bottom: 49px;
  border-bottom: 1px solid var(--line);
}
.section-description .description-content.review .title {
  margin-bottom: 52px;
}

.section-billing-details {
  margin-bottom: 65px;
}

.section-shop-details .update-cart-btn {
  margin-right: 5px;
}

.swiper-grid-3,
.swiper-grid-4 {
  padding: 25px 15px;
  margin: -25px -15px;
}

/*-------------- Responsive ----------------- */
@media (min-width: 1920px) {
  .page-title-home.style-2 .item-1 {
    top: auto !important;
    bottom: 0 !important;
  }
}
@media (min-width: 1434px) {
  .page-title-home.style-2 .page-title-inner {
    padding-left: 200px;
  }
  .header.style-2 .header-top {
    border-bottom: 1px solid var(--line);
  }
  .header.style-2 .header-top .logo {
    padding-right: 48px;
    position: relative;
  }
  .header.style-2 .header-top .logo::before {
    content: "";
    width: 1px;
    height: 123px;
    position: absolute;
    right: 0;
    top: -33px;
    background-color: var(--line);
  }
  .header.style-2 .header-top .content-contact {
    position: relative;
    padding-right: 100px;
  }
  .header.style-2 .header-top .content-contact::before {
    content: "";
    width: 1px;
    height: 123px;
    position: absolute;
    right: 0;
    top: -33px;
    background-color: var(--line);
  }
  .header.style-2 .header-top .content-contact:last-child {
    padding-right: 0 !important;
  }
  .header.style-2 .header-top .content-contact:last-child::before {
    display: none;
  }
  .header.style-2 .header-top .mega-menu {
    padding-left: 50px;
    position: relative;
  }
  .header.style-2 .header-top .mega-menu::before {
    content: "";
    width: 1px;
    position: absolute;
    height: 123px;
    left: 0;
    top: -33px;
    background-color: var(--line);
  }
  .header.style-2 .main-menu {
    padding-left: 96px !important;
  }
  .header.style-2 .contact {
    gap: 95px !important;
  }
}
@media (min-width: 1201px) {
  .section-our-pricing-plans.home-2 .heading-section {
    margin-left: -40px;
  }
  .ml--40 {
    margin-left: -40px;
  }
  .section-shop-list {
    overflow: hidden;
  }
  .section-shop-list .section-shop-list-inner {
    margin-right: -35px;
  }
  .section-our-project-content {
    margin-right: -33.5%;
  }
  .section-achievement.home-3 .section-achievement-content {
    margin-left: 55px;
  }
  .contact {
    gap: 82px !important;
  }
  .icon-mobile {
    display: none;
  }
  .header-top-inner {
    padding: 30px 0;
  }
  .mobile-button {
    display: none;
  }
  .header.style-2 .main-header {
    background-color: var(--white);
  }
  .header.style-2 .menu-primary-menu .item-link {
    color: var(--secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header.style-2 .menu-primary-menu .item-link span::before, .header.style-2 .menu-primary-menu .item-link span::after {
    background-color: var(--secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header.style-2 .menu-primary-menu .menu-item:hover .item-link {
    color: var(--main-color);
  }
  .header.style-2 .menu-primary-menu .menu-item:hover .item-link span::before, .header.style-2 .menu-primary-menu .menu-item:hover .item-link span::after {
    background-color: var(--main-color);
  }
  .header.style-2 .nav-search a:hover svg path {
    fill: var(--main-color);
  }
  .header.style-2 .nav-cart i {
    color: var(--secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header.style-2 .nav-cart a:hover i {
    color: var(--main-color);
  }
}
@media (min-width: 1050px) {
  .section-testimonial.home-3 .section-content {
    padding-top: 15px;
  }
  .tf-post-list.desc .tf-post-list-content {
    padding: 30px 10px 24px 30px;
    max-width: calc(100% - 247px);
  }
  .footer .footer-left {
    max-width: 340px;
  }
  .footer .footer-midder {
    gap: 86.81px;
  }
  .ig-item .image {
    max-width: 80px;
  }
}
@media (min-width: 992px) {
  .section-our-project.home-4 .flat-animate-tab {
    margin-right: -7px;
  }
  .flat-animate-tab {
    overflow: visible;
  }
  .mr-45 {
    margin-right: 45px;
  }
  .section-about.home-2 .about-right {
    margin-left: -10px;
  }
  .wg-contact-us {
    margin-top: -11px;
  }
  .according-item p {
    padding-right: 30px;
  }
  .section-FAQ-list .heading-section .title {
    padding-right: 31px;
  }
  .progress-bars-list {
    padding-right: 46px;
  }
  .section-how-it-work.home-2 .heading-section {
    padding-left: 38px;
  }
  .section-FAQ.home-2 .section-content {
    padding-left: 30px;
    margin-top: -11px;
  }
  .section-how-it-work .heading-section {
    padding-left: 38px;
  }
 
  .section-about.home-1 .about-left .item-1 {
    padding-left: 46px;
  }
  .section-about.home-1 .about-right {
    margin-left: -7px;
    padding-top: 10px;
  }
  .section-about.home-2 .about-right .wg-tab {
    margin-top: -55px;
    margin-left: 82px;
  }
  .section-about.home-4 .about-left .image {
    border-radius: 8px;
    max-width: 424px;
  }
  .section-about.home-4 .about-left .item-1 {
    padding-left: 46px;
    padding-top: 8px;
  }
  .section-about.home-4 .about-right {
    margin-left: -7px;
  }
  .form-payment {
    padding: 30px 40px 30px 30px;
    background-color: var(--line-3);
  }
  .payment-item .payment-body {
    padding: 8px 0 31px 36px;
  }
  .wg-gallery {
    gap: 30px;
  }
  .services-item.no-image .services-content {
    width: calc(100% - 91px);
  }
  .footer-left {
    margin-left: -4px;
    padding-top: 8px;
  }
}
@media (max-width: 1830px) {
  .page-title-home.style-1 .image, .page-title-home.style-2 .image {
    bottom: 0;
  }
}
@media (max-width: 1700px) {
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 60%;
    padding-left: 70px;
  }
  .section-why-choose-us {
    position: relative;
  }
  .section-why-choose-us.home-3 .item.item-2 {
    display: none;
  }
  .section-our-services.home-3 .image-item {
    display: none;
  }
  .section-new.home-1 .image-item {
    display: none;
  }
}
@media (max-width: 1600px) {
  .section-testimonial.home-1 .image {
    max-width: 25.7%;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 64%;
    padding-left: 50px;
  }
  .slider-page-title-home-1 .swiper-arrow {
    left: 15px !important;
  }
  .page-title-home.style-2 .page-title-inner {
    padding-left: 100px;
  }
  .page-title-home.style-2 .item-1 {
    right: 15px !important;
  }
}
@media (max-width: 1650px) {
  .section-our-pricing-plans.home-1 .image-item {
    display: none;
  }
  .section-our-pricing-plans.home-2 .image-item {
    display: none;
  }
}
@media (max-width: 1500px) {
  .section-about.home-2 .item-4 {
    display: none;
  }
  .section-testimonial.home-1 .image {
    max-width: 26.7%;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 67%;
    padding-left: 30px;
  }
  .services-list.grid-5 .services-item:nth-child(1) {
    flex: 1 1 33.33%;
  }
  .services-list.grid-5 .services-item:nth-child(2) {
    flex: 1 1 33.33%;
  }
  .services-list.grid-5 .services-item:nth-child(3) {
    flex: 1 1 33.33%;
  }
  .services-list.grid-5 .services-item:nth-child(4) {
    flex: 1 1 50%;
  }
  .services-list.grid-5 .services-item:nth-child(5) {
    flex: 1 1 50%;
  }
  .tf-slider-banner-h1 {
    gap: 15px;
    justify-content: space-between;
  }
  .tf-slider-banner-h1 .left {
    max-width: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .tf-slider-banner-h1 .right {
    max-width: 50%;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .tf-slider-banner-h1 .slider-banner-next,
  .tf-slider-banner-h1 .slider-banner-prev {
    display: none;
  }
  .tf-slider-banner-h1 .slider-banner-item .image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .page-title-home.style-1 .page-title-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-title-home.style-1 .page-title-inner .item-2 {
    right: 15px !important;
  }
}
@media (max-width: 1400px) {
  .section-testimonial.home-1 .image {
    max-width: 30%;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 70%;
    padding-left: 30px;
    padding-right: 15px;
  }
  .call-now-CTA .item-call-now-CTA {
    display: none;
  }
  .page-title-home.style-1 .page-title-inner .item-2,
  .page-title-home.style-1 .page-title-inner .item-3 {
    display: none;
  }
  .page-title-home .page-title-inner {
    position: relative;
    padding-left: 15px !important;
  }
  .slider-page-title-home .slider-arrow {
    display: none !important;
  }
  .swiper-img {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  .section-testimonial.home-1 .image {
    max-width: 30%;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .tf-slider-banner-h1 .tf-slider-banner-content {
    padding: 40px 15px 41px 0 !important;
  }
  .header.style-4 .image {
    display: none;
  }
  .header.style-4 .logo a,
  .header.style-4 .logo .overlay {
    width: 180px !important;
  }
  .section-FAQ.home-2 .image-item {
    display: none;
  }
  .call-now-CTA {
    background-color: var(--main-color);
  }
  .call-now-CTA .call-now-CTA-content {
    padding-right: 0 !important;
    clip-path: none;
  }
  .call-now-CTA .call-now-CTA-content::before {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .section-about .image-item {
    display: none;
  }
  .section-why-choose-us.home-2 .image {
    padding-left: 0;
  }
  .section-why-choose-us.home-2 .text-item {
    width: max-content;
    height: auto !important;
  }
  .section-why-choose-us.home-2 .text-item.item-4, .section-why-choose-us.home-2 .text-item.item-5, .section-why-choose-us.home-2 .text-item.item-6 {
    right: 0;
  }
  .wg-counter.style-2 {
    gap: 30px 0px !important;
    justify-content: space-between;
  }
  .section-testimonial.home-1 .seciton-testimonial-inner {
    gap: 0;
  }
  .section-testimonial.home-1 .image {
    max-width: 40%;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-title-home.style-2 .title {
    font-size: 60px;
    line-height: 70px;
  }
  .section-contact-us .section-contact-us-inner {
    gap: 60px;
  }
  .services-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .services-list.grid-4 .services-item {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .section-our-project.home-4 .bg-section::before {
    max-width: 100%;
  }
  .section-our-project.home-4 .bg-section::after {
    max-width: 100%;
  }
  .section-our-project.home-4 .section-content .wg-tab {
    margin: 20px 0 0;
  }
  .section-our-project.home-4 .section-content .wg-tab .nav-tab-item a {
    color: var(--white);
  }
  .section-our-project.home-4 .section-content .wg-tab .nav-tab-item a::before {
    background-color: var(--white);
  }
  .section-about.home-4 .about-right .about-right-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section-what-we-do.home-3 .item {
    display: none;
  }
  .section-what-we-do.home-3 .what-we-do-content {
    background-color: var(--white);
    padding-left: 0 !important;
  }
  .section-what-we-do.home-3 .what-we-do-content .section-content {
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-bottom: 30px;
  }
  .section-what-we-do.home-3 .what-we-do-content .image {
    margin-top: 0 !important;
  }
  .section-what-we-do.home-3 .image-bg {
    display: none;
  }
  .contact {
    display: none;
  }
  .call-now-CTA {
    background-color: var(--main-color);
  }
  .call-now-CTA .form-contact {
    width: auto;
    background-color: var(--main-color);
    width: 600px;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .call-now-CTA .call-now-CTA-content {
    padding-left: 15px !important;
  }
  .call-now-CTA .call-now-CTA-content::before {
    display: none !important;
  }
  .call-now-CTA .form-call-now-CTA {
    padding-right: 15px !important;
  }
  .tf-post-grid .tf-post-grid-content .meta {
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }
  .tf-post-grid .tf-post-grid-content .meta.style-2 {
    justify-content: center;
  }
  .header .main-header {
    display: none;
  }
  .header.style-2 .header-top {
    border-bottom: 0;
  }
  .header.style-2 .header-top .logo {
    padding-right: 0;
    position: relative;
  }
  .header.style-2 .header-top .logo::before {
    display: none;
  }
  .header.style-2 .mega-menu {
    display: none;
  }
  .header.style-3 .header-content {
    padding: 0px 0;
  }
  .header.style-3 .mega-menu {
    display: none;
  }
  .header.style-3 .nav-btn {
    display: none;
  }
  .header.style-3 .main-menu {
    display: none;
  }
  .header.style-4 .mega-menu {
    display: none;
  }
  .header.style-4 .nav-btn {
    display: none;
  }
  .header.style-4 .main-menu {
    display: none;
  }
  .header.style-4 .header-content {
    height: 78px !important;
  }
  .header.style-4 .header-content .logo a {
    height: 100px;
  }
  .header.style-4 .header-content .logo .overlay {
    display: none;
  }
  .header-fix .header-content {
    padding: 10px 0;
  }
  .header-fix .nav-icon {
    margin-right: 16px !important;
  }
  .header-fix .mega-menu {
    display: none;
  }
  .header-fix .nav-btn {
    display: none;
  }
  .header-fix .main-menu {
    display: none;
  }
}
@media (max-width: 1149px) {
  .wg-fillter {
    display: none;
  }
  .offcanvasFillter .wg-fillter {
    display: block !important;
  }
  .fillter-btn {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1120px) {
  .guide-wrap {
    gap: 10px;
  }
  .guide-wrap-item .guide-wrap-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 1050px) {
  .section-testimonial.home-3 .section-testimonials-inner {
    flex-direction: column;
    margin: 0 !important;
    width: 100%;
  }
  .section-testimonial.home-3 .section-testimonials-inner .section-content {
    width: 100%;
  }
  .section-testimonial.home-3 .section-testimonial-content {
    max-width: 100% !important;
  }
  .section-testimonial.about-us .section-testimonials-inner {
    flex-direction: column;
    margin: 0 !important;
    width: 100%;
  }
  .section-testimonial.about-us .section-testimonials-inner .section-content {
    width: 100%;
  }
  .section-testimonial.about-us .section-testimonial-content {
    max-width: 100% !important;
  }
  .section-testimonial.about-us br {
    display: none;
  }
  .call-now-CTA .call-now-CTA-content {
    max-width: 40%;
    width: 100%;
  }
  .call-now-CTA .form-call-now-CTA {
    max-width: 60%;
    width: 100%;
  }
  .call-now-CTA.style-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .call-now-CTA.style-2 .image-call-now-CTA {
    flex: 1 1 36%;
  }
  .call-now-CTA.style-2 .form-call-now-CTA {
    flex: 1 1 63%;
  }
  .mega-menu {
    display: none;
  }
  .footer .footer-inner {
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    display: grid;
    position: relative;
    grid-template-areas: "a b" "c d";
  }
  .footer .footer-inner .footer-left {
    grid-area: a;
  }
  .footer .footer-inner .quick-link {
    grid-area: b;
  }
  .footer .footer-inner .our-services {
    grid-area: c;
  }
  .footer .footer-inner .footer-right {
    grid-area: d;
  }
  .contact {
    display: none;
  }
}
@media (max-width: 991px) {
  .top-bar .tf-tb-left .top-bar-content {
    border: none;
  }
  .top-bar .tf-tb-left .top-bar-content:nth-child(2) {
    display: none;
  }
  .top-bar .tf-tb-right .top-bar-content {
    border: none;
  }
  .top-bar .tf-tb-right .top-bar-content:nth-child(1) {
    display: none;
  }
  .section-why-choose-us.home-2 .text-item {
    padding: 10px 20px 10px 10px;
  }
  .section-why-choose-us.home-2 .text-item .icon {
    width: 50px;
    height: 50px;
  }
  .section-why-choose-us.home-2 .text-item .icon::before {
    left: 7px;
    right: 7px;
  }
  .section-why-choose-us.home-2 .text-item .icon i {
    font-size: 30px;
  }
  .section-why-choose-us.home-2 .text-item.style-2 {
    padding: 10px 10px 10px 20px;
  }
  .section-why-choose-us.home-2 .text-item.item-5 {
    top: 45.5% !important;
  }
  .section-what-we-do.home-3 .section-what-we-do-inner {
    margin-top: 0;
  }
  .section-our-project.home-2 .image-item,
  .section-our-project.home-2 .item,
  .section-our-project.home-2 .swiper-arrow {
    display: none;
  }
  .section-call-to-action {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .section-call-to-action .call-to-action {
    flex-wrap: wrap;
    gap: 15px;
  }
  .section-call-to-action .image {
    flex: 1 1 50%;
  }
  .section-call-to-action .call-to-action-content {
    padding: 0 15px 15px;
    width: 100%;
  }
  .section-call-to-action .call-to-action-content .title {
    font-size: 25px;
    line-height: 30px;
    margin: 10px !important;
  }
  .section-call-to-action .call-to-action-content .number-phone a {
    font-size: 20px;
  }
  .section-call-to-action .image-item {
    display: none;
  }
  .section-call-now-CTA {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .section-our-services.home-1 {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 0;
  }
  .tf-slider-banner-h1 {
    margin-bottom: 70px;
  }
  .section-video.home-4 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .footer .footer-inner {
    padding-top: 70px !important;
  }
  .section-testimonial .image-item {
    display: none;
  }
  .heading-section .sub-heading {
    margin-bottom: 35px !important;
  }
  .mb-40,
  .mb-48,
  .mb-42,
  .mb-50,
  .mb-52 {
    margin-bottom: 35px !important;
  }
  h1 {
    font-size: 40px !important;
    line-height: 45px !important;
  }
  h2 {
    font-size: 28px;
    line-height: 40px;
  }
  h3 {
    font-size: 30px;
    line-height: 35px;
  }
  .body-2 {
    font-size: 16px;
    line-height: 20px;
  }
  .body-3 {
    font-size: 18px;
    line-height: 20px;
  }
  .tf-spacing-1,
  .tf-spacing-2,
  .tf-spacing-10,
  .tf-spacing-26,
  .tf-spacing-28,
  .tf-spacing-30,
  .tf-spacing-31,
  .tf-spacing-32,
  .tf-spacing-33,
  .tf-spacing-34,
  .tf-spacing-35 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .tf-spacing-4,
  .tf-spacing-5,
  .tf-spacing-8,
  .tf-spacing-11,
  .tf-spacing-12,
  .tf-spacing-13,
  .tf-spacing-14,
  .tf-spacing-15,
  .tf-spacing-16,
  .tf-spacing-17,
  .tf-spacing-18,
  .tf-spacing-19,
  .tf-spacing-20,
  .tf-spacing-21,
  .tf-spacing-22,
  .tf-spacing-23,
  .tf-spacing-24,
  .tf-spacing-25,
  .tf-spacing-27,
  .tf-spacing-29,
  .tf-spacing-36 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .tf-spacing-3,
  .tf-spacing-6 {
    margin-top: 0;
    margin-bottom: 70px;
  }
  .tf-spacing-7,
  .tf-spacing-9 {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .page-title-home br {
    display: none !important;
  }
  .page-title-home .page-title-content {
    padding: 0 !important;
  }
  .page-title-home .page-title-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-title-home .boder-box {
    display: none;
  }
  .page-title-home.style-1 {
    height: auto;
  }
  .page-title-home.style-1 .item-1 {
    display: none !important;
  }
  .page-title-home.style-1 .page-title-content {
    padding: 0 !important;
  }
  .page-title-home.style-2 br {
    display: none !important;
  }
  .page-title-home.style-2 .page-title-content {
    max-width: 64%;
  }
  .page-title-home.style-2 .image-item {
    max-width: 300px;
    top: 50%;
    transform: translateY(-50%);
  }
  .tf-slider-banner-h1 .tf-slider-banner-content {
    padding-left: 15px !important;
  }
  .tf-slider-banner-h1 .tf-slider-banner-content .logo-banner {
    display: none;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
  }
  .section-contact-us .section-contact-us-inner {
    flex-direction: column;
  }
  .section-contact-us .section-contact-us-inner .wg-map {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .section-contact-us .section-contact-us-inner .wg-contact-us {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .section-our-project.home-4 .section-content .wg-tab {
    overflow: auto;
    width: 100%;
  }
  .section-our-project.home-4 .section-content .wg-tab ul,
  .section-our-project.home-4 .section-content .wg-tab .line {
    width: 422px;
  }
  .section-our-project.home-4 .section-content .wg-tab ul::before, .section-our-project.home-4 .section-content .wg-tab ul:after {
    display: none !important;
  }
  .section-why-choose-us {
    position: relative;
  }
  .section-why-choose-us.home-3 .item {
    display: none;
  }
  .section-what-we-do.home-3 .what-we-do-content {
    flex-direction: column;
    gap: 0;
  }
  .section-what-we-do.home-3 .what-we-do-content .section-content {
    padding: 60px 15px !important;
  }
  .section-how-it-work.home-2 .image-item {
    display: none;
  }
  .wg-counter {
    flex-wrap: wrap;
    padding: 30px 15px;
    justify-content: space-between;
    gap: 30px 0;
  }
  .wg-counter .counter-item {
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
  }
  .section-about.home-1 .item-1 .image {
    max-width: 100%;
  }
  .section-about.home-2 .about-left {
    max-width: 600px;
    margin: 0 auto;
  }
  .form-login {
    padding: 30px 15px !important;
  }
  .form-login .title-login {
    margin-bottom: 30px !important;
  }
  .guide-wrap {
    justify-content: space-between;
    gap: 15px;
  }
  .guide-wrap .icon-guide-wrap {
    display: none;
  }
  br {
    display: none !important;
  }
  .wg-tab {
    overflow-x: auto;
  }
  .wg-tab::-webkit-scrollbar {
    display: none;
  }
  .wg-tab .line,
  .wg-tab ul {
    width: 927px;
  }
  .wg-tab.style-2 ul {
    width: auto !important;
  }
  .project-list {
    flex-wrap: wrap;
  }
  .project-list .project-item {
    width: 100%;
  }
}
@media (max-width: 875px) {
  .call-now-CTA.style-2 .image-call-now-CTA {
    display: none;
  }
  .call-now-CTA.style-2 .form-call-now-CTA {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 784px) {
  .gallery-item .gallery-content .icon {
    width: 30px !important;
    height: 30px !important;
  }
  .gallery-item .gallery-content .icon i {
    font-size: 15px !important;
  }
}
@media (max-width: 768px) {
  .section-why-choose-us.home-2 .image-item {
    display: none;
  }
  .page-title .page-title-inner {
    background-attachment: unset;
  }
  .wg-services-details .image-services-details img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
  .section-why-choose-us.home-2 .image {
    max-width: 100%;
  }
  .section-why-choose-us.home-2 .text-item.item-2 {
    top: 51.7%;
    left: 8%;
  }
  .section-why-choose-us.home-2 .text-item.item-3 {
    bottom: -2%;
    left: 0;
  }
  .section-why-choose-us.home-2 .text-item.item-6 {
    bottom: -5%;
    right: 0;
  }
  .section-why-choose-us.home-2 .animate-item {
    position: absolute;
    width: 14px;
    height: 14px;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-1 {
    top: -33px;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-1::before {
    display: none;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-2 {
    width: 50.5px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: 34px;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-3 {
    width: 50.5px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: 34px;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-4 {
    width: 57.5px;
    top: -28px;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-4::before {
    display: none;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-5::before {
    display: none;
  }
  .section-why-choose-us.home-2 .animate-item .line.line-6 {
    width: 30.5px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: 34px;
  }
  .section-why-choose-us.home-2 .animate-item .plus-icon {
    width: 14px;
    height: 14px;
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
  }
  .section-why-choose-us.home-2 .animate-item .plus-icon span {
    position: relative;
    z-index: 2;
  }
  .section-why-choose-us.home-2 .animate-item .plus-icon span::before {
    content: "";
    height: 7px;
    width: 1px;
    border-radius: 999px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .section-why-choose-us.home-2 .animate-item .plus-icon span::after {
    content: "";
    width: 7px;
    height: 1px;
    border-radius: 999px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .section-why-choose-us.home-2 .animate-item.item01 {
    left: 21.9%;
  }
  .section-why-choose-us.home-2 .animate-item.item02 {
    top: 44.2%;
    left: 29.3%;
  }
  .section-why-choose-us.home-2 .animate-item.item03 {
    bottom: 19%;
    left: 25.7%;
  }
  .section-why-choose-us.home-2 .animate-item.item04 {
    right: 22%;
  }
  .section-why-choose-us.home-2 .animate-item.item05 {
    top: 36.9%;
    right: 5%;
  }
  .section-why-choose-us.home-2 .animate-item.item06 {
    bottom: 11.8%;
    right: 27%;
  }
  .page-title-home.style-2 .page-title-content {
    max-width: 80%;
  }
  .tf-slider-banner-h1 .left {
    max-width: 100%;
  }
  .tf-slider-banner-h1 .right {
    display: none;
  }
  .testimonial-item.style-4 {
    padding: 15px !important;
  }
  .product-item.style-list {
    gap: 15px;
  }
  .personal-information .title {
    font-size: 20px;
  }
  .personal-skills {
    padding: 15px;
  }
  .progress-bars-list .progress-bars {
    flex: 1 1 100%;
  }
  .page-title .page-title-content {
    padding: 40px 0 !important;
  }
  .page-title .icon-page-title {
    display: none;
  }
  .wg-team-details {
    flex-direction: column;
    padding: 15px;
  }
  .wg-team-details .wg-team-details-content {
    max-width: 100%;
  }
  .list-details ul {
    max-width: 100% !important;
  }
  .slider-arrow {
    width: 30px !important;
    height: 30px !important;
  }
  .section-achievement.home-3 .heading-section {
    margin-bottom: 20px !important;
  }
  .page-title-home .page-title-btn {
    gap: 15px !important;
  }
  .page-title-home .tf-btn {
    padding: 15px !important;
  }
  .according-item .title-according {
    line-height: 20px !important;
  }
  .section-testimonial.home-4 .section-testimonial-content .wg-testimonial {
    position: relative;
    right: 0;
    bottom: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .section-call-to-action {
    margin: 0 !important;
  }
  .section-call-to-action .call-to-action {
    flex-wrap: wrap;
    gap: 15px;
  }
  .section-call-to-action .image {
    flex: 1 1 50%;
  }
  .section-call-to-action .call-to-action-content {
    padding: 0 15px 15px;
  }
  .section-call-to-action .call-to-action-content .title {
    font-size: 25px;
    line-height: 30px;
    margin: 10px !important;
  }
  .section-call-to-action .call-to-action-content .number-phone a {
    font-size: 20px;
  }
  .section-call-to-action .image-item {
    display: none;
  }
  .section-what-we-do.home-3 .what-we-do-content .support-item {
    flex: 1 1 100%;
  }
  .section-our-project.home-2 .swiper-arrow::before {
    display: none;
  }
  .section-our-project.home-2 .swiper-arrow::after {
    display: none;
  }
  .services-list.grid-5 .services-item:nth-child(1) {
    flex: 1 1 50%;
  }
  .services-list.grid-5 .services-item:nth-child(2) {
    flex: 1 1 50%;
  }
  .services-list.grid-5 .services-item:nth-child(3) {
    flex: 1 1 50%;
  }
  .services-list.grid-5 .services-item:nth-child(4) {
    flex: 1 1 50%;
  }
  .services-list.grid-5 .services-item:nth-child(5) {
    flex: 1 1 100%;
  }
  .wg-login .image {
    display: none !important;
  }
  .wg-login .form-login {
    max-width: 100% !important;
  }
  .wg-login .btn-hide-popup {
    background: rgba(243, 93, 34, 0.15);
    z-index: 99;
  }
  .wg-login .btn-hide-popup i {
    color: var(--main-color);
  }
  .wg-login .login-btn.mobile {
    display: block;
    margin-top: 10px;
  }
  .wg-login .login-btn.mobile .create-account-btn {
    border: none;
    color: var(--main-color);
    text-decoration: underline;
    text-transform: capitalize;
  }
  .product-item .image {
    max-width: 100%;
  }
  .page-title-home br {
    display: none !important;
  }
  .page-title-home .page-title-content {
    padding: 0 !important;
  }
  .page-title-home .page-title-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-title-home .boder-box {
    display: none;
  }
  .page-title-home.style-1 {
    height: auto;
  }
  .page-title-home.style-1 .item-1 {
    display: none !important;
  }
  .page-title-home.style-1 .page-title-content {
    padding: 0 !important;
  }
  .page-title-home.style-2 br {
    display: none !important;
  }
  .tf-post-grid.style-absolute .title {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .section-our-project.home-1 .image-item {
    display: none;
  }
  .pricing-card-items .pricing-card-header {
    padding: 30px 0;
  }
  .pricing-card-items .pricing-card-header::after {
    display: none;
  }
  .pricing-card-items .pricing-card-content {
    margin-top: 10px;
    padding-top: 15px;
    border-radius: 0;
  }
}
@media (max-width: 675px) {
  .call-now-CTA {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }
    .logo img {
    height: 70px;
}
  .call-now-CTA .call-now-CTA-content {
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
  }
  .call-now-CTA .form-call-now-CTA {
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
  }
  .call-now-CTA.style-2 {
    padding: 30px 15px !important;
  }
  .call-now-CTA.style-2 .form-call-now-CTA {
    padding: 0 !important;
  }
  .section-testimonial.home-1 .seciton-testimonial-inner {
    flex-direction: column;
  }
  .section-testimonial.home-1 .image {
    max-width: 100%;
    max-height: 500px;
  }
  .section-testimonial.home-1 .section-testimonial-content {
    max-width: 100%;
  }
  .page-title-home.style-2 .page-title-content {
    max-width: 90%;
  }
  .according-item {
    padding: 15px !important;
  }
  .services-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .services-list.grid-4 .services-item {
    flex: 1 1 100%;
    max-width: 100%;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-10);
  }
  .guide-wrap {
    flex-direction: column;
    gap: 75px;
  }
  .guide-wrap .guide-wrap-item {
    max-width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 550px) {
  .offcanvasLogin.show,
  .offcanvasRegister.show {
    top: 0;
  }
  .section-costmary-benefit.home-1 {
    background-attachment: unset;
  }
  .section-how-it-work.home-2 {
    background-attachment: unset;
  }
  .page-title-home.style-2 .page-title-content {
    max-width: 100%;
  }
  .page-title-home.style-2 .image-item {
    display: none;
  }
  .footer-bottom {
    justify-content: center;
  }
  .product-item.style-list {
    flex-direction: column;
    align-items: center;
  }
  .product-item.style-list .product-item-content {
    align-items: center;
  }
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wg-map .box-map #map {
    height: 300px;
  }
  .image-details-list {
    flex-direction: column;
  }
  .testimonial-item.style-2 {
    padding: 15px;
  }
  .testimonial-item.style-2 .image-item {
    display: none;
  }
  .testimonial-item.style-2 .testimonial-content {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  .testimonial-item.style-3 {
    padding: 10px !important;
  }
  .footer-content .title i {
    display: block;
  }
  .tf-slider-banner-h1 .tf-slider-banner-content {
    padding: 20px 15px;
  }
  .tf-slider-banner-h1 .tf-slider-banner-content .logo-banner {
    display: none;
  }
  .section-about.home-1 .item-1 {
    padding-left: 0 !important;
  }
  .section-about.home-1 .item-2,
  .section-about.home-1 .item-4 {
    display: none;
  }
  .section-about.home-2 .wg-tab.style-2 ul {
    flex-wrap: wrap;
  }
  .services-list.grid-5 .services-item {
    flex: 1 1 100% !important;
  }
  .cols {
    flex-direction: column;
  }
  .tf-post-grid.style-absolute .date {
    top: 15px;
    left: 15px;
  }
  .tf-post-grid.style-absolute .tf-post-grid-content {
    bottom: 15px;
    left: 15px;
  }
  .form-contact {
    padding: 30px 15px !important;
  }
  .tf-post-grid.desc {
    padding: 15px !important;
  }
  .footer .footer-inner {
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    display: grid;
    position: relative;
    grid-template-areas: "a" "b" "c" "d";
  }
}
@media (max-width: 500px) {
  .section-about.home-2 .item-1 {
    display: none;
  }
  .tf-post-grid.style-absolute .text-desc {
    display: none;
  }
  .tf-post-list.desc {
    flex-direction: column;
  }
  .tf-post-list.desc .tf-post-list-content {
    width: 100%;
  }
  .section-about.home-4 .item-2 {
    display: none;
  }
  .wg-counter {
    flex-direction: column;
  }
  .wg-counter .counter-item {
    justify-content: left;
    max-width: 247px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .section-about.home-1 .wg-signature {
    justify-content: space-between !important;
    gap: 0 !important;
  }
  .top-bar .top-bar-content i {
    font-size: 13px;
  }
  .top-bar .top-bar-content p {
    font-size: 14px;
  }
  .top-bar .tf-tb-social .text {
    display: none !important;
  }
}
@media (max-width: 430px) {
  .section-why-choose-us.home-2 .text-item {
    display: none;
  }
  .section-why-choose-us.home-2 .line {
    display: none !important;
  }
  .wg-tab.style-2 a {
    padding: 5px 7px !important;
  }
}
@media (max-width: 320px) {
  .pricing-card-items .pricing-card-content {
    padding: 0 15px;
  }
}

/*# sourceMappingURL=styles.css.map */

.gallery-item img{height: 300px;width: 100%;    object-fit: cover;
    margin: 10px 0;}
.details-content p{text-align: justify;font-size: 15px;line-height: 24px;padding-bottom: 10px;}

.whatsapp-link img {
    height: 55px;
    width: 55px;
    position: fixed;
    right: 15px;
    bottom: 135px;
    z-index: 9999;
}
.call-btn img {
    height: 55px;
    width: 55px;
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 9999;
}
.about_text h4{font-size:20px;}