/*
    ** Importing custom components fot the theme
    ** Created by m.refat@brande.ue
    ** import all sub_components 
*/
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("../fonts/MADETommySoft-Light.woff2") format("woff2"), url("../fonts/MADETommySoft-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("../fonts/MADETommySoft-Bold.woff2") format("woff2"), url("../fonts/MADETommySoft-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("../fonts/MADETommySoft.woff2") format("woff2"), url("../fonts/MADETommySoft.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("../fonts/MADETommySoft-Medium.woff2") format("woff2"), url("../fonts/MADETommySoft-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.hidden {
  display: none;
}

:root {
  --main-color: #FFE200;
  --secondary-color: #47628D;
  --main-font-regular: "Montserrat";
  --main-font-medium: "Montserrat";
  --main-font-bold: "Montserrat";
  /* --main-font-light: "Proxima Nova Alt Bl"; */
  --secondary-font-regular: "FONTSPRING DEMO - TT Ramillas";
  --secondary-font-bold: "Inter Medium";
  --secondary-font-semi: "Inter Bold";
  --third-font-regular: "MADE Tommy Soft";
  --third-font-bold: "MADE Tommy Soft";
  --section-pb: 100px;
  --section-pt: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font-regular);
  font-size: 16px;
  color: #000000;
  background-color: #fff;
}

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

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

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

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

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  top: 0;
  left: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bold {
  font-family: var(--main-font-bold);
}

.-bold {
  font-weight: bold;
}

.font-regular {
  font-family: var(--main-font-regular);
}

.font-medium {
  font-family: var(--main-font-medium);
}

.font-light {
  font-family: var(--main-font-light);
}

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

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

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

.font-third-bold {
  font-family: var(--third-font-bold);
}

.font-third-regular {
  font-family: var(--third-font-regular);
}

a {
  text-decoration: none;
}

/* .container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1260px;
} */
.container {
  max-width: 1235px;
  width: 95%;
  margin: 0 auto;
}

.container-left {
  width: 97.5%;
  max-width: none;
  margin-right: unset;
  margin-left: auto;
}

li {
  list-style: none;
}

ul {
  padding: 0;
}

ul,
figure {
  margin: 0;
}

.list-style li {
  list-style: inherit;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

.d-block {
  display: block;
}

.flex-column {
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start !important;
}

.flex-end {
  justify-content: end;
}

.uppercase {
  text-transform: uppercase;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  text-transform: none;
}

button, input, textarea {
  font-family: var(--main-font-regular);
}

img.lazy {
  transition: 0.4s opacity ease;
  transition-delay: 0.2s;
}

img.lazy[src] {
  opacity: 1;
}

img.lazy:not([src]) {
  opacity: 0 !important;
}

.center {
  text-align: center;
}

.align {
  text-align: right;
}

.pre-line {
  white-space: pre-line;
}

.flex-1 {
  flex: 1;
}

.align-center {
  align-items: center;
}

.align-self {
  align-self: baseline;
}

.align-end {
  align-items: flex-end;
}

.flex-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicode {
  unicode-bidi: plaintext;
}

:focus {
  outline: none;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.overflow-hidden {
  overflow: hidden;
}

.trans {
  transition: 0.4s;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-22 {
  margin-right: 22px;
}

.mr-18 {
  margin-right: 18px;
}

.mr-13 {
  margin-right: 13px;
}

.shadow {
  box-shadow: -9px 10px 79px rgba(25, 165, 148, 0.168627451);
}

.shadow-0 {
  box-shadow: none !important;
}

.p-side-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-side-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-side-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-side-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.p-side-30 {
  padding-left: 30px;
  padding-right: 30px;
}

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

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

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

.top-2 {
  position: relative;
  top: 2px;
}

.-top-2 {
  position: relative;
  top: -2px;
}

.main-color {
  color: var(--main-color);
}

.secondary-color {
  color: var(--secondary-color);
}

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

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

.white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.white-i {
  color: #fff !important;
}

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

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

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

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

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

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

.font-17 {
  font-size: 17px;
}

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

.font-19 {
  font-size: 19px;
}

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

.font-21 {
  font-size: 21px;
}

.font-22 {
  font-size: 22px;
}

.font-23 {
  font-size: 23px;
}

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

.font-26 {
  font-size: 26px;
}

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

.font-30 {
  font-size: 30px;
}

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

.font-34 {
  font-size: 34px;
}

.font-35 {
  font-size: 35px;
}

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

.font-45 {
  font-size: 45px;
}

.font-46 {
  font-size: 46px;
}

.font-50 {
  font-size: 50px;
}

.font-55 {
  font-size: 55px;
}

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

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

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

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

.rounded {
  border-radius: 50%;
}

.btn {
  background-color: var(--main-color);
  border-radius: 10px;
  transition: 0.4s;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--main-color);
}

.bg-cover {
  background-size: cover !important;
}

.bg-soft {
  background-color: #FCFCFC;
}

.object-fit {
  object-fit: cover;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.h-50 {
  height: 50%;
}

.h-100 {
  height: 100%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-32 {
  width: 32%;
}

.w-35 {
  width: 35%;
}

.w-38 {
  width: 38%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-48 {
  width: 48%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-58 {
  width: 58%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

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

.relative {
  position: relative;
}

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

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

.black-1 {
  color: #4A4A4A;
}

.gray-1 {
  color: rgba(31, 46, 62, 0.79);
}

.m-side-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 25px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
  /* grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) )!important; */
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.video-modal .modal-body {
  background: transparent;
}

.gap-0 {
  gap: 0;
}

.gap-3 {
  gap: 3px;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.pointer {
  cursor: pointer;
}

.mo, .to, .to-only {
  display: none;
}

.line-38 {
  line-height: 38px;
}

.line-28 {
  line-height: 28px;
}

.line-22 {
  line-height: 22px;
}

.section-padding {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.modal.active {
  visibility: visible;
}

.modal:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* backdrop-filter: brightness(.5) blur(4px);
  -webkit-backdrop-filter: brightness(.5) blur(4px); */
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.97);
}

.modal-body {
  width: 700px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 11px;
  overflow-y: auto;
  max-height: 90vh;
  opacity: 0;
  /* transition: .3s; */
  visibility: hidden;
}

.modal.active .modal-body {
  opacity: 1;
  visibility: visible;
}

.form-modal .modal-body {
  padding: 40px 40px 32px 40px;
}

.overflow-hidden {
  overflow: hidden;
}

[data-toggle-tab]:not(.active) {
  display: none;
}

[data-toggle-tab].active {
  display: block !important;
}

.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@keyframes fade {
  to {
    opacity: 0.9;
  }
}
@keyframes fade-out {
  to {
    opacity: 0;
  }
}
.z-1, .z-2 {
  position: relative;
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.modal.active:before {
  animation: fade 0.3s 1 ease-in-out forwards;
}

.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.two-line {
  -webkit-line-clamp: 2;
}

.three-line {
  -webkit-line-clamp: 3;
}

.four-line {
  -webkit-line-clamp: 4;
}

.five-line {
  -webkit-line-clamp: 5;
}

.acc-body {
  display: none;
}

.custom-alert {
  position: fixed;
  z-index: 1000;
  top: -25%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--secondary-color);
  padding: 20px 10px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  border-right: 4px solid var(--main-color);
  color: #fff;
  font-size: 15px;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}

.custom-alert.active {
  top: 5%;
  visibility: visible;
  opacity: 1;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome, Edge, Opera and Firefox */
}

.form-group > label ~ br,
.wpcf7-response-output {
/*   display: none; */
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 46px;
}

.header-menu a {
  color: #fff;
  font-size: 15px;
  transition: 0.4s;
}

.header-menu a:hover,
.header-menu li.current-menu-item a {
  color: #000;
}

.underline {
  text-decoration: underline;
}

.video-modal iframe {
  width: 100%;
}

.iti {
  width: 100%;
}

@media (max-width: 1024px) {
  .grid-3-t {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2-t {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1-t {
    grid-template-columns: repeat(1, 1fr);
  }
  .do-only {
    display: none !important;
  }
  .to {
    display: block !important;
  }
  .open-mobile-icon {
    background-color: transparent;
    border: 0;
    margin-left: 8px;
    display: flex;
    padding: 0;
    font-size: 26px;
  }
  .mobile-menu-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #293542;
    /* transform: translateX(-100%); */
    z-index: -1;
    transition: 0.4s;
    padding-bottom: 0;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: hidden;
  }
  .mobile-menu-box.active {
    visibility: visible;
    z-index: 10;
    opacity: 1;
    height: 100vh;
  }
  .mobile-menu {
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 20px;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 3;
    position: relative;
    padding-bottom: 60px;
  }
  .mobile-menu .header-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .mobile-menu li {
    margin: 20px 0;
    z-index: 2;
    transition: 0.4s;
    text-align: center;
  }
  .mobile-menu li a {
    text-decoration: none;
    color: white;
    transition: 2s;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    mix-blend-mode: difference;
  }
  .header-menu li.current-menu-item a {
    color: var(--main-color);
  }
  .close-menu-icon {
    fill: var(--main-color);
    width: 50px;
    z-index: 1;
    position: absolute;
  }
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .container,
.container-p {
    max-width: 95%;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .container-left-p {
    margin-left: auto;
    padding-left: calc(2.5% + 10px);
    padding-right: 10px;
    max-width: 100%;
  }
  .lang-ar .container-left-p {
    padding-right: calc(2.5% + 10px);
    padding-left: 10px;
  }
  :root {
    --section-pb: 50px;
    --section-pt: 50px;
  }
  .grid-1-p,
.grid-2-p,
.grid-3-p {
    display: grid;
  }
  .grid-1-p {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2-p {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-p {
    grid-template-columns: repeat(3, 1fr);
  }
  .mo {
    display: block !important;
  }
  .do, .to-only, .mo-none {
    display: none !important;
  }
  .wrap-p {
    flex-wrap: wrap;
  }
  .font-12-p {
    font-size: 12px;
  }
  .font-14-p {
    font-size: 14px;
  }
  .font-16-p {
    font-size: 16px;
  }
  .font-17-p {
    font-size: 17px;
  }
  .font-18-p {
    font-size: 18px;
  }
  .font-20-p {
    font-size: 20px;
  }
  .font-24-p {
    font-size: 24px;
  }
  .font-30-p {
    font-size: 30px;
  }
  .font-35-p {
    font-size: 35px;
  }
  .mt-20-p {
    margin-top: 20px;
  }
  .mr-0-p {
    margin-right: 0;
  }
  .ml-0-p {
    margin-left: 0;
  }
  .h-100-p {
    height: 100% !important;
  }
  .w-100-p {
    width: 100% !important;
  }
  .w-90-p {
    width: 90% !important;
  }
  .w-50-p {
    width: 50% !important;
  }
  .center-p {
    text-align: center;
  }
  .justify-center-p {
    justify-content: center;
  }
  .m-side-auto-p {
    margin-left: auto;
    margin-right: auto;
  }
  .p-0-p {
    padding: 0 !important;
  }
  .pr-0-p {
    padding-right: 0;
  }
  .pt-0-p {
    padding-top: 0px;
  }
  .pt-10-p {
    padding-top: 10px;
  }
  .pt-20-p {
    padding-top: 20px;
  }
  .pt-30-p {
    padding-top: 30px;
  }
  .pt-40-p {
    padding-top: 40px;
  }
  .pt-50-p {
    padding-top: 50px;
  }
  .pt-60-p {
    padding-top: 60px;
  }
  .pt-80-p {
    padding-top: 80px;
  }
  .pb-0-p {
    padding-bottom: 0px;
  }
  .pb-20-p {
    padding-bottom: 20px;
  }
  .pb-50-p {
    padding-bottom: 50px;
  }
  .pl-0-p {
    padding-left: 0 !important;
  }
  .ml-0-p {
    margin-left: 0 !important;
  }
  .mb-0-p {
    margin-bottom: 0;
  }
  .mb-10-p {
    margin-bottom: 10px;
  }
  .mb-15-p {
    margin-bottom: 15px;
  }
  .mb-20-p {
    margin-bottom: 20px;
  }
  .mb-25-p {
    margin-bottom: 25px;
  }
  .mb-30-p {
    margin-bottom: 30px;
  }
  .mb-35-p {
    margin-bottom: 35px;
  }
  .mb-50-p {
    margin-bottom: 50px;
  }
  .line-22-p {
    line-height: 22px;
  }
  .column-reverse-p {
    flex-direction: column-reverse;
  }
  .modal {
    padding: 0 12px;
  }
  .p-side-10-p {
    padding-left: 10px;
    padding-right: 10px;
  }
  .swipe-box-p {
    width: 100%;
    overflow: hidden;
    overflow-x: scroll !important;
    white-space: nowrap;
    display: flex !important;
  }
  .full-p {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
  }
  .gap-0-p {
    gap: 0px;
  }
  .gap-5-p {
    gap: 5px;
  }
  .gap-15-p {
    gap: 15px;
  }
  .gap-30-p {
    gap: 30px;
  }
  .flex-column-p {
    flex-direction: column;
  }
  .d-flex-p {
    display: flex;
  }
  .space-between-p {
    justify-content: space-between;
  }
  .form-modal .modal-body {
    padding: 30px;
    width: 100%;
    height: 100%;
    max-height: initial;
    border-radius: 0;
  }
  .justify-end-p {
    justify-content: end;
  }
}
header.header {
  padding: 15px 0;
  position: relative;
  top: 0;
  z-index: 100;
  transition: 0.4s;
  background-color: #000;
}

header.transparent-header {
  background-color: transparent;
}

header.header.hide {
  transform: translateY(-100%);
}

.header-menu {
  gap: 35px;
}

header.transparent-header .header-menu a {
  /* color: #030000; */
}

.header-menu a {
  color: #fff;
  font-size: 16px;
  padding: 0;
  position: relative;
  transition: 0.4s;
  font-family: var(--third-font-regular);
  font-weight: 500;
  text-transform: capitalize;
}

.header-menu a:hover,
.header-menu li.current_page_item a {
  color: var(--main-color);
}

.header-menu li.current_page_item a {
  font-weight: 700;
}

.header-menu li.current_page_item a:after {
  /* content: ""; */
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 17px;
  background-color: var(--main-color);
}

.btn-header {
  width: 165px;
  height: 47px;
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
}

.pt-35 {
  padding-top: 35px;
}

.btn-34 {
  width: 190px;
  height: 70px;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  /* -webkit-mask-image: -webkit-radial-gradient(#000, #fff); */
  border-radius: 12px;
}

.btn-34 {
  border-width: 2px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: 0.4s;
  background: var(--main-color);
  font-size: 16px;
  border: 2px solid var(--main-color);
  color: #232323;
  font-weight: 700;
}

.btn-34:hover {
  transform: scale(1.1);
  z-index: 1;
}

.btn-34 span {
  z-index: 1;
}

.btn-34:before {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 0;
  content: "";
/*   left: 50%; */
  position: absolute;
/*   top: 50%; */
/*   transform: translate(-50%, -50%); */
  transition: width 0.2s;
/*   width: 0; */
/*   border-radius: 50%; */
}

.btn-34:hover:before {
  width: 100%;
}

.btn-34:hover span {
  color: #000000;
}

.btn-black:hover {
  background-color: #000;
}

.btn-34.no {
  background-color: var(--main-color);
}

.btn-header-2,
.btn-transparent {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-black {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}

.landing-section {
  background: url(../image/landing-bg.webp) no-repeat;
  height: 750px;
  margin-top: -130px;
}

.landing-title {
  font-size: 55px;
}

.below-landing .box {
  gap: 2px;
  padding-block: 2px;
}

.below-landing .below-item {
  border-radius: 16px;
}

.section-title-54 {
  font-size: 40px;
  font-family: var(--third-font-regular);
  font-weight: 500;
}

.line {
  position: relative;
}

.line:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 110px;
  width: 5px;
  background: url(../image/line.svg) no-repeat;
  background-size: 100% 100%;
}

.about-patt {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: -1;
  width: 120px;
}

.what-section {
  background: linear-gradient(to right, var(--main-color) 65%, white 35%);
}

.line-below {
  display: flex;
  flex-direction: column;
}

.line-below:after {
  content: "";
  background: url(../image/line-2.svg) no-repeat;
  width: 65px;
  height: 5px;
  background-size: 100% 100%;
  display: block;
  margin-top: 30px;
}

.line-below.color:after {
  background: url(../image/line-3.svg) no-repeat;
}

.news-section .line-below.color:after {
  margin-top: 20px;
  width: 45px;
  height: 4px;
}

.custom-list li {
  position: relative;
  display: flex;
}

.custom-list li:before {
  content: "";
  display: inline-block;
  background: url(../image/li.svg) no-repeat;
  background-size: 100% 100%;
  margin-inline-end: 4px;
  min-width: 20px;
  height: 20px;
}

.news-slide:hover .body {
  margin-top: -80px;
  background-color: #dfdfdf;
}

.news-slide .body {
  background-color: #fcfcfc;
  padding: 15px 8px 25px 20px;
  width: 94%;
  margin-top: -70px;
  position: relative;
  transition: 0.4s;
}
.download-modal .close-modal-icon {
	position: absolute;
    right: 10px;
    top: 10px;
}
li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4ebe9;
    text-align: center;
    width: 250px;
    max-width: 250px;
    padding: 15px 10px;
    max-height: 300px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    top: calc(100% + 50px);
}
li.menu-item-has-children .sub-menu {
    max-height: 420px;
}
li.menu-item-has-children .sub-menu {
    padding: 15px 0px;
}
li.menu-item-has-children {
    position: relative;
}
.menu-item-has-children .sub-menu .menu-item-has-children > a:not([href]) {
    padding-inline: 10px;
}

.menu-item-has-children .sub-menu .menu-item-has-children > a:not([href]) {
    position: relative;
    cursor: pointer;
}
li.menu-item-has-children .sub-menu li a {
    color: #000;
    display: block;
    font-size: 14px !important;
    transition: 0.4s;
    padding: 4px ;
    text-align: initial;
}
li.menu-item-has-children .sub-menu li a:hover {
	    background: #0000002e;
}
.menu-item-has-children .sub-menu .menu-item-has-children > a:not([href]):before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    position: absolute;
    right: 5px;
    top: 6px;
    transition: .4s;
    font-size: 10px;
}
.menu-item-has-children .sub-menu .menu-item-has-children > a:not([href]):before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    position: absolute;
    right: 5px;
    top: 6px;
    transition: 0.4s;
    font-size: 10px;
}
li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
	top:100%;
}
.news-slide .body .title span,
.news-slide .body .desc {
  height: 43px;
  overflow: hidden;
}

.news-slide .body .desc {
  height: auto;
  overflow: hidden;
}

.news-slide {
  color: #000;
}

.swiper-pagination-bullet {
  background-color: #808080;
  opacity: 1;
}

.swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 16px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color);
  opacity: 1;
}

.what-section .right-img,
.blocks-section .right-img {
  position: relative;
  top: 80px;
}

.arrow {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  transition: 0.4s;
}

.arrow:hover {
  transform: scale(1.2);
  color: var(--main-color);
}

.square-item {
  border-radius: 24px;
  overflow: hidden;
}

.square-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.76;
  background: url(../image/overlay.png) no-repeat;
  background-size: 100% 100%;
}

.square-item .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  transition: 0.4s;
}

.square-item .body .title {
  font-size: 30px;
  color: #fff;
  transition: 0.6s;
  position: relative;
  top: 0;
}

.square-item:hover .body .title {
  top: -20px;
}

.square-item .body .go-arrow {
  position: absolute;
  bottom: 40px;
  font-size: 27px;
  color: #fff;
  transition: 0.4s;
}

.square-item .body .desc-item {
  position: absolute;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(50px);
}

.square-item:hover .body .desc-item {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.square-item:hover .body {
  background: rgba(0, 0, 0, 0.8509803922);
}

.square-item:hover .go-arrow,
.square-item:hover .body .title {
  color: var(--main-color);
}

.patt-item > *:before {
  content: "";
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/left-top.svg) no-repeat;
  background-size: 100% 100%;
}

.patt-item > *:nth-of-type(2):before {
  background-image: url(../image/mask-pr-2.svg);
}

.patt-item > *:nth-of-type(3):before {
  background-image: url(../image/mask-pr-3.svg);
}

.patt-item > *:nth-of-type(4):before {
  background-image: url(../image/mask-pr-4.svg);
}

.section-title-38 {
  font-family: var(--third-font-regular);
  font-weight: 500;
  font-size: 30px;
}

.contact-item figure {
  min-width: 54px;
  width: 54px;
  height: 54px;
  min-height: 54px;
  background-color: #000;
}

.contact-item figure i {
  color: var(--main-color);
  font-size: 20px;
}

.contact-out-input::placeholder {
  color: #000000;
}

.contact-out-input {
  background-color: transparent;
  border: 1px solid #000;
  height: 47px;
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

textarea.contact-out-input {
  height: 100px;
}

.btn-submit {
  box-shadow: 0px 3px 24px rgba(110, 110, 110, 0.1607843137);
  border-radius: 4px;
  background-color: #000;
  border: 1px solid #000;
  height: 47px;
  transition: 0.4s;
  color: var(--main-color);
  font-size: 15px;
  border-radius: 4px;
  width: 140px;
  font-weight: 500;
}

.btn-submit:hover {
  color: #000;
}

footer.footer {
  background-color: #0b0b0b;
  padding-block: 55px 45px;
  background-image: url(../image/footer-patt.png);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.footer a {
  font-size: 14px;
  color: #fff;
  transition: 0.4s;
}

.footer a:hover {
  color: var(--main-color);
}

.footer [data-toggle-tab] {
  display: flex;
  flex-direction: column;
}

.footer ul {
  gap: 6px;
  display: flex;
  flex-direction: column;
}

.footer .foot-address {
  line-height: 26px;
  font-size: 14px;
}

.social-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-box a {
  transition: 0.4s;
  background-color: #4d4d4d;
  border-radius: 50%;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

a.foot-download {
  border: 1px solid var(--main-color);
  font-size: 17px;
  justify-content: center;
  border-radius: 5px;
  align-items: center;
  height: 65px;
  color: var(--main-color);
  padding-inline: 5px;
}

.footer .box2 a {
  color: var(--main-color);
  font-size: 13px;
}

.footer .box2 a:hover {
  color: #fff;
}

.footer .box2 span {
  background-color: var(--main-color);
  height: 0.5px;
  flex: 1;
}

.banner-title {
  font-size: 50px;
  text-transform: uppercase;
}

.banner-breadcrumb {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 0;
  text-align: center;
  text-transform: uppercase;
}

.banner-section {
  height: 440px;
}

.banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/banner-overlay.png) no-repeat;
  background-size: 100% 100%;
  opacity: 0.55;
}

.center-patt,
.top-right {
    position: absolute;
    top: -130px;
    right: 0px;
    bottom: 0;
    margin: auto;
    z-index: -1;
    width: 120px;
}

.top-right {
  bottom: auto;
}

.blocks-section .block-section:nth-of-type(odd) {
  background: linear-gradient(to right, var(--main-color) 65%, white 35%);
}

.blocks-section .block-section:nth-of-type(even) {
  margin-top: 80px;
}

.blocks-section .block-section:nth-of-type(even) .box {
  flex-direction: row-reverse;
}

.blocks-section .block-section:nth-of-type(even) img {
  top: 60px;
  align-self: baseline;
}

.blocks-section .block-section:nth-of-type(even) .left {
  margin-top: 20px;
}

.block-section .section-title-54 {
  font-size: 30px;
}

.blocks-section {
  padding-bottom: 170px;
}

.news-inner-section .box {
  row-gap: 60px;
}

.contact-page-input::placeholder {
  color: #141414;
}

.contact-page-input {
  border: 0.6000000238px solid #0a243d;
  border-radius: 8px;
  width: 100%;
  height: 55px;
  padding: 15px;
  font-size: 15px;
  background-color: transparent;
}

textarea.contact-page-input {
  height: auto;
}

.contact-page-form .btn-submit {
  width: 260px;
  height: 55px;
  font-size: 17px;
  font-weight: bold;
}

.contact-inner .social-box a {
  background: #000;
  color: var(--main-color);
}

.contact-inner .social-box a:hover {
  transform: translateY(-5px) scale(1.2);
  color: #fff;
}

@media (max-width: 767px) {
  .landing-title {
    font-size: 40px;
  }
  .landing-desc {
    font-size: 14px;
  }
  .below-landing .box > * {
    width: 49%;
    flex: auto;
  }
  .btn-34 {
    width: 160px;
    height: 60px;
    font-size: 15px;
  }
  .below-landing .box .desc {
    font-size: 15px;
  }
  [pull-right] {
    margin: 0 !important;
  }
  .what-section,
.blocks-section .block-section:nth-of-type(odd) {
    background: linear-gradient(to right, var(--main-color) 100%, white 0%);
  }
  .what-section .right-img,
.blocks-section .right-img {
    top: -20px;
    width: 100%;
  }
  .section-title-54 {
    font-size: 33px;
  }
  .news-section .arrow {
    display: none;
  }
  .square-item .body .title {
    font-size: 28px;
  }
  .square-item .body .desc-item {
    display: none;
  }
  .section-title-38 {
    font-size: 22px;
  }
  .contact-section .section-title-38 {
    margin-bottom: 15px;
  }
  .contact-section .desc {
    font-size: 15px;
  }
  .contact-section .box {
    gap: 50px;
  }
  .foot-col {
    width: 100%;
  }
  .footer .box {
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer [data-toggle-tab] {
    /* display: none; */
  }
  footer.footer {
    padding-block: 40px;
  }
  .foot-col.col-2,
.foot-col.col-3 {
    flex: 1;
  }
  .foot-title {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .foot-social {
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
  }
  .foot-social a {
    width: 30px;
    height: 30px;
  }
  .foot-form .font-28 {
    font-size: 23px;
  }
  .footer .box2 span {
    height: 0.5px;
    width: 100%;
    flex: auto;
  }
  .footer .box2 {
    flex-direction: column;
  }
  .open-mobile-icon {
    color: #fff;
  }
  .transparent-header [open-mobile-menu] {
    color: #fff;
  }
  .header .logo img {
    width: 180px;
  }
  .landing-section {
    height: auto;
    margin-top: -86px;
    padding-top: 130px;
    padding-bottom: 100px;
  }
  .banner-title {
    font-size: 34px;
    text-align: center;
  }
  .banner-section {
    height: auto;
    padding-block: 50px 15px;
  }
  .banner-breadcrumb {
    position: unset;
    font-size: 13px;
    margin-top: 30px;
  }
  .center-patt,
.top-right {
    width: 30px;
  }
  .foot-logo img {
    width: 150px;
  }
  .top-right {
    top: -40px;
  }
  .blocks-section .block-section:nth-of-type(odd) .left {
    padding-top: 20px;
  }
  .blocks-section .block-section:nth-of-type(even) .box {
    flex-direction: column-reverse;
  }
  .blocks-section .block-section:nth-of-type(even) {
    margin-top: 0px;
  }
  .blocks-section .block-section:nth-of-type(even) .left {
    margin-top: 40px;
  }
  .blocks-section {
    padding-bottom: 20px;
  }
  .contact-inner .subtitle {
    font-size: 20px;
  }
  .contact-page-input {
    height: 45px;
    padding: 10px;
    font-size: 12px;
  }
  .contact-inner .box {
    gap: 50px;
  }
  .contact-page-form .btn-submit {
    width: 220px;
    height: 45px;
  }
  .contact-item figure {
    min-width: 44px;
    width: 44px;
    height: 44px;
    min-height: 44px;
  }
  .contact-inner .social-box {
    justify-content: start;
  }
}
.black {
  color: #000;
}

.resources-section .news-slide .body {
  width: 100%;
  padding: 25px 8px 25px 20px;
  margin-top: 0 !important;
}

.resources-section .news-slide .line-below:after {
  margin-top: 10px;
}
.header-menu a {
    font-weight: normal!important;
}
li.menu-item-has-children .sub-menu {
    padding: 10px;
    width: max-content;
    background-color: #ffe200 !important;
    border-radius: 15px;
}
li.menu-item-has-children .sub-menu li a:hover {
    background: transparent !important;
    color: white !important;
}
.coverabout {
	  width: 560px;
    height: 315px;
    background-size: cover;
    background-position: center;
	  position: relative;
}
.coverabout:before {
	position: absolute;
	content: "";
	height: 100px;
	width: 100px;
	background-size: cover;
	background-image: url(https://unitedseotech.com/lubimax/wp-content/uploads/2023/07/playicon-1.png);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	cursor: pointer;
}
@media(max-width: 767px) {
	.videoabout {
    max-width: 100%;
		height: auto;
	}
}
.popup-window {
  position: fixed;
  overflow: visible;
  padding: 40px;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  margin: 7% auto 0;
  width: 60%;
  display: none; }

.popup-window .closebtn {
position: absolute;
    right: -15px;
    top: -15px;
    color: #000;
    font-size: 22px;
    background-color: #ffe200;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 222;
    text-align: center;
    transition: 0.6s;
    border: 4px solid white; }

.popup-window .closebtn:hover {
  transform: rotate(180deg) scale(1.5); }

@media (max-width: 767px) {
  .popup-window {
    padding: 20px 0px;
    width: 90%; }

  .popup-window .inside-window {
    padding: 20px; } }
.sub-title p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
  color: #777;
  text-align: center; }

.popup-window-foot-download {
  position: fixed;
  overflow: visible;
  padding: 40px;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  margin: 7% auto 0;
  width: 60%;
  display: none; }

.popup-window-foot-download .closebtn-foot-download {
position: absolute;
    right: -15px;
    top: -15px;
    color: #000;
    font-size: 22px;
    background-color: #ffe200;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 222;
    text-align: center;
    transition: 0.6s;
    border: 4px solid white; }

.popup-window-foot-download .closebtn-foot-download:hover {
  transform: rotate(180deg) scale(1.5); }

@media (max-width: 767px) {
  .popup-window-foot-download {
    padding: 20px 0px;
    width: 90%; }

  .popup-window-foot-download .inside-window {
    padding: 20px; } }
.sub-title p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
  color: #777;
  text-align: center; }

@media (max-width: 767px) {
	.postid-163 .blocks-section br {
		display: none;
	}
	.postid-161 .blocks-section br {
		display: none;
	}
	.reigon-btn{
		display: flex!important;
		gap: 7px!important;
		align-items: center!important;
		padding: 2px 2px 24px 0px!important;
		flex-wrap: wrap!important;
	}
	a.display-a {
    white-space: nowrap!important;
}
	.distributor {
    display: block!important;
    width: 100%;
}
	.distributor .w-25 {
    float: unset!important; 
		margin:0px!important;
		margin-bottom:5px!important;

}
}
.about-section img {
	border-radius: 16px
}




/* New changes */
.header-menu li.current-menu-parent > a {
    color: #FFE200;
}


.faq-section .accordion h2{
    display:inline-block
}
/* Style the buttons that are used to open and close the accordion panel */
.faq-section .accordion {
 color: #444;
 cursor: pointer;
 padding: 10px 15px;
 width: 100%;
 text-align: left;
 border: none;
 outline: none;
 transition: 0.4s;
 margin-bottom: 20px;
 border: none;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.faq-section .active,  .faq-section .accordion:hover,
.faq-section button:focus {

  border: none;
}

/* Style the accordion panel. Note: hidden by default */
.faq-section .panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;

}

.faq-section .accordion:after {
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 33px;
  color: #000000;
  float: right;
  margin-left: 5px;
}

.faq-section .active:after {
  content: "-"; /* Unicode character for "minus" sign (-) */
 font-size: 43px;
}

.privacy-policy .entry-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-policy .entry-content ul li::before {content: "";display: inline-block;margin-inline-end: 12px;min-width: 4px;height: 4px;background: #000000;border-radius: 100%;position: relative;top: -4px;}

.privacy-policy .entry-content ul {
    margin:20px 0px;
}
.privacy-policy .entry-content a {
    color:#000;
}
.privacy-policy .entry-content ul li{
     margin:10px 0px;
}
.contact-out-form input::-webkit-outer-spin-button,
.contact-out-form input::-webkit-inner-spin-button {
         -webkit-appearance: none;
      }

.page-id-656 .contact-section{
	display:none !important;
}

/* Changes By Sara */
.article-featured {
  margin-bottom: 30px;
  margin-left: 15px;
  max-width: 500px;
  float: right;
}

.patt-image {
  height: auto;
}

.resourse-image {
  max-width: 100%;
  height: auto;
}

.post-content-container p {
  margin-bottom: 20px;
}

.post-content-container .wp-block-heading {
  margin-bottom: 10px;
}

.post-content-container ul{
  margin-left: 30px;
  margin-bottom: 20px;
}

.post-content-container ul li{
  list-style: circle;
}

.post-content-container a:link, .post-content-container a:visited{
  color: #fe6601
}

.post-content-container a:hover {
  color: #ffa92c
}

@media (max-width: 1024px) {
  .article-featured {
    margin-left: 0;
    max-width: 100%;
    float: none;
  }
}

.pagination-nav {
  justify-content: center;
}

.pagination-nav ul {
  display: flex;
  gap: 10px;
}

.pagination-nav ul li a, .pagination-nav ul li span {
  height: 25px;
  width: 25px;
  background: black;
  color: white;
  text-align: center;
  display: inline-block;
  line-height: 25px;
}

.pagination-nav ul a {
  color: white;
}

.pagination-nav ul li .current{
  font-weight: 500;
  background: #ffe200;
  color: black;
}