/*-- Reset styles  -- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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;
}

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: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 300;
  color: #121212;
  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: 1600px;
  padding: 0;
}

/* -- 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: "DM Sans", sans-serif;
  border: 1px solid #121212;
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 12px 18px;
  width: 100%;
  background: #ffffff;
  color: #121212;
  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: #dddddd;
}
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: #121212;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
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: #121212;
  transition: all 0.3s ease;
}

textarea {
  height: 90px;
  resize: none;
}

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

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

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

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

/* -- Typography setting -- */
h1,
h2,
h3 {
  font-family: "DM Sans", sans-serif;
  text-rendering: optimizeLegibility;
  color: #121212;
  font-weight: 600;
}

h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  text-rendering: optimizeLegibility;
  color: #121212;
  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.3em;
}

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

h5 {
  font-size: 28px;
  line-height: 1.5em;
}

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

p {
  line-height: 1.4em;
}

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: #121212;
}
a:focus, a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
}

label {
  font-weight: 600;
}

.link {
  transition: all 0.3s ease;
}
.link:hover {
  color: #ffc107;
}

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.none {
  display: none;
}

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

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

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

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

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

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

.parallax-wrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/*-- main styles  -- */
/* Fix header position when admin bar is visible */
body.admin-bar .wooprex-mobile-menu,
body.admin-bar header.wooprex-header-section {
  top: 32px !important; /* Adjust for the WP admin bar height */
}

/* For mobile view (admin bar height is smaller) */
@media screen and (max-width: 782px) {
  body.admin-bar .wooprex-mobile-menu,
  body.admin-bar header.wooprex-header-section {
    top: 46px !important; /* Adjust for the WP admin bar height */
  }
}
.sc-list ul {
  padding-left: 20px;
}
.sc-list ul li {
  list-style-type: disc;
}
.sc-list ol {
  padding-left: 20px;
}
.sc-list ol li {
  list-style-type: decimal;
}

/******************* HEADER START *******************/
/* Start wooprex Header & Light header */
header.wooprex-header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 20px;
  background-color: transparent;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s, -webkit-backdrop-filter 0.3s;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s, backdrop-filter 0.3s;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
  mix-blend-mode: difference;
}
header.wooprex-header-section.sticky {
  position: fixed !important;
  top: 0px;
  background-color: transparent;
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}

/* wooprex menu css that applies to all section */
header.wooprex-header-section .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.wooprex-header-section .header-main .header-left,
header.wooprex-header-section .header-main .header-logo,
header.wooprex-header-section .header-main .header-right {
  width: 33.33%;
}
header.wooprex-header-section .header-main .header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header.wooprex-header-section .header-main .header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
header.wooprex-header-section .header-main .wooprex-btn {
  color: #ffffff;
  border: 1px solid #ffffff;
}
header.wooprex-header-section .header-main .wooprex-btn .button-clip {
  background-color: #ffffff;
}
header.wooprex-header-section .header-main .wooprex-btn i {
  color: #ffffff;
}
header.wooprex-header-section .header-main .wooprex-btn:hover {
  background-color: #ffffff;
  color: #121212;
  border-color: #ffffff;
}
header.wooprex-header-section .header-main .wooprex-btn:hover i {
  color: #121212;
}

.wooprex-desktop-overlay-menu {
  background-color: transparent;
  position: fixed;
  left: 0%;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 200px 30px 30px 30px;
  padding-left: calc((100% - 1580px) / 2);
  z-index: 99;
  pointer-events: none;
}
@media only screen and (max-width: 1640px) {
  .wooprex-desktop-overlay-menu {
    padding-left: 30px;
  }
}
.wooprex-desktop-overlay-menu:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #121212;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-100%);
  z-index: 1;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}
.wooprex-desktop-overlay-menu .menu-left,
.wooprex-desktop-overlay-menu .menu-right {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
}
.wooprex-desktop-overlay-menu .menu-left .overlay-image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}
.wooprex-desktop-overlay-menu .menu-left img {
  width: 500px;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: clipReveal 3.4s ease forwards;
  animation-delay: 3s;
}
.wooprex-desktop-overlay-menu .menu-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wooprex-desktop-overlay-menu .menu-right .top {
  opacity: 0;
  transition: all 0.3s ease;
  visibility: hidden;
}
.wooprex-desktop-overlay-menu .menu-right .bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.wooprex-desktop-overlay-menu .menu-right .bottom ul {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5607843137);
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a:after, .wooprex-desktop-overlay-menu .menu-right .bottom a:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5607843137);
  bottom: 0;
  transition: transform 0.6s ease;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a:before {
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a:after {
  right: 0;
  transform: scaleX(1);
  transform-origin: left;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a:hover:before {
  transition-delay: 0.2s;
  transform: scaleX(1);
  transform-origin: left;
}
.wooprex-desktop-overlay-menu .menu-right .bottom a:not(:hover):after {
  transform: scaleX(0);
  transform-origin: right;
}
.wooprex-desktop-overlay-menu .menu-right .bottom .bottom-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.wooprex-desktop-overlay-menu.show {
  pointer-events: auto;
}
.wooprex-desktop-overlay-menu.show .menu-left .overlay-image {
  display: inline-block;
}
.wooprex-desktop-overlay-menu.show .menu-right .top {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
}
.wooprex-desktop-overlay-menu.show .menu-left,
.wooprex-desktop-overlay-menu.show .menu-right {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}
.wooprex-desktop-overlay-menu.show:before {
  width: 100%;
  transform: translateX(-50%) translateY(0%);
}

/* Start desktop menu */
.wooprex-desktop-menu ul.box-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  gap: 12px;
  flex-direction: column;
}
.wooprex-desktop-menu ul.box-nav li.menu-item {
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
  color: #464646;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  gap: 5px;
  padding: 5px 0px;
  position: relative;
  font-weight: 600;
  font-size: 72px;
  line-height: 1em;
  transition: 0s;
  background: linear-gradient(#ffc107, #ffc107) left no-repeat, rgba(255, 255, 255, 0.5607843137);
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wooprex-desktop-menu ul.box-nav li.menu-item > ul.sub-menu {
  left: 0px;
  top: 60px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu {
  position: absolute;
  width: 250px;
  padding: 20px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  background-color: #ffffff;
  box-shadow: 0px 14px 28px 0px rgba(6, 23, 106, 0.0784313725);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 8px 15px;
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link, .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.active > a.sub-menu-link {
  color: #121212;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link:before, .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.active > a.sub-menu-link:before {
  opacity: 1;
  visibility: visible;
  height: 15px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  padding: 0px 25px;
  display: block;
  color: #ffc107;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link i {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: #121212;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 4px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
  right: -220px;
  top: 0;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link svg {
  transform: rotate(180deg);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
  right: -250px;
  opacity: 1;
  visibility: visible;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Start mobile menu */
.wooprex-mobile-menu {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  left: 0%;
  transform: translateX(-110%);
  top: 0;
  padding-top: 10px;
  padding-bottom: 30px;
  box-shadow: 0px 0px 5px 0px rgba(6, 23, 106, 0.0784313725);
  transition: all 0.6s ease;
  overflow-y: auto;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.wooprex-mobile-menu .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 20px;
}
.wooprex-mobile-menu ul.box-nav {
  width: 100%;
  margin-top: -150px;
}
.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, .wooprex-mobile-menu ul.box-nav li.menu-item.active > a.item-link {
  color: #ffc107;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link {
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #121212;
  transition: all 0.3s ease;
  gap: 5px;
  font-weight: 300;
  font-size: 20px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link svg {
  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.link-active svg {
  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:hover > a.sub-menu-link, .wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li.active > a.sub-menu-link {
  color: #121212;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px;
  color: #ffc107;
  font-weight: 300;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link svg {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link.link-active svg {
  transform: rotate(0deg);
}
.wooprex-mobile-menu .mobile-btn {
  padding: 0px 20px;
  width: 100%;
}
.wooprex-mobile-menu .mobile-btn .wooprex-btn {
  min-width: 100%;
  color: #121212;
}
.wooprex-mobile-menu .mobile-btn .wooprex-btn i {
  color: #121212;
}
.wooprex-mobile-menu .mobile-btn .wooprex-btn:hover {
  color: #ffffff;
}
.wooprex-mobile-menu .mobile-btn .wooprex-btn:hover i {
  color: #ffffff;
}
.wooprex-mobile-menu.show {
  transform: translateX(0%);
}

.wooprex-mobile-menu-bar {
  cursor: pointer;
  display: none;
}
.wooprex-mobile-menu-bar i {
  color: #ffffff;
  font-size: 36px;
}

.mobile-menu-bar-close {
  cursor: pointer;
  width: 35px;
}
.mobile-menu-bar-close i {
  font-size: 40px;
  color: #121212;
}

.wooprex-desktop-menu-bar {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 9999;
  cursor: pointer;
}
.wooprex-desktop-menu-bar .menu-icon {
  transition: transform 0.3s ease;
}
.wooprex-desktop-menu-bar .line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.wooprex-desktop-menu-bar span {
  color: #ffffff;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 300;
}
.wooprex-desktop-menu-bar.active .line1 {
  transform: rotate(45deg) translate(12px, -13px);
}
.wooprex-desktop-menu-bar.active .line2 {
  display: none;
}
.wooprex-desktop-menu-bar.active .line3 {
  transform: rotate(-45deg) translate(-10px, 8px);
}

/******************* HEADER END *******************/
.wooprex-btn {
  display: inline-flex;
  min-width: 170px;
  height: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #121212;
  background-color: transparent;
  border: 1px solid #121212;
  border-radius: 8px;
  padding: 0px 25px;
  font-weight: 300;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
}
.wooprex-btn span.text {
  position: relative;
  z-index: 2;
}
.wooprex-btn .button-clip {
  position: absolute;
  inset: 0% auto auto 0%;
  background-color: #121212;
  padding: 11px 30px;
  width: 100%;
  height: 100%;
  display: none;
}
.wooprex-btn:after {
  content: "";
  position: absolute;
  left: 0;
  height: 30px;
  border-radius: 100px;
}
.wooprex-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}
.wooprex-btn:hover {
  background-color: #121212;
  color: #ffffff;
  border-color: #000000;
}
.wooprex-btn:hover i {
  color: #ffffff;
}
.wooprex-btn.color-btn {
  background-color: #ffc107;
  color: #ffffff;
  border-color: #ffc107;
}
.wooprex-btn.color-btn i {
  color: #ffffff;
}
.wooprex-btn.color-btn:hover {
  background-color: transparent;
  color: #121212;
}
.wooprex-btn.color-btn:hover i {
  color: #121212;
}

/* BUTTON ANIMATION */
.sc-elementor-button .elementor-button-content-wrapper {
  position: relative;
  z-index: 2;
}
.sc-elementor-button .button-clip {
  position: absolute;
  inset: 0% auto auto 0%;
  background-color: #000000;
  padding: 11px 30px;
  width: 100%;
  height: 100%;
  display: none;
}
.sc-elementor-button .elementor-button:hover .elementor-button-icon svg {
  stroke: #ffffff;
}

/******************** BANNER ***********************/
.wooprex-banner-section {
  overflow: hidden;
}
.wooprex-banner-section .simpleParallax {
  height: 100%;
}
.wooprex-banner-section .banner-slider {
  transform: inherit !important;
}
.wooprex-banner-section .banner-slider .banner-item {
  position: relative;
  height: 100vh;
}
.wooprex-banner-section .banner-slider .banner-item:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #121212;
  opacity: 0.6;
  z-index: 1;
}
.wooprex-banner-section .banner-slider .banner-item .banner-image {
  height: 100%;
}
.wooprex-banner-section .banner-slider .banner-item .banner-image video,
.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;
  left: 50%;
  bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  z-index: 3;
  width: 1635px;
  max-width: 100%;
  padding: 0 15px;
  transform: translateX(-50%);
}
.wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
  color: #ffffff;
  line-height: 1em;
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 600;
  width: 600px;
  max-width: 100%;
}
.wooprex-banner-section .banner-slider .banner-item .banner-text p {
  color: #ffffff;
  line-height: 1.6em;
  max-width: 600px;
}
.wooprex-banner-section .wooprex-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 20px;
  bottom: 20px;
  gap: 10px;
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-prev,
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-next {
  position: static;
  top: inherit;
  left: inherit;
  bottom: inherit;
  margin: 0;
  transform: inherit;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #ffc107;
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-prev:after,
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-next:after {
  font-family: "flaticon_ommatan";
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-prev:hover,
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-next:hover {
  background-color: #121212;
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-prev:hover:after,
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-next:hover:after {
  color: #ffffff;
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-prev:after {
  content: "\f106";
}
.wooprex-banner-section .wooprex-swiper-navigation .swiper-button-next:after {
  content: "\f107";
}

.wooprex-swiper-nav-wrapper {
  position: absolute;
  bottom: 0px;
  right: calc((100% - 1600px) / 2);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media only screen and (max-width: 1640px) {
  .wooprex-swiper-nav-wrapper {
    right: 20px;
  }
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 315px;
  flex-wrap: wrap;
  z-index: 2;
  height: 100%;
  padding-bottom: 40px;
  gap: 1px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item {
  width: 49.5%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2784313725);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  overflow: hidden;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  z-index: -1;
  top: 0%;
  right: 0%;
  transition: all 0.6s ease;
  background: #ffc107;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item span {
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  display: inline-block;
  line-height: 1em;
  pointer-events: none;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item p {
  color: #ffffff;
  pointer-events: none;
  font-size: 10px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:first-child, .wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:last-child {
  clip-path: polygon(0% 0%, 110% 0, 100% 0%, 110% 100%, 20% 100%, 0 80%);
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:first-child:after, .wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:last-child:after {
  content: "";
  position: absolute;
  width: 65px;
  background: #ffffff;
  height: 1px;
  transform: rotate(32deg);
  transition: all 0.3s ease;
  bottom: 3px;
  left: -8px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:first-child {
  border-radius: 8px 0px 0px 0px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:nth-child(2) {
  border-radius: 0px 8px 0px 0px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item:last-child {
  border-radius: 0px 0px 8px 0px;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item.next-item {
  cursor: auto;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item.next-item span,
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item.next-item p {
  color: #000000;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item.next-item:before {
  height: 100%;
}
.wooprex-swiper-nav-wrapper .wooprex-pagination-custom .item.next-item:after {
  background: #ffc107;
}

/*********************** CONTACT STYLING *******************************/
.wooprex-contact-form form .row {
  row-gap: 25px;
}
.wooprex-contact-form form label {
  margin-bottom: 7px;
  color: #121212;
  text-transform: uppercase;
  font-weight: 500;
}
.wooprex-contact-form form input[type=text],
.wooprex-contact-form form input[type=email],
.wooprex-contact-form form input[type=tel],
.wooprex-contact-form form textarea {
  padding-left: 0px;
  border: none;
  border-bottom: 1px solid #121212;
}
.wooprex-contact-form form input[type=text]::-moz-placeholder, .wooprex-contact-form form input[type=email]::-moz-placeholder, .wooprex-contact-form form input[type=tel]::-moz-placeholder, .wooprex-contact-form form textarea::-moz-placeholder {
  color: #abb0c9;
}
.wooprex-contact-form form input[type=text]::placeholder,
.wooprex-contact-form form input[type=email]::placeholder,
.wooprex-contact-form form input[type=tel]::placeholder,
.wooprex-contact-form form textarea::placeholder {
  color: #abb0c9;
}
.wooprex-contact-form form .button-wrapper {
  position: relative;
  display: inline-block;
}
.wooprex-contact-form form .button-wrapper input {
  background-color: #121212;
  padding: 0px 30px 0px 30px;
  height: 55px;
  color: #ffffff;
  border: 1px solid #121212;
  transition: all 0.3s ease;
}
.wooprex-contact-form form .button-wrapper svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  pointer-events: none;
}
.wooprex-contact-form form .button-wrapper svg path {
  transition: 0.3s;
}
.wooprex-contact-form form .button-wrapper:hover input {
  background-color: #ffffff;
  color: #121212;
}
.wooprex-contact-form form .button-wrapper:hover svg path {
  fill: #121212;
}

/*********************** FOOTER STYLING *******************************/
footer.wooprex-footer-section {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
footer.wooprex-footer-section .animated-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #121212;
}
footer.wooprex-footer-section .footer-logo .logo {
  max-width: 150px;
}
footer.wooprex-footer-section .footer-logo .logo img {
  width: 100%;
  height: 100%;
}
footer.wooprex-footer-section .row {
  row-gap: 30px;
}
footer.wooprex-footer-section .footer-top {
  padding-bottom: 50px;
}
footer.wooprex-footer-section .footer-top .footer-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
footer.wooprex-footer-section .footer-top .footer-item h4 a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4 {
  margin: 0;
  display: inline-block;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4 a {
  width: 12rem;
  height: auto;
  position: relative;
  gap: 8px;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4 span.icon {
  background-color: #121212;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1.625rem;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4 span.icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.75rem;
  font-size: 20px;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4 span.text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin-left: 20px;
  color: #121212;
  text-align: center;
  font-size: 14px;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4:hover span.icon {
  width: 100%;
}
footer.wooprex-footer-section .footer-top .footer-item.left h4:hover span.icon i {
  transform: translate(0.7rem, 0);
}
footer.wooprex-footer-section .footer-top .footer-item.left h4:hover span.text {
  color: #ffffff;
}
footer.wooprex-footer-section .footer-top .footer-item h4,
footer.wooprex-footer-section .footer-top .footer-item a,
footer.wooprex-footer-section .footer-top .footer-item p {
  color: #121212;
}
footer.wooprex-footer-section .footer-top .footer-item ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
footer.wooprex-footer-section .footer-top .footer-item ul li a {
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
footer.wooprex-footer-section .footer-top .footer-item ul li a:hover {
  transform: translateX(5px);
  color: #ffc107;
}
footer.wooprex-footer-section .footer-top .footer-item ul.contact li a {
  text-transform: none;
}
footer.wooprex-footer-section .footer-top .footer-item p {
  font-size: 14px;
  font-weight: 400;
  max-width: 150px;
}
footer.wooprex-footer-section .footer-bottom {
  padding-top: 50px;
}
footer.wooprex-footer-section .footer-bottom .row .row {
  row-gap: 15px;
}
footer.wooprex-footer-section .footer-bottom p {
  color: #121212;
  font-size: 14px;
  font-weight: 400;
}
footer.wooprex-footer-section .footer-bottom p a:hover {
  color: #ffc107;
}
footer.wooprex-footer-section .footer-bottom .footer-item {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

/* Image animation */
.wooprex-scale {
  opacity: 0;
  clip-path: inset(20% 20% 20% 20%);
  transition: clip-path 1.2s ease, opacity 0.35s;
  overflow: hidden;
}

.wooprex-scale.animated {
  opacity: 1;
  clip-path: inset(0 0 0 0); /* fully visible */
}

.wooprex-scale.animated img {
  animation: clipReveal 2.4s ease forwards;
}

@keyframes clipReveal {
  from {
    clip-path: inset(20% 20% 20% 20%);
  }
  to {
    clip-path: inset(0 0 0 0); /* fully visible */
  }
}
/* BOTTOM TO TOP */
#wooprex-bottom-to-top {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  cursor: pointer;
  color: #121212;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 400;
  transition: all 0.3s ease;
}
#wooprex-bottom-to-top i {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#wooprex-bottom-to-top i::before {
  font-weight: 700 !important;
}
#wooprex-bottom-to-top:hover {
  color: #ffc107;
}
#wooprex-bottom-to-top:hover i {
  transform: translateY(-4px);
}

/*  HOME CLIP ANIMATION SECTION */
.clip-section-main {
  overflow: hidden;
}
.clip-section-main .clip-container {
  transition: 0s !important;
}
.clip-section-main .clip-container .clip-content {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: 0s !important;
}
.clip-section-main .clip-container .clip-content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: 0s !important;
}

.marquee_items {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.marquee_items .marque-item {
  float: left !important;
  padding: 0 40px;
}
.marquee_items .marque-item .elementor-heading-title {
  text-wrap: nowrap;
}

.scroll-text-animate {
  display: inline-block;
}

/* CONTACT FORM */
.sc-contact-form .row {
  row-gap: 24px;
}
.sc-contact-form label {
  width: 100%;
  margin-bottom: 8px;
}
.sc-contact-form input[type=text],
.sc-contact-form input[type=email],
.sc-contact-form input[type=date],
.sc-contact-form input[type=tel],
.sc-contact-form textarea,
.sc-contact-form select {
  border: none;
  border-bottom: 1px solid #121212;
  padding: 14px 0px;
  color: #121212;
  font-size: 14px;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  border-radius: 0;
}
.sc-contact-form input[type=text]::-moz-placeholder, .sc-contact-form input[type=email]::-moz-placeholder, .sc-contact-form input[type=date]::-moz-placeholder, .sc-contact-form input[type=tel]::-moz-placeholder, .sc-contact-form textarea::-moz-placeholder, .sc-contact-form select::-moz-placeholder {
  font-size: 14px;
}
.sc-contact-form input[type=text]::placeholder,
.sc-contact-form input[type=email]::placeholder,
.sc-contact-form input[type=date]::placeholder,
.sc-contact-form input[type=tel]::placeholder,
.sc-contact-form textarea::placeholder,
.sc-contact-form select::placeholder {
  font-size: 14px;
}
.sc-contact-form input[type=text]:focus,
.sc-contact-form input[type=email]:focus,
.sc-contact-form input[type=date]:focus,
.sc-contact-form input[type=tel]:focus,
.sc-contact-form textarea:focus,
.sc-contact-form select:focus {
  outline: none;
  box-shadow: none;
  border-color: #ffc107;
}
.sc-contact-form textarea {
  height: 170px;
}
.sc-contact-form select {
  padding: 14px 0px !important;
  font-size: 14px;
}
.sc-contact-form select option {
  padding: 0 15px;
}
.sc-contact-form .wooprex-btn:hover {
  color: #ffffff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.sc-contact-form .wpcf7-not-valid-tip {
  font-size: 14px;
}

.simpleParallax {
  width: 100%;
}

/* BREADCRUMB */
.sc-breadcrumb-section {
  position: relative;
  overflow: hidden;
}
.sc-breadcrumb-section:after {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8156862745) 100%);
  z-index: 1;
}
.sc-breadcrumb-section .breadcrumb-text {
  height: 100%;
  width: 1660px;
  max-width: 100%;
  padding: 40px 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .sc-breadcrumb-section .breadcrumb-text {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 880px) {
  .sc-breadcrumb-section .breadcrumb-text {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-breadcrumb-section .breadcrumb-text {
    gap: 12px;
  }
}
.sc-breadcrumb-section .breadcrumb-text h1 {
  color: #ffffff;
  font-size: 55px;
  max-width: 1200px;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (max-width: 1200px) {
  .sc-breadcrumb-section .breadcrumb-text h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1024px) {
  .sc-breadcrumb-section .breadcrumb-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .sc-breadcrumb-section .breadcrumb-text h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-breadcrumb-section .breadcrumb-text h1 {
    font-size: 30px;
  }
}
.sc-breadcrumb-section .breadcrumb-text p {
  color: #ffffff;
  max-width: 500px;
}
.sc-breadcrumb-section .bg-image {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

/* BLOG */
.sc-blog-single-container {
  background-color: #ffffff;
}

.sc-blog-container {
  background-color: #ffffff;
}
.sc-blog-container .row {
  row-gap: 50px;
}
.sc-blog-container .blog-parent:nth-child(even) {
  margin-top: 150px;
}
@media only screen and (max-width: 767px) {
  .sc-blog-container .blog-parent {
    margin: 0 !important;
  }
}

.sc-blog-item .simpleParallax {
  height: 100%;
}
.sc-blog-item .image-wrapper {
  height: 470px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
@media only screen and (max-width: 1200px) {
  .sc-blog-item .image-wrapper {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-blog-item .image-wrapper {
    height: 320px;
  }
}
.sc-blog-item .image-wrapper .featured-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.sc-blog-item .image-wrapper .featured-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(24, 37, 74, 0.2666666667);
  z-index: 1;
  pointer-events: none;
}
.sc-blog-item .image-wrapper .featured-image a {
  width: 100%;
  height: 100%;
}
.sc-blog-item .image-wrapper .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-blog-item .image-wrapper .blog-btn {
  width: 75px;
  height: 75px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #121212;
  border-radius: 8px 0px 0px 0px;
  overflow: hidden;
}
.sc-blog-item .image-wrapper .blog-btn i {
  position: relative;
  z-index: 2;
}
.sc-blog-item .image-wrapper .blog-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  transition: all 0.3s ease;
  background-color: #ffc107;
  z-index: 1;
}
.sc-blog-item .image-wrapper .blog-btn i {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .sc-blog-item .image-wrapper .blog-btn {
    width: 55px;
    height: 55px;
  }
}
.sc-blog-item .description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.sc-blog-item h3 {
  font-size: 24px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .sc-blog-item h3 {
    font-size: 20px;
  }
}
.sc-blog-item:hover .image-wrapper .blog-btn {
  color: #ffffff;
}
.sc-blog-item:hover .image-wrapper .blog-btn:after {
  height: 100%;
}
.sc-blog-item:hover h3 a {
  color: #ffc107;
}

/* HOME PAGE SERVICE */
.sc-service-item {
  background-color: transparent !important;
  position: relative;
}
.sc-service-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(1);
  transform-origin: right center;
  transition: all 0.6s ease;
  background-color: #ffffff;
  z-index: 1;
}
.sc-service-item .service-image {
  height: 100%;
  position: relative;
}
.sc-service-item .service-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4784313725);
}
.sc-service-item:hover:after {
  transform: scaleX(0);
}
.sc-service-item:hover .elementor-heading-title {
  color: #ffffff;
}

/* SERVICE ITEM */
.wooprex-service-item .service-description {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s !important;
  position: relative;
  transform: translateY(20px);
}
.wooprex-service-item .service-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s !important;
  overflow: hidden;
}
.wooprex-service-item .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-service-item .service-image:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.4;
  z-index: 1;
}
.wooprex-service-item:hover .service-description {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.wooprex-service-item:hover .service-image {
  opacity: 1;
  visibility: visible;
}

/* PROJECT ITEM */
.sc-project-item {
  position: relative;
  transition: 0.3s !important;
}
.sc-project-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease;
  background-color: #ffc107;
  z-index: 1;
}
.sc-project-item .hover-media {
  position: absolute;
  top: -50px;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  display: none;
  transition: 0s !important;
  width: 400px !important;
  border-radius: 20px;
  overflow: hidden;
}
.sc-project-item .elementor-heading-title {
  position: relative;
  z-index: 2;
  transition: 0.3s !important;
}
.sc-project-item:hover .elementor-heading-title {
  color: #ffffff;
}
.sc-project-item:hover:after {
  height: 100%;
}

/* Show on larger screens */
@media only screen and (min-width: 768px) {
  .sc-project-item .hover-media {
    display: block;
  }
}
/* HOME PROJECT VIDEO ITEM */
.wooprex-video-item .elementor-widget-video {
  height: 100%;
}
.wooprex-video-item .e-hosted-video {
  height: 100%;
  width: 100%;
}
.wooprex-video-item video {
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-video-item.item-1 {
  height: 550px;
}
.wooprex-video-item.item-2 {
  height: 670px;
}

@media only screen and (max-width: 1199px) {
  .wooprex-video-item.item-1 {
    height: 320px;
  }
  .wooprex-video-item.item-2 {
    height: 440px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-video-item.item-1 {
    height: auto;
  }
  .wooprex-video-item.item-2 {
    height: auto;
  }
}
/*PROJECT PAGE */
.wooprex-projects-section {
  padding-left: 30px;
  padding-right: 30px;
}
.wooprex-projects-section .container {
  max-width: 100%;
}
.wooprex-projects-section .row {
  row-gap: 25px;
}
.wooprex-projects-section .projects-parent:nth-child(2) {
  margin-top: 150px;
}
.wooprex-projects-section .projects-parent:nth-child(4) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(6) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(7) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(9) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(10) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(12) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(13) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(15) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(16) {
  margin-top: -150px;
}
.wooprex-projects-section .projects-parent:nth-child(18) {
  margin-top: -150px;
}
@media only screen and (max-width: 991px) {
  .wooprex-projects-section .projects-parent {
    margin: 0 !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(2) {
    margin-top: 150px !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(odd) {
    margin-top: -150px !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(1) {
    margin-top: 0px !important;
  }
}
@media only screen and (max-width: 575px) {
  .wooprex-projects-section .projects-parent {
    margin: 0 !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(2) {
    margin-top: 0px !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(odd) {
    margin-top: 0px !important;
  }
  .wooprex-projects-section .projects-parent:nth-child(1) {
    margin-top: 0px !important;
  }
}
.wooprex-projects-section .projects-parent:nth-child(even) .wooprex-projects-item .projects-description {
  text-align: end;
}
.wooprex-projects-section .wooprex-projects-item {
  position: relative;
  height: 430px;
  border-radius: 8px;
  overflow: hidden;
}
.wooprex-projects-section .wooprex-projects-item .simpleParallax {
  height: 100%;
}
.wooprex-projects-section .wooprex-projects-item a {
  width: 100%;
  height: 100%;
}
.wooprex-projects-section .wooprex-projects-item .projects-video {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.wooprex-projects-section .wooprex-projects-item .projects-video img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-projects-section .wooprex-projects-item .projects-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-projects-section .wooprex-projects-item .projects-description {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.281);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 30px;
}
.wooprex-projects-section .wooprex-projects-item .projects-description .wooprex-btn {
  background-color: #ffc107;
  border-color: #ffc107;
  min-width: auto;
  width: 50px;
  height: 50px;
  transition: all 0.6s ease;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
.wooprex-projects-section .wooprex-projects-item .projects-description .wooprex-btn:hover {
  border-color: #121212;
}
.wooprex-projects-section .wooprex-projects-item .projects-description h3 {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}
.wooprex-projects-section .wooprex-projects-item .projects-description p {
  font-size: 16px;
  color: #ffffff;
}
.wooprex-projects-section .wooprex-projects-item:hover .projects-description .wooprex-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* BLOG DETAILS PAGE */
.wooprex-single-blog-section .row {
  row-gap: 50px;
}
.wooprex-single-blog-section .post-meta {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.wooprex-single-blog-section .post-meta a {
  font-weight: 500;
  color: #969696;
}
.wooprex-single-blog-section .post-meta .author a span {
  color: #ffc107;
}
.wooprex-single-blog-section h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section h2 {
    font-size: 26px;
  }
}
.wooprex-single-blog-section .blog-thumbnail {
  height: 550px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .blog-thumbnail {
    height: 450px;
  }
}
.wooprex-single-blog-section .blog-thumbnail .simpleParallax {
  height: 100%;
}
.wooprex-single-blog-section .blog-thumbnail .image {
  height: 100%;
}
.wooprex-single-blog-section .blog-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-single-blog-section .wooprex-details {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.wooprex-single-blog-section .wooprex-details h3 {
  margin: 13px 0px;
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .wooprex-details h3 {
    font-size: 22px;
  }
}
.wooprex-single-blog-section .wooprex-details h4 {
  font-size: 24px;
}
.wooprex-single-blog-section .wooprex-details h5 {
  font-size: 20px;
}
.wooprex-single-blog-section .wooprex-details h5 {
  font-size: 16px;
}
.wooprex-single-blog-section .wooprex-details h4,
.wooprex-single-blog-section .wooprex-details h5,
.wooprex-single-blog-section .wooprex-details h6 {
  margin: 10px 0px;
  font-weight: 600;
}
.wooprex-single-blog-section .wooprex-details ul,
.wooprex-single-blog-section .wooprex-details ol {
  padding-left: 20px;
}
.wooprex-single-blog-section .wooprex-details ul li,
.wooprex-single-blog-section .wooprex-details ol li {
  line-height: 1.6em;
}
.wooprex-single-blog-section .wooprex-details ul li {
  list-style: disc;
}
.wooprex-single-blog-section .wooprex-details ol li {
  list-style: decimal;
}
.wooprex-single-blog-section .wooprex-details figure {
  border-radius: 8px;
  overflow: hidden;
}
.wooprex-single-blog-section .wooprex-details .wp-block-columns {
  margin-top: 25px;
  margin-bottom: 10px;
}
.wooprex-single-blog-section .wooprex-details .wp-block-image {
  height: 450px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .wooprex-details .wp-block-image {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-blog-section .wooprex-details .wp-block-image {
    height: 400px;
  }
}
.wooprex-single-blog-section .wooprex-details .wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 35%;
     object-position: 100% 35%;
}
.wooprex-single-blog-section .wooprex-details blockquote {
  background: #f1f2f2;
  padding: 40px 60px;
  text-align: center;
  border: none;
  margin: 20px 0px 0px 0px;
  border-left: 10px solid #ffc107;
  border-radius: 8px;
}
.wooprex-single-blog-section .wooprex-details blockquote p {
  color: #121212;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .wooprex-details blockquote p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-blog-section .wooprex-details blockquote p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .wooprex-details blockquote {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-blog-section .wooprex-details blockquote {
    padding: 20px 20px;
  }
}
.wooprex-single-blog-section .wooprex-details a:hover {
  color: #ffc107;
}
.wooprex-single-blog-section .sc-sidebar {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .sc-sidebar {
    row-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-blog-section .sc-sidebar {
    row-gap: 20px;
  }
}
.wooprex-single-blog-section .sc-sidebar h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .sc-sidebar h4 {
    font-size: 20px;
  }
}
.wooprex-single-blog-section .sc-sidebar .widget {
  padding: 30px;
  box-shadow: -25px 13px 50px 0px rgba(0, 0, 0, 0.02);
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-blog-section .sc-sidebar .widget {
    padding: 20px;
  }
}
.wooprex-single-blog-section .sc-sidebar .widget_categories ul,
.wooprex-single-blog-section .sc-sidebar .widget_archive ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.wooprex-single-blog-section .sc-sidebar .widget_categories ul li,
.wooprex-single-blog-section .sc-sidebar .widget_archive ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.6em;
  font-size: 15px;
}
.wooprex-single-blog-section .sc-sidebar .widget_categories ul li a,
.wooprex-single-blog-section .sc-sidebar .widget_archive ul li a {
  position: relative;
  padding-left: 20px;
}
.wooprex-single-blog-section .sc-sidebar .widget_categories ul li a:before,
.wooprex-single-blog-section .sc-sidebar .widget_archive ul li a:before {
  content: "\f122";
  font-family: "flaticon_ommatan";
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  color: #121212;
}
.wooprex-single-blog-section .sc-sidebar .widget_categories ul li a:hover,
.wooprex-single-blog-section .sc-sidebar .widget_archive ul li a:hover {
  color: #ffc107;
}
.wooprex-single-blog-section .sc-sidebar .widget_recent_entries ul {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.wooprex-single-blog-section .sc-sidebar .widget_recent_entries ul li {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 15px;
}
.wooprex-single-blog-section .sc-sidebar .widget_recent_entries ul li a {
  font-weight: 500;
}
.wooprex-single-blog-section .sc-sidebar .widget_recent_entries ul li a:hover {
  color: #ffc107;
}
.wooprex-single-blog-section .sc-sidebar .widget_recent_entries ul li span {
  color: #b6b6b6;
}
.wooprex-single-blog-section .sc-sidebar .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wooprex-single-blog-section .sc-sidebar .tagcloud a {
  background-color: #f1f2f2;
  padding: 3px 8px;
  font-size: 15px !important;
  border-radius: 8px;
}
.wooprex-single-blog-section .sc-sidebar .tagcloud a:hover {
  background-color: #ffc107;
  color: #ffffff;
}

.sc-elementor-accordion svg {
  width: auto;
}

/* PROJECTS DETAILS PAGE */
.wooprex-single-projects-section {
  background-color: #ffffff;
}
.wooprex-single-projects-section .row {
  row-gap: 50px;
}
.wooprex-single-projects-section h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-projects-section h2 {
    font-size: 26px;
  }
}
.wooprex-single-projects-section p img {
  border-radius: 8px;
}
.wooprex-single-projects-section .post-meta {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.wooprex-single-projects-section .post-meta a {
  font-weight: 500;
  color: #969696;
}
.wooprex-single-projects-section .post-meta .author a span {
  color: #ffc107;
}
.wooprex-single-projects-section .projects-thumbnail {
  height: 650px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-projects-section .projects-thumbnail {
    height: 450px;
  }
}
.wooprex-single-projects-section .projects-thumbnail .simpleParallax {
  height: 100%;
}
.wooprex-single-projects-section .projects-thumbnail .image {
  height: 100%;
}
.wooprex-single-projects-section .projects-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-single-projects-section .wooprex-details {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.wooprex-single-projects-section .wooprex-details h3 {
  margin: 13px 0px;
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-projects-section .wooprex-details h3 {
    font-size: 22px;
  }
}
.wooprex-single-projects-section .wooprex-details h4 {
  font-size: 24px;
}
.wooprex-single-projects-section .wooprex-details h5 {
  font-size: 20px;
}
.wooprex-single-projects-section .wooprex-details h5 {
  font-size: 16px;
}
.wooprex-single-projects-section .wooprex-details h4,
.wooprex-single-projects-section .wooprex-details h5,
.wooprex-single-projects-section .wooprex-details h6 {
  margin: 10px 0px;
  font-weight: 600;
}
.wooprex-single-projects-section .wooprex-details p {
  line-height: 1.6em;
}
.wooprex-single-projects-section .wooprex-details ul,
.wooprex-single-projects-section .wooprex-details ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wooprex-single-projects-section .wooprex-details ul li,
.wooprex-single-projects-section .wooprex-details ol li {
  line-height: 1.6em;
}
.wooprex-single-projects-section .wooprex-details ul li {
  list-style: disc;
}
.wooprex-single-projects-section .wooprex-details ol li {
  list-style: decimal;
}
.wooprex-single-projects-section .wooprex-details p:has(> img.inner-image) {
  display: flex;
  gap: 25px;
  margin: 20px 0px;
}
@media only screen and (max-width: 767px) {
  .wooprex-single-projects-section .wooprex-details p:has(> img.inner-image) {
    flex-direction: column;
    gap: 20px;
  }
}
.wooprex-single-projects-section .wooprex-details img.inner-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .wooprex-single-projects-section .wooprex-details img.inner-image {
    width: 100%;
  }
}
.wooprex-single-projects-section .wooprex-details blockquote {
  background: #f1f2f2;
  padding: 40px 60px;
  text-align: center;
  border: none;
  margin: 20px 0px 0px 0px;
  border-left: 10px solid #ffc107;
  border-radius: 8px;
}
.wooprex-single-projects-section .wooprex-details blockquote p {
  color: #121212;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
}
@media only screen and (max-width: 991px) {
  .wooprex-single-projects-section .wooprex-details blockquote p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-projects-section .wooprex-details blockquote p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .wooprex-single-projects-section .wooprex-details blockquote {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-projects-section .wooprex-details blockquote {
    padding: 20px 20px;
  }
}
.wooprex-single-projects-section .wooprex-details a:hover {
  color: #ffc107;
}

/* CALL TO ACTION */
.sc-call-to-action .elementor-widget-image {
  height: 100%;
}
.sc-call-to-action .sc-elementor-button svg {
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.sc-call-to-action .sc-elementor-button .button-clip {
  background-color: #ffc107;
}
.sc-call-to-action .sc-elementor-button:hover svg {
  fill: #ffffff;
}

/* === Wooprex Insight Section === */
.wooprex-insight-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wooprex-insight-section .insight-container {
  display: flex;
  gap: 100px;
  width: 100%;
}
.wooprex-insight-section .insight-left {
  position: relative;
  width: 55%;
  overflow: hidden;
}
.wooprex-insight-section .insight-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}
.wooprex-insight-section .insight-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-insight-section .insight-image.active {
  opacity: 1;
  visibility: visible;
}
.wooprex-insight-section .insight-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 45%;
}
.wooprex-insight-section .insight-right .wooprex-btn {
  background-color: #ffc107;
  border-color: #ffc107;
  margin-top: 30px;
  color: #ffffff;
}
.wooprex-insight-section .insight-right .wooprex-btn:hover {
  border-color: #121212;
}
.wooprex-insight-section .insight-block {
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wooprex-insight-section .insight-block .wooprex-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  min-width: auto;
  border-radius: 50%;
  margin: 0;
}
.wooprex-insight-section .insight-block h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 400;
  color: #121212;
  transition: color 0.3s ease;
}
.wooprex-insight-section .insight-block p {
  font-size: 16px;
  line-height: 1.6;
}
.wooprex-insight-section .insight-block .animated-border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #121212;
}
.wooprex-insight-section .insight-block:after {
  content: "";
  position: absolute;
  left: 0;
  top: inherit;
  bottom: 0;
  height: 1px;
  width: 100%;
  transform-origin: left;
  transition: all 0.6s ease;
  transform: scaleX(0);
  background-color: #ffc107;
}
.wooprex-insight-section .insight-block:hover:after {
  transform: scaleX(1);
}
.wooprex-insight-section .insight-block:hover .wooprex-btn i {
  transform: rotate(45deg);
}

@media (max-width: 1366px) {
  .wooprex-insight-section .insight-container {
    gap: 50px;
  }
  .wooprex-insight-section .insight-block h3 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .wooprex-insight-section .insight-container {
    gap: 40px;
  }
  .wooprex-insight-section .insight-block h3 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .wooprex-insight-section .insight-block h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .wooprex-insight-section .insight-container {
    flex-direction: column;
    gap: 40px;
  }
  .wooprex-insight-section .insight-left {
    width: 100%;
    height: 350px;
  }
  .wooprex-insight-section .insight-right {
    width: 100%;
  }
  .wooprex-insight-section .insight-right .wooprex-btn {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  /* Banner section */
  .wooprex-banner-section .wooprex-swiper-navigation {
    display: none;
  }
}
.sc-sidebar-service .active svg {
  fill: #ffc107 !important;
}
.sc-sidebar-service .active .elementor-icon-list-text {
  color: #ffc107 !important;
}

/* LOADER */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 99999;
  pointer-events: none;
}
.loader .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.loader .block {
  width: 100%;
  height: 100%;
  background: #121212;
}
.loader .intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: 1;
}
.loader #word-1 {
  position: relative;
}
.loader .word p {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2em;
  color: #ffffff;
  background: #121212;
}
.loader .divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center top;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
.loader .spinner-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.loader .spinner {
  width: 50px;
  height: 50px;
  border: 1.4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.2862745098);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader .counter {
  position: absolute;
  bottom: 16%;
  right: 16%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .loader .counter {
    bottom: auto;
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.loader .count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.loader .digit {
  flex: 1;
  padding-top: 1rem;
}
.loader .count .digit p {
  font-size: 8rem;
  font-weight: 700;
  color: #ffffff;
}
.loader .nav {
  transform: translateY(-120%);
}
.loader .cta {
  transform: translateX(-50%) scale(0);
}
.loader .cta-icon {
  transform: scale(0);
}
.loader .word,
.loader .count .digit {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.loader .count .digit p {
  position: relative;
  transform: translateY(120%);
  will-change: transform;
}
.loader #word-1 p {
  transform: translateY(-120%);
}
.loader #word-2 p {
  transform: translateY(120%);
}
.loader .block {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.loader .divider {
  transform: scaleY(0%);
  will-change: transform;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*-- Responsive styles -- */
/* -- wooprex - Media Queries -- */
@media only screen and (min-width: 1481px) and (max-width: 1899px) {
  .header-logo .logo {
    max-width: 220px;
  }
  .wooprex-desktop-overlay-menu {
    padding-top: 190px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1480px) {
  .padding-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
    font-size: 50px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1480px) {
  .header-logo .logo {
    max-width: 200px;
  }
  /*********************** BANNER STYLING *******************************/
  .wooprex-banner-section .wooprex-swiper-nav-wrapper {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 1200px) {
  /*PROJECT PAGE */
  .wooprex-projects-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wooprex-projects-section .wooprex-projects-item {
    height: 380px;
  }
  .wooprex-projects-section .wooprex-projects-item .projects-description {
    padding: 20px;
  }
  .wooprex-projects-section .wooprex-projects-item .projects-description h3 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-logo .logo {
    max-width: 180px;
  }
  .wooprex-desktop-menu ul.box-nav {
    gap: 32px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
    right: inherit;
    left: -220px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
    left: -250px;
  }
  /*********************** BANNER STYLING *******************************/
  /* Banner section */
  .wooprex-banner-section .banner-slider .banner-item {
    height: 700px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 20px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 45px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper {
    padding: 0px 20px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .main-nav {
    margin-bottom: 20px;
  }
  /* BLOG ITEM */
  .blog-item .blog-image {
    width: 100%;
    height: 350px;
  }
  .blog-item .blog-description {
    width: 100%;
    padding: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .wooprex-desktop-overlay-menu {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 160px;
  }
  header.wooprex-header-section .header-main {
    flex-direction: row-reverse;
  }
  header.wooprex-header-section .header-main .header-left,
  header.wooprex-header-section .header-main .header-logo,
  header.wooprex-header-section .header-main .header-right {
    width: auto;
  }
  header.wooprex-header-section .header-main .header-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-logo {
    justify-content: flex-start !important;
  }
  .header-logo .logo {
    max-width: 180px;
  }
  /* Banner section */
  .wooprex-banner-section .banner-slider .banner-item {
    height: 700px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 40px;
    width: 400px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper {
    padding: 0px 20px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .main-nav {
    margin-bottom: 20px;
  }
  /*********************** FOOTER **************/
  footer.wooprex-footer-section .footer-logo .logo {
    max-width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-y {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-top {
    padding-top: 60px;
  }
  .padding-bottom {
    padding-bottom: 60px;
  }
  .wooprex-desktop-overlay-menu {
    justify-content: flex-start;
  }
  .wooprex-desktop-overlay-menu .menu-left {
    display: none;
  }
  .wooprex-desktop-overlay-menu .menu-right {
    width: 100%;
  }
  .wooprex-program-section .inner-main-wrapper .row {
    row-gap: 30px;
  }
  /*********************** FOOTER STYLING *******************************/
  footer.wooprex-footer-section .footer-item.back {
    justify-content: flex-end !important;
  }
  .sc-breadcrumb-section .bg-image {
    height: 75vh;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    bottom: 90px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .header {
    font-size: 40px;
  }
  .header-logo .logo {
    max-width: 180px;
  }
  header.wooprex-header-section .header-main .header-right {
    gap: 20px;
  }
  .wooprex-breadcrumb-section .breadcrumb-text h1 {
    font-size: 28px;
  }
  /*********************** BANNER STYLING *******************************/
  /* Banner section */
  .wooprex-banner-section .banner-slider .banner-item {
    height: 700px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text {
    padding: 0px 20px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 35px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper {
    padding: 0px 20px;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .main-nav {
    margin-bottom: 20px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .wooprex-pagination-custom {
    display: none;
  }
  /* BLOG ITEM */
  .blog-item .blog-description {
    padding-left: 20px;
  }
  .blog-item .blog-description h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .blog-item .blog-description p {
    font-size: 16px;
  }
  /*********************** SINGLE PROGRAM STYLING *******************************/
  .wooprex-single-program-section .blog-thumbnail {
    height: 400px;
  }
  .wooprex-single-program-section h2 {
    font-size: 32px;
  }
  .wooprex-single-program-section .details h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .wooprex-single-program-section .details .wp-block-group {
    padding: 20px;
  }
  /*********************** FOOTER STYLING *******************************/
  footer.wooprex-footer-section .footer-logo .logo {
    max-width: 120px;
  }
  footer.wooprex-footer-section .footer-bottom {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 576px) {
  .wooprex-mobile-menu .wooprex-btn {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header-right .wooprex-btn {
    display: none;
  }
  .header-logo .logo {
    max-width: 160px;
  }
  .wooprex-desktop-menu-bar svg {
    width: 30px;
    height: 15px;
  }
  .wooprex-mobile-menu-bar i {
    font-size: 35px;
  }
  .header {
    font-size: 30px;
  }
  .sub-header {
    font-size: 16px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
    font-size: 35px;
  }
  .wooprex-breadcrumb-section .breadcrumb-text h1 {
    font-size: 28px;
  }
  /*********** Banner section *************/
  .wooprex-banner-section .banner-slider .banner-item {
    height: 700px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 38px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper {
    padding: 0px 20px;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .main-nav {
    margin-bottom: 20px;
  }
  .wooprex-banner-section .wooprex-swiper-nav-wrapper .wooprex-pagination-custom {
    display: none;
  }
  /* BLOG ITEM */
  .blog-item .blog-image {
    width: 100%;
    height: 400px;
  }
  .blog-item .blog-description {
    width: 100%;
    padding: 0px;
  }
  .blog-item .blog-description h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .blog-item .blog-description p {
    font-size: 16px;
  }
  /*********************** FOOTER STYLING *******************************/
  footer.wooprex-footer-section .footer-logo .logo {
    max-width: 120px;
  }
  footer.wooprex-footer-section .inner-item {
    flex-direction: row;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
  footer.wooprex-footer-section .footer-top {
    padding-bottom: 25px;
  }
  footer.wooprex-footer-section .footer-bottom {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 400px) {
  .wooprex-banner-section .banner-slider .banner-item {
    height: 650px;
  }
  .wooprex-banner-section .banner-slider .banner-item .banner-text h3 {
    font-size: 26px;
  }
}/*# sourceMappingURL=styles.css.map */