﻿
/*=================Scss Indexing=============
1.variables
2.typography
3.spacing
4.reset
5.forms
6.mixins
7.shortcode
8.animations
9.text-animation
10.sal
11.header
12.mobile-menu
13.button
14.nav
15.banner
16.swiper
17.funfacts
18.cta
19.about
20.common
21.service
22.projects
23.working-process
24.blog
25.blog-details
26.footer
27.search-input
28./side-bar
29.team
30.testimonials
31.faq
32.pricing
33.date-picker
34.time-picker
35.appoinment
36.awesome-feedback
37.contact
38.pre-loader.scss
39.back-to-top



==============================================  */
/* Default  */
:root {
  --color-primary: #98FF03;
  --color-secondary: #1F1F25;
  --color-black: #000000;
  --color-bg-1: #F3F4F6;
  --color-bg-2: #FFD7B7;
  --color-bg-3: #DAF2FF;
  --color-bg-4: #89D6FF;
  --color-bg-5: #FFF5EE;
  --color-bg-dark: #181818;
  --color-bg-dark-2: #0B0B0B;
  --color-border: rgba(3, 7, 18, 0.1);
  --color-border-dark: #2C2C2C;
  --color-heading-1: #030712;
  --color-body-1: #6B7280;
  --color-body-dark: #9A9A9A;
  --color-title: #26262C;
  --color-title-nav: #26262C;
  --color-white:#fff;
  --color-service-heading: rgba(0, 0, 0, 0.8);
  --counter-title: #717383;
  --color-success: #26CF4B;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --subscribe-form: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #BCBFDB;
  --footer-bg: linear-gradient(257deg, #DEFFE6 1.73%, rgba(201, 192, 255, 0.08) 98.79%);
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: all 0.6s;
  --font-primary: "Space Grotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-secondary: "Urbanist", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-three: "Font Awesome 6 Pro";
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 22px;
  --line-height-b1: 1.5;
  --line-height-b2: 1.5;
  --line-height-b3: 1.5;
  --h1: 100px;
  --h2: 64px;
  --h3: 48px;
  --h4: 40px;
  --h5: 30px;
  --h6: 24px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-secondary);
  color: var(--color-body-1);
  font-weight: var(--p-regular);
  background-color: var(--body-bg);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow-x: visible;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow-x: visible;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow-x: visible;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
pre,
menu,
ol,
ul,
table,
hr {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--color-heading-1);
  text-transform: uppercase;
  font-weight: var(--s-medium);
  letter-spacing: -0.04em;
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 1.067;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
}

h3,
.h3 {
  font-size: var(--h3);
}

h4,
.h4 {
  font-size: var(--h4);
}

h5,
.h5 {
  font-size: var(--h5);
}

h6,
.h6 {
  font-size: var(--h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  transition: var(--transition);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
.h1 {
    font-size: 38px;
  }

  h2,
.h2 {
    font-size: 32px;
  }

  h3,
.h3 {
    font-size: 28px;
  }

  h4,
.h4 {
    font-size: 24px;
  }

  h5,
.h5 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
.h1 {
    font-size: 34px;
  }

  h2,
.h2 {
    font-size: 28px;
  }

  h3,
.h3 {
    font-size: 24px;
  }

  h4,
.h4 {
    font-size: 20px;
  }

  h5,
.h5 {
    font-size: 20px;
  }
}
p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: 500;
  color: var(--color-body-1);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p.has-large-font-size {
  line-height: 1.5;
  font-size: 36px;
}
p.has-medium-font-size {
  font-size: 24px;
  line-height: 36px;
}
p.has-small-font-size {
  font-size: 13px;
}
p.has-very-light-gray-color {
  color: var(--color-white);
}
p.has-background {
  padding: 20px 30px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  transition: var(--transition);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}

table a,
table a:link,
table a:visited {
  text-decoration: none;
}

cite {
  color: var(--color-heading);
}

var {
  font-family: var(--font-primary);
}

/*---------------------------
	List Style 
---------------------------*/
ul,
ol {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body-1);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}
ul ul {
  margin-bottom: 0;
}

ol {
  margin-bottom: 30px;
}
ol li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  color: var(--color-body-1);
  margin-top: 10px;
  margin-bottom: 10px;
}
ol li a {
  color: var(--color-heading);
  text-decoration: none;
}
ol li a:hover {
  color: var(--color-primary);
}
ol ul {
  padding-left: 30px;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 64px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

/*=========================
    Section Separation 
==========================*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


footer,
header,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

code,
pre {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

pre {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}

small {
  font-size: smaller;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dd {
  margin: 0 15px 15px;
}

dt {
  font-weight: bold;
  color: var(--color-heading);
}

menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

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

ol ul {
  margin-bottom: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

th {
  font-weight: 500;
  text-transform: uppercase;
}

td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}

table a,
table a:link,
table a:visited {
  text-decoration: underline;
}

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

caption {
  caption-side: top;
}


cite,
em {
  font-style: italic;
}

/* BlockQuote  */

q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}


q:before,
q:after {
  content: "";
  content: none;
}

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
  border-radius: 12px;
}
input:focus, input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  /* -- Placeholder -- */
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  position: absolute;
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type=checkbox] ~ label::before,
input[type=radio] ~ label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type=checkbox] ~ label::after,
input[type=radio] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type=checkbox]:checked ~ label::after,
input[type=radio]:checked ~ label::after {
  opacity: 1;
}

input[type=radio] ~ label::before {
  border-radius: 50%;
}
input[type=radio] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}

input[type=submit] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type=submit]:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}

/*==============================
 *  Utilities
=================================*/

.fix {
  overflow: hidden;
}

/*===============================
    Background Color 
=================================*/

/*===========================
Background Image 
=============================*/

/* Height and width */

/*===================
Custom Row
======================*/

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/

/*------------------------------
    Scroll Up 
--------------------------------*/

@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}
@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }
  100% {
    background: var(--color-danger);
  }
}

/* -------------------------------- 

xclip 

-------------------------------- */

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */

/**
  * Animations
  */

/* header styles */
.header-style-one .header-top {
  background: var(--color-heading-1);
  padding: 8px 0;
}
.header-style-one .header-top .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.header-style-one .header-top .header-top-inner .text {
  margin-bottom: 0;
  line-height: 1;
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 500;
}
.header-style-one .header-top .header-top-inner .text span {
  color: var(--color-primary);
  margin-left: 6px;
}
.header-style-one .header-style-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 0;
  background: var(--color-white);
  border: 1px solid rgba(3, 7, 18, 0.1);
  position: relative;
  z-index: 3;
}
.header-style-one .header-style-one-wrapper .left-area {
  padding: 21px 67px 20px;
  border-right: 1px solid rgba(3, 7, 18, 0.1);
}
.header-style-one .header-style-one-wrapper .button-area-start {
  padding: 12px 50px;
  border-left: 1px solid rgba(3, 7, 18, 0.1);
  display: flex;
  gap: 20px;
}

.main-nav-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav-area ul li {
  margin: 0;
  position: relative;
}
.main-nav-area ul li:hover a::after {
  width: 100%;
}
.main-nav-area ul li a {
  color: var(--color-heading-1);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.main-nav-area ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 1px;
  left: 0;
  transition: var(--transition);
}
.main-nav-area ul li.has-dropdown {
  cursor: pointer;
  padding: 24px 0;
}
.main-nav-area ul li.has-dropdown:hover .sub-menu {
  pointer-events: all;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.main-nav-area ul li.has-dropdown .sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px 0px;
  min-width: 150px;
  left: -10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  padding: 12px 0px !important;
  display: block;
}
.main-nav-area ul li.has-dropdown .sub-menu .item-link::before {
  display: none;
}
.main-nav-area ul li.has-dropdown .sub-menu li > a {
  padding: 7px 16px;
  display: block;
  text-align: start;
}
.main-nav-area ul li.has-dropdown .sub-menu li > a::after {
  display: none;
}
.main-nav-area ul li.active .main-element::after {
  width: 100%;
}

.side-bar {
  position: absolute;
  overflow: hidden;
  top: 73px;
  right: 0;
  width: 100%;
  padding: 0;
  height: auto;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1;
  transition: all 0.4s;
  display: none;
  flex-direction: column;
  overflow: hidden;
  height: 0;
}
.side-bar .button-area {
  margin-top: 30px;
}
.side-bar .button-area .wpr-btn {
  max-width: 100%;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.side-bar .sidebar-inner {
  padding: 40px 25px;
}

.side-bar.show {
  right: 0;
  height: auto;
}

#menu-btn {
  cursor: pointer;
  padding: 10px;
  display: none;
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(137.66deg, #40454A 21.13%, #292C2E 80.53%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -3px 0px #1A1A1A, inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #menu-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #menu-btn {
    display: block;
  }
}
#menu-btn span {
  display: block;
  background: var(--color-white);
  width: 25px;
  height: 2px;
  transition: all 0.3s;
}
#menu-btn.cross span.one {
  transform: rotate(45deg) translateY(2px) translateX(4px);
}
#menu-btn.cross span.two {
  transform: rotate(-45deg) translateY(-2px) translateX(4px);
}

#side-bar .mobile-menu-main {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main {
  overflow: scroll;
}
.mobile-menu-main nav ul {
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}
.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: rgba(38, 38, 44, 0.5);
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: "\f077";
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--color-primary);
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li .main-element {
  display: block;
  max-width: max-content;
  font-family: var(--font-primary);
  color: var(--color-heading-1);
  padding: 0;
  font-size: 16px;
}
.mobile-menu-main nav ul li ul {
  gap: 10px;
  padding-top: 15px !important;
}
.mobile-menu-main nav ul li ul li {
  line-height: 1;
}
.mobile-menu-main nav ul li ul li a {
  font-size: 14px;
  color: var(--color-heading-1);
}

/* elements */
.container {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Loaded Styles */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1408px;
    padding: 0;
  }
}
.section-title-area .sub-title {
  color: var(--color-heading-1);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding: 4px 5px 3px 24px;
  z-index: 1;
  background: #F3F4F6;
  max-width: max-content;
  font-family: var(--font-primary);
}
.section-title-area .sub-title::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.section-title-area .sub-title.with-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-title-area .section-title {
  color: var(--color-heading-1);
  margin-bottom: 8px;
  text-transform: capitalize;
}
.section-title-area .desc {
  color: var(--color-body-1);
  font-weight: 500;
  margin-top: 10px;
}
.section-title-area.center-style {
  text-align: center;
}
.section-title-area.center-style .sub-title {
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
}

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

.cb {
  color: #0D0D0D !important;
}

ul {
  padding: 0 !important;
}
ul li {
  list-style: none !important;
}

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

.second-font {
  font-family: var(--font-secondary);
}

.font-semi-bold {
  font-weight: 600;
}

.text-normal {
  text-transform: none !important;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.home-bg {
  background: var(--color-bg-1);
}

.square-dot {
  position: relative;
  z-index: 4;
}
.square-dot .square-shape {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  background: var(--color-heading-1);
}
.square-dot .square-shape.top-left {
  top: -3px;
  left: -3px;
}
.square-dot .square-shape.bottom-left {
  bottom: -3px;
  left: -3px;
}
.square-dot .square-shape.top-right {
  top: -3px;
  right: -3px;
}
.square-dot .square-shape.bottom-right {
  bottom: -3px;
  right: -3px;
}

@keyframes zoomEffect {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.wow {
  visibility: hidden;
}

@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}
@keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@-webkit-keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
/* Flip In X */
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

.border-top {
  border-color: var(--color-border);
  border-style: solid;
}

.border-top {
  border-width: 1px 0 0;
}

.w-100 {
  width: 100% !important;
}

.skew-up > div {
  overflow: hidden;
}

.split-parent {
  overflow: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

section {
  border-width: 1px 0;
  border-style: solid;
  border-color: transparent;
}
@media (max-width: 1440px) {
  section {
    border-color: rgba(3, 7, 18, 0.1);
  }
}
section .section-inner.border-1 {
  border-width: 1px 1px !important;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
}
@media (max-width: 1440px) {
  section .section-inner.border-1 {
    border-width: 0 1px !important;
  }
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  --preloader-clip: 0;
  clip-path: inset(0 0 0 var(--preloader-clip));
  background-color: var(--color-black);
}

.preloader span {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  overflow-x: hidden;
}

.preloader .preloader-gutters {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
}

.preloader .preloader-gutters .bar {
  width: 12.5%;
  height: 100%;
  background: transparent;
  position: relative;
}

.preloader .preloader-gutters .bar .inner-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-white);
}

.preloader .site-name {
  background-color: var(--color-secondary);
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.preloader .site-name span {
  font-size: 80px;
}

@media only screen and (max-width: 767px) {
  .preloader .site-name span {
    font-size: 40px;
  }
}
/*-- Button Go Top --*/
#goTop {
  position: fixed;
  padding: 0;
  bottom: 40px;
  right: 20px;
  width: 38px;
  height: 38px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border-radius: 99px;
  box-shadow: 0px 4px 20px 0px #ffffff1a;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#goTop .border-progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 99px;
  border: 2px solid var(--color-primary);
  mask-image: conic-gradient(var(--color-primary) var(--progress-angle, 0deg), transparent 0);
  -webkit-mask-image: conic-gradient(var(--color-primary) var(--progress-angle, 0deg), transparent 0);
  content: "";
  z-index: 1;
  transition: var(--transition);
}
#goTop.show {
  opacity: 1;
  visibility: visible;
}
#goTop .icon {
  font-size: 16px;
  color: var(--color-white);
  aspect-ratio: 1;
}
#goTop .ic-wrap {
  transition: var(--transition);
  animation: iconBounce 2s linear 0s infinite;
  display: flex;
}
#goTop:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.wpr-btn {
  max-width: max-content;
  padding: 16px 24px 16px;
  line-height: 1;
  transition: var(--transition);
  font-weight: 600;
  background-color: var(--color-primary);
  overflow: hidden;
  position: relative;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 25px;
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(137.66deg, #40454A 21.13%, #292C2E 80.53%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -3px 0px #1A1A1A, inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.wpr-btn.btn-white {
  transition: var(--transition);
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.04), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #E4E4E4, inset 0px -6px 0px 1px #FAFAFA;
  border-radius: 12px;
  transition: var(--transition);
}
.wpr-btn.btn-white:hover {
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.18), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -6px 0px #E4E4E4, inset 0px 0px 0px 1px #FAFAFA;
}
.wpr-btn.with-icon {
  padding: 24px 24px 26px 78px;
}
.wpr-btn.with-icon .inner {
  position: absolute;
  width: 95%;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpr-btn.with-icon .icon {
  background: linear-gradient(178.82deg, #B2FF43 1.01%, #98FF03 105.12%);
  box-shadow: 4px 8px 2px rgba(0, 0, 0, 0.08), inset 0px -2px 0.5px #75C500, inset 0px 1px 0px #FFFFFF;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  display: block;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
  transition: var(--transition);
  overflow: hidden;
}
.wpr-btn.with-icon .icon span img {
  min-width: 19px;
  opacity: 1;
  animation: none;
}
.wpr-btn.with-icon .icon .fixed-arrow {
  margin-bottom: 2px;
}
.wpr-btn.with-icon:hover .icon {
  width: 100%;
}
.wpr-btn.with-icon:hover .icon span img {
  opacity: 0.15;
  animation: fadeMove 1.2s infinite;
}
.wpr-btn.with-icon:hover .icon span:nth-child(6) img {
  animation-delay: 0.5s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(5) img {
  animation-delay: 0.4s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(4) img {
  animation-delay: 0.3s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(3) img {
  animation-delay: 0.2s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(2) img {
  animation-delay: 0.1s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(1) img {
  animation-delay: 0s;
}
.wpr-btn:focus {
  border: none;
  box-shadow: none;
}

 .btn-primary:focus {
  background-color: var(--color-primary);
  border-color: unset;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wpr-banner-area {
  position: relative;
  z-index: 0;
  margin: 0 0 16px;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
}
.wpr-banner-area .banner-content-area {
  height: 800px;
  padding: 172px 0 115px;
  position: relative;
  z-index: 1;
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
  overflow: hidden;
}
.wpr-banner-area .banner-content-area .top-shape {
  position: absolute;
  width: 100px;
  height: 30%;
  background: var(--color-bg-1);
  border-width: 0 1px;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.wpr-banner-area .banner-content-area .section-title {
  display: flex;
  align-items: center;
  font-size: 120px;
  font-weight: 500;
}
.wpr-banner-area .banner-content-area .section-title .left-area {
  max-width: 100%;
  width: 100%;
  text-align: center;
  background: var(--color-bg-1);
  padding: 35px 0;
  border-width: 1px 0;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 38px;
  padding: 0;
  position: absolute;
  width: 94%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
  overflow: hidden;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow {
  height: 16px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1.2s infinite;
  min-width: 13px;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow img {
  position: unset;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(10) {
  animation-delay: 0.9s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(9) {
  animation-delay: 0.8s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(8) {
  animation-delay: 0.7s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(7) {
  animation-delay: 0.6s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(6) {
  animation-delay: 0.5s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(5) {
  animation-delay: 0.4s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(4) {
  animation-delay: 0.3s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(3) {
  animation-delay: 0.2s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(2) {
  animation-delay: 0.1s;
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track .arrow:nth-child(1) {
  animation-delay: 0s;
}
.wpr-banner-area .banner-content-area .section-title .right-area {
  max-width: 100%;
  width: 100%;
  text-align: center;
  background: var(--color-bg-1);
  padding: 35px 0;
  border-width: 1px 0;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
  position: relative;
  z-index: 1;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0;
  position: absolute;
  width: 94%;
  right: 50%;
  transform: translateX(50%);
  top: -35px;
  overflow: hidden;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow {
  height: 16px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1.2s infinite;
  min-width: 13px;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow img {
  position: unset;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(1) {
  animation-delay: 0.9s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(2) {
  animation-delay: 0.8s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(3) {
  animation-delay: 0.7s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(4) {
  animation-delay: 0.6s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(5) {
  animation-delay: 0.5s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(6) {
  animation-delay: 0.4s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(7) {
  animation-delay: 0.3s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(8) {
  animation-delay: 0.2s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(9) {
  animation-delay: 0.1s;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track .arrow:nth-child(10) {
  animation-delay: 0s;
}
.wpr-banner-area .banner-content-area .section-title .mid-icon {
  min-width: max-content;
}
.wpr-banner-area .banner-content-area .section-title .text {
  text-align: center;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  background: linear-gradient(137.66deg, #55595C 21.13%, #000000 80.53%), #030712;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wpr-banner-area .banner-content-area .bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -2;
}
.wpr-banner-area .banner-content-area .bg-shape img {
  width: 100%;
  height: 100%;
}
.wpr-banner-area .banner-content-area .banner-shape-area img {
  position: absolute;
  z-index: 1;
}
.wpr-banner-area .banner-content-area .banner-shape-area img.one {
  top: 0;
  left: 0;
}
.wpr-banner-area .banner-content-area .banner-shape-area img.two {
  bottom: 0;
  right: 0;
}
.wpr-banner-area .banner-content-area .text-area {
  text-align: center;
  max-width: 529px;
  margin: auto;
  margin-top: 52px;
}
.wpr-banner-area .banner-content-area .text-area .desc {
  margin-bottom: 25px;
  color: var(--color-heading-1);
}
.wpr-banner-area .banner-content-area .text-area .button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.wpr-banner-area .banner-content-area .text-area .button-area .wpr-btn {
  font-size: 18px;
}
.wpr-banner-area .banner-content-area .text-area .button-area .btn-white {
  padding: 26px 24px 28px;
  color: var(--color-heading-1);
}

.bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@keyframes moveright {
  from {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes moveLeft {
  from {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes fadeMove {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
}

.wpr-brand-area .section-inner {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-brand-area .section-inner .left-text {
  min-width: 200px;
  height: 100%;
  text-align: center;
}
.wpr-brand-area .section-inner .left-text p {
  text-align: start;
  max-width: max-content;
  margin: auto;
  color: var(--color-heading-1);
  font-size: 14px;
}
.wpr-brand-area .section-inner .right-marquee-area {
  border-left: 1px solid rgba(3, 7, 18, 0.1);
  overflow: hidden;
}
.wpr-brand-area .section-inner .right-marquee-area .brand-inner {
  display: flex;
  align-items: center;
  will-change: transform;
  animation: marquee 20s linear infinite;
}
.wpr-brand-area .section-inner .right-marquee-area .brand-wrapper {
  width: 200px;
  height: 200px;
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
  text-align: center;
  line-height: 200px;
  display: block;
  flex: 0 0 auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.wpr-services-area .section-top-area {
  padding: 100px 0 60px;
}
.wpr-services-area .section-bottom-content {
  display: flex;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--color-border);
}
.wpr-services-area .section-bottom-content .service-wrapper {
  flex-basis: 25%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-right: 1px solid var(--color-border);
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper:hover::after {
  transform: translate(-51%, -49%) scale(0);
  opacity: 0;
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .image-area img {
  transform: scale(1.15);
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .content .top .desc {
  opacity: 1;
  color: #D1D5DB;
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .content .top .tag {
  background: #F3F4F6;
  color: var(--color-heading-1);
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .content .mid h2 {
  color: rgba(249, 250, 251, 0.8);
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .content .bottom ul li {
  color: #F9FAFB;
}
.wpr-services-area .section-bottom-content .service-wrapper:hover .content .bottom .service-btn-area {
  opacity: 1;
}
.wpr-services-area .section-bottom-content .service-wrapper .image-area img {
  transform: scale(1);
  transition: all 0.8s;
}
.wpr-services-area .section-bottom-content .service-wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 101%;
  height: 101%;
  top: 49%;
  left: 51%;
  background: var(--color-white);
  transform: translate(-51%, -49%) scale(1);
  opacity: 1;
  transition: all 0.8s;
}
.wpr-services-area .section-bottom-content .service-wrapper .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .top .tag {
  color: #F9FAFB;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding: 4px 5px 3px 24px;
  z-index: 1;
  background: var(--color-heading-1);
  max-width: max-content;
  font-family: var(--font-primary);
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .top .tag::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .top .desc {
  font-size: 14px;
  opacity: 0;
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .mid {
  text-align: center;
  margin-top: 10px;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .mid h2 {
  font-size: 200px;
  line-height: 1;
  color: rgba(3, 7, 18, 0.1);
  margin-bottom: 0;
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .bottom ul {
  border-left: 2px solid var(--color-primary);
  padding: 0;
  padding-left: 16px !important;
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .bottom ul li {
  padding: 0;
  margin: 0;
  font-weight: 600;
  line-height: 1;
  color: #030712;
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .bottom .service-btn-area {
  background: var(--color-white);
  border-radius: 12px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  display: block;
  transition: var(--transition);
  opacity: 0;
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.04), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #E4E4E4, inset 0px -6px 0px 1px #FAFAFA;
}

.inner .section-bottom-content {
  flex-wrap: wrap;
}
.inner .wpr-services-area {
  width: 25%;
}

.wpr-about-area .section-inner .section-top-area {
  padding: 100px 56px 80px;
}
.wpr-about-area .section-inner .section-top-area .section-title-area {
  max-width: 740px;
}
.wpr-about-area .section-inner .about-bottom-content {
  display: flex;
}
.wpr-about-area .section-inner .about-bottom-content .left-area {
  max-width: 606px;
  width: 100%;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul {
  padding: 0;
  margin: 0;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li {
  padding: 26px 56px;
  margin: 0;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li p {
  color: var(--color-body-1);
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li p.top-description {
  font-size: 14px;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li.with-icon {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li.with-icon .text .title {
  margin-bottom: 10px;
  display: flex;
}
.wpr-about-area .section-inner .about-bottom-content .right-area .image-area {
  position: relative;
  z-index: 1;
}
.wpr-about-area .section-inner .about-bottom-content .right-area .image-area .image-shape-right-bottom {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  min-width: max-content;
  transition: var(--transition);
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  padding-right: 5px;
  margin-left: -2px;
  letter-spacing: -0.02em;
}

.odometer.odometer-auto-theme .odometer-digit:first-child {
  padding-right: 3px;
}

.wpr-working-process .section-inner {
  padding: 100px 56px;
}
.wpr-working-process .working-process-left {
  display: flex;
  flex-direction: column;
  gap: 188px;
  position: sticky;
  top: 100px;
}
.wpr-working-process .working-process-left .text-area .desc {
  margin-bottom: 20px;
}
.wpr-working-process .working-process-left .text-area .wpr-btn {
  padding: 24px 24px 28px 78px;
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(137.66deg, #40454A 21.13%, #292C2E 80.53%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1), 60px 50px 80px rgba(0, 0, 0, 0.15), 20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503), 10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417), 4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #1A1A1A, inset 0px -6px 0px 1px rgba(255, 255, 255, 0.1);
}
.wpr-working-process .working-process-left .text-area .wpr-btn .icon {
  gap: 17px;
}
.wpr-working-process .working-process-left .text-area .wpr-btn .icon .fixed-arrow {
  margin-bottom: 2px;
}
.wpr-working-process .working-process-left .text-area .wpr-btn .inner {
  top: 47%;
  transform: translate(-50%, -47%);
}

.working-process-wrapper {
  position: relative;
  z-index: 1;
  background: linear-gradient(137.66deg, #F5F5F5 21.13%, #F2F2F2 80.53%);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #E4E4E4, inset 0px -6px 0px 1px #FAFAFA;
  border-radius: 12px;
  padding: 16px 16px 32px 16px;
  transition: all 0.5s;
  margin-bottom: 24px;
  position: sticky;
  top: 100px;
}
.working-process-wrapper:hover .image-area img {
  transform: scale(1.1);
}
.working-process-wrapper .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 12px;
}
.working-process-wrapper .image-area img {
  transform: scale(1);
  transition: all 0.5s;
}
.working-process-wrapper .content-area {
  display: flex;
  gap: 30px;
  padding: 25px 20px 0;
}
.working-process-wrapper .content-area .number {
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
}
.working-process-wrapper .content-area .title {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.working-process-wrapper:last-child {
  margin-bottom: 0;
}

.wpr-marquee-area .section-inner .title {
  min-width: max-content;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 120px;
  letter-spacing: -0.04em;
  margin: 0;
}
.wpr-marquee-area .section-inner .title span {
  display: flex;
  margin: 0 50px;
}
.wpr-marquee-area .section-inner .first-text {
  transform: translateX(-40%);
}
.wpr-marquee-area .section-inner .text-wrapper {
  padding: 30px 0;
}
.wpr-marquee-area .section-inner .text-wrapper:last-child {
  border-top: 1px solid var(--color-border);
}

.scrollingtext-1 {
  display: inline-block;
  white-space: nowrap;
}

.wpr-footer-area .footer-top {
  padding: 64px 56px;
}
.wpr-footer-area .footer-top ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wpr-footer-area .footer-top ul li {
  padding: 0;
  margin: 0;
}
.wpr-footer-area .footer-top ul li.square-dot {
  width: 12px;
  height: 12px;
  background: #D1D5DB;
}
.wpr-footer-area .footer-top ul li a {
  color: var(--color-heading-1);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.wpr-footer-area .footer-top ul li a:hover::after {
  width: 100%;
}
.wpr-footer-area .footer-top ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 4px;
  left: 0;
  transition: var(--transition);
}
.wpr-footer-area .footer-logo-area {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--color-border);
}
.wpr-footer-area .footer-logo-area .shape {
  position: absolute;
  z-index: 1;
  max-width: max-content;
}
.wpr-footer-area .footer-logo-area .shape.one {
  top: 0;
  left: 0;
}
.wpr-footer-area .footer-logo-area .shape.two {
  bottom: 0;
  right: 0;
}
.wpr-footer-area .copyright-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
}
.wpr-footer-area .copyright-area .left-social-area {
  width: 33%;
}
.wpr-footer-area .copyright-area .left-social-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.wpr-footer-area .copyright-area .left-social-area ul li {
  padding: 0;
  margin: 0;
}
.wpr-footer-area .copyright-area .left-social-area ul li a {
  color: var(--color-heading-1);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.wpr-footer-area .copyright-area .left-social-area ul li a:hover::after {
  width: 100%;
}
.wpr-footer-area .copyright-area .left-social-area ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.wpr-footer-area .copyright-area p {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  width: 33%;
  text-align: center;
}
.wpr-footer-area .copyright-area .scroll-top-btn {
  max-width: 33%;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading-1);
  display: flex;
  justify-content: end;
  gap: 7px;
}

.award-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 40px 56px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.award-item:first-child {
  border-top: 1px solid #E5E7EB;
}
.award-item.active .left .content .desc {
  height: 70px;
  pointer-events: all;
  opacity: 1;
  margin-top: 40px;
}
.award-item.active .image-area {
  opacity: 1;
}
.award-item.active .image-area img {
  transform: scale(1);
}
.award-item .image-area {
  position: absolute;
  top: 50%;
  right: 11%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.toggle {
  width: 32px;
  height: 32px;
  color: #9dff00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
  background: linear-gradient(137.66deg, #40454A 21.13%, #292C2E 80.53%);
  border-radius: 4px;
}

.wpr-cta-area .section-inner {
  position: relative;
  z-index: 1;
  padding: 77px 0 160px;
  text-align: center;
}
.wpr-cta-area .section-inner .section-title-area {
  position: relative;
  z-index: 1;
  padding: 0 100px;
  max-width: max-content;
  margin: auto;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  position: absolute;
  width: 120px;
  top: 52px;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.right {
  right: 0;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.left {
  left: 0;
  justify-content: end;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.left .arrow:nth-child(3) {
  animation-delay: 0.4s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.left .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.left .arrow:nth-child(1) {
  animation-delay: 0s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow {
  height: 32px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1s infinite;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow img {
  position: unset;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow:nth-child(1) {
  animation-delay: 0.4s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow:nth-child(3) {
  animation-delay: 0s;
}
.wpr-cta-area .section-inner .section-title {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(137.66deg, #55595C 21.13%, #000000 80.53%), #030712;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.wpr-cta-area .section-inner .logo img {
  width: 105px;
}
.wpr-cta-area .section-inner .bg-shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.wpr-cta-area .section-inner .section-bottom-shape {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag {
  color: #F9FAFB;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  padding: 4px 5px 3px 24px;
  background: #111827;
  max-width: max-content;
  font-family: var(--font-primary);
  position: absolute;
  z-index: 1;
  bottom: 48px;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-cta-area .section-inner .section-bottom-shape .tag.left {
  left: 56px;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag.right {
  right: 56px;
}

.accordion-collapse {
  transition: height 0.4s ease, opacity 0.4s ease;
}

.wpr-why-choose-us-area {
  position: relative;
  z-index: 1;
}
.wpr-why-choose-us-area .wpr-content-area {
  padding: 100px 0;
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .section-title-area {
  margin-bottom: 60px;
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .bottom-button-area {
  margin-top: 64px;
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .bottom-button-area .wpr-btn {
  margin: auto;
  max-width: 253px;
  width: 100%;
  text-align: center;
  justify-content: center;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1), 60px 50px 80px rgba(0, 0, 0, 0.15), 20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503), 10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417), 4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197), inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #1A1A1A, inset 0px -6px 0px 1px rgba(255, 255, 255, 0.1);
  padding: 16px 24px 20px;
  transition: var(--transition);
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .bottom-button-area .wpr-btn:hover {
  box-shadow: none;
}

.why-choose-wrapper {
  padding: 16px 16px 40px;
  background: linear-gradient(137.66deg, #F5F5F5 21.13%, #F2F2F2 80.53%);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px -5px 0px #E4E4E4, inset 0px -6px 0px 1px #FAFAFA;
  border-radius: 12px;
  max-width: 416px !important;
}
.why-choose-wrapper.ml-auto {
  margin-left: auto;
}
.why-choose-wrapper .wrapper-header {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  height: 104px;
  display: flex;
  align-items: center;
}
.why-choose-wrapper .wrapper-header img.shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.why-choose-wrapper .wrapper-header .title {
  margin-bottom: 0;
  font-size: 32px;
}
.why-choose-wrapper .wrapper-header .title span {
  color: var(--color-body-1);
}
.why-choose-wrapper .wrapper-header.two {
  padding: 34px 24px 14px;
}
.why-choose-wrapper .wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px !important;
}
.why-choose-wrapper .wrapper-list li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.why-choose-wrapper .wrapper-list.two li {
  color: var(--color-heading-1);
}

.wpr-why-choose-us-area2 .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-why-choose-us-area2 .section-inner .section-title-area {
  padding: 100px 56px 200px;
}
.wpr-why-choose-us-area2 .section-inner .section-title-area .sub-title {
  background: var(--color-white);
}
.wpr-why-choose-us-area2 .section-inner .bottom-content-area {
  display: flex;
  border-top: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-why-choose-us-area2 .section-inner .top-right-shape {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}

.why-choose-wrapper2 {
  width: 25%;
  padding: 56px;
  border-right: 1px solid rgba(3, 7, 18, 0.1);
}
.why-choose-wrapper2 .icon {
  margin-bottom: 45px;
}
.why-choose-wrapper2 .title {
  line-height: 1;
  margin-bottom: 12px;
}
.why-choose-wrapper2 .desc {
  font-weight: 500;
}
.why-choose-wrapper2:last-child {
  border: none;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.wpr-project-area .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-project-area .section-inner .space {
  display: block;
  height: 200px;
}
.wpr-project-area .section-inner .floating-content {
  position: sticky;
  z-index: -1;
  left: 0;
  max-width: 100%;
  width: 100%;
  top: 32.5%;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .wpr-project-area .section-inner .floating-content {
    top: 28%;
  }
}
@media (max-width: 1500px) {
  .wpr-project-area .section-inner .floating-content {
    top: 32%;
  }
}
@media (max-width: 991px) {
  .wpr-project-area .section-inner .floating-content {
    top: 35%;
  }
}
.wpr-project-area .section-inner .floating-content .section-title-area .section-title {
  margin-bottom: 40px;
}
.wpr-project-area .section-inner .floating-content .section-title-area .section-title span {
  display: inline-block;
  padding-top: 10px;
}
.wpr-project-area .section-inner .floating-content .section-title-area .section-title span span {
  padding-top: 0;
}
.wpr-project-area .section-inner .floating-content .section-title-area .section-title span img {
  margin-left: 10px;
  margin-top: -15px;
}
.wpr-project-area .section-inner .floating-content .section-title-area .desc {
  max-width: 463px;
  margin: auto;
}
.wpr-project-area .section-top-area {
  padding: 100px 0 60px;
}

.wpr-project-area .wpr-video-pin {
  position: relative;
  display: block;
  height: 100vh !important;
}
.wpr-project-area .wpr-video-wrapper {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(46px);
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  display: block;
  border: none;
  border-radius: 0;
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation.dark {
  background: rgba(0, 0, 0, 0.35);
}
.wpr-project-area .project-slider {
  height: 100%;
}
.wpr-project-area .slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wpr-project-area .slide .slide-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wpr-project-area .slide .slide-content .product-intro {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-width: 582px;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
}
.wpr-project-area .slide .slide-content .product-intro .top {
  padding: 40px 32px;
}
.wpr-project-area .slide .slide-content .product-intro .top .title {
  color: var(--color-white);
  text-transform: none;
}
.wpr-project-area .slide .slide-content .product-intro .top .desc {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li {
  margin: 0;
  width: 100%;
  padding: 24px 32px;
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li .h5 {
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li p {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-project-area .slide .slide-content .button-area {
  position: absolute;
  top: 35%;
  right: 15%;
  z-index: 2;
  max-width: max-content;
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 3.5s;
}
.wpr-project-area .slide .slide-content .button-area .box {
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
}
.wpr-project-area .slide .slide-content .button-area a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  margin-top: 24px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
}
.wpr-project-area .slide .image-area {
  position: relative;
  z-index: 1;
}
.wpr-project-area .slide .image-area .shape {
  position: absolute;
  z-index: 1;
}
.wpr-project-area .slide .image-area .shape.top-left-shape {
  top: 0;
  left: 0;
}
.wpr-project-area .slide .image-area .shape.top-right-shape {
  top: 0;
  right: 0;
}
.wpr-project-area .image-area,
.wpr-project-area .video-img {
  width: 100%;
  height: 100%;
}
.wpr-project-area .image-area img,
.wpr-project-area .video-img img {
  object-fit: cover;
}
.wpr-project-area .pin-spacer {
  margin: 0 !important;
}

.swiper-slide-active .project-wrapper .slide-content .button-area {
  opacity: 1;
  transform: translateY(0);
}
.project-slider-inner .slider-btn .swiper-btn {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  display: block;
  border: none;
  border-radius: 0;
}
.project-slider-inner .slider-btn .swiper-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.hover_mouse {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  transition: transform 0.5s ease-out;
  transform: translate3d(0, 0, 0);
}
.hover_mouse a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transform: scale(0);
}
.hover_mouse a::after {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
  z-index: 1;
}
.hover_mouse.active .box {
  opacity: 1;
}
.hover_mouse.active a {
  transform: scale(1);
}

.wpr-delay-stats-area .section-inner .section-top-area {
  padding: 100px 0 64px;
}
.wpr-delay-stats-area .section-inner .delay-stats-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #98FF03;
  position: relative;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.wpr-delay-stats-area .section-inner .delay-stats-fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #98FF03;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1.5px #98FF03;
}
.wpr-delay-stats-area .section-inner .pct {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading-1);
  line-height: 1;
}

@media (max-width: 1439px) {
  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 250px;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 100px;
  }

  .wpr-about-area .section-inner .about-bottom-content .right-area .image-area {
    height: 100%;
  }
  .wpr-about-area .section-inner .about-bottom-content .right-area .image-area img:nth-child(1) {
    height: 100%;
    object-fit: cover;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 42px;
  }

  .why-choose-wrapper .wrapper-list {
    padding: 0 10px !important;
  }

  .why-choose-wrapper .wrapper-list li {
    font-size: 14px;
  }

  .wpr-working-process .working-process-left .section-title-area .section-title {
    font-size: 60px;
  }
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .wpr-services-area .section-bottom-content .service-wrapper .content .mid .h2 {
    font-size: 180px;
  }

  .why-choose-wrapper2 {
    padding: 56px 28px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content {
    padding: 32px 20px 40px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .bottom ul li {
    font-size: 14px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .bottom .service-btn-area {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wpr-project-area .section-inner .floating-content .section-title-area .section-title {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 21px 45px 20px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 12px 45px;
  }

  .main-nav-area ul {
    gap: 20px;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 80px;
  }

  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 200px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area,
.wpr-banner-area .banner-content-area .section-title .left-area {
    padding: 25px 0;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
.wpr-banner-area .banner-content-area .banner-shape-area img.two {
    width: 225px;
  }

  .wpr-services-area .section-bottom-content {
    flex-wrap: wrap;
  }

  .wpr-services-area .section-bottom-content .service-wrapper {
    flex-basis: 50%;
  }
  .wpr-services-area .section-bottom-content .service-wrapper:nth-child(3), .wpr-services-area .section-bottom-content .service-wrapper:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 500px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 100px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    top: 35px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 450px;
  }

  .award-item {
    padding: 40px 30px;
  }

  .wpr-footer-area .copyright-area {
    padding: 24px;
  }

  .wpr-working-process .working-process-left .section-title-area .section-title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .why-choose-wrapper2 {
    padding: 40px 20px;
  }

  .why-choose-wrapper2 .title {
    font-size: 18px;
  }

  .why-choose-wrapper2 .desc {
    font-size: 14px;
  }

  .award-item.active .left .content .desc {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .wpr-banner-area .banner-content-area .section-title {
    font-size: 60px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area .arrow-track,
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track {
    width: 80%;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 200px;
  }

  .wpr-footer-area .copyright-area {
    padding: 24px;
  }

  .wpr-why-choose-us-area2 .section-inner .bottom-content-area {
    flex-wrap: wrap;
  }

  .why-choose-wrapper2 {
    width: 50%;
  }
  .why-choose-wrapper2:nth-child(1), .why-choose-wrapper2:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }
  .why-choose-wrapper2:nth-child(2) {
    border-right: none;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 72px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 400px;
  }

  .award-item.active .left .content .desc {
    margin-top: 25px;
    height: 80px;
  }

  .wpr-why-choose-us-area .wpr-content-area .content-inner {
    margin: 0 20px;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 38px;
  }

  .wpr-working-process .working-process-left {
    margin-bottom: 50px;
  }

  .wpr-working-process .working-process-left {
    gap: 40px;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 21px 25px 20px;
  }

  .main-nav-area ul {
    gap: 15px;
  }

  .side-bar {
    display: flex;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 12px 25px;
  }

  .wpr-footer-area .copyright-area p {
    width: max-content;
  }

  .wpr-footer-area .copyright-area .scroll-top-btn {
    max-width: max-content;
  }

  .main-nav-area {
    display: none;
  }

  .header-style-one .header-style-one-wrapper .left-area.square-dot .square-shape.top-right,
.header-style-one .header-style-one-wrapper .left-area.square-dot .square-shape.bottom-right,
.header-style-one .header-style-one-wrapper .button-area-start.square-dot .square-shape.top-left,
.header-style-one .header-style-one-wrapper .button-area-start.square-dot .square-shape.bottom-left {
    display: none;
  }

  .header-style-one .header-style-one-wrapper .button-area-start,
.header-style-one .header-style-one-wrapper .left-area {
    border-width: 0 0 0 0;
  }

  .wpr-project-area .section-inner .floating-content .section-title-area .section-title span img {
    width: 100px;
  }

  .wpr-project-area .slide .slide-content .product-intro {
    max-width: 500px;
  }

  .working-process-wrapper {
    top: 50px;
  }

  .wpr-project-area .slide .slide-content .product-intro .bottom ul li {
    padding: 24px 18px;
  }

  .wpr-brand-area .section-inner .right-marquee-area .brand-inner {
    min-width: max-content;
  }
}
@media (max-width: 768px) {
  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 135px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area,
.wpr-banner-area .banner-content-area .section-title .left-area {
    padding: 17px 0;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 48px;
  }

  .header-style-one .header-top .header-top-inner {
    gap: 25px;
  }

  .wpr-about-area .section-inner .about-bottom-content {
    flex-direction: column;
  }

  .wpr-about-area .section-inner .about-bottom-content .left-area {
    max-width: 100%;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .mid .h2 {
    font-size: 150px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .bottom .service-btn-area {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 400px;
  }

  .wpr-footer-area .footer-logo-area {
    padding: 140px 0 100px;
  }

  .wpr-footer-area .copyright-area {
    flex-wrap: wrap;
    gap: 30px;
  }

  .wpr-footer-area .copyright-area .left-social-area {
    width: 100%;
  }
  .wpr-footer-area .copyright-area .left-social-area ul {
    justify-content: center;
  }

  .why-choose-wrapper2 {
    padding: 40px 20px;
  }

  .wpr-footer-area .footer-top {
    padding: 50px 25px;
  }

  .wpr-footer-area .footer-top ul li a {
    font-size: 20px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track .arrow {
    height: 20px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 54px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    top: 15px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag.right {
    right: 20px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag.left {
    left: 20px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 300px;
  }

  .wpr-why-choose-us-area2 .section-inner .section-title-area {
    padding: 100px 30px;
  }

  .award-item .image-area {
    position: relative;
    transform: none;
    top: unset;
    right: unset;
    height: 0;
  }

  .award-item.active .image-area {
    margin-top: 30px;
    height: auto;
  }

  .wpr-working-process .section-inner {
    padding: 60px 20px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content {
    padding: 32px 20px 40px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .bottom ul li {
    font-size: 14px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content .bottom .service-btn-area {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .why-choose-wrapper {
    max-width: 100% !important;
  }

  .why-choose-wrapper.ml-auto {
    margin-left: 0;
  }

  .working-process-wrapper {
    top: 30px;
  }

  .wpr-project-area .section-inner .space {
    height: 100px;
  }

  .wpr-project-area .section-inner .floating-content {
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .wpr-project-area .wpr-video-pin {
    height: auto !important;
  }

  
.wpr-project-area .slide .slide-content {
    position: relative !important;
  }

  
.wpr-project-area .slide .slide-content .product-intro {
    position: relative !important;
    height: 100%;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
    height: 85px;
    width: 85px;
    line-height: 85px;
  }

  
.wpr-project-area .slide .image-area .shape.top-left-shape,
.wpr-project-area .slide .image-area .shape.top-right-shape {
    width: 100px;
  }

  .wpr-project-area .section-inner .floating-content .section-title-area .section-title span img {
    margin-left: 5px;
    margin-top: -5px;
  }
}
@media (max-width: 576px) {
  .header-style-one .header-top {
    display: none;
  }

  .wpr-banner-area .banner-content-area .section-title {
    flex-direction: column;
  }

  .wpr-banner-area .banner-content-area .section-title .left-area .arrow-track,
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track {
    display: none;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
.wpr-banner-area .banner-content-area .banner-shape-area img.two {
    max-width: 200px;
  }

  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    max-width: 150px;
    padding: 20px 0;
  }

  .wpr-banner-area .banner-content-area {
    height: auto;
  }

  .wpr-banner-area .banner-content-area .text-area .button-area {
    flex-direction: column;
  }

  .wpr-banner-area .banner-content-area .top-shape {
    display: none;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area .square-shape,
.wpr-banner-area .banner-content-area .section-title .left-area .square-shape {
    display: none;
  }

  .wpr-about-area .section-inner .section-top-area {
    padding: 70px 40px;
  }

  .wpr-about-area .section-inner .about-bottom-content .left-area ul li {
    padding: 26px 30px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper {
    flex-basis: 100%;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .image-area img {
    width: 100%;
    height: 580px;
    object-fit: cover;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 150px;
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 280px;
  }

  .why-choose-wrapper2 {
    width: 100%;
  }
  .why-choose-wrapper2:nth-child(1), .why-choose-wrapper2:nth-child(3), .why-choose-wrapper2:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .wpr-footer-area .footer-top ul li a {
    font-size: 16px;
  }

  .wpr-footer-area .footer-top ul li.square-dot {
    height: 8px;
    width: 8px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    display: none;
  }

  .wpr-cta-area .section-inner .section-title-area {
    padding: 0 35px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    bottom: 20px;
  }

  .wpr-cta-area .section-inner {
    padding: 70px 0 100px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    font-size: 12px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 200px;
  }

  .wpr-why-choose-us-area2 .section-inner .section-title-area {
    padding: 60px 30px;
  }

  .wpr-marquee-area .section-inner .title {
    font-size: 64px;
  }

  .working-process-wrapper .content-area {
    flex-direction: column;
    gap: 15px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start .wpr-btn {
    display: none;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 21px 20px 20px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 12px 20px;
  }

  .wpr-working-process .working-process-left .section-title-area .section-title {
    font-size: 42px;
  }

  .side-bar .sidebar-inner {
    padding: 40px 20px;
  }

  .why-choose-wrapper .wrapper-list {
    align-items: self-start;
    gap: 20px;
  }

  .why-choose-wrapper .wrapper-list li {
    align-items: start;
    line-height: 1.4;
  }

  
.wpr-project-area .slide .slide-content .product-intro .bottom ul {
    flex-wrap: wrap;
    padding: 40px 32px !important;
    gap: 20px;
    height: 316px;
  }

  
.wpr-project-area .slide .slide-content .product-intro .bottom ul li {
    border: none;
    padding: 0;
  }

  
.wpr-project-area .slide .slide-content .product-intro .bottom ul li:not(:last-child) {
    border: none;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation {
    bottom: 0;
    top: unset;
    transform: none;
  }
}
@media (max-width: 450px) {
  .wpr-banner-area .banner-content-area .text-area .desc br {
    display: none;
  }

  .wpr-brand-area .section-inner .right-marquee-area .brand-wrapper {
    height: 150px;
    line-height: 150px;
    width: 180px;
  }

  .wpr-brand-area .section-inner .left-text {
    min-width: 150px;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
.wpr-banner-area .banner-content-area .banner-shape-area img.two {
    max-width: 100px;
    min-width: 100px;
  }

  .wpr-banner-area .banner-content-area {
    padding: 100px 0;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 120px;
  }

  .wpr-footer-area .copyright-area {
    justify-content: center;
  }

  .wpr-footer-area .footer-top ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 36px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    display: none;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 140px;
  }

  .why-choose-wrapper .wrapper-list {
    padding: 0 !important;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 32px;
  }

  .wpr-marquee-area .section-inner .title {
    font-size: 56px;
  }

  .working-process-wrapper .content-area {
    padding: 25px 0 0;
  }

  .wpr-about-area .section-inner .section-top-area {
    padding: 60px 25px;
  }

  .wpr-about-area .section-inner .about-bottom-content .left-area ul li p.top-description br {
    display: none;
  }

  .wpr-working-process .working-process-left .section-title-area .section-title {
    font-size: 32px;
  }

  .wpr-project-area .slide .slide-content .product-intro .bottom ul li p {
    color: var(--color-white);
  }

  .wpr-project-area .slide .slide-content .product-intro .top {
    padding: 40px 32px 35px;
  }

  .wpr-project-area .slide .slide-content .product-intro .top .title {
    margin-bottom: 13px;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

   .wpr-project-area .slide .slide-content .product-intro {
    height: 545px;
  }
}
