/*-- Fonts, variable and abstracts -- */
/*-- 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&display=swap");
/*-- variable -- */
/*-- mixin -- */
/*-- Reset css styles  -- */
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: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  color: #231f20;
  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: none;
  border-radius: 30px;
  box-shadow: none;
  line-height: 24px;
  padding: 20px 25px;
  width: 100%;
  background-color: #ffffff;
  font-size: 16px;
  color: #231f20;
  outline: none;
  font-weight: normal;
}
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: #616161;
  -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: #616161;
  transition: all 0.3s ease;
}

textarea {
  height: 100%;
  resize: none;
}

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

:-moz-placeholder {
  color: #231f20;
}

::-moz-placeholder {
  color: #231f20;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #231f20;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Proxima Nova Rg";
  text-rendering: optimizeLegibility;
  color: #231f20;
  font-weight: bold;
}

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

label {
  font-weight: bold;
}

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

.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-y {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

.flex-1 {
  flex: 1 !important;
  justify-content: space-between !important;
  flex-direction: column !important;
}

/*-- Woocommerce styles -- */
/******************* HEADER START *******************/
/* Start Wooprex Header & Light header */
header.wooprex-header-section {
  position: relative;
  width: 100%;
  z-index: 999;
  padding: 0px 0;
  background-color: #f3f2f0;
  overflow: hidden;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s;
}
header.wooprex-header-section.sticky {
  position: fixed !important;
  top: 0px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  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;
  }
}
body.admin-bar header.wooprex-header-section.sticky {
  top: 32px;
}

/* 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-logo {
  width: 30%;
}
header.wooprex-header-section .header-main .header-content-right {
  width: 70%;
}
header.wooprex-header-section .header-main .header-content-right .header-top-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 12px 0px 12px 0px;
}
header.wooprex-header-section .header-main .header-content-right .header-top-info:before {
  content: "";
  position: absolute;
  right: -35%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets//images/shape-1.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  z-index: -1;
}
header.wooprex-header-section .header-main .header-content-right .header-top-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
header.wooprex-header-section .header-main .header-content-right .header-top-info .info-item a {
  color: #ffffff;
  font-weight: 600;
}
header.wooprex-header-section .header-main .header-content-right .header-bottom-row {
  padding: 25px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

/* Start desktop menu */
.wooprex-desktop-menu ul.box-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 40px;
  flex-wrap: wrap;
}
.wooprex-desktop-menu ul.box-nav li.menu-item {
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
  color: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0px;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #ad895b;
  width: 0%;
  height: 1px;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > a.item-link, .wooprex-desktop-menu ul.box-nav li.menu-item.active > a.item-link {
  color: #ad895b;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > a.item-link:before, .wooprex-desktop-menu ul.box-nav li.menu-item.active > a.item-link:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover a.item-link i {
  transform: rotate(180deg);
}
.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: #ad895b;
}
.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: #231f20;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  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: #ad895b;
  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 i {
  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: 350px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  left: 0%;
  transform: translateX(-110%);
  top: 0;
  padding: 30px 0;
  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;
  justify-content: space-between;
}
.wooprex-mobile-menu ul.box-nav {
  margin-top: 60px;
}
.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: #ad895b;
}
.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: #231f20;
  transition: all 0.3s ease;
  gap: 5px;
  font-weight: 500;
  text-transform: uppercase;
}
.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.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:hover > a.sub-menu-link, .wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li.active > a.sub-menu-link {
  color: #ad895b;
}
.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: #231f20;
  font-weight: 500;
}
.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;
  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 i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu .header-cta-button {
  padding: 0px 20px;
}
.wooprex-mobile-menu.show {
  transform: translateX(0%);
}

.header-cta-button a {
  padding: 15px 38px;
  border-radius: 35px;
  background-color: #231f20;
  color: #ffffff;
  font-weight: 400;
}
.header-cta-button a:hover {
  background-color: #ad895b;
}

.wooprex-mobile-menu-bar {
  cursor: pointer;
  display: none;
}
.wooprex-mobile-menu-bar i {
  font-size: 30px;
  color: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-bar-close {
  position: absolute;
  right: 0;
  margin-right: 15px;
  cursor: pointer;
}
.mobile-menu-bar-close i {
  font-size: 30px;
  color: #231f20;
}
.mobile-menu-bar-close:hover i {
  color: #ad895b;
}

/******************* HEADER END *******************/
.sc-service-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
@media only screen and (max-width: 1024px) {
  .sc-service-item {
    height: 100% !important;
  }
}

/* Testimonial */
/* Container Background */
/* Individual Card */
.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #d5d5d5;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background-color: #fffaf5;
}
.testimonial-card .testimonial-stars {
  color: #fc8c00;
  margin-bottom: 15px;
  font-size: 24px;
}
.testimonial-card .testimonial-content {
  color: #454545;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}
.testimonial-card .testimonial-name {
  margin: 0;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #231f20 !important;
  text-transform: none !important;
}
.testimonial-card .testimonial-date {
  margin-top: 5px;
  font-size: 14px;
  color: #232323;
}

.swiper-button-prev {
  left: -5% !important;
}

.swiper-button-next {
  right: -5% !important;
}

/* Arrows Styling */
.swiper-button-next,
.swiper-button-prev {
  color: #231f20 !important;
  background: transparent;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  border: 2px solid #231f20;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: bold;
}

/* FORM */
/* Container Layout */
.sc-contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.sc-contact-form .form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sc-contact-form .form-column p {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sc-contact-form .form-column p,
.sc-contact-form .form-column p span {
  height: 100%;
}

.sc-contact-form .form-column p br {
  display: none;
}

.sc-contact-form .form-column p span[data-name=your-email] textarea {
  border-radius: 30px;
}

/* Specific height for textarea to match the left column */
.sc-contact-form textarea {
  border-radius: 40px; /* Slightly more rounded for the large box */
}

/* Submit Button Styling */
.sc-contact-form .form-submit {
  width: 100%;
}

.sc-contact-form input[type=submit] {
  width: 100%;
  background-color: #ad895b; /* The brownish-gold color from image */
  color: #ffffff;
  border: none;
  padding: 18px 30px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sc-contact-form input[type=submit]:hover {
  background-color: #231f20;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .sc-contact-form .form-row {
    flex-direction: column;
  }
  .sc-contact-form textarea {
    height: 150px;
  }
}
footer.footer-section {
  background: transparent;
  background-image: url("../assets/images/footer-bg.webp");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
footer.footer-section .footer-logo-top {
  margin-bottom: 40px;
  padding-left: 80px;
}
footer.footer-section .footer-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
footer.footer-section .footer-contact-row .footer-contact-left {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item {
  display: flex;
  gap: 10px;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item img {
  width: 30px;
  height: 30px;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item span,
footer.footer-section .footer-contact-row .footer-contact-left .contact-item a {
  color: #ffffff;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item span {
  display: inline-block;
  max-width: 400px;
  position: relative;
  top: 3px;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item a {
  font-weight: 600;
}
footer.footer-section .footer-contact-row .footer-contact-left .contact-item a:hover {
  color: #ad895b;
}
footer.footer-section .footer-contact-row .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer.footer-section .footer-divider {
  margin: 40px 0px;
  background: #3a3a3a;
  height: 1px;
}
footer.footer-section .footer-bottom p {
  color: #ffffff;
  font-size: 15px;
  text-align: center;
}

.sc-accordion span.e-n-accordion-item-title-icon {
  width: 25px !important;
  height: 25px;
  background: #ad895b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-- Responsive styles -- */
/* -- Wooprex - Media Queries -- */
@media only screen and (max-width: 1480px) {
  header.wooprex-header-section .header-main .header-logo {
    width: 25%;
  }
  header.wooprex-header-section .header-main .header-logo img {
    max-width: 280px;
    width: 280px !important;
  }
  header.wooprex-header-section .header-main .header-content-right {
    width: 75%;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info {
    gap: 30px;
    padding-right: 0;
  }
  .swiper-button-prev {
    left: -15px !important;
  }
  .swiper-button-next {
    right: -15px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    padding: 0px 20px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-bottom-row {
    padding: 20px 0px;
  }
  .wooprex-desktop-menu {
    display: none;
  }
  .wooprex-mobile-menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-cta-button a {
    padding: 13px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header.wooprex-header-section .header-main .header-logo .logo img {
    max-width: 240px;
    width: 240px !important;
  }
  header.wooprex-header-section .header-main .header-content-right .header-bottom-row {
    gap: 30px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info:before {
    right: -30%;
  }
  .wooprex-desktop-menu ul.box-nav {
    gap: 25px;
  }
  .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;
  }
}
@media only screen and (max-width: 991px) {
  .padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-top {
    padding-top: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  header.wooprex-header-section .header-main .header-logo .logo img {
    max-width: 200px;
    width: 200px !important;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info {
    padding: 9px 0px 9px 0px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info:before {
    right: -10%;
  }
}
@media only screen and (max-width: 880px) {
  header.wooprex-header-section .header-main .header-logo {
    width: 30%;
  }
  header.wooprex-header-section .header-main .header-content-right {
    width: 70%;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info {
    padding: 9px 0px 9px 0px;
    gap: 20px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info .info-item {
    gap: 10px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info .info-item a {
    font-size: 14px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info:before {
    right: -5%;
    background-position: left center;
  }
  /* Footer*/
  footer.footer-section {
    padding-top: 200px;
    padding-bottom: 60px;
    background-position: top;
  }
  footer.footer-section .footer-contact-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  footer.footer-section .footer-contact-row .footer-contact-left {
    gap: 20px;
    flex-direction: column;
  }
}
@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;
  }
  header.wooprex-header-section {
    padding: 20px 0px;
  }
  header.wooprex-header-section .header-main .header-content-right .header-top-info {
    display: none;
  }
  header.wooprex-header-section .header-main .header-content-right .header-bottom-row {
    gap: 20px;
    padding: 0;
  }
  header.wooprex-header-section .header-main .header-content-right .header-bottom-row .header-cta-button {
    display: none;
  }
  /*********************** FOOTER **************/
  footer.footer-section .footer-logo-top {
    margin-bottom: 30px;
    padding-left: 0px;
    text-align: center;
  }
  footer.footer-section .footer-logo-top img {
    max-width: 240px;
  }
  footer.footer-section .footer-contact-row {
    flex-direction: column;
    align-items: center;
  }
  footer.footer-section .footer-contact-row .footer-contact-left {
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  footer.footer-section .footer-contact-row .footer-contact-left .contact-item {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .header-logo .logo {
    max-width: 170px;
  }
  .wooprex-mobile-menu-bar i {
    font-size: 26px;
  }
}/*# sourceMappingURL=styles.css.map */