@charset "UTF-8";
/* --------------- ********w********* --------------
   --------------- ********x********* --------------
    * Version: v1.0.0
    * Author: Wooprex
    * Author URI: https://wooprex.com  

   --------------- ********w********* --------------
   --------------- ********x********* -------------- */
/*-- Reset styles  -- */
/*-- Base: mixin & variable  -- */
/*google-fonts*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Darker+Grotesque:wght@300..900&display=swap");
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  transition: all 0.3s ease;
}

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

/* -- Common elements -- */
html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  color: #050e47;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  transition: all 0.6s ease;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1360px;
}

/* -- form style -- */
textarea,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=datetime],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Poppins", sans-serif;
  border: 1px solid #050e47;
  outline: 0;
  box-shadow: none;
  font-size: 20px;
  line-height: 20px;
  border-radius: 3px;
  padding: 20px 30px;
  width: 100%;
  background: transparent;
  color: #050e47;
  font-weight: 400;
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: #fd5a23;
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: #050e47;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=datetime]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: #050e47;
  transition: all 0.3s ease;
  font-size: 20px;
}

textarea {
  min-height: 120px;
  resize: none;
}

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

:-moz-placeholder {
  color: #000000;
}

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

:-ms-input-placeholder {
  color: #000000;
}

/* For Chrome, Edge, and Safari */
input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* For Firefox */
input[type=date]::-moz-calendar-picker-indicator,
input[type=time]::-moz-calendar-picker-indicator {
  display: none;
}

/* For Internet Explorer */
input[type=date]::-ms-clear,
input[type=date]::-ms-expand,
input[type=time]::-ms-clear,
input[type=time]::-ms-expand {
  display: none;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  color: #050e47;
  font-weight: 600;
}

h1 {
  font-size: 80px;
  line-height: 1.1em;
}

h2 {
  font-size: 68px;
  line-height: 1.2em;
}

h3 {
  font-size: 56px;
  line-height: 1.1em;
}

h4 {
  font-size: 42px;
  line-height: 1.1em;
}

h5 {
  font-size: 24px;
  line-height: 1.1em;
}

h6 {
  font-size: 20px;
  line-height: 1.1em;
}

p {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #050e47;
}
a:focus, a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
  color: #fd5a23 !important;
}

label {
  font-weight: 600;
}

.border-line {
  border: 1px solid #afafdc;
}

.border-line-bottom {
  border-bottom: 1px solid rgba(231, 231, 231, 0.16) !important;
}

.no-line {
  border: none !important;
}

.padding-y {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-bottom {
  padding-bottom: 100px;
}

.padding-top {
  padding-top: 100px;
}

.padding-x {
  padding-left: 60px;
  padding-right: 60px;
}

.wooprex-swiper {
  overflow-x: clip;
  position: relative;
}

/* -- radius --*/
.radius-8 {
  border-radius: 8px;
}

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

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

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

.rounded-full {
  border-radius: 999px;
}

/* -- text-size -- */
.text-size-1 {
  font-size: 12px;
}

.text-size-2 {
  font-size: 14px;
}

.text-size-3 {
  font-size: 16px;
}

.text-size-4 {
  font-size: 18px;
}

.text-size-5 {
  font-size: 20px;
}

.text-size-6 {
  font-size: 24px;
}

.text-size-7 {
  font-size: 28px;
}

.text-size-8 {
  font-size: 32px;
}

.text-size-9 {
  font-size: 38px;
}

.text-size-10 {
  font-size: 40px;
}

.text-size-11 {
  font-size: 48px;
}

.text-size-12 {
  font-size: 56px;
}

.text-size-13 {
  font-size: 64px;
}

.text-size-14 {
  font-size: 96px;
}

.text-size-15 {
  font-size: 112px;
}

/* -- fontWeight -- */
.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

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

.font-weight-400 {
  font-weight: 400;
}

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

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

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

.font-weight-800 {
  font-weight: 800;
}

.logo,
.logo a {
  max-width: 180px;
}
.logo img,
.logo a img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .logo,
  .logo a {
    max-width: 150px;
  }
}
/*-- All components style -- */
/*-- scrollbar -- */
/*-- Base: mixin & variable  -- */
/* Customize the entire scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* Width of the scrollbar */
  height: 10px;
  /* Height of the scrollbar (horizontal scrollbar) */
}

/* Customize the track (background) */
::-webkit-scrollbar-track {
  background: #ececf9;
}

/* Customize the handle (scrollbar tab) */
::-webkit-scrollbar-thumb {
  background: #050e47;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fd5a23;
}

.wooprex-desktop-menu {
  /* Customize the track (background) */
  /* Customize the handle (scrollbar tab) */
  /* Handle on hover */
}
.wooprex-desktop-menu ::-webkit-scrollbar {
  width: 10px;
  /* Width of the scrollbar */
  height: 10px;
  z-index: 999;
  position: relative;
}
.wooprex-desktop-menu ::-webkit-scrollbar-track {
  background: #ececf9;
}
.wooprex-desktop-menu ::-webkit-scrollbar-thumb {
  background: #a6a6be;
  border-radius: 6px;
}
.wooprex-desktop-menu ::-webkit-scrollbar-thumb:hover {
  background: #050e47;
}

/*-- header -- */
/*-- Base: mixin & variable  -- */
/* Start Wooprex Header & Light header */
.wooprex-header-section {
  background: #ffffff;
  width: 100%;
  z-index: 999;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s;
}
.wooprex-header-section.sticky {
  position: fixed;
  top: 0px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}

@keyframes stickyAnimation {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/*-- footer -- */
/*-- Base: mixin & variable  -- */
.wooprex-footer-section {
  background-image: url("../assets/shape/shape-05.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.wooprex-footer-section .footer-main {
  border: 1px solid #252526;
}
.wooprex-footer-section .footer-main a,
.wooprex-footer-section .footer-main h3,
.wooprex-footer-section .footer-main h4,
.wooprex-footer-section .footer-main p {
  color: #ffffff;
}
.wooprex-footer-section .footer-main .container {
  max-width: 1530px;
}
.wooprex-footer-section .footer-main .footer-top {
  border-bottom: 1px solid #252526;
  padding: 30px 0px;
}
.wooprex-footer-section .footer-main .footer-top .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.wooprex-footer-section .footer-main .footer-top .wooprex-follow-us {
  justify-content: end;
}
.wooprex-footer-section .footer-main .footer-top .wooprex-follow-us ul {
  gap: 13px;
}
.wooprex-footer-section .footer-main .footer-top .wooprex-follow-us ul li a {
  font-size: 20px;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}
.wooprex-footer-section .footer-main .footer-top .wooprex-follow-us ul li a:hover {
  border-color: #fd5a23;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
  border-right: 1px solid #252526;
  height: 100%;
  padding: 50px 0px;
  display: flex;
  align-items: normal;
  justify-content: space-between;
  flex-direction: column;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 10px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top h3 {
  margin-bottom: 15px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form {
  width: 520px;
  position: relative;
  margin-bottom: 15px;
  max-width: 100%;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form input {
  border: 1px solid #252526;
  width: 100%;
  border-radius: 64px;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 16px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form input::-moz-placeholder {
  color: #676770;
  font-size: 16px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form input::placeholder {
  color: #676770;
  font-size: 16px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252526;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  right: 10px;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 20px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form button i {
  color: #252526;
  line-height: 0em;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form button:hover {
  border-color: #fd5a23;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form button:hover i {
  color: #fd5a23;
  transform: rotate(-45deg);
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top h4 {
  margin-bottom: 10px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top a {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  color: #fd5a23;
  gap: 10px;
  position: relative;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top a:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  height: 1px;
  width: 0;
  transition: all 0.6s ease;
  background-color: #fd5a23;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top a i {
  line-height: 0px;
  transition: all 0.3s ease;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top a i:before {
  font-weight: 800 !important;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top a:hover:before {
  width: 100%;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left p {
  margin-top: 40px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right {
  padding: 50px 0px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
  gap: 70px;
  justify-content: end;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item h4 {
  color: #6f717e;
  margin-bottom: 20px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item ul li {
  padding: 6px 0px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item ul li:last-child {
  padding-bottom: 0;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item ul li a {
  font-size: 14px;
  line-height: 1.6em;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item ul li a i:before {
  position: relative;
  top: 2px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item ul li a:hover {
  transform: translateX(6px);
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.first ul li a {
  display: inline-flex;
  gap: 10px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy {
  text-align: end;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy p {
  display: none;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy a {
  position: relative;
  font-size: 14px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy a:first-child {
  padding-right: 10px;
  margin-right: 8px;
}
.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy a:first-child:before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #4c4c56;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}

/*-- nav/mega menu -- */
/*-- Base: mixin & variable  -- */
/* Wooprex menu css that applies to all section */
.wooprex-header-section .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #afafdc;
  height: 110px;
  position: relative;
  transition: all 0.3s ease;
}
.wooprex-header-section .header-main .header-logo {
  width: 240px;
  height: 100%;
  border-right: 1px solid #afafdc;
  padding: 20px;
}
.wooprex-header-section .header-main .header-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.wooprex-header-section .header-main .header-logo a img {
  width: 100%;
  height: 100%;
}
.wooprex-header-section .header-main .header-logo a .white-logo {
  display: none;
}
.wooprex-header-section .header-main .header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
.wooprex-header-section .header-main .header-right .header-contact,
.wooprex-header-section .header-main .header-right .wooprex-search-bar,
.wooprex-header-section .header-main .header-right .wooprex-menu-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-header-section .header-main .header-right .header-contact {
  margin-right: 30px;
}
.wooprex-header-section .header-main .header-right .header-contact ul {
  display: flex;
  gap: 30px;
}
.wooprex-header-section .header-main .header-right .header-contact ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.wooprex-header-section .header-main .header-right .header-contact ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  vertical-align: middle;
}
.wooprex-header-section .header-main .header-right .header-contact ul li a:hover {
  color: #fd5a23;
}
.wooprex-header-section .header-main .header-right .header-contact ul li a:hover i {
  color: #fd5a23;
}
.wooprex-header-section .header-main .header-right .wooprex-search-bar {
  padding: 40px;
  border-left: 1px solid #afafdc;
  text-align: center;
}
.wooprex-header-section .header-main .header-right .wooprex-menu-bar {
  padding: 40px;
  border-left: 1px solid #afafdc;
  text-align: center;
}
.wooprex-header-section .header-main .header-right .wooprex-menu-bar i {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-header-section .header-main .header-right i {
  font-size: 30px;
  cursor: pointer;
  color: #050e47;
  position: relative;
  transition: all 0.3s ease;
}
.wooprex-header-section .header-main .header-right i:hover {
  color: #fd5a23;
}
.wooprex-header-section .header-main .wooprex-search-box {
  background: #050e47;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  padding: 20px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.wooprex-header-section .header-main .wooprex-search-box form {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
}
.wooprex-header-section .header-main .wooprex-search-box input {
  border-color: transparent;
  color: #a5a5c3;
  padding: 0;
  cursor: pointer;
}
.wooprex-header-section .header-main .wooprex-search-box input::-moz-placeholder {
  color: #afafdc;
}
.wooprex-header-section .header-main .wooprex-search-box input::placeholder {
  color: #afafdc;
}
.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close {
  cursor: pointer;
}
.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close i {
  color: #afafdc;
  font-size: 24px;
}
.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close:hover i {
  animation: wooprexDraw 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.wooprex-header-section .header-main .wooprex-search-box.active-search {
  opacity: 1;
  visibility: visible;
}

/* Desktop menu */
.wooprex-desktop-menu {
  background-color: #050e47;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  z-index: 9999;
}
.wooprex-desktop-menu.show {
  height: 100vh;
  opacity: 1;
  visibility: visible;
}
.wooprex-desktop-menu a,
.wooprex-desktop-menu p,
.wooprex-desktop-menu h5 {
  color: #ffffff;
}
.wooprex-desktop-menu .desktop-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: relative;
  z-index: 3;
  background-color: #050e47;
}
.wooprex-desktop-menu .desktop-menu-header .desktop-menu-bar-close {
  cursor: pointer;
}
.wooprex-desktop-menu .desktop-menu-header .desktop-menu-bar-close i {
  font-size: 35px;
  color: #ffffff;
}
.wooprex-desktop-menu .desktop-menu-header .desktop-menu-bar-close:hover i {
  animation: wooprexDraw 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.wooprex-desktop-menu .desktop-menu-bottom {
  width: 100%;
  height: 100%;
  padding-left: calc((100% - 1400px) / 2);
  padding-right: 120px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: absolute;
  top: 0px;
  padding-top: 160px;
  padding-bottom: 30px;
  overflow-y: auto;
}
.wooprex-desktop-menu .desktop-menu-bottom .wooprex-location {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  position: relative;
  max-width: 550px;
}
.wooprex-desktop-menu .desktop-menu-bottom .wooprex-location .location-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 100px;
}
.wooprex-desktop-menu .desktop-menu-bottom .wooprex-location .location-top .location-item h5 {
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  padding-right: 50px;
  display: inline-block;
}
.wooprex-desktop-menu .desktop-menu-bottom .wooprex-location .location-top .location-item h5:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: #ffffff;
}
.wooprex-desktop-menu .desktop-menu-bottom .wooprex-location .location-top .location-item ul li a {
  font-weight: 300;
  padding: 5px 0px;
}
.wooprex-desktop-menu .shape-two {
  position: absolute;
  top: 0%;
  right: 0%;
  pointer-events: none;
  z-index: -1;
}
.wooprex-desktop-menu .shape-one {
  position: absolute;
  bottom: 0%;
  left: 0%;
  pointer-events: none;
}

.wooprex-desktop-menu-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Main menu */
.wooprex-main-menu {
  position: relative;
  z-index: 2;
  line-height: 1;
}
.wooprex-main-menu ul.box-nav li.menu-item {
  padding-bottom: 50px;
}
.wooprex-main-menu ul.box-nav li.menu-item a.item-link.router-link-active, .wooprex-main-menu ul.box-nav li.menu-item a.item-link:hover {
  color: #fd5a23;
}
.wooprex-main-menu ul.box-nav li.menu-item a.item-link.router-link-active:before, .wooprex-main-menu ul.box-nav li.menu-item a.item-link:hover:before {
  opacity: 1;
  visibility: visible;
}
.wooprex-main-menu ul.box-nav li.menu-item a.item-link {
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.wooprex-main-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s ease;
}
.wooprex-main-menu ul.box-nav li.menu-item a.item-link.link-active i {
  transform: rotate(-180deg);
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu {
  margin-top: 20px;
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link:hover, .wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link.router-link-active {
  color: #fd5a23;
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link:hover:before, .wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link.router-link-active:before {
  left: 18px;
  opacity: 1;
  visibility: visible;
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  font-size: 18px;
  line-height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.wooprex-main-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link.link-active i {
  transform: rotate(-180deg);
}

/* Start Wooprex mobile menu */
.wooprex-mobile-menu {
  width: 400px;
  max-width: 100%;
  height: 100%;
  background-color: #050e47;
  position: fixed;
  left: 0%;
  transform: translateX(-110%);
  top: 0;
  padding-top: 30px;
  box-shadow: 0px 0px 5px 0px rgba(150, 27, 68, 0.1215686275);
  transition: all 0.6s ease;
  overflow-y: auto;
  z-index: 999;
}
.wooprex-mobile-menu ul.box-nav {
  padding-top: 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item {
  padding: 0px 20px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item:hover a.item-link {
  color: #fd5a23;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link {
  padding: 15px 0px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  transition: all 0.3s ease;
  gap: 2px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link:hover {
  color: #050e47;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu {
  padding-bottom: 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 0px 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link.router-link-active, .wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li > a.sub-menu-link:hover {
  color: #fd5a23;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  padding: 4px 0px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu.show {
  transform: translateX(0%);
}

.wooprex-mobile-menu-bar {
  display: none;
}

.mobile-menu-bar-close {
  text-align: right;
  font-size: 24px;
  margin-right: 20px;
}
.mobile-menu-bar-close i {
  color: #ffffff;
}
.mobile-menu-bar-close:hover i {
  animation: wooprexDraw 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/*-- heading/subheading -- */
/*-- Base: mixin & variable  -- */
/* Section header styling */
.sub-header {
  color: #050e47;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Darker Grotesque", sans-serif;
  text-transform: capitalize;
}

.header {
  font-size: 72px;
  font-weight: 600;
  max-width: 800px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  color: #050e47;
}
.header span {
  color: #afafdc;
}

/*-- Breadcrumb -- */
/*-- Base: mixin & variable  -- */
.wooprex-breadcrumb-section {
  padding-left: calc((100% - 1340px) / 2);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.wooprex-breadcrumb-section .breadcrumb-left {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.wooprex-breadcrumb-section .breadcrumb-left:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  top: -40%;
  width: 140%;
  height: 140%;
  background-image: url("../assets/shape/shape-012.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  pointer-events: none;
  z-index: -1;
}
.wooprex-breadcrumb-section .breadcrumb-left a {
  color: #a5a5c3;
}
.wooprex-breadcrumb-section .breadcrumb-left h3 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wooprex-breadcrumb-section .breadcrumb-left p {
  max-width: 260px;
}
.wooprex-breadcrumb-section .breadcrumb-right {
  height: 475px;
  position: relative;
}
.wooprex-breadcrumb-section .breadcrumb-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 100%;
  width: 47%;
  background-image: url("../assets/shape/shape-07.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.wooprex-breadcrumb-section .breadcrumb-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

/*-- slider -- */
/*-- Base: mixin & variable  -- */
.wooprex-swiper-navigation {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  height: 100%;
}
.wooprex-swiper-navigation .swiper-button-prev:after {
  content: "\f122";
}
.wooprex-swiper-navigation .swiper-button-next:after {
  content: "\f121";
}
.wooprex-swiper-navigation .swiper-button-prev,
.wooprex-swiper-navigation .swiper-button-next {
  position: relative;
  left: inherit;
  right: inherit;
  top: inherit;
  border: 1px solid #afafdc;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin: 0;
  background: #ffffff;
  transition: all 0.6s ease;
}
.wooprex-swiper-navigation .swiper-button-prev:hover,
.wooprex-swiper-navigation .swiper-button-next:hover {
  color: #ffffff !important;
  border-color: #050e47;
}
.wooprex-swiper-navigation .swiper-button-prev:hover:before,
.wooprex-swiper-navigation .swiper-button-next:hover:before {
  width: 100%;
}
.wooprex-swiper-navigation .swiper-button-prev:hover:after,
.wooprex-swiper-navigation .swiper-button-next:hover:after {
  color: #ffffff;
}
.wooprex-swiper-navigation .swiper-button-prev:before,
.wooprex-swiper-navigation .swiper-button-next:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #050e47;
  transition: all 0.6s ease;
  z-index: -1;
}
.wooprex-swiper-navigation .swiper-button-prev:after,
.wooprex-swiper-navigation .swiper-button-next:after {
  font-family: "flaticon_it_and_software";
  font-size: 30px;
  color: #000000;
}

/* Banner navigation */
.wooprex-banner-section .wooprex-swiper-navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  padding-left: 15px;
  padding-top: 15px;
  height: auto;
}

/* Service page slider */
.wooprex-service-image-slider.wooprex-swiper.eleven {
  padding-bottom: 40px;
}
.wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide {
  height: 100vh;
  overflow: hidden;
}
.wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-service-image-slider.wooprex-swiper.eleven .wooprex-swiper-navigation {
  position: absolute;
  bottom: 0px;
  right: 60px;
  background: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  height: auto;
}
.wooprex-service-image-slider.wooprex-swiper.eleven .wooprex-swiper-navigation .swiper-button-prev,
.wooprex-service-image-slider.wooprex-swiper.eleven .wooprex-swiper-navigation .swiper-button-next {
  position: sticky;
}

.wooprex-home-service-section .wooprex-swiper-navigation.bottom {
  display: none;
}

/* project page slider */
.wooprex-project-slider-section .wooprex-swiper-navigation {
  margin-top: 40px;
  justify-content: space-between;
}
.wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-prev span,
.wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-next span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-wrap: nowrap;
  color: #a6a6be;
  height: 30px;
  line-height: 30px;
}
.wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-prev span {
  right: -150px;
}
.wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-next span {
  left: -115px;
}

/* Swiper pagination */
.wooprex-swiper-pagination {
  height: 100%;
}
.wooprex-swiper-pagination .swiper-pagination {
  position: static;
  font-size: 60px;
  text-align: left;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #a6a6be;
}
.wooprex-swiper-pagination .swiper-pagination span {
  line-height: 1;
}
.wooprex-swiper-pagination .swiper-pagination span.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #5c5c75;
  transition: all 0.3s ease;
}
.wooprex-swiper-pagination .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.8);
  background-color: #050e47;
}
.wooprex-swiper-pagination .swiper-pagination .swiper-pagination-current {
  color: #050e47;
}

@media only screen and (max-width: 767px) {
  .wooprex-swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wooprex-home-service-section .wooprex-swiper-navigation.bottom {
    display: flex;
    margin-top: 30px;
  }
  .wooprex-home-service-section .home-service-top .wooprex-swiper-navigation {
    display: none;
  }
  .wooprex-home-portfolio-section .wooprex-swiper-navigation,
  .wooprex-testimonial-section .wooprex-swiper-navigation,
  .wooprex-about-slider-section .wooprex-swiper-navigation {
    justify-content: end;
  }
}
@media only screen and (max-width: 575px) {
  .wooprex-swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wooprex-swiper-navigation .swiper-button-prev,
  .wooprex-swiper-navigation .swiper-button-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .wooprex-swiper-pagination .swiper-pagination {
    font-size: 24px;
  }
  .wooprex-testimonial-section .wooprex-swiper-navigation,
  .wooprex-about-slider-section .wooprex-swiper-navigation {
    justify-content: center;
  }
}
/*-- button -- */
/*-- Base: mixin & variable  -- */
/*========================== Wooprex Button style ==========================*/
.wooprex-btn {
  background-color: #ffffff;
  color: #fd5a23;
  padding: 13px 26px;
  text-transform: uppercase;
  border: 1px solid;
  border-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 10px;
}
.wooprex-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.wooprex-btn:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #fd5a23;
  transition: all 0.6s ease;
  z-index: -1;
}
.wooprex-btn:hover {
  color: #ffffff !important;
  border-color: #fd5a23;
}
.wooprex-btn:hover:before {
  width: 100%;
}
.wooprex-btn.color-btn {
  background-color: #fd5a23;
  color: #ffffff;
  border-color: #fd5a23;
}
.wooprex-btn.color-btn:before {
  background-color: #050e47;
}
.wooprex-btn.color-btn:hover {
  border-color: #050e47;
}

/* ================================ Read more button Style ==================================*/
.wooprex-read-more {
  position: relative;
  padding-right: 20px;
  padding-bottom: 5px;
  color: #050e47;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.input-wrapper {
  position: relative;
  display: inline-flex;
}
.input-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #050e47;
  transition: all 0.6s ease;
  z-index: -1;
}
.input-wrapper:after {
  content: "\f121";
  font-family: "flaticon_it_and_software";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  color: #ffffff;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 2;
  font-size: 24px;
}
.input-wrapper .wooprex-btn {
  min-width: 180px;
  padding: 13px 75px 13px 45px;
}
.input-wrapper .wooprex-btn:before {
  display: none;
}
.input-wrapper:hover .wooprex-btn {
  background-color: transparent;
  border-color: #050e47;
}
.input-wrapper:hover:before {
  width: 100%;
}

/*-- Follow us -- */
/*-- Base: mixin & variable  -- */
.wooprex-follow-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.wooprex-follow-us h5 {
  padding-right: 70px;
  display: inline-block;
  position: relative;
}
.wooprex-follow-us h5:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: #ffffff;
}
.wooprex-follow-us ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
  line-height: 2;
}
.wooprex-follow-us ul li a {
  display: block;
  font-size: 35px;
  text-align: center;
  transition: all 0.6s ease;
}
.wooprex-follow-us ul li a i {
  position: relative;
  top: 2px;
}

/*-- counter -- */
/*-- Base: mixin & variable  -- */
div.wooprex-counter-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: -120px;
}
div.wooprex-counter-section h3 {
  font-size: 128px;
  max-width: 60%;
}
div.wooprex-counter-section p {
  max-width: 600px;
  margin-left: auto;
  line-height: 1.7em;
}

section.wooprex-counter-section {
  background-color: #f9f9ff;
  position: relative;
  overflow: hidden;
}
section.wooprex-counter-section:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/shape/shape-20.svg");
  background-repeat: no-repeat;
  background-position: center;
}
section.wooprex-counter-section h3 {
  font-size: 112px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
section.wooprex-counter-section p {
  color: #5c5c75;
}
section.wooprex-counter-section .counter-image {
  height: 125px;
  overflow: hidden;
}
section.wooprex-counter-section .counter-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.wooprex-counter-section .counter-image img:hover {
  transform: scale(1.1);
}
section.wooprex-counter-section .counter-top-right {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

/* Main counter */
.wooprex-counter {
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.wooprex-counter .counter-item {
  padding: 30px;
  background-color: #f3f3ff;
  min-height: 225px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.wooprex-counter .counter-item h4 {
  font-size: 72px;
  font-weight: 300;
  margin-bottom: 20px;
}
.wooprex-counter .counter-item p {
  max-width: 230px;
  margin: 0;
}

/*-- Range progress -- */
/*-- Base: mixin & variable  -- */
.wooprex-range-wrapper {
  display: flex;
  align-items: normal;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
}
.wooprex-range-wrapper .wooprex-range-item .range-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.wooprex-range-wrapper .wooprex-range-item .range-title p {
  color: #000000;
}
.wooprex-range-wrapper .wooprex-range-item .range-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: #e4e4e4;
  border-radius: 40px;
}
.wooprex-range-wrapper .wooprex-range-item .range-bar .range-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  background: #a1a1d0;
}
.wooprex-range-wrapper .wooprex-range-item .range-bar .range-progress.animated {
  animation: progress 2s ease-in-out forwards;
}
.wooprex-range-wrapper .wooprex-range-item:first-child .range-bar .range-progress.animated {
  width: 88%;
}
.wooprex-range-wrapper .wooprex-range-item:nth-child(2) .range-bar .range-progress.animated {
  width: 95%;
}
.wooprex-range-wrapper .wooprex-range-item:last-child .range-bar .range-progress.animated {
  width: 75%;
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-- Service item section -- */
/*-- Base: mixin & variable  -- */
/* Service item home */
.wooprex-service-item {
  background-color: #f3f3ff;
  padding: 30px;
  position: relative;
}
.wooprex-service-item a {
  display: block;
  position: relative;
  z-index: 2;
}
.wooprex-service-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #fd5a23;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.wooprex-service-item .icon {
  transition: all 0.3s ease;
}
.wooprex-service-item .icon i {
  font-size: 220px;
  color: #050e47;
}
.wooprex-service-item p {
  color: #5c5c75;
}
.wooprex-service-item .icon i,
.wooprex-service-item span,
.wooprex-service-item h3,
.wooprex-service-item p {
  transition: all 0.3s ease;
}
.wooprex-service-item:hover:before {
  height: 100%;
}
.wooprex-service-item:hover .icon {
  transform: scale(1.1);
}
.wooprex-service-item:hover .icon i,
.wooprex-service-item:hover span,
.wooprex-service-item:hover h3,
.wooprex-service-item:hover p {
  color: #ffffff;
}

/* Service item about */
.wooprex-about-service-section {
  position: relative;
  overflow: hidden;
}
.wooprex-about-service-section .wooprex-service-item {
  background-color: transparent;
  padding: 0;
}
.wooprex-about-service-section .wooprex-service-item:before {
  display: none;
}
.wooprex-about-service-section .wooprex-service-item h5 {
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
}
.wooprex-about-service-section .wooprex-service-item ul li {
  color: #000000;
}

/*-- portfolio item -- */
/*-- Base: mixin & variable  -- */
.wooprex-portfolio-item a {
  display: block;
  text-align: center;
}
.wooprex-portfolio-item a .portfolio-image {
  height: 685px;
  overflow: hidden;
  margin-bottom: 20px;
}
.wooprex-portfolio-item a .portfolio-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-portfolio-item a h5 {
  color: #a5a5c3;
  transition: all 0.3s ease;
}
.wooprex-portfolio-item:hover a img {
  transform: scale(1.1);
}
.wooprex-portfolio-item:hover h5 {
  color: #fd5a23;
}

/*-- blog section -- */
/*-- Base: mixin & variable  -- */
.wooprex-blog-section {
  position: relative;
  overflow: hidden;
}
.wooprex-blog-section .section-header {
  text-align: center;
}
.wooprex-blog-section .section-header .header {
  margin-left: auto;
  margin-right: auto;
}
.wooprex-blog-section .blog-main .blog-top {
  margin-bottom: 35px;
}
.wooprex-blog-section .blog-main .blog-top .top-left {
  padding: 40px;
}
.wooprex-blog-section .blog-main .blog-top .top-right {
  height: 100%;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn {
  width: 100%;
  height: 100%;
  border-color: #afafdc;
  color: #050e47;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn span {
  display: inline-flex;
  border: 1px solid #afafdc;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn span i {
  transform: rotate(0deg);
  transition: transform 0.3s;
  margin: 0;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn:before {
  display: none;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn:hover {
  color: #fd5a23 !important;
  border-color: #fd5a23;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn:hover span {
  border-color: #fd5a23;
}
.wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn:hover span i {
  transform: rotate(-45deg);
}
.wooprex-blog-section .blog-main .blog-bottom {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 25px;
}

/*-- vision -- */
/*-- Base: mixin & variable  -- */
.wooprex-vision-section {
  position: relative;
  overflow: hidden;
}
.wooprex-vision-section .row > div {
  padding-right: 0;
}
.wooprex-vision-section .vision-description {
  background-color: #050e47;
  position: relative;
  height: 100%;
  padding: 60px;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.wooprex-vision-section .vision-description h3,
.wooprex-vision-section .vision-description p {
  color: #ffffff;
}
.wooprex-vision-section .vision-description h3 {
  line-height: 1.3em;
}
.wooprex-vision-section .vision-description p {
  max-width: 480px;
  margin: 10px 0px 40px 0px;
}
.wooprex-vision-section .vision-description img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 85%;
  height: 75%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.wooprex-vision-section .vision-image {
  height: 100%;
  position: relative;
}
.wooprex-vision-section .vision-image:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 100%;
  width: 42%;
  background-image: url("/shape/shape-19.svg");
  background-repeat: no-repeat;
  background-position: right;
  z-index: 1;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.wooprex-vision-section .vision-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.animated-image {
  transform: translateY(100px);
  transition: transform 1.2s ease-out;
}

/*-- Partner -- */
/*-- Base: mixin & variable  -- */
.wooprex-partner-section {
  position: relative;
  overflow: hidden;
}
.wooprex-partner-section h5 {
  text-transform: uppercase;
  margin-bottom: 80px;
  position: relative;
  padding-right: 80px;
  display: inline-block;
}
.wooprex-partner-section h5:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: #050e47;
}
.wooprex-partner-section .partner-main {
  cursor: pointer;
}
.wooprex-partner-section .partner-main .swiper-slide {
  text-align: center;
}
.wooprex-partner-section .partner-main .swiper-slide img {
  vertical-align: middle;
}

/*-- team -- */
/*-- Base: mixin & variable  -- */
.wooprex-team-item .team-top {
  height: 450px;
  position: relative;
  overflow: hidden;
}
.wooprex-team-item .team-top .team-image {
  width: 100%;
  height: 100%;
}
.wooprex-team-item .team-top .team-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.wooprex-team-item .team-top .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-team-item .team-top .team-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  padding: 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  background-color: rgba(5, 14, 71, 0.5019607843);
}
.wooprex-team-item .team-top .team-social p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.wooprex-team-item .team-top .team-social ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.wooprex-team-item .team-top .team-social ul li a {
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
}
.wooprex-team-item .team-top .team-social ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-team-item .team-top .team-social ul li a:hover {
  border-color: #fd5a23;
  color: #fd5a23;
}
.wooprex-team-item .team-description {
  padding-top: 20px;
}
.wooprex-team-item .team-description h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.wooprex-team-item .team-description h5 {
  font-size: 16px;
  font-weight: 400;
}
.wooprex-team-item:hover .team-top .team-social {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .wooprex-team-item .team-top {
    height: 420px;
  }
}
/*-- testimonial -- */
/*-- Base: mixin & variable  -- */
.wooprex-testimonial-section {
  position: relative;
  overflow: hidden;
}
.wooprex-testimonial-section .section-header {
  text-align: center;
}
.wooprex-testimonial-section .section-header h3 {
  margin-left: auto;
  margin-right: auto;
}
.wooprex-testimonial-section .testimonial-item {
  position: relative;
  height: 600px;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 71, 0.5019607843);
  z-index: 1;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details .client-details {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 20px;
  z-index: 2;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details .client-details h5 a,
.wooprex-testimonial-section .testimonial-item .testimonial-details .client-details p {
  color: #ffffff;
}
.wooprex-testimonial-section .testimonial-item .testimonial-details .client-details h5 a {
  font-family: "Darker Grotesque", sans-serif;
}
.wooprex-testimonial-section .testimonial-item .client-review {
  background-color: #050e47;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 0%;
  width: 100%;
  z-index: 3;
  padding: 30px;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.wooprex-testimonial-section .testimonial-item .client-review p,
.wooprex-testimonial-section .testimonial-item .client-review h5 a {
  color: #ffffff;
}
.wooprex-testimonial-section .testimonial-item .client-review > p {
  font-family: "Darker Grotesque", sans-serif;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.3em;
}
.wooprex-testimonial-section .testimonial-item .client-review h5 a {
  font-family: "Darker Grotesque", sans-serif;
}
.wooprex-testimonial-section .testimonial-item .client-review .vertical-line {
  width: 1px;
  height: 0%;
  background-color: #ffffff;
  margin-bottom: 10px;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.2s;
}
.wooprex-testimonial-section .testimonial-item .client-review .client-details {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 30px;
}
.wooprex-testimonial-section .swiper-slide-active .testimonial-item .client-review {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.wooprex-testimonial-section .swiper-slide-active .testimonial-item .client-review .vertical-line {
  height: 190px;
  opacity: 1;
  visibility: visible;
}
.wooprex-testimonial-section .testimonial-bottom {
  margin-top: 40px;
}
.wooprex-testimonial-section.two .testimonial-item {
  height: 530px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-image {
  width: 33%;
  height: 100%;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-details {
  width: 66%;
  height: 100%;
  background-color: #050e47;
  padding: 60px;
  padding-bottom: 40px;
  display: flex;
  align-items: normal;
  justify-content: end;
  flex-direction: column;
  gap: 50px;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-details:before {
  display: none;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-details img.quote {
  width: 250px;
  height: 250px;
  -o-object-fit: fill;
     object-fit: fill;
  position: absolute;
  top: 0;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-details > p {
  font-size: 44px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  line-height: 1.6em;
  padding-top: 15px;
}
.wooprex-testimonial-section.two .testimonial-item .testimonial-details .client-details {
  position: static;
  padding: 0;
}

/*-- tab -- */
/*-- Base: mixin & variable  -- */
.service-details-tab-section {
  position: relative;
  overflow: hidden;
}
.service-details-tab-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("/shape/shape-09.svg");
  pointer-events: none;
}

.tab-main-wrapper {
  padding-top: 80px;
}
.tab-main-wrapper ul#myTab {
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border: none;
}
.tab-main-wrapper ul#myTab li .nav-link {
  border: 1px solid #000000;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 32px 38px;
  border-radius: 0px;
  color: #000000;
  position: relative;
  display: flex;
  z-index: 2;
  transition: all 0.3s ease;
}
.tab-main-wrapper ul#myTab li .nav-link:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #fd5a23;
  transition: all 0.6s ease;
  z-index: -1;
}
.tab-main-wrapper ul#myTab li .nav-link:hover, .tab-main-wrapper ul#myTab li .nav-link.active {
  color: #ffffff !important;
  border-color: #fd5a23;
}
.tab-main-wrapper ul#myTab li .nav-link:hover:before, .tab-main-wrapper ul#myTab li .nav-link.active:before {
  width: 100%;
}
.tab-main-wrapper .tab-details h3 {
  margin: 80px 0px 70px 0px;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 150px;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item:last-child {
  margin-bottom: 0;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-image {
  height: 630px;
  overflow: hidden;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description {
  background-color: #f9f9ff;
  padding: 75px 50px;
  max-width: 620px;
  position: absolute;
  bottom: 0%;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description h4 {
  font-size: 32px;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description p {
  margin: 30px 0px;
  color: #5c5c75;
  font-size: 20px;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description .wooprex-btn {
  background-color: #fd5a23;
  color: #ffffff;
  border-color: #fd5a23;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description .wooprex-btn:before {
  background-color: #050e47;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description .wooprex-btn:hover {
  border-color: #050e47;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item:nth-child(odd) .service-description {
  left: 0;
}
.tab-main-wrapper .tab-details .service-details-wrapper .service-item:nth-child(even) .service-description {
  right: 0;
}

/*-- form -- */
/*-- Base: mixin & variable  -- */
.wooprex-contact-form-section {
  margin-top: 80px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.wooprex-contact-form-section form {
  margin-top: 30px;
}
.wooprex-contact-form-section form .row {
  margin-bottom: 20px;
}
.wooprex-contact-form-section form .row:last-child {
  margin-bottom: 0;
}
.wooprex-contact-form-section form input[type=text],
.wooprex-contact-form-section form input[type=email],
.wooprex-contact-form-section form textarea {
  padding: 20px;
  border-color: #afafdc;
  border-radius: 0px;
  color: #5c5c75;
  font-size: 16px;
}
.wooprex-contact-form-section form input[type=text]::-moz-placeholder, .wooprex-contact-form-section form input[type=email]::-moz-placeholder, .wooprex-contact-form-section form textarea::-moz-placeholder {
  color: #5c5c75;
  font-size: 16px;
}
.wooprex-contact-form-section form input[type=text]::placeholder,
.wooprex-contact-form-section form input[type=email]::placeholder,
.wooprex-contact-form-section form textarea::placeholder {
  color: #5c5c75;
  font-size: 16px;
}
.wooprex-contact-form-section form input[type=text]:focus,
.wooprex-contact-form-section form input[type=email]:focus,
.wooprex-contact-form-section form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #fd5a23;
  background-color: transparent;
}
.wooprex-contact-form-section form label {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #090511;
}
.wooprex-contact-form-section form label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 1px solid #090511;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  padding: 0;
}
.wooprex-contact-form-section form label input:checked {
  background-color: #050e47;
  border-color: #050e47;
}
.wooprex-contact-form-section form label input:checked::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.wooprex-contact-form-section form .input-wrapper {
  margin-top: 20px;
}

/* Comment form */
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
  padding: 20px;
  border-color: #afafdc;
  border-radius: 0px;
  color: #5c5c75;
  font-size: 16px;
}
.comment-form input[type=text]::-moz-placeholder, .comment-form input[type=email]::-moz-placeholder, .comment-form textarea::-moz-placeholder {
  color: #5c5c75;
  font-size: 16px;
}
.comment-form input[type=text]::placeholder,
.comment-form input[type=email]::placeholder,
.comment-form textarea::placeholder {
  color: #5c5c75;
  font-size: 16px;
}
.comment-form input[type=text]:focus,
.comment-form input[type=email]:focus,
.comment-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #fd5a23;
  background-color: transparent;
}
.comment-form .comment-form-comment textarea {
  height: 100%;
  display: block;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  margin-top: 20px;
}
.comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
.comment-form .comment-form-cookies-consent input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 1px solid #050e47;
  background-color: transparent;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
.comment-form .comment-form-cookies-consent input:checked {
  background-color: #050e47;
  border-color: #050e47;
}
.comment-form .comment-form-cookies-consent input:checked::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.comment-form .comment-form-cookies-consent label {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 300;
  color: #090511;
  width: 85%;
}
.comment-form .form-submit {
  margin-top: 40px;
}

/*-- comment -- */
/*-- Base: mixin & variable  -- */
.wooprex-blog-comment {
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid #afafdc;
}
.wooprex-blog-comment .comments-title {
  margin-bottom: 70px;
  font-size: 38px;
  line-height: 1em;
  font-weight: 500;
}
.wooprex-blog-comment .comment-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author img {
  margin-right: 20px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author b {
  position: relative;
  top: -8px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author a {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 400;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author span.says {
  display: none;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata {
  margin-left: 95px;
  margin-top: -30px;
  margin-bottom: 20px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-awaiting-moderation {
  margin-left: 95px;
  margin-bottom: 20px;
  display: block;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-content {
  margin-left: 95px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .comment-content p {
  font-size: 16px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .reply {
  margin-left: 95px;
  margin-top: 20px;
}
.wooprex-blog-comment .comment-list .comment .comment-body .reply .comment-reply-link.wooprex-btn {
  padding: 8px 32px;
  font-size: 15px;
  min-width: 90px;
}
.wooprex-blog-comment .comment-list .comment .children {
  margin-left: 95px;
  margin-top: 50px;
}
.wooprex-blog-comment .comment-list .comment .children .children .children {
  margin-left: 0;
}
.wooprex-blog-comment .comment-respond {
  margin-top: 80px;
}
.wooprex-blog-comment .comment-respond .comment-reply-title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 15px;
}
.wooprex-blog-comment .comment-respond .comment-reply-title a {
  margin-left: 20px;
  color: #050e47;
  font-size: 16px;
}
.wooprex-blog-comment .comment-respond form.comment-form p.comment-notes {
  margin-bottom: 50px;
  color: #303e42;
}
.wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as {
  margin-bottom: 50px;
  color: #303e42;
}
.wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as a {
  color: #050e47;
}
.wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .wooprex-blog-comment {
    padding-top: 50px;
    margin-top: 50px;
  }
  .wooprex-blog-comment h3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* comment*/
  .wooprex-blog-comment .comments-title {
    margin-bottom: 40px;
  }
  .wooprex-blog-comment .comment-list {
    gap: 30px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author img {
    width: 50px;
    height: 50px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author a {
    font-size: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata {
    margin-left: 75px;
    margin-top: -23px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata a {
    font-size: 14px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-awaiting-moderation {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-content {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply {
    margin-left: 75px;
    margin-top: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply .comment-reply-link {
    padding: 5px 35px;
  }
  .wooprex-blog-comment .comment-list .comment .children {
    margin-left: 0px;
    margin-top: 40px;
  }
  .wooprex-blog-comment .comment-respond {
    margin-top: 50px;
  }
  .wooprex-blog-comment .comment-respond .comment-reply-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.comment-notes {
    margin-bottom: 50px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as {
    margin-bottom: 50px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /* comment*/
  .wooprex-blog-comment .comments-title {
    margin-bottom: 40px;
    font-size: 30px;
  }
  .wooprex-blog-comment .comment-list {
    gap: 30px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author img {
    width: 50px;
    height: 50px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author a {
    font-size: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata {
    margin-left: 75px;
    margin-top: -23px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata a {
    font-size: 14px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-awaiting-moderation {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-content {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply {
    margin-left: 75px;
    margin-top: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply .comment-reply-link {
    padding: 5px 35px;
  }
  .wooprex-blog-comment .comment-list .comment .children {
    margin-left: 0px;
    margin-top: 40px;
  }
  .wooprex-blog-comment .comment-respond {
    margin-top: 50px;
  }
  .wooprex-blog-comment .comment-respond .comment-reply-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.comment-notes {
    margin-bottom: 50px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  /* comment*/
  .wooprex-blog-comment .comments-title {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .wooprex-blog-comment .comment-list {
    gap: 30px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author img {
    width: 50px;
    height: 50px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-author a {
    font-size: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata {
    margin-left: 75px;
    margin-top: -23px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-metadata a {
    font-size: 14px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-meta .comment-awaiting-moderation {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .comment-content {
    margin-left: 75px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply {
    margin-left: 75px;
    margin-top: 20px;
  }
  .wooprex-blog-comment .comment-list .comment .comment-body .reply .comment-reply-link {
    padding: 5px 35px;
  }
  .wooprex-blog-comment .comment-list .comment .children {
    margin-left: 0px;
    margin-top: 40px;
  }
  .wooprex-blog-comment .comment-respond {
    margin-top: 50px;
  }
  .wooprex-blog-comment .comment-respond .comment-reply-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.comment-notes {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .wooprex-blog-comment .comment-respond form.comment-form p.logged-in-as {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .comment-form .comment-form-cookies-consent {
    margin-top: 30px;
  }
}
/*-- pagination -- */
/*-- Base: mixin & variable  -- */
.wooprex-pagination-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.wooprex-pagination ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.wooprex-pagination ul li .page-numbers {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid;
  border-color: transparent;
  background-color: transparent;
  color: #050e47;
  font-size: 24px;
  transition: all 0.3s ease;
}
.wooprex-pagination ul li .page-numbers:hover {
  color: #fd5a23;
  border-color: #fd5a23;
}
.wooprex-pagination ul li.active .page-numbers {
  color: #fd5a23;
  border-color: #fd5a23;
}

.wooprex-navigation.style-1 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.wooprex-navigation.style-1 ul li a.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #afafdc;
  width: 80px;
  height: 80px;
  margin: 0;
  transition: all 0.6s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.wooprex-navigation.style-1 ul li a.page-numbers i {
  font-size: 30px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-navigation.style-1 ul li a.page-numbers:hover {
  color: #ffffff !important;
  border-color: #050e47;
}
.wooprex-navigation.style-1 ul li a.page-numbers:hover:before {
  width: 100%;
}
.wooprex-navigation.style-1 ul li a.page-numbers:hover i {
  color: #ffffff;
}
.wooprex-navigation.style-1 ul li a.page-numbers:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #050e47;
  transition: all 0.6s ease;
  z-index: -1;
}

@media (max-width: 991px) {
  .wooprex-pagination ul {
    gap: 10px;
  }
  .wooprex-pagination ul li a.page-numbers,
  .wooprex-pagination ul li span.page-numbers.current {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .wooprex-navigation.style-1 ul li a.page-numbers {
    width: 50px;
    height: 50px;
  }
  .wooprex-navigation.style-1 ul li a.page-numbers i {
    font-size: 24px;
  }
}
.wooprex-navigation.style-2 {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wooprex-navigation.style-2 a {
  min-width: auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wooprex-navigation.style-2 a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-navigation.style-2 a.prev {
  flex-direction: row-reverse;
}

/*-- Cursor resizer -- */
/*-- Base: mixin & variable  -- */
/* Basic styles for the custom cursor */
.wooprex-cursor-follower {
  width: 20px;
  height: 20px;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background-color: #5c5c75;
  transition: background-color 0.2s, opacity 0.2s, width 0.2s, height 0.2s;
}

/* Hover effect styles */
.wooprex-resizer-active {
  background-color: #050e47;
  width: 70px;
  height: 70px;
}
.wooprex-resizer-active:before, .wooprex-resizer-active:after {
  font-family: "flaticon_it_and_software";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  background-size: contain;
  font-size: 35px;
}
.wooprex-resizer-active:before {
  content: "\f122";
}
.wooprex-resizer-active:after {
  content: "\f121";
}

/*-- marquee -- */
/*-- Base: mixin & variable  -- */
.wooprex-marque-section {
  position: relative;
  overflow: hidden;
}
.wooprex-marque-section h3 {
  font-size: 300px;
  text-transform: capitalize;
  color: #ececf9;
  text-align: center;
  line-height: 1em;
}
.wooprex-marque-section .marque-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.wooprex-marque-section .marque-wrapper .marque-item {
  float: left;
  margin-right: 20px;
  height: 390px;
  overflow: hidden;
}
.wooprex-marque-section .marque-wrapper .marque-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-marque-section .marque-wrapper.marque-top {
  margin-bottom: 20px;
}

/*-- wooprex sidebar -- */
/*-- Base: mixin & variable  -- */
.wooprex-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wooprex-sidebar.left {
  padding-right: 25px;
}
.wooprex-sidebar.right {
  padding-left: 25px;
}
.wooprex-sidebar .sidebar-title {
  margin-bottom: 30px;
  color: #090511;
  font-size: 20px;
  font-weight: 500;
}
.wooprex-sidebar .wooprex-sidebar-search {
  position: relative;
  max-width: 400px;
}
.wooprex-sidebar .wooprex-sidebar-search input {
  padding: 10px 45px 10px 15px;
  border-radius: 0px;
  width: 100%;
  border-color: #090511;
  font-size: 14px;
}
.wooprex-sidebar .wooprex-sidebar-search input::-moz-placeholder {
  font-size: 14px;
  color: #9f9fc0;
}
.wooprex-sidebar .wooprex-sidebar-search input::placeholder {
  font-size: 14px;
  color: #9f9fc0;
}
.wooprex-sidebar .wooprex-sidebar-search button {
  background: transparent;
  border: none;
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 10px;
}
.wooprex-sidebar .wooprex-sidebar-search button i {
  color: #090511;
}
.wooprex-sidebar .wooprex-sidebar-category ul li {
  border-bottom: 1px solid #efeef5;
  padding-bottom: 5px;
}
.wooprex-sidebar .wooprex-sidebar-category ul li:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}
.wooprex-sidebar .wooprex-sidebar-category ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wooprex-sidebar .wooprex-sidebar-category ul li,
.wooprex-sidebar .wooprex-sidebar-archive ul li {
  margin-bottom: 20px;
  font-size: 16px;
}
.wooprex-sidebar .wooprex-sidebar-category ul li:last-child,
.wooprex-sidebar .wooprex-sidebar-archive ul li:last-child {
  margin-bottom: 0;
}
.wooprex-sidebar .wooprex-sidebar-category ul li a,
.wooprex-sidebar .wooprex-sidebar-archive ul li a {
  color: #5c5c75;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li {
  margin-bottom: 25px;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li:last-child {
  margin-bottom: 0;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a .latest-post-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a .latest-post-item .post-thumbnail {
  height: 140px;
  overflow: hidden;
  margin-bottom: 5px;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a .latest-post-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a .latest-post-item p.date {
  color: #a6a6be;
  margin-bottom: 8px;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a .latest-post-item p.details {
  color: #5c5c75;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a:hover p.details {
  color: #fd5a23;
}
.wooprex-sidebar .wooprex-sidebar-latest-post ul li a:hover img {
  transform: scale(1.05);
}
.wooprex-sidebar .wooprex-sidebar-tags .tagcloud {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 300px;
}
.wooprex-sidebar .wooprex-sidebar-tags .tagcloud a {
  font-size: 16px;
  font-weight: 400;
  text-transform: lowercase;
  padding-right: 10px;
  position: relative;
  color: #5c5c75;
}
.wooprex-sidebar .wooprex-sidebar-tags .tagcloud a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background-color: #5c5c75;
}
.wooprex-sidebar .wooprex-sidebar-tags .tagcloud a:last-child:before {
  display: none;
}
.wooprex-sidebar .wooprex-sidebar-social ul li a {
  font-size: 20px;
  color: #090511;
}
.wooprex-sidebar .wooprex-sidebar-category,
.wooprex-sidebar .wooprex-sidebar-archive,
.wooprex-sidebar .wooprex-sidebar-latest-post,
.wooprex-sidebar .wooprex-sidebar-tags,
.wooprex-sidebar .wooprex-sidebar-social {
  padding: 25px;
  border: 1px solid #efeef5;
  max-width: 400px;
}

/*-- bottom to top -- */
/*-- Base: mixin & variable  -- */
#topButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #050e47;
  padding: 0;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#topButton .progress-circle {
  width: 100%;
  height: 100%;
}
#topButton .progress-circle .progress-svg {
  width: 100%;
  height: 100%;
}
#topButton .progress-circle .progress-svg .progress-background {
  fill: none;
  stroke: #fd5a23;
  stroke-width: 4;
}
#topButton .progress-circle .progress-svg .progress-bar {
  fill: none;
  stroke: #ffffff;
  stroke-width: 8px;
  transform: translate(0px, 0px);
  transition: stroke-dashoffset 0.3s ease;
}
#topButton .progress-circle .font {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #ffffff;
  display: flex;
}
#topButton .progress-circle .font i {
  transform: rotate(180deg);
  line-height: 0px;
}
#topButton .progress-circle .font i:after {
  font-weight: 700 !important;
}
#topButton.show {
  opacity: 1;
  visibility: visible;
}

/*-- preload Animation -- */
/*-- Base: mixin & variable  -- */
@keyframes loopRound {
  0% {
    transform: rotate(-70deg);
  }
  100% {
    transform: rotate(70deg);
  }
}
@keyframes wooprexDraw {
  0%, 100% {
    clip-path: inset(0 0 0 0);
  }
  42% {
    clip-path: inset(0 0 0 100%);
  }
  43% {
    clip-path: inset(0 100% 0 0);
  }
}
.simpleParallax {
  height: 100%;
}

/*-- preload Spinner -- */
/*-- Base: mixin & variable  -- */
/* Preload 
------------------------------------------- */
.wooprex-preload-wrapper .wooprex-preload-container {
  display: flex;
}

.wooprex-preload-container {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wooprex-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top: 3px solid #050e47;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*-- All pages styles -- */
/*-- home page -- */
/*-- Base: mixin & variable  -- */
.wooprex-banner-section {
  position: relative;
  overflow: hidden;
}
.wooprex-banner-section .banner-slider .banner-item {
  position: relative;
}
.wooprex-banner-section .banner-slider .banner-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-image: url("/shape/shape-07.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  width: 40%;
  height: 100%;
  z-index: 1;
}
.wooprex-banner-section .banner-slider .banner-item .banner-image {
  height: 100%;
}
.wooprex-banner-section .banner-slider .banner-item .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  width: 800px;
  max-width: 100%;
  z-index: 3;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text h3,
.wooprex-banner-section .banner-slider .banner-item .banner-text h5 {
  color: #ffffff;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
  line-height: 1em;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text h5 {
  max-width: 420px;
  line-height: 1.6em;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text .wooprex-btn {
  margin-top: 35px;
}

/* Working steps section */
.wooprex-working-steps-section {
  position: relative;
  overflow: hidden;
  padding-left: calc((100% - 1340px) / 2);
}
.wooprex-working-steps-section .working-steps-main {
  cursor: pointer;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image {
  position: relative;
  background-color: #e6e6f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image i {
  font-size: 96px;
  color: #5c5c75;
  z-index: 3;
  transition: all 0.3s ease;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image img {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 150px;
  height: 150px;
  z-index: 1;
  transition: all 0.6s ease;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image img.shape-color {
  width: 0;
  height: 0;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fd5a23;
  width: 0;
  height: 0;
  transition: all 0.6s ease;
  z-index: 1;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image img.shape-light {
  width: 0;
  height: 0;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image img.shape-color {
  width: 150px;
  height: 150px;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image i {
  color: #ffffff;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image:before {
  width: 100%;
  height: 100%;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description {
  padding: 20px 0px;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
  margin-bottom: 20px;
}
.wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description p {
  color: #5c5c75;
}

/* Wooprex home about banner section */
.wooprex-about-us-banner {
  position: relative;
  overflow: hidden;
  height: 800px;
}
.wooprex-about-us-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-about-us-banner:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-image: url("/shape/shape-06.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 55%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.wooprex-about-us-banner .banner-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 700px;
  max-width: 100%;
  z-index: 2;
}
.wooprex-about-us-banner .banner-text h3,
.wooprex-about-us-banner .banner-text h5 {
  color: #ffffff;
}
.wooprex-about-us-banner .banner-text h5 {
  line-height: 1.5em;
  margin-bottom: 70px;
}

/* Wooprex home service section */
.wooprex-home-service-section {
  position: relative;
  overflow: hidden;
}
.wooprex-home-service-section .home-service-slider {
  margin-left: 60px;
}

/* Wooprex home portfolio section */
.wooprex-home-portfolio-section {
  position: relative;
  overflow: hidden;
  background-color: #f9f9ff;
  padding-top: 50px;
}
.wooprex-home-portfolio-section .home-portfolio-top {
  margin-bottom: 60px;
}
.wooprex-home-portfolio-section .home-portfolio-top h2 {
  color: #ececf9;
  font-size: 180px;
  text-wrap: nowrap;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.wooprex-home-portfolio-section .home-portfolio-top .section-header {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
}
.wooprex-home-portfolio-section .home-portfolio-top .section-header .header {
  margin: 0;
}
.wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab {
  justify-content: end;
  border: none;
  gap: 50px;
}
.wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link {
  border: none;
  background: transparent;
  font-size: 30px;
  font-weight: 300;
  color: #afafdc;
  padding: 0;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}
.wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link.active, .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link:hover {
  color: #fd5a23;
  border-bottom: 1px solid #fd5a23;
}
.wooprex-home-portfolio-section .home-portfolio-slider-main {
  position: relative;
  padding-bottom: 280px;
}
.wooprex-home-portfolio-section .home-portfolio-slider-main .home-portfolio-bottom {
  margin-top: 20px;
}
.wooprex-home-portfolio-section .home-portfolio-slider-main .portfolio-shape {
  position: absolute;
  bottom: 0%;
  right: 0%;
  right: -12%;
}

/*-- about page -- */
/*-- Base: mixin & variable  -- */
/* About - slider */
.wooprex-about-slider-section {
  position: relative;
  overflow: hidden;
}
.wooprex-about-slider-section .slider-main {
  margin-bottom: 30px;
  background-color: #ffffff;
}
.wooprex-about-slider-section .slider-main .swiper-slide {
  height: 515px;
  overflow: hidden;
}
.wooprex-about-slider-section .slider-main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* About - service section */
.wooprex-about-service-section {
  position: relative;
  overflow: hidden;
  overflow: visible;
}
.wooprex-about-service-section .shape {
  position: absolute;
  left: -5%;
  top: -45%;
  transform: scaleX(-1);
  width: 40%;
  height: 680px;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -o-object-position: left;
     object-position: left;
}
.wooprex-about-service-section .service-image {
  overflow: hidden;
  height: 100%;
}
.wooprex-about-service-section .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-about-service-section .service-description {
  padding-left: 40px;
}
.wooprex-about-service-section .service-description .service-main-wrapper .row {
  row-gap: 50px;
}
.wooprex-about-service-section .service-description .service-skills h4 {
  color: #000000;
  margin-bottom: 60px;
  border-bottom: 1px solid #090511;
  padding-bottom: 20px;
}
.wooprex-about-service-section .wooprex-experience {
  padding-bottom: 0;
}

/* About - project section */
.wooprex-project-about {
  position: relative;
  overflow: hidden;
}
.wooprex-project-about:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #050e47;
  opacity: 0.7;
  z-index: 1;
}
.wooprex-project-about:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 100%;
  width: 35%;
  background-image: url("/shape/shape-07.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.wooprex-project-about .project-description {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  padding: 0px 60px;
  width: 100%;
  padding-right: 330px;
  z-index: 2;
}
.wooprex-project-about .project-description h3 {
  color: #ffffff;
  font-size: 150px;
  line-height: 1em;
  margin-bottom: 60px;
}

/* Wooprex experience */
.wooprex-experience {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wooprex-experience p {
  color: #ffffff;
  max-width: 50%;
}
.wooprex-experience .wooprex-btn {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
}
.wooprex-experience .wooprex-btn i {
  transform: rotate(-45deg);
  font-size: 50px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.wooprex-experience.light .wooprex-btn {
  background-color: transparent;
}
.wooprex-experience.light .wooprex-btn:hover {
  border-color: #fd5a23;
}
.wooprex-experience.light .wooprex-btn:hover i {
  animation: wooprexDraw 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.wooprex-experience.color {
  max-width: 1360px;
  margin: 0 auto;
}
.wooprex-experience.color p {
  color: #050e47;
  max-width: 1000px;
}
.wooprex-experience.color .wooprex-btn {
  border-color: #fd5a23;
}
.wooprex-experience.color .wooprex-btn i {
  color: #fd5a23;
}
.wooprex-experience.color .wooprex-btn:hover i {
  animation: wooprexDraw 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  color: #ffffff;
}
.wooprex-experience.color h3 {
  font-size: 72px;
  max-width: 80%;
}
.wooprex-experience.color h3 span {
  color: #fd5a23;
}
.wooprex-experience.color.color-one a i {
  transform: rotate(0deg);
}

/* About slider section */
.wooprex-about-slider-section {
  position: relative;
  overflow: hidden;
}
.wooprex-about-slider-section .swiper-slide {
  overflow: hidden;
}
.wooprex-about-slider-section .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-about-slider-section .swiper-slide img:hover {
  transform: scale(1.05);
}

/*-- service page -- */
/*-- Base: mixin & variable  -- */
/* Service - process section */
.wooprex-process-section {
  position: relative;
  overflow: hidden;
}
.wooprex-process-section .section-header .sub-header {
  text-align: center;
}
.wooprex-process-section .section-header .header {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  text-align: center;
}
.wooprex-process-section .process-main .row {
  row-gap: 70px;
}
.wooprex-process-section .process-main .wooprex-process-item span {
  background-color: #f7f7ff;
  width: 78px;
  height: 78px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
}
.wooprex-process-section .process-main .wooprex-process-item span:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: transparent;
  border: 1px solid #f7f7ff;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  z-index: -1;
  transition: all 0.3s ease;
}
.wooprex-process-section .process-main .wooprex-process-item span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  background-color: #fd5a23;
  width: 0;
  height: 0;
}
.wooprex-process-section .process-main .wooprex-process-item span i {
  color: #fd5a23;
  font-size: 30px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.wooprex-process-section .process-main .wooprex-process-item h3 {
  margin-bottom: 20px;
}
.wooprex-process-section .process-main .wooprex-process-item p {
  color: #5c5c75;
}
.wooprex-process-section .process-main .wooprex-process-item:hover span:before {
  border-color: #fd5a23;
}
.wooprex-process-section .process-main .wooprex-process-item:hover span:after {
  width: 100%;
  height: 100%;
}
.wooprex-process-section .process-main .wooprex-process-item:hover span i {
  color: #ffffff;
}

/* Result section */
.wooprex-result-section {
  background-color: #050e47;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.wooprex-result-section:before {
  content: "";
  position: absolute;
  left: -150px;
  top: -35%;
  width: 60%;
  height: 900px;
  background-image: url("/shape/shape-011.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scaleX(-1);
}
.wooprex-result-section .result-description {
  display: flex;
  align-items: normal;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.wooprex-result-section .result-description h3 {
  font-size: 72px;
  color: #ffffff;
}
.wooprex-result-section .result-description p {
  color: #ffffff;
  margin-bottom: 80px;
}
.wooprex-result-section .result-description h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1em;
  max-width: 780px;
}
.wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
  font-size: 200px;
  color: #fd5a23;
  line-height: 1em;
}
.wooprex-result-section .result-description h4 > span.counter-text {
  width: 45%;
}
.wooprex-result-section .result-description h4 > span:last-child {
  width: 50%;
  font-size: 36px;
  color: #cfcfed;
  line-height: 1.3em;
  text-transform: uppercase;
}
.wooprex-result-section .result-image {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.wooprex-result-section .result-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-result-section .result-image:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 100%;
  width: 50%;
  background-image: url("/shape/shape-07.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

/* Service - service details tab */
.service-details-tab-section {
  position: relative;
  overflow: hidden;
}
.service-details-tab-section .tab-top-section h3 {
  max-width: 900px;
  font-size: 72px;
}
.service-details-tab-section .tab-top-section p {
  max-width: 760px;
  margin-left: auto;
  color: #5c5c75;
}

/*-- service details page -- */
/*-- Base: mixin & variable  -- */
.service-details-section {
  position: relative;
  overflow: hidden;
}
.service-details-section .header {
  max-width: 100%;
  font-weight: 500;
}
.service-details-section ul.wooprex-listing {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
  margin-bottom: 60px;
}
.service-details-section ul.wooprex-listing li {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #5c5c75;
}
.service-details-section ul.wooprex-listing li i {
  line-height: 0px;
  color: #000000;
}
.service-details-section .service-top-image {
  margin-bottom: 60px;
}
.service-details-section .service-top-image .row {
  row-gap: 25px;
}
.service-details-section .service-top-image .image-item {
  overflow: hidden;
  height: 100%;
}
.service-details-section .service-top-image .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-details-section .service-top-image .image-item img:hover {
  transform: scale(1.1);
}
.service-details-section .service-location .row {
  height: 100%;
}
.service-details-section .service-location p {
  max-width: 620px;
  color: #090511;
}
.service-details-section .service-location .location-wrapper {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.service-details-section .service-location .location-wrapper .location-item h5 {
  color: #797385;
  margin-bottom: 5px;
}
.service-details-section .service-location .location-wrapper .location-item p {
  width: 100%;
}
.service-details-section .service-location .learn-more {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}
.service-details-section .service-location .learn-more .wooprex-btn {
  border-color: #fd5a23;
}

/* Service - strategy section */
.wooprex-service-strategy-section {
  position: relative;
  overflow: hidden;
}
.wooprex-service-strategy-section .strategy-top {
  margin-bottom: 80px;
}
.wooprex-service-strategy-section .strategy-top .section-header h3 {
  font-weight: 500;
  margin-bottom: 20px;
}
.wooprex-service-strategy-section .strategy-top .section-header p {
  color: #5c5c75;
  max-width: 700px;
}
.wooprex-service-strategy-section .strategy-top .what-we-do {
  padding-top: 25px;
}
.wooprex-service-strategy-section .strategy-top .what-we-do h5 {
  color: #000000;
  margin-bottom: 40px;
}
.wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 70px;
}
.wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
  font-size: 24px;
  color: #5c5c75;
}
.wooprex-service-strategy-section .strategy-bottom .row {
  row-gap: 40px;
}
.wooprex-service-strategy-section .strategy-bottom .strategy-image {
  overflow: hidden;
}
.wooprex-service-strategy-section .strategy-bottom .strategy-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-service-strategy-section .strategy-bottom .strategy-image img:hover {
  transform: scale(1.1);
}

/*-- project page -- */
/*-- Base: mixin & variable  -- */
.wooprex-project-page-section {
  position: relative;
  overflow: visible;
  overflow-x: clip;
}
.wooprex-project-page-section h5 {
  max-width: 70%;
  line-height: 1.6em;
}
.wooprex-project-page-section .shape-image {
  position: absolute;
  top: -50px;
  right: -10%;
  width: 35%;
  height: 250px;
  pointer-events: none;
  z-index: -1;
}
.wooprex-project-page-section .shape-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.wooprex-project-page-section .project-main-wrapper {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 100px;
}

/* Main project item */
.wooprex-project-item {
  width: 100%;
}
.wooprex-project-item .project-image {
  height: 590px;
  overflow: hidden;
}
.wooprex-project-item .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-project-item .project-image img:hover {
  transform: scale(1.1);
}
.wooprex-project-item .project-description {
  height: 100%;
  background-color: #f3f3ff;
  padding: 25px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.wooprex-project-item .project-description .wooprex-btn {
  background-color: transparent;
  border-color: #050e47;
  color: #050e47;
  font-size: 32px;
  font-weight: 300;
  padding: 18px 36px;
  text-transform: capitalize;
}
.wooprex-project-item .project-description .wooprex-btn:hover {
  border-color: #fd5a23;
}
.wooprex-project-item .project-description .wooprex-btn i {
  transform: rotate(-45deg);
  font-size: 36px;
  line-height: 0px;
}
.wooprex-project-item .project-description p {
  color: #5c5c75;
  margin-top: 30px;
}

/* Project tags */
ul.wooprex-project-tags {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 300px;
}
ul.wooprex-project-tags li a {
  padding: 8px 16px;
  background-color: rgba(166, 166, 190, 0.2);
  position: relative;
  z-index: 1;
  font-size: 20px;
}
ul.wooprex-project-tags li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fd5a23;
  z-index: -1;
  width: 0;
  height: 100%;
  transition: all 0.3s ease;
}
ul.wooprex-project-tags li a:hover {
  color: #ffffff !important;
}
ul.wooprex-project-tags li a:hover:before {
  width: 100%;
}

/*-- project details page -- */
/*-- Base: mixin & variable  -- */
.wooprex-project-details-section {
  position: relative;
  overflow: hidden;
}
.wooprex-project-details-section .project-details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.wooprex-project-details-section .project-details-top h3 {
  font-size: 88px;
}
.wooprex-project-details-section .project-details-top .wooprex-project-tags {
  max-width: 100%;
}
.wooprex-project-details-section .project-details-image {
  overflow: hidden;
}
.wooprex-project-details-section .project-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-project-details-section .project-details-image img:hover {
  transform: scale(1.05);
}
.wooprex-project-details-section .project-description .description-top {
  padding-bottom: 60px;
}
.wooprex-project-details-section .project-description .description-top .description-top-left {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 100%;
  flex-direction: column;
  padding-top: 100px;
}
.wooprex-project-details-section .project-description .description-top .description-top-left p {
  color: #6f717e;
  margin-top: 10px;
}
.wooprex-project-details-section .project-description .description-top .description-top-right {
  background-color: #fafaff;
}
.wooprex-project-details-section .project-description .description-top .description-top-right h3 {
  font-size: 128px;
  line-height: 1em;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-left h4 {
  margin-bottom: 40px;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-left h5 {
  margin-bottom: 25px;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-left h4,
.wooprex-project-details-section .project-description .description-bottom .description-bottom-left h5 {
  color: #5c5c75;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-left p {
  color: #6f717e;
  max-width: 650px;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-right {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-right .row {
  row-gap: 60px;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-right p {
  color: #727285;
  margin-bottom: 10px;
}
.wooprex-project-details-section .project-description .description-bottom .description-bottom-right h5 {
  color: #090511;
}
.wooprex-project-details-section .project-details-images-section .row {
  row-gap: 40px;
}
.wooprex-project-details-section .project-services-section p {
  color: #5c5c75;
}
.wooprex-project-details-section .project-services-section .project-service-item h3 {
  margin-bottom: 45px;
}
.wooprex-project-details-section .project-services-section .project-service-item p {
  padding-right: 80px;
}

.wooprex-project-slider-section .swiper-slide {
  overflow: hidden;
}
.wooprex-project-slider-section .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-project-slider-section .swiper-slide img:hover {
  transform: scale(1.05);
}

/*-- contact page -- */
/*-- Base: mixin & variable  -- */
.wooprex-contact-section {
  position: relative;
  overflow: hidden;
}
.wooprex-contact-section:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/shape/shape-09.svg");
}
.wooprex-contact-section .container {
  max-width: 1200px;
}
.wooprex-contact-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.wooprex-contact-section .section-header .header {
  width: 100%;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: #35384a;
}
.wooprex-contact-section .section-header p {
  color: #5c5c75;
}
.wooprex-contact-section .location-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.wooprex-contact-section .location-wrapper .location-item {
  padding: 0px 120px;
  padding-bottom: 40px;
}
.wooprex-contact-section .location-wrapper .location-item:first-child {
  border-right: 1px solid #afafdc;
}
.wooprex-contact-section .location-wrapper .location-item h4 {
  color: #090511;
  border: 1px solid #afafdc;
  font-size: 32px;
  text-transform: capitalize;
  font-weight: 400;
  padding: 30px 70px;
  margin-top: -45px;
  text-align: center;
  background-color: #ffffff;
}
.wooprex-contact-section .location-wrapper .location-item ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  margin-top: 45px;
  gap: 20px;
}
.wooprex-contact-section .location-wrapper .location-item ul li a,
.wooprex-contact-section .location-wrapper .location-item ul li p {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  color: #090511;
}
.wooprex-contact-section .location-wrapper .location-item ul li a i,
.wooprex-contact-section .location-wrapper .location-item ul li p i {
  font-size: 26px;
}

/* Google Map */
.wooprex-google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 100%;
  height: 550px;
  width: 100%;
  mix-blend-mode: luminosity;
  filter: saturate(0) contrast(100%);
}

/*-- pricing page -- */
/*-- Base: mixin & variable  -- */
.wooprex-price-section {
  position: relative;
  overflow: hidden;
}
.wooprex-price-section .row {
  row-gap: 40px;
}
.wooprex-price-section .price-header {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.wooprex-price-section .price-header span {
  color: #35384a;
}
.wooprex-price-section .price-header h3 {
  font-size: 48px;
}
.wooprex-price-section .price-header p {
  max-width: 400px;
  color: #35384a;
}
.wooprex-price-section .wooprex-price .row {
  row-gap: 40px;
}

.wooprex-price-item {
  background-color: #f9f9ff;
  padding: 40px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease;
}
.wooprex-price-item:hover {
  box-shadow: 0 12px 34px 1px rgba(150, 27, 68, 0.1215686275);
}
.wooprex-price-item.item-1 {
  margin-top: 80px;
}
.wooprex-price-item .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 25px;
}
.wooprex-price-item h5 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
}
.wooprex-price-item h4 {
  font-size: 64px;
  transition: all 0.6s ease;
}
.wooprex-price-item h4 span {
  font-size: 24px;
  font-weight: 400;
}
.wooprex-price-item ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}
.wooprex-price-item ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 14px;
}
.wooprex-price-item ul li i {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-price-item .wooprex-btn {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .wooprex-price-item {
    height: 100%;
  }
  .wooprex-price-item.item-1 {
    margin-top: 0px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .wooprex-price-section .price-header h3 {
    font-size: 36px;
  }
  .wooprex-price-item {
    padding: 30px;
    height: 100%;
  }
  .wooprex-price-item.item-1 {
    margin-top: 0px;
  }
  .wooprex-price-item h4 {
    font-size: 40px;
  }
  .wooprex-price-item h4 span {
    font-size: 20px;
  }
  .wooprex-price-item p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .wooprex-price-section .price-header h3 {
    font-size: 32px;
  }
  .wooprex-price-item {
    padding: 30px 20px;
    gap: 20px;
  }
  .wooprex-price-item.item-1 {
    margin-top: 0px;
  }
  .wooprex-price-item h5 {
    font-size: 18px;
  }
  .wooprex-price-item h4 {
    font-size: 54px;
  }
  .wooprex-price-item h4 span {
    font-size: 20px;
  }
  .wooprex-price-item p {
    font-size: 14px;
  }
}
/*-- team page -- */
/*-- Base: mixin & variable  -- */
.wooprex-team-section {
  position: relative;
  overflow: hidden;
}
.wooprex-team-section .team-main-wrapper .row {
  row-gap: 40px;
}

/*-- team details page -- */
/*-- Base: mixin & variable  -- */
.wooprex-team-details-section {
  overflow: hidden;
}
.wooprex-team-details-section .team-top-wrapper .team-image {
  max-width: 500px;
  height: 100%;
  overflow: hidden;
}
.wooprex-team-details-section .team-top-wrapper .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-team-details-section .team-top-wrapper .team-description {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.wooprex-team-details-section .team-top-wrapper .team-description h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.wooprex-team-details-section .team-top-wrapper .team-description h4 {
  font-size: 20px;
  color: #fd5a23;
}
.wooprex-team-details-section .team-top-wrapper .team-description p {
  margin: 30px 0px;
  color: #35384a;
}
.wooprex-team-details-section .team-top-wrapper .team-description ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.wooprex-team-details-section .team-top-wrapper .team-description ul li span {
  font-weight: 500;
}
.wooprex-team-details-section .team-top-wrapper .team-description ul li a:hover {
  color: #fd5a23;
}
.wooprex-team-details-section .team-top-wrapper .team-description .wooprex-follow-us {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.wooprex-team-details-section .team-top-wrapper .team-description .wooprex-follow-us a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050e47;
  color: #ffffff;
  font-size: 16px;
  border: 1px solid #050e47;
}
.wooprex-team-details-section .team-top-wrapper .team-description .wooprex-follow-us a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-team-details-section .team-top-wrapper .team-description .wooprex-follow-us a:hover {
  border: 1px solid #fd5a23;
  background-color: #ffffff;
  color: #fd5a23;
}
.wooprex-team-details-section .team-bottom-wrapper h3 {
  margin-bottom: 15px;
  font-size: 40px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-left p {
  color: #35384a;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section {
  background-color: #f9f9ff;
  padding: 30px;
  border-radius: 16px;
  margin-top: 30px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section .counter-item {
  text-align: center;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section .counter-item h4 {
  margin-bottom: 10px;
  font-size: 48px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right {
  padding-left: 30px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .row {
  row-gap: 30px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right p {
  color: #35384a;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section {
  margin-top: 30px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .description h5 {
  font-size: 18px;
  color: #35384a;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .description p {
  font-weight: 500;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .range-progress {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background-color: #afafdc;
  position: relative;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .range-progress:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #050e47;
  border-radius: 8px;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item .range-progress.animated:before {
  animation: progress 2s ease-in-out forwards;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item.item-1 .range-progress:before {
  width: 90%;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item.item-2 .range-progress:before {
  width: 95%;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item.item-3 .range-progress:before {
  width: 100%;
}
.wooprex-team-details-section .team-bottom-wrapper .bottom-right .progress-section .progress-item.item-4 .range-progress:before {
  width: 85%;
}

@keyframes progress {
  0% {
    width: 0;
  }
}
/* min-screen-576px to max screen 1199px - responsive */
@media (min-width: 992px) and (max-width: 1199px) {
  /***************** Single Team ******************/
  .wooprex-team-details-section .team-top-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper {
    padding-top: 50px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-right {
    padding-left: 0;
  }
}
/* min screen- 768px to max screen 991px - responsive */
@media (min-width: 768px) and (max-width: 991px) {
  /***************** Single Team ******************/
  .wooprex-team-details-section .team-top-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-right {
    padding-left: 0;
  }
}
/* min screen- 576px to max screen 767 - responsive */
@media (min-width: 576px) and (max-width: 767px) {
  /***************** Single Team ******************/
  .wooprex-team-details-section .team-top-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-top-wrapper .team-description h2 {
    font-size: 35px;
  }
  .wooprex-team-details-section .team-top-wrapper .team-description h4 {
    font-size: 18px;
  }
  .wooprex-team-details-section .team-bottom-wrapper h3 {
    font-size: 38px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section {
    padding: 20px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section h4 {
    margin-bottom: 6px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-right {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  /***************** Single Team ******************/
  .wooprex-team-details-section .team-top-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-top-wrapper .team-description h2 {
    font-size: 28px;
  }
  .wooprex-team-details-section .team-top-wrapper .team-description h4 {
    font-size: 18px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-team-details-section .team-bottom-wrapper h3 {
    font-size: 30px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section {
    padding: 20px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-left .counter-section h4 {
    margin-bottom: 6px;
  }
  .wooprex-team-details-section .team-bottom-wrapper .bottom-right {
    padding-left: 0;
  }
}
/*-- blog pages -- */
/*-- Base: mixin & variable  -- */
.wooprex-blog-item .blog-item-left {
  padding: 50px 40px;
  background-color: #f9f9ff;
  min-height: 265px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.wooprex-blog-item .blog-item-left .row {
  row-gap: 30px;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner,
.wooprex-blog-item .blog-item-left .blog-item-right-inner {
  width: 100%;
  height: 100%;
  flex-direction: column;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 35px;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner p {
  display: flex;
  align-items: center;
  justify-content: start;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner p span {
  display: inline-block;
  height: 1px;
  width: 50px;
  background-color: #050e47;
  margin: 0px 15px;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul li a {
  border: 1px solid #a5a5c3;
  color: #a5a5c3;
  padding: 5px 14px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul li a:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #fd5a23;
  z-index: -1;
  height: 100%;
  width: 0;
  transition: all 0.6s ease;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul li a:hover {
  border-color: #fd5a23;
  color: #ffffff !important;
}
.wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul li a:hover:before {
  width: 100%;
}
.wooprex-blog-item .blog-item-left .blog-item-right-inner p {
  color: #5c5c75;
}
.wooprex-blog-item .blog-item-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.wooprex-blog-item .blog-item-right a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.wooprex-blog-item .blog-item-right a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-blog-item:hover .blog-item-right a img {
  transform: scale(1.1);
}
.wooprex-blog-item:hover .blog-item-left .blog-item-right-inner h3 a {
  color: #fd5a23;
}

/*-- blog details page -- */
/*-- Base: mixin & variable  -- */
.wooprex-blog-header h1 {
  margin-bottom: 40px;
  color: #303e42;
}

.wooprex-blog-details .wooprex-blog-thumbnail {
  height: 480px;
  margin-bottom: 40px;
}
.wooprex-blog-details .wooprex-blog-image {
  height: 310px;
  margin-bottom: 40px;
}
.wooprex-blog-details .wooprex-blog-thumbnail,
.wooprex-blog-details .wooprex-blog-image {
  overflow: hidden;
}
.wooprex-blog-details .wooprex-blog-thumbnail img,
.wooprex-blog-details .wooprex-blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-blog-details .wooprex-blog-thumbnail:hover img,
.wooprex-blog-details .wooprex-blog-image:hover img {
  transform: scale(1.05);
}
.wooprex-blog-details .wooprex-blog-description {
  margin-bottom: 60px;
}
.wooprex-blog-details .wooprex-blog-description h3 {
  color: #000000;
  margin-bottom: 25px;
}
.wooprex-blog-details .wooprex-blog-description p {
  color: #5c5c75;
  max-width: 800px;
}
.wooprex-blog-details .wooprex-blog-quote {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: start;
  background: #ffffff;
  position: relative;
  margin-bottom: 60px;
  padding-left: 40px;
}
.wooprex-blog-details .wooprex-blog-quote blockquote {
  line-height: 1.3em;
  color: #1d1a35;
  max-width: 720px;
  z-index: 2;
}
.wooprex-blog-details .wooprex-blog-quote:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  height: 100px;
  width: 100px;
  background-image: url("../assets//shape/blockquote-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.wooprex-blog-details .wooprex-blog-quote span {
  position: absolute;
  background-color: #fd5a23;
  left: 0;
  top: 0;
  width: 225px;
  height: 100%;
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}
.wooprex-blog-details .wooprex-blog-quote span.white {
  background-color: #f3f3ff;
  left: 30px;
}
.wooprex-blog-details .wooprex-blog-quote span.color {
  z-index: 1;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-image,
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description {
  margin: 0;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-image {
  height: 100%;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description {
  padding-left: 5px;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description p {
  color: #303e42;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description ul {
  margin-top: 40px;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: start;
  justify-content: start;
  color: #303e42;
  gap: 15px;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description ul li i {
  font-size: 20px;
  line-height: 0px;
}
.wooprex-blog-details .wooprex-blog-additional .wooprex-blog-description ul li:last-child {
  margin-bottom: 0;
}

/*-- coming soon page -- */
/*-- Base: mixin & variable  -- */
.wooprex-coming-soon-section {
  height: 850px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 0px 20px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper p {
  font-size: 18px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper h1 {
  font-size: 70px;
  font-weight: 600;
  margin-top: 30px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 65px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item {
  position: relative;
  padding-right: 65px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:last-child {
  padding-right: 0;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:last-child:after {
  display: none;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:after {
  content: ":";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 62px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item span {
  font-size: 56px;
  font-weight: 300;
  display: block;
  line-height: 1.4em;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item h4 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 100px;
}
.wooprex-coming-soon-section .coming-soon-main-wrapper a i {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px) {
  /***************** COMING SOON PAGE *******************/
  .wooprex-coming-soon-section {
    height: 700px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper h1 {
    font-size: 56px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper a {
    margin-top: 80px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown {
    gap: 50px;
    margin-top: 70px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item {
    padding-right: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /***************** COMING SOON PAGE *******************/
  .wooprex-coming-soon-section {
    height: 650px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper h1 {
    font-size: 44px;
    margin-top: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 22px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item {
    padding-right: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:after {
    font-size: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item span {
    font-size: 50px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper a {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  /***************** COMING SOON PAGE *******************/
  .wooprex-coming-soon-section {
    height: 650px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper {
    width: 100%;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper h1 {
    font-size: 30px;
    margin-top: 20px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper p {
    font-size: 16px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 22px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item {
    padding-right: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:after {
    font-size: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item span {
    font-size: 32px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper a {
    margin-top: 40px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper a i {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .wooprex-coming-soon-section {
    height: 550px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper h1 {
    font-size: 30px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown {
    gap: 13px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item {
    padding-right: 20px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item:after {
    font-size: 20px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item h4 {
    font-size: 13px;
  }
  .wooprex-coming-soon-section .coming-soon-main-wrapper .wooprex-countdown .item span {
    font-size: 22px;
  }
}
/*-- 404 error page -- */
/*-- Base: mixin & variable  -- */
.wooprex-error-section {
  height: 850px;
  position: relative;
  overflow: hidden;
}
.wooprex-error-section .error-wrapper-main {
  height: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.wooprex-error-section .error-wrapper-main h1 {
  font-size: 200px;
}
.wooprex-error-section .error-wrapper-main h3 {
  font-size: 40px;
  margin: 30px 0px;
}
.wooprex-error-section .error-wrapper-main p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  /***************** ERROR PAGE *******************/
  .wooprex-error-section {
    height: auto;
    padding: 100px 0px;
  }
  .wooprex-error-section .error-wrapper-main h1 {
    font-size: 180px;
  }
  .wooprex-error-section .error-wrapper-main h3 {
    font-size: 36px;
  }
  .wooprex-error-section .error-wrapper-main p {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /***************** ERROR PAGE *******************/
  .wooprex-error-section {
    height: auto;
    padding: 100px 0px;
  }
  .wooprex-error-section .error-wrapper-main h1 {
    font-size: 160px;
  }
  .wooprex-error-section .error-wrapper-main h3 {
    font-size: 32px;
  }
  .wooprex-error-section .error-wrapper-main p {
    font-size: 22px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /***************** ERROR PAGE *******************/
  .wooprex-error-section {
    height: auto;
    padding: 100px 0px;
  }
  .wooprex-error-section .error-wrapper-main h1 {
    font-size: 140px;
  }
  .wooprex-error-section .error-wrapper-main h3 {
    font-size: 28px;
  }
  .wooprex-error-section .error-wrapper-main p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  /***************** ERROR PAGE *******************/
  .wooprex-error-section {
    height: auto;
    padding: 100px 0px;
  }
  .wooprex-error-section .error-wrapper-main h1 {
    font-size: 100px;
  }
  .wooprex-error-section .error-wrapper-main h3 {
    font-size: 24px;
  }
  .wooprex-error-section .error-wrapper-main p {
    font-size: 16px;
  }
}
/*-- faq page -- */
/*-- Base: mixin & variable  -- */
.wooprex-faq-page-section .faq-main .row {
  row-gap: 40px;
}
.wooprex-faq-page-section .accordion {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.wooprex-faq-page-section .accordion .accordion-item {
  background-color: #f3f3ff;
  border-radius: 0px;
  width: 100%;
  border: none;
}
.wooprex-faq-page-section .accordion .accordion-item button {
  padding: 30px 70px 30px 35px;
  border: none;
  background-color: transparent;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  width: 100%;
  text-align: left;
  line-height: 1.6em;
  padding-right: 20px;
}
.wooprex-faq-page-section .accordion .accordion-item button:not(.collapsed) {
  color: #050e47;
}
.wooprex-faq-page-section .accordion .accordion-item button:not(.collapsed):after {
  transform: translateY(-50%) rotate(-180deg);
  color: #050e47;
}
.wooprex-faq-page-section .accordion .accordion-item button:after {
  content: "\f127";
  font-family: "flaticon_it_and_software";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  right: 35px;
  transition: all 0.3s ease;
}
.wooprex-faq-page-section .accordion .accordion-item .accordion-body {
  padding: 0px 70px 30px 35px;
}
.wooprex-faq-page-section .accordion .accordion-item .accordion-body p {
  color: #050e47;
}
.wooprex-faq-page-section .faq-image {
  max-width: 500px;
  overflow: hidden;
  margin-left: auto;
  height: 730px;
}
.wooprex-faq-page-section .faq-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) and (max-width: 991px) {
  /***************** FAQ PAGE ******************/
  .wooprex-faq-page-section .accordion .accordion-item button {
    padding: 20px 40px 20px 20px;
    font-size: 18px;
  }
  .wooprex-faq-page-section .accordion .accordion-item button:after {
    right: 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body {
    padding: 0px 40px 20px 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body p {
    font-size: 15px;
  }
  .wooprex-faq-page-section .faq-image {
    height: 600px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /***************** FAQ PAGE ******************/
  .wooprex-faq-page-section .accordion .accordion-item button {
    padding: 20px 40px 20px 20px;
    font-size: 18px;
  }
  .wooprex-faq-page-section .accordion .accordion-item button:after {
    right: 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body {
    padding: 0px 40px 20px 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body p {
    font-size: 16px;
  }
  .wooprex-faq-page-section .faq-image {
    margin-right: auto;
    height: auto;
  }
}
@media (max-width: 575px) {
  /***************** FAQ PAGE ******************/
  .wooprex-faq-page-section .accordion .accordion-item button {
    padding: 20px 40px 20px 20px;
    font-size: 16px;
  }
  .wooprex-faq-page-section .accordion .accordion-item button:after {
    right: 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body {
    padding: 0px 40px 20px 20px;
  }
  .wooprex-faq-page-section .accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }
  .wooprex-faq-page-section .faq-image {
    margin-right: auto;
    height: auto;
  }
}
/*-- Woocommerce styles -- */
/*-- Base: mixin & variable  -- */
/*-- Responsive styles -- */
/* -- Wooprex - Media Queries -- */
/*-- Base: mixin & variable  -- */
@media only screen and (min-width: 1800px) {
  .wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 25px;
    justify-content: left;
    row-gap: 65px;
  }
  .wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.first {
    padding-left: 150px;
  }
  .wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.middle, .wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.last {
    padding-left: 90px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1799px) {
  .wooprex-desktop-menu .desktop-menu-bottom {
    padding-left: calc((100% - 1380px) / 2);
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link {
    font-size: 32px;
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link i {
    font-size: 22px;
    top: 2px;
  }
  .wooprex-follow-us ul li a {
    font-size: 30px;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 660px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 100px;
  }
  .wooprex-service-item h3 {
    font-size: 33px;
  }
  footer.wooprex-footer-section .footer-main .container {
    padding: 0px 20px;
  }
  footer.wooprex-footer-section .footer-main .footer-top .container {
    padding: 0px 60px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding-right: 15px;
    padding-left: 45px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left .left-top .footer-form {
    width: 420px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 25px;
    justify-content: end;
    row-gap: 65px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.first {
    padding-left: 100px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.middle, footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item.last {
    padding-left: 50px;
  }
  /* About us page */
  .wooprex-project-about .project-description h3 {
    font-size: 120px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 250px;
  }
  /* Service page */
  /* Result */
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 170px;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .padding-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-desktop-menu .desktop-menu-bottom {
    padding: 160px 20px 30px 20px;
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link {
    font-size: 28px;
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link i {
    font-size: 22px;
    top: 2px;
  }
  .wooprex-follow-us ul li a {
    font-size: 30px;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 650px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 40px;
    left: 0;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 100px;
  }
  /* Working steps section */
  .wooprex-working-steps-section {
    padding-left: 20px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description {
    padding: 0;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
    margin-bottom: 8px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image img {
    width: 120px;
    height: 120px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image img.shape-color {
    width: 120px;
    height: 120px;
  }
  .wooprex-about-us-banner .banner-text {
    left: 20px;
  }
  .wooprex-service-item h3 {
    font-size: 35px;
  }
  .wooprex-home-service-section .home-service-slider {
    margin-left: 20px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab h2 {
    font-size: 140px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab {
    gap: 25px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main {
    padding-bottom: 210px;
  }
  .wooprex-portfolio-item a .portfolio-image {
    height: 550px;
  }
  /* Counter section */
  div.wooprex-counter-section h3 {
    font-size: 110px;
    margin-bottom: 15px;
  }
  .wooprex-vision-section .vision-description {
    padding: 40px 20px;
  }
  .wooprex-vision-section .vision-description h3 {
    line-height: 1.2em;
  }
  footer.wooprex-footer-section .footer-main .container {
    padding: 0px 20px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding-right: 15px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 25px;
    justify-content: end;
    row-gap: 65px;
  }
  .wooprex-breadcrumb-section {
    padding-left: 20px;
  }
  /* About us page */
  .wooprex-experience {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-experience .wooprex-btn {
    width: 130px;
    height: 130px;
  }
  .wooprex-experience.color h3 {
    font-size: 64px;
  }
  /* Project about */
  .wooprex-project-about {
    height: 700px;
  }
  .wooprex-project-about img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wooprex-project-about .project-description {
    padding: 0px 20px;
    max-width: 1240px;
  }
  .wooprex-project-about .project-description h3 {
    font-size: 115px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 200px;
  }
  /* Service page */
  .tab-main-wrapper ul#myTab li .nav-link {
    padding: 18px 28px;
    font-size: 18px;
  }
  /* Result */
  .wooprex-result-section:before {
    left: 0;
    background-position: left;
  }
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 150px;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    font-size: 26px;
  }
  /* Service details page */
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1330px) {
  .wooprex-blog-item .blog-item-left .blog-item-left-inner .left-inner-category ul li a {
    padding: 5px 13px;
    font-size: 13px;
  }
  .wooprex-blog-item .blog-item-left .blog-item-left-inner p span {
    width: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    padding: 0px 20px;
  }
  div.wooprex-counter-section h3 {
    line-height: 1em;
    max-width: 65%;
  }
  .wooprex-counter .counter-item {
    min-height: 240px;
    justify-content: start;
  }
  .wooprex-experience.color p {
    max-width: 800px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-md-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padding-lg-top {
    padding-top: 70px;
  }
  .padding-lg-bottom {
    padding-bottom: 70px;
  }
  .padding-lg-y {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .text-size-lg-4 {
    font-size: 16px;
  }
  .text-size-lg-5 {
    font-size: 18px;
  }
  .text-size-lg-6 {
    font-size: 20px;
  }
  .text-size-lg-7 {
    font-size: 24px;
  }
  .text-size-lg-8 {
    font-size: 26px;
  }
  .text-size-lg-9 {
    font-size: 28px;
  }
  .text-size-lg-10 {
    font-size: 28px;
  }
  .text-size-lg-11 {
    font-size: 40px;
  }
  .text-size-lg-12 {
    font-size: 42px;
  }
  .text-size-lg-13 {
    font-size: 48px;
  }
  .text-size-lg-14 {
    font-size: 66px;
  }
  .text-size-lg-15 {
    font-size: 74px;
  }
  .wooprex-desktop-menu .desktop-menu-bottom {
    padding: 160px 25px 25px 25px;
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link {
    font-size: 28px;
    gap: 5px;
  }
  .wooprex-main-menu ul.box-nav li.menu-item a.item-link i {
    font-size: 22px;
    top: 2px;
  }
  .wooprex-follow-us ul li a {
    font-size: 30px;
  }
  .header {
    font-size: 68px;
    margin-bottom: 50px;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 650px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 30px;
    left: 0;
  }
  /* Working steps section */
  .wooprex-working-steps-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
    margin-bottom: 8px;
  }
  .wooprex-home-service-section .home-service-slider {
    margin-left: 20px;
  }
  .wooprex-portfolio-item a .portfolio-image {
    height: 500px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main {
    padding-bottom: 210px;
  }
  /* Counter section */
  div.wooprex-counter-section h3 {
    font-size: 100px;
  }
  section.wooprex-counter-section h3 {
    font-size: 84px;
  }
  section.wooprex-counter-section .counter-top-right {
    padding-left: 0;
  }
  /* Wooprex blog Section */
  .wooprex-blog-section .blog-main .blog-top .top-left {
    padding: 24px 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn {
    padding: 13px 20px;
  }
  .wooprex-blog-item .blog-item-left {
    padding: 30px 20px;
  }
  /* Wooprex vision */
  .wooprex-vision-section .vision-description {
    padding: 40px 20px;
  }
  .wooprex-vision-section .vision-image img {
    -o-object-position: left;
       object-position: left;
  }
  /* Wooprex footer */
  footer.wooprex-footer-section .footer-main .footer-bottom .col {
    padding: 0;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding: 30px 15px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left p {
    margin-top: 0;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right {
    padding: 30px 10px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 0;
    row-gap: 35px;
  }
  .wooprex-breadcrumb-section {
    padding-left: 20px;
  }
  /* About us page */
  .wooprex-experience {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-experience .wooprex-btn {
    width: 130px;
    height: 130px;
  }
  .wooprex-experience.color h3 {
    font-size: 52px;
  }
  .wooprex-about-slider-section .slider-main .swiper-slide {
    height: 500px;
  }
  .wooprex-about-service-section .service-description {
    padding-left: 0px;
  }
  .wooprex-about-service-section .service-description .service-skills h4 {
    margin-bottom: 50px;
  }
  /* Project about */
  .wooprex-project-about {
    height: 650px;
  }
  .wooprex-project-about img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wooprex-project-about .project-description {
    padding: 0px 20px;
  }
  .wooprex-project-about .project-description h3 {
    font-size: 102px;
    margin-bottom: 50px;
  }
  .wooprex-testimonial-section.two .testimonial-item .testimonial-details {
    padding: 20px;
  }
  .wooprex-testimonial-section.two .testimonial-item .testimonial-details > p {
    font-size: 40px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 165px;
    line-height: 1.3em;
  }
  .wooprex-marque-section .marque-wrapper .marque-item {
    height: 350px;
  }
  /* Contact poge */
  .wooprex-contact-section .location-wrapper .location-item h4 {
    padding: 20px 40px;
    font-size: 24px;
    margin-top: -35px;
  }
  /* Service page */
  .service-details-tab-section .tab-top-section h3 {
    margin-bottom: 10px;
  }
  .tab-main-wrapper {
    padding-top: 70px;
  }
  .tab-main-wrapper ul#myTab {
    gap: 15px;
    justify-content: left;
  }
  .tab-main-wrapper ul#myTab li .nav-link {
    padding: 22px 35px;
  }
  /* Result */
  .wooprex-result-section:before {
    left: 0;
    top: -20%;
    width: 70%;
    height: 400px;
    background-position: left;
  }
  .wooprex-result-section .result-description p {
    margin-bottom: 60px;
  }
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 115px;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    font-size: 20px;
  }
  .wooprex-result-section .result-image {
    height: 400px;
  }
  /* Service details page */
  .service-details-section .service-location .learn-more .wooprex-btn {
    padding: 13px 22px;
  }
  .wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide {
    height: 650px;
  }
  .wooprex-service-strategy-section .strategy-top {
    margin-bottom: 70px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header .header {
    font-size: 58px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
    font-size: 20px;
  }
  /* Project page */
  .wooprex-project-page-section h5 {
    max-width: 100%;
  }
  .wooprex-project-page-section .project-main-wrapper {
    gap: 70px;
  }
  .wooprex-project-item .project-description .wooprex-btn {
    font-size: 20px;
  }
  .wooprex-project-item .project-image {
    height: 450px;
  }
  ul.wooprex-project-tags li a {
    font-size: 16px;
  }
  /**** Project details page ****/
  .wooprex-project-details-section .project-description .description-top {
    padding-bottom: 50px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-left {
    padding-top: 70px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right h3 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Working steps section */
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description {
    padding: 10px 0px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image img {
    width: 120px;
    height: 120px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item:hover .steps-image img.shape-color {
    width: 120px;
    height: 120px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    gap: 10px;
  }
  .wooprex-follow-us ul {
    gap: 30px;
  }
  .wooprex-project-item .project-description .wooprex-btn {
    padding: 12px 24px;
  }
  .wooprex-project-item .project-description .wooprex-btn i {
    font-size: 22px;
    top: 1px;
  }
}
@media only screen and (max-width: 991px) {
  .padding-md-y {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-md-top {
    padding-top: 60px;
  }
  .padding-md-bottom {
    padding-bottom: 60px;
  }
  .padding-md-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .text-size-md-4 {
    font-size: 14px;
  }
  .text-size-md-5 {
    font-size: 16px;
  }
  .text-size-md-6 {
    font-size: 18px;
  }
  .text-size-md-7 {
    font-size: 18px;
  }
  .text-size-md-8 {
    font-size: 24px;
  }
  .text-size-md-9 {
    font-size: 30px;
  }
  .text-size-md-10 {
    font-size: 32px;
  }
  .text-size-md-11 {
    font-size: 30px;
  }
  .text-size-md-12 {
    font-size: 40px;
  }
  .text-size-md-13 {
    font-size: 44px;
  }
  .text-size-md-14 {
    font-size: 64px;
  }
  .text-size-md-15 {
    font-size: 68px;
  }
  .wooprex-desktop-menu {
    display: none;
  }
  /* Header CSS */
  header.wooprex-header-section .header-main .header-logo {
    padding: 15px;
    width: 200px;
  }
  header.wooprex-header-section .header-main .header-right .header-contact {
    margin-right: 15px;
  }
  header.wooprex-header-section .header-main .header-right .header-contact ul {
    gap: 20px;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-desktop-menu-bar {
    display: none;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-mobile-menu-bar {
    display: block;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-search-bar,
  header.wooprex-header-section .header-main .header-right .wooprex-menu-bar {
    padding: 10px;
  }
  header.wooprex-header-section .header-main .wooprex-search-box {
    padding: 20px;
  }
  /* Header CSS */
  .header {
    font-size: 60px;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 650px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 30px;
    left: 0;
  }
  /* Partner section */
  .wooprex-partner-section h5 {
    margin-bottom: 50px;
  }
  /* Working steps section */
  .wooprex-working-steps-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image {
    height: 100%;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
    margin-bottom: 8px;
  }
  /* Home - about us banner */
  .wooprex-about-us-banner {
    height: 650px;
  }
  .wooprex-about-us-banner .banner-text {
    left: 0;
    padding: 0px 20px;
  }
  .wooprex-about-us-banner .banner-text h5 {
    margin-bottom: 50px;
  }
  .wooprex-home-service-section .home-service-slider {
    margin: 0 20px;
  }
  /* Home - portfolio  secton */
  .wooprex-home-portfolio-section .home-portfolio-top {
    margin-bottom: 40px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top h2 {
    font-size: 150px;
    margin-bottom: 10px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 15px;
    justify-content: start;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main {
    padding-bottom: 60px;
  }
  .wooprex-portfolio-item a .portfolio-image {
    height: 500px;
  }
  /* Counter section */
  div.wooprex-counter-section {
    margin-top: 30px;
  }
  div.wooprex-counter-section h3 {
    font-size: 70px;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .wooprex-counter {
    margin-top: 60px;
  }
  .wooprex-counter .row {
    row-gap: 20px;
  }
  section.wooprex-counter-section h3 {
    font-size: 64px;
    margin-bottom: 30px;
  }
  section.wooprex-counter-section .counter-image {
    height: 100px;
  }
  section.wooprex-counter-section .counter-top-right {
    padding-left: 0;
  }
  /* Wooprex testimonial */
  .wooprex-testimonial-section .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 200px;
  }
  /* Wooprex blog Section */
  .wooprex-blog-section .row {
    row-gap: 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-left {
    padding: 24px 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn {
    padding: 13px 20px;
  }
  .wooprex-blog-item .blog-item-left {
    padding: 30px 20px;
  }
  .wooprex-blog-item .blog-item-left .row {
    row-gap: 20px;
  }
  .wooprex-blog-item .blog-item-left .blog-item-left-inner,
  .wooprex-blog-item .blog-item-left .blog-item-right-inner {
    gap: 15px;
  }
  /* Wooprex vision */
  .wooprex-vision-section .vision-description {
    padding: 40px 20px;
  }
  .wooprex-vision-section .vision-image {
    height: 100%;
  }
  .wooprex-vision-section .vision-image img {
    -o-object-position: left;
       object-position: left;
  }
  /* Wooprex footer */
  footer.wooprex-footer-section .footer-main .footer-bottom .col {
    padding: 0;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding: 30px 15px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right {
    padding: 30px 10px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 0;
    row-gap: 35px;
    justify-content: start;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item h4 {
    margin-bottom: 5px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy {
    text-align: start;
  }
  .wooprex-breadcrumb-section {
    margin-bottom: 0;
  }
  .wooprex-breadcrumb-section .breadcrumb-left h3 {
    font-size: 28px;
    margin-top: 20px;
  }
  .wooprex-breadcrumb-section .breadcrumb-right {
    height: 400px;
  }
  /* About Page start */
  .wooprex-experience .wooprex-btn {
    width: 100px;
    height: 100px;
  }
  .wooprex-experience .wooprex-btn i {
    font-size: 30px;
  }
  .wooprex-experience p {
    max-width: 70%;
  }
  .wooprex-experience.color {
    padding-bottom: 60px;
  }
  .wooprex-experience.color h3 {
    font-size: 36px;
  }
  .wooprex-experience {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-about-slider-section .slider-main .swiper-slide {
    height: 400px;
  }
  /* Service */
  .wooprex-about-service-section img.shape {
    top: -10%;
    width: 50%;
    height: 300px;
  }
  .wooprex-about-service-section .service-description {
    padding-left: 10px;
    padding-top: 25px;
  }
  .wooprex-about-service-section .service-description .service-main-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-about-service-section .service-description .service-skills h4 {
    margin-bottom: 30px;
  }
  .wooprex-about-service-section .wooprex-service-item h5 {
    margin-bottom: 10px;
  }
  /* Project about */
  .wooprex-project-about {
    height: 600px;
  }
  .wooprex-project-about img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wooprex-project-about .project-description {
    padding: 0px 20px;
  }
  .wooprex-project-about .project-description h3 {
    font-size: 68px;
    line-height: 1.3em;
    margin-bottom: 30px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image,
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    width: 100%;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image {
    height: 650px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    padding: 20px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details > p {
    font-size: 26px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 130px;
    line-height: 1.3em;
  }
  .wooprex-marque-section .marque-wrapper .marque-item {
    height: 300px;
  }
  /* Contact poge */
  .wooprex-contact-section .section-header {
    margin-bottom: 70px;
  }
  .wooprex-contact-section .location-wrapper {
    overflow-x: clip;
  }
  .wooprex-contact-section .location-wrapper .location-item {
    padding-left: 80px;
    padding-right: 80px;
  }
  .wooprex-contact-section .location-wrapper .location-item h4 {
    padding: 20px 40px;
    font-size: 22px;
    width: 100%;
    margin-top: -35px;
  }
  .wooprex-contact-section .location-wrapper .location-item ul {
    margin-top: 25px;
  }
  .wooprex-blog-details .wooprex-post-comment form label input,
  .wooprex-contact-form-section form label input {
    width: 30px;
  }
  .wooprex-google-map iframe {
    height: 350px;
  }
  /* Blog details page */
  .wooprex-blog-details .wooprex-blog-description,
  .wooprex-blog-details .wooprex-blog-image {
    margin-bottom: 30px;
  }
  .wooprex-blog-details .wooprex-blog-quote {
    height: auto;
    padding: 20px;
    margin-bottom: 40px;
  }
  .wooprex-blog-details .wooprex-blog-quote:before {
    right: 5px;
    height: 60px;
    width: 60px;
  }
  .wooprex-blog-details .wooprex-blog-quote span {
    width: 120px;
  }
  .wooprex-blog-details .wooprex-blog-quote span.white {
    left: 15px;
  }
  .wooprex-blog-details .wooprex-blog-description h3 {
    margin-bottom: 15px;
  }
  .wooprex-blog-details .wooprex-blog-additional .wooprex-blog-image {
    margin-bottom: 30px !important;
    height: auto;
  }
  /* Service page */
  .service-details-tab-section .tab-top-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .tab-main-wrapper {
    padding-top: 40px;
  }
  .tab-main-wrapper ul#myTab {
    gap: 15px;
    justify-content: left;
  }
  .tab-main-wrapper ul#myTab li .nav-link {
    padding: 15px;
    font-size: 16px;
  }
  .tab-main-wrapper .tab-details h3 {
    margin: 50px 0px 40px 0px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item {
    margin-bottom: 40px;
    padding-bottom: 0;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-image {
    height: 550px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description {
    padding: 30px;
    max-width: 500px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description h4 {
    font-size: 24px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description p {
    font-size: 18px;
    margin: 20px 0px;
  }
  /* Result */
  .wooprex-result-section {
    padding-top: 30px;
  }
  .wooprex-result-section:before {
    left: 0;
    top: -20%;
    width: 70%;
    height: 400px;
    background-position: left;
  }
  .wooprex-result-section .result-description h3 {
    font-size: 40px;
  }
  .wooprex-result-section .result-description p {
    margin-bottom: 30px;
  }
  .wooprex-result-section .result-description h4 {
    line-height: 0.5em;
  }
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 85px;
  }
  .wooprex-result-section .result-description h4 > span.counter-text {
    display: block;
    width: 50%;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    width: 50%;
    font-size: 20px;
  }
  .wooprex-result-section .result-image {
    margin-top: 40px;
    height: 300px;
  }
  .wooprex-process-section .process-main .row {
    row-gap: 50px;
  }
  .wooprex-process-section .section-header .header {
    font-size: 40px;
    margin-bottom: 55px;
  }
  .wooprex-process-section .wooprex-process-item {
    padding: 0px 20px;
  }
  /*** Service details page ****/
  .service-details-section .header {
    font-size: 50px;
  }
  .service-details-section ul.wooprex-listing {
    gap: 15px;
  }
  .service-details-section .service-top-image {
    margin-bottom: 20px;
  }
  .service-details-section .service-top-image .image-item {
    height: 100%;
  }
  .service-details-section .service-location .location-wrapper {
    gap: 20px;
  }
  .service-details-section .service-location .learn-more {
    justify-content: start;
    padding-top: 30px;
  }
  .wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide {
    height: 600px;
  }
  .wooprex-service-strategy-section .strategy-top {
    margin-bottom: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header .header {
    font-size: 30px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header p {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do {
    padding-top: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do h5 {
    margin-bottom: 20px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul {
    gap: 10px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-bottom .row {
    row-gap: 20px;
  }
  /* Project page */
  .wooprex-project-page-section h5 {
    max-width: 100%;
  }
  .wooprex-project-page-section .project-main-wrapper {
    gap: 60px;
  }
  .wooprex-project-item .row {
    row-gap: 15px;
  }
  .wooprex-project-item .project-description .wooprex-btn {
    font-size: 18px;
  }
  .wooprex-project-item .project-image {
    height: 100%;
  }
  ul.wooprex-project-tags li a {
    font-size: 16px;
  }
  /**** Project details page ****/
  .wooprex-project-details-section .project-details-top {
    margin-bottom: 40px;
  }
  .wooprex-project-details-section .project-details-top h3 {
    font-size: 80px;
  }
  .wooprex-project-details-section .project-description .description-top {
    padding-bottom: 40px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-left {
    padding-top: 30px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right {
    padding-top: 30px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right h3 {
    font-size: 70px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h4 {
    margin-bottom: 30px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h5 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right {
    margin-top: 40px;
    justify-content: start;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right .row {
    row-gap: 25px;
  }
  .wooprex-project-details-section .project-details-images-section .row {
    row-gap: 20px;
  }
  .wooprex-project-details-section .project-services-section .row {
    row-gap: 40px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item h3 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item p {
    padding: 0;
  }
  .wooprex-sidebar.left {
    padding-right: 0px;
  }
  .wooprex-sidebar.right {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .text-size-sm-4 {
    font-size: 12px;
  }
  .text-size-sm-5 {
    font-size: 14px;
  }
  .text-size-sm-6 {
    font-size: 16px;
  }
  .text-size-sm-7 {
    font-size: 18px;
  }
  .text-size-sm-8 {
    font-size: 18px;
  }
  .text-size-sm-9 {
    font-size: 20px;
  }
  .text-size-sm-10 {
    font-size: 22px;
  }
  .text-size-sm-11 {
    font-size: 26px;
  }
  .text-size-sm-12 {
    font-size: 26px;
  }
  .text-size-sm-13 {
    font-size: 28px;
  }
  .text-size-sm-14 {
    font-size: 38px;
  }
  .text-size-sm-15 {
    font-size: 44px;
  }
  .padding-sm-y {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .padding-sm-bottom {
    padding-bottom: 50px;
  }
  .padding-sm-top {
    padding-top: 50px;
  }
  /* Header CSS */
  header.wooprex-header-section .header-main {
    height: 70px;
  }
  header.wooprex-header-section .header-main .header-logo {
    padding: 15px;
  }
  header.wooprex-header-section .header-main .header-right .header-contact {
    display: none;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-desktop-menu-bar {
    display: none;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-mobile-menu-bar {
    display: block;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-search-bar,
  header.wooprex-header-section .header-main .header-right .wooprex-menu-bar {
    padding: 10px;
  }
  header.wooprex-header-section .header-main .header-right .wooprex-search-bar {
    border-left: none;
  }
  header.wooprex-header-section .header-main .wooprex-search-box {
    padding: 20px;
  }
  /* Header CSS */
  .header {
    font-size: 60px;
    margin-bottom: 50px;
  }
  .wooprex-banner-section {
    padding: 0;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 670px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 10px;
    left: 0;
    align-items: center;
    text-align: center;
  }
  /* Partner section */
  .wooprex-partner-section h5 {
    margin-bottom: 50px;
  }
  /* Working steps section */
  .wooprex-working-steps-section {
    padding: 20px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image {
    height: 180px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
    margin-bottom: 8px;
  }
  /* Home - about us banner */
  .wooprex-about-us-banner {
    height: 650px;
  }
  .wooprex-about-us-banner .banner-text {
    left: 0;
    padding: 0px 20px;
  }
  .wooprex-about-us-banner .banner-text h5 {
    margin-bottom: 50px;
    font-size: 24px;
  }
  .wooprex-home-service-section .home-service-slider {
    margin: 0 20px;
  }
  .wooprex-service-item .icon i {
    font-size: 180px;
  }
  /* Home - portfolio  secton */
  .wooprex-home-portfolio-section .home-portfolio-top {
    margin-bottom: 40px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top h2 {
    font-size: 100px;
    margin-bottom: 10px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 15px;
    justify-content: start;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .wooprex-portfolio-item a .portfolio-image {
    height: 450px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main {
    padding-bottom: 30px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main .portfolio-shape {
    right: -20%;
  }
  /* Counter section */
  div.wooprex-counter-section {
    margin-top: 30px;
  }
  div.wooprex-counter-section h3 {
    font-size: 70px;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .wooprex-counter {
    margin-top: 40px;
  }
  .wooprex-counter .row {
    row-gap: 20px;
  }
  .wooprex-counter .counter-item {
    min-height: 180px;
  }
  .wooprex-counter .counter-item h4 {
    margin-bottom: 10px;
  }
  section.wooprex-counter-section h3 {
    font-size: 70px;
    margin-bottom: 30px;
  }
  section.wooprex-counter-section .counter-top-right {
    padding-left: 0;
    margin-top: 10px;
  }
  /* Wooprex testimonial */
  .wooprex-testimonial-section .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 160px;
  }
  /* Wooprex blog Section */
  .wooprex-blog-section .row {
    row-gap: 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-left {
    padding: 24px 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn {
    padding: 13px 20px;
  }
  .wooprex-blog-item .blog-item-left {
    padding: 30px 20px;
  }
  .wooprex-blog-item .blog-item-left .row {
    row-gap: 20px;
  }
  .wooprex-blog-item .blog-item-left .blog-item-left-inner,
  .wooprex-blog-item .blog-item-left .blog-item-right-inner {
    gap: 15px;
  }
  /* Wooprex vision */
  .wooprex-vision-section .vision-description {
    padding: 40px 20px;
  }
  .wooprex-vision-section .vision-image {
    height: 300px;
  }
  .wooprex-vision-section .vision-image img {
    -o-object-position: left;
       object-position: left;
  }
  /* Wooprex footer */
  footer.wooprex-footer-section .footer-main .footer-bottom .col {
    padding: 0;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding: 30px 15px;
    border-right: none;
    border-bottom: 1px solid #afafdc;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left p {
    display: none;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right {
    padding: 30px 10px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 0;
    row-gap: 35px;
    justify-content: start;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item h4 {
    margin-bottom: 5px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy {
    text-align: start;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy p {
    display: block;
    margin-top: 10px;
  }
  .wooprex-breadcrumb-section {
    margin-bottom: 0;
  }
  .wooprex-breadcrumb-section .row div:first-child {
    order: 2;
  }
  .wooprex-breadcrumb-section .breadcrumb-left {
    padding: 0px 20px;
    padding-top: 30px;
  }
  .wooprex-breadcrumb-section .breadcrumb-left h3 {
    font-size: 28px;
    margin-top: 20px;
  }
  .wooprex-breadcrumb-section .breadcrumb-right {
    height: 400px;
  }
  /* About Page start */
  .wooprex-experience .wooprex-btn {
    width: 100px;
    height: 100px;
  }
  .wooprex-experience .wooprex-btn i {
    font-size: 30px;
  }
  .wooprex-experience p {
    max-width: 70%;
  }
  .wooprex-experience.color {
    padding-bottom: 60px;
  }
  .wooprex-experience.color h3 {
    font-size: 36px;
  }
  .wooprex-experience {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-about-slider-section .slider-main .swiper-slide {
    height: 400px;
  }
  /* Service */
  .wooprex-about-service-section img.shape {
    top: -10%;
    width: 50%;
    height: 300px;
  }
  .wooprex-about-service-section .service-description {
    padding-left: 10px;
    padding-top: 25px;
  }
  .wooprex-about-service-section .service-description .service-main-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-about-service-section .service-description .service-skills h4 {
    margin-bottom: 30px;
  }
  .wooprex-about-service-section .wooprex-service-item h5 {
    margin-bottom: 10px;
  }
  /* Project about */
  .wooprex-project-about {
    height: 600px;
  }
  .wooprex-project-about img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wooprex-project-about .project-description {
    padding: 0px 20px;
  }
  .wooprex-project-about .project-description h3 {
    font-size: 55px;
    line-height: 1.3em;
    margin-bottom: 30px;
  }
  .wooprex-testimonial-.two .testimonial-item {
    flex-direction: column;
    height: auto;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image,
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    width: 100%;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image {
    height: 550px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    padding: 20px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details img.quote {
    width: 150px;
    height: 150px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details > p {
    font-size: 26px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 95px;
    line-height: 1.3em;
  }
  .wooprex-marque-section .marque-wrapper .marque-item {
    height: 250px;
  }
  /* Contact poge */
  .wooprex-contact-section .section-header {
    margin-bottom: 70px;
  }
  .wooprex-contact-section .location-wrapper {
    flex-direction: column;
    overflow-x: clip;
  }
  .wooprex-contact-section .location-wrapper .location-item:first-child {
    border-right: none;
    border-bottom: 1px solid #afafdc;
    padding-bottom: 60px;
  }
  .wooprex-contact-section .location-wrapper .location-item h4 {
    padding: 20px 40px;
    font-size: 22px;
    width: 100%;
    margin-top: -35px;
  }
  .wooprex-contact-section .location-wrapper .location-item ul {
    margin-top: 25px;
  }
  .wooprex-blog-details .wooprex-post-comment form label input,
  .wooprex-contact-form-section form label input {
    width: 30px;
  }
  .wooprex-google-map iframe {
    height: 350px;
  }
  /* Blog details page */
  .wooprex-blog-details .wooprex-blog-description,
  .wooprex-blog-details .wooprex-blog-image {
    margin-bottom: 30px;
  }
  .wooprex-blog-details .wooprex-blog-quote {
    height: auto;
    padding: 20px;
    margin-bottom: 40px;
  }
  .wooprex-blog-details .wooprex-blog-quote:before {
    right: 5px;
    height: 60px;
    width: 60px;
  }
  .wooprex-blog-details .wooprex-blog-quote span {
    width: 120px;
  }
  .wooprex-blog-details .wooprex-blog-quote span.white {
    left: 15px;
  }
  .wooprex-blog-details .wooprex-blog-description h3 {
    margin-bottom: 15px;
  }
  .wooprex-blog-details .wooprex-blog-additional .wooprex-blog-image {
    margin-bottom: 30px !important;
    height: auto;
  }
  .wooprex-sidebar {
    margin-top: 40px;
    border-top: 1px solid #afafdc;
    padding-top: 40px;
  }
  /* Service page */
  .service-details-tab-section .tab-top-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .tab-main-wrapper {
    padding-top: 40px;
  }
  .tab-main-wrapper ul#myTab {
    gap: 15px;
    justify-content: left;
  }
  .tab-main-wrapper ul#myTab li .nav-link {
    padding: 15px;
    font-size: 16px;
  }
  .tab-main-wrapper .tab-details h3 {
    margin: 50px 0px 40px 0px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item {
    margin-bottom: 40px;
    padding-bottom: 0;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-image {
    height: 400px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description {
    padding: 20px;
    position: static;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description h4 {
    font-size: 24px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description p {
    font-size: 18px;
    margin: 20px 0px;
  }
  .wooprex-result-section {
    padding-top: 30px;
  }
  .wooprex-result-section:before {
    left: 0;
    top: -20%;
    width: 70%;
    height: 400px;
    background-position: left;
  }
  .wooprex-result-section .result-description h3 {
    font-size: 40px;
  }
  .wooprex-result-section .result-description p {
    margin-bottom: 30px;
  }
  .wooprex-result-section .result-description h4 {
    line-height: 0.5em;
  }
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 120px;
  }
  .wooprex-result-section .result-description h4 > span.counter-text {
    display: block;
    width: 50%;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    width: 50%;
    font-size: 20px;
  }
  .wooprex-result-section .result-image {
    margin-top: 40px;
    height: 300px;
  }
  .wooprex-process-section .process-main .row {
    row-gap: 50px;
  }
  .wooprex-process-section .section-header .header {
    font-size: 40px;
    margin-bottom: 55px;
  }
  .wooprex-process-section .wooprex-process-item {
    padding: 0px 20px;
  }
  /*** Service details page ****/
  .service-details-section .header {
    font-size: 50px;
  }
  .service-details-section ul.wooprex-listing {
    justify-content: start;
    align-items: start;
    gap: 15px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .service-details-section .service-top-image {
    margin-bottom: 20px;
  }
  .service-details-section .service-top-image .image-item {
    height: 450px;
  }
  .service-details-section .service-location .location-wrapper {
    gap: 20px;
  }
  .service-details-section .service-location .learn-more {
    justify-content: start;
    padding-top: 30px;
  }
  .wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide {
    height: 600px;
  }
  .wooprex-service-strategy-section .strategy-top {
    margin-bottom: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header .header {
    font-size: 30px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header p {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do {
    padding-top: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do h5 {
    margin-bottom: 20px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul {
    gap: 10px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-bottom .row {
    row-gap: 20px;
  }
  /* Project page */
  .wooprex-project-page-section h5 {
    max-width: 100%;
  }
  .wooprex-project-page-section .project-main-wrapper {
    gap: 60px;
  }
  .wooprex-project-item .row {
    row-gap: 15px;
  }
  .wooprex-project-item .project-description .wooprex-btn {
    font-size: 26px;
  }
  .wooprex-project-item .project-image {
    height: 500px;
  }
  .wooprex-project-item:nth-child(odd) .row > div:first-child {
    order: 3;
  }
  ul.wooprex-project-tags li a {
    font-size: 18px;
  }
  /**** Project details page ****/
  .wooprex-project-details-section .project-details-top {
    flex-direction: column;
    align-items: start;
    margin-bottom: 40px;
    gap: 20px;
  }
  .wooprex-project-details-section .project-details-top h3 {
    font-size: 80px;
  }
  .wooprex-project-details-section .project-description .description-top {
    padding-bottom: 40px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-left {
    padding-top: 30px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right {
    padding-top: 30px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right h3 {
    font-size: 46px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h4 {
    margin-bottom: 30px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h5 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right {
    margin-top: 40px;
    justify-content: start;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right .row {
    row-gap: 25px;
  }
  .wooprex-project-details-section .project-details-images-section .row {
    row-gap: 20px;
  }
  .wooprex-project-details-section .project-services-section .row {
    row-gap: 40px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item h3 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item p {
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  .header {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .wooprex-banner-section {
    padding: 0;
  }
  .wooprex-banner-section .banner-slider .banner-item {
    height: 670px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 10px;
    left: 0;
    align-items: center;
    text-align: center;
  }
  /* Partner section */
  .wooprex-partner-section h5 {
    margin-bottom: 50px;
  }
  /* Working steps section */
  .wooprex-working-steps-section {
    padding: 20px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-image {
    height: 210px;
  }
  .wooprex-working-steps-section .working-steps-main .working-steps-item .steps-description h4 {
    margin-bottom: 8px;
  }
  /* Home - about us banner */
  .wooprex-about-us-banner {
    height: 500px;
  }
  .wooprex-about-us-banner .banner-text {
    left: 0;
    padding: 0px 20px;
  }
  .wooprex-about-us-banner .banner-text h5 {
    margin-bottom: 40px;
  }
  .wooprex-home-service-section .home-service-slider {
    margin: 0 20px;
  }
  .wooprex-service-item .icon i {
    font-size: 150px;
  }
  /* Home - portfolio  secton */
  .wooprex-home-portfolio-section .home-portfolio-top {
    margin-bottom: 40px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top h2 {
    font-size: 60px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 15px;
    justify-content: start;
  }
  .wooprex-home-portfolio-section .home-portfolio-top .portfolio-tab ul#myTab button.nav-link {
    font-size: 20px;
    padding-bottom: 5px;
  }
  .wooprex-portfolio-item a .portfolio-image {
    height: 450px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main {
    padding-bottom: 30px;
  }
  .wooprex-home-portfolio-section .home-portfolio-slider-main .portfolio-shape {
    right: -20%;
  }
  /* Counter section */
  div.wooprex-counter-section {
    margin-top: 30px;
  }
  div.wooprex-counter-section h3 {
    font-size: 44px;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .wooprex-counter {
    margin-top: 40px;
  }
  .wooprex-counter .row {
    row-gap: 20px;
  }
  .wooprex-counter .counter-item {
    min-height: 180px;
  }
  .wooprex-counter .counter-item h4 {
    font-size: 50px;
    margin-bottom: 10px;
  }
  section.wooprex-counter-section h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  section.wooprex-counter-section .counter-image {
    height: 60px;
  }
  section.wooprex-counter-section .counter-top-right {
    padding-left: 0;
    margin-top: 10px;
  }
  /* Wooprex testimonial */
  .wooprex-testimonial-section .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 160px;
  }
  /* Wooprex blog Section */
  .wooprex-blog-section .row {
    row-gap: 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-left {
    padding: 20px;
  }
  .wooprex-blog-section .blog-main .blog-top .top-right .wooprex-btn {
    padding: 13px 20px;
  }
  .wooprex-blog-item .blog-item-left {
    padding: 30px 20px;
  }
  .wooprex-blog-item .blog-item-left .row {
    row-gap: 30px;
  }
  .wooprex-blog-item .blog-item-left .blog-item-left-inner,
  .wooprex-blog-item .blog-item-left .blog-item-right-inner {
    gap: 15px;
  }
  /* Wooprex vision */
  .wooprex-vision-section .vision-description {
    padding: 40px 20px;
  }
  .wooprex-vision-section .vision-image {
    height: 250px;
  }
  .wooprex-vision-section .vision-image img {
    -o-object-position: left;
       object-position: left;
  }
  /* Wooprex footer */
  footer.wooprex-footer-section .footer-main .footer-top .wooprex-follow-us {
    justify-content: start;
    margin-top: 25px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .col {
    padding: 0;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left {
    padding: 30px 15px;
    border-right: none;
    border-bottom: 1px solid #afafdc;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-left p {
    display: none;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right {
    padding: 30px 10px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .row {
    gap: 0;
    row-gap: 35px;
    justify-content: start;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-item h4 {
    margin-bottom: 5px;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy {
    text-align: start;
  }
  footer.wooprex-footer-section .footer-main .footer-bottom .footer-bottom-right .footer-privacy p {
    display: block;
    margin-top: 10px;
  }
  .wooprex-breadcrumb-section {
    margin-bottom: 0;
  }
  .wooprex-breadcrumb-section .row div:first-child {
    order: 2;
  }
  .wooprex-breadcrumb-section .breadcrumb-left {
    padding: 0px 20px;
    padding-top: 30px;
  }
  .wooprex-breadcrumb-section .breadcrumb-left h3 {
    font-size: 24px;
    margin-top: 20px;
  }
  .wooprex-breadcrumb-section .breadcrumb-right {
    height: 300px;
  }
  /* About Page start */
  .wooprex-experience {
    display: flex;
    align-items: normal;
    justify-content: normal;
    flex-direction: column;
    row-gap: 30px;
  }
  .wooprex-experience .wooprex-btn {
    width: 80px;
    height: 80px;
  }
  .wooprex-experience .wooprex-btn i {
    font-size: 30px;
  }
  .wooprex-experience.color {
    padding-bottom: 60px;
  }
  .wooprex-experience.color h3 {
    font-size: 26px;
  }
  .wooprex-experience {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-about-slider-section .slider-main .swiper-slide {
    height: 400px;
  }
  /* Service */
  .wooprex-about-service-section img.shape {
    top: -10%;
    width: 50%;
    height: 300px;
  }
  .wooprex-about-service-section .service-description {
    padding-left: 10px;
    padding-top: 25px;
  }
  .wooprex-about-service-section .service-description .service-main-wrapper .row {
    row-gap: 40px;
  }
  .wooprex-about-service-section .service-description .service-skills h4 {
    margin-bottom: 30px;
  }
  .wooprex-about-service-section .wooprex-service-item h5 {
    margin-bottom: 10px;
  }
  /* Project about */
  .wooprex-project-about {
    height: 600px;
  }
  .wooprex-project-about img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wooprex-project-about .project-description {
    padding: 0px 20px;
  }
  .wooprex-project-about .project-description h3 {
    font-size: 30px;
    line-height: 1.3em;
    margin-bottom: 30px;
  }
  .wooprex-testimonial-.two .testimonial-item {
    flex-direction: column;
    height: auto;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image,
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    width: 100%;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-image {
    height: 400px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details {
    padding: 20px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details img.quote {
    width: 150px;
    height: 150px;
  }
  .wooprex-testimonial-.two .testimonial-item .testimonial-details > p {
    font-size: 18px;
  }
  /* marquery section */
  .wooprex-marque-section h3 {
    font-size: 52px;
    line-height: 1.3em;
  }
  .wooprex-marque-section .marque-wrapper .marque-item {
    height: 170px;
  }
  /* Contact poge */
  .wooprex-contact-section .section-header {
    margin-bottom: 70px;
  }
  .wooprex-contact-section .location-wrapper {
    flex-direction: column;
    overflow-x: clip;
  }
  .wooprex-contact-section .location-wrapper .location-item:first-child {
    border-right: none;
    border-bottom: 1px solid #afafdc;
    padding-bottom: 60px;
  }
  .wooprex-contact-section .location-wrapper .location-item h4 {
    padding: 20px 40px;
    font-size: 22px;
    width: 100%;
    margin-top: -35px;
  }
  .wooprex-contact-section .location-wrapper .location-item ul {
    margin-top: 25px;
  }
  .wooprex-blog-details .wooprex-post-comment form label input,
  .wooprex-contact-form-section form label input {
    width: 55px;
  }
  .wooprex-google-map iframe {
    height: 350px;
  }
  /* Blog details page */
  .wooprex-blog-details .wooprex-blog-thumbnail,
  .wooprex-blog-details .wooprex-blog-image {
    height: 350px !important;
  }
  .wooprex-blog-details .wooprex-blog-description,
  .wooprex-blog-details .wooprex-blog-image,
  .wooprex-blog-details .wooprex-blog-additional {
    margin-bottom: 30px !important;
  }
  .wooprex-blog-details .wooprex-blog-quote {
    height: auto;
    padding: 20px;
    margin-bottom: 40px;
  }
  .wooprex-blog-details .wooprex-blog-quote:before {
    right: 5px;
    height: 60px;
    width: 60px;
  }
  .wooprex-blog-details .wooprex-blog-quote blockquote {
    line-height: 1.5em;
    font-size: 16px;
  }
  .wooprex-blog-details .wooprex-blog-quote span {
    width: 120px;
  }
  .wooprex-blog-details .wooprex-blog-quote span.white {
    left: 15px;
  }
  .wooprex-blog-details .wooprex-blog-description h3 {
    margin-bottom: 15px;
  }
  .wooprex-sidebar {
    margin-top: 40px;
    border-top: 1px solid #afafdc;
    padding-top: 40px;
  }
  /* Service page */
  .service-details-tab-section .tab-top-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .tab-main-wrapper {
    padding-top: 40px;
  }
  .tab-main-wrapper ul#myTab {
    gap: 15px;
    justify-content: left;
  }
  .tab-main-wrapper ul#myTab li .nav-link {
    padding: 15px;
    font-size: 16px;
  }
  .tab-main-wrapper .tab-details h3 {
    margin: 50px 0px 40px 0px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item {
    margin-bottom: 40px;
    padding-bottom: 0;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-image {
    height: 250px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description {
    padding: 20px;
    position: static;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description h4 {
    font-size: 22px;
  }
  .tab-main-wrapper .tab-details .service-details-wrapper .service-item .service-description p {
    font-size: 16px;
    margin: 20px 0px;
  }
  .wooprex-result-section {
    padding-top: 30px;
  }
  .wooprex-result-section:before {
    left: 0;
    top: -20%;
    width: 70%;
    height: 400px;
    background-position: left;
  }
  .wooprex-result-section .result-description h3 {
    font-size: 40px;
  }
  .wooprex-result-section .result-description p {
    margin-bottom: 30px;
  }
  .wooprex-result-section .result-description h4 {
    display: block;
    line-height: 0.5em;
  }
  .wooprex-result-section .result-description h4 > span.counter-text, .wooprex-result-section .result-description h4 > span.counter {
    font-size: 100px;
    width: 100%;
  }
  .wooprex-result-section .result-description h4 > span.counter-text {
    display: block;
  }
  .wooprex-result-section .result-description h4 > span:last-child {
    width: 100%;
    font-size: 20px;
  }
  .wooprex-result-section .result-image {
    margin-top: 40px;
    height: 300px;
  }
  .wooprex-process-section .process-main .row {
    row-gap: 50px;
  }
  .wooprex-process-section .section-header .header {
    font-size: 40px;
    margin-bottom: 55px;
  }
  .wooprex-process-section .wooprex-process-item {
    padding: 0px 20px;
  }
  /*** Service details page ****/
  .service-details-section .header {
    font-size: 30px;
  }
  .service-details-section ul.wooprex-listing {
    justify-content: start;
    align-items: start;
    gap: 15px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .service-details-section ul.wooprex-listing li {
    font-size: 16px;
  }
  .service-details-section .service-top-image {
    margin-bottom: 20px;
  }
  .service-details-section .service-top-image .image-item {
    height: 260px;
  }
  .service-details-section .service-location .location-wrapper {
    padding-top: 40px;
    gap: 20px;
  }
  .service-details-section .service-location .learn-more {
    justify-content: start;
    padding-top: 30px;
  }
  .wooprex-service-image-slider.wooprex-swiper.eleven .swiper-slide {
    height: 400px;
  }
  .wooprex-service-strategy-section .strategy-top {
    margin-bottom: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header .header {
    font-size: 30px;
  }
  .wooprex-service-strategy-section .strategy-top .section-header p {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do {
    padding-top: 40px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do h5 {
    margin-bottom: 20px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul {
    gap: 10px;
  }
  .wooprex-service-strategy-section .strategy-top .what-we-do .items-wrapper ul li a {
    font-size: 16px;
  }
  .wooprex-service-strategy-section .strategy-bottom .row {
    row-gap: 20px;
  }
  /* Project page */
  .wooprex-project-page-section h5 {
    max-width: 100%;
    font-size: 18px;
  }
  .wooprex-project-page-section .project-main-wrapper {
    gap: 60px;
  }
  .wooprex-project-item .row {
    row-gap: 20px;
  }
  .wooprex-project-item .project-description .wooprex-btn {
    font-size: 18px;
    padding: 12px 24px;
  }
  .wooprex-project-item .project-description p {
    margin-top: 20px;
  }
  .wooprex-project-item .project-image {
    height: 400px;
  }
  .wooprex-project-item:nth-child(odd) .row > div:first-child {
    order: 3;
  }
  ul.wooprex-project-tags li a {
    font-size: 16px;
  }
  /**** Project details page ****/
  .wooprex-project-details-section .project-details-top {
    flex-direction: column;
    align-items: start;
    margin-bottom: 40px;
    gap: 20px;
  }
  .wooprex-project-details-section .project-details-top h3 {
    font-size: 48px;
  }
  .wooprex-project-details-section .project-description .description-top {
    padding-bottom: 40px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-left {
    padding-top: 30px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right {
    padding: 20px;
    margin-top: 15px;
  }
  .wooprex-project-details-section .project-description .description-top .description-top-right h3 {
    font-size: 56px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h4 {
    margin-bottom: 30px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-left h5 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right {
    margin-top: 40px;
    justify-content: start;
  }
  .wooprex-project-details-section .project-description .description-bottom .description-bottom-right .row {
    row-gap: 25px;
  }
  .wooprex-project-details-section .project-details-images-section .row {
    row-gap: 20px;
  }
  .wooprex-project-details-section .project-services-section .row {
    row-gap: 40px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item h3 {
    margin-bottom: 20px;
  }
  .wooprex-project-details-section .project-services-section .project-service-item p {
    padding: 0;
  }
  .wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-prev span,
  .wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-next span {
    font-size: 10px;
  }
  .wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-prev span {
    left: 10px;
  }
  .wooprex-project-slider-section .wooprex-swiper-navigation .swiper-button-next span {
    right: 20px;
  }
}