@charset "UTF-8";
/* @media (min-width: $xxxl_min) {
	.d-xxxl-block{
		display: block;
	}
} */
@keyframes headerSlideDown {
  0% {
    margin-top: -80px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes pxl_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pxl_fadeIn {
  animation-name: pxl_fadeIn;
}
@keyframes pxl_fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, var(--pxl-animation-distance, -35px), 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pxl_fadeInDown {
  animation-name: pxl_fadeInDown;
}
@keyframes pxl_fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(var(--pxl-animation-distance, -35px), 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pxl_fadeInLeft {
  animation-name: pxl_fadeInLeft;
}
@keyframes pxl_fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(var(--pxl-animation-distance, 35px), 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pxl_fadeInRight {
  animation-name: pxl_fadeInRight;
}
@keyframes pxl_fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--pxl-animation-distance, 35px), 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pxl_fadeInUp {
  animation-name: pxl_fadeInUp;
}
@keyframes pxl_rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.pxl_rotateIn {
  animation-name: pxl_rotateIn;
}
@keyframes pxl_rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.pxl_rotateInDownLeft {
  animation-name: pxl_rotateInDownLeft;
}
@keyframes pxl_rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.pxl_rotateInDownRight {
  animation-name: pxl_rotateInDownRight;
}
@keyframes pxl_rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.pxl_rotateInUpLeft {
  animation-name: pxl_rotateInUpLeft;
}
@keyframes pxl_rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.pxl_rotateInUpRight {
  animation-name: pxl_rotateInUpRight;
}
@keyframes pxl_zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.pxl_zoomIn {
  animation-name: pxl_zoomIn;
}
@keyframes pxl-animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes pxl-animation-pulse-grow {
  to {
    transform: scale(1.1);
  }
}
@keyframes pxl-animation-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pxl-animation-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pxl-animation-pop {
  50% {
    transform: scale(1.2);
  }
}
@keyframes pxl-animation-bob {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes pxl-animation-bob-float {
  100% {
    transform: translateY(-8px);
  }
}
@keyframes fadeInOutCustom {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutInCustom {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translate(100%, -100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%, 100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromtop {
  49% {
    -webkit-transform: translate(-100%, 100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(100%, -100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toleftFromright {
  49% {
    -webkit-transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes torightFromleft {
  49% {
    -webkit-transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes pxl-xspin {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pxl-wide-menu-underline {
  0% {
    background-size: 100% 100%;
    background-position-x: 100%;
  }
  100% {
    background-size: 0 100%;
    background-position-x: 100%;
  }
}
@keyframes pxl-wide-menu-underline-hover {
  0% {
    background-position-x: 0;
    background-size: 0 100%;
  }
  100% {
    background-position-x: 0;
    background-size: 100% 100%;
  }
}
@-webkit-keyframes Bottomup {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes Bottomup {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes Bottomup {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  60% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
@keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hoverBounce {
  0% {
    transform: translateY(0) scale(1) rotateY(0deg);
  }
  25% {
    transform: translateY(-30px) scale(1.12) rotateY(2deg);
  }
  40% {
    transform: translateY(-15px) scale(0.98) rotateY(4deg);
  }
  55% {
    transform: translateY(-25px) scale(1.08) rotateY(3deg);
  }
  70% {
    transform: translateY(-18px) scale(1.02) rotateY(6deg);
  }
  85% {
    transform: translateY(-22px) scale(1.06) rotateY(4deg);
  }
  100% {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
  }
}
@keyframes hoverReset {
  0% {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
  }
  100% {
    transform: translateY(0) scale(1) rotateY(0deg);
  }
}
@keyframes ani2 {
  0% {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
@keyframes ani {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  100% {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@-webkit-keyframes pxlFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pxlFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 40px, 0);
  }
}
@keyframes pxlFadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 15px, 0);
  }
}
@keyframes pxlUpandDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes pxlZoomin {
  from {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pxlZoomin {
  from {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate-line {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}
@keyframes rotate-line-2 {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}
@keyframes slideLoading {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 3;
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes reverse-rotate {
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes loader-5 {
  0% {
    opacity: 0.1;
    transform: rotate(0deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1.2);
  }
}
@keyframes icon-bounce_footer {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  60% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
@keyframes pxlkeywordrotatingin {
  0% {
    transform: translateY(65%) rotateX(-95deg);
    opacity: 0;
  }
  to {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}
@keyframes pxlkeywordrotatingout {
  0% {
    transform: translate(-50%, -50%) rotateX(0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -115%) rotateX(95deg);
    opacity: 0;
  }
}
@keyframes loaderAnim {
  100% {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 3000px;
  }
  to {
    stroke-dashoffset: 0%;
  }
}
@keyframes dash2 {
  from {
    stroke-dashoffset: 1000px;
  }
  to {
    stroke-dashoffset: 0%;
  }
}
@keyframes elementor-animation-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes up-down-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes down-up-move {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes icon_bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down-move-1 {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.up-down-move-2 {
  animation-duration: 4.5s;
  animation-iteration-count: infinite;
  transform-origin: top;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.up-down-move-3 {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  transform-origin: center;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
@keyframes ripple-1 {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes skew-icon-animate {
  0% {
    transform: scale(1) skew(0deg);
  }
  20% {
    transform: scale(1) skew(-8deg);
  }
  40% {
    transform: scale(1) skew(8deg);
  }
  60% {
    transform: scale(1) skew(-5deg);
  }
  80% {
    transform: scale(1) skew(5deg);
  }
  100% {
    transform: scale(1) skew(0deg);
  }
}
@keyframes pxl-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes slideZoomIn3D {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes revealClip {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes MoveScaleUpInitial {
  100% {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  0% {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes index-pulse-small-map {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes index-pulse-small-map2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes index-pulse-small-map3 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes lineUp {
  0% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 0.045, 1);
  }
  50% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 1, 1);
  }
  51% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 0.045, 1);
  }
}
@keyframes pxl-xspin2 {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes icon_zoom {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes shimmer-slide {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) translateY(100%);
  }
}
@keyframes effect-scale-image {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bullet-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes in-top {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-right {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-bottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-left {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes out-top {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(-1, 0, 0, 104deg);
  }
}
@keyframes out-right {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, -1, 0, 104deg);
  }
}
@keyframes out-bottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(1, 0, 0, 104deg);
  }
}
@keyframes out-left {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, 1, 0, 104deg);
  }
}
@font-face {
  font-family: "Clash Grotesk";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ClashGrotesk-Medium.woff") format("woff");
}
*, *:before, *:after {
  outline: none;
  box-sizing: inherit;
}
::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
::selection {
  background-color: var(--primary-color);
  color: rgba(25, 27, 29, 0.4);
}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  html {
    overflow-x: hidden;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: inherit;
  }
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bold;
}
small, .small {
  font-size: 0.875em;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
p {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
dfn, cite, em, i {
  font-style: italic;
}
pre {
  font-size: 14px;
  overflow: auto;
  background: #f5f5f5;
  padding: 15px;
  font-family: monospace, monospace;
  font-size: 1em;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
code, kbd, tt, var {
  font-size: 12px;
}
code {
  padding: 2px 4px;
  color: #ff0041;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  text-decoration: none;
}
mark {
  background: #fff9c0;
}
big {
  font-size: 125%;
}
a {
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
img, video, iframe, svg {
  max-width: 100%;
  vertical-align: top;
}
figure {
  margin: 0 0 30px 0;
}
figcaption {
  display: block;
}
form label {
  color: var(--body-color);
  max-width: 100%;
  margin-bottom: 5px;
}
label {
  display: block;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
  height: auto;
  line-height: normal;
  width: auto;
  margin-right: 10px;
}
input[type="button" i], input[type="submit" i], input[type="reset" i], input[type="file" i]::-webkit-file-upload-button, button {
  border: none;
}
button, input, optgroup, select, textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
:root {
  --border-color: rgba(25, 27, 29, 0.1);
}
body.dark-mode {
  --heading-color: #FAFAFA;
  --border-color: #D4D4D4;
  --bgdarkmode-color: #0a0a0a;
}
body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-color);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: normal;
}
@media (max-width: 575px) {
  body {
    font-size: 15px;
  }
}
body.overflow-x-clip {
  overflow-x: clip;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #fafafa;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -o-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 7px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover {
  background: #7d7d7d;
  border: 0;
}
body:before, body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body:before {
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  cursor: progress;
}
body:after {
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999999;
  opacity: 1;
}
body.loading:before {
  opacity: 1;
  visibility: visible;
}
body.loading:after {
  -webkit-animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
  -khtml-animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
  -moz-animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
  -ms-animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
  -o-animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
  animation: progress-loading 2s cubic-bezier(0.33, 0, 0.67, 0.99) forwards;
}
body.loaded:after {
  -webkit-animation: progress-loaded 0.5s ease-out forwards;
  -khtml-animation: progress-loaded 0.5s ease-out forwards;
  -moz-animation: progress-loaded 0.5s ease-out forwards;
  -ms-animation: progress-loaded 0.5s ease-out forwards;
  -o-animation: progress-loaded 0.5s ease-out forwards;
  animation: progress-loaded 0.5s ease-out forwards;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px 0;
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: var(--heading-text-transform);
}
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
}
a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6, a:hover .h1, a:hover .h2, a:hover .h3, a:hover .h4, a:hover .h4-1, a:hover .h5, a:hover .h6 {
  color: var(--link-color-hover);
}
h1, .h1, .size-h1 {
  font-size: var(--heading-font-size-h1);
}
@media (max-width: 1599px) {
  h1, .h1, .size-h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1, .h1, .size-h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (max-width: 991px) {
  h1, .h1, .size-h1 {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  h1, .h1, .size-h1 {
    font-size: 36px;
  }
}
h2, .h2, .size-h2 {
  font-size: var(--heading-font-size-h2);
}
@media (max-width: 1599px) {
  h2, .h2, .size-h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2, .h2, .size-h2 {
    font-size: calc(1.325rem + .9vw);
  }
}
@media (max-width: 991px) {
  h2, .h2, .size-h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  h2, .h2, .size-h2 {
    font-size: 22px;
  }
}
h3, .h3, .size-h3 {
  font-size: var(--heading-font-size-h3);
}
@media (max-width: 1199px) {
  h3, .h3, .size-h3 {
    font-size: calc(1.3rem + .6vw);
  }
}
h4, .h4, .size-h4 {
  font-size: var(--heading-font-size-h4);
}
@media (max-width: 1199px) {
  h4, .h4, .size-h4 {
    font-size: calc(1.275rem + .3vw);
  }
}
h5, .h5, .size-h5 {
  font-size: var(--heading-font-size-h5);
}
h6, .h6, .size-h6 {
  font-size: var(--heading-font-size-h6);
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}
ul ul, ul ol, ol ul, ol ol {
  padding-left: 15px;
}
[dir="rtl"] ul ul, [dir="rtl"] ul ol, [dir="rtl"] ol ul, [dir="rtl"] ol ol {
  padding-left: 0;
  padding-right: 15px;
}
ul.list-unstyled, ul.unstyled, ol.list-unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.list-unstyled ul, ul.list-unstyled ol, ul.unstyled ul, ul.unstyled ol, ol.list-unstyled ul, ol.list-unstyled ol, ol.unstyled ul, ol.unstyled ol {
  list-style: none;
}
ul.horizontal, ol.horizontal {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
ul.horizontal > li, ol.horizontal > li {
  padding: 5px;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-spacing: 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
table th, table td {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-top: 0;
  border-left: 0;
  text-align: start;
  vertical-align: middle;
}
table th:last-child, table td:last-child {
  border-right: 0;
}
table + * {
  margin-top: 20px;
}
table tbody tr:last-child th, table tbody tr:last-child td {
  border-bottom: 0;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
img.image-fit, img.img-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -moz-object-fit: cover;
  -ms-filter-object-fit: cover;
  -webkit-object-fit: cover;
}
img.alignleft[alt="Image Alignment 150x150"], img.alignright[alt="Image Alignment 150x150"] {
  clear: both;
}
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-color-hover);
}
a:hover, a:active, a:focus {
  text-decoration: none;
}
p, ul, ol, dl, dt, dd, blockquote, address {
  margin: 0 0 10px;
}
.p:last-child, p:last-child {
  margin-bottom: 0;
}
.dropcap {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-right: 0.5rem;
  color: var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 6px;
}
blockquote {
  padding: 24px;
  margin: 15px 0;
  background-color: var(--primary-color);
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color);
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
}
[dir="rtl"] blockquote.has-text-align-right {
  text-align: left;
}
blockquote cite {
  font-family: var(--heading-font-family);
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  font-style: inherit;
  background: transparent;
  text-transform: uppercase;
  color: var(--second-color);
  position: relative;
  display: block;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.txt-secondary {
  color: var(--second-color);
}
.txt-dark {
  color: #000000;
}
.text-uppercase {
  text-transform: uppercase;
}
.pxl-gradient {
  position: relative;
}
.pxl-gradient .text-gradient {
  background: linear-gradient(264.53deg, #2DA7FF 4.86%, #45D675 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pxl-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(264.53deg, #2DA7FF 4.86%, #45D675 100%);
}
.label {
  padding: 0;
  font-weight: 400;
  border-radius: 4px;
  font-size: 100%;
}
.mt-15 {
  margin-top: 1.5rem;
}
.mr-025 {
  margin-right: 0.25rem;
}
.mr-05 {
  margin-right: 0.5rem;
}
.mr-1 {
  margin-right: 1rem;
}
.ml-025 {
  margin-left: 0.25rem;
}
.ml-05 {
  margin-left: 0.5rem;
}
.ml-1 {
  margin-left: 1rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.bg-light {
  background-color: #f8f9fa;
}
.fw-500 {
  font-weight: 500;
}
[dir="rtl"] .rtl-flip {
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.custom-phone {
  font-family: var(--heading-font-family);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .d-xxs-none {
    display: none;
  }
}
.d-flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.d-flex-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.d-flex-wrap > * {
  flex-shrink: 0;
  max-width: 100%;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
.min-h-100vh {
  min-height: 100vh !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
@media (max-width: 575px) {
  .overflow-hidden-xs {
    overflow: hidden !important;
  }
}
.bg-image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.scale-hover {
  overflow: hidden;
}
.scale-hover img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.scale-hover .parallax-inner {
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.scale-hover:hover img {
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.scale-hover:hover .parallax-inner {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.scale-hover1 {
  overflow: hidden;
}
.scale-hover1 img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.scale-hover1 .parallax-inner {
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.scale-hover1:hover img {
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.scale-hover1:hover .parallax-inner {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.icon-hover:hover .pxl-icon i, .icon-hover:hover .pxl-icon span, .icon-hover:hover svg {
  -webkit-animation: pulse 500ms linear 0s;
  -khtml-animation: pulse 500ms linear 0s;
  -moz-animation: pulse 500ms linear 0s;
  -ms-animation: pulse 500ms linear 0s;
  -o-animation: pulse 500ms linear 0s;
  animation: pulse 500ms linear 0s;
}
.icon-hover1:hover .pxl-icon i, .icon-hover1:hover .pxl-icon span, .icon-hover1:hover svg {
  -webkit-animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
  -khtml-animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
  -moz-animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
  -ms-animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
  animation: pxl-zoom-out-in-small 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.hover-underline a, a.hover-underline {
  position: relative;
}
.hover-underline a:after, a.hover-underline:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: all 350ms;
}
.hover-underline a:hover, a.hover-underline:hover {
  color: inherit;
}
.hover-underline a:hover:after, a.hover-underline:hover:after {
  width: 100%;
}
.bypostauthor {
  display: block;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 6px;
  margin-bottom: 45px;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 35px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 35px;
  clear: right;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sticky {
  display: block;
}
.pxl-sticky {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 35px;
  z-index: 1;
}
.list-style-none {
  list-style: none;
}
.italic {
  font-style: italic;
}
.no-padding {
  padding: 0 !important;
}
.text-underline {
  text-decoration: underline;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.absoluted {
  position: absolute;
  z-index: 1;
}
.pxl-absoluted {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pxl-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pos-fixed, .pos-fix {
  position: fixed;
}
.img-cover, .object-fit {
  -o-object-fit: cover;
  object-fit: cover;
}
.img-cover-center {
  object-fit: cover;
  object-position: center;
}
.transition, .pxl-transition {
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-invisible {
  visibility: hidden;
}
.font-body {
  font-family: var(--body-font-family) !important;
}
.font-heading {
  font-family: var(--heading-font-family);
}
.pxl-heading {
  color: var(--heading-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
}
.text-heading {
  color: var(--heading-color);
}
.empty-none:empty {
  display: none !important;
}
.overflow-x {
  overflow-x: clip;
}
.clearfix::after, .clearfix::before {
  display: block;
  clear: both;
  content: "";
}
.pxl-spin {
  -webkit-animation: pxl-spin 2s linear infinite;
  -khtml-animation: pxl-spin 2s linear infinite;
  -moz-animation: pxl-spin 2s linear infinite;
  -ms-animation: pxl-spin 2s linear infinite;
  -o-animation: pxl-spin 2s linear infinite;
  animation: pxl-spin 2s linear infinite;
}
.pxl-transforms {
  -webkit-transform: perspective(var(--pxl-transform-perspective, 0)) rotate(var(--pxl-transform-rotateZ, 0)) rotateX(var(--pxl-transform-rotateX, 0)) rotateY(var(--pxl-transform-rotateY, 0)) translate(var(--pxl-transform-translate, 0)) translateX(var(--pxl-transform-translateX, 0)) translateY(var(--pxl-transform-translateY, 0)) scaleX(calc(var(--pxl-transform-flipX, 1) * var(--pxl-transform-scaleX, var(--pxl-transform-scale, 1)))) scaleY(calc(var(--pxl-transform-flipY, 1) * var(--pxl-transform-scaleY, var(--pxl-transform-scale, 1)))) skewX(var(--pxl-transform-skewX, 0)) skewY(var(--pxl-transform-skewY, 0));
  transform: perspective(var(--pxl-transform-perspective, 0)) rotate(var(--pxl-transform-rotateZ, 0)) rotateX(var(--pxl-transform-rotateX, 0)) rotateY(var(--pxl-transform-rotateY, 0)) translate(var(--pxl-transform-translate, 0)) translateX(var(--pxl-transform-translateX, 0)) translateY(var(--pxl-transform-translateY, 0)) scaleX(calc(var(--pxl-transform-flipX, 1) * var(--pxl-transform-scaleX, var(--pxl-transform-scale, 1)))) scaleY(calc(var(--pxl-transform-flipY, 1) * var(--pxl-transform-scaleY, var(--pxl-transform-scale, 1)))) skewX(var(--pxl-transform-skewX, 0)) skewY(var(--pxl-transform-skewY, 0));
  -webkit-transform-origin: var(--pxl-transform-origin-y) var(--pxl-transform-origin-x);
  -ms-transform-origin: var(--pxl-transform-origin-y) var(--pxl-transform-origin-x);
  transform-origin: var(--pxl-transform-origin-y) var(--pxl-transform-origin-x);
  -webkit-transition: -webkit-transform var(--pxl-transform-transition-duration, 0.4s);
  transition: -webkit-transform var(--pxl-transform-transition-duration, 0.4s);
  -o-transition: transform var(--pxl-transform-transition-duration, 0.4s);
  transition: transform var(--pxl-transform-transition-duration, 0.4s);
  transition: transform var(--pxl-transform-transition-duration, 0.4s), -webkit-transform var(--pxl-transform-transition-duration, 0.4s);
}
.pxl-ken-burns {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 10s;
  -o-transition-duration: 10s;
  transition-duration: 10s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.pxl-ken-burns--out {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.pxl-ken-burns--active {
  -webkit-transition-duration: 20s;
  -o-transition-duration: 20s;
  transition-duration: 20s;
}
.pxl-ken-burns--active.pxl-ken-burns--out {
  -webkit-animation: pxl-ken-burns-out 30s linear infinite;
  -khtml-animation: pxl-ken-burns-out 30s linear infinite;
  -moz-animation: pxl-ken-burns-out 30s linear infinite;
  -ms-animation: pxl-ken-burns-out 30s linear infinite;
  -o-animation: pxl-ken-burns-out 30s linear infinite;
  animation: pxl-ken-burns-out 30s linear infinite;
}
.pxl-ken-burns--active.pxl-ken-burns--in {
  -webkit-animation: pxl-ken-burns-in 30s linear infinite;
  -khtml-animation: pxl-ken-burns-in 30s linear infinite;
  -moz-animation: pxl-ken-burns-in 30s linear infinite;
  -ms-animation: pxl-ken-burns-in 30s linear infinite;
  -o-animation: pxl-ken-burns-in 30s linear infinite;
  animation: pxl-ken-burns-in 30s linear infinite;
}
.pxl-ken-burns--active.pxl-ken-burns--in-out {
  -webkit-animation: pxl-ken-burns-in-out 60s linear infinite;
  -khtml-animation: pxl-ken-burns-in-out 60s linear infinite;
  -moz-animation: pxl-ken-burns-in-out 60s linear infinite;
  -ms-animation: pxl-ken-burns-in-out 60s linear infinite;
  -o-animation: pxl-ken-burns-in-out 60s linear infinite;
  animation: pxl-ken-burns-in-out 60s linear infinite;
}
.pxl-divider.animated .pxl-divider-separator {
  transform: scaleX(0);
  transform-origin: 0 100%;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-divider.animated.vertical .pxl-divider-separator, .pxl-divider.animated.vertical-dashed .pxl-divider-separator {
  transform: scaleY(0);
  transform-origin: 100% 0;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-divider.animated.center .pxl-divider-separator {
  transform-origin: 50% 100%;
}
.pxl-divider.animated.reversal .pxl-divider-separator {
  transform-origin: 100% 100%;
}
.pxl-divider.animated.slow .pxl-divider-separator {
  transition: transform 2.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-divider.animated.normal .pxl-divider-separator {
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-divider.animated.fast .pxl-divider-separator {
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-divider.animated.pxl-animated .pxl-divider-separator {
  transform: scale(1);
}
.cursor-map-target:hover .pxl-map-wrap {
  opacity: 1;
}
.pxl-map-wrap {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -khtml-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  -ms-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pxl-map-wrap .pxl-map-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -khtml-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pxl-map-wrap.active {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}
.pxl-map-wrap.active .pxl-map-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-map-wrap.clicked {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .pxl-map-wrap.clicked {
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.pxl-bg-parallax {
  position: relative;
  overflow: hidden;
}
.parallax-inner {
  background-repeat: no-repeat;
  background-size: cover;
}
.pxl-split-text {
  font-kerning: none;
  -webkit-text-rendering: optimizeSpeed;
  text-rendering: optimizeSpeed;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
[class*=" pxl-hover-target-"]:not(.item-image) {
  cursor: pointer;
}
.pxl-transition img {
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-anm-gsap:not(.gsap-method-from):not([class*=" anm-assign-for-"]) {
  opacity: var(--pxl_from_opacity, 1);
}
.pxl-animated {
  animation-duration: var(--pxl-animation-duration, 1.25s);
}
.pxl_title_split_text {
  opacity: var(--title_opacity, 1);
}
.pxl_subtitle_split_text {
  opacity: var(--subtitle_opacity, 1);
}
.pxl-hover-anm:active .pulse, .pxl-hover-anm:focus .pulse, .pxl-hover-anm:hover .pulse {
  animation-name: pxl-animation-pulse;
  animation-duration: var(--animation-duration, 1s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.pxl-hover-anm:active .pulse-grow, .pxl-hover-anm:focus .pulse-grow, .pxl-hover-anm:hover .pulse-grow {
  animation-name: pxl-animation-pulse-grow;
  animation-duration: var(--animation-duration, 300ms);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.pxl-hover-anm:active .pulse-shrink, .pxl-hover-anm:focus .pulse-shrink, .pxl-hover-anm:hover .pulse-shrink {
  animation-name: pxl-animation-pulse-shrink;
  animation-duration: var(--animation-duration, 300ms);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.pxl-hover-anm:active .push, .pxl-hover-anm:focus .push, .pxl-hover-anm:hover .push {
  animation-name: pxl-animation-push;
  animation-duration: var(--animation-duration, 300ms);
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
.pxl-hover-anm:active .pop, .pxl-hover-anm:focus .pop, .pxl-hover-anm:hover .pop {
  animation-name: pxl-animation-pop;
  animation-duration: var(--animation-duration, 300ms);
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
.pxl-hover-anm:active .bob, .pxl-hover-anm:focus .bob, .pxl-hover-anm:hover .bob {
  animation-name: pxl-animation-bob-float, pxl-animation-bob;
  animation-duration: var(--animation-duration, 300ms), 1.5s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}
.pxl-hover-anm:active .fade-in-out, .pxl-hover-anm:focus .fade-in-out, .pxl-hover-anm:hover .fade-in-out {
  animation: fadeInOutCustom var(--animation-duration, 8s) infinite linear alternate;
}
.pxl-hover-anm:active .fade-out-in, .pxl-hover-anm:focus .fade-out-in, .pxl-hover-anm:hover .fade-out-in {
  animation: fadeOutInCustom var(--animation-duration, 8s) infinite linear alternate;
}
.color-primary {
  color: var(--primary-color);
}
.color-heading {
  color: var(--heading-color);
}
.color-third {
  color: var(--third-color);
}
.scale-hover-x {
  overflow: hidden;
}
.scale-hover-x img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.03) translateX(-3px);
  transform: scale(1.03) translateX(-3px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scale-hover-x:hover img {
  -webkit-transform: scale(1.03) translateX(3px);
  transform: scale(1.03) translateX(3px);
}
.scale-hover-x-left {
  overflow: hidden;
}
.scale-hover-x-left img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scale-hover-x-left:hover img {
  -webkit-transform: scale(1.03) translateX(-5px);
  transform: scale(1.03) translateX(-5px);
}
.scale-hover-z-right {
  overflow: hidden;
}
.scale-hover-z-right img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scale-hover-z-right:hover img {
  -webkit-transform: scale(1.1) translateX(5px);
  transform: scale(1.1) translateX(5px);
}
.pxl-draw-from-top img, .pxl-draw-from-top .parallax-inner {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.pxl-draw-from-top.pxl-animated img, .pxl-draw-from-top.pxl-animated .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.pxl-draw-from-left img, .pxl-draw-from-left .parallax-inner {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 0.6s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.pxl-draw-from-left.pxl-animated img, .pxl-draw-from-left.pxl-animated .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.pxl-draw-from-right img, .pxl-draw-from-right .parallax-inner {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.pxl-draw-from-right.pxl-animated img, .pxl-draw-from-right.pxl-animated .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.pxl-move-from-left {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.pxl-move-from-left img, .pxl-move-from-left .parallax-inner {
  transform-origin: 50% 50%;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
  -webkit-transform: scale(1.5) translate(-150px, 0px);
  -khtml-transform: scale(1.5) translate(-150px, 0px);
  -moz-transform: scale(1.5) translate(-150px, 0px);
  -ms-transform: scale(1.5) translate(-150px, 0px);
  -o-transform: scale(1.5) translate(-150px, 0px);
  transform: scale(1.5) translate(-150px, 0px);
}
.pxl-move-from-left.pxl-animated {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pxl-move-from-left.pxl-animated img, .pxl-move-from-left.pxl-animated .parallax-inner {
  -webkit-transform: scale(1) translate(0px, 0px);
  -khtml-transform: scale(1) translate(0px, 0px);
  -moz-transform: scale(1) translate(0px, 0px);
  -ms-transform: scale(1) translate(0px, 0px);
  -o-transform: scale(1) translate(0px, 0px);
  transform: scale(1) translate(0px, 0px);
}
.pxl-move-from-right {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.pxl-move-from-right img, .pxl-move-from-right .parallax-inner {
  transform-origin: 50% 50%;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
  -webkit-transform: scale(1.5) translate(150px, 0px);
  -khtml-transform: scale(1.5) translate(150px, 0px);
  -moz-transform: scale(1.5) translate(150px, 0px);
  -ms-transform: scale(1.5) translate(150px, 0px);
  -o-transform: scale(1.5) translate(150px, 0px);
  transform: scale(1.5) translate(150px, 0px);
}
.pxl-move-from-right.pxl-animated {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pxl-move-from-right.pxl-animated img, .pxl-move-from-right.pxl-animated .parallax-inner {
  -webkit-transform: scale(1) translate(0px, 0px);
  -khtml-transform: scale(1) translate(0px, 0px);
  -moz-transform: scale(1) translate(0px, 0px);
  -ms-transform: scale(1) translate(0px, 0px);
  -o-transform: scale(1) translate(0px, 0px);
  transform: scale(1) translate(0px, 0px);
}
.pxl-skew-in {
  visibility: hidden;
}
.pxl-skew-in.pxl-animated {
  visibility: visible;
  -webkit-animation-name: pxl_skew_in;
  animation-name: pxl_skew_in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pxl-skew-in-right {
  visibility: hidden;
}
.pxl-skew-in-right.pxl-animated {
  visibility: visible;
  -webkit-animation-name: pxl_skew_in_right;
  animation-name: pxl_skew_in_right;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pxl-zoom-in img {
  -webkit-transform: scale(0.4);
  -khtml-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 800ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-zoom-in.pxl-animated img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-zoom-out img {
  -webkit-transform: scale(2);
  -khtml-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -webkit-transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -khtml-transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -moz-transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -ms-transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -o-transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
  transition: all 800ms cubic-bezier(0.55, 0.09, 0.68, 0.53);
}
.pxl-zoom-out.pxl-animated img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-scale img {
  transform: scale(1.1);
  transition: all 1.5s ease;
}
.pxl-scale.active img {
  transform: scale(1);
}
.pxl-border-animated .pxl-border-anm {
  position: absolute;
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.pxl-border-animated .pxl-border-anm.bt {
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 0;
}
.pxl-border-animated .pxl-border-anm.br {
  top: 0;
  right: 0;
  transform: scaleY(0);
  transform-origin: 100% 0;
}
.pxl-border-animated .pxl-border-anm.bb {
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 100%;
}
.pxl-border-animated .pxl-border-anm.bl {
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.pxl-border-animated.num-3 .pxl-border-anm.br, .pxl-border-animated.num-3 .pxl-border-anm.bb, .pxl-border-animated.num-4 .pxl-border-anm.br, .pxl-border-animated.num-4 .pxl-border-anm.bb {
  transition-delay: 1s;
}
.pxl-border-animated.pxl-animated .pxl-border-anm {
  transform: scale(1);
}
.animation-superstar {
  position: relative;
  display: inline-block;
}
.animation-superstar svg {
  animation: bounceShake 1.5s ease-in-out infinite;
}
.animation-superstar::before, .animation-superstar::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FF921D;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.91093 4.2861L10.9297 0.582974C11.225 0.311099 11.6391 0.207974 12.0266 0.312661C12.4141 0.417349 12.7219 0.712661 12.8422 1.09547L14.4687 6.3111L19.2328 8.98766C19.5828 9.18454 19.8078 9.54704 19.8297 9.9486C19.85 10.3486 19.6641 10.733 19.3375 10.9658L14.8797 14.1252L13.8062 19.483C13.7266 19.8767 13.4516 20.2033 13.0766 20.347C12.7016 20.4908 12.2797 20.433 11.9562 20.1924L7.57499 16.9298L2.14687 17.5642C1.74843 17.6111 1.35312 17.4502 1.09999 17.1377C0.846867 16.8252 0.771869 16.4049 0.901557 16.0252L2.64999 10.8486L0.368745 5.88297C0.201557 5.51891 0.232806 5.09235 0.451556 4.75641C0.670306 4.41891 1.04687 4.21735 1.44843 4.22204L6.91093 4.2861Z" fill="%23FF921D"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.91093 4.2861L10.9297 0.582974C11.225 0.311099 11.6391 0.207974 12.0266 0.312661C12.4141 0.417349 12.7219 0.712661 12.8422 1.09547L14.4687 6.3111L19.2328 8.98766C19.5828 9.18454 19.8078 9.54704 19.8297 9.9486C19.85 10.3486 19.6641 10.733 19.3375 10.9658L14.8797 14.1252L13.8062 19.483C13.7266 19.8767 13.4516 20.2033 13.0766 20.347C12.7016 20.4908 12.2797 20.433 11.9562 20.1924L7.57499 16.9298L2.14687 17.5642C1.74843 17.6111 1.35312 17.4502 1.09999 17.1377C0.846867 16.8252 0.771869 16.4049 0.901557 16.0252L2.64999 10.8486L0.368745 5.88297C0.201557 5.51891 0.232806 5.09235 0.451556 4.75641C0.670306 4.41891 1.04687 4.21735 1.44843 4.22204L6.91093 4.2861Z" fill="%23FF921D"/></svg>') no-repeat center / contain;
  opacity: 0;
  top: 0;
}
.animation-superstar::before {
  left: calc(50% + 10px);
}
.animation-superstar::after {
  left: calc(50% - 20px);
}
.animation-superstar:hover::before {
  animation: explode 0.5s ease-out infinite;
}
.animation-superstar:hover::after {
  animation: explode 0.5s ease-out infinite;
  animation-delay: 0.2s;
}
@media (max-width: 1199px) {
  .animation-superstar svg {
    animation: none;
  }
}
@keyframes bounceShake {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(-10deg);
  }
  50% {
    transform: translateY(0) rotate(10deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
}
@keyframes explode {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(2) translateY(-30px);
    opacity: 0;
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(-30px, 40px);
  }
  40% {
    transform: translate(60px, 60px);
  }
  60% {
    transform: translate(80px, 40px);
  }
  80% {
    transform: translate(40px, -70px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes animationFramesfive {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(40px, -5px);
  }
  40% {
    transform: translate(60px, 40px);
  }
  60% {
    transform: translate(40px, 60px);
  }
  80% {
    transform: translate(-40px, 60px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes animationFramesSix {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(-24px, -30px);
  }
  66% {
    transform: translate(24px, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes animationFramesSeven {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: rotate(90deg);
  }
  40% {
    transform: translate(0, 90px);
  }
  60% {
    transform: rotate(180deg);
  }
  80% {
    transform: translate(-90px, 0);
  }
  100% {
    transform: translate(0px, 0px) rotate(90deg);
  }
}
.elementor-column.pxl-border-column-anm > .elementor-element-populated {
  border-width: 0 !important;
}
.elementor-element.pxl-border-wg-anm > .elementor-widget-container {
  border-width: 0 !important;
  position: relative;
}
.elementor-element.pxl-border-section-anm {
  border-width: 0 !important;
}
.elementor-element .pxl-border-animated {
  position: relative;
}
.elementor-animation-buzz img:hover {
  animation-name: elementor-animation-buzz;
  animation-duration: 0.15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.cus-mask-image img {
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
}
.up-down-move {
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.text-vertical {
  writing-mode: vertical-rl;
}
.shape-animate1 {
  animation: animationFramesFour 12s infinite linear alternate;
}
.shape-animate2 {
  animation: animationFramesfive 12s infinite linear alternate;
}
.shape-animate3 {
  animation: animationFramesSix 12s infinite linear alternate;
}
.shape-animate4 {
  animation: animationFramesSeven 18s infinite linear alternate;
}
.animated-rotate {
  animation: sk-rotate 8s linear infinite;
}
@media (min-width: 576px) {
  .hover-Zindex {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .hover-Zindex > * {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
  }
  .hover-Zindex:hover > * {
    z-index: 4;
    animation: hoverBounce 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .hover-Zindex:not(:hover) > * {
    animation: hoverReset 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}
.hover-flower .flower-up {
  transform: translateY(100%);
  opacity: 0;
  transition: all 400ms ease;
}
.hover-flower:hover .flower-up {
  transform: translateY(0);
  opacity: 1;
}
.pxl-scroll-top2 {
  cursor: pointer;
}
.pxl-scroll-top2 i, .pxl-scroll-top2 svg {
  animation: icon-bounce_footer 2s linear 0s infinite;
}
.cus-shadow {
  box-shadow: -351px 460px 162px 0 rgba(0, 0, 0, 0.01), -225px 295px 148px 0 rgba(0, 0, 0, 0.04), -126px 166px 125px 0 rgba(0, 0, 0, 0.15), -56px 74px 93px 0 rgba(0, 0, 0, 0.25), -14px 18px 51px 0 rgba(0, 0, 0, 0.29), 0 1.5px 0 0 #686868, 0 2px 3px 0 rgba(0, 0, 0, 0.2) inset;
}
.cus-bg-filter {
  background: radial-gradient(64.94% 78.27% at 24.52% -10.8%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), #0A0A0A;
  box-shadow: 0 -2px 0 0 rgba(160, 160, 160, 0.2) inset, 0 1px 0 0 rgba(255, 255, 255, 0.3) inset, 0 -3px 0 0 #080808 inset;
}
.cus-icon-bounce {
  animation: icon-bounce 2s linear 0s infinite;
}
.cus-icon-bounce:hover {
  animation: none;
}
body.dark-mode {
  background-color: var(--bgdarkmode-color);
}
.mode-difference {
  mix-blend-mode: difference;
}
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  --pxl-gutter-x: 30px;
  width: 100%;
  padding-right: calc(var(--pxl-gutter-x, 15px) * .5);
  padding-left: calc(var(--pxl-gutter-x, 15px) * .5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1200px;
  }
}
@media (min-width: 1350px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1326px;
  }
}
.row {
  --pxl-gutter-x: 30px;
  --pxl-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--pxl-gutter-y) * -1);
  margin-right: calc(var(--pxl-gutter-x) * -.5);
  margin-left: calc(var(--pxl-gutter-x) * -.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--pxl-gutter-x) * .5);
  padding-left: calc(var(--pxl-gutter-x) * .5);
  margin-top: var(--pxl-gutter-y);
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
@media (min-width: 576px) {
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col {
  flex: 1 0 0%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.d-grid {
  display: grid;
}
.d-table {
  display: table;
}
.d-table-row {
  display: table-row;
}
.d-table-cell {
  display: table-cell;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-none {
  display: none;
}
.flex-fill {
  flex: 1 1 auto;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-stretch {
  align-content: stretch;
}
.align-self-auto {
  align-self: auto;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
.order-first {
  order: -1;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-last {
  order: 6;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-center {
  text-align: center;
}
@media (min-width: 576px) {
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-grid {
    display: grid;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
  .flex-sm-fill {
    flex: 1 1 auto;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-sm-grow-0 {
    flex-grow: 0;
  }
  .flex-sm-grow-1 {
    flex-grow: 1;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-baseline {
    align-items: baseline;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .align-content-sm-around {
    align-content: space-around;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-self-sm-auto {
    align-self: auto;
  }
  .align-self-sm-start {
    align-self: flex-start;
  }
  .align-self-sm-end {
    align-self: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .align-self-sm-baseline {
    align-self: baseline;
  }
  .align-self-sm-stretch {
    align-self: stretch;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-last {
    order: 6;
  }
  .text-sm-start {
    text-align: left;
  }
  .text-sm-end {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
  .flex-md-fill {
    flex: 1 1 auto;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-md-grow-0 {
    flex-grow: 0;
  }
  .flex-md-grow-1 {
    flex-grow: 1;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .align-content-md-around {
    align-content: space-around;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-self-md-auto {
    align-self: auto;
  }
  .align-self-md-start {
    align-self: flex-start;
  }
  .align-self-md-end {
    align-self: flex-end;
  }
  .align-self-md-center {
    align-self: center;
  }
  .align-self-md-baseline {
    align-self: baseline;
  }
  .align-self-md-stretch {
    align-self: stretch;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-last {
    order: 6;
  }
  .text-md-start {
    text-align: left;
  }
  .text-md-end {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-grid {
    display: grid;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
  .flex-lg-fill {
    flex: 1 1 auto;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-lg-grow-0 {
    flex-grow: 0;
  }
  .flex-lg-grow-1 {
    flex-grow: 1;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .align-content-lg-around {
    align-content: space-around;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-self-lg-auto {
    align-self: auto;
  }
  .align-self-lg-start {
    align-self: flex-start;
  }
  .align-self-lg-end {
    align-self: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .align-self-lg-baseline {
    align-self: baseline;
  }
  .align-self-lg-stretch {
    align-self: stretch;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-last {
    order: 6;
  }
  .text-lg-start {
    text-align: left;
  }
  .text-lg-end {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-grid {
    display: grid;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
  .flex-xl-fill {
    flex: 1 1 auto;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xl-grow-0 {
    flex-grow: 0;
  }
  .flex-xl-grow-1 {
    flex-grow: 1;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-baseline {
    align-items: baseline;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .align-content-xl-around {
    align-content: space-around;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-self-xl-auto {
    align-self: auto;
  }
  .align-self-xl-start {
    align-self: flex-start;
  }
  .align-self-xl-end {
    align-self: flex-end;
  }
  .align-self-xl-center {
    align-self: center;
  }
  .align-self-xl-baseline {
    align-self: baseline;
  }
  .align-self-xl-stretch {
    align-self: stretch;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-last {
    order: 6;
  }
  .text-xl-start {
    text-align: left;
  }
  .text-xl-end {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
}
@media (min-width: 1600px) {
  .d-xxl-inline {
    display: inline;
  }
  .d-xxl-inline-block {
    display: inline-block;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-grid {
    display: grid;
  }
  .d-xxl-table {
    display: table;
  }
  .d-xxl-table-row {
    display: table-row;
  }
  .d-xxl-table-cell {
    display: table-cell;
  }
  .d-xxl-flex {
    display: flex;
  }
  .d-xxl-inline-flex {
    display: inline-flex;
  }
  .d-xxl-none {
    display: none;
  }
  .flex-xxl-fill {
    flex: 1 1 auto;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-baseline {
    align-items: baseline;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .align-content-xxl-around {
    align-content: space-around;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-self-xxl-auto {
    align-self: auto;
  }
  .align-self-xxl-start {
    align-self: flex-start;
  }
  .align-self-xxl-end {
    align-self: flex-end;
  }
  .align-self-xxl-center {
    align-self: center;
  }
  .align-self-xxl-baseline {
    align-self: baseline;
  }
  .align-self-xxl-stretch {
    align-self: stretch;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-last {
    order: 6;
  }
  .text-xxl-start {
    text-align: left;
  }
  .text-xxl-end {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
}
.clipped-bg-pinned {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.clipped-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  clip-path: inset(0% 5% 0% 5%);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.scrollbar-track {
  position: absolute;
  opacity: 0;
  z-index: 1;
  background: rgba(222, 222, 222, 0.75);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.5s 0.5s ease-out;
  transition: opacity 0.5s 0.5s ease-out;
}
.scrollbar-track-y {
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
}
.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.elementor-editor-active .pxl-draw-from-top img, .elementor-editor-active .pxl-draw-from-top .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.elementor-editor-active .pxl-draw-from-left img, .elementor-editor-active .pxl-draw-from-left .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.elementor-editor-active .pxl-draw-from-right img, .elementor-editor-active .pxl-draw-from-right .parallax-inner {
  clip-path: inset(0 0 0 0);
}
.elementor-editor-active .pxl-skew-in, .elementor-editor-active .pxl-skew-in-right {
  visibility: visible;
}
.elementor-editor-active .pxl-move-from-left, .elementor-editor-active .pxl-move-from-right {
  clip-path: none;
}
.elementor-editor-active .pxl-move-from-left img, .elementor-editor-active .pxl-move-from-right img {
  -webkit-transform: none;
  -khtml-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.elementor-editor-active .pxl-invisible {
  visibility: visible;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.dialog-type-lightbox {
  z-index: 99999;
}
body.admin-bar .dialog-type-lightbox {
  position: fixed;
}
.elementor-lightbox .dialog-lightbox-close-button {
  z-index: 99;
}
body {
  background-size: contain;
  background-repeat: repeat;
}
.pxl-loader {
  background: #fff;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.pxl-loader.style-1 .loading-spinner {
  margin: -45px auto 0 auto;
  width: 512px;
  height: 512px;
  top: 50%;
  transform: translateY(-50%);
  object-fit: cover;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .pxl-loader.style-1 .loading-spinner {
    width: 250px;
    height: 250px;
  }
}
.pxl-loader.style-2 {
  background-color: #0a0a0a;
}
.pxl-loader.style-2 .loading-text {
  width: 100%;
  height: 100%;
  line-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxl-loader.style-2 .loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: var(--heading-font-family);
}
.pxl-loader.style-2 .loading-text span:nth-child(1) {
  filter: blur(0px);
  animation: blur-text 1.5s 0s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(2) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.2s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(3) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.4s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(4) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.6s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(5) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.8s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(6) {
  filter: blur(0px);
  animation: blur-text 1.5s 1s infinite linear alternate;
}
.pxl-loader.style-2 .loading-text span:nth-child(7) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}
@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}
.pxl-swiper-initialized .pxl-swiper-loader {
  display: none;
}
.pxl-swiper-loader {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pxl-swiper-loader > * {
  max-width: 100%;
}
.pxl-swiper-loader .five-dots {
  display: flex;
  column-gap: 10px;
  z-index: 1;
}
.pxl-swiper-loader .five-dots .dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 100%;
  display: inline-block;
  animation: slideLoading 1s infinite;
}
@media (max-width: 1199px) {
  .pxl-swiper-loader .five-dots .dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 767px) {
  .pxl-swiper-loader .five-dots .dot {
    width: 5px;
    height: 5px;
  }
}
.swiper-filter-wrap {
  margin-bottom: 60px;
  column-gap: 40px;
  row-gap: 5px;
}
@media (max-width: 1199px) {
  .swiper-filter-wrap {
    margin-bottom: 40px;
    column-gap: 30px;
  }
}
@media (max-width: 991px) {
  .swiper-filter-wrap {
    column-gap: 30px;
  }
}
.swiper-filter-wrap .filter-item {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 1.444;
  font-weight: 500;
  color: var(--heading-color);
  cursor: pointer;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 1199px) {
  .swiper-filter-wrap .filter-item {
    font-size: 16px;
  }
}
.pxl-swiper-loader .five-dots .dot:nth-child(1) {
  animation-delay: 0.1s;
  background: #c1bfbf;
}
.pxl-swiper-loader .five-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
  background: #c1bfbfbf;
}
.pxl-swiper-loader .five-dots .dot:nth-child(3) {
  animation-delay: 0.3s;
  background: #c1bfbf8c;
}
.pxl-swiper-loader .five-dots .dot:nth-child(4) {
  animation-delay: 0.4s;
  background: #c1bfbf59;
}
.pxl-swiper-loader .five-dots .dot:nth-child(5) {
  animation-delay: 0.5s;
  background: #c1bfbf45;
}
.pxl-swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
  z-index: 0;
}
.pxl-swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: transform 0.4s linear;
  -khtml-transition: transform 0.4s linear;
  -moz-transition: transform 0.4s linear;
  -ms-transition: transform 0.4s linear;
  -o-transition: transform 0.4s linear;
  transition: transform 0.4s linear;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.pxl-swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.non-swiper-slide {
  display: none;
}
.swiper-container-multirow-column > .pxl-swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-multirow-column > .pxl-swiper-wrapper .pxl-swiper-slide {
  height: calc((100% - 40px) / 2);
}
.swiper-container-multirow-row > .pxl-swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}
.swiper-container-multirow-row > .pxl-swiper-wrapper .pxl-swiper-slide {
  height: calc((100% - 40px) / 2);
}
.swiper-container-vertical > .pxl-swiper-wrapper {
  flex-direction: column;
}
.swiper-slide img {
  display: block;
}
.swiper-container-cube .swiper-cube-shadow {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.pxl-swiper-arrows.custom {
  display: flex;
}
.pxl-swiper-arrow {
  font-size: 20px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-swiper-arrow:hover {
  color: var(--primary-color);
}
.pxl-swiper-arrow .pxl-icon {
  line-height: 1;
}
.pxl-swiper-arrow .pxl-icon span {
  display: flex;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-swiper-arrow svg {
  width: 1em;
  height: 1em;
  -webkit-transition: fill 0.3s ease;
  -khtml-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.pxl-swiper-arrow svg path {
  -webkit-transition: stroke 0.3s ease;
  -khtml-transition: stroke 0.3s ease;
  -moz-transition: stroke 0.3s ease;
  -ms-transition: stroke 0.3s ease;
  -o-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.pxl-swiper-arrow.swiper-button-disabled {
  cursor: not-allowed;
}
.pxl-swiper-arrow-prev .cmli-noun-arrow {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav-in-vertical .pxl-swiper-arrow, .nav-out-vertical .pxl-swiper-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.nav-in-vertical .pxl-swiper-arrow-prev {
  left: 30px;
}
.nav-in-vertical .pxl-swiper-arrow-next {
  right: 30px;
}
.nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-prev {
  opacity: 0;
  -webkit-transform: translate(50px, -50%);
  -khtml-transform: translate(50px, -50%);
  -moz-transform: translate(50px, -50%);
  -ms-transform: translate(50px, -50%);
  -o-transform: translate(50px, -50%);
  transform: translate(50px, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-next {
  opacity: 0;
  -webkit-transform: translate(-50px, -50%);
  -khtml-transform: translate(-50px, -50%);
  -moz-transform: translate(-50px, -50%);
  -ms-transform: translate(-50px, -50%);
  -o-transform: translate(-50px, -50%);
  transform: translate(-50px, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.nav-out-vertical .pxl-swiper-arrow-prev {
  left: -23px;
}
@media (max-width: 1199px) {
  .nav-out-vertical .pxl-swiper-arrow-prev {
    left: 15px;
    opacity: 0;
    -webkit-transform: translate(-50px, -50%);
    -khtml-transform: translate(-50px, -50%);
    -moz-transform: translate(-50px, -50%);
    -ms-transform: translate(-50px, -50%);
    -o-transform: translate(-50px, -50%);
    transform: translate(-50px, -50%);
    -webkit-transition: all 0.3s linear 0s;
    -khtml-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
  }
}
.nav-out-vertical .pxl-swiper-arrow-next {
  right: -23px;
}
@media (max-width: 1199px) {
  .nav-out-vertical .pxl-swiper-arrow-next {
    right: 15px;
    opacity: 0;
    -webkit-transform: translate(50px, -50%);
    -khtml-transform: translate(50px, -50%);
    -moz-transform: translate(50px, -50%);
    -ms-transform: translate(50px, -50%);
    -o-transform: translate(50px, -50%);
    transform: translate(50px, -50%);
    -webkit-transition: all 0.3s linear 0s;
    -khtml-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
  }
}
.nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-prev {
  opacity: 0;
  -webkit-transform: translate(50px, -50%);
  -khtml-transform: translate(50px, -50%);
  -moz-transform: translate(50px, -50%);
  -ms-transform: translate(50px, -50%);
  -o-transform: translate(50px, -50%);
  transform: translate(50px, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-next {
  opacity: 0;
  -webkit-transform: translate(-50px, -50%);
  -khtml-transform: translate(-50px, -50%);
  -moz-transform: translate(-50px, -50%);
  -ms-transform: translate(-50px, -50%);
  -o-transform: translate(-50px, -50%);
  transform: translate(-50px, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 1199px) {
  .pxl-swiper-slider:hover .nav-in-vertical .pxl-swiper-arrow-prev, .pxl-swiper-slider:hover .nav-in-vertical .pxl-swiper-arrow-next, .pxl-swiper-slider:hover .nav-out-vertical .pxl-swiper-arrow-prev, .pxl-swiper-slider:hover .nav-out-vertical .pxl-swiper-arrow-next, .pxl-swiper-slider:focus .nav-in-vertical .pxl-swiper-arrow-prev, .pxl-swiper-slider:focus .nav-in-vertical .pxl-swiper-arrow-next, .pxl-swiper-slider:focus .nav-out-vertical .pxl-swiper-arrow-prev, .pxl-swiper-slider:focus .nav-out-vertical .pxl-swiper-arrow-next {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.pxl-swiper-slider:hover .nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-prev, .pxl-swiper-slider:hover .nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-next, .pxl-swiper-slider:hover .nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-prev, .pxl-swiper-slider:hover .nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-next, .pxl-swiper-slider:focus .nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-prev, .pxl-swiper-slider:focus .nav-in-vertical.arrow-on-hover .pxl-swiper-arrow-next, .pxl-swiper-slider:focus .nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-prev, .pxl-swiper-slider:focus .nav-out-vertical.arrow-on-hover .pxl-swiper-arrow-next {
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-prev {
  height: 100%;
  background-color: transparent;
  cursor: none;
}
@media (min-width: 1200px) {
  .enable-cursor .pxl-swiper-arrow.cursor-arrow-prev {
    width: calc((100vw - 1170px)/2) !important;
    left: calc((100vw - 1170px)/-2) !important;
  }
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-prev:before {
  display: none;
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-prev span {
  display: none;
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-prev.swiper-button-disabled {
  cursor: not-allowed;
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-next {
  right: 0;
  width: 104px;
  height: 120%;
  background-color: transparent;
  cursor: none;
}
@media (min-width: 1200px) {
  .enable-cursor .pxl-swiper-arrow.cursor-arrow-next {
    width: calc((100vw - 1170px)/2) !important;
    right: calc((100vw - 1170px)/-2) !important;
  }
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-next:before {
  display: none;
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-next span {
  display: none;
}
.enable-cursor .pxl-swiper-arrow.cursor-arrow-next.swiper-button-disabled {
  cursor: not-allowed;
}
.pxl-swiper-dots.style-bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  column-gap: 8px;
  row-gap: 8px;
}
.pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet {
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  line-height: 4px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background-color: rgba(20, 31, 87, 0.18);
  -webkit-transition: all 0.25s linear;
  -khtml-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:hover, .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.pxl-swiper-dots.swiper-pagination-vertical {
  flex-direction: column;
}
.pxl-swiper-dots.swiper-pagination-vertical .pxl-swiper-pagination-bullet:hover, .pxl-swiper-dots.swiper-pagination-vertical .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  flex: 0 0 40px;
  width: 4px;
  height: 40px;
  line-height: 40px;
}
.pxl-swiper-dots.swiper-pagination-horizontal .pxl-swiper-pagination-bullet:hover, .pxl-swiper-dots.swiper-pagination-horizontal .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  flex: 0 0 40px;
  width: 40px;
  height: 4px;
  line-height: 40px;
}
.pxl-swiper-dots.style-bullets-number {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
}
.pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-number {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #525252;
}
.pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets .pxl-swiper-pagination-bullet {
  flex: 0 0 111.5px;
  width: 111.5px;
  height: 2px;
  line-height: 111.5px;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.25s linear;
  -khtml-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
@media (max-width: 991px) {
  .pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets .pxl-swiper-pagination-bullet {
    flex: 0 0 80px;
    width: 80px;
    line-height: 80px;
  }
}
@media (max-width: 575px) {
  .pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets .pxl-swiper-pagination-bullet {
    flex: 0 0 40px;
    width: 40px;
    line-height: 40px;
  }
}
.pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets .pxl-swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  background-color: #000;
}
.pxl-swiper-dots.style-bullets-number .swiper-pagination-custom-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: bullet-progress 350ms ease forwards;
}
.pxl-swiper-dots-color-mode-white .pxl-swiper-dots.style-bullets-number .pxl-swiper-pagination-bullet:after {
  background-color: #bababa;
}
.pxl-swiper-dots-color-mode-white .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:before {
  background-color: #bababa;
}
.pxl-swiper-dots-color-mode-white .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:after {
  background-color: #fff;
}
.pxl-swiper-dots-color-mode-white .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:hover, .pxl-swiper-dots-color-mode-white .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  -khtml-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  -ms-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  -o-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
}
.pxl-swiper-dots-color-mode-white-primary .pxl-swiper-dots.style-bullets-number .pxl-swiper-pagination-bullet:after {
  background-color: #bababa;
}
.pxl-swiper-dots-color-mode-white-primary .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:before {
  background-color: #bababa;
}
.pxl-swiper-dots-color-mode-white-primary .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:after {
  background-color: var(--primary-color);
}
.pxl-swiper-dots-color-mode-white-primary .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet:hover, .pxl-swiper-dots-color-mode-white-primary .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
  -khtml-box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
  -moz-box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
  -ms-box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
  -o-box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
  box-shadow: 0px 0px 0px 1px rgba(var(--primary-color-rgb), 0.4);
}
.pxl-swiper-pagination-progressbar {
  background: #fff;
  width: 100%;
  max-width: 544px;
  height: 4px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -khtml-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -80px;
}
@media (max-width: 1199px) {
  .pxl-swiper-pagination-progressbar {
    bottom: -50px;
  }
}
.pxl-swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input[type="search"]::-webkit-input-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: italic;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input[type="search"]:-moz-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: italic;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input[type="search"]::-moz-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: italic;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input[type="search"]:-ms-input-placeholder {
  color: #666666;
  font-size: 14px;
  font-style: italic;
  font-weight: normal;
  opacity: 1;
  text-overflow: ellipsis;
}
input:-internal-autofill-selected {
  background-color: white !important;
  background-image: none !important;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  opacity: 0;
  height: 30px;
  margin-top: 15px;
  cursor: pointer;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.pxl-input-number-spin {
  width: 19px;
  height: 25px;
  background: #fff;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: absolute;
  top: 12px;
  right: 20px;
}
[dir="rtl"] .pxl-input-number-spin {
  left: 20px;
  right: auto;
}
.pxl-input-number-spin-inner {
  cursor: pointer;
  width: 19px;
  height: 12.5px;
  position: relative;
  display: block;
}
.pxl-input-number-spin-inner:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  border-style: solid;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pxl-input-number-spin-inner.pxl-input-number-spin-up:before {
  border-width: 0 3.5px 4px 3.5px;
  border-color: transparent transparent var(--primary-color) transparent;
}
.pxl-input-number-spin-inner.pxl-input-number-spin-down:before {
  border-width: 4px 3.5px 0 3.5px;
  border-color: var(--primary-color) transparent transparent transparent;
}
input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  text-align: start;
  padding: 0;
  margin: 0;
}
input::-webkit-datetime-edit {
  text-align: start;
  width: 100%;
}
input[type="search" i]::-webkit-search-cancel-button {
  opacity: 0;
  display: none;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .select2-container.select2-container--default .select2-selection--single {
  background-color: #171717;
  border: 0 solid #e0e0e0;
  color: #fafafa;
  padding: 8px 16px;
  line-height: 1.5;
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  text-align: start;
  outline: none;
  border-radius: 0;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .select2-container.select2-container--default .select2-selection--single {
    height: 50px;
  }
}
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="url"]::placeholder, input[type="password"]::placeholder, input[type="search"]::placeholder, input[type="tel"]::placeholder, input[type="number"]::placeholder, input[type="range"]::placeholder, input[type="date"]::placeholder, input[type="month"]::placeholder, input[type="week"]::placeholder, input[type="time"]::placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::placeholder, input[type="color"]::placeholder, textarea::placeholder, select::placeholder, .select2-container.select2-container--default .select2-selection--single::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #737373;
  transition: all 350ms ease;
}
input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active, input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active, input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active, input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active, input[type="search"]:hover, input[type="search"]:focus, input[type="search"]:active, input[type="tel"]:hover, input[type="tel"]:focus, input[type="tel"]:active, input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:active, input[type="range"]:hover, input[type="range"]:focus, input[type="range"]:active, input[type="date"]:hover, input[type="date"]:focus, input[type="date"]:active, input[type="month"]:hover, input[type="month"]:focus, input[type="month"]:active, input[type="week"]:hover, input[type="week"]:focus, input[type="week"]:active, input[type="time"]:hover, input[type="time"]:focus, input[type="time"]:active, input[type="datetime"]:hover, input[type="datetime"]:focus, input[type="datetime"]:active, input[type="datetime-local"]:hover, input[type="datetime-local"]:focus, input[type="datetime-local"]:active, input[type="color"]:hover, input[type="color"]:focus, input[type="color"]:active, textarea:hover, textarea:focus, textarea:active, select:hover, select:focus, select:active, .select2-container.select2-container--default .select2-selection--single:hover, .select2-container.select2-container--default .select2-selection--single:focus, .select2-container.select2-container--default .select2-selection--single:active {
  background-color: #171717;
  border-color: #fafafa;
  color: #fafafa;
}
input[type="text"]:hover::placeholder, input[type="text"]:focus::placeholder, input[type="text"]:active::placeholder, input[type="email"]:hover::placeholder, input[type="email"]:focus::placeholder, input[type="email"]:active::placeholder, input[type="url"]:hover::placeholder, input[type="url"]:focus::placeholder, input[type="url"]:active::placeholder, input[type="password"]:hover::placeholder, input[type="password"]:focus::placeholder, input[type="password"]:active::placeholder, input[type="search"]:hover::placeholder, input[type="search"]:focus::placeholder, input[type="search"]:active::placeholder, input[type="tel"]:hover::placeholder, input[type="tel"]:focus::placeholder, input[type="tel"]:active::placeholder, input[type="number"]:hover::placeholder, input[type="number"]:focus::placeholder, input[type="number"]:active::placeholder, input[type="range"]:hover::placeholder, input[type="range"]:focus::placeholder, input[type="range"]:active::placeholder, input[type="date"]:hover::placeholder, input[type="date"]:focus::placeholder, input[type="date"]:active::placeholder, input[type="month"]:hover::placeholder, input[type="month"]:focus::placeholder, input[type="month"]:active::placeholder, input[type="week"]:hover::placeholder, input[type="week"]:focus::placeholder, input[type="week"]:active::placeholder, input[type="time"]:hover::placeholder, input[type="time"]:focus::placeholder, input[type="time"]:active::placeholder, input[type="datetime"]:hover::placeholder, input[type="datetime"]:focus::placeholder, input[type="datetime"]:active::placeholder, input[type="datetime-local"]:hover::placeholder, input[type="datetime-local"]:focus::placeholder, input[type="datetime-local"]:active::placeholder, input[type="color"]:hover::placeholder, input[type="color"]:focus::placeholder, input[type="color"]:active::placeholder, textarea:hover::placeholder, textarea:focus::placeholder, textarea:active::placeholder, select:hover::placeholder, select:focus::placeholder, select:active::placeholder, .select2-container.select2-container--default .select2-selection--single:hover::placeholder, .select2-container.select2-container--default .select2-selection--single:focus::placeholder, .select2-container.select2-container--default .select2-selection--single:active::placeholder {
  color: #fafafa;
}
[dir="rtl"] input[type="text"], [dir="rtl"] input[type="email"], [dir="rtl"] input[type="url"], [dir="rtl"] input[type="password"], [dir="rtl"] input[type="search"], [dir="rtl"] input[type="tel"], [dir="rtl"] input[type="number"], [dir="rtl"] input[type="range"], [dir="rtl"] input[type="date"], [dir="rtl"] input[type="month"], [dir="rtl"] input[type="week"], [dir="rtl"] input[type="time"], [dir="rtl"] input[type="datetime"], [dir="rtl"] input[type="datetime-local"], [dir="rtl"] input[type="color"], [dir="rtl"] textarea, [dir="rtl"] select, [dir="rtl"] .select2-container.select2-container--default .select2-selection--single {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="date"] {
  width: 100%;
}
select {
  width: 100%;
  height: 56px;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/select-arrow.png);
  background-position: calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  padding-right: 30px;
}
[dir="rtl"] select {
  background-position: 10px 50%;
  padding-right: 22px;
  padding-left: 30px;
}
textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 110px;
  min-height: 110px;
  resize: none;
}
input, select, textarea {
  vertical-align: top;
  position: relative;
}
.pxl-select form {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.pxl-select select {
  height: 56px;
  line-height: 37px;
  font-size: 15px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.pxl-select i {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.pxl-custom-checkbox, .pxl-custom-radio {
  position: relative;
  margin-right: 5px;
  width: 17px;
  height: 17px;
  display: inline-block;
}
[dir="rtl"] .pxl-custom-checkbox, [dir="rtl"] .pxl-custom-radio {
  margin-right: 0;
  margin-left: 5px;
}
.pxl-custom-checkbox input[type="checkbox"], .pxl-custom-checkbox .pxl-checkmark, .pxl-custom-radio input[type="checkbox"], .pxl-custom-radio .pxl-checkmark {
  width: 17px;
  height: 17px;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pxl-custom-checkbox input, .pxl-custom-radio input {
  opacity: 0;
}
.pxl-custom-checkbox input:checked + .pxl-checkmark:after, .pxl-custom-radio input:checked + .pxl-checkmark:after {
  opacity: 1;
}
.pxl-custom-checkbox .pxl-checkmark, .pxl-custom-radio .pxl-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid rgba(25, 27, 29, 0.1);
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.pxl-custom-checkbox .pxl-checkmark:after, .pxl-custom-radio .pxl-checkmark:after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  opacity: 0;
}
.pxl-custom-checkbox + label, .pxl-custom-radio + label {
  display: inline-block;
}
.pxl-custom-radio input:checked + .pxl-checkmark {
  border-color: var(--primary-color);
}
.pxl-custom-radio input:checked + .pxl-checkmark:after {
  background-color: var(--primary-color);
}
.pxl-custom-radio .pxl-checkmark {
  margin-top: 3px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.pxl-custom-radio .pxl-checkmark:after {
  background-color: rgba(25, 27, 29, 0.1);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
}
.pxl-custom-checkbox {
  -webkit-transform: translate(0, 3px);
  -khtml-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  -ms-transform: translate(0, 3px);
  -o-transform: translate(0, 3px);
  transform: translate(0, 3px);
}
.ui-timepicker-container ul {
  list-style: none;
}
.ui-timepicker-container .ui-menu-item {
  font-size: 13px;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #faab04 !important;
}
.wpcf7-form label {
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.wpcf7-form label + br {
  display: none;
}
.wpcf7-form .control-item {
  margin-bottom: 15px;
}
.wpcf7-form .wpcf7-textarea {
  height: 194px;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-textarea {
    height: 150px;
  }
}
.wpcf7-form button[type="submit"] {
  min-width: 193px;
}
.wpcf7-form button[type="submit"] .pxli-spinner {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form.submitting button[type="submit"] .pxli-spinner {
  display: none;
}
.wpcf7-form.submitting button[type="submit"] .pxl-icon:before {
  color: #fff;
  content: "";
  -webkit-animation: pxl-spin 2s linear infinite;
  -khtml-animation: pxl-spin 2s linear infinite;
  -moz-animation: pxl-spin 2s linear infinite;
  -ms-animation: pxl-spin 2s linear infinite;
  -o-animation: pxl-spin 2s linear infinite;
  animation: pxl-spin 2s linear infinite;
}
.contact-form-main .message {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .contact-form-main .form-check {
    margin-bottom: 10px;
  }
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  position: absolute;
  color: red;
  padding: 0;
  margin: 0;
  border: 0;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #398f14;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #f13c3c;
}
.contact-form-main + .wpcf7-response-output {
  bottom: -30px;
}
.wpcf7 .form-check {
  display: block;
}
.pxl-search-form-popup {
  max-width: 750px;
  margin: 0 auto;
}
.pxl-search-popup-inner .cat-search-wrap {
  flex: 0 0 173px;
  width: 173px;
  max-width: 173px;
}
.pxl-search-popup-inner .text-search-wrap {
  position: relative;
}
.pxl-search-popup-inner .text-search-wrap .search-field {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  padding-left: 0;
  padding-right: 48px;
  border: 0;
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid #fff;
}
.pxl-search-popup-inner .text-search-wrap .search-field:hover, .pxl-search-popup-inner .text-search-wrap .search-field:focus, .pxl-search-popup-inner .text-search-wrap .search-field:active {
  border-color: var(--primary-color) !important;
  background-color: transparent;
}
.pxl-search-popup-inner .text-search-wrap input::-webkit-input-placeholder {
  color: #fff;
}
.pxl-search-popup-inner .text-search-wrap .search-submit {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  background: transparent;
  border: 0;
  font-size: 20px;
  color: #fff;
}
.pxl-search-popup-inner .text-search-wrap .search-submit:hover {
  color: var(--primary-color);
}
.pxl-search-popup-inner .text-search-wrap .pxl-svg {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
}
.pxl-search-popup-inner .text-search-wrap .search-submit:hover .pxl-svg path {
  fill: var(--primary-color);
}
#pxl-search-popup-normal .pxl-search-popup-inner .text-search-wrap .search-submit {
  right: 0;
}
#ui-datepicker-div {
  position: absolute;
  top: -9999px;
  z-index: 10001 !important;
}
.ui-datepicker-header {
  position: relative;
}
.ui-datepicker-header .ui-corner-all {
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transform: translateY(-50%);
}
.ui-datepicker-header .ui-corner-all:before {
  content: "";
  font-family: "pxli";
  position: absolute;
  top: 50%;
  font-size: 20px;
  line-height: 1;
  margin-top: -10px;
}
.ui-datepicker-header .ui-corner-all span {
  display: none;
}
.ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
  left: 35px;
}
@media (max-width: 1199px) {
  .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
    left: 30px;
  }
}
@media (max-width: 575px) {
  .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
    left: 20px;
  }
}
.ui-datepicker-header .ui-corner-all.ui-datepicker-prev:before {
  left: 0;
}
.ui-datepicker-header .ui-corner-all.ui-datepicker-next {
  right: 35px;
}
@media (max-width: 1199px) {
  .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
    right: 20px;
  }
}
.ui-datepicker-header .ui-corner-all.ui-datepicker-next:before {
  right: 0;
  content: "";
}
.ui-datepicker-header .ui-state-disabled {
  color: #b7b7b7;
}
.ui-datepicker-calendar {
  margin: 0;
  width: 100%;
}
.ui-datepicker-calendar th {
  text-align: center;
}
.ui-datepicker-calendar td {
  text-align: center;
}
.ui-datepicker-calendar td.ui-state-disabled {
  color: #b7b7b7;
}
.ui-datepicker {
  background-color: #fff;
  border: 1px solid rgba(200, 200, 200, 0.6);
}
@media (min-width: 576px) {
  .ui-datepicker .ui-datepicker-group {
    flex: 0 0 50%;
    width: 50%;
    display: inline-block;
  }
  .ui-datepicker .ui-datepicker-group + .ui-datepicker-group {
    border-left: 1px solid rgba(200, 200, 200, 0.6);
  }
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  background-color: #f2f3f3;
  width: 100%;
  padding: 20px 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ui-datepicker .ui-datepicker-header > * {
  max-width: 100%;
}
@media (max-width: 1199px) {
  .ui-datepicker .ui-datepicker-header {
    padding: 20px 30px;
  }
}
@media (max-width: 575px) {
  .ui-datepicker .ui-datepicker-header {
    padding: 15px 20px;
  }
}
.ui-datepicker .ui-datepicker-header .ui-corner-all {
  color: #111;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ui-datepicker .ui-datepicker-header .ui-corner-all:hover {
  color: var(--second-color);
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--heading-color);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
    font-size: 16px;
  }
}
.ui-datepicker .ui-datepicker-calendar {
  padding: 10px 20px 20px 20px;
  border: 0;
}
@media (max-width: 1199px) {
  .ui-datepicker .ui-datepicker-calendar {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .ui-datepicker .ui-datepicker-calendar {
    padding: 20px 10px;
  }
}
.ui-datepicker .ui-datepicker-calendar th {
  border: 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  color: #111111;
}
@media (max-width: 767px) {
  .ui-datepicker .ui-datepicker-calendar th {
    font-size: 16px;
  }
}
.ui-datepicker .ui-datepicker-calendar td {
  padding: 4px;
  border: 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  .ui-datepicker .ui-datepicker-calendar td {
    font-size: 14px;
  }
}
.ui-datepicker .ui-datepicker-calendar td > span, .ui-datepicker .ui-datepicker-calendar td > a {
  width: 34px;
  height: 34px;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .ui-datepicker .ui-datepicker-calendar td > span, .ui-datepicker .ui-datepicker-calendar td > a {
    width: 32px;
    height: 32px;
  }
}
.ui-datepicker .ui-datepicker-calendar td > span {
  border: 1px solid #b7b7b7;
  color: #b7b7b7;
}
.ui-datepicker .ui-datepicker-calendar td > a {
  border: 1px solid #111111;
}
.ui-datepicker .ui-datepicker-calendar td > a.ui-state-highlight {
  color: #fff;
}
.ui-datepicker .ui-datepicker-calendar td > a.ui-state-active, .ui-datepicker .ui-datepicker-calendar td > a:hover {
  color: #fff;
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.ui-datepicker .ui-datepicker-calendar td.unavailable > a {
  color: #fff;
  background-color: #b95c47;
  border-color: #b95c47;
}
.ui-datepicker .ui-datepicker-calendar td.unavailable > a.ui-state-highlight {
  color: #fff;
  background-color: #b95c47;
  border-color: #b95c47;
}
.ui-datepicker .ui-datepicker-calendar td.unavailable > a.ui-state-active, .ui-datepicker .ui-datepicker-calendar td.unavailable > a:hover {
  color: #fff;
  background-color: #b95c47;
  border-color: #b95c47;
}
.nice-select {
  border: 0 solid #e0e0e0;
  border-radius: 0;
  padding: 0 16px 0 16px;
  height: 56px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  background-color: #171717;
  color: var(--heading-color);
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  -khtml-transition: border-color 0.3s ease, background-color 0.3s ease;
  -moz-transition: border-color 0.3s ease, background-color 0.3s ease;
  -ms-transition: border-color 0.3s ease, background-color 0.3s ease;
  -o-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 767px) {
  .nice-select {
    height: 50px;
  }
}
.nice-select:hover, .nice-select:focus, .nice-select:active {
  background-color: #171717;
  border-color: #fafafa;
}
.nice-select:after {
  position: absolute;
  font-size: 14px;
  line-height: 1;
  margin-top: 1px;
  font-style: normal;
  font-family: "pxli";
  content: "";
  right: 16px;
  top: 50%;
  color: #FAFAFA;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.nice-select span.current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 56px;
  color: #666666;
}
@media (max-width: 767px) {
  .nice-select span.current {
    line-height: 50px;
  }
}
.nice-select .option {
  text-overflow: ellipsis;
  overflow: hidden;
}
.nice-select .list {
  max-height: 330px;
  overflow: auto;
  background-color: #fff;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  margin-top: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 15px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 9;
  color: inherit;
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -khtml-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.nice-select .list .selected {
  color: #222;
}
.nice-select .list .option {
  font-size: 16px;
  padding: 8px 16px 8px 24px;
  cursor: pointer;
  line-height: normal;
  list-style: none;
  outline: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -khtml-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  transition: all 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.nice-select .list .option.selected {
  font-weight: 500;
}
.nice-select .list .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.nice-select .list .option:hover, .nice-select .list .option:focus {
  color: var(--third-color);
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select.open, .nice-select.open2 {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  background-color: #171717;
  border-color: #fafafa;
}
.nice-select.open .list, .nice-select.open .list.open, .nice-select.open2 .list, .nice-select.open2 .list.open {
  margin-top: -1px;
  border-color: var(--heading-color);
  border-top-color: rgba(25, 27, 29, 0.1);
  min-width: 100%;
  overflow: auto;
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -khtml-animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  animation: pxlFadeInDown 0.2s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
.form-check {
  padding-top: 7px;
  display: flex;
}
.form-check .form-check-input {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background: var(--second-color);
  border: none;
  cursor: pointer;
  margin-top: 3px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  position: relative;
  text-align: center;
  line-height: 1;
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: left;
}
.form-check .form-check-input:after {
  content: "";
  font-family: "pxli";
  font-size: 10px;
  color: var(--heading-color);
  opacity: 0;
}
.form-check .form-check-input:checked[type=checkbox]:after {
  opacity: 1;
}
.form-check .form-check-label {
  cursor: pointer;
  color: var(--heading-color);
  text-transform: inherit;
  flex: 1;
}
.bordered.form-check-input {
  border: 1px solid #e4e4e4;
  background-color: transparent;
  transition: all 400ms ease-in-out 0s;
}
.bordered.form-check-input[type=checkbox] {
  border-radius: 0;
}
.label-for-checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.label-for-checkbox input[type="checkbox"] {
  border: 1px solid rgba(25, 27, 29, 0.1);
  border-radius: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  transition: all 400ms ease-in-out 0s;
  background-position: center;
}
.label-for-checkbox input[type="checkbox"]:checked {
  border-color: var(--second-color);
  background-color: var(--second-color);
  color: #fff;
  background-image: url("../images/checked.png");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.pxl-mailchimp .mc4wp-form {
  position: relative;
}
.pxl-mailchimp .mc4wp-form p {
  margin-bottom: 0;
}
.pxl-mailchimp .mail-form1 {
  position: relative;
}
.pxl-mailchimp .mail-form1 input {
  border-radius: 8px;
  padding: 8px 55px 8px 16px;
  height: 56px;
  background-color: #171717;
  color: #fafafa;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .pxl-mailchimp .mail-form1 input {
    height: 50px;
    padding: 4px 55px 4px 16px;
  }
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  padding: 0;
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button span {
  display: none;
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
@media (max-width: 575px) {
  .pxl-mailchimp.style-1 .mail-form1 .btn-button {
    right: 5px;
  }
  .pxl-mailchimp.style-1 .mail-form1 .btn-button svg {
    width: 20px;
    height: 20px;
  }
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.35s ease 0s;
  transform: translate(-50%, -50%);
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button > *:first-child {
  opacity: 1;
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button > *:last-child {
  opacity: 0;
  transform: translate(-200%, -50%);
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button:hover {
  background-color: var(--primary-color);
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button:hover > * {
  transform: translate(100%, -50%);
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button:hover > *:first-child {
  opacity: 0;
}
.pxl-mailchimp.style-1 .mail-form1 .btn-button:hover > *:last-child {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.pxl-mailchimp .mc4wp-response {
  margin-top: 10px;
  color: #fff;
}
.pxl-mailchimp .mc4wp-response a {
  color: inherit;
}
.pxl-mailchimp .mc4wp-response:empty {
  display: none;
}
.pxl-mailchimp.style-2 .mail-form1 .btn-button {
  position: absolute;
  width: auto;
  height: 40px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  padding: 0 24px;
}
.pxl-mailchimp.style-2 .mail-form1 .btn-button span {
  display: block;
}
.pxl-mailchimp.style-2 .mail-form1 .btn-button svg {
  display: none;
}
.pxl-mailchimp.style-2 .mail-form1 .btn-button:hover {
  background-color: var(--primary-color);
}
.pxl-mailchimp.style-2 .mail-form1 .btn-button:hover span {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
@media (max-width: 575px) {
  .pxl-mailchimp.style-2 .mail-form1 .btn-button {
    padding: 0 10px;
    font-size: 14px;
  }
}
.pxl-mailchimp.style-3 label {
  margin-bottom: 0;
}
.pxl-mailchimp.style-3 input {
  --linear-1: rgba(229, 229, 235, 0.00);
  --linear-2: rgba(229, 229, 235, 0.08);
  --linear-3: #FBFBFC;
  border-radius: 0;
  background: linear-gradient(180deg, var(--linear-1) 0%, var(--linear-2) 100%), var(--linear-3);
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
  color: #0F1217;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: -0.14px;
}
.pxl-mailchimp.style-3 input::placeholder {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: -0.14px;
  color: #68758C;
}
.pxl-mailchimp.style-3 .btn-button {
  --primary-Color: #2458F6;
  padding: 8px 16px;
  color: #FFF;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: -0.14px;
  border-radius: 0;
  background-color: #0945DC;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 92% 100%, 0 100%);
}
.pxl-mailchimp.style-3 .btn-button::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--primary-Color);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 92% 100%, 0 100%);
  box-shadow: 0px 1px 2px rgba(20, 31, 87, 0.4), 0px 0px 0px rgba(9, 69, 220, 0.76);
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
}
.pxl-mailchimp.style-3 .btn-button span {
  position: relative;
  display: block;
  z-index: 1;
}
.pxl-mailchimp.style-3 .btn-button svg {
  display: none;
}
.pxl-mailchimp.style-3 .btn-button:hover span {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
.pxl-mailchimp.style-3 .mail-form1 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pxl-mailchimp.style-3 .mail-form1 p {
  flex-grow: 1;
}
.pxl-cf7-wrap .contact-info {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-cf7-wrap .contact-info {
    flex-direction: column;
    gap: 0;
  }
}
.pxl-cf7-wrap p {
  margin-bottom: 0;
}
.pxl-cf7-wrap label {
  margin-bottom: 8px;
  margin-left: 26px;
}
@media (max-width: 575px) {
  .pxl-cf7-wrap label {
    margin-left: 0;
  }
}
.pxl-cf7-wrap .wpcf7-form button[type="submit"] {
  min-width: 152px;
}
.pxl-cf7-wrap .row.gx-40 {
  margin-left: -20px;
  margin-right: -20px;
}
.pxl-cf7-wrap .row.gx-40 > * {
  padding-left: 20px;
  padding-right: 20px;
}
.pxl-cf7-wrap .row.gx-16 {
  margin-left: -8px;
  margin-right: -8px;
}
.pxl-cf7-wrap .row.gx-16 > * {
  padding-left: 8px;
  padding-right: 8px;
}
.pxl-cf7-wrap .row.gx-20 {
  margin-left: -10px;
  margin-right: -10px;
}
.pxl-cf7-wrap .row.gx-20 > * {
  padding-left: 10px;
  padding-right: 10px;
}
.form-request > * + * {
  margin-top: 16px;
}
.form-request .col-12.col-lg-6.col-md-6 p, .form-request .form-choose p {
  display: flex;
  align-items: center;
  background-color: #171717;
  border-radius: 8px;
}
.form-request input, .form-request .nice-select {
  border-radius: 0 8px 8px 0;
}
.form-request .nice-select {
  width: 100%;
  color: #0A0A0A;
}
@media (max-width: 1399px) {
  .form-request .nice-select .current {
    width: 146px;
  }
}
@media (max-width: 575px) {
  .form-request .nice-select::after {
    font-size: 12px;
    right: 10px;
  }
}
.form-request .wpcf7-form-control-wrap {
  width: 100%;
}
.form-request label {
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid #404040;
  min-width: max-content;
}
@media (max-width: 575px) {
  .form-request label {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.form-request .btn-full {
  width: 100%;
  margin-top: 24px;
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.25);
}
.form-request .btn-full:hover, .form-request .btn-full:focus, .form-request .btn-full:active {
  background-color: var(--primary-color);
}
.form-request .btn-full:hover span, .form-request .btn-full:focus span, .form-request .btn-full:active span {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
@media (max-width: 575px) {
  .form-request .btn-full {
    margin-top: 14px;
  }
}
.form-request .row.gx-16 {
  row-gap: 16px;
}
@media (max-width: 575px) {
  .form-request .row.gx-16 {
    row-gap: 15px;
  }
}
.form-support > * + * {
  margin-top: 16px;
}
.form-support .col-12.col-lg-6.col-md-6 p {
  display: flex;
  align-items: center;
  background-color: #171717;
  border-radius: 8px;
}
.form-support .col-12.col-lg-6.col-md-6 label {
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid #404040;
  min-width: max-content;
}
@media (max-width: 575px) {
  .form-support .col-12.col-lg-6.col-md-6 label {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.form-support input {
  border-radius: 0 8px 8px 0;
}
.form-support .wpcf7-form-control-wrap {
  width: 100%;
}
.form-support .form-mess {
  position: relative;
}
.form-support .form-mess label {
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  position: absolute;
  left: 20px;
  top: 16px;
  z-index: 1;
}
@media (max-width: 575px) {
  .form-support .form-mess label {
    font-size: 14px;
  }
}
.form-support .wpcf7-textarea {
  height: 200px;
  padding-top: 63px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .form-support .wpcf7-textarea {
    height: 175px;
    padding-top: 50px;
  }
}
.form-support .btn-full {
  width: 100%;
  margin-top: 24px;
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.25);
}
.form-support .btn-full:hover, .form-support .btn-full:focus, .form-support .btn-full:active {
  background-color: var(--primary-color);
}
.form-support .btn-full:hover span, .form-support .btn-full:focus span, .form-support .btn-full:active span {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
@media (max-width: 575px) {
  .form-support .btn-full {
    margin-top: 14px;
  }
}
.form-support .row.gx-16 {
  row-gap: 16px;
}
@media (max-width: 575px) {
  .form-support .row.gx-16 {
    row-gap: 15px;
  }
}
.form-career > * + * {
  margin-top: 16px;
}
.form-career .item-content p {
  display: flex;
  align-items: center;
  background-color: #171717;
  border-radius: 8px;
}
.form-career .item-content label {
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid #404040;
  min-width: max-content;
}
@media (max-width: 575px) {
  .form-career .item-content label {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.form-career input {
  border-radius: 0 8px 8px 0;
}
.form-career .box-file {
  margin: 24px 0 0 0;
  display: flex;
  cursor: pointer;
}
.form-career .box-file .wpcf7-form-control-wrap {
  display: none;
}
.form-career .box-file .item-text {
  color: #D4D4D4;
  font-weight: 500;
  margin-left: 12px;
}
.form-career .box-file svg {
  width: 24px;
  height: 24px;
  fill: #FAFAFA;
}
.form-career .btn-full {
  width: 100%;
  margin-top: 24px;
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.25);
}
.form-career .btn-full:hover, .form-career .btn-full:focus, .form-career .btn-full:active {
  background-color: var(--primary-color);
}
.form-career .btn-full:hover span, .form-career .btn-full:focus span, .form-career .btn-full:active span {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
@media (max-width: 575px) {
  .form-career .btn-full {
    margin-top: 14px;
  }
}
.form-shipment > * + * {
  margin-top: 16px;
}
.form-shipment .col-lg-5, .form-shipment .col-md-5 {
  width: 40.3%;
}
.form-shipment .col-lg-2, .form-shipment .col-md-2 {
  width: 19.4%;
}
.form-shipment .col-12.col-lg-5.col-md-5 p {
  display: flex;
  align-items: center;
  background-color: #EEE;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 350ms ease;
}
.form-shipment .col-12.col-lg-5.col-md-5 label {
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid #D4D4D4;
  min-width: max-content;
}
@media (max-width: 575px) {
  .form-shipment .col-12.col-lg-5.col-md-5 label {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.form-shipment input {
  border-radius: 0 8px 8px 0;
}
.form-shipment .wpcf7-form-control-wrap {
  width: 100%;
}
.form-shipment .row.gx-16 {
  row-gap: 16px;
}
@media (max-width: 575px) {
  .form-shipment .row.gx-16 {
    row-gap: 15px;
  }
}
.form-shipment .box-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.form-shipment .btn-primary {
  width: 100%;
  height: 56px;
}
@media (max-width: 575px) {
  .form-shipment .btn-primary {
    height: 50px;
  }
}
@media (max-width: 991px) {
  .form-shipment .col-12 {
    width: 100%;
  }
}
.form-request-quote .gx-16 {
  row-gap: 16px;
}
.form-request-quote label {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 16px;
}
.form-request-quote .nice-select span.current {
  line-height: normal;
  color: #68758C;
}
.form-request-quote .nice-select::after {
  content: "";
  right: 0px;
  width: 16px;
  height: 16px;
  background-color: #68758C;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8.00042 8.78126L11.3003 5.48145L12.2431 6.42425L8.00042 10.6669L3.75781 6.42425L4.70062 5.48145L8.00042 8.78126Z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8.00042 8.78126L11.3003 5.48145L12.2431 6.42425L8.00042 10.6669L3.75781 6.42425L4.70062 5.48145L8.00042 8.78126Z'/></svg>") center/contain no-repeat;
}
.form-request-quote input, .form-request-quote select, .form-request-quote .nice-select {
  height: 36px;
  line-height: 36px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 8px 12px;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
}
.form-request-quote input::placeholder, .form-request-quote select::placeholder, .form-request-quote .nice-select::placeholder {
  color: #68758C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.form-request-quote input:active, .form-request-quote input:hover, .form-request-quote input:focus, .form-request-quote select:active, .form-request-quote select:hover, .form-request-quote select:focus, .form-request-quote .nice-select:active, .form-request-quote .nice-select:hover, .form-request-quote .nice-select:focus {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: 0 1px 2px 0 #2458F6, 0 0 0 1px #2458F6;
}
.form-request-quote input:active::placeholder, .form-request-quote input:hover::placeholder, .form-request-quote input:focus::placeholder, .form-request-quote select:active::placeholder, .form-request-quote select:hover::placeholder, .form-request-quote select:focus::placeholder, .form-request-quote .nice-select:active::placeholder, .form-request-quote .nice-select:hover::placeholder, .form-request-quote .nice-select:focus::placeholder {
  color: #68758C;
}
.form-request-quote > *:nth-child(2) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .form-request-quote > *:nth-child(2) {
    margin-bottom: 30px;
  }
}
.form-request-quote > *:nth-child(4) {
  margin-bottom: 16px;
}
.form-request-quote .form-check {
  padding-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 15px;
}
.form-request-quote .form-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 0;
  position: relative;
  box-shadow: none;
  margin-right: 8px;
  padding: 0;
  line-height: normal;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
}
.form-request-quote .form-check input[type=checkbox]::before {
  content: "";
  display: block;
  font-family: "pxli";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  transition: all 350ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}
.form-request-quote .form-check input[type=checkbox]:checked::before {
  content: "";
  background-color: var(--primary-color);
  box-shadow: 0 1px 2px 0 rgba(20, 31, 87, 0.4), 0 0 0 1px rgba(9, 69, 220, 0.76);
}
.form-request-quote .form-check .wpcf7-list-item-label {
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3333333333;
}
.form-request-quote .form-check .wpcf7-list-item {
  margin: 0;
}
.form-request-quote .form-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}
.form-request-quote button[type="submit"].pxl-btn {
  margin-top: 40px;
  min-width: auto;
}
.form-request-quote textarea {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 8px 12px;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
}
.form-track .gx-16 {
  row-gap: 16px;
}
.form-track > * {
  margin-top: 16px;
}
.form-track > *:first-child {
  margin-top: 0;
}
.form-track textarea {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 8px 12px;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
}
.form-track textarea::placeholder {
  color: #68758C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.form-track textarea:active, .form-track textarea:hover, .form-track textarea:focus {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: 0 1px 2px 0 #2458F6, 0 0 0 1px #2458F6;
}
.form-track textarea:active::placeholder, .form-track textarea:hover::placeholder, .form-track textarea:focus::placeholder {
  color: #68758C;
}
.form-track input, .form-track select, .form-track .nice-select {
  height: 36px;
  line-height: 36px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 8px 12px;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(2, 3, 8, 0.12), 0 0 0 1px rgba(20, 31, 87, 0.08);
}
.form-track input::placeholder, .form-track select::placeholder, .form-track .nice-select::placeholder {
  color: #68758C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.form-track input:active, .form-track input:hover, .form-track input:focus, .form-track select:active, .form-track select:hover, .form-track select:focus, .form-track .nice-select:active, .form-track .nice-select:hover, .form-track .nice-select:focus {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: 0 1px 2px 0 #2458F6, 0 0 0 1px #2458F6;
}
.form-track input:active::placeholder, .form-track input:hover::placeholder, .form-track input:focus::placeholder, .form-track select:active::placeholder, .form-track select:hover::placeholder, .form-track select:focus::placeholder, .form-track .nice-select:active::placeholder, .form-track .nice-select:hover::placeholder, .form-track .nice-select:focus::placeholder {
  color: #68758C;
}
.form-track button[type="submit"].pxl-btn {
  margin-top: 18px;
  min-width: auto;
}
.form-ft-h3 br {
  display: none;
}
.form-ft-h3 .item-content {
  width: 68.4%;
}
@media (max-width: 575px) {
  .form-ft-h3 .item-content {
    width: 100%;
  }
}
.form-ft-h3 .item-content p {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 350ms ease;
}
.form-ft-h3 .item-content label {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  min-width: max-content;
}
.form-ft-h3 input {
  border-radius: 0 8px 8px 0;
  background-color: rgba(223, 223, 223, 0.04);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  color: #000;
}
.form-ft-h3 input::placeholder {
  color: rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
}
.form-ft-h3 input:hover, .form-ft-h3 input:focus, .form-ft-h3 input:active {
  background-color: rgba(223, 223, 223, 0.04);
  color: #000;
}
.form-ft-h3 input:hover::placeholder, .form-ft-h3 input:focus::placeholder, .form-ft-h3 input:active::placeholder {
  color: rgba(0, 0, 0, 0.12);
}
.form-ft-h3 .wpcf7-form-control-wrap {
  width: 100%;
}
.form-ft-h3 .row.gx-8 {
  margin-left: -4px;
  margin-right: -4px;
  row-gap: 8px;
}
.form-ft-h3 .row.gx-8 > * {
  padding-left: 4px;
  padding-right: 4px;
}
.form-ft-h3 .row {
  display: flex;
}
.form-ft-h3 .item-button {
  width: 31.6%;
}
@media (max-width: 575px) {
  .form-ft-h3 .item-button {
    width: 100%;
  }
}
.form-ft-h3 button[type="submit"] {
  padding: 19px 20px;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  border-radius: 18px;
  gap: 12px;
}
@media (max-width: 575px) {
  .form-ft-h3 button[type="submit"] {
    width: auto;
  }
}
.form-ft-h3 button[type="submit"] svg, .form-ft-h3 button[type="submit"] i {
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .form-ft-h3 button[type="submit"] {
    padding: 15px 20px;
  }
}
.form-ft-h3 .check {
  margin: 0;
  margin-top: 32px;
  display: flex;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  cursor: pointer;
  max-width: 292px;
}
@media (max-width: 575px) {
  .form-ft-h3 .check {
    margin-top: 25px;
  }
}
.form-ft-h3 .check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  box-shadow: none;
  margin-right: 9px;
  padding: 0;
  line-height: normal;
  cursor: pointer;
  border: 1px solid #000;
  top: 2px;
}
.form-ft-h3 .check input[type=checkbox]::before {
  content: "";
  display: block;
  font-family: "pxli";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  transition: all 350ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
}
.form-ft-h3 .check input[type=checkbox]:checked {
  border-color: var(--primary-color);
}
.form-ft-h3 .check input[type=checkbox]:checked::before {
  content: "";
  background-color: var(--primary-color);
}
.form-trackh3 .item-content {
  width: 66.4%;
}
@media (max-width: 575px) {
  .form-trackh3 .item-content {
    width: 100%;
  }
}
.form-trackh3 .item-content p {
  display: flex;
  align-items: center;
  background-color: #FFF;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 350ms ease;
}
.form-trackh3 .item-content label {
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  margin: 0;
  padding: 8px 20px;
  border-right: 1px solid #D4D4D4;
  min-width: max-content;
}
.form-trackh3 input {
  border-radius: 0 8px 8px 0;
  background-color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  color: #0A0A0A;
}
.form-trackh3 input::placeholder {
  color: #D4D4D4;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
}
.form-trackh3 input:hover, .form-trackh3 input:focus, .form-trackh3 input:active {
  background-color: #FFF;
  color: #0A0A0A;
}
.form-trackh3 input:hover::placeholder, .form-trackh3 input:focus::placeholder, .form-trackh3 input:active::placeholder {
  color: #D4D4D4;
}
.form-trackh3 .wpcf7-form-control-wrap {
  width: 100%;
}
.form-trackh3 .row.gx-20 {
  row-gap: 20px;
}
.form-trackh3 .row {
  display: flex;
}
.form-trackh3 .item-button {
  width: 33.6%;
}
@media (max-width: 575px) {
  .form-trackh3 .item-button {
    width: 100%;
  }
}
.form-trackh3 button[type="submit"] {
  padding: 19px 20px;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  border-radius: 18px;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.3, 1);
}
@media (max-width: 575px) {
  .form-trackh3 button[type="submit"] {
    width: auto;
  }
}
.form-trackh3 button[type="submit"]::before {
  background-color: #fff;
}
.form-trackh3 button[type="submit"]:hover, .form-trackh3 button[type="submit"]:focus, .form-trackh3 button[type="submit"]:active {
  background-color: #fff;
  color: #000;
}
.form-trackh3 button[type="submit"] svg, .form-trackh3 button[type="submit"] i {
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .form-trackh3 button[type="submit"] {
    padding: 15px 20px;
  }
}
.form-info-h3 br {
  display: none;
}
.form-info-h3 .wpcf7-list-item {
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  backdrop-filter: blur(30px);
  position: relative;
}
@media (max-width: 575px) {
  .form-info-h3 .wpcf7-list-item {
    padding: 12px 15px;
  }
}
.form-info-h3 .wpcf7-list-item:hover input[type=checkbox] {
  border-color: transparent;
  background-color: #0A0A0A;
}
.form-info-h3 .wpcf7-list-item:hover .wpcf7-list-item-label {
  color: #fff;
}
.form-info-h3 .wpcf7-list-item label {
  margin: 0;
}
.form-info-h3 .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  z-index: 1;
  transition: all 350ms ease;
  cursor: pointer;
}
.form-info-h3 .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label {
  color: #fff;
}
.form-info-h3 .wpcf7-list-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 84, 4, 0.32);
  border-radius: 12px;
  inset: 0;
  transition: all 350ms ease;
  cursor: pointer;
}
.form-info-h3 .wpcf7-list-item input[type=checkbox]:checked {
  border-color: transparent;
  background-color: #0A0A0A;
}
.form-info-h3 .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 10px;
  padding-top: 0;
}
.form-info-h3 .wpcf7-form-control.form-check2 {
  margin-top: 14px;
}
.form-info-h3 .wpcf7-form-control-wrap {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .form-info-h3 .wpcf7-form-control-wrap {
    margin-top: 10px;
  }
}
.form-info-h3 .wpcf7-form-control-wrap input, .form-info-h3 .wpcf7-form-control-wrap select, .form-info-h3 .wpcf7-form-control-wrap textarea {
  border-bottom: 1px solid #E5E5E5;
  background-color: transparent;
  color: var(--heading-color);
  font-weight: 500;
  padding: 20px 0;
}
.form-info-h3 .wpcf7-form-control-wrap input::placeholder, .form-info-h3 .wpcf7-form-control-wrap select::placeholder, .form-info-h3 .wpcf7-form-control-wrap textarea::placeholder {
  color: #404040;
  font-weight: 500;
}
@media (max-width: 575px) {
  .form-info-h3 .wpcf7-form-control-wrap input, .form-info-h3 .wpcf7-form-control-wrap select, .form-info-h3 .wpcf7-form-control-wrap textarea {
    padding: 12px 0;
  }
}
.form-info-h3 .wpcf7-form-control-wrap textarea {
  height: 124px;
}
.form-info-h3 .row.gx-20 {
  margin-top: 25px;
  row-gap: 20px;
}
.form-info-h3 .row.gx-20 .wpcf7-form-control-wrap {
  margin-top: 0;
}
.form-info-h3 button[type="submit"] {
  gap: 12px;
  width: 100%;
  border-radius: 18px;
  box-shadow: none;
  margin-top: 19px;
  padding: 17px 20px;
}
.form-info-h3 button[type="submit"] svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
@media (max-width: 575px) {
  .form-info-h3 button[type="submit"] {
    padding: 14px 20px;
  }
}
.form-h4 label {
  margin: 0;
  margin-bottom: 7.2px;
  color: #737373;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
}
.form-h4 .item-name label span {
  color: var(--primary-color);
  font-family: "Inter Tight", sans-serif;
  margin-left: 4.8px;
}
.form-h4 input, .form-h4 select, .form-h4 textarea {
  border-radius: 2.4px;
  background-color: #EEE;
  padding: 9.6px 14.4px;
  color: #0C0D02;
}
.form-h4 input::placeholder, .form-h4 select::placeholder, .form-h4 textarea::placeholder {
  color: #0A0A0A4D;
}
.form-h4 input:hover, .form-h4 input:focus, .form-h4 input:active, .form-h4 select:hover, .form-h4 select:focus, .form-h4 select:active, .form-h4 textarea:hover, .form-h4 textarea:focus, .form-h4 textarea:active {
  background-color: #EEE;
  color: #0C0D02;
}
.form-h4 input:hover::placeholder, .form-h4 input:focus::placeholder, .form-h4 input:active::placeholder, .form-h4 select:hover::placeholder, .form-h4 select:focus::placeholder, .form-h4 select:active::placeholder, .form-h4 textarea:hover::placeholder, .form-h4 textarea:focus::placeholder, .form-h4 textarea:active::placeholder {
  color: #0A0A0A4D;
}
.form-h4 input, .form-h4 select {
  height: 57.6px;
}
@media (max-width: 575px) {
  .form-h4 input, .form-h4 select {
    height: 50px;
  }
}
.form-h4 .nice-select {
  border-radius: 2.4px;
  background-color: #EEE;
  height: 57.6px;
}
.form-h4 .nice-select .current {
  color: #0A0A0A4D;
  line-height: 57.6px;
}
@media (max-width: 575px) {
  .form-h4 .nice-select {
    height: 50px;
  }
  .form-h4 .nice-select .current {
    line-height: 50px;
  }
}
.form-h4 .nice-select .list .option {
  color: #0C0D02;
}
.form-h4 .nice-select::after {
  color: rgba(50, 50, 50, 0.3);
  right: 14px;
  font-size: 12px;
}
.form-h4 textarea {
  height: 158px;
}
.form-h4 button[type="submit"] {
  margin-top: 18.6px;
}
@media (max-width: 575px) {
  .form-h4 button[type="submit"] {
    font-size: 15px;
  }
}
.form-h4 button[type="submit"] .pxl-icon {
  margin-left: 2.4px;
}
.form-h4 button[type="submit"] .pxl-icon svg {
  fill: transparent;
  color: #fff;
}
.form-h4 button[type="submit"] .pxl-icon::before {
  display: none;
}
.form-h4 button[type="submit"] .pxl-button-text {
  padding: 16px 55px;
}
@media (max-width: 575px) {
  .form-h4 button[type="submit"] .pxl-button-text {
    padding: 14px 40px 13.5px;
  }
}
.form-h4 > * + * {
  margin-top: 19.2px;
}
.form-home5 label {
  margin: 0;
  color: #0A0A0A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 8px 24px;
}
.form-home5 label::after {
  position: absolute;
  content: "";
  top: 0;
  left: 92px;
  height: 100%;
  width: 1px;
  background-color: #E5E5E5;
}
@media (max-width: 575px) {
  .form-home5 label {
    font-size: 14px;
    padding: 6px 18px;
  }
  .form-home5 label::after {
    left: 80px;
  }
}
.form-home5 input, .form-home5 .nice-select, .form-home5 select {
  border-radius: 100px;
  background-color: #fff;
}
.form-home5 input, .form-home5 textarea, .form-home5 select {
  color: #262626;
  padding: 8px 16px 8px 108px;
}
.form-home5 input::placeholder, .form-home5 textarea::placeholder, .form-home5 select::placeholder {
  color: #737373;
}
.form-home5 input:hover, .form-home5 input:focus, .form-home5 input:active, .form-home5 textarea:hover, .form-home5 textarea:focus, .form-home5 textarea:active, .form-home5 select:hover, .form-home5 select:focus, .form-home5 select:active {
  background-color: #fff;
  color: #262626;
}
.form-home5 input:hover::placeholder, .form-home5 input:focus::placeholder, .form-home5 input:active::placeholder, .form-home5 textarea:hover::placeholder, .form-home5 textarea:focus::placeholder, .form-home5 textarea:active::placeholder, .form-home5 select:hover::placeholder, .form-home5 select:focus::placeholder, .form-home5 select:active::placeholder {
  color: #737373;
}
@media (max-width: 575px) {
  .form-home5 input, .form-home5 textarea, .form-home5 select {
    padding: 8px 16px 8px 96px;
  }
}
.form-home5 textarea {
  background-color: #fff;
  border-radius: 24px;
  height: 176px;
  padding: 64px 16px 16px;
}
@media (max-width: 575px) {
  .form-home5 textarea {
    padding: 45px 16px 16px;
  }
}
.form-home5 .nice-select {
  padding-left: 108px;
  color: #262626;
}
.form-home5 .nice-select .current {
  color: #262626;
}
.form-home5 .nice-select::after {
  content: "";
  color: #262626;
  font-size: 16px;
  right: 24px;
}
@media (max-width: 575px) {
  .form-home5 .nice-select {
    padding-left: 96px;
  }
}
.form-home5 .col-12, .form-home5 .item-mess {
  position: relative;
}
.form-home5 .item-mess label {
  top: 0;
  transform: translateY(0);
  left: 0;
  padding: 16px 20px;
}
.form-home5 .item-mess label::after {
  display: none;
}
@media (max-width: 575px) {
  .form-home5 .item-mess label {
    padding: 16px 18px;
  }
}
.form-home5 > * + * {
  margin-top: 16px;
}
.form-home5 button[type="submit"] {
  width: 100%;
  background-color: #262626;
  box-shadow: none;
  border-radius: 30px;
  margin-top: 8px;
}
.form-home5 button[type="submit"]:hover, .form-home5 button[type="submit"]:focus, .form-home5 button[type="submit"]:active {
  background-color: #262626;
}
@media (max-width: 767px) {
  .form-home5 .row.gx-16 {
    gap: 16px;
  }
}
.button, button, input[type="button"], input[type="reset"], input[type="submit"] {
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  vertical-align: bottom;
}
.button:hover, .button:active, .button:focus, button:hover, button:active, button:focus, input[type="button"]:hover, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  cursor: pointer;
}
.button:visited, button:visited, input[type="button"]:visited, input[type="reset"]:visited, input[type="submit"]:visited {
  text-decoration: none;
}
.button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  outline: none;
  outline-offset: 0;
}
.btn, button, .button, input[type="submit"], input[type="button"], .pxl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
  color: #FAFAFA;
  line-height: 1.5;
  letter-spacing: 0px;
  padding: 12px 24px;
  background-color: var(--primary-color);
  outline: none;
  cursor: pointer;
  vertical-align: top;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  justify-content: center;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  transition: all 300ms cubic-bezier(0.46, 0.23, 1, 1);
  border-radius: 8px;
}
.btn:active, .btn:hover, .btn:focus, button:active, button:hover, button:focus, .button:active, .button:hover, .button:focus, input[type="submit"]:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:active, input[type="button"]:hover, input[type="button"]:focus, .pxl-btn:active, .pxl-btn:hover, .pxl-btn:focus {
  outline: medium none;
  text-decoration: none;
  color: #FAFAFA;
  background-color: var(--heading-color);
}
.btn.default:active, .btn.default:hover, .btn.default:focus, button.default:active, button.default:hover, button.default:focus, .button.default:active, .button.default:hover, .button.default:focus, input[type="submit"].default:active, input[type="submit"].default:hover, input[type="submit"].default:focus, input[type="button"].default:active, input[type="button"].default:hover, input[type="button"].default:focus, .pxl-btn.default:active, .pxl-btn.default:hover, .pxl-btn.default:focus {
  background-color: var(--primary-color);
  color: #FAFAFA;
}
.btn.primary, button.primary, .button.primary, input[type="submit"].primary, input[type="button"].primary, .pxl-btn.primary {
  --pxl-btn-color: #fff;
  --pxl-btn-bg-color: var(--primary-color);
  --pxl-btn-border-color: var(--primary-color);
  --pxl-btn-color-hover: #fff;
  --pxl-btn-bg-color-hover: var(--primary-color);
  --pxl-btn-border-color-hover: var(--primary-color);
}
.btn.primary-light, button.primary-light, .button.primary-light, input[type="submit"].primary-light, input[type="button"].primary-light, .pxl-btn.primary-light {
  --pxl-btn-color: var(--primary-color);
  --pxl-btn-bg-color: var(--primary-subtle-color);
  --pxl-btn-border-color: var(--primary-subtle-color);
}
.btn.second, .btn.secondary, button.second, button.secondary, .button.second, .button.secondary, input[type="submit"].second, input[type="submit"].secondary, input[type="button"].second, input[type="button"].secondary, .pxl-btn.second, .pxl-btn.secondary {
  --pxl-btn-color: #738594;
  --pxl-btn-bg-color: var(--second-color);
  --pxl-btn-border-color: var(--second-color);
  --pxl-btn-color-hover: #fff;
  --pxl-btn-bg-color-hover: var(--primary-color);
  --pxl-btn-border-color-hover: var(--primary-color);
}
.btn.second-light, button.second-light, .button.second-light, input[type="submit"].second-light, input[type="button"].second-light, .pxl-btn.second-light {
  --pxl-btn-color: #6c757d;
  --pxl-btn-bg-color: #f3f6fa;
  --pxl-btn-border-color: #f3f6fa;
  --pxl-btn-color-hover: #fff;
}
.btn.outline, button.outline, .button.outline, input[type="submit"].outline, input[type="button"].outline, .pxl-btn.outline {
  --pxl-btn-border-color: #6c757d;
}
.btn.btn-outline, .btn.btn-alt, button.btn-outline, button.btn-alt, .button.btn-outline, .button.btn-alt, input[type="submit"].btn-outline, input[type="submit"].btn-alt, input[type="button"].btn-outline, input[type="button"].btn-alt, .pxl-btn.btn-outline, .pxl-btn.btn-alt {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--primary-color);
}
.btn.btn-outline:active, .btn.btn-outline:hover, .btn.btn-outline:focus, .btn.btn-alt:active, .btn.btn-alt:hover, .btn.btn-alt:focus, button.btn-outline:active, button.btn-outline:hover, button.btn-outline:focus, button.btn-alt:active, button.btn-alt:hover, button.btn-alt:focus, .button.btn-outline:active, .button.btn-outline:hover, .button.btn-outline:focus, .button.btn-alt:active, .button.btn-alt:hover, .button.btn-alt:focus, input[type="submit"].btn-outline:active, input[type="submit"].btn-outline:hover, input[type="submit"].btn-outline:focus, input[type="submit"].btn-alt:active, input[type="submit"].btn-alt:hover, input[type="submit"].btn-alt:focus, input[type="button"].btn-outline:active, input[type="button"].btn-outline:hover, input[type="button"].btn-outline:focus, input[type="button"].btn-alt:active, input[type="button"].btn-alt:hover, input[type="button"].btn-alt:focus, .pxl-btn.btn-outline:active, .pxl-btn.btn-outline:hover, .pxl-btn.btn-outline:focus, .pxl-btn.btn-alt:active, .pxl-btn.btn-alt:hover, .pxl-btn.btn-alt:focus {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-block, button.btn-block, .button.btn-block, input[type="submit"].btn-block, input[type="button"].btn-block, .pxl-btn.btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn.btn-fullwidth, button.btn-fullwidth, .button.btn-fullwidth, input[type="submit"].btn-fullwidth, input[type="button"].btn-fullwidth, .pxl-btn.btn-fullwidth {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn.btn-fullwidth.border-3px, button.btn-fullwidth.border-3px, .button.btn-fullwidth.border-3px, input[type="submit"].btn-fullwidth.border-3px, input[type="button"].btn-fullwidth.border-3px, .pxl-btn.btn-fullwidth.border-3px {
  border-radius: 3px !important;
}
.btn.btn-round, button.btn-round, .button.btn-round, input[type="submit"].btn-round, input[type="button"].btn-round, .pxl-btn.btn-round {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.btn.text-justify, button.text-justify, .button.text-justify, input[type="submit"].text-justify, input[type="button"].text-justify, .pxl-btn.text-justify {
  display: block;
}
.btn[disabled], button[disabled], .button[disabled], input[type="submit"][disabled], input[type="button"][disabled], .pxl-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.btn-lg, button.btn-lg, .button.btn-lg, input[type="submit"].btn-lg, input[type="button"].btn-lg, .pxl-btn.btn-lg {
  --pxl-btn-padding-y: 18px;
  --pxl-btn-padding-x: 24px;
  min-height: 62px;
  font-size: 16px;
}
.btn.btn-md, button.btn-md, .button.btn-md, input[type="submit"].btn-md, input[type="button"].btn-md, .pxl-btn.btn-md {
  --pxl-btn-padding-y: 10px;
  --pxl-btn-padding-x: 24px;
  min-height: 45px;
  font-size: 14.4px;
}
.btn.btn-sm, button.btn-sm, .button.btn-sm, input[type="submit"].btn-sm, input[type="button"].btn-sm, .pxl-btn.btn-sm {
  --pxl-btn-padding-y: 8px;
  --pxl-btn-padding-x: 8px;
  font-size: 12px;
}
.btn.btn-dash, button.btn-dash, .button.btn-dash, input[type="submit"].btn-dash, input[type="button"].btn-dash, .pxl-btn.btn-dash {
  border: 1px dashed var(--primary-color);
}
.btn.btn-primary, button.btn-primary, .button.btn-primary, input[type="submit"].btn-primary, input[type="button"].btn-primary, .pxl-btn.btn-primary {
  --box-shadow-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 4px 0 var(--box-shadow-color) inset;
  transition: all 350ms ease-in-out 0s;
}
.btn.btn-primary.background-image, button.btn-primary.background-image, .button.btn-primary.background-image, input[type="submit"].btn-primary.background-image, input[type="button"].btn-primary.background-image, .pxl-btn.btn-primary.background-image {
  mask-image: url(../images/btn-primary.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn.btn-primary .pxl-button-text, button.btn-primary .pxl-button-text, .button.btn-primary .pxl-button-text, input[type="submit"].btn-primary .pxl-button-text, input[type="button"].btn-primary .pxl-button-text, .pxl-btn.btn-primary .pxl-button-text {
  display: block;
  position: relative;
  z-index: 1;
}
.btn.btn-primary .pxl-icon, button.btn-primary .pxl-icon, .button.btn-primary .pxl-icon, input[type="submit"].btn-primary .pxl-icon, input[type="button"].btn-primary .pxl-icon, .pxl-btn.btn-primary .pxl-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FAFAFA;
  box-shadow: 2px 2px 4px 0 rgba(254, 86, 49, 0.2) inset;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active, button.btn-primary:hover, button.btn-primary:focus, button.btn-primary:active, .button.btn-primary:hover, .button.btn-primary:focus, .button.btn-primary:active, input[type="submit"].btn-primary:hover, input[type="submit"].btn-primary:focus, input[type="submit"].btn-primary:active, input[type="button"].btn-primary:hover, input[type="button"].btn-primary:focus, input[type="button"].btn-primary:active, .pxl-btn.btn-primary:hover, .pxl-btn.btn-primary:focus, .pxl-btn.btn-primary:active {
  box-shadow: 0 -4px 4px 0 var(--box-shadow-color) inset;
  background-color: var(--primary-color);
}
.btn.btn-primary:hover .pxl-button-text, .btn.btn-primary:focus .pxl-button-text, .btn.btn-primary:active .pxl-button-text, button.btn-primary:hover .pxl-button-text, button.btn-primary:focus .pxl-button-text, button.btn-primary:active .pxl-button-text, .button.btn-primary:hover .pxl-button-text, .button.btn-primary:focus .pxl-button-text, .button.btn-primary:active .pxl-button-text, input[type="submit"].btn-primary:hover .pxl-button-text, input[type="submit"].btn-primary:focus .pxl-button-text, input[type="submit"].btn-primary:active .pxl-button-text, input[type="button"].btn-primary:hover .pxl-button-text, input[type="button"].btn-primary:focus .pxl-button-text, input[type="button"].btn-primary:active .pxl-button-text, .pxl-btn.btn-primary:hover .pxl-button-text, .pxl-btn.btn-primary:focus .pxl-button-text, .pxl-btn.btn-primary:active .pxl-button-text {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
.btn.btn-second, button.btn-second, .button.btn-second, input[type="submit"].btn-second, input[type="button"].btn-second, .pxl-btn.btn-second {
  --box-shadow-color: rgba(255, 255, 255, 0.25);
  padding: 6px 6px 6px 24px;
  box-shadow: 0 4px 4px 0 var(--box-shadow-color) inset;
  position: relative;
}
.btn.btn-second::before, button.btn-second::before, .button.btn-second::before, input[type="submit"].btn-second::before, input[type="button"].btn-second::before, .pxl-btn.btn-second::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 24px;
  opacity: 0;
  transform: translate(0, -150%);
  transition: all 0.35s ease-in-out;
}
.btn.btn-second .pxl-button-text, button.btn-second .pxl-button-text, .button.btn-second .pxl-button-text, input[type="submit"].btn-second .pxl-button-text, input[type="button"].btn-second .pxl-button-text, .pxl-btn.btn-second .pxl-button-text {
  transition: all 0.35s ease-in-out;
}
.btn.btn-second .pxl-icon, button.btn-second .pxl-icon, .button.btn-second .pxl-icon, input[type="submit"].btn-second .pxl-icon, input[type="button"].btn-second .pxl-icon, .pxl-btn.btn-second .pxl-icon {
  position: relative;
}
.btn.btn-second .pxl-icon svg, button.btn-second .pxl-icon svg, .button.btn-second .pxl-icon svg, input[type="submit"].btn-second .pxl-icon svg, input[type="button"].btn-second .pxl-icon svg, .pxl-btn.btn-second .pxl-icon svg {
  fill: var(--primary-color);
}
.btn.btn-second .pxl-icon .icon-left, button.btn-second .pxl-icon .icon-left, .button.btn-second .pxl-icon .icon-left, input[type="submit"].btn-second .pxl-icon .icon-left, input[type="button"].btn-second .pxl-icon .icon-left, .pxl-btn.btn-second .pxl-icon .icon-left {
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.5s ease;
  position: relative;
  transform: translateX(0) rotateY(0);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: #FAFAFA;
  box-shadow: 2px 2px 4px 0 rgba(254, 86, 49, 0.2) inset;
  border-radius: 4px;
}
.btn.btn-second .pxl-icon .icon-right, button.btn-second .pxl-icon .icon-right, .button.btn-second .pxl-icon .icon-right, input[type="submit"].btn-second .pxl-icon .icon-right, input[type="button"].btn-second .pxl-icon .icon-right, .pxl-btn.btn-second .pxl-icon .icon-right {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  transition: all 0.5s ease;
  position: absolute;
  transform: translateX(-50%) rotateY(90deg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: #FAFAFA;
  box-shadow: 2px 2px 4px 0 rgba(254, 86, 49, 0.2) inset;
  border-radius: 4px;
}
.btn.btn-second:hover, button.btn-second:hover, .button.btn-second:hover, input[type="submit"].btn-second:hover, input[type="button"].btn-second:hover, .pxl-btn.btn-second:hover {
  background-color: var(--primary-color);
}
.btn.btn-second:hover .pxl-icon .icon-left, button.btn-second:hover .pxl-icon .icon-left, .button.btn-second:hover .pxl-icon .icon-left, input[type="submit"].btn-second:hover .pxl-icon .icon-left, input[type="button"].btn-second:hover .pxl-icon .icon-left, .pxl-btn.btn-second:hover .pxl-icon .icon-left {
  opacity: 0;
  transform: translateX(50%) rotateY(90deg);
}
.btn.btn-second:hover .pxl-icon .icon-right, button.btn-second:hover .pxl-icon .icon-right, .button.btn-second:hover .pxl-icon .icon-right, input[type="submit"].btn-second:hover .pxl-icon .icon-right, input[type="button"].btn-second:hover .pxl-icon .icon-right, .pxl-btn.btn-second:hover .pxl-icon .icon-right {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}
.btn.btn-second:hover .pxl-button-text, button.btn-second:hover .pxl-button-text, .button.btn-second:hover .pxl-button-text, input[type="submit"].btn-second:hover .pxl-button-text, input[type="button"].btn-second:hover .pxl-button-text, .pxl-btn.btn-second:hover .pxl-button-text {
  opacity: 0;
  transform: translate(0, 100%);
}
.btn.btn-second:hover::before, button.btn-second:hover::before, .button.btn-second:hover::before, input[type="submit"].btn-second:hover::before, input[type="button"].btn-second:hover::before, .pxl-btn.btn-second:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.btn.btn-third, button.btn-third, .button.btn-third, input[type="submit"].btn-third, input[type="button"].btn-third, .pxl-btn.btn-third {
  --primary-Color: #2458F6;
  --clp-right: 80%;
  --clp-bottom: 94%;
  padding: 8px 16px;
  color: #FFF;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: -0.14px;
  border-radius: 0;
  background-color: #0945DC;
  clip-path: polygon(0 0, 100% 0, 100% var(--clp-right), var(--clp-bottom) 100%, 0 100%);
}
.btn.btn-third.background-image, button.btn-third.background-image, .button.btn-third.background-image, input[type="submit"].btn-third.background-image, input[type="button"].btn-third.background-image, .pxl-btn.btn-third.background-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(255, 255, 255, 0.02);
  box-shadow: 0px 2px 6px rgba(2, 3, 8, 0.04), 0px 1px 2px rgba(2, 3, 8, 0.08), inset 0px 2px 8px rgba(255, 255, 255, 0.06), inset 0px 1px 3px rgba(255, 255, 255, 0.12), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.btn.btn-third.background-image::before, button.btn-third.background-image::before, .button.btn-third.background-image::before, input[type="submit"].btn-third.background-image::before, input[type="button"].btn-third.background-image::before, .pxl-btn.btn-third.background-image::before {
  display: none;
}
.btn.btn-third::before, button.btn-third::before, .button.btn-third::before, input[type="submit"].btn-third::before, input[type="button"].btn-third::before, .pxl-btn.btn-third::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--primary-Color);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% var(--clp-right), var(--clp-bottom) 100%, 0 100%);
  box-shadow: 0px 1px 2px rgba(20, 31, 87, 0.4), 0px 0px 0px rgba(9, 69, 220, 0.76);
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  transition: all 350ms ease;
}
.btn.btn-third .pxl-button-text, button.btn-third .pxl-button-text, .button.btn-third .pxl-button-text, input[type="submit"].btn-third .pxl-button-text, input[type="button"].btn-third .pxl-button-text, .pxl-btn.btn-third .pxl-button-text {
  position: relative;
  z-index: 2;
}
.btn.btn-third .pxl-button-text > span, button.btn-third .pxl-button-text > span, .button.btn-third .pxl-button-text > span, input[type="submit"].btn-third .pxl-button-text > span, input[type="button"].btn-third .pxl-button-text > span, .pxl-btn.btn-third .pxl-button-text > span {
  display: inline-block;
  pointer-events: none;
}
.btn.btn-third:hover .pxl-button-text > span, button.btn-third:hover .pxl-button-text > span, .button.btn-third:hover .pxl-button-text > span, input[type="submit"].btn-third:hover .pxl-button-text > span, input[type="button"].btn-third:hover .pxl-button-text > span, .pxl-btn.btn-third:hover .pxl-button-text > span {
  animation: pxl-xspin2 0.25s ease-in-out forwards;
}
.btn.btn-fourth, button.btn-fourth, .button.btn-fourth, input[type="submit"].btn-fourth, input[type="button"].btn-fourth, .pxl-btn.btn-fourth {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 18px 20px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn.btn-fourth::before, button.btn-fourth::before, .button.btn-fourth::before, input[type="submit"].btn-fourth::before, input[type="button"].btn-fourth::before, .pxl-btn.btn-fourth::before {
  content: "";
  position: absolute;
  background-color: #0A0A0A;
  width: 110%;
  height: 0;
  padding-bottom: 110%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
  z-index: 0;
}
.btn.btn-fourth:hover, button.btn-fourth:hover, .button.btn-fourth:hover, input[type="submit"].btn-fourth:hover, input[type="button"].btn-fourth:hover, .pxl-btn.btn-fourth:hover {
  transform: scale3d(1.05, 1.05, 1);
  background-color: var(--primary-color);
}
.btn.btn-fourth:hover::before, button.btn-fourth:hover::before, .button.btn-fourth:hover::before, input[type="submit"].btn-fourth:hover::before, input[type="button"].btn-fourth:hover::before, .pxl-btn.btn-fourth:hover::before {
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}
.btn.btn-fourth .pxl-button-text, .btn.btn-fourth .pxl-icon, button.btn-fourth .pxl-button-text, button.btn-fourth .pxl-icon, .button.btn-fourth .pxl-button-text, .button.btn-fourth .pxl-icon, input[type="submit"].btn-fourth .pxl-button-text, input[type="submit"].btn-fourth .pxl-icon, input[type="button"].btn-fourth .pxl-button-text, input[type="button"].btn-fourth .pxl-icon, .pxl-btn.btn-fourth .pxl-button-text, .pxl-btn.btn-fourth .pxl-icon {
  position: relative;
  z-index: 1;
}
.btn.btn-fifth, button.btn-fifth, .button.btn-fifth, input[type="submit"].btn-fifth, input[type="button"].btn-fifth, .pxl-btn.btn-fifth {
  background-color: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0;
}
.btn.btn-fifth .pxl-button-text, button.btn-fifth .pxl-button-text, .button.btn-fifth .pxl-button-text, input[type="submit"].btn-fifth .pxl-button-text, input[type="button"].btn-fifth .pxl-button-text, .pxl-btn.btn-fifth .pxl-button-text {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 17px 23px;
  position: relative;
  z-index: 2;
  transition: all 350ms ease;
}
.btn.btn-fifth .pxl-button-text > span, button.btn-fifth .pxl-button-text > span, .button.btn-fifth .pxl-button-text > span, input[type="submit"].btn-fifth .pxl-button-text > span, input[type="button"].btn-fifth .pxl-button-text > span, .pxl-btn.btn-fifth .pxl-button-text > span {
  display: inline-block;
  pointer-events: none;
}
@media (max-width: 575px) {
  .btn.btn-fifth .pxl-button-text, button.btn-fifth .pxl-button-text, .button.btn-fifth .pxl-button-text, input[type="submit"].btn-fifth .pxl-button-text, input[type="button"].btn-fifth .pxl-button-text, .pxl-btn.btn-fifth .pxl-button-text {
    padding: 13px 20px;
  }
}
.btn.btn-fifth .pxl-icon, button.btn-fifth .pxl-icon, .button.btn-fifth .pxl-icon, input[type="submit"].btn-fifth .pxl-icon, input[type="button"].btn-fifth .pxl-icon, .pxl-btn.btn-fifth .pxl-icon {
  color: #fff;
  padding: 18px;
  background-color: var(--primary-color);
  border-radius: 20px;
  transition: all 350ms ease;
  width: auto;
}
@media (max-width: 575px) {
  .btn.btn-fifth .pxl-icon, button.btn-fifth .pxl-icon, .button.btn-fifth .pxl-icon, input[type="submit"].btn-fifth .pxl-icon, input[type="button"].btn-fifth .pxl-icon, .pxl-btn.btn-fifth .pxl-icon {
    padding: 15px;
  }
}
.btn.btn-fifth.icon-ps-right .pxl-icon, button.btn-fifth.icon-ps-right .pxl-icon, .button.btn-fifth.icon-ps-right .pxl-icon, input[type="submit"].btn-fifth.icon-ps-right .pxl-icon, input[type="button"].btn-fifth.icon-ps-right .pxl-icon, .pxl-btn.btn-fifth.icon-ps-right .pxl-icon {
  margin-left: 0;
}
.btn.btn-fifth.icon-ps-right .pxl-icon.left, button.btn-fifth.icon-ps-right .pxl-icon.left, .button.btn-fifth.icon-ps-right .pxl-icon.left, input[type="submit"].btn-fifth.icon-ps-right .pxl-icon.left, input[type="button"].btn-fifth.icon-ps-right .pxl-icon.left, .pxl-btn.btn-fifth.icon-ps-right .pxl-icon.left {
  transform: scale(0);
  width: 0;
  padding: 0;
}
.btn.btn-fifth.icon-ps-right:hover .pxl-icon, button.btn-fifth.icon-ps-right:hover .pxl-icon, .button.btn-fifth.icon-ps-right:hover .pxl-icon, input[type="submit"].btn-fifth.icon-ps-right:hover .pxl-icon, input[type="button"].btn-fifth.icon-ps-right:hover .pxl-icon, .pxl-btn.btn-fifth.icon-ps-right:hover .pxl-icon {
  transform: translateX(100%) scale(0);
  width: 0;
  padding: 0;
}
.btn.btn-fifth.icon-ps-right:hover .pxl-icon.left, button.btn-fifth.icon-ps-right:hover .pxl-icon.left, .button.btn-fifth.icon-ps-right:hover .pxl-icon.left, input[type="submit"].btn-fifth.icon-ps-right:hover .pxl-icon.left, input[type="button"].btn-fifth.icon-ps-right:hover .pxl-icon.left, .pxl-btn.btn-fifth.icon-ps-right:hover .pxl-icon.left {
  padding: 18px;
  width: auto;
  transform: scale(1);
}
@media (max-width: 575px) {
  .btn.btn-fifth.icon-ps-right:hover .pxl-icon.left, button.btn-fifth.icon-ps-right:hover .pxl-icon.left, .button.btn-fifth.icon-ps-right:hover .pxl-icon.left, input[type="submit"].btn-fifth.icon-ps-right:hover .pxl-icon.left, input[type="button"].btn-fifth.icon-ps-right:hover .pxl-icon.left, .pxl-btn.btn-fifth.icon-ps-right:hover .pxl-icon.left {
    padding: 15px;
  }
}
.btn.btn-fifth.icon-ps-right:hover .pxl-icon.right, button.btn-fifth.icon-ps-right:hover .pxl-icon.right, .button.btn-fifth.icon-ps-right:hover .pxl-icon.right, input[type="submit"].btn-fifth.icon-ps-right:hover .pxl-icon.right, input[type="button"].btn-fifth.icon-ps-right:hover .pxl-icon.right, .pxl-btn.btn-fifth.icon-ps-right:hover .pxl-icon.right {
  padding: 0 !important;
}
.btn.btn-fifth.icon-ps-left .pxl-icon, button.btn-fifth.icon-ps-left .pxl-icon, .button.btn-fifth.icon-ps-left .pxl-icon, input[type="submit"].btn-fifth.icon-ps-left .pxl-icon, input[type="button"].btn-fifth.icon-ps-left .pxl-icon, .pxl-btn.btn-fifth.icon-ps-left .pxl-icon {
  margin-right: 0;
}
.btn.btn-fifth.icon-ps-left .pxl-icon.left, button.btn-fifth.icon-ps-left .pxl-icon.left, .button.btn-fifth.icon-ps-left .pxl-icon.left, input[type="submit"].btn-fifth.icon-ps-left .pxl-icon.left, input[type="button"].btn-fifth.icon-ps-left .pxl-icon.left, .pxl-btn.btn-fifth.icon-ps-left .pxl-icon.left {
  display: none;
}
.btn.btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, .btn.btn-fifth.icon-ps-left:hover .pxl-icon svg, button.btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, button.btn-fifth.icon-ps-left:hover .pxl-icon svg, .button.btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, .button.btn-fifth.icon-ps-left:hover .pxl-icon svg, input[type="submit"].btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, input[type="submit"].btn-fifth.icon-ps-left:hover .pxl-icon svg, input[type="button"].btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, input[type="button"].btn-fifth.icon-ps-left:hover .pxl-icon svg, .pxl-btn.btn-fifth.icon-ps-left:hover .pxl-icon .pxl-button-icon, .pxl-btn.btn-fifth.icon-ps-left:hover .pxl-icon svg {
  animation: toleftFromright 0.35s ease-in-out forwards;
}
.btn.btn-fifth:hover .pxl-button-text > span, button.btn-fifth:hover .pxl-button-text > span, .button.btn-fifth:hover .pxl-button-text > span, input[type="submit"].btn-fifth:hover .pxl-button-text > span, input[type="button"].btn-fifth:hover .pxl-button-text > span, .pxl-btn.btn-fifth:hover .pxl-button-text > span {
  animation: pxl-xspin2 0.35s ease-in-out forwards;
}
.btn.btn-sixth, button.btn-sixth, .button.btn-sixth, input[type="submit"].btn-sixth, input[type="button"].btn-sixth, .pxl-btn.btn-sixth {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.42px;
  text-transform: capitalize;
  background-color: #fff;
  border-radius: 0;
  padding: 12px 16px;
  height: 80px;
  align-items: stretch;
  justify-content: space-between;
}
.btn.btn-sixth::before, button.btn-sixth::before, .button.btn-sixth::before, input[type="submit"].btn-sixth::before, input[type="button"].btn-sixth::before, .pxl-btn.btn-sixth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  background-color: var(--primary-color);
  transform-origin: left center;
  transform: scale(0, 1);
  transition: transform 0.35s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  z-index: 0;
}
.btn.btn-sixth .pxl-button-text, button.btn-sixth .pxl-button-text, .button.btn-sixth .pxl-button-text, input[type="submit"].btn-sixth .pxl-button-text, input[type="button"].btn-sixth .pxl-button-text, .pxl-btn.btn-sixth .pxl-button-text {
  position: relative;
  z-index: 1;
}
.btn.btn-sixth .pxl-icon, button.btn-sixth .pxl-icon, .button.btn-sixth .pxl-icon, input[type="submit"].btn-sixth .pxl-icon, input[type="button"].btn-sixth .pxl-icon, .pxl-btn.btn-sixth .pxl-icon {
  color: var(--primary-color);
  align-items: end;
  z-index: 1;
}
.btn.btn-sixth .pxl-icon svg, button.btn-sixth .pxl-icon svg, .button.btn-sixth .pxl-icon svg, input[type="submit"].btn-sixth .pxl-icon svg, input[type="button"].btn-sixth .pxl-icon svg, .pxl-btn.btn-sixth .pxl-icon svg {
  fill: var(--primary-color);
}
.btn.btn-sixth:hover, button.btn-sixth:hover, .button.btn-sixth:hover, input[type="submit"].btn-sixth:hover, input[type="button"].btn-sixth:hover, .pxl-btn.btn-sixth:hover {
  color: #fff;
}
.btn.btn-sixth:hover::before, button.btn-sixth:hover::before, .button.btn-sixth:hover::before, input[type="submit"].btn-sixth:hover::before, input[type="button"].btn-sixth:hover::before, .pxl-btn.btn-sixth:hover::before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.btn.btn-sixth:hover .pxl-icon, button.btn-sixth:hover .pxl-icon, .button.btn-sixth:hover .pxl-icon, input[type="submit"].btn-sixth:hover .pxl-icon, input[type="button"].btn-sixth:hover .pxl-icon, .pxl-btn.btn-sixth:hover .pxl-icon {
  color: #fff;
}
.btn.btn-sixth:hover .pxl-icon svg, button.btn-sixth:hover .pxl-icon svg, .button.btn-sixth:hover .pxl-icon svg, input[type="submit"].btn-sixth:hover .pxl-icon svg, input[type="button"].btn-sixth:hover .pxl-icon svg, .pxl-btn.btn-sixth:hover .pxl-icon svg {
  fill: #fff;
}
.btn.btn-seventh, button.btn-seventh, .button.btn-seventh, input[type="submit"].btn-seventh, input[type="button"].btn-seventh, .pxl-btn.btn-seventh {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  align-items: normal;
}
.btn.btn-seventh .pxl-button-text, button.btn-seventh .pxl-button-text, .button.btn-seventh .pxl-button-text, input[type="submit"].btn-seventh .pxl-button-text, input[type="button"].btn-seventh .pxl-button-text, .pxl-btn.btn-seventh .pxl-button-text {
  border-radius: 2px;
  padding: 16px 37px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-seventh .pxl-button-text::before, button.btn-seventh .pxl-button-text::before, .button.btn-seventh .pxl-button-text::before, input[type="submit"].btn-seventh .pxl-button-text::before, input[type="button"].btn-seventh .pxl-button-text::before, .pxl-btn.btn-seventh .pxl-button-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  z-index: -1;
}
.btn.btn-seventh .pxl-button-text::after, button.btn-seventh .pxl-button-text::after, .button.btn-seventh .pxl-button-text::after, input[type="submit"].btn-seventh .pxl-button-text::after, input[type="button"].btn-seventh .pxl-button-text::after, .pxl-btn.btn-seventh .pxl-button-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  background-color: #0C0D02;
  transform-origin: left center;
  transform: scale(0, 1);
  transition: transform 0.35s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  z-index: -1;
}
.btn.btn-seventh.icon-ps-right .pxl-icon, button.btn-seventh.icon-ps-right .pxl-icon, .button.btn-seventh.icon-ps-right .pxl-icon, input[type="submit"].btn-seventh.icon-ps-right .pxl-icon, input[type="button"].btn-seventh.icon-ps-right .pxl-icon, .pxl-btn.btn-seventh.icon-ps-right .pxl-icon {
  margin-left: 2px;
}
.btn.btn-seventh .pxl-icon, button.btn-seventh .pxl-icon, .button.btn-seventh .pxl-icon, input[type="submit"].btn-seventh .pxl-icon, input[type="button"].btn-seventh .pxl-icon, .pxl-btn.btn-seventh .pxl-icon {
  border-radius: 2px;
  align-items: center;
  padding: 12px;
  position: relative;
  transition: all 350ms ease;
  background-color: var(--primary-color);
  color: #fff;
  min-width: max-content;
}
.btn.btn-seventh .pxl-icon svg, button.btn-seventh .pxl-icon svg, .button.btn-seventh .pxl-icon svg, input[type="submit"].btn-seventh .pxl-icon svg, input[type="button"].btn-seventh .pxl-icon svg, .pxl-btn.btn-seventh .pxl-icon svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}
.btn.btn-seventh:hover, button.btn-seventh:hover, .button.btn-seventh:hover, input[type="submit"].btn-seventh:hover, input[type="button"].btn-seventh:hover, .pxl-btn.btn-seventh:hover {
  background-color: transparent;
}
.btn.btn-seventh:hover.icon-ps-right .pxl-icon, button.btn-seventh:hover.icon-ps-right .pxl-icon, .button.btn-seventh:hover.icon-ps-right .pxl-icon, input[type="submit"].btn-seventh:hover.icon-ps-right .pxl-icon, input[type="button"].btn-seventh:hover.icon-ps-right .pxl-icon, .pxl-btn.btn-seventh:hover.icon-ps-right .pxl-icon {
  transform: translateX(-2px);
}
.btn.btn-seventh:hover .pxl-icon, button.btn-seventh:hover .pxl-icon, .button.btn-seventh:hover .pxl-icon, input[type="submit"].btn-seventh:hover .pxl-icon, input[type="button"].btn-seventh:hover .pxl-icon, .pxl-btn.btn-seventh:hover .pxl-icon {
  border-radius: 0 2px 2px 0;
}
.btn.btn-seventh:hover .pxl-button-text, button.btn-seventh:hover .pxl-button-text, .button.btn-seventh:hover .pxl-button-text, input[type="submit"].btn-seventh:hover .pxl-button-text, input[type="button"].btn-seventh:hover .pxl-button-text, .pxl-btn.btn-seventh:hover .pxl-button-text {
  border-radius: 2px 0 0 2px;
}
.btn.btn-seventh:hover .pxl-button-text::after, button.btn-seventh:hover .pxl-button-text::after, .button.btn-seventh:hover .pxl-button-text::after, input[type="submit"].btn-seventh:hover .pxl-button-text::after, input[type="button"].btn-seventh:hover .pxl-button-text::after, .pxl-btn.btn-seventh:hover .pxl-button-text::after {
  transform-origin: left center;
  transform: scale(1, 1);
}
.btn.btn-eighth, button.btn-eighth, .button.btn-eighth, input[type="submit"].btn-eighth, input[type="button"].btn-eighth, .pxl-btn.btn-eighth {
  padding: 12px 37px;
  border-radius: 30px;
  background-color: #262626;
  position: relative;
  overflow: hidden;
}
.btn.btn-eighth .pxl-button-text, button.btn-eighth .pxl-button-text, .button.btn-eighth .pxl-button-text, input[type="submit"].btn-eighth .pxl-button-text, input[type="button"].btn-eighth .pxl-button-text, .pxl-btn.btn-eighth .pxl-button-text {
  position: relative;
  z-index: 1;
}
.btn.btn-eighth .su-button-effect, button.btn-eighth .su-button-effect, .button.btn-eighth .su-button-effect, input[type="submit"].btn-eighth .su-button-effect, input[type="button"].btn-eighth .su-button-effect, .pxl-btn.btn-eighth .su-button-effect {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.btn.btn-eighth:hover, button.btn-eighth:hover, .button.btn-eighth:hover, input[type="submit"].btn-eighth:hover, input[type="button"].btn-eighth:hover, .pxl-btn.btn-eighth:hover {
  background-color: var(--primary-color);
  color: #262626;
}
.btn.btn-eighth:hover .su-button-effect, button.btn-eighth:hover .su-button-effect, .button.btn-eighth:hover .su-button-effect, input[type="submit"].btn-eighth:hover .su-button-effect, input[type="button"].btn-eighth:hover .su-button-effect, .pxl-btn.btn-eighth:hover .su-button-effect {
  width: 225%;
  height: calc(var(--btn-eighth-width) * 2.25);
}
.btn .pxl-icon, button .pxl-icon, .button .pxl-icon, input[type="submit"] .pxl-icon, input[type="button"] .pxl-icon, .pxl-btn .pxl-icon {
  display: inline-flex;
  font-size: 20px;
  transition: all 300ms ease-in-out 0s;
}
.btn svg, button svg, .button svg, input[type="submit"] svg, input[type="button"] svg, .pxl-btn svg {
  width: 20px;
  height: 20px;
  transition: all 300ms ease-in-out 0s;
}
.btn.icon-ps-left, button.icon-ps-left, .button.icon-ps-left, input[type="submit"].icon-ps-left, input[type="button"].icon-ps-left, .pxl-btn.icon-ps-left {
  flex-direction: row-reverse;
}
.btn.icon-ps-left .pxl-icon, button.icon-ps-left .pxl-icon, .button.icon-ps-left .pxl-icon, input[type="submit"].icon-ps-left .pxl-icon, input[type="button"].icon-ps-left .pxl-icon, .pxl-btn.icon-ps-left .pxl-icon {
  margin-right: 5px;
}
.btn.icon-ps-right .pxl-icon, button.icon-ps-right .pxl-icon, .button.icon-ps-right .pxl-icon, input[type="submit"].icon-ps-right .pxl-icon, input[type="button"].icon-ps-right .pxl-icon, .pxl-btn.icon-ps-right .pxl-icon {
  margin-left: 5px;
}
.pxl-readmore {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  box-shadow: 0 5px 0 #c78e05;
  transition: all 350ms ease 0s;
  padding: 16px 30px;
  border-radius: 27.5px;
  overflow: hidden;
  font-size: 14px;
  font-family: var(--heading-font-family);
  gap: 12px;
  height: 55px;
}
.pxl-readmore:hover {
  box-shadow: 0 0 0 #c78e05;
}
.pxl-readmore:hover .pxli {
  animation: toleftFromright 0.4s forwards;
}
.pxl-readmore .pxli {
  overflow: hidden;
  font-size: 13px;
}
@media (max-width: 575px) {
  .pxl-readmore {
    height: 50px;
    gap: 10px;
    padding: 13px 22px;
  }
}
.link-more .pxl-button-text {
  position: relative;
}
.link-more .pxl-button-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 300ms ease;
}
.link-more .pxl-button-icon {
  position: relative;
  top: 1px;
}
.link-more:hover .pxl-button-text::after {
  width: 100%;
}
.link-more:hover .pxl-button-icon {
  animation: toleftFromright 0.4s forwards;
}
@media (min-width: 1200px) {
  .header-height {
    height: 134px;
  }
  .pxl-header-transparent, .pxl-header-transparent-sticky {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
  }
}
#pxl-header {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
  transition: all 0.3s cubic-bezier(0.3, 0.4, 0.5, 1) 0s;
}
.header-type-df {
  position: relative;
  padding: 15px 0;
}
.header-type-df.h-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  -webkit-transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  -khtml-transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  -moz-transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  -ms-transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  transition: 0.6s cubic-bezier(0.3, 0.4, 0.5, 1);
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
.pxl-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 999;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -khtml-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -moz-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -ms-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -o-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
}
.pxl-header-sticky.h-fixed {
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.pxl-header-sticky.pxl-header-rotate-x {
  -webkit-transition: all 0.3s ease-out !important;
  -khtml-transition: all 0.3s ease-out !important;
  -moz-transition: all 0.3s ease-out !important;
  -ms-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  -webkit-transform: perspective(300px) rotateX(-90deg);
  transform: perspective(300px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -khtml-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.pxl-header-sticky.pxl-header-rotate-x.h-fixed {
  -webkit-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.pxl-header-main-sticky {
  z-index: 1;
}
.pxl-header-main-sticky.h-fixed {
  position: fixed;
  z-index: 999;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -webkit-animation: 0.45s ease-out headerSlideDown;
  -khtml-animation: 0.45s ease-out headerSlideDown;
  -moz-animation: 0.45s ease-out headerSlideDown;
  -ms-animation: 0.45s ease-out headerSlideDown;
  -o-animation: 0.45s ease-out headerSlideDown;
  animation: 0.45s ease-out headerSlideDown;
}
.pxl-header-transparent-sticky {
  z-index: 1;
}
.pxl-header-transparent-sticky.h-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
  -webkit-animation: 0.5s ease-out headerSlideDown;
  -khtml-animation: 0.5s ease-out headerSlideDown;
  -moz-animation: 0.5s ease-out headerSlideDown;
  -ms-animation: 0.5s ease-out headerSlideDown;
  -o-animation: 0.5s ease-out headerSlideDown;
  animation: 0.5s ease-out headerSlideDown;
}
.pxl-header-fixed-top {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 99;
  -webkit-transition: background 0.4s ease-in-out 0.3s;
  transition: background 0s ease-in-out 0s;
}
.admin-bar .pxl-header-fixed-top {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .pxl-header-fixed-top {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .pxl-header-fixed-top {
    top: 0;
  }
}
@media (max-width: 1199px) {
  .pxl-header-mobile-transparent, .pxl-header-mobile-transparent-sticky {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
  }
}
.pxl-header-mobile-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 999;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -khtml-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -moz-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -ms-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  -o-transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
}
.pxl-header-mobile-sticky.mh-fixed {
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
.pxl-header-mobile-sticky.pxl-header-mobile-rotate-x {
  -webkit-transition: all 0.3s ease-out !important;
  -khtml-transition: all 0.3s ease-out !important;
  -moz-transition: all 0.3s ease-out !important;
  -ms-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  -webkit-transform: perspective(300px) rotateX(-90deg);
  transform: perspective(300px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -khtml-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.pxl-header-mobile-sticky.pxl-header-mobile-rotate-x.mh-fixed {
  -webkit-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.pxl-header-mobile-main-sticky {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out !important;
  -khtml-transition: all 0.3s ease-out !important;
  -moz-transition: all 0.3s ease-out !important;
  -ms-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
}
.pxl-header-mobile-main-sticky.mh-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -webkit-animation: 0.5s ease-out headerSlideDown;
  -khtml-animation: 0.5s ease-out headerSlideDown;
  -moz-animation: 0.5s ease-out headerSlideDown;
  -ms-animation: 0.5s ease-out headerSlideDown;
  -o-animation: 0.5s ease-out headerSlideDown;
  animation: 0.5s ease-out headerSlideDown;
}
.pxl-header-mobile-transparent-sticky {
  z-index: 1;
}
.pxl-header-mobile-transparent-sticky.mh-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -webkit-animation: 0.5s ease-out headerSlideDown;
  -khtml-animation: 0.5s ease-out headerSlideDown;
  -moz-animation: 0.5s ease-out headerSlideDown;
  -ms-animation: 0.5s ease-out headerSlideDown;
  -o-animation: 0.5s ease-out headerSlideDown;
  animation: 0.5s ease-out headerSlideDown;
}
.pxl-header-mobile-fixed-top {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 99;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3 ease;
}
.logged-in .pxl-header-mobile-fixed-top {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in .pxl-header-mobile-fixed-top {
    top: 46px;
  }
}
.header-mobile-nav {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.menu-mobile-toggle-nav {
  display: inline-block;
  width: 32px;
  min-width: 32px;
  height: 22px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav {
    height: 18px;
    min-width: 25px;
  }
}
.menu-mobile-toggle-nav span {
  position: absolute;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  -webkit-transition: width 0.3s linear 0s, background-color 0.3s ease;
  -khtml-transition: width 0.3s linear 0s, background-color 0.3s ease;
  -moz-transition: width 0.3s linear 0s, background-color 0.3s ease;
  -ms-transition: width 0.3s linear 0s, background-color 0.3s ease;
  -o-transition: width 0.3s linear 0s, background-color 0.3s ease;
  transition: width 0.3s linear 0s, background-color 0.3s ease;
}
.menu-mobile-toggle-nav span:nth-child(1) {
  width: 24px;
  top: 0;
  bottom: auto;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav span:nth-child(1) {
    width: 18px;
  }
}
.menu-mobile-toggle-nav span:nth-child(2) {
  width: 32px;
  top: 10px;
  bottom: auto;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav span:nth-child(2) {
    width: 25px;
    top: 8px;
  }
}
.menu-mobile-toggle-nav span:nth-child(3) {
  width: 18px;
  top: auto;
  bottom: 0;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav span:nth-child(3) {
    width: 12px;
  }
}
.menu-mobile-toggle-nav:hover span {
  background-color: var(--second-color);
}
.menu-mobile-toggle-nav:hover span:nth-child(1) {
  width: 32px;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav:hover span:nth-child(1) {
    width: 25px;
  }
}
.menu-mobile-toggle-nav:hover span:nth-child(2) {
  width: 18px;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav:hover span:nth-child(2) {
    width: 12px;
  }
}
.menu-mobile-toggle-nav:hover span:nth-child(3) {
  width: 24px;
}
@media (max-width: 575px) {
  .menu-mobile-toggle-nav:hover span:nth-child(3) {
    width: 18px;
  }
}
.pxl-anchor-icon {
  transition: all 300ms ease-in-out 0s;
}
.pxl-anchor-icon svg, .pxl-anchor-icon i {
  transition: all 300ms ease-in-out 0s;
}
@media (max-width: 1199px) {
  .pxl-header-mobile .header-main-mobile {
    position: relative;
    -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -khtml-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -ms-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -o-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    background-color: #fff;
  }
  .pxl-header-mobile .mobile-menu-toggle .bars {
    line-height: 1;
    cursor: pointer;
  }
  .pxl-header-mobile .mobile-menu-toggle .bars span {
    width: 30px;
    height: 3px;
    background-color: var(--second-color);
    display: block;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
    -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
    -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
    -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
    -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  }
  .pxl-header-mobile .mobile-menu-toggle .bars span:nth-child(2) {
    margin: 7px 0;
  }
  .pxl-header-mobile .mobile-menu-toggle .bars:hover span {
    background-color: var(--primary-color);
  }
  .header-mobile-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header-mobile-content > * {
    max-width: 100%;
  }
}
.logo-default {
  display: block;
}
.logo-default.logo-desktop img {
  max-width: var(--logo-width);
}
.logo-default.logo-mobile {
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo-default.logo-mobile img {
  max-width: var(--logo-mobile_width);
}
.pxl-primary-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  flex-wrap: wrap;
}
.pxl-primary-menu ul, .pxl-primary-menu ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pxl-primary-menu li {
  position: relative;
  padding: 0;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.pxl-primary-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(500px) rotateY(0);
  -khtml-transform: perspective(500px) rotateY(0);
  -moz-transform: perspective(500px) rotateY(0);
  -ms-transform: perspective(500px) rotateY(0);
  -o-transform: perspective(500px) rotateY(0);
  transform: perspective(500px) rotateY(0);
}
.pxl-primary-menu li .main-menu-toggle {
  display: none;
}
.pxl-primary-menu > li {
  cursor: pointer;
  flex: 0 0 auto;
  width: auto;
  margin: 0 12px;
  display: inline-flex;
}
.pxl-primary-menu > li:after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: -15px;
  z-index: 2;
}
.pxl-primary-menu > li > a {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font-family);
  line-height: 1.4285714286;
  letter-spacing: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.pxl-primary-menu > li > a .pxl-icon {
  width: 10px;
  height: auto;
  font-size: 14px;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: -18px;
  opacity: 0;
  -webkit-transform: scaleY(0) translateY(-50%);
  -khtml-transform: scaleY(0) translateY(-50%);
  -moz-transform: scaleY(0) translateY(-50%);
  -ms-transform: scaleY(0) translateY(-50%);
  -o-transform: scaleY(0) translateY(-50%);
  transform: scaleY(0) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-primary-menu > li > a svg {
  width: 24px;
  height: auto;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: -24px;
  opacity: 0;
  -webkit-transform: scaleY(0) translateY(-50%);
  -khtml-transform: scaleY(0) translateY(-50%);
  -moz-transform: scaleY(0) translateY(-50%);
  -ms-transform: scaleY(0) translateY(-50%);
  -o-transform: scaleY(0) translateY(-50%);
  transform: scaleY(0) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: var(--second-color);
}
.pxl-primary-menu > li.active > a, .pxl-primary-menu > li.active > .main-menu-toggle, .pxl-primary-menu > li.current-menu-item > a, .pxl-primary-menu > li.current-menu-item > .main-menu-toggle, .pxl-primary-menu > li.current-menu-ancestor > a, .pxl-primary-menu > li.current-menu-ancestor > .main-menu-toggle, .pxl-primary-menu > li:hover > a, .pxl-primary-menu > li:hover > .main-menu-toggle {
  color: var(--heading-color);
}
.pxl-primary-menu > li.active > a .pxl-icon, .pxl-primary-menu > li.active > a svg, .pxl-primary-menu > li.current-menu-item > a .pxl-icon, .pxl-primary-menu > li.current-menu-item > a svg, .pxl-primary-menu > li.current-menu-ancestor > a .pxl-icon, .pxl-primary-menu > li.current-menu-ancestor > a svg, .pxl-primary-menu > li:hover > a .pxl-icon, .pxl-primary-menu > li:hover > a svg {
  opacity: 1;
  -webkit-transform: scaleY(1) translateY(-50%);
  -khtml-transform: scaleY(1) translateY(-50%);
  -moz-transform: scaleY(1) translateY(-50%);
  -ms-transform: scaleY(1) translateY(-50%);
  -o-transform: scaleY(1) translateY(-50%);
  transform: scaleY(1) translateY(-50%);
}
.pxl-primary-menu > li.pxl-megamenu.current-menu-item:before, .pxl-primary-menu > li.pxl-megamenu.current-menu-ancestor:before {
  width: 0;
  height: 0;
  -webkit-transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
  -khtml-transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
  -moz-transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
  -ms-transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
  -o-transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
  transition: width 0.8s ease 0s, height 0.3s ease 0.3s;
}
.pxl-primary-menu > li > .main-menu-toggle {
  line-height: 1;
  align-self: center;
  margin-left: 6px;
  font-weight: normal;
  color: var(--heading-color);
  font-size: 12px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-primary-menu > li > .main-menu-toggle:before {
  font-family: "pxli";
  content: "";
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  display: inline-block;
}
[dir="rtl"] .pxl-primary-menu > li > .main-menu-toggle {
  margin-left: 0;
  margin-right: 8px;
}
.pxl-primary-menu > li > .sub-menu {
  left: -15px;
}
[dir="rtl"] .pxl-primary-menu > li > .sub-menu {
  left: auto;
  right: -15px;
}
.pxl-primary-menu > li.active > a, .pxl-primary-menu > li.active > .main-menu-toggle, .pxl-primary-menu > li:hover > a, .pxl-primary-menu > li:hover > .main-menu-toggle {
  color: var(--heading-color);
}
.pxl-primary-menu > li.active > a .pxl-menu-title:after, .pxl-primary-menu > li.active > .main-menu-toggle .pxl-menu-title:after, .pxl-primary-menu > li:hover > a .pxl-menu-title:after, .pxl-primary-menu > li:hover > .main-menu-toggle .pxl-menu-title:after {
  background: var(--heading-color);
}
.pxl-primary-menu > li.active > .main-menu-toggle:before, .pxl-primary-menu > li:hover > .main-menu-toggle:before {
  transform: rotate(180deg);
}
.pxl-primary-menu .sub-menu:not(.pxl-mega-menu) {
  padding: 15px;
}
.pxl-primary-menu .sub-menu {
  width: 250px;
  color: #0a0a0a;
  background-color: #FFFFFF;
  background-repeat: repeat-x;
  background-position: top left;
  position: absolute;
  top: calc(100% + 10px);
  left: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-transform: perspective(500px) rotateY(20deg);
  -khtml-transform: perspective(500px) rotateY(20deg);
  -moz-transform: perspective(500px) rotateY(20deg);
  -ms-transform: perspective(500px) rotateY(20deg);
  -o-transform: perspective(500px) rotateY(20deg);
  transform: perspective(500px) rotateY(20deg);
  transform-origin: -50% 0%;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -khtml-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -moz-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -ms-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -o-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -webkit-transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
  -khtml-transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
  -moz-transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
  -ms-transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.76, 1), opacity 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.pxl-primary-menu .sub-menu.back {
  left: auto;
  right: 100%;
}
[dir="rtl"] .pxl-primary-menu .sub-menu {
  left: auto;
  right: 100%;
}
[dir="rtl"] .pxl-primary-menu .sub-menu.back {
  right: auto;
  left: 100%;
}
.pxl-primary-menu .sub-menu a {
  -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.pxl-primary-menu .sub-menu li {
  padding: 0;
}
.pxl-primary-menu .sub-menu li:last-child a {
  border-bottom: 0;
}
.pxl-primary-menu .sub-menu li > .main-menu-toggle {
  line-height: 1;
  align-self: center;
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 15px;
  color: var(--body-color) !important;
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: color 0.3s ease;
  -khtml-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.pxl-primary-menu .sub-menu li > .main-menu-toggle:before {
  font-family: "pxli";
  content: "";
}
.pxl-primary-menu .sub-menu li > a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  padding: 14px 20px 14px 10px;
  color: #0a0a0a;
  background-color: transparent;
  border-bottom: 1px solid #e4e8ec;
  white-space: nowrap;
}
.pxl-primary-menu .sub-menu li > a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary-color);
  vertical-align: middle;
  margin-right: 7px;
  transform: scale(0);
}
.pxl-primary-menu .sub-menu li > a .pxl-menu-title {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.39, 0.58, 0.57, 1);
  transform: translateX(-23px);
}
.pxl-primary-menu .sub-menu li > a .pxl-menu-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary-color);
  vertical-align: middle;
  margin-right: 10px;
  transform: scale(0) translateX(-2px);
}
.pxl-primary-menu .sub-menu li > a:hover::before {
  transform: scale(1);
  transition: all 200ms linear 200ms;
}
.pxl-primary-menu .sub-menu li > a:hover .pxl-menu-title {
  transform: translateX(0);
}
.pxl-primary-menu .sub-menu li > a:hover .pxl-menu-title::before {
  transform: scale(1) translateX(-2px);
  transition: all 200ms linear 300ms;
}
.pxl-primary-menu .sub-menu li:hover > .sub-menu {
  top: -15px;
}
.pxl-primary-menu .sub-menu li:hover > .main-menu-toggle {
  color: var(--heading-color);
}
.pxl-primary-menu .sub-menu li.active > a, .pxl-primary-menu .sub-menu li.current-menu-item > a, .pxl-primary-menu .sub-menu li.current-menu-ancestor > a {
  background-color: transparent;
}
.pxl-primary-menu .sub-menu li.active > a::before, .pxl-primary-menu .sub-menu li.current-menu-item > a::before, .pxl-primary-menu .sub-menu li.current-menu-ancestor > a::before {
  transform: scale(1);
}
.pxl-primary-menu .sub-menu li.active > a .pxl-menu-title, .pxl-primary-menu .sub-menu li.current-menu-item > a .pxl-menu-title, .pxl-primary-menu .sub-menu li.current-menu-ancestor > a .pxl-menu-title {
  transform: translateX(0);
}
.pxl-primary-menu .sub-menu li.active > a .pxl-menu-title::before, .pxl-primary-menu .sub-menu li.current-menu-item > a .pxl-menu-title::before, .pxl-primary-menu .sub-menu li.current-menu-ancestor > a .pxl-menu-title::before {
  transform: scale(1) translateX(-2px);
}
.pxl-primary-menu .pxl-parent-menu-icon {
  float: right;
}
.pxl-primary-menu .pxl-parent-menu-icon:before {
  margin-left: 5px;
}
[dir="rtl"] .pxl-primary-menu .pxl-parent-menu-icon:before {
  margin-left: 0;
  margin-right: 5px;
}
[dir="rtl"] .pxl-primary-menu .pxl-parent-menu-icon {
  float: left;
}
.style-vr .pxl-primary-menu {
  margin-left: 0;
  margin-right: 0;
  padding: 0 30px;
}
.style-vr .pxl-primary-menu > li {
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.style-vr .pxl-primary-menu > li > * {
  max-width: 100%;
}
.style-vr .pxl-primary-menu > li > .main-menu-toggle {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 30px;
  font-size: 16px;
}
.style-vr .pxl-primary-menu > li > .main-menu-toggle:before {
  content: "";
}
.style-vr .pxl-primary-menu > li > a {
  font-weight: normal;
  line-height: 60px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.style-vr .pxl-primary-menu > li.active > a, .style-vr .pxl-primary-menu > li.active > .main-menu-toggle, .style-vr .pxl-primary-menu > li.current-menu-item > a, .style-vr .pxl-primary-menu > li.current-menu-item > .main-menu-toggle, .style-vr .pxl-primary-menu > li.current-menu-ancestor > a, .style-vr .pxl-primary-menu > li.current-menu-ancestor > .main-menu-toggle, .style-vr .pxl-primary-menu > li:hover > a, .style-vr .pxl-primary-menu > li:hover > .main-menu-toggle {
  color: var(--heading-color);
  font-weight: 700;
}
.style-vr .pxl-primary-menu > li > .sub-menu {
  left: 0;
  right: 0;
}
[dir="rtl"] .style-vr .pxl-primary-menu > li > .sub-menu {
  left: 0;
}
.style-vr .pxl-primary-menu .sub-menu {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 30px 30px;
}
.style-vr .pxl-primary-menu .sub-menu a:hover {
  padding-left: 0;
}
.is-arrow .pxl-primary-menu li .main-menu-toggle {
  display: block;
}
.pxl-navigation .align-items-center {
  justify-content: end;
}
.style-st1 .pxl-primary-menu > li > a {
  position: relative;
}
.style-st1 .pxl-primary-menu > li > a::before, .style-st1 .pxl-primary-menu > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}
.style-st1 .pxl-primary-menu > li > a::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}
.style-st1 .pxl-primary-menu > li > a::after {
  transition: opacity 0.3s;
  opacity: 0;
  transition-delay: 0s;
}
.style-st1 .pxl-primary-menu > li:hover > a::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}
.style-st1 .pxl-primary-menu > li:hover > a::after {
  opacity: 1;
  transition-delay: 0.3s;
}
.style-st2 .pxl-primary-menu > li > a::before {
  display: none;
}
.style-st2 .pxl-primary-menu li .main-menu-toggle {
  font-size: 16px;
  position: relative;
}
.style-st2 .pxl-primary-menu li .main-menu-toggle::before {
  content: "";
}
.style-st2 .pxl-divider-move {
  position: absolute;
  display: none;
  pointer-events: none;
  transition: 0.4s ease-in-out;
  inset: 0;
  z-index: 0;
}
.style-st2 .pxl-divider-move::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 10px;
}
.style-st3 .pxl-primary-menu {
  margin-left: 0;
  margin-right: 0;
}
.style-st3 .pxl-primary-menu > li {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  flex: 1;
  list-style: none;
}
.style-st3 .pxl-primary-menu > li > a {
  position: relative;
  width: 100%;
  height: 80px;
  padding: 12px 16px;
  align-items: start;
}
.style-st3 .pxl-primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fafafa;
  transition: all 350ms ease;
}
.style-st3 .pxl-primary-menu > li .main-menu-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.style-st3 .pxl-primary-menu > li .main-menu-toggle::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 50%;
}
.style-st3 .pxl-primary-menu > li > .sub-menu {
  left: 0;
}
.style-st3 .pxl-primary-menu > li.current-menu-ancestor > a::after, .style-st3 .pxl-primary-menu > li:hover > a::after {
  width: 100%;
}
.style-st4 .pxl-primary-menu::before {
  --width-border: 64px;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3px;
  width: calc(100% - var(--width-border));
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.style-st4 .pxl-primary-menu > li::before {
  --color-boxshadow: rgba(255, 255, 255, 0.1);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 0px 0px var(--color-boxshadow);
  transition: all 0.35s ease;
}
.style-st4 .pxl-primary-menu > li .main-menu-toggle {
  margin-left: 4px;
}
.style-st4 .pxl-primary-menu > li.current-menu-ancestor::before, .style-st4 .pxl-primary-menu > li:hover::before {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 0px 6px var(--color-boxshadow);
}
li.pxl-megamenu {
  position: static;
}
.pxl-mega-menu {
  max-width: var(--megamenu-max-width);
}
@media (min-width: 1200px) {
  .pxl-mega-menu {
    left: 50% !important;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    -khtml-box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    -ms-box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    -o-box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(27, 26, 26, 0.3);
    -webkit-transform: translate(-50%, 20px) !important;
    -khtml-transform: translate(-50%, 20px) !important;
    -moz-transform: translate(-50%, 20px) !important;
    -ms-transform: translate(-50%, 20px) !important;
    -o-transform: translate(-50%, 20px) !important;
    transform: translate(-50%, 20px) !important;
  }
}
@media (max-width: 1199px) {
  .pxl-mega-menu .elementor-section {
    background-image: none !important;
    background-color: transparent !important;
  }
  .pxl-mega-menu .elementor-background-overlay {
    background-image: none !important;
    background-color: transparent !important;
  }
}
.pxl-mega-menu .pxl-heading-wrap .heading-title {
  display: inline-flex;
}
.pxl-primary-menu li:hover > .sub-menu.pxl-mega-menu {
  -webkit-transform: translate(-50%, 0) !important;
  -khtml-transform: translate(-50%, 0) !important;
  -moz-transform: translate(-50%, 0) !important;
  -ms-transform: translate(-50%, 0) !important;
  -o-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;
}
.pxl-primary-menu .sub-menu.pxl-mega-menu {
  width: 100%;
  background-color: #fff;
}
.sub-menu.pxl-mega-menu {
  width: 100%;
}
.sub-menu.pxl-mega-menu .elementor-container .elementor-container {
  max-width: 100% !important;
}
@media (min-width: 1200px) {
  .header-main-menu .sub-menu.pxl-mega-menu {
    padding-left: 35px;
    padding-right: 35px;
  }
  .pxl-primary-menu .sub-menu.pxl-mega-menu a:not(.pxl-btn) {
    border-bottom: 0;
    overflow: visible;
  }
  .pxl-primary-menu .sub-menu.pxl-mega-menu a:not(.pxl-btn):before {
    display: none;
  }
  .pxl-primary-menu .sub-menu.pxl-mega-menu a:not(.pxl-btn):hover {
    background-color: transparent;
  }
  .pxl-primary-menu .sub-menu.pxl-mega-menu .current-menu-item > a:not(.pxl-btn), .pxl-primary-menu .sub-menu.pxl-mega-menu .current-menu-ancestor > a:not(.pxl-btn) {
    background-color: transparent;
  }
}
.pxl-nav-menu-mobile ul, .pxl-nav-menu-mobile ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pxl-nav-menu-mobile ul li, .pxl-nav-menu-mobile ol li {
  position: relative;
  padding: 0;
}
.pxl-mobile-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pxl-mobile-menu > li {
  color: var(--link-color);
  position: relative;
}
.pxl-mobile-menu > li > a {
  padding: 10px 0;
  color: var(--link-color);
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  text-transform: capitalize;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.pxl-mobile-menu .menu-item:hover > a, .pxl-mobile-menu .menu-item:active > a, .pxl-mobile-menu .current-menu-item > a, .pxl-mobile-menu .current-menu-ancestor > a {
  color: var(--primary-color);
  background-color: transparent;
}
.pxl-mobile-menu .menu-item:active {
  color: var(--primary-color);
}
.pxl-mobile-menu .menu-item:active > a {
  color: var(--primary-color);
  background-color: transparent;
}
.pxl-mobile-menu .sub-menu {
  display: none;
  list-style: none;
}
.pxl-mobile-menu .sub-menu .menu-item {
  position: relative;
  color: #0a0a0a;
}
.pxl-mobile-menu .sub-menu .menu-item > a {
  padding: 5px 15px;
  display: inline-block;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  font-family: var(--heading-font-family);
  text-transform: capitalize;
  position: relative;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.pxl-mobile-menu .sub-menu .menu-item:hover, .pxl-mobile-menu .sub-menu .current-menu-item, .pxl-mobile-menu .sub-menu .current-menu-ancestor {
  color: var(--heading-color);
}
.pxl-mobile-menu .sub-menu .menu-item:hover > a, .pxl-mobile-menu .sub-menu .current-menu-item > a, .pxl-mobile-menu .sub-menu .current-menu-ancestor > a {
  color: var(--primary-color);
  background-color: transparent;
}
.pxl-mobile-menu .sub-menu .menu-item:active {
  color: var(--heading-color);
}
.pxl-mobile-menu .sub-menu .menu-item:active > a {
  color: var(--heading-color);
  background-color: transparent;
}
.pxl-mobile-menu .sub-menu .pxl-heading-wrap {
  display: none;
}
.pxl-mobile-menu .main-menu-toggle {
  cursor: pointer;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 18px;
  position: absolute;
  right: -6px;
  text-align: center;
  top: 13px;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-border-radius: 4px 4px 0 4px;
  -khtml-border-radius: 4px 4px 0 4px;
  -moz-border-radius: 4px 4px 0 4px;
  -ms-border-radius: 4px 4px 0 4px;
  -o-border-radius: 4px 4px 0 4px;
  border-radius: 4px 4px 0 4px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.pxl-mobile-menu .main-menu-toggle:before {
  content: "";
  font-family: "pxli";
}
.pxl-mobile-menu .main-menu-toggle.open:before {
  content: "";
  font-family: "pxli";
}
.pxl-mobile-menu .sub-menu .main-menu-toggle {
  top: 5px;
}
.pxl-nav-menu-inner.style-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -25px;
  margin-right: -25px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .pxl-nav-menu-inner.style-2 ul {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 575px) {
  .pxl-nav-menu-inner.style-2 ul {
    justify-content: center;
  }
}
.pxl-nav-menu-inner.style-2 ul li {
  position: relative;
  padding: 0;
}
.pxl-nav-menu-inner.style-2 ul > li {
  flex: 0 0 auto;
  width: auto;
  margin: 0 25px;
  display: inline-flex;
}
@media (max-width: 1199px) {
  .pxl-nav-menu-inner.style-2 ul > li {
    margin: 0 15px;
  }
}
.pxl-nav-menu-inner.style-2 ul > li > a {
  text-transform: uppercase;
  display: inline-block;
  color: #7e7e7e;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media (max-width: 1199px) {
  .pxl-nav-menu-inner.style-2 ul > li > a {
    letter-spacing: 0;
  }
}
.pxl-nav-menu-inner.style-2 ul > li.active > a, .pxl-nav-menu-inner.style-2 ul > li.active > .main-menu-toggle, .pxl-nav-menu-inner.style-2 ul > li.current-menu-item > a, .pxl-nav-menu-inner.style-2 ul > li.current-menu-item > .main-menu-toggle, .pxl-nav-menu-inner.style-2 ul > li.current-menu-ancestor > a, .pxl-nav-menu-inner.style-2 ul > li.current-menu-ancestor > .main-menu-toggle, .pxl-nav-menu-inner.style-2 ul > li:hover > a, .pxl-nav-menu-inner.style-2 ul > li:hover > .main-menu-toggle {
  color: #fff;
}
@media (min-width: 1200px) {
  .pxl-canvas-menu {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .pxl-canvas-menu ul, .pxl-canvas-menu ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pxl-canvas-menu > li {
    position: relative;
  }
  .pxl-canvas-menu > li > a {
    padding: 10px 0;
    font-size: 40px;
    font-family: var(--heading-font-family);
    letter-spacing: 0.02em;
    font-weight: 700;
    position: relative;
    color: var(--heading-color);
  }
  .pxl-canvas-menu > li > a .pxl-menu-title {
    position: relative;
  }
  .pxl-canvas-menu > li > a .pxl-menu-title:after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--heading-color);
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    -khtml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .pxl-canvas-menu > li > a:active .pxl-menu-title:after, .pxl-canvas-menu > li > a:hover .pxl-menu-title:after {
    width: 100%;
  }
  .pxl-canvas-menu > li.current-menu-parent > a, .pxl-canvas-menu > li.current-menu-ancestor > a {
    color: var(--second-color);
  }
  .pxl-canvas-menu > li.current-menu-parent > a .pxl-menu-title:after, .pxl-canvas-menu > li.current-menu-ancestor > a .pxl-menu-title:after {
    background-color: var(--second-color);
  }
  .pxl-canvas-menu .sub-menu {
    display: none;
    list-style: none;
    padding: 8px 0 18px 3px;
  }
  .pxl-canvas-menu .sub-menu .menu-item {
    position: relative;
    color: var(--heading-color);
  }
  .pxl-canvas-menu .sub-menu .menu-item > a {
    padding: 2px 15px;
    display: inline-block;
    color: var(--heading-color);
    font-size: 18px !important;
    position: relative;
  }
  .pxl-canvas-menu .sub-menu .menu-item > a:before {
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    top: 50%;
    left: 0;
    background-color: var(--second-color);
    margin-top: -2.5px;
    border-radius: 50%;
  }
  .pxl-canvas-menu .sub-menu .menu-item:hover, .pxl-canvas-menu .sub-menu .menu-item:active, .pxl-canvas-menu .sub-menu .current-menu-item, .pxl-canvas-menu .sub-menu .current-menu-ancestor {
    color: var(--second-color);
  }
  .pxl-canvas-menu .sub-menu .menu-item:hover > a, .pxl-canvas-menu .sub-menu .menu-item:active > a, .pxl-canvas-menu .sub-menu .current-menu-item > a, .pxl-canvas-menu .sub-menu .current-menu-ancestor > a {
    color: var(--second-color);
  }
  .pxl-canvas-menu .pxl-mega-menu .elementor-section {
    padding: 0;
  }
  .pxl-canvas-menu .pxl-mega-menu .elementor-section .elementor-column {
    width: 100% !important;
  }
  .pxl-canvas-menu .pxl-mega-menu .elementor-section .elementor-column > .elementor-element-populated {
    padding: 0 !important;
  }
  .pxl-canvas-menu .pxl-mega-menu .hide-in-canvas-menu {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .pxl-canvas-menu > li > a {
    font-size: 32px;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .pxl-canvas-menu .pxl-mega-menu {
    width: auto;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translate(0, 0) !important;
    -khtml-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }
}
.pxl-page-title-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(2, 13, 22, 0.5);
  z-index: -1;
}
.pxl-pagetitle.layout-df {
  background-color: rgba(2, 13, 22, 0.75);
  background-position: center 80%;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  overflow: hidden;
}
.pxl-pagetitle.layout-df .main-title {
  font-size: 55px;
  line-height: 1.3636363636;
  color: #f4f5f7;
  margin-bottom: 8px;
  word-wrap: break-word;
  position: relative;
  text-align: center;
}
@media (max-width: 1399px) {
  .pxl-pagetitle.layout-df .main-title {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .pxl-pagetitle.layout-df .main-title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .pxl-pagetitle.layout-df .main-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .pxl-pagetitle.layout-df .main-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .pxl-pagetitle.layout-df .main-title {
    font-size: 32px;
  }
}
.pxl-pagetitle.layout-df .sub-title {
  color: #fff;
  text-align: center;
  max-width: 746px;
}
.pxl-pagetitle.layout-df.pxl-animate .pxl-page-title .main-title:after {
  clip-path: inset(0 0 0 0);
}
.pxl-pagetitle.layout-df .pxl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: -50px;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .breadcrumb-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .breadcrumb-inner > * {
  max-width: 100%;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .br-item {
  flex: 0 0 auto;
  max-width: 100%;
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .br-item a {
  color: #fff;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .br-item:last-child .br-divider {
  display: none !important;
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .br-divider {
  font-size: 14px;
  margin: 0 12px;
  display: inline-flex;
}
@media (max-width: 767px) {
  .pxl-pagetitle.layout-df .pxl-breadcrumb .br-divider {
    font-size: 12px;
  }
}
.pxl-pagetitle.layout-df .pxl-breadcrumb .br-item + .br-item::before {
  display: none;
}
.pxl-pt-wrap .main-title {
  font-size: 80px;
  line-height: 1;
  word-wrap: break-word;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: -2.4px;
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(250, 250, 250, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  padding-bottom: 6px;
}
@media (max-width: 1199px) {
  .pxl-pt-wrap .main-title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .pxl-pt-wrap .main-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .pxl-pt-wrap .main-title {
    font-size: 50px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .pxl-pt-wrap .main-title {
    font-size: 40px;
  }
}
.pxl-pt-wrap .sub-title {
  color: #fff;
  text-align: center;
  max-width: 860px;
  margin: auto;
  margin-top: 10px;
}
.pxl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
}
.pxl-breadcrumb .breadcrumb-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pxl-breadcrumb .breadcrumb-inner > * {
  max-width: 100%;
}
.pxl-breadcrumb .br-item {
  flex: 0 0 auto;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  display: inline-flex;
  align-items: center;
  color: #FAFAFA;
}
.pxl-breadcrumb .br-item a {
  color: rgba(250, 250, 250, 0.7);
  font-weight: 400;
}
.pxl-breadcrumb .br-item a::after {
  bottom: 2px;
}
.pxl-breadcrumb .br-item:last-child .br-divider {
  display: none !important;
}
.pxl-breadcrumb .br-divider {
  font-size: 14px;
  margin: 0 8px;
  display: inline-flex;
  color: rgba(250, 250, 250, 0.7);
}
@media (max-width: 767px) {
  .pxl-breadcrumb .br-divider {
    font-size: 12px;
  }
}
.pxl-breadcrumb .br-divider svg {
  width: 14px;
  height: auto;
  fill: rgba(250, 250, 250, 0.7);
}
.pxl-breadcrumb .br-item + .br-item::before {
  display: none;
}
.pxl-page {
  position: relative;
  overflow-x: clip;
}
.pxl-main:not(.page-builder-el) {
  padding-top: 80px;
  padding-bottom: 80px;
}
body.blog .pxl-main, body.single-post .pxl-main, body.search-results .pxl-main {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  body.blog .pxl-main, body.single-post .pxl-main, body.search-results .pxl-main {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media (max-width: 767px) {
  body.blog .pxl-main, body.single-post .pxl-main, body.search-results .pxl-main {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 575px) {
  body.blog .pxl-main, body.single-post .pxl-main, body.search-results .pxl-main {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
body.archive .pxl-main {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  body.archive .pxl-main {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media (max-width: 767px) {
  body.archive .pxl-main {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 575px) {
  body.archive .pxl-main {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
body.side-panel-open.pos-full::-webkit-scrollbar {
  height: 0;
  width: 0;
  background-color: transparent;
}
body.side-panel-open.pos-full::-webkit-scrollbar-track {
  border-radius: 0;
}
body.side-panel-open.pos-full::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .pxl-sidebar-area {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .pxl-sidebar-area {
    margin-top: 80px;
  }
}
.pxl-entry-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pxl-entry-content > * {
  max-width: 100%;
}
.pxl-entry-content > div {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}
.pxl-row-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.pxl-content-wrap {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.pxl-content-wrap .pxl-content-area {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
@media (min-width: 992px) {
  .pxl-content-wrap .pxl-content-area {
    width: 70%;
  }
}
.pxl-content-wrap .pxl-sidebar-area {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
@media (min-width: 992px) {
  .pxl-content-wrap .pxl-sidebar-area {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .pxl-content-wrap.no-sidebar .pxl-content-area {
    flex: 0 0 auto;
    width: 100%;
  }
}
.error404 .pxl-main {
  padding-top: 0;
  padding-bottom: 0;
}
.error404 .page-404-wrap {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  height: 100vh;
  background-position: center bottom;
  padding-left: 15px;
  padding-right: 15px;
}
.error404 .page-404-wrap .page-404-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 115px;
  height: 100%;
}
@media (max-width: 1800px) {
  .error404 .page-404-wrap .page-404-content {
    padding-left: 65px;
  }
}
@media (max-width: 1599px) {
  .error404 .page-404-wrap .page-404-content {
    padding-left: 35px;
  }
}
@media (max-width: 991px) {
  .error404 .page-404-wrap .page-404-content {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .error404 .page-404-wrap .img-404 {
    max-width: 30vw;
  }
}
@media (max-width: 767px) {
  .error404 .page-404-wrap .img-404 {
    max-width: 40vw;
  }
}
.error404 .page-404-wrap .title {
  font-size: 90px;
  line-height: 1.125;
  margin-bottom: 15px;
  margin-top: 8px;
  letter-spacing: 0;
  font-weight: 400;
}
@media (max-width: 1599px) {
  .error404 .page-404-wrap .title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .error404 .page-404-wrap .title {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .error404 .page-404-wrap .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .error404 .page-404-wrap .title {
    font-size: 30px;
  }
}
.error404 .page-404-wrap .img-404-layer {
  margin-bottom: 20px;
  max-width: 35vw;
}
.error404 .page-404-wrap .desc {
  font-size: 26px;
  line-height: 1.3846153846;
  max-width: 920px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  color: var(--heading-color);
}
@media (max-width: 1599px) {
  .error404 .page-404-wrap .desc {
    max-width: 750px;
  }
}
@media (max-width: 1199px) {
  .error404 .page-404-wrap .desc {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .error404 .page-404-wrap .desc {
    font-size: 16px;
  }
}
.pxl-archive-post {
  margin-bottom: 63.5px;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .pxl-archive-post {
    margin-bottom: 50px;
  }
}
.pxl-archive-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.pxl-archive-post .archive-standard {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(25, 27, 29, 0.1);
  margin-bottom: 25px;
}
.pxl-archive-post .post-featured {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 16px;
}
.pxl-archive-post .post-featured img {
  width: 100%;
  height: 616px;
  object-fit: cover;
  transition: all 400ms ease;
}
@media (max-width: 767px) {
  .pxl-archive-post .post-featured img {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .pxl-archive-post .post-featured img {
    height: 400px;
  }
}
.pxl-archive-post .post-featured:hover img {
  transform: scale(1.05) translateX(-3px);
}
.pxl-archive-post .archive-date {
  position: absolute;
  left: 25px;
  top: 24px;
  background-color: var(--heading-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 18px 10px 14px;
  z-index: 1;
}
@media (max-width: 575px) {
  .pxl-archive-post .archive-date {
    left: 15px;
    top: 15px;
    padding: 12px 10px 10px;
  }
}
.pxl-archive-post .archive-date .date {
  font-size: 35px;
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  line-height: 0.943;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.251);
  padding: 0 11px 15px;
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .pxl-archive-post .archive-date .date {
    font-size: 25px;
    padding: 0px 5px 8px;
  }
}
.pxl-archive-post .archive-date .month {
  font-size: 16px;
  font-family: var(--heading-font-family);
  line-height: 2.063;
  color: #fff;
}
@media (max-width: 575px) {
  .pxl-archive-post .archive-date .month {
    font-size: 14px;
  }
}
.pxl-archive-post .post-content {
  position: relative;
}
.pxl-archive-post .post-content .meta-inner {
  display: flex;
  flex-wrap: wrap;
}
.pxl-archive-post .post-content .meta-inner .meta-item {
  display: flex;
  align-items: center;
  line-height: 1.75;
  color: var(--body-color);
  margin-right: 11px;
  text-transform: capitalize;
}
.pxl-archive-post .post-content .meta-inner .meta-item::before {
  content: "";
  position: relative;
  width: 14px;
  height: 2px;
  background-color: var(--third-color);
  margin-right: 12px;
}
.pxl-archive-post .post-content .meta-inner .meta-item:first-child::before {
  display: none;
}
.pxl-archive-post .post-content .meta-inner .meta-item:last-child {
  margin-right: 0;
}
.pxl-archive-post .post-content .meta-inner .meta-item.post-author a {
  width: fit-content;
  color: var(--body-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--body-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  background-position-y: -3px;
}
.pxl-archive-post .post-content .meta-inner .meta-item.post-author a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 575px) {
  .pxl-archive-post .post-content .meta-inner .meta-item {
    margin-right: 7px;
  }
  .pxl-archive-post .post-content .meta-inner .meta-item::before {
    width: 10px;
    margin-right: 7px;
  }
}
.pxl-archive-post .pxli-thumbtack {
  width: 32px;
  height: 32px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--second-color);
  border-radius: 50%;
  margin-right: 3px;
  text-align: center;
  line-height: 32px;
  position: relative;
  top: -4px;
}
.pxl-archive-post .archive-feature + .post-content > .post-category {
  padding-top: 5px;
}
.pxl-archive-post .archive-feature + .post-content > .post-category a {
  color: #E5E5E5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3333333333;
  border-radius: 8px;
  background-color: #000;
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  transition: all 350ms ease;
}
.pxl-archive-post .archive-feature + .post-content > .post-category a:hover {
  background-color: var(--primary-color);
}
.pxl-archive-post .post-title {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  margin-top: 12px;
}
.pxl-archive-post .post-title a {
  color: inherit;
}
.pxl-archive-post .post-title:hover a {
  color: var(--primary-color);
}
.pxl-archive-post .post-excerpt {
  margin-top: 0;
  max-width: 713px;
}
.pxl-archive-post .post-readmore {
  margin-top: 17px;
  transform: translateY(calc(50% + 8px));
}
@media (max-width: 575px) {
  .pxl-archive-post .post-readmore {
    margin-top: 10px;
  }
}
.pxl-archive-post .feature-video iframe, .pxl-archive-post .feature-audio iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.7777777778;
  border-radius: 20px;
}
.pxl-archive-post.type-services .archive-feature img {
  width: 100%;
}
.pxl-archive-post.type-services .post-content .post-category {
  margin-bottom: 0;
  padding-top: 0;
}
.pxl-archive-post.type-teacher .archive-feature img {
  width: 100%;
}
.pxl-archive-post.type-teacher .post-content .post-category {
  margin-bottom: 0;
  padding-top: 0;
}
.pxl-archive-post .archive-quote, .pxl-archive-post .archive-link {
  background-color: var(--heading-color);
  padding: 9px 10px;
  border-radius: 20px;
}
.pxl-archive-post .format-wrap {
  border: 1px dashed rgba(255, 255, 255, 0.251);
  border-radius: 20px;
  padding: 37px 38px 33px 32px;
}
@media (max-width: 767px) {
  .pxl-archive-post .format-wrap {
    padding: 30px 25px 30px 25px;
  }
}
@media (max-width: 575px) {
  .pxl-archive-post .format-wrap {
    padding: 25px 15px 25px 15px;
  }
}
.pxl-archive-post .quote-icon, .pxl-archive-post .link-icon {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-icon, .pxl-archive-post .link-icon {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.pxl-archive-post .quote-icon .icon-quote, .pxl-archive-post .link-icon .icon-quote {
  font-size: 50px;
  line-height: 1.1;
  font-family: var(--heading-font-family);
  color: #fff;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxl-archive-post .quote-icon .icon-quote > span, .pxl-archive-post .link-icon .icon-quote > span {
  height: 25px;
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-icon .icon-quote, .pxl-archive-post .link-icon .icon-quote {
    width: 50px;
    height: 50px;
    font-size: 42px;
  }
  .pxl-archive-post .quote-icon .icon-quote > span, .pxl-archive-post .link-icon .icon-quote > span {
    height: 23px;
  }
}
.pxl-archive-post .quote-icon .quote-text, .pxl-archive-post .link-icon .quote-text {
  font-size: 18px;
  font-family: "Playwrite GB S", Sans-serif;
  color: white;
  line-height: 1.667;
}
.pxl-archive-post .quote-icon .quote-text a, .pxl-archive-post .link-icon .quote-text a {
  color: white;
}
.pxl-archive-post .quote-icon .quote-text a:hover, .pxl-archive-post .link-icon .quote-text a:hover {
  color: var(--third-color);
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-icon .quote-text, .pxl-archive-post .link-icon .quote-text {
    font-size: 16px;
  }
}
.pxl-archive-post .quote-inner, .pxl-archive-post .link-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.129);
  padding-left: 16px;
  padding-top: 17px;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .pxl-archive-post .quote-inner, .pxl-archive-post .link-inner {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-inner, .pxl-archive-post .link-inner {
    padding-top: 15px;
    margin-top: 20px;
  }
}
.pxl-archive-post .quote-inner .meta-item, .pxl-archive-post .link-inner .meta-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-inner .meta-item, .pxl-archive-post .link-inner .meta-item {
    flex-direction: column;
    gap: 5px;
  }
}
.pxl-archive-post .quote-inner .item-date, .pxl-archive-post .link-inner .item-date {
  color: #fff;
  font-size: 14px;
}
.pxl-archive-post .quote-inner .item-date i, .pxl-archive-post .link-inner .item-date i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 14px;
}
.pxl-archive-post .quote-inner .archive-category, .pxl-archive-post .link-inner .archive-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pxl-archive-post .quote-inner .archive-category i, .pxl-archive-post .link-inner .archive-category i {
  color: var(--primary-color);
  font-size: 14px;
}
.pxl-archive-post .quote-inner .archive-category::before, .pxl-archive-post .link-inner .archive-category::before {
  content: "/";
  position: relative;
  color: #fff;
  margin: 0 9px 0 21px;
}
@media (max-width: 575px) {
  .pxl-archive-post .quote-inner .archive-category::before, .pxl-archive-post .link-inner .archive-category::before {
    display: none;
  }
}
.pxl-archive-post .quote-inner .post-category, .pxl-archive-post .link-inner .post-category {
  color: #fff;
}
.pxl-archive-post .quote-inner .post-category a, .pxl-archive-post .link-inner .post-category a {
  font-size: 14px;
  width: fit-content;
  color: #fff;
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  color: inherit;
  background-position-y: -2px;
}
.pxl-archive-post .quote-inner .post-category a:hover, .pxl-archive-post .link-inner .post-category a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.pxl-archive-post .quote-inner .quote-cite, .pxl-archive-post .link-inner .quote-cite {
  font-size: 14px;
  color: white;
  font-family: var(--heading-font-family);
}
.pxl-archive-post .pxl-video-popup, .pxl-archive-post .pxl-media-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pxl-archive-post .pxl-video-popup svg, .pxl-archive-post .pxl-media-popup svg {
  width: 82px;
  height: 85px;
  transition: all 350ms ease 0s;
}
@media (max-width: 575px) {
  .pxl-archive-post .pxl-video-popup svg, .pxl-archive-post .pxl-media-popup svg {
    width: 65px;
    height: 65px;
  }
}
.pxl-archive-post .pxl-video-popup:hover svg, .pxl-archive-post .pxl-media-popup:hover svg {
  transform: scale(0.9);
}
.pxl-archive-post .link-icon .icon-link a {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .pxl-archive-post .link-icon .icon-link a {
    width: 50px;
    height: 50px;
  }
}
.pxl-archive-post .link-icon .icon-link svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
@media (max-width: 575px) {
  .pxl-archive-post .link-icon .icon-link svg {
    width: 22px;
    height: 22px;
  }
}
.pxl-archive-post .archive-link .link-text {
  font-size: 18px;
  font-family: "Playwrite GB S", Sans-serif;
  color: white;
  line-height: 1.667;
}
@media (max-width: 575px) {
  .pxl-archive-post .archive-link .link-text {
    font-size: 16px;
  }
}
.pxl-archive-post .archive-link .btn-button {
  font-size: 14px;
  font-family: var(--heading-font-family);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pxl-archive-post .archive-link .btn-button i {
  font-size: 13px;
  color: var(--third-color);
  position: relative;
  top: 1px;
  transition: all 350ms ease 0s;
}
.pxl-archive-post .archive-link .btn-button span {
  position: relative;
}
.pxl-archive-post .archive-link .btn-button span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 350ms ease 0s;
}
.pxl-archive-post .archive-link .btn-button:hover span::after {
  width: 100%;
}
.pxl-archive-post .archive-link .btn-button:hover i {
  transform: translateX(100%);
  opacity: 0;
}
.mfp-iframe-holder .mfp-close {
  background: transparent;
}
.mfp-iframe-holder .mfp-close:hover {
  color: var(--third-color);
}
.sidebar-left .content-blog .pxl-content-main {
  padding-left: 42px;
}
@media (max-width: 991px) {
  .sidebar-left .content-blog .pxl-content-main {
    padding-left: 0;
  }
}
body.dark-mode .pxl-archive-post .post-title {
  color: #fff;
}
body.dark-mode .pxl-archive-post .archive-feature + .post-content > .post-category a {
  background-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .pxl-archive-post .archive-feature + .post-content > .post-category a:hover {
  background-color: var(--primary-color);
}
.pxl-single-page p:last-child {
  clear: both;
}
.pxl-single-page p:last-child img[class*="align"] {
  margin-bottom: 0;
}
.content-post .elementor-widget-image {
  overflow: hidden;
}
.pxl-single-post .post-title {
  font-size: 70px;
  margin-bottom: 22px;
  text-align: center;
}
@media (max-width: 991px) {
  .pxl-single-post .post-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .pxl-single-post .post-title {
    font-size: 43px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .pxl-single-post .post-title {
    font-size: 36px;
  }
}
.pxl-single-post .content-inner {
  color: var(--body-color);
}
.pxl-single-post .content-inner > p:first-child > iframe {
  margin-top: 8px;
}
.pxl-single-post .post-metas .meta-item {
  font-size: 16px;
  font-family: var(--body-font-family);
  color: var(--heading-color);
  line-height: 1.75;
  display: flex;
  align-items: center;
  margin-right: 11px;
}
@media (max-width: 575px) {
  .pxl-single-post .post-metas .meta-item {
    font-size: 15px;
  }
}
.pxl-single-post .post-metas .meta-item::before {
  content: "";
  position: relative;
  width: 14px;
  height: 2px;
  background-color: var(--third-color);
  display: flex;
  margin-right: 11px;
}
.pxl-single-post .post-metas .meta-item:first-child::before {
  display: none;
}
.pxl-single-post .post-metas .meta-item:last-child {
  margin-right: 0;
}
.pxl-single-post .post-metas .meta-item.post-author a {
  position: relative;
}
.pxl-single-post .post-metas .meta-item.post-author a:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: all 350ms;
}
.pxl-single-post .post-metas .meta-item.post-author a:hover {
  color: inherit;
}
.pxl-single-post .post-metas .meta-item.post-author a:hover:after {
  width: 100%;
}
.pxl-single-post .post-tags > span {
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
}
.pxl-single-post .post-share-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pxl-single-post .post-category a {
  padding: 3.5px 21px;
  border-radius: 4px;
  color: var(--heading-color);
  border: 1px solid rgba(25, 27, 29, 0.1);
  border-radius: 17.5px;
}
.pxl-single-post .post-category a:hover {
  color: #fff;
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.pxl-single-post .post-share-category {
  margin-top: 51px;
}
.pxl-single-post .post-share-category .post-category {
  row-gap: 10px;
}
@media (max-width: 767px) {
  .pxl-single-post .post-share-category {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .pxl-single-post .post-share-category {
    margin-top: 35px;
  }
}
.post-author-summary {
  border: 1px solid rgba(25, 27, 29, 0.1);
  border-radius: 6px;
  padding: 24px;
  margin-top: 30px;
}
.post-author-summary .post-author {
  margin-bottom: 16px;
}
.post-author-summary .author-avatar img {
  width: 48px;
  border-radius: 50%;
}
.post-author-summary .author-role {
  margin-top: 2px;
}
.post-author-summary .author-desc {
  margin-bottom: 16px;
}
.post-author-summary .author-social .social-item a {
  color: #455873;
  font-size: 20px;
}
.post-author-summary .author-social .social-item a:hover {
  color: var(--primary-color);
}
.post-shares {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .post-shares {
    margin-top: 50px;
  }
}
.post-shares .social-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-shares .social-share .text {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.post-shares .social-share .text::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--primary-color);
  margin-right: 8px;
}
.post-shares .social-share .social-item {
  padding-left: 5px;
  margin-left: -12px;
}
.post-shares .social-share .social-item:first-child {
  padding-left: 15px;
  margin-left: 0;
}
.post-shares .social-share .pxl-icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  background-color: #000;
  backdrop-filter: blur(6px);
  border: none;
  position: relative;
}
.post-shares .social-share .pxl-icon svg {
  fill: #fff;
  width: 16px;
  height: 32px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  z-index: 1;
  position: relative;
}
.post-shares .social-share .pxl-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  background-color: var(--primary-color);
  transform: scale(0);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  border-radius: 4px;
  z-index: 0;
}
.post-shares .social-share .pxl-icon:hover::after {
  transform: scale(1);
}
.post-tags-inner {
  gap: 26px;
  padding-left: 12px;
}
@media (max-width: 575px) {
  .post-tags-inner {
    padding-left: 15px;
  }
}
.post-tags-inner a {
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  background-size: 0% 95%;
}
.post-tags-inner a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.post-tags-inner a:hover {
  color: var(--heading-color);
  background-size: 100% 95%;
}
.post-author-info .author-avatar img {
  flex-shrink: 0;
  max-width: 75px;
  border-radius: 7px;
  margin-right: 24px;
  overflow: hidden;
}
.post-author-info .author-description .title-socials {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.post-author-info .author-description .title-socials > * {
  max-width: 100%;
}
.post-author-info .author-description .title-socials small {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.post-author-info .author-description .title-socials .author-name {
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--second-color);
  font-weight: 500;
}
.post-author-info .author-description .title-socials .author-name a {
  color: inherit;
}
.post-author-info .author-description .title-socials .author-name a:hover {
  color: var(--link-color);
}
.post-like-area {
  border-radius: 0.375rem;
  padding: 1rem;
}
.post-like-area .btn-group {
  border-radius: 0.375rem;
}
.post-like-area .pxl-like-trigger {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.post-like-area .pxl-dislike-trigger {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}
.pxl-related-post {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .pxl-related-post {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .pxl-related-post {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  .pxl-related-post {
    margin-top: 60px;
  }
}
.pxl-related-post .related-title {
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  color: var(--heading-color);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .pxl-related-post .related-title {
    font-size: 60px;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .pxl-related-post .related-title {
    font-size: 43px;
  }
}
@media (max-width: 575px) {
  .pxl-related-post .related-title {
    font-size: 36px;
  }
}
.pxl-related-post .description-related {
  padding-left: 10px;
}
@media (max-width: 991px) {
  .pxl-related-post .description-related {
    width: 50%;
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .pxl-related-post .description-related {
    width: 100%;
  }
}
.pxl-related-post .related-des {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5em;
  color: #888888;
  max-width: 360px;
  display: flex;
}
@media (max-width: 575px) {
  .pxl-related-post .related-des {
    font-size: 16px;
  }
}
.pxl-related-post .ralated-box-title {
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .pxl-related-post .ralated-box-title {
    align-items: start;
  }
}
.pxl-related-post .grid-item-inner .item-featured {
  overflow: hidden;
}
.pxl-related-post .grid-item-inner .item-featured img {
  min-height: 470px;
  object-fit: cover;
  max-height: 470px;
  width: 100%;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.03) translateX(-3px);
  transform: scale(1.03) translateX(-3px);
}
@media (max-width: 575px) {
  .pxl-related-post .grid-item-inner .item-featured img {
    min-height: 400px;
    max-height: 400px;
  }
}
.pxl-related-post .grid-item-inner .item-featured:hover img {
  -webkit-transform: scale(1.03) translateX(3px);
  transform: scale(1.03) translateX(3px);
}
.pxl-related-post .grid-item-inner .item-content {
  margin-top: 22px;
}
.pxl-related-post .grid-item-inner .item-title {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.25em;
  max-height: 35px*em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.pxl-related-post .grid-item-inner .item-title a {
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  background-size: 0% 90%;
}
.pxl-related-post .grid-item-inner .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.pxl-related-post .grid-item-inner .item-title a:hover {
  background-size: 100% 90%;
}
@media (max-width: 575px) {
  .pxl-related-post .grid-item-inner .item-title {
    font-size: 22px;
    line-height: 1.25em;
    max-height: 27.5px*em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.pxl-related-post .grid-item-inner .item-meta {
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  color: var(--body-color);
  text-transform: capitalize;
}
.pxl-related-post .grid-item-inner .item-meta .item-name {
  margin-left: 5px;
}
.pxl-related-post .grid-item-inner .item-meta .item-name > a {
  width: fit-content;
  color: var(--body-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--body-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.pxl-related-post .grid-item-inner .item-meta .item-name > a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.pxl-related-post .grid-item-inner .item-meta .item-date {
  margin-right: 5px;
}
.pxl-content-wrap.has-sidebar.sidebar-right .pxl-single-post {
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .pxl-content-wrap.has-sidebar.sidebar-right .pxl-single-post {
    padding-right: 0;
  }
}
.pxl-content-wrap.has-sidebar.sidebar-left .sidebar-area-wrap {
  padding-right: 61px;
}
@media (max-width: 1599px) {
  .pxl-content-wrap.has-sidebar.sidebar-left .sidebar-area-wrap {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .pxl-content-wrap.has-sidebar.sidebar-left .sidebar-area-wrap {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .pxl-content-wrap.has-sidebar .pxl-sidebar-area {
    margin-top: 70px;
  }
}
body.dark-mode .post-shares .social-share .pxl-icon {
  background-color: rgba(255, 255, 255, 0.25);
}
.single-next-prev-nav {
  position: relative;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(25, 27, 29, 0.1);
}
.single-next-prev-nav .divider {
  width: 30px;
  padding: 0 15px;
}
.single-next-prev-nav .nav-inner {
  display: inline-block;
  position: relative;
}
.single-next-prev-nav .nav-inner > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 576px) {
  .single-next-prev-nav .nav-label-wrap {
    margin-bottom: 15px;
  }
}
.single-next-prev-nav .nav-label {
  color: var(--heading-color);
  position: relative;
  line-height: 1;
  display: inline-block;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.single-next-prev-nav .nav-icon {
  font-weight: 700;
  font-size: 17px;
  margin-top: -4px;
  display: inline-block;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.single-next-prev-nav .prev .nav-icon {
  margin-right: 7px;
}
.single-next-prev-nav .prev .nav-img {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .single-next-prev-nav .prev .nav-img {
    margin-right: 15px;
  }
}
.single-next-prev-nav .next .nav-icon {
  margin-left: 7px;
}
.single-next-prev-nav .next .nav-img {
  margin-left: 20px;
}
@media (max-width: 575px) {
  .single-next-prev-nav .next .nav-img {
    margin-left: 15px;
  }
}
.single-next-prev-nav .nav-img {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.single-next-prev-nav .nav-img img {
  width: 60px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .single-next-prev-nav .nav-img img {
    width: 50px;
  }
}
@media (max-width: 480px) {
  .single-next-prev-nav .nav-img img {
    width: 40px;
  }
}
.single-next-prev-nav .nav-title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--link-color);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  display: block;
  display: -webkit-box;
  max-height: 48px;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -khtml-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
}
.single-next-prev-nav .nav-title > * {
  display: block;
  display: -webkit-box;
  max-height: 48px;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -khtml-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
}
.single-next-prev-nav .nav-next-prev:hover .nav-icon {
  color: var(--second-color);
}
.single-next-prev-nav .nav-next-prev:hover .nav-label {
  color: var(--second-color);
}
.single-next-prev-nav .nav-next-prev:hover .nav-img {
  opacity: 0.8;
}
.single-next-prev-nav .nav-next-prev:hover .nav-title {
  color: var(--second-color);
}
.posts-pagination {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .posts-pagination {
    padding-top: 50px;
  }
}
.posts-pagination:empty {
  display: none;
}
.posts-pagination .pagination-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  align-items: center;
}
.posts-pagination .pagination-inner > * {
  max-width: 100%;
}
.posts-pagination .pagination-inner .prev, .posts-pagination .pagination-inner .next {
  background-color: transparent;
}
.posts-pagination .pagination-inner .prev svg, .posts-pagination .pagination-inner .next svg {
  width: 16px;
  height: auto;
  fill: var(--heading-color);
}
.posts-pagination .pagination-inner .prev:hover, .posts-pagination .pagination-inner .next:hover {
  background-color: transparent;
}
.posts-pagination .pagination-inner .prev:hover svg, .posts-pagination .pagination-inner .next:hover svg {
  fill: var(--primary-color);
}
.posts-pagination .pagination-inner .prev {
  margin-right: 24px;
}
.posts-pagination .pagination-inner .next {
  margin-left: 24px;
}
.posts-pagination .page-numbers, .posts-pagination .post-page-numbers {
  flex: 0 0 auto;
  margin: 4px 4px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.25);
}
.posts-pagination .page-numbers:hover, .posts-pagination .post-page-numbers:hover {
  background-color: var(--heading-color);
  color: #fff;
}
.posts-pagination .page-numbers.current, .posts-pagination .post-page-numbers.current {
  background-color: var(--heading-color);
  color: #fff;
}
@media (max-width: 575px) {
  .posts-pagination .page-numbers, .posts-pagination .post-page-numbers {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 15px;
  }
}
.posts-pagination.page-links {
  justify-content: start;
}
.pxl-grid .posts-pagination {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .pxl-grid .posts-pagination {
    padding-top: 50px;
  }
}
.content-blog .pagination-inner {
  justify-content: start;
}
.comment-list-wrap .navigation {
  justify-content: flex-end;
}
.pxl-entry-content + .navigation.page-links {
  margin-top: 0;
}
.navigation.page-links {
  margin-top: 26px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}
.navigation.page-links > * {
  max-width: 100%;
}
.navigation.page-links .post-nav-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.navigation.page-links .post-nav-links > * {
  max-width: 100%;
}
.navigation.page-links .post-nav-links .post-page-numbers:first-child {
  margin-left: 5px;
}
.navigation.page-links .post-page-numbers {
  flex: 0 0 auto;
  margin: 5px 2.5px;
  padding: 0.6rem 0.9rem;
  vertical-align: top;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
  border-radius: 2px;
}
.navigation.page-links .post-page-numbers:hover {
  background-color: var(--heading-color);
  color: var(--primary-color);
  border-color: transparent;
}
.navigation.page-links .post-page-numbers.prev:hover, .navigation.page-links .post-page-numbers.next:hover {
  background-color: transparent;
}
.navigation.page-links .post-page-numbers.current {
  background: var(--heading-color);
  color: var(--primary-color);
  border-color: transparent;
}
.pxl-load-more {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .pxl-load-more {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-load-more {
    margin-top: 50px;
  }
}
.pxl-load-more .btn-grid-loadmore {
  min-width: 115px;
}
.pxl-load-more .btn-grid-loadmore {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pxl-load-more .btn-grid-loadmore > * {
  max-width: 100%;
}
.pxl-load-more .pxl-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.1s ease;
  -khtml-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.pxl-load-more .pxl-icon.left {
  margin-right: 6px;
}
.pxl-load-more .pxl-icon.right {
  order: 2;
  margin-left: 8px;
  margin-right: 0;
}
.pxl-load-more .pxl-btn-icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7.5px;
  margin-left: -7.5px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-load-more .btn-text {
  display: inline-block;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.3s ease;
  -khtml-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.pxl-load-more .loading .pxli-rotate {
  visibility: visible;
  -webkit-animation: spin 1s infinite linear;
  -khtml-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
.pxl-load-more .loading .pxl-icon {
  opacity: 0;
  visibility: hidden;
}
.pxl-load-more .loading .btn-text {
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.pxl-load-more .loading .pxl-btn-icon {
  font-size: inherit;
  opacity: 1;
  visibility: visible;
  -webkit-animation: spin 1s infinite linear;
  -khtml-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
.content-blog .posts-pagination {
  padding-left: 42px;
}
@media (max-width: 991px) {
  .content-blog .posts-pagination {
    padding-left: 0;
  }
}
body.dark-mode .posts-pagination .page-numbers, body.dark-mode .posts-pagination .post-page-numbers {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
}
body.dark-mode .posts-pagination .page-numbers:hover, body.dark-mode .posts-pagination .post-page-numbers:hover {
  background-color: #fff;
  color: #0A0A0A;
}
body.dark-mode .posts-pagination .page-numbers.current, body.dark-mode .posts-pagination .post-page-numbers.current {
  background-color: #fff;
  color: #0A0A0A;
}
body.dark-mode .posts-pagination .pagination-inner .prev, body.dark-mode .posts-pagination .pagination-inner .next {
  background-color: transparent;
}
/* Sticky Sidebar */
.sidebar-sticky .sidebar-sticky-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  -webkit-transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
  -khtml-transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
  -moz-transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
  -ms-transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.55s cubic-bezier(0.39, 0.58, 0.57, 1);
}
@media (min-width: 992px) {
  .sidebar-sticky .sidebar-area-wrap, .sidebar-sticky .elementor-widget-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
  }
}
.pxl-widget-title {
  margin-bottom: 25px;
}
.elementor-widget-sidebar .widget, .elementor-widget-wp-widget-pxl_project_info_widget .widget, .pxl-sidebar-area .widget {
  position: relative;
  background-color: transparent;
}
.elementor-widget-sidebar .widget ul, .elementor-widget-sidebar .widget ol, .elementor-widget-wp-widget-pxl_project_info_widget .widget ul, .elementor-widget-wp-widget-pxl_project_info_widget .widget ol, .pxl-sidebar-area .widget ul, .pxl-sidebar-area .widget ol {
  list-style: none;
  margin: 0;
}
.elementor-widget-sidebar .widget ul ul, .elementor-widget-sidebar .widget ul ol, .elementor-widget-sidebar .widget ol ul, .elementor-widget-sidebar .widget ol ol, .elementor-widget-wp-widget-pxl_project_info_widget .widget ul ul, .elementor-widget-wp-widget-pxl_project_info_widget .widget ul ol, .elementor-widget-wp-widget-pxl_project_info_widget .widget ol ul, .elementor-widget-wp-widget-pxl_project_info_widget .widget ol ol, .pxl-sidebar-area .widget ul ul, .pxl-sidebar-area .widget ul ol, .pxl-sidebar-area .widget ol ul, .pxl-sidebar-area .widget ol ol {
  padding-left: 15px;
}
[dir="rlt"] .elementor-widget-sidebar .widget ul ul, [dir="rlt"] .elementor-widget-sidebar .widget ul ol, [dir="rlt"] .elementor-widget-sidebar .widget ol ul, [dir="rlt"] .elementor-widget-sidebar .widget ol ol, [dir="rlt"] .elementor-widget-wp-widget-pxl_project_info_widget .widget ul ul, [dir="rlt"] .elementor-widget-wp-widget-pxl_project_info_widget .widget ul ol, [dir="rlt"] .elementor-widget-wp-widget-pxl_project_info_widget .widget ol ul, [dir="rlt"] .elementor-widget-wp-widget-pxl_project_info_widget .widget ol ol, [dir="rlt"] .pxl-sidebar-area .widget ul ul, [dir="rlt"] .pxl-sidebar-area .widget ul ol, [dir="rlt"] .pxl-sidebar-area .widget ol ul, [dir="rlt"] .pxl-sidebar-area .widget ol ol {
  padding-left: 0;
  padding-right: 15px;
}
.elementor-widget-sidebar .widget.widget_search, .elementor-widget-wp-widget-pxl_project_info_widget .widget.widget_search, .pxl-sidebar-area .widget.widget_search {
  border: none;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
.elementor-widget-sidebar .pxl-search-form, .elementor-widget-wp-widget-pxl_project_info_widget .pxl-search-form, .pxl-sidebar-area .pxl-search-form {
  margin-bottom: 22px;
}
.elementor-widget-sidebar .widget-title, .elementor-widget-wp-widget-pxl_project_info_widget .widget-title, .pxl-sidebar-area .widget-title {
  position: relative;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .elementor-widget-sidebar .widget-title, .elementor-widget-wp-widget-pxl_project_info_widget .widget-title, .pxl-sidebar-area .widget-title {
    font-size: 26px;
  }
}
.elementor-widget-sidebar .widget-title::after, .elementor-widget-wp-widget-pxl_project_info_widget .widget-title::after, .pxl-sidebar-area .widget-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(114, 114, 114, 0) 3.98%, rgba(114, 114, 114, 0.4) 49.67%, rgba(114, 114, 114, 0) 95.35%);
}
.elementor-widget-sidebar .widget-title span, .elementor-widget-wp-widget-pxl_project_info_widget .widget-title span, .pxl-sidebar-area .widget-title span {
  position: relative;
}
.elementor-widget-sidebar .widget-title a, .elementor-widget-wp-widget-pxl_project_info_widget .widget-title a, .pxl-sidebar-area .widget-title a {
  color: inherit;
}
.elementor-widget-sidebar .widget + .widget, .elementor-widget-wp-widget-pxl_project_info_widget .widget + .widget, .pxl-sidebar-area .widget + .widget {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .elementor-widget-sidebar .widget + .widget, .elementor-widget-wp-widget-pxl_project_info_widget .widget + .widget, .pxl-sidebar-area .widget + .widget {
    margin-top: 50px;
  }
}
.elementor-widget-sidebar p:empty, .elementor-widget-wp-widget-pxl_project_info_widget p:empty, .pxl-sidebar-area p:empty {
  display: none;
}
.elementor-widget-sidebar .wp-caption .wp-caption-text, .elementor-widget-wp-widget-pxl_project_info_widget .wp-caption .wp-caption-text, .pxl-sidebar-area .wp-caption .wp-caption-text {
  text-align: center;
}
.widget_archive, .widget_categories, .widget_pages, .widget_nav_menu, .widget_product_categories, .woocommerce-widget-layered-nav, .woocommerce-widget-layered-nav-list, .widget_layered_nav_filters {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.widget_archive .widget-content > ul, .widget_categories .widget-content > ul, .widget_pages .widget-content > ul, .widget_nav_menu .widget-content > ul, .widget_product_categories .widget-content > ul, .woocommerce-widget-layered-nav .widget-content > ul, .woocommerce-widget-layered-nav-list .widget-content > ul, .widget_layered_nav_filters .widget-content > ul {
  overflow: hidden;
}
.widget_archive .widget-content > ul > li:last-child, .widget_categories .widget-content > ul > li:last-child, .widget_pages .widget-content > ul > li:last-child, .widget_nav_menu .widget-content > ul > li:last-child, .widget_product_categories .widget-content > ul > li:last-child, .woocommerce-widget-layered-nav .widget-content > ul > li:last-child, .woocommerce-widget-layered-nav-list .widget-content > ul > li:last-child, .widget_layered_nav_filters .widget-content > ul > li:last-child {
  border-bottom: none;
}
.widget_pages .widget-content > ul, .widget_meta .widget-content > ul, .widget_nav_menu .widget-content > ul {
  overflow: hidden;
}
.widget_pages .widget-content > ul > li:last-child a:after, .widget_meta .widget-content > ul > li:last-child a:after, .widget_nav_menu .widget-content > ul > li:last-child a:after {
  display: none;
}
.widget_pages .widget-content > div, .widget_meta .widget-content > div, .widget_nav_menu .widget-content > div {
  overflow: hidden;
}
.widget_pages .widget-content > div > ul > li:last-child a:after, .widget_meta .widget-content > div > ul > li:last-child a:after, .widget_nav_menu .widget-content > div > ul > li:last-child a:after {
  display: none;
}
.widget_pages li, .widget_meta li, .widget_nav_menu li {
  position: relative;
}
@media (max-width: 575px) {
  .widget_pages li, .widget_meta li, .widget_nav_menu li {
    margin-left: 0;
    margin-right: 0;
    padding: 5px 0;
  }
}
.widget_pages a, .widget_meta a, .widget_nav_menu a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 18px 0 18px 0;
  -webkit-transform: translateX(-22px);
  -khtml-transform: translateX(-22px);
  -moz-transform: translateX(-22px);
  -ms-transform: translateX(-22px);
  -o-transform: translateX(-22px);
  transform: translateX(-22px);
}
@media (max-width: 1199px) {
  .widget_pages a, .widget_meta a, .widget_nav_menu a {
    font-size: 16px;
    padding: 15px 0 15px 0;
  }
}
@media (max-width: 575px) {
  .widget_pages a, .widget_meta a, .widget_nav_menu a {
    padding: 12px 0 12px 0;
  }
}
.widget_pages a:before, .widget_meta a:before, .widget_nav_menu a:before {
  content: "";
  font-family: "pxli";
  font-size: 12px;
  width: 12px;
  display: inline-block;
  margin-right: 10px;
  opacity: 0;
  color: var(--primary-color);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.widget_pages a:after, .widget_meta a:after, .widget_nav_menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  min-width: 800px;
  border-top: 1px solid rgba(25, 27, 29, 0.6);
  -webkit-transform: translateX(-30%);
  -khtml-transform: translateX(-30%);
  -moz-transform: translateX(-30%);
  -ms-transform: translateX(-30%);
  -o-transform: translateX(-30%);
  transform: translateX(-30%);
}
.widget_pages a:hover, .widget_meta a:hover, .widget_nav_menu a:hover {
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.widget_pages a:hover:before, .widget_meta a:hover:before, .widget_nav_menu a:hover:before {
  opacity: 1;
}
.widget_pages .children, .widget_meta .children, .widget_nav_menu .children {
  padding-left: 15px;
}
.pxl-list-item, .wc-layered-nav-term {
  position: relative;
}
.pxl-list-item a, .wc-layered-nav-term a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 10px 0 10px 0;
  transition: all 350ms ease 0s;
  color: #404040;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  justify-content: space-between;
}
.pxl-list-item a .title, .wc-layered-nav-term a .title {
  position: relative;
}
.pxl-list-item a .title:before, .wc-layered-nav-term a .title:before {
  content: "";
  font-family: "pxli";
  position: relative;
  font-size: 18px;
  color: #404040;
  transition: all 350ms ease 0s;
  margin-right: 16px;
}
.pxl-list-item a:hover, .wc-layered-nav-term a:hover {
  color: var(--heading-color);
}
.pxl-list-item a:hover .title:before, .wc-layered-nav-term a:hover .title:before {
  color: var(--primary-color);
}
.pxl-list-item.current-cat a:before, .wc-layered-nav-term.current-cat a:before {
  opacity: 1;
  font-size: 14px;
  margin-right: 10px;
}
.pxl-list-item:first-child > a, .wc-layered-nav-term:first-child > a {
  padding-top: 0;
}
.pxl-list-item:last-child > a, .wc-layered-nav-term:last-child > a {
  padding-bottom: 0;
}
.pxl-list-item .pxl-menu-toggle, .wc-layered-nav-term .pxl-menu-toggle {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 12px;
  right: -8px;
  cursor: pointer;
  z-index: 2;
}
.pxl-list-item .pxl-menu-toggle:hover, .wc-layered-nav-term .pxl-menu-toggle:hover {
  color: var(--link-color-hover);
}
[dir="rtl"] .pxl-list-item .pxl-menu-toggle, [dir="rtl"] .wc-layered-nav-term .pxl-menu-toggle {
  right: auto;
  left: 0;
}
.pxl-list-item .pxl-menu-toggle.open:before, .wc-layered-nav-term .pxl-menu-toggle.open:before {
  content: "";
}
.pxl-list-item .children, .wc-layered-nav-term .children {
  padding-left: 15px;
}
.widget_nav_menu .menu-item {
  position: relative;
}
.widget_nav_menu .menu-item .pxl-menu-toggle {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 6px;
  right: 0;
  cursor: pointer;
  z-index: 2;
  font-size: 13px;
  margin-top: 4px;
}
.widget_nav_menu .menu-item .pxl-menu-toggle:hover {
  color: var(--link-color-hover);
}
[dir="rtl"] .widget_nav_menu .menu-item .pxl-menu-toggle {
  right: auto;
  left: 0;
}
.widget_nav_menu .menu-item .pxl-menu-toggle.open:before {
  content: "";
}
.widget_nav_menu .menu-item .sub-menu {
  display: none;
  margin-top: 5px;
  padding-left: 0;
}
.pxl-widget-inner > * {
  position: relative;
  z-index: 1;
}
.pxl-widget-inner > .pxl-wg-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.woocommerce-product-search, .pxl-search-form {
  position: relative;
}
.woocommerce-product-search [type="search"], .pxl-search-form [type="search"] {
  padding-right: 50px;
}
.woocommerce-product-search [type="submit"], .pxl-search-form [type="submit"] {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  line-height: 1;
  border-color: transparent;
  color: var(--body-color);
  font-size: 14px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
[dir="rtl"] .woocommerce-product-search [type="submit"], [dir="rtl"] .pxl-search-form [type="submit"] {
  right: auto;
  left: 6px;
}
@media (max-width: 575px) {
  .woocommerce-product-search [type="submit"], .pxl-search-form [type="submit"] {
    width: 50px;
    height: 50px;
  }
}
.woocommerce-product-search [type="submit"] span, .pxl-search-form [type="submit"] span {
  margin: 0;
}
.woocommerce-product-search [type="submit"] svg, .pxl-search-form [type="submit"] svg {
  width: 24px;
  height: auto;
  fill: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 575px) {
  .woocommerce-product-search [type="submit"] svg, .pxl-search-form [type="submit"] svg {
    width: 20px;
  }
}
.woocommerce-product-search [type="submit"]:active, .woocommerce-product-search [type="submit"]:hover, .woocommerce-product-search [type="submit"]:focus, .pxl-search-form [type="submit"]:active, .pxl-search-form [type="submit"]:hover, .pxl-search-form [type="submit"]:focus {
  color: var(--primary-color);
}
.woocommerce-product-search [type="submit"]:active svg, .woocommerce-product-search [type="submit"]:hover svg, .woocommerce-product-search [type="submit"]:focus svg, .pxl-search-form [type="submit"]:active svg, .pxl-search-form [type="submit"]:hover svg, .pxl-search-form [type="submit"]:focus svg {
  fill: var(--primary-color);
}
.woocommerce-product-search:hover [type="submit"], .pxl-search-form:hover [type="submit"] {
  border-color: transparent;
}
table.wp-calendar-table {
  border-spacing: 0;
}
table.wp-calendar-table caption {
  margin-bottom: 15px;
  color: var(--heading-color);
}
table.wp-calendar-table th, table.wp-calendar-table td {
  text-align: center;
  border-right: 0;
  padding: 5px;
  position: relative;
}
table.wp-calendar-table th a, table.wp-calendar-table td a {
  color: #fff;
  display: block;
}
table.wp-calendar-table th a:before, table.wp-calendar-table td a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: -1;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
table.wp-calendar-table th:hover a:before, table.wp-calendar-table td:hover a:before {
  background-color: var(--primary-color);
}
.widget_calendar .wp-calendar-nav {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.widget_pxl_recent_posts .pxl-posts-list .pxl-wg-post-title, .elementor-widget-wp-widget-pxl_recent_posts .pxl-posts-list .pxl-wg-post-title {
  color: #FAFAFA;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
  margin-bottom: 0;
  margin-top: 16px;
}
.widget_pxl_recent_posts .pxl-posts-list .pxl-wg-post-title > a, .elementor-widget-wp-widget-pxl_recent_posts .pxl-posts-list .pxl-wg-post-title > a {
  color: inherit;
  width: fit-content;
  color: #FAFAFA;
  background-image: linear-gradient(transparent calc(100% - 1px), #FAFAFA 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.widget_pxl_recent_posts .pxl-posts-list .pxl-wg-post-title > a:hover, .elementor-widget-wp-widget-pxl_recent_posts .pxl-posts-list .pxl-wg-post-title > a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.widget_pxl_recent_posts .pxl-posts-list .post-date, .elementor-widget-wp-widget-pxl_recent_posts .pxl-posts-list .post-date {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget_pxl_recent_posts .pxl-posts-list .post-date::before, .elementor-widget-wp-widget-pxl_recent_posts .pxl-posts-list .post-date::before {
  content: "";
  position: relative;
  width: 14px;
  height: 2px;
  background-color: var(--third-color);
}
.widget_pxl_recent_posts .pxl-post-img, .elementor-widget-wp-widget-pxl_recent_posts .pxl-post-img {
  flex-shrink: 0;
  border-radius: 12px;
}
.widget_pxl_recent_posts .pxl-post-img img, .elementor-widget-wp-widget-pxl_recent_posts .pxl-post-img img {
  transition: all 0.25s linear;
  width: 100%;
  height: 172.5px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .widget_pxl_recent_posts .pxl-post-img img, .elementor-widget-wp-widget-pxl_recent_posts .pxl-post-img img {
    height: 300px;
  }
}
.widget_pxl_recent_posts .pxl-post-item, .elementor-widget-wp-widget-pxl_recent_posts .pxl-post-item {
  border-radius: 16px;
  background-color: #262626;
  padding: 16px 16px 24px 16px;
}
.widget_pxl_recent_posts .pxl-post-item + .pxl-post-item, .elementor-widget-wp-widget-pxl_recent_posts .pxl-post-item + .pxl-post-item {
  margin-top: 24px;
}
.elementor-widget-wp-widget-pxl_recent_posts h5 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .elementor-widget-wp-widget-pxl_recent_posts h5 {
    font-size: 26px;
  }
}
.widget_media_gallery #gallery-1 {
  margin: -5px;
}
.widget_media_gallery #gallery-1 .gallery-item {
  float: none;
  padding: 5px;
  margin: 0;
  width: 33.333333%;
}
.widget_media_gallery #gallery-1 .gallery-item a {
  position: relative;
  display: block;
  overflow: hidden;
}
.widget_media_gallery #gallery-1 .gallery-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(var(--primary-color-rgb), 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.widget_media_gallery #gallery-1 .gallery-item a:after {
  content: "";
  font-family: "pxli";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  margin-top: -8px;
  margin-left: -8px;
  color: #fff;
  line-height: 1;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.widget_media_gallery #gallery-1 .gallery-item a:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget_media_gallery #gallery-1 .gallery-item a:hover:after {
  transition-delay: 0.3s;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget_media_gallery #gallery-1 img {
  border: 0;
}
.widget_nav_menu.horizontal .menu {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.widget_nav_menu.horizontal .menu li {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 8px;
}
.widget_nav_menu.horizontal .menu li a {
  padding: 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.widget_nav_menu.horizontal .menu li a:hover {
  border-color: var(--second-color);
}
.widget_nav_menu.horizontal .menu li:after {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-left: 8px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
[dir="rtl"] .widget_nav_menu.horizontal .menu li:after {
  margin-left: 0;
  margin-right: 8px;
}
.widget_nav_menu.horizontal .menu li:last-child:after {
  display: none;
}
.widget_nav_menu.horizontal .sub-menu {
  display: none;
}
.widget_recent_comments li {
  padding: 5px 0;
}
.widget_recent_comments a:not([class]) {
  color: var(--heading-color);
}
.widget_recent_entries a {
  font-size: 18px;
  font-family: var(--heading-font-family);
  padding: 2px 0;
  display: block;
}
.widget_recent_entries li:first-child a {
  padding-top: 0;
}
.widget_recent_entries li:last-child a {
  padding-bottom: 0;
}
.widget_rss .rss-widget-feed {
  display: inline-flex;
}
.widget_rss li .rsswidget {
  font-size: 125%;
}
.widget_rss li .rss-date {
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}
.widget_rss li .rssSummary {
  margin-bottom: 10px;
}
.widget_rss li cite {
  font-weight: 700;
  color: var(--heading-color);
}
.widget_rss .rss-widget-icon {
  vertical-align: middle;
}
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-bottom: 22px;
  padding: 0 21px;
}
@media (max-width: 575px) {
  .tagcloud {
    padding: 0 10px;
  }
}
.tagcloud > a {
  flex: 0 0 auto;
  border: 1px solid rgba(25, 27, 29, 0.1);
  display: inline-flex;
  padding: 3.5px 20px;
  overflow: hidden;
  border-radius: 17.5px;
  position: relative;
  color: var(--body-color);
  font-size: 16px !important;
  line-height: 1.625;
  transition: all 300ms ease 0s;
}
.tagcloud > a:hover {
  background-color: var(--second-color);
  color: #fff;
  border-color: var(--second-color);
}
.pxl-author-info.widget {
  border: 0;
  padding: 0 31px 30px 31px;
  position: relative;
}
@media (max-width: 1199px) {
  .pxl-author-info.widget {
    padding: 0 20px 24px 20px;
  }
}
.pxl-author-info.widget:before {
  content: "";
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--second-color);
  border-radius: 20px;
}
.pxl-author-info.widget .content-inner {
  text-align: center;
  position: relative;
}
.pxl-author-info.widget .author-name {
  font-size: 18px;
  line-height: 1.667;
  color: #fff;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 2px;
}
.pxl-author-info.widget .author-role {
  color: #fff;
}
.pxl-author-info.widget .author-desc {
  margin-bottom: 16px;
  padding-top: 19px;
  margin-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.251);
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 575px) {
  .pxl-author-info.widget .author-desc {
    padding-left: 0;
    padding-right: 0;
  }
}
.pxl-author-info.widget .author-social {
  margin: -5px;
}
.pxl-author-info.widget .author-social .social-item {
  margin: 5px;
}
.pxl-author-info.widget .author-social .social-item a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  position: relative;
}
@media (max-width: 575px) {
  .pxl-author-info.widget .author-social .social-item a {
    width: 40px;
    height: 40px;
  }
}
.pxl-author-info.widget .author-social .social-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0;
  -webkit-transform: scale(0.5);
  -khtml-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pxl-author-info.widget .author-social .social-item a .pxl-icon {
  position: relative;
}
.pxl-author-info.widget .author-social .social-item a:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget_archive select, .widget_categories select {
  padding-left: 20px;
}
.widget.widget_categories, .widget.widget_search, .widget.widget_archive, .widget.widget_pages {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.widget.widget_categories .widget-content, .widget.widget_search .widget-content, .widget.widget_archive .widget-content, .widget.widget_pages .widget-content {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  filter: none;
  background-color: transparent;
}
.widget.widget_search .widget-content .pxl-search-field {
  border-radius: 8px;
}
.pxl-project-info {
  border-radius: 16px;
  background: linear-gradient(213deg, #222 0%, #393939 80.39%);
  box-shadow: -351px 460px 162px 0 rgba(255, 255, 255, 0.01), -225px 295px 148px 0 rgba(255, 255, 255, 0.04), -126px 166px 125px 0 rgba(255, 255, 255, 0.15), -56px 74px 93px 0 rgba(255, 255, 255, 0.25), -14px 18px 51px 0 rgba(255, 255, 255, 0.29), 0 1.5px 0 0 #686868, 0 2px 3px 0 rgba(255, 255, 255, 0.2) inset;
  padding: 12px;
}
.pxl-project-info .content-inner {
  background-color: #0A0A0A;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 -2px 0 0 rgba(160, 160, 160, 0.2) inset, 0 1px 0 0 rgba(255, 255, 255, 0.3) inset, 0 -3px 0 0 #080808 inset;
}
.pxl-project-info .content-inner > * + * {
  margin-top: 16px;
}
@media (max-width: 1199px) {
  .pxl-project-info .content-inner {
    padding: 32px 10px;
  }
}
@media (max-width: 991px) {
  .pxl-project-info .content-inner {
    padding: 32px 24px;
  }
}
.pxl-project-info .widget-title {
  font-family: var(--heading-font-family);
  color: #FAFAFA;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.pxl-project-info .widget-title::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--primary-color);
  margin-right: 8px;
}
.pxl-project-info .client-name, .pxl-project-info .categories, .pxl-project-info .date-time {
  color: #FAFAFA;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pxl-project-info .client-name {
  margin-top: 0;
}
.pxl-project-info:hover .widget-title::before {
  animation: flickerAnimation 0.75s infinite;
}
.dark-mode .elementor-widget-sidebar .widget, .dark-mode .elementor-widget-wp-widget-pxl_project_info_widget .widget, .dark-mode .pxl-sidebar-area .widget {
  box-shadow: -351px 460px 162px 0 rgba(0, 0, 0, 0.01), -225px 295px 148px 0 rgba(0, 0, 0, 0.04), -126px 166px 125px 0 rgba(0, 0, 0, 0.15), -56px 74px 93px 0 rgba(0, 0, 0, 0.25), -14px 18px 51px 0 rgba(0, 0, 0, 0.29), 0 1.5px 0 0 #686868, 0 2px 3px 0 rgba(0, 0, 0, 0.2) inset;
}
.dark-mode .elementor-widget-sidebar .widget.widget_categories, .dark-mode .elementor-widget-sidebar .widget.widget_search, .dark-mode .elementor-widget-wp-widget-pxl_project_info_widget .widget.widget_categories, .dark-mode .elementor-widget-wp-widget-pxl_project_info_widget .widget.widget_search, .dark-mode .pxl-sidebar-area .widget.widget_categories, .dark-mode .pxl-sidebar-area .widget.widget_search {
  box-shadow: none;
}
.dark-mode .elementor-widget-sidebar .widget-title::after, .dark-mode .elementor-widget-wp-widget-pxl_project_info_widget .widget-title::after, .dark-mode .pxl-sidebar-area .widget-title::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 3.98%, rgba(255, 255, 255, 0.4) 49.67%, rgba(255, 255, 255, 0) 95.35%);
}
.dark-mode .widget.widget_categories, .dark-mode .widget.widget_search, .dark-mode .widget.widget_archive, .dark-mode .widget.widget_pages {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.dark-mode .widget.widget_categories .widget-content, .dark-mode .widget.widget_search .widget-content, .dark-mode .widget.widget_archive .widget-content, .dark-mode .widget.widget_pages .widget-content {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  filter: none;
  background-color: transparent;
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed, iframe, object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption-text {
  padding-top: 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #707070;
  font-style: italic;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 0px;
  overflow: hidden;
  position: absolute;
  width: 0px;
  word-wrap: normal;
  visibility: hidden;
  opacity: 0;
  display: none;
}
.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}
.gallery {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 25px;
  margin-top: 28px;
}
.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1em;
  padding: 0 10px;
  width: 50%;
}
.gallery-item .gallery-icon {
  overflow: hidden;
}
.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.wp-block-gallery.aligncenter, .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  display: flex;
}
.wp-block-gallery.alignfull {
  margin-bottom: 20px;
}
.wp-block-gallery.alignfull .blocks-gallery-caption {
  margin-bottom: 20px;
}
.wp-block-gallery.alignleft {
  margin-right: 20px;
}
#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull {
  width: 100vw;
}
#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull .blocks-gallery-grid {
  position: relative;
  left: calc(-12.5% - 128px);
  width: calc(125% + 150px);
  max-width: calc(125% + 150px);
}
.gallery-columns-1 .gallery-item {
  width: 100%;
}
@media (min-width: 480px) {
  .gallery-columns-3 .gallery-item {
    width: 33.333333%;
  }
}
@media (min-width: 480px) {
  .gallery-columns-4 .gallery-item {
    width: 25%;
  }
}
.gallery-columns-5 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-5 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-5 .gallery-item {
    width: 20%;
  }
}
.gallery-columns-6 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-6 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-6 .gallery-item {
    width: 16.66%;
  }
}
.gallery-columns-7 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-7 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-7 .gallery-item {
    width: 14.28%;
  }
}
.gallery-columns-8 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-8 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-8 .gallery-item {
    width: 12.5%;
  }
}
.gallery-columns-9 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-9 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-9 .gallery-item {
    width: 11.11%;
  }
}
.gallery-caption {
  display: block;
}
.wp-block-gallery.aligncenter, .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  display: flex;
}
.elementor-lightbox .elementor-swiper-button [class*=" eicon-"], .elementor-lightbox .elementor-swiper-button [class^=eicon] {
  font-family: "pxli";
}
.elementor-lightbox .elementor-swiper-button .eicon-chevron-right:before {
  content: "";
}
.elementor-lightbox .elementor-swiper-button .eicon-chevron-left:before {
  content: "";
}
.comment-list-wrap {
  margin-top: 54px;
  border: 1px solid rgba(25, 27, 29, 0.1);
  border-radius: 20px;
  padding: 35px 39px 52px 42px;
  box-shadow: 0 4px 0 #e0e0e0;
  position: relative;
}
@media (max-width: 767px) {
  .comment-list-wrap {
    padding: 15px 20px 40px 20px;
  }
}
@media (max-width: 575px) {
  .comment-list-wrap {
    margin-top: 39px;
    padding: 15px 15px 30px 15px;
  }
}
.comments-title {
  font-style: normal;
  margin: 0 0 19px 0;
  font-size: 35px;
  line-height: 2.143;
}
@media (max-width: 575px) {
  .comments-title {
    font-size: 28px;
  }
}
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.commentlist .comment {
  padding-top: 28px;
  margin-top: 24px;
  border-top: 1px solid rgba(25, 27, 29, 0.6);
}
.commentlist > .comment:first-child, .commentlist > .review:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.commentlist > .comment:not(:last-child) > .children, .commentlist > .review:not(:last-child) > .children {
  margin-bottom: 0;
}
.commentlist .comment-avatar img {
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}
@media (max-width: 1399px) {
  .commentlist .comment-avatar img {
    max-width: 60px;
  }
}
.commentlist .comment-content .comment-content-head {
  row-gap: 15px;
}
.commentlist .comment-content .comment-title {
  position: relative;
  font-family: var(--heading-font-family);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .commentlist .comment-content .comment-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.commentlist .comment-content .comment-title a {
  color: inherit;
  text-transform: capitalize;
}
.commentlist .comment-content .comment-title a:hover {
  color: var(--link-color-hover);
}
.commentlist .comment-content .comment-date {
  line-height: 1;
}
.commentlist .comment-content .comment-meta {
  font-size: 12px;
  color: #333;
}
@media (max-width: 480px) {
  .commentlist .comment-content .comment-meta {
    margin-top: 10px;
  }
}
.commentlist .comment-text-wrap {
  margin-top: 29px;
  max-width: 671px;
}
@media (max-width: 1199px) {
  .commentlist .comment-text-wrap {
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .commentlist .comment-text-wrap {
    margin-top: 16px;
  }
}
.commentlist .children {
  list-style: none;
  padding: 0 0 0 60px;
  margin: 0;
}
[dir="rtl"] .commentlist .children {
  padding: 0 60px 0 0;
}
@media (max-width: 1399px) {
  .commentlist .children {
    padding: 0 0 0 35px;
  }
  [dir="rtl"] .commentlist .children {
    padding: 0 35px 0 0;
  }
}
@media (max-width: 575px) {
  .commentlist .children {
    padding: 0 0 0 20px;
  }
  [dir="rtl"] .commentlist .children {
    padding: 0 20px 0 0;
  }
}
.commentlist .comment-reply-link {
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  padding: 11.5px 19px;
  background-color: var(--second-color);
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  column-gap: 7px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.commentlist .comment-reply-link .reply-icon {
  margin-right: 2px;
  font-size: 10px;
}
.commentlist .comment-reply-link:hover {
  transform: translateY(-5px);
}
@media (max-width: 575px) {
  .commentlist .comment-reply-link {
    padding: 7px 12px;
  }
}
.comments-pagination {
  margin-top: 24px;
}
.comment-respond {
  position: relative;
  border: 1px solid rgba(25, 27, 29, 0.1);
  border-radius: 20px;
  padding: 49px 39px 41px 41px;
  box-shadow: 0 4px 0 #e0e0e0;
  margin-top: 54px;
}
@media (max-width: 767px) {
  .comment-respond {
    padding: 30px 20px 40px 20px;
  }
}
@media (max-width: 575px) {
  .comment-respond {
    padding: 30px 15px 30px 15px;
    margin-top: 39px;
  }
}
.comment-respond .comment-reply-title {
  font-style: normal;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-size: 35px;
}
.comment-respond .comment-reply-title small {
  font-size: 60%;
}
@media (max-width: 575px) {
  .comment-respond .comment-reply-title {
    font-size: 28px;
  }
}
.comment-respond .comment-form .text-heading {
  display: block;
  color: var(--body-color);
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .comment-respond .comment-form .text-heading {
    margin-bottom: 25px;
  }
}
.comment-respond .comment-form .comment-form-author {
  padding-right: 7.5px;
}
@media (max-width: 767px) {
  .comment-respond .comment-form .comment-form-author {
    padding-right: 15px;
  }
}
.comment-respond .comment-form .comment-form-email {
  padding-left: 7.5px;
}
@media (max-width: 767px) {
  .comment-respond .comment-form .comment-form-email {
    padding-left: 15px;
  }
}
.comment-respond .comment-form .comment-text {
  font-weight: 400;
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 9px;
}
.comment-respond .comment-form .pxl-comment-form-rating .comment-form-field {
  margin-top: 0;
}
.comment-respond .comment-form input[type=checkbox] {
  display: none;
}
.comment-respond .comment-form input[type=checkbox] + label:before {
  content: "";
  font-family: "pxli";
  border: 1px solid #c8c8c8;
  border-radius: 0;
  color: var(--heading-color);
  background-color: transparent;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  position: relative;
  top: -4px;
  font-size: 10px;
  text-align: center;
  line-height: 12px;
}
.comment-respond .comment-form input[type=checkbox]:checked + label:before {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.comment-respond .comment-form input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}
.comment-respond .comment-form .comment-form-comment textarea {
  border-radius: 15px;
  height: 233px;
}
@media (max-width: 1199px) {
  .comment-respond .comment-form .comment-form-comment textarea {
    height: 150px;
  }
}
.comment-respond .comment-form .comment-author-email {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .comment-respond .comment-form .comment-author-email {
    gap: 15px;
  }
}
.comment-respond .comment-form-cookies-consent {
  padding-top: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  display: none;
}
.comment-respond .form-submit {
  position: relative;
}
.comment-respond .form-submit .pxl-btn {
  padding: 17.5px;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: -13px;
  transform: translateY(-100%);
}
.comment-respond .form-submit .pxl-btn:hover, .comment-respond .form-submit .pxl-btn:focus, .comment-respond .form-submit .pxl-btn:active {
  background-color: var(--primary-color);
}
@media (max-width: 575px) {
  .comment-respond .form-submit .pxl-btn {
    padding: 13px;
    right: 10px;
    top: -9px;
  }
}
.comment-respond .form-submit i {
  font-size: 15px;
}
.logged-in-as {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .logged-in-as {
    margin-bottom: 25px;
  }
}
.logged-in-as a {
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.logged-in-as a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.logged-in-as a:hover {
  color: var(--heading-color);
}
#cancel-comment-reply-link {
  padding-left: 15px;
  color: var(--second-color);
  font-weight: normal;
}
[dir="rtl"] #cancel-comment-reply-link {
  padding-left: 0;
  padding-right: 15px;
}
p.no-comments {
  margin-top: 30px;
  color: red;
}
.rating-container {
  display: inline-block;
  height: 18px;
  vertical-align: top;
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating-container * {
  font-size: 17px;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  font-family: "pxli";
  line-height: 1;
}
.rating-container > input + label:before {
  display: inline-block;
  content: "";
  color: #000;
}
.rating-container > input:checked ~ label:before, .rating-container > input + label:hover ~ label:before, .rating-container > input + label:hover:before, .pxl-rating-icon-filled:before {
  content: "";
  color: var(--second-color);
}
.rating-container:hover > input + label:before, .pxl-rating-icon-empty:before {
  content: "";
  color: #000;
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before, .rating-container:hover > input + label:hover:before {
  content: "";
  color: var(--second-color);
}
.pxl-rating-icon-filled, .pxl-rating-icon-empty {
  font-family: "pxli";
  display: inline-block;
  overflow: hidden;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.pxl-rating-icon-empty {
  z-index: -1;
}
.phb-review-form .phb-review-reply-title {
  text-transform: uppercase;
}
.phb-review-form .phb-stars {
  margin-bottom: 8px;
}
.phb-review-form .phb-stars:hover a {
  color: var(--second-color);
}
.phb-review-form .phb-stars .stars {
  display: flex;
}
.phb-review-form .phb-stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  color: #111111;
}
.phb-review-form .phb-stars a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -5px;
}
.phb-review-form .phb-stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "pxli";
  content: "";
  text-indent: 0;
}
.phb-review-form .phb-stars a:hover ~ a {
  color: #111111;
}
.phb-review-form .phb-stars.selected a.active {
  color: var(--second-color);
}
.phb-review-form .phb-stars.selected a.active ~ a {
  color: #111111;
}
.phb-review-form .phb-stars.selected a:not(.active) {
  color: var(--second-color);
}
.phb-review-form .phb-stars.selected:hover a {
  color: var(--second-color);
}
.phb-review-form .phb-stars.selected:hover a.active ~ a {
  color: var(--second-color);
}
.phb-review-form .phb-stars.selected a:hover ~ a {
  color: #111111 !important;
}
.phb-review-form .phb-review-fields .row > div {
  margin-bottom: 15px;
}
.phb-review-form .phb-review-fields textarea {
  margin-bottom: 30px;
}
.woocommerce-Reviews .comment-title {
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.pxl-scroll-top {
  position: fixed;
  z-index: 99;
  bottom: 24px;
  right: 30px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .pxl-scroll-top {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}
.pxl-scroll-top .pxl-scroll-progress-circle {
  position: absolute;
  top: 50%;
  left: auto;
  right: auto;
  z-index: -1;
  transform: translateY(-50%);
}
.pxl-scroll-top .pxl-scroll-progress-circle path {
  fill: none;
  stroke-width: 3;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  stroke: #fff;
}
.pxl-scroll-top span {
  font-size: 16px;
  position: relative;
  top: -1px;
  position: relative;
  -webkit-animation: icon-bounce 2s linear 0s infinite;
  -khtml-animation: icon-bounce 2s linear 0s infinite;
  -moz-animation: icon-bounce 2s linear 0s infinite;
  -ms-animation: icon-bounce 2s linear 0s infinite;
  -o-animation: icon-bounce 2s linear 0s infinite;
  animation: icon-bounce 2s linear 0s infinite;
  color: #fff;
}
.pxl-scroll-top:hover span {
  -webkit-animation: Bottomup 0.6s forwards;
  -khtml-animation: Bottomup 0.6s forwards;
  -moz-animation: Bottomup 0.6s forwards;
  -ms-animation: Bottomup 0.6s forwards;
  -o-animation: Bottomup 0.6s forwards;
  animation: Bottomup 0.6s forwards;
}
.pxl-scroll-top.on {
  bottom: 44px;
  opacity: 1;
  visibility: visible;
}
[dir="rtl"] .pxl-scroll-top {
  right: auto;
  left: 20px;
}
.pxl-scroll-top.custom-style-1 {
  overflow: hidden;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #151515 0%, #0A0A0A 66.25%) padding-box, linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 60%) border-box;
}
.pxl-scroll-top.custom-style-1 .pxl-icon {
  font-size: 24px;
  rotate: 180deg;
}
.pxl-scroll-top.custom-style-1 .pxl-icon::before {
  content: "";
}
.pxl-scroll-top.custom-style-1 .pxl-scroll-progress-circle path {
  stroke: var(--primary-color);
}
@media (max-width: 767px) {
  .pxl-scroll-top.custom-style-1 {
    height: 45px;
    width: 45px;
  }
  .pxl-scroll-top.custom-style-1 .pxl-icon {
    font-size: 17px;
  }
}
@-moz-document url-prefix() {
  .pxl-scroll-top .pxl-scroll-progress-circle path {
    transition: none !important;
  }
}
.pxl-footer.pxl-footer-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pxl-footer.pxl-footer-absoluted {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.pxl-footer.footer-type-df a {
  color: #616277;
}
.pxl-footer.footer-type-df a:hover {
  color: #616277;
}
.pxl-footer-bottom {
  border-top: 1px solid #e0e1e6;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #616277;
  font-size: 14px;
}
.pxl-copyright-text a {
  font-weight: 700;
}
.footer-bottom {
  color: #616277;
  font-size: 14px;
}
.footer-bottom .elementor-widget-text-editor a {
  color: #616277;
}
.pxl-footer .pxl-primary-menu > li > a span:before {
  display: none;
}
.pxl-page-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  cursor: none;
  -webkit-transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
  -khtml-transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
  -moz-transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
  -ms-transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
  -o-transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
  transition: all 0.3s cubic-bezier(0.52, 0.51, 0.66, 0.65);
}
.pxl-page-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .pxl-page-overlay.active-mobile {
    opacity: 1;
    visibility: visible;
  }
}
.admin-bar .pxl-hidden-template {
  top: 32px;
  height: calc(100% - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .pxl-hidden-template {
    top: 46px;
    height: calc(100% - 46px);
  }
}
.pxl-hidden-template {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  padding: 0;
  background: var(--tpl-bg-color);
  right: 0;
  will-change: transform;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  opacity: 0;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.pxl-hidden-template .pxl-panel-header .panel-header-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pxl-hidden-template .pxl-panel-header .panel-header-inner > * {
  max-width: 100%;
}
.pxl-hidden-template .pxl-panel-content {
  position: relative;
  flex: 1;
}
.pxl-hidden-template::-webkit-scrollbar {
  height: 0;
  width: 0;
  background-color: transparent;
}
.pxl-hidden-template::-webkit-scrollbar-track {
  border-radius: 0;
}
.pxl-hidden-template::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: transparent;
}
.pxl-hidden-template:hover::-webkit-scrollbar {
  width: 0;
  height: auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.pxl-hidden-template:hover::-webkit-scrollbar-thumb {
  background-color: rgba(48, 48, 48, 0.1);
}
.pxl-close {
  position: absolute;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-close:before, .pxl-close:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  top: 50%;
  left: 25%;
  margin-top: -1px;
  background-color: #000000;
  transform-origin: 50% 50%;
  opacity: 1;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
  transition: transform ease 0.25s;
}
.pxl-close:before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pxl-close:after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pxl-close:hover:before, .pxl-close:hover:after {
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.pxl-panel-content .menu-main-container-wrap {
  padding: 0;
  min-height: calc(100% - 50px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.pxl-panel-content .menu-main-container-wrap > * {
  max-width: 100%;
}
.pxl-hidden-template.el-builder.pxl-user-login .elementor-column-gap-default > .elementor-column.elementor-element > .elementor-element-populated, .pxl-hidden-template.el-builder.pxl-side-mobile .elementor-column-gap-default > .elementor-column.elementor-element > .elementor-element-populated {
  padding: 0;
}
.pxl-hidden-template.el-builder.pxl-user-login .elementor-section-boxed .elementor-inner-section > .elementor-column-gap-default, .pxl-hidden-template.el-builder.pxl-side-mobile .elementor-section-boxed .elementor-inner-section > .elementor-column-gap-default {
  margin: 0;
}
.pxl-hidden-template.pos-full {
  -webkit-transition: all 0.5s linear 0s;
  -khtml-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
  clip-path: inset(0 100% 0 100%);
}
.pxl-hidden-template.pos-full .pxl-close {
  top: 40px;
  right: 50px;
  width: 40px;
  height: 40px;
}
.pxl-hidden-template.pos-full .pxl-close:before, .pxl-hidden-template.pos-full .pxl-close:after {
  height: 1px;
  width: 100%;
  left: 0;
}
@media (max-width: 991px) {
  .pxl-hidden-template.pos-full .pxl-close {
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
  }
}
.pxl-hidden-template.pos-full.open {
  clip-path: inset(0 0 0 0);
}
.pxl-hidden-template.pxl-user-login .pxl-close:before, .pxl-hidden-template.pxl-user-login .pxl-close:after {
  background-color: var(--primary-color);
}
.pxl-hidden-template.pxl-side-mobile {
  background-color: #fff;
}
.pxl-hidden-template.pxl-side-mobile .pxl-close {
  top: 34px;
  right: 20px;
}
@media (max-width: 575px) {
  .pxl-hidden-template.pxl-side-mobile .pxl-close {
    right: 10px;
  }
}
.pxl-hidden-template.pxl-side-mobile .pxl-close:before, .pxl-hidden-template.pxl-side-mobile .pxl-close:after {
  background-color: var(--second-color);
}
.pxl-hidden-template.pxl-side-mobile .pxl-mobile-menu .main-menu-toggle {
  color: var(--second-color);
}
.pxl-hidden-template.mobile-panel-df {
  padding: 30px 30px 30px 30px;
}
.pxl-hidden-template.mobile-panel-df .pxl-logo {
  max-width: 165px;
  margin-bottom: 32px;
}
.pxl-hidden-template.pxl-hidden-sidebar .pxl-close {
  top: 22px;
  right: 15px;
}
@media (max-width: 575px) {
  .pxl-hidden-template.pxl-hidden-sidebar .pxl-close {
    top: 15px;
    right: 15px;
  }
}
.pxl-hidden-template.pos-left {
  width: 100%;
  max-width: 300px;
  right: auto;
  left: 0;
  -webkit-transform: translate(-100%, 0);
  -khtml-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media (max-width: 575px) {
  .pxl-hidden-template.pos-left {
    width: 90%;
  }
}
.pxl-hidden-template.pos-left.pxl-hidden-sidebar {
  max-width: 490px;
}
.pxl-hidden-template.pos-left .pxl-close {
  right: 20px;
  top: 20px;
}
@media (max-width: 575px) {
  .pxl-hidden-template.pos-left .pxl-close {
    right: 15px;
    top: 10px;
  }
}
.pxl-hidden-template.pos-right {
  width: 100%;
  max-width: 500px;
  right: 0;
  left: auto;
  background-color: #fff;
  -webkit-transform: translate(100%, 0);
  -khtml-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media (max-width: 575px) {
  .pxl-hidden-template.pos-right {
    width: 90%;
  }
}
.pxl-hidden-template.pos-right .pxl-hidden-template-wrap {
  position: relative;
  padding: 64px 52px;
}
@media (max-width: 575px) {
  .pxl-hidden-template.pos-right .pxl-hidden-template-wrap {
    padding: 48px 15px;
  }
}
@media (max-width: 480px) {
  .pxl-hidden-template.pos-right .pxl-hidden-template-wrap {
    padding: 48px 0;
  }
}
.pxl-hidden-template.pos-right .pxl-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
  border-radius: 0;
  opacity: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  background-image: none;
  background: var(--primary-color);
  z-index: 1;
}
.pxl-hidden-template.pos-right .pxl-close:before, .pxl-hidden-template.pos-right .pxl-close:after {
  width: 50%;
  background-color: #fff;
  left: 50%;
  margin-left: -10px;
}
.pxl-hidden-template.pos-top {
  width: 100%;
  max-height: max-content;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -100%);
  -khtml-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.pxl-hidden-template.pos-top .pxl-panel-header {
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.pxl-hidden-template.pos-top .pxl-close {
  top: 10px;
  right: 10px;
}
.pxl-hidden-template.pos-top .pxl-close::before, .pxl-hidden-template.pos-top .pxl-close::after {
  background-color: var(--primary-color);
}
.pxl-hidden-template.pos-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 767px) {
  .pxl-hidden-template.pos-center {
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap {
  width: 100%;
  max-width: 870px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0.6);
  -khtml-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
}
@media (max-width: 1199px) {
  .pxl-hidden-template.pos-center .pxl-hidden-template-wrap {
    max-width: 670px;
  }
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap::-webkit-scrollbar {
  height: 0;
  width: 0;
  background-color: transparent;
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap::-webkit-scrollbar-track {
  border-radius: 0;
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: transparent;
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap:hover::-webkit-scrollbar {
  width: 0;
  height: auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.pxl-hidden-template.pos-center .pxl-hidden-template-wrap:hover::-webkit-scrollbar-thumb {
  background-color: rgba(48, 48, 48, 0.1);
}
.pxl-hidden-template.pos-center .pxl-panel-header {
  padding: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
.pxl-hidden-template.pos-center .pxl-close {
  top: 15px;
  right: 15px;
}
.pxl-hidden-template.pos-center.open .pxl-hidden-template-wrap {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-hidden-template.pos-full .pxl-panel-header {
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.pxl-hidden-template.pos-full .pxl-hidden-template-wrap {
  -webkit-transform: scale(0.6);
  -khtml-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-hidden-template.pos-full .pxl-panel-content {
  padding: 0;
}
.pxl-hidden-template.pos-full.open .pxl-hidden-template-wrap {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-hidden-template.pos-custom {
  width: 100%;
  max-width: 447px;
  top: var(--hd-top-offset);
  right: var(--hd-right-offset);
  bottom: var(--hd-bottom-offset);
  left: var(--hd-left-offset);
  -webkit-transform: translate(100%, 0);
  -khtml-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media (max-width: 1199px) {
  .pxl-hidden-template.pos-custom {
    top: var(--hd-top-offset-mobile);
    right: var(--hd-right-offset-mobile);
    bottom: var(--hd-bottom-offset-mobile);
    left: var(--hd-left-offset-mobile);
  }
}
@media (max-width: 575px) {
  .pxl-hidden-template.pos-custom {
    width: 90%;
  }
}
.pxl-hidden-template.pos-custom .pxl-close {
  background-color: var(--second-color);
}
.pxl-hidden-template.open {
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  z-index: 99999;
}
.pxl-side-menu {
  width: 100%;
  max-width: 400px;
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.pxl-side-menu .pxl-panel-header {
  padding: 30px 40px 0 40px;
  position: relative;
  z-index: 1;
}
.pxl-side-menu .pxl-panel-content {
  padding: 0 25px 40px;
}
.pxl-popup-menu > .pxl-panel-content > .container > div.elementor {
  max-width: 25%;
}
.pxl-popup-menu .elementor-section, .pxl-popup-menu .elementor-section .elementor-container, .pxl-popup-menu .elementor-column, .pxl-popup-menu .elementor-column-wrap, .pxl-popup-menu .elementor-widget-wrap, .pxl-popup-menu .elementor-widget {
  position: static;
}
.admin-bar .pxl-side-cart {
  height: auto;
  top: 50%;
}
.phb-review-form-wrap .pxl-hidden-template-wrap {
  background-color: #fff;
}
.elementor-editor-active .pxl-primary-menu > li > .sub-menu {
  display: none;
}
.elementor-editor-active .pxl-header-sticky {
  display: none;
}
.elementor-editor-active .pxl-header-mobile-sticky {
  display: none;
}
.elementor-editor-active .pxl-scroll-top {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.elementor-editor-active .pxl-footer.pxl-footer-absoluted {
  bottom: 314px;
}
.elementor-lightbox .swiper-zoom-container > canvas, .elementor-lightbox .swiper-zoom-container > img, .elementor-lightbox .swiper-zoom-container > svg {
  object-fit: cover;
  -o-object-fit: cover;
}
.pxl-shape-divider-mask .pxl-shape-divider {
  width: 100%;
  height: 25px;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  mask-image: var(--ss-mask-url);
  -webkit-mask-image: var(--ss-mask-url);
  -ms-mask-image: var(--ss-mask-url);
  -o-mask-image: var(--ss-mask-url);
  -webkit-mask-repeat: no-repeat;
  -ms-mask-repeat: no-repeat;
  -o-mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  -ms-mask-position: center top;
  -o-mask-position: center top;
  mask-position: center top;
}
@media (min-width: 768px) {
  .elementor-editor-active .elementor-edit-area-active .elementor-widget-wrap.elementor-element-empty {
    margin: 0;
  }
}
.e-con {
  --border-color: rgba(25, 27, 29, 0.1);
}
.elementor-editor-active .pxl-border-animated .pxl-border-anm.bb {
  transform: scale(1);
}
.pxl-heading-wrap .heading-title {
  margin: var(--pxl-mt, 0) var(--pxl-mr, 0) var(--pxl-mb, 0) var(--pxl-ml, 0);
}
.pxl-heading-wrap .til-gradient .heading-title {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: var(--heading-color);
}
.pxl-heading-wrap .til-gradient .heading-title .split-line div * {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pxl-heading-wrap .heading-subtitle {
  margin: var(--pxl-mt, 0) var(--pxl-mr, 0) var(--pxl-mb, 0) var(--pxl-ml, 0);
}
.pxl-heading-wrap .heading-highlight {
  position: relative;
}
@media (max-width: 575px) {
  .pxl-heading-wrap .heading-highlight {
    display: block;
  }
}
.pxl-heading-wrap .pxl-image--highlight {
  position: relative;
}
.pxl-heading-wrap .sub-top .subtitle-text::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--primary-color);
  margin-right: 8px;
  animation: flickerAnimation 1s infinite;
}
.pxl-heading-wrap .shadow-color .heading-title {
  --color-1: rgba(0, 0, 0, 0.01);
  --color-2: rgba(0, 0, 0, 0.04);
  --color-3: rgba(0, 0, 0, 0.15);
  --color-4: rgba(0, 0, 0, 0.25);
  --color-5: rgba(0, 0, 0, 0.29);
  text-shadow: -351px 460px 162px var(--color-1), -225px 295px 148px var(--color-2), -126px 166px 125px var(--color-3), -56px 74px 93px var(--color-4), -14px 18px 51px var(--color-5);
}
.pxl-text-editor a {
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px;
}
.pxl-text-editor p {
  color: inherit;
}
.pxl-text-editor.pxl-text-truncate {
  font-size: var(--truncate-font-size);
  line-height: var(--truncate-line-height);
  max-height: calc(var(--truncate-font-size) * var(--truncate-line-height) * var(--truncate-line));
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: var(--truncate-line);
  -webkit-box-orient: vertical;
}
.pxl-icon-list-wg .list-item {
  column-gap: 10px;
}
.pxl-icon-list-wg .list-item a {
  color: inherit;
}
.pxl-icon-list-wg .list-item:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: auto;
}
.pxl-icon-list-wg .pxl-icon {
  font-size: 15px;
  position: relative;
  top: var(--icon-vertical-offset, initial);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-icon-list-wg .pxl-icon i, .pxl-icon-list-wg .pxl-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-icon-list-wg .pxl-icon .icon-text {
  display: block;
  line-height: 1;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-icon-list-wg .item-title {
  margin-bottom: 0;
}
.pxl-icon-list-wg .item-title a {
  color: inherit;
}
.pxl-icon-list-wg .item-text {
  margin-bottom: 0;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-icon-list-wg.icon-type-bullet .list-item:before {
  content: "";
  min-width: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-flex;
  background-color: #A3A3A3;
  position: relative;
  left: 0;
  top: 9px;
  margin: 0;
}
.pxl-icon-list-wg.icon-type-bullet .list-item .item-text {
  margin-left: 15px;
}
.pxl-block-quote-wrap .quote-icon svg {
  width: 1em;
  height: 1em;
}
.pxl-block-quote-wrap .blockquote-footer {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.pxl-block-quote-wrap .blockquote-footer:before {
  content: "— ";
}
.pxl-icon-wg .pxl-icon {
  font-size: var(--font-size, 16px);
  display: inline-flex;
  color: var(--color);
}
.pxl-icon-wg .pxl-icon i {
  position: relative;
  display: block;
}
.pxl-icon-wg .pxl-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  fill: var(--color);
}
.pxl-icon-wg .icon-inner:hover .pxl-icon {
  color: var(--color-hover, var(--color));
}
.pxl-icon-wg .icon-inner:hover .pxl-icon svg {
  fill: var(--color-hover, var(--color));
}
.pxl-icon-wg .icon-inner[data-elementor-open-lightbox="yes"] {
  cursor: pointer;
}
.pxl-image-wg {
  --top-Left: 0%;
  --left-top: 0%;
  --right-bottom: 100%;
  --bottom-right: 100%;
  clip-path: polygon(var(--top-Left) 0, 100% 0, 100% var(--right-bottom), var(--bottom-right) 100%, 0 100%, 0 var(--left-top));
}
.pxl-image-wg.bg-image {
  height: 100%;
  background-image: var(--pxl-image-bg);
  background-size: cover;
  background-repeat: no-repeat;
}
.pxl-image-wg.pxl-bg-parallax {
  height: 100%;
}
.pxl-image-wg .parallax-inner {
  background-image: var(--pxl-image-bg);
}
.pxl-image-wg.filter-color img {
  filter: drop-shadow(-14px 18px 51px rgba(0, 0, 0, 0.29)) drop-shadow(-56px 74px 93px rgba(0, 0, 0, 0.25)) drop-shadow(-126px 166px 125px rgba(0, 0, 0, 0.15)) drop-shadow(-225px 295px 148px rgba(0, 0, 0, 0.04)) drop-shadow(-351px 460px 162px rgba(0, 0, 0, 0.01));
}
.pxl-shape-wg {
  height: 100%;
}
.pxl-shape-wg.mask {
  --mask-color: rgba(0, 0, 0, 1);
  -webkit-mask: linear-gradient(transparent, var(--mask-color) 40%);
  mask: linear-gradient(transparent, var(--mask-color) 40%);
}
.pxl-counter-wg .counter-number {
  display: inline-flex;
  font-size: 40px;
  color: var(--heading-color);
  align-items: start;
}
.pxl-counter-wg .counter-number .counter-number-value {
  background: linear-gradient(180deg, #0A0A0A 0%, rgba(10, 10, 10, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pxl-counter-wg .counter-number .counter-number-suffix {
  margin-top: 13px;
}
.pxl-post-category .item-image {
  overflow: hidden;
  margin-bottom: 12px;
  width: max-content;
  border-radius: 50%;
}
.pxl-post-category .item-image img {
  border-radius: 50%;
  transform: scale(1) rotate(0);
  transition: all 350ms ease-in-out 0s;
}
@media (max-width: 575px) {
  .pxl-post-category .item-image img {
    max-width: 120px;
    max-height: 120px;
  }
}
.pxl-post-category .item-category {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75em;
  color: var(--heading-color);
}
.pxl-post-category .item-category .item-count {
  color: var(--body-color);
  font-weight: 400;
  font-size: 16px;
}
.pxl-post-category .item-category a {
  color: inherit;
}
.pxl-post-category .item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pxl-post-category .item-inner:hover img {
  transform: scale(1.05) rotate(-15deg);
}
.pxl-accordion .ac-content {
  display: none;
}
.pxl-accordion.style1 .ac-item {
  padding: 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .pxl-accordion.style1 .ac-item {
    padding: 30px 15px;
  }
}
.pxl-accordion.style1 .ac-item.active {
  --liner1: rgba(255, 255, 255, 0.10);
  --liner2: rgba(255, 255, 255, 0.00);
  --liner3: #0A0A0A;
  margin-bottom: 32px;
  border-color: transparent !important;
  border-radius: 16px;
  background: radial-gradient(64.94% 78.27% at 24.52% -10.8%, var(--liner1) 0%, var(--liner2) 100%), var(--liner3);
  box-shadow: 0 -2px 0 0 rgba(160, 160, 160, 0.2) inset, 0 1px 0 0 rgba(255, 255, 255, 0.3) inset, 0 -3px 0 0 #080808 inset, -351px 460px 162px 0 rgba(0, 0, 0, 0.01), -225px 295px 148px 0 rgba(0, 0, 0, 0.04), -126px 166px 125px 0 rgba(0, 0, 0, 0.15), -56px 74px 93px 0 rgba(0, 0, 0, 0.25), -14px 18px 51px 0 rgba(0, 0, 0, 0.29);
}
.pxl-accordion.style1 .ac-item.active:last-child {
  margin-bottom: 0 !important;
}
.pxl-accordion.style1 .ac-item.active .ac-title {
  color: var(--primary-color);
}
@media (max-width: 575px) {
  .pxl-accordion.style1 .ac-item.active {
    margin-bottom: 30px;
  }
}
.pxl-accordion.style1 .ac-item.active .pxl-icon::before {
  transform: rotate(-180deg);
}
.pxl-accordion.style1 .ac-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-accordion.style1 .ac-title {
    font-size: 20px;
  }
}
.pxl-accordion.style1 .ac-title .pxl-icon {
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.pxl-accordion.style1 .ac-title .pxl-icon::before {
  content: "";
  position: relative;
  font-size: 22px;
  font-family: "pxli";
  left: 0;
  top: 0;
  color: #fff;
  transition: all 350ms ease;
}
@media (max-width: 575px) {
  .pxl-accordion.style1 .ac-title .pxl-icon {
    width: 25px;
    height: 25px;
  }
}
.pxl-accordion.style1 .ac-title .text {
  max-width: 572px;
}
.pxl-accordion.style1 .ac-content {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 570px;
}
.pxl-accordion.style2 .ac-item {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .pxl-accordion.style2 .ac-item {
    padding: 30px 15px;
  }
}
.pxl-accordion.style2 .ac-item:first-child {
  border-top: none;
  padding-top: 0 !important;
}
.pxl-accordion.style2 .ac-item:last-child {
  padding-bottom: 0 !important;
}
.pxl-accordion.style2 .ac-item.active:last-child {
  margin-bottom: 0 !important;
}
.pxl-accordion.style2 .ac-item.active .ac-title {
  color: var(--primary-color);
}
.pxl-accordion.style2 .ac-item.active .pxl-icon::before {
  transform: rotate(-180deg);
}
.pxl-accordion.style2 .ac-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-accordion.style2 .ac-title {
    font-size: 20px;
  }
}
.pxl-accordion.style2 .ac-title .pxl-icon {
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.pxl-accordion.style2 .ac-title .pxl-icon::before {
  content: "";
  position: relative;
  font-size: 22px;
  font-family: "pxli";
  left: 0;
  top: 0;
  color: #fff;
  transition: all 350ms ease;
}
@media (max-width: 575px) {
  .pxl-accordion.style2 .ac-title .pxl-icon {
    width: 25px;
    height: 25px;
  }
}
.pxl-accordion.style2 .ac-title .text {
  max-width: 572px;
}
.pxl-accordion.style2 .ac-content {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 570px;
}
.pxl-accordion.style3 .ac-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 31, 87, 0.1);
}
@media (max-width: 575px) {
  .pxl-accordion.style3 .ac-item {
    padding: 20px 0;
  }
}
.pxl-accordion.style3 .ac-item:first-child {
  padding-top: 0 !important;
}
.pxl-accordion.style3 .ac-item.active:last-child {
  margin-bottom: 0 !important;
}
.pxl-accordion.style3 .ac-item.active .pxl-icon::after {
  transform: rotate(-90deg);
}
.pxl-accordion.style3 .ac-title {
  color: #0F1217;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-accordion.style3 .ac-title {
    font-size: 18px;
  }
}
.pxl-accordion.style3 .ac-title .pxl-icon {
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
.pxl-accordion.style3 .ac-title .pxl-icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 350ms ease;
}
.pxl-accordion.style3 .ac-title .pxl-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  background-color: var(--primary-color);
  transition: all 350ms ease;
}
.pxl-accordion.style3 .ac-title .text {
  max-width: 572px;
}
.pxl-accordion.style3 .ac-content {
  margin-top: 16px;
  max-width: 485px;
  color: #68758C;
}
.pxl-widget-divider .pxl-divider::before {
  --linear-1: rgba(255, 255, 255, 0.00);
  --linear-2: rgba(255, 255, 255, 0.40);
  --linear-3: rgba(255, 255, 255, 0.00);
  content: "";
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  background: linear-gradient(270deg, var(--linear-1) 3.98%, var(--linear-2) 49.67%, var(--linear-3) 95.35%);
}
.pxl-tabs .tabs-content {
  position: relative;
}
.pxl-tabs .tabs-content .tab-content {
  display: none;
  opacity: 0;
  -webkit-animation: pxlFadeInUp 400ms linear 1 forwards;
  -khtml-animation: pxlFadeInUp 400ms linear 1 forwards;
  -moz-animation: pxlFadeInUp 400ms linear 1 forwards;
  -ms-animation: pxlFadeInUp 400ms linear 1 forwards;
  -o-animation: pxlFadeInUp 400ms linear 1 forwards;
  animation: pxlFadeInUp 400ms linear 1 forwards;
}
.pxl-tabs .tabs-content .tab-content.active {
  display: block;
}
.pxl-tabs.layout-1 .tabs-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  column-gap: 40px;
  row-gap: 15px;
  border-bottom: 1px solid #E5E5E5;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-1 .tabs-title {
    column-gap: 20px;
    flex-wrap: wrap;
  }
}
.pxl-tabs.layout-1 .tabs-title.style2 {
  border: none;
  position: relative;
  column-gap: 0;
}
.pxl-tabs.layout-1 .tabs-title.style2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #525252;
  border-radius: 100px;
}
.pxl-tabs.layout-1 .tabs-title.style2 .title-icon {
  padding: 6px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxl-tabs.layout-1 .tabs-title.style2 .title-icon svg {
  width: 14px;
  height: 14px;
}
.pxl-tabs.layout-1 .tabs-title.style2 .title-icon i {
  font-size: 14px;
}
.pxl-tabs.layout-1 .tabs-title.style2 .tab-title {
  padding-bottom: 14px;
  column-gap: 12px;
}
.pxl-tabs.layout-1 .tabs-title.style2 .tab-title::after {
  border-radius: 100px;
  background-color: #fff;
  z-index: 1;
  height: 2px;
  transform: scaleX(0);
}
.pxl-tabs.layout-1 .tabs-title.style2 .tab-title.active::after {
  height: 2px;
  transform: scaleX(1);
}
.pxl-tabs.layout-1 .tab-title {
  color: #737373;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  position: relative;
  padding-bottom: 28px;
  cursor: pointer;
}
.pxl-tabs.layout-1 .tab-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 350ms ease;
  background-color: var(--primary-color);
  border-radius: 8px 8px 0 0;
}
.pxl-tabs.layout-1 .tab-title .title-icon {
  font-size: 20px;
  line-height: 1.1;
}
.pxl-tabs.layout-1 .tab-title svg {
  width: 20px;
  height: 20px;
  fill: #737373;
}
.pxl-tabs.layout-1 .tab-title.active {
  color: #0A0A0A;
}
.pxl-tabs.layout-1 .tab-title.active svg {
  fill: #0A0A0A;
}
.pxl-tabs.layout-1 .tab-title.active::after {
  height: 4px;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-1 .tab-title {
    font-size: 16px;
    width: 100%;
    padding-bottom: 15px;
  }
  .pxl-tabs.layout-1 .tab-title .title-icon {
    font-size: 17px;
    line-height: 1.1;
  }
  .pxl-tabs.layout-1 .tab-title svg {
    width: 17px;
    height: 17px;
    fill: #737373;
  }
}
.pxl-tabs.layout-1 .tabs-content {
  margin-top: 40px;
}
.pxl-tabs.layout-2 {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(213deg, #222 0%, #393939 80.39%);
  box-shadow: -351px 460px 162px 0 rgba(0, 0, 0, 0.01), -225px 295px 148px 0 rgba(0, 0, 0, 0.04), -126px 166px 125px 0 rgba(0, 0, 0, 0.15), -56px 74px 93px 0 rgba(0, 0, 0, 0.25), -14px 18px 51px 0 rgba(0, 0, 0, 0.29), 0 1.5px 0 0 #686868, 0 2px 3px 0 rgba(0, 0, 0, 0.2) inset;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 {
    padding: 10px;
  }
}
.pxl-tabs.layout-2 .tab-title {
  color: var(--body-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  width: 50%;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 .tab-title {
    font-size: 16px;
    padding: 10px;
  }
}
.pxl-tabs.layout-2 .tab-title::after {
  --border-color: rgba(255, 255, 255, 0.40);
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 3.98%, var(--border-color) 49.67%, rgba(255, 255, 255, 0) 95.35%);
  transform: scaleX(0);
  transition: all 350ms ease;
}
.pxl-tabs.layout-2 .tab-title.active {
  color: #fafafa;
}
.pxl-tabs.layout-2 .tab-title.active::after {
  transform: scaleX(1);
}
.pxl-tabs.layout-2 .tabs-title {
  position: relative;
  padding-bottom: 7px;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 .tabs-title {
    padding-bottom: 0;
  }
}
.pxl-tabs.layout-2 .tabs-title .bg-title {
  position: absolute;
  inset: 0;
  background-image: url(../images/form-left.svg);
  opacity: 0;
  transition: all 350ms ease;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 767px) {
  .pxl-tabs.layout-2 .tabs-title .bg-title {
    background-size: auto;
  }
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 .tabs-title .bg-title {
    background-size: 150%;
  }
}
.pxl-tabs.layout-2 .tab-title:nth-child(odd).active ~ .bg-title {
  opacity: 1;
  border-radius: 12px 0 0 0;
}
.pxl-tabs.layout-2 .tab-title:nth-child(even).active ~ .bg-title {
  opacity: 1;
  background-image: url(../images/form-right.svg);
  border-radius: 0 12px 0 0;
}
.pxl-tabs.layout-2 .tab-content {
  position: relative;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  -webkit-animation: none;
  -khtml-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  -o-animation: none;
  animation: none;
  transition: all 350ms ease;
}
.pxl-tabs.layout-2 .tab-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/form-left.svg);
  opacity: 0;
  transition: all 350ms ease;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.pxl-tabs.layout-2 .tab-content.active {
  opacity: 1;
}
.pxl-tabs.layout-2 .tab-content:nth-child(odd).active::after {
  opacity: 1;
}
@media (max-width: 1399px) {
  .pxl-tabs.layout-2 .tab-content:nth-child(odd).active::after {
    background-size: 200%;
  }
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 .tab-content:nth-child(odd).active::after {
    background-size: 300%;
  }
}
.pxl-tabs.layout-2 .tab-content:nth-child(even).active::after {
  opacity: 1;
  background-image: url(../images/form-right.svg);
}
@media (max-width: 1399px) {
  .pxl-tabs.layout-2 .tab-content:nth-child(even).active::after {
    background-size: 200%;
  }
}
@media (max-width: 575px) {
  .pxl-tabs.layout-2 .tab-content:nth-child(even).active::after {
    background-size: 300%;
  }
}
.pxl-tabs.layout-3 .tabs-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 15px;
}
.pxl-tabs.layout-3 .tabs-title > * {
  max-width: 100%;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-3 .tabs-title {
    column-gap: 12px;
    row-gap: 12px;
  }
}
.pxl-tabs.layout-3 .tab-title {
  color: #ADB4C1;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 350ms ease;
}
.pxl-tabs.layout-3 .tab-title::before {
  content: "/";
  position: relative;
  margin-right: 16px;
  color: #ADB4C1;
}
@media (max-width: 575px) {
  .pxl-tabs.layout-3 .tab-title {
    font-size: 26px;
  }
  .pxl-tabs.layout-3 .tab-title::before {
    margin-right: 12px;
  }
}
.pxl-tabs.layout-3 .tab-title:first-child::before {
  display: none;
}
.pxl-tabs.layout-3 .tab-title.active {
  color: var(--heading-color);
}
.pxl-video-player .btn-video-wrap {
  flex-direction: column;
  cursor: pointer;
}
.pxl-video-player .pxl-video-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out 0s;
}
.pxl-video-player .pxl-video-btn > span {
  font-size: 14px;
  color: #000000;
}
.pxl-video-player .pxl-video-btn svg {
  transition: all 300ms ease-in-out 0s;
}
.pxl-video-player .pxl-video-btn:hover svg {
  transform: scale(0.85);
}
.pxl-video-player .video-text {
  font-size: 18px;
  color: var(--heading-color);
  margin-top: 14px;
}
.pxl-login-wrap .pu-form-heading {
  text-align: center;
  margin-bottom: 29px;
}
.pxl-login-wrap .form-title {
  color: #24262B;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 14px;
}
@media (max-width: 575px) {
  .pxl-login-wrap .form-title {
    font-size: 24px;
  }
}
.pxl-login-wrap .form-desc {
  color: #505050;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.pxl-login-wrap .pu-form-item {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .pxl-login-wrap .pu-form-item {
    margin-bottom: 25px;
  }
}
.pxl-login-wrap .pu-form-item:last-child {
  margin-bottom: 0;
}
.pxl-login-wrap .pu-form-item .lbl {
  color: #24262B;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
.pxl-login-wrap .pu-form-item input {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  background: #F3F3F3;
  border: none;
  padding-left: 24px;
  padding-right: 24px;
}
.pxl-login-wrap .pu-form-item input::placeholder {
  color: #666;
  font-size: 15px;
  font-weight: 400;
}
.pxl-login-wrap .pu-button-action {
  margin-top: 44px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15.5px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .pxl-login-wrap .pu-button-action {
    margin-top: 35px;
  }
}
.pxl-login-wrap .pu-button-action .pxl-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  padding: 15px 35px;
  background: var(--heading-color);
  transition: all 300ms ease-in-out 0s;
}
.pxl-login-wrap .pu-button-action .pxl-btn:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.pxl-login-wrap .pu-button-action .pu-link-form > a {
  color: #24262B;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  border: 1px solid #24262B;
  padding: 12px 35px;
  transition: all 300ms ease-in-out 0s;
}
.pxl-login-wrap .pu-button-action .pu-link-form > a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-color: var(--primary-color);
}
.pxl-login-wrap.login-form .remember-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.pxl-login-wrap.login-form .remember-wrap > a {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}
.pxl-login-wrap.login-form .label-for-checkbox {
  cursor: pointer;
  margin-bottom: 0;
}
.pxl-login-wrap.login-form .label-for-checkbox input {
  border-radius: 1px;
  border: 2px solid #D7D7D7;
}
.pxl-login-wrap.login-form .label-for-checkbox span {
  color: #24262B;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  position: relative;
  top: -1px;
}
.pxl-login-wrap.login-form .box-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 14px;
}
.pxl-login-wrap.login-form .pu-button-action {
  margin-top: 0;
}
.pxl-login-wrap.login-form .pu-link-form > a {
  color: #24262B;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  border: 1px solid #24262B;
  padding: 12px 35px;
  transition: all 300ms ease-in-out 0s;
}
.pxl-login-wrap.login-form .pu-link-form > a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-color: var(--primary-color);
}
.pxl-login-wrap.login-form .pu-form-item.pu-login-pass {
  margin-bottom: 14px;
}
.pxl-frontend-form button[type="submit"] {
  min-width: 186px;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-frontend-form button[type="submit"] .btn-text {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pxl-frontend-form button[type="submit"] .pxli-spinner {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7.5px;
  margin-left: -7.5px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.pxl-frontend-form button[type="submit"].loading .btn-text {
  opacity: 0;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.pxl-frontend-form button[type="submit"].loading .pxli-spinner {
  font-size: inherit;
  opacity: 1;
  visibility: visible;
  -webkit-animation: spin 1s infinite linear;
  -khtml-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
.pu-error {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.pu-error .tt-text {
  position: absolute;
  top: 7px;
  right: 0;
  pointer-events: none;
  display: inline-block;
  padding: 5px 20px;
  font-size: 13px;
  line-height: 1.5;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background: #e15a58;
}
.pu-error .tt-text:before {
  content: "";
  position: absolute;
  background: 0 0;
  z-index: 1000001;
  margin-bottom: 0;
  top: auto;
  left: auto;
  right: 6px;
  top: -12px;
  bottom: auto;
  transition: 0.3s;
  border-bottom-color: #e15a58;
}
.field-checkbox .pu-error .tt-text {
  left: 0;
  right: auto;
}
.field-checkbox .pu-error .tt-text:before {
  left: 0;
  right: auto;
}
.pu-password-strength.short {
  color: #ff030b;
}
.pu-password-strength.bad {
  color: #ff9800;
}
.pu-password-strength.good {
  color: #b0c017;
}
.pu-password-strength.strong {
  color: #5ed640;
}
.pu-password-hint {
  font-size: 13px;
  color: #ff030b;
}
.pxl-login-reg-form .pxl-login-form {
  display: none;
}
.pxl-login-reg-form .pxl-login-form.active {
  display: block;
}
.pxl-login-reg-form .pxl-register-form {
  display: none;
}
.pxl-login-reg-form .pxl-register-form.active {
  display: block;
}
.pxl-anchor {
  cursor: pointer;
}
.pxl-anchor .pxl-anchor-icon {
  align-items: center;
  justify-content: center;
}
.pxl-anchor .pxl-anchor-icon svg, .pxl-anchor .pxl-anchor-icon i {
  transition: 300ms ease 0s;
}
.pxl-anchor .pxl-anchor-icon:hover svg, .pxl-anchor .pxl-anchor-icon:hover i {
  transform: scale(1.1) translateY(-3px);
}
.pxl-image-box1 .pxl-item--inner {
  position: relative;
}
.pxl-image-box1 .pxl-item--inner:hover .image--reveal {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -khtml-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
}
.pxl-image-box1 .image--reveal {
  position: absolute;
  left: 20px;
  bottom: 17px;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.pxl-image-box1 .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.pxl-image-box1 .item--image img {
  opacity: 0;
  object-fit: cover;
}
.pxl-image-box1 .image-back, .pxl-image-box1 .map {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.pxl-image-box1 .icon-bounce {
  animation: icon_bounce 2s ease infinite;
}
.pxl-fancybox-wrap.layout-1 .item-icon {
  color: #fff;
  width: 65px;
  height: 65px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 350ms ease;
}
.pxl-fancybox-wrap.layout-1 .item-icon svg {
  fill: #fff;
  width: 32px;
  height: 32px;
  transition: all 350ms ease;
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-1 .item-icon {
    width: 50px;
    height: 50px;
  }
  .pxl-fancybox-wrap.layout-1 .item-icon svg {
    width: 22px;
    height: 22px;
  }
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content {
  --color-shadow: rgba(0, 0, 0, 0.06);
  padding: 32px;
  position: relative;
  height: 458px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  perspective: 1000px;
  background-color: #fff;
  box-shadow: 0 9px 24px 0 var(--color-shadow);
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-1 .pxl-fancybox-content {
    height: 400px;
  }
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content::after {
  content: "";
  position: absolute;
  right: -85px;
  top: -95px;
  width: 336px;
  height: 336px;
  background-image: url(../images/overlay-fancybox1.webp);
  opacity: 0;
  z-index: 0;
  transition: opacity 350ms ease, transform 700ms ease;
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content::before {
  content: "";
  transform: rotate3d(1, 0, 0, 90deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 0;
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-1 .pxl-fancybox-content {
    padding: 30px 20px;
    height: 350px;
  }
  .pxl-fancybox-wrap.layout-1 .pxl-fancybox-content::after {
    width: 260px;
    height: 260px;
    background-size: cover;
  }
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content:hover::after {
  opacity: 1;
  transform: rotate(360deg);
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content:hover .title {
  color: #fff;
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content:hover .desc {
  color: #fff;
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content:hover .item-icon {
  background-color: #fff;
  color: var(--primary-color);
}
.pxl-fancybox-wrap.layout-1 .pxl-fancybox-content:hover .item-icon svg {
  fill: var(--primary-color);
}
.pxl-fancybox-wrap.layout-1 .title {
  color: #0C0D02;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: all 350ms ease;
  text-transform: capitalize;
  max-width: 296px;
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-1 .title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-1 .title {
    font-size: 30px;
  }
}
.pxl-fancybox-wrap.layout-1 .desc {
  color: #525252;
  position: relative;
  z-index: 1;
  transition: all 350ms ease;
}
.pxl-fancybox-wrap.layout-1 .mouseenter.top::before {
  transform-origin: 50% 0%;
  animation: in-top 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseenter.right::before {
  transform-origin: 100% 0%;
  animation: in-right 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseenter.bottom::before {
  transform-origin: 50% 100%;
  animation: in-bottom 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseenter.left::before {
  transform-origin: 0% 0%;
  animation: in-left 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseleave.top::before {
  transform-origin: 50% 0%;
  animation: out-top 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseleave.right::before {
  transform-origin: 101% 50%;
  animation: out-right 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseleave.bottom::before {
  transform-origin: 50% 100%;
  animation: out-bottom 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-1 .mouseleave.left::before {
  transform-origin: 0% 0%;
  animation: out-left 300ms ease 0ms 1 forwards;
}
.pxl-fancybox-wrap.layout-2 .box-image {
  display: flex;
  position: relative;
}
.pxl-fancybox-wrap.layout-2 .box-image:hover::before {
  transform: scale(1);
  opacity: 1;
}
.pxl-fancybox-wrap.layout-2 .box-image:hover .item-image {
  border-radius: 50%;
  border: 52px solid #EFEDEC;
}
.pxl-fancybox-wrap.layout-2 .box-image:hover .item-image::before {
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 991px) {
  .pxl-fancybox-wrap.layout-2 .box-image:hover .item-image {
    border: 30px solid #EFEDEC;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-2 .box-image:hover .item-image {
    border: 20px solid #EFEDEC;
  }
}
.pxl-fancybox-wrap.layout-2 .item-image {
  border-radius: 24px;
  overflow: hidden;
  transition: all 350ms ease;
  z-index: 0;
}
.pxl-fancybox-wrap.layout-2 .item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
  transform: scale(0.5);
  opacity: 0;
  transition: all 350ms ease;
  z-index: -1;
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-2 .item-image {
    border-radius: 20px;
  }
}
.pxl-fancybox-wrap.layout-2 .button-more {
  z-index: 1;
}
.pxl-fancybox-wrap.layout-2 .button-more#circle-cursor {
  color: #262626;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55556;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(12px);
}
@media (max-width: 991px) {
  .pxl-fancybox-wrap.layout-2 .button-more#circle-cursor {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-2 .button-more#circle-cursor {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-2 .button-more#circle-cursor {
    width: 80px;
    height: 80px;
    font-size: 15px;
  }
}
.pxl-fancybox-wrap.layout-2 .item-content {
  margin-top: 32px;
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-2 .item-content {
    margin-top: 25px;
  }
}
.pxl-fancybox-wrap.layout-2 .item-category {
  gap: 10px;
  flex-wrap: wrap;
}
.pxl-fancybox-wrap.layout-2 .item-category .category {
  border-radius: 30px;
  background-color: rgba(29, 24, 24, 0.1);
  color: #262626;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 7.5px 20px;
}
.pxl-fancybox-wrap.layout-2 .title {
  color: #262626;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.33333;
  letter-spacing: -0.36px;
  margin-top: 16px;
  margin-bottom: 6px;
}
.pxl-fancybox-wrap.layout-2 .title > a {
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  background-position-y: -2px;
  color: inherit;
}
.pxl-fancybox-wrap.layout-2 .title > a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-2 .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-2 .title {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.pxl-fancybox-wrap.layout-2 .desc {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  max-width: 515px;
}
.pxl-fancybox-wrap.layout-3 .item-image {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-3 .item-image {
    margin-bottom: 25px;
  }
}
.pxl-fancybox-wrap.layout-3 .title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 30px;
  letter-spacing: 0;
  max-width: 240px;
  transition: all 350ms ease;
}
.pxl-fancybox-wrap.layout-3 .title a {
  color: inherit;
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-3 .title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-3 .title {
    margin-bottom: 20px;
  }
}
.pxl-fancybox-wrap.layout-3 .desc {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  transition: all 350ms ease;
}
.pxl-fancybox-wrap.layout-3 .pxl-fancybox-content {
  padding: 32px 24px 16px;
  border-radius: 24px;
  border: 1px solid #CCC;
  transition: all 350ms ease;
}
.pxl-fancybox-wrap.layout-3 .pxl-fancybox-content:hover {
  border-color: var(--heading-color);
}
.pxl-fancybox-wrap.layout-3 .pxl-fancybox-content:hover .desc {
  color: var(--heading-color);
}
@media (max-width: 767px) {
  .pxl-fancybox-wrap.layout-3 .pxl-fancybox-content {
    padding: 30px 20px 16px;
  }
}
@media (max-width: 575px) {
  .pxl-fancybox-wrap.layout-3 .pxl-fancybox-content {
    padding: 30px 15px 16px;
    border-radius: 20px;
  }
}
.pxl-download .item-download {
  --color-shadow: rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 8px;
  background-color: var(--primary-color);
  box-shadow: 0 4px 4px 0 var(--color-shadow) inset;
  padding: 12px 24px;
  margin-top: 10px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .pxl-download .item-download {
    padding: 10px 20px;
  }
}
.pxl-download .item-download:first-child {
  margin-top: 0 !important;
}
.pxl-download .item-download svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.pxl-download .item-download i {
  color: #fff;
  font-size: 20px;
}
.pxl-download .item-download .download-title {
  color: #FAFAFA;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.pxl-download .item-download:hover .download-title {
  animation: MoveScaleUpInitial 0.35s forwards, MoveScaleUpEnd 0.35s forwards 0.35s;
}
.pxl-countdown.layout-1 .pxl-countdown-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 64px;
  row-gap: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .pxl-countdown.layout-1 .pxl-countdown-container {
    column-gap: 44px;
  }
}
@media (max-width: 575px) {
  .pxl-countdown.layout-1 .pxl-countdown-container {
    column-gap: 25px;
  }
}
.pxl-countdown.layout-1 .inner-number {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: -351px 460px 162px rgba(0, 0, 0, 0.01), -225px 295px 148px rgba(0, 0, 0, 0.04), -126px 166px 125px rgba(0, 0, 0, 0.15), -56px 74px 93px rgba(0, 0, 0, 0.25), -14px 18px 51px rgba(0, 0, 0, 0.29);
  font-family: var(--heading-font-family);
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.4px;
}
@media (max-width: 767px) {
  .pxl-countdown.layout-1 .inner-number {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .pxl-countdown.layout-1 .inner-number {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
.pxl-countdown.layout-1 .inner-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5555555556;
}
@media (max-width: 575px) {
  .pxl-countdown.layout-1 .inner-text {
    font-size: 16px;
  }
}
.pxl-countdown.layout-1 .time-item {
  min-width: 100px;
}
@media (max-width: 991px) {
  .pxl-countdown.layout-1 .time-item {
    min-width: 90px;
  }
}
@media (max-width: 767px) {
  .pxl-countdown.layout-1 .time-item {
    min-width: auto;
  }
}
.pxl-countdown.layout-1 .item-dot {
  display: none;
}
.pxl-countdown.layout-1 .style-dot .time-item {
  display: flex;
  align-items: center;
}
.pxl-countdown.layout-1 .style-dot > * {
  position: relative;
}
.pxl-countdown.layout-1 .style-dot > *::before {
  content: ":";
  position: relative;
  left: -36px;
  font-size: 31px;
  color: #A3A3A3;
  top: 35%;
  transform: translateY(-65%);
}
.pxl-countdown.layout-1 .style-dot > *:first-child::before {
  display: none;
}
.pxl-heading-scroll-effect {
  display: flex;
  --heading-color-1: rgba(250, 250, 250, 0.70);
}
.pxl-heading-scroll-effect .heading-text {
  margin-bottom: 0;
  line-height: 1.2;
}
.pxl-heading-scroll-effect .heading-text div {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background: linear-gradient(to right, var(--heading-color) 50%, var(--heading-color-1) 50%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  background-position-x: 100%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.75s;
  margin-top: -16px;
}
.pxl-heading-scroll-effect .heading-text div:first-child {
  margin-top: 0;
}
.pxl-heading-scroll-effect .heading-text.icon-arrow div:first-child::before {
  content: "";
  position: relative;
  display: inline-flex;
  top: -11px;
  width: 0;
  height: 0;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-left: 14px solid #0C0D02;
  margin-right: 83px;
}
@media (max-width: 575px) {
  .pxl-heading-scroll-effect .heading-text.icon-arrow div:first-child::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #0C0D02;
  }
}
.pxl-sphere canvas {
  pointer-events: none;
}
.pxl-location-wrap.layout-1 .map-area {
  margin-top: 40px;
}
.pxl-location-wrap.layout-1 .map-area .map-wrapper {
  position: relative;
}
.pxl-location-wrap.layout-1 .map-area .map-wrapper img {
  width: 100%;
}
.pxl-location-wrap.layout-1 .map-area .map-wrapper::before {
  --overlay-color: #EEE;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--overlay-color) 6.28%, rgba(238, 238, 238, 0) 39.67%);
}
.pxl-location-wrap.layout-1 .map-area .location-wrap {
  position: absolute;
  -webkit-transform: translate(-50%, -100%);
  -khtml-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.pxl-location-wrap.layout-1 .tt-top-left .box-inner, .pxl-location-wrap.layout-1 .tt-top-right .box-inner {
  bottom: 100%;
  right: 50%;
}
.pxl-location-wrap.layout-1 .pxl-ttip {
  position: relative;
  display: inline-block;
}
.pxl-location-wrap.layout-1 .pxl-ttip .box-inner {
  position: absolute;
  pointer-events: none;
  background-color: #FAFAFA;
  padding: 12px 12px 12px 14px;
  -webkit-transform: translate(50%, 0) scale(0.8);
  -khtml-transform: translate(50%, 0) scale(0.8);
  -moz-transform: translate(50%, 0) scale(0.8);
  -ms-transform: translate(50%, 0) scale(0.8);
  -o-transform: translate(50%, 0) scale(0.8);
  transform: translate(50%, 0) scale(0.8);
  gap: 13px;
  width: max-content;
  border-radius: 8px;
  opacity: 0;
  transition: all 300ms ease-in-out 0s;
  filter: drop-shadow(0 3px 7px rgba(92, 92, 92, 0.1)) drop-shadow(0 30px 18px rgba(92, 92, 92, 0.05)) drop-shadow(0 53px 21px rgba(92, 92, 92, 0.01));
}
.pxl-location-wrap.layout-1 .pxl-ttip .box-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  bottom: -10px;
  width: 24px;
  height: 12px;
  background-color: #FAFAFA;
  mask: url(../images/arrow-down-map.webp) no-repeat center;
  -webkit-mask: url(../images/arrow-down-map.webp) no-repeat center;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-1 .pxl-ttip .box-inner {
    gap: 8px;
    padding: 10px 8px 10px 5px;
  }
}
.pxl-location-wrap.layout-1 .map-marker {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  transition: all 400ms cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(18px);
}
.pxl-location-wrap.layout-1 .map-marker::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  background-color: var(--primary-color);
  opacity: 0;
  border-radius: 50%;
  transition: all 400ms cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
  visibility: visible;
  animation: index-pulse-small-map 1000ms linear infinite;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-1 .map-marker {
    width: 12px;
    height: 12px;
  }
}
.pxl-location-wrap.layout-1 .title-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pxl-location-wrap.layout-1 .item-image {
  display: flex;
  align-items: center;
}
.pxl-location-wrap.layout-1 .item-image img {
  border-radius: 50%;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-1 .item-image img {
    width: 32px;
    height: 32px;
  }
}
.pxl-location-wrap.layout-1 .item-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-1 .item-title {
    font-size: 16px;
  }
}
.pxl-location-wrap.layout-1 .item-subtitle {
  color: #737373;
}
.pxl-location-wrap.layout-1 .location-wrap:hover .box-inner {
  opacity: 1;
  -webkit-transform: translate(50%, -15px) scale(1);
  -khtml-transform: translate(50%, -15px) scale(1);
  -moz-transform: translate(50%, -15px) scale(1);
  -ms-transform: translate(50%, -15px) scale(1);
  -o-transform: translate(50%, -15px) scale(1);
  transform: translate(50%, -15px) scale(1);
}
.pxl-location-wrap.layout-2 .map-area .map-wrapper img {
  width: 100%;
}
.pxl-location-wrap.layout-2 .map-area .location-wrap {
  position: absolute;
  -webkit-transform: translate(-50%, -100%);
  -khtml-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.pxl-location-wrap.layout-2 .tt-top-left .box-inner, .pxl-location-wrap.layout-2 .tt-top-right .box-inner {
  top: 8px;
  right: 50%;
}
@media (max-width: 991px) {
  .pxl-location-wrap.layout-2 .tt-top-left .box-inner, .pxl-location-wrap.layout-2 .tt-top-right .box-inner {
    transform: translateX(50%);
  }
}
.pxl-location-wrap.layout-2 .tt-top-left:nth-child(odd) .box-inner, .pxl-location-wrap.layout-2 .tt-top-right:nth-child(odd) .box-inner {
  left: 50%;
}
@media (max-width: 991px) {
  .pxl-location-wrap.layout-2 .tt-top-left:nth-child(odd) .box-inner, .pxl-location-wrap.layout-2 .tt-top-right:nth-child(odd) .box-inner {
    transform: translateX(-50%);
  }
}
.pxl-location-wrap.layout-2 .tt-top-left:nth-child(odd) .box-inner .item-location, .pxl-location-wrap.layout-2 .tt-top-right:nth-child(odd) .box-inner .item-location {
  right: 0;
  left: auto;
}
.pxl-location-wrap.layout-2 .tt-top-left:nth-child(odd) .box-inner::before, .pxl-location-wrap.layout-2 .tt-top-right:nth-child(odd) .box-inner::before {
  right: auto;
  left: 0;
}
.pxl-location-wrap.layout-2 .pxl-ttip {
  position: relative;
  display: inline-block;
}
.pxl-location-wrap.layout-2 .pxl-ttip .box-inner {
  position: absolute;
  width: max-content;
  pointer-events: none;
}
.pxl-location-wrap.layout-2 .pxl-ttip .box-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all 350ms ease 0.35s;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .pxl-ttip .box-inner::before {
    display: none;
  }
}
.pxl-location-wrap.layout-2 .map-marker {
  width: 16px;
  height: 16px;
  transform: scale(1);
  background-color: #fe5630b3;
  transition: all 400ms cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 350ms ease;
  cursor: pointer;
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .map-marker {
    width: 14px;
    height: 14px;
  }
}
.pxl-location-wrap.layout-2 .map-marker::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms ease;
}
.pxl-location-wrap.layout-2 .map-marker::after {
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  position: absolute;
  font-family: "pxli";
  font-size: 5px;
  color: #fff;
  transition: all 350ms ease;
  opacity: 0;
}
.pxl-location-wrap.layout-2 .title-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 28px;
  left: 28px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
}
@media (max-width: 1199px) {
  .pxl-location-wrap.layout-2 .title-location {
    bottom: 20px;
    left: 15px;
    padding: 12px;
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .title-location {
    bottom: 10px;
    left: 10px;
    padding: 8px 5px;
  }
}
.pxl-location-wrap.layout-2 .item-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .pxl-location-wrap.layout-2 .item-title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .item-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.pxl-location-wrap.layout-2 .item-subtitle {
  color: #D4D4D4;
}
@media (max-width: 767px) {
  .pxl-location-wrap.layout-2 .item-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .item-subtitle {
    font-size: 12px;
  }
}
.pxl-location-wrap.layout-2 .item-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.pxl-location-wrap.layout-2 .item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51, 6, 0, 0.2), rgba(51, 6, 0, 0.2));
  z-index: 0;
}
.pxl-location-wrap.layout-2 .item-location {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 21px;
  transition: all 350ms ease-in-out;
}
.pxl-location-wrap.layout-2 .item-location .item-title {
  color: var(--heading-color);
  margin-bottom: 4px;
}
.pxl-location-wrap.layout-2 .item-location .item-subtitle {
  color: #737373;
}
@media (max-width: 767px) {
  .pxl-location-wrap.layout-2 .item-location {
    top: 15px;
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .item-location {
    display: none;
  }
}
.pxl-location-wrap.layout-2 .item-image, .pxl-location-wrap.layout-2 .title-location {
  opacity: 0;
  transition: all 350ms ease-in-out 0.3s;
}
.pxl-location-wrap.layout-2 .item-image {
  transform: scaleY(0);
  transform-origin: 50% top;
  transition: all 350ms ease 0s;
}
.pxl-location-wrap.layout-2 .title-location {
  transform: translateY(25px);
  transition-delay: 0s;
}
.pxl-location-wrap.layout-2 .location-wrap::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(254, 70, 46, 0.3);
  transition: all 350ms ease;
  transform: scale(1) translate(-50%, -50%);
  opacity: 0;
}
.pxl-location-wrap.layout-2 .location-wrap:hover::after {
  opacity: 1;
  width: 84px;
  height: 84px;
}
@media (max-width: 767px) {
  .pxl-location-wrap.layout-2 .location-wrap:hover::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .location-wrap:hover::after {
    width: 40px;
    height: 40px;
  }
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner {
  pointer-events: visible;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner::before {
  width: 0;
  transition: all 350ms ease 0s;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner .item-image, .pxl-location-wrap.layout-2 .location-wrap:hover .box-inner .title-location {
  opacity: 1;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner .item-image {
  transform: scaleY(1);
  transition: all 350ms ease 0.35s;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner .title-location {
  transform: translateY(0);
  transition-delay: 550ms;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .box-inner .item-location {
  opacity: 0;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .map-marker {
  background-color: var(--primary-color);
  transform: scale(4);
}
@media (max-width: 767px) {
  .pxl-location-wrap.layout-2 .location-wrap:hover .map-marker {
    transform: scale(3);
  }
}
@media (max-width: 575px) {
  .pxl-location-wrap.layout-2 .location-wrap:hover .map-marker {
    transform: scale(2);
  }
}
.pxl-location-wrap.layout-2 .location-wrap:hover .map-marker::before {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.pxl-location-wrap.layout-2 .location-wrap:hover .map-marker::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.pxl-pricing-single .icon-brand {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #0A0A0A;
  margin-bottom: 16px;
}
.pxl-pricing-single .icon-brand svg {
  fill: #FAFAFA;
}
.pxl-pricing-single .icon-brand i {
  color: #FAFAFA;
}
@media (max-width: 575px) {
  .pxl-pricing-single .icon-brand {
    width: 42px;
    height: 42px;
  }
}
.pxl-pricing-single .pricing-price {
  color: #0A0A0A;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -1.44px;
}
.pxl-pricing-single .pricing-price .price-suffix {
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .pxl-pricing-single .pricing-price {
    font-size: 35px;
  }
}
.pxl-pricing-single .pricing-title {
  color: #0A0A0A;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .pxl-pricing-single .pricing-title {
    font-size: 20px;
  }
}
.pxl-pricing-single .desc {
  color: #525252;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .pxl-pricing-single .desc {
    font-size: 15px;
  }
}
.pxl-pricing-single .item-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pxl-pricing-single .item-feature .pxl-icon {
  display: inline-flex;
  padding: 3px;
  border-radius: 4px;
  background-color: rgba(10, 10, 10, 0.05);
  backdrop-filter: blur(6px);
}
.pxl-pricing-single .item-feature .pxl-icon i {
  color: #000;
  font-size: 14px;
  transition: all 250ms ease-in 0s;
}
.pxl-pricing-single .item-feature .pxl-icon svg {
  fill: #000;
  width: 14px;
  height: 14px;
  transition: all 250ms ease-in 0s;
}
.pxl-pricing-single .item-feature .item-text {
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
.pxl-pricing-single .item-feature .item-text2 {
  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.pxl-pricing-single .item-feature + .item-feature {
  margin-top: 16px;
}
@media (max-width: 575px) {
  .pxl-pricing-single .item-feature + .item-feature {
    margin-top: 12px;
  }
}
.pxl-pricing-single .pricing-feature {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .pxl-pricing-single .pricing-feature {
    margin-top: 30px;
  }
}
.pxl-pricing-single .pricing-button {
  margin-top: 20px;
}
.pxl-pricing-single .pricing-button .btn-primary {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #FAFAFA;
  background-color: #E5E5E5;
  box-shadow: 0 97px 27px 0 rgba(217, 217, 217, 0.01), 0 62px 25px 0 rgba(217, 217, 217, 0.07), 0 35px 21px 0 rgba(217, 217, 217, 0.25), 0 16px 16px 0 rgba(217, 217, 217, 0.43), 0 4px 9px 0 rgba(217, 217, 217, 0.49), 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  color: #0A0A0A;
  transition: all 350ms ease-in-out 0s;
}
@media (max-width: 575px) {
  .pxl-pricing-single .pricing-button .btn-primary {
    padding: 10px 24px;
  }
}
.pxl-pricing-single .brand {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--heading-color);
  color: #fff;
  padding: 5px 16px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 300ms ease-in-out 0s;
  opacity: 0;
  transform: translateY(0);
}
.pxl-pricing-single .inner-item {
  position: relative;
  padding: 40px;
  transition: all 350ms ease-in-out 0s;
  border-radius: 16px;
  border: 1px solid #D4D4D4;
}
@media (max-width: 575px) {
  .pxl-pricing-single .inner-item {
    padding: 30px 20px;
  }
}
.pxl-pricing-single .inner-item:hover {
  border-color: transparent;
  background-color: #fff;
}
.pxl-pricing-single .inner-item:hover .btn-primary {
  border-color: transparent;
  background-color: var(--primary-color);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  color: #fafafa;
}
.pxl-pricing-single.highlight-none .brand {
  display: none;
}
.pxl-icon-wg.style-1 .icon-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(255, 255, 255, 0.02);
  box-shadow: 0 2px 6px 0 rgba(2, 3, 8, 0.04), 0 1px 2px 0 rgba(2, 3, 8, 0.08), 0 2px 8px 0 rgba(255, 255, 255, 0.06) inset, 0 1px 3px 0 rgba(255, 255, 255, 0.12) inset, 0 0.5px 0.5px 0 rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 350ms ease;
}
.pxl-icon-wg.style-1 .icon-inner:hover .pxl-icon {
  animation: icon_zoom 0.6s ease forwards;
}
.pxl-image-landing.layout-1 {
  padding: 36px 32px 48px;
  position: relative;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #151515 0%, #0A0A0A 27.36%), #262626;
}
@media (max-width: 575px) {
  .pxl-image-landing.layout-1 {
    padding: 30px 15px 35px;
  }
}
.pxl-image-landing.layout-1 .image-wrap {
  position: relative;
  width: 100%;
  overflow: auto;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: hidden;
  transition: all 0.35s ease;
  height: 620px;
  border-radius: 10px;
}
.pxl-image-landing.layout-1 .image-wrap a {
  display: flex;
}
.pxl-image-landing.layout-1 .image-wrap a img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: transform 10s ease-out, top 10s ease-out;
  -webkit-transition: transform 10s ease-out, top 10s ease-out;
  -moz-transition: transform 10s ease-out, top 10s ease-out;
}
.pxl-image-landing.layout-1 .image-wrap a::after {
  --color-overlay: #0A0A0A;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 70.22%, var(--color-overlay) 100%);
}
@media (max-width: 767px) {
  .pxl-image-landing.layout-1 .image-wrap {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .pxl-image-landing.layout-1 .image-wrap {
    height: 400px;
  }
}
.pxl-image-landing.layout-1 .image-title {
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin-top: 40px;
}
.pxl-image-landing.layout-1 .image-title a {
  color: inherit;
}
@media (max-width: 767px) {
  .pxl-image-landing.layout-1 .image-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-image-landing.layout-1 .image-title {
    font-size: 30px;
    letter-spacing: 0px;
    margin-top: 30px;
  }
}
.pxl-image-landing.layout-1:hover .image-wrap a img {
  top: 100%;
  transform: translateY(-100%);
}
.pxl-image-landing.layout-1 #circle-cursor {
  background-color: #fff;
  color: var(--heading-color);
  width: 160px;
  height: 160px;
  font-size: 32px;
}
@media (max-width: 767px) {
  .pxl-image-landing.layout-1 #circle-cursor {
    display: none;
  }
}
@media (max-width: 575px) {
  .elementor-element {
    clip-path: none !important;
  }
}
.grid-filter-wrap {
  row-gap: 15px;
  column-gap: 13px;
  margin-bottom: 79px;
}
@media (max-width: 1199px) {
  .grid-filter-wrap {
    margin-bottom: 50px;
  }
}
.grid-filter-wrap .filter-item {
  --color-boxshadow: rgb(224, 224, 224);
  --color-boxshadow-active: rgb(207, 50, 11);
  position: relative;
  color: var(--heading-color);
  display: inline-block;
  font-family: var(--heading-font-family);
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 0 var(--color-boxshadow);
  padding: 17px 28.5px;
  margin-bottom: 6px;
}
.grid-filter-wrap .filter-item:hover {
  transform: scale(0.95);
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #fff;
  box-shadow: 0 4px 0 var(--color-boxshadow-active);
}
.grid-filter-wrap .filter-item.active {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #fff;
  box-shadow: 0 6px 0 var(--color-boxshadow-active);
}
@media (max-width: 575px) {
  .grid-filter-wrap .filter-item {
    padding: 14px 22px 15px;
    font-size: 12px;
  }
}
.mfp-gallery .mfp-content .mfp-close {
  background-color: transparent;
}
.mfp-gallery .mfp-arrow:hover, .mfp-gallery .mfp-arrow:focus, .mfp-gallery .mfp-arrow:active {
  background-color: transparent;
}
.pxl-socials-wrap .socials-list {
  gap: 30px;
}
.pxl-socials-wrap .social-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pxl-socials-wrap .social-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  bottom: -2px;
  background-color: var(--primary-color);
  transition: 300ms ease-in-out 0s;
}
.pxl-socials-wrap .social-item .social-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: 300ms ease-in-out 0s;
}
.pxl-socials-wrap .social-item i, .pxl-socials-wrap .social-item svg {
  position: absolute;
  opacity: 0;
  top: -10px;
  transform: translateY(-50%);
  transition: 300ms ease-in-out 0s;
}
.pxl-socials-wrap .social-item i {
  color: #fff;
  font-size: 20px;
}
.pxl-socials-wrap .social-item:hover::before {
  width: 100%;
}
.pxl-socials-wrap .social-item:hover i, .pxl-socials-wrap .social-item:hover svg {
  transform: translateY(-100%);
  opacity: 1;
}
.pxl-socials-wrap .social-item:hover .social-text {
  color: var(--primary-color);
}
.pxl-socials-wrap .item-vertical {
  writing-mode: vertical-rl;
}
.pxl-socials-wrap .item-vertical i, .pxl-socials-wrap .item-vertical svg {
  opacity: 0;
  top: auto;
  transform: translateX(50%) rotate(90deg);
  right: -10px;
}
.pxl-socials-wrap .item-vertical .social-item::before {
  left: -2px;
  top: 0;
  width: 1px;
  height: 0;
  bottom: auto;
}
.pxl-socials-wrap .item-vertical .social-item:hover::before {
  width: 1px;
  height: 100%;
}
.pxl-socials-wrap .item-vertical .social-item:hover i, .pxl-socials-wrap .item-vertical .social-item:hover svg {
  transform: translateX(100%) rotate(90deg);
}
.pxl-portfolio-grid.layout-portfolio-1 .grid-item-wrap {
  border-radius: 16px;
  background-color: #262626;
  padding: 16px 16px 32px 16px;
}
@media (max-width: 575px) {
  .pxl-portfolio-grid.layout-portfolio-1 .grid-item-wrap {
    padding: 15px 15px 25px 15px;
  }
}
.pxl-portfolio-grid.layout-portfolio-1 .post-image {
  border-radius: 12px;
  overflow: hidden;
}
.pxl-portfolio-grid.layout-portfolio-1 .post-image img {
  transform: scale(1.1);
  transition: all 1.5s ease;
}
@media (max-width: 575px) {
  .pxl-portfolio-grid.layout-portfolio-1 .post-image img {
    height: 400px;
    object-fit: cover;
  }
}
.pxl-portfolio-grid.layout-portfolio-1 .post-image.pxl-animated-waypoint.active img {
  transform: scale(1);
}
.pxl-portfolio-grid.layout-portfolio-1 .post-image.pxl-animated-waypoint.active:hover img {
  transition: all 0.4s ease;
  transform: scale(1.05) translateX(-3px);
}
.pxl-portfolio-grid.layout-portfolio-1 .item-title {
  color: #FAFAFA;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
  margin-bottom: 0;
  letter-spacing: 0;
}
.pxl-portfolio-grid.layout-portfolio-1 .item-title > a {
  color: inherit;
  width: fit-content;
  color: #fff;
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.pxl-portfolio-grid.layout-portfolio-1 .item-title > a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.pxl-portfolio-grid.layout-portfolio-1 .inner-item {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-portfolio-grid.layout-portfolio-1 .inner-item {
    flex-direction: column;
    gap: 15px;
    align-items: start;
    padding: 0;
    margin-top: 20px;
  }
}
.pxl-portfolio-grid.layout-portfolio-1 .port-category {
  gap: 9px;
  flex-wrap: wrap;
}
.pxl-portfolio-grid.layout-portfolio-1 .port-category a {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #E5E5E5;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 20px;
  position: relative;
  overflow: hidden;
}
.pxl-portfolio-grid.layout-portfolio-1 .port-category a::after {
  background-color: rgba(255, 255, 255, 0.76);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 30px;
  opacity: 0;
}
.pxl-portfolio-grid.layout-portfolio-1 .port-category a:hover::after {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}
@media (max-width: 575px) {
  .pxl-portfolio-grid.layout-portfolio-1 .port-category a {
    font-size: 14px;
    padding: 6px 14px;
  }
}
.pxl-portfolio-grid.layout-portfolio-1 .posts-pagination {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .pxl-portfolio-grid.layout-portfolio-1 .posts-pagination {
    padding-top: 50px;
  }
}
.pxl-post-grid.layout-post-1 .item-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  margin-top: 12px;
}
.pxl-post-grid.layout-post-1 .item-title a {
  width: fit-content;
  color: #fff;
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.pxl-post-grid.layout-post-1 .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
.pxl-post-grid.layout-post-1 .port-category {
  gap: 8px;
}
.pxl-post-grid.layout-post-1 .port-category a {
  color: #E5E5E5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3333333333;
  padding: 6px 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.pxl-post-grid.layout-post-1 .port-category a::after {
  background-color: rgba(255, 255, 255, 0.76);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 30px;
  opacity: 0;
}
.pxl-post-grid.layout-post-1 .port-category a:hover::after {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}
.pxl-post-grid.layout-post-1 .post-image {
  border-radius: 16px;
  margin-bottom: 24px;
}
.pxl-post-grid.layout-post-1 .post-image img {
  width: 100%;
  object-fit: cover;
}
.pxl-post-grid.layout-post-1 .pxl-load-more {
  margin-top: 40px;
}
.pxl-services-list.layout-1 .box-image {
  padding-right: 11.5px;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-1 .box-image {
    width: 100%;
    padding-right: 15px;
  }
}
.pxl-services-list.layout-1 .item-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #171717;
  height: 100%;
}
.pxl-services-list.layout-1 .item-image img {
  transform: scale(1.15);
  opacity: 0;
  transition: all 1s ease;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-1 .item-image img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .item-image img {
    height: 400px;
  }
}
.pxl-services-list.layout-1 .item-number {
  background: linear-gradient(180deg, #fff 0%, #ffffff00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 400px;
  font-weight: 300;
  line-height: 0.661965;
  letter-spacing: -12px;
  position: absolute;
  left: -85px;
  bottom: -25px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-1 .item-number {
    font-size: 300px;
    left: -60px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .item-number {
    font-size: 200px;
    bottom: -15px;
    left: -35px;
  }
}
.pxl-services-list.layout-1 .col-7 {
  padding-left: 12.5px;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-1 .col-7 {
    width: 100%;
    padding-left: 15px;
  }
}
.pxl-services-list.layout-1 .box-content {
  background-color: #171717;
  border-radius: 16px;
  padding: 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.pxl-services-list.layout-1 .box-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/overlay-servicelist.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: difference;
  z-index: 0;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-1 .box-content {
    padding: 56px 30px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .box-content {
    padding: 50px 15px;
  }
}
.pxl-services-list.layout-1 .title-des {
  position: relative;
  z-index: 1;
}
.pxl-services-list.layout-1 .item-subtitle {
  display: inline-flex;
  color: #E5E5E5;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5555555556;
  border-radius: 8px;
  background-color: #ffffff1a;
  backdrop-filter: blur(6px);
  padding: 8px 24px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .item-subtitle {
    font-size: 16px;
    padding: 6px 15px;
  }
}
.pxl-services-list.layout-1 .item-title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.36px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-1 .item-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .item-title {
    font-size: 28px;
    margin-bottom: 18px;
  }
}
.pxl-services-list.layout-1 .item-description {
  max-width: 526px;
}
.pxl-services-list.layout-1 .item-inner {
  margin-top: 24px;
}
.pxl-services-list.layout-1 .item-inner:first-child {
  margin-top: 0 !important;
}
.pxl-services-list.layout-1 .item-inner:nth-child(even) {
  flex-direction: row-reverse;
}
.pxl-services-list.layout-1 .item-inner:nth-child(even) .box-image {
  padding-right: 15px;
  padding-left: 11.5px;
}
.pxl-services-list.layout-1 .item-inner:nth-child(even) .col-7 {
  padding-left: 15px;
  padding-right: 12.5px;
}
.pxl-services-list.layout-1 .item-inner:hover .item-image img {
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-1 .item-inner {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-1 .item-inner {
    gap: 20px;
    margin-top: 20px;
  }
}
.pxl-services-list.layout-2 {
  position: relative;
  overflow: hidden;
  padding: 264px 0 112px 0;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-2 {
    padding: 220px 0 110px 0;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-2 {
    padding: 200px 0 90px 0;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 {
    padding: 170px 0 70px 0;
  }
}
.pxl-services-list.layout-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 8, 0.64);
  backdrop-filter: blur(24px);
  z-index: 1;
}
.pxl-services-list.layout-2 .bg-image .image-full {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: all 350ms ease;
}
.pxl-services-list.layout-2 .bg-image .image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 600ms ease;
  transform: scale(1.2);
}
.pxl-services-list.layout-2 .bg-image .image-full.active {
  display: block;
  opacity: 1;
}
.pxl-services-list.layout-2 .bg-image .image-full.active img {
  transform: scale(1);
}
.pxl-services-list.layout-2 .content {
  z-index: 3;
  position: relative;
}
.pxl-services-list.layout-2 .content .box-content {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 350ms ease-out;
}
.pxl-services-list.layout-2 .content .box-content.active {
  display: block;
  position: relative;
  opacity: 1;
}
.pxl-services-list.layout-2 .content .box-content.active > * {
  opacity: 1;
  transform: translateY(0);
}
.pxl-services-list.layout-2 .content .box-content.active > * .col-auto {
  display: block;
}
.pxl-services-list.layout-2 .content .box-content.active > * .col-auto img {
  -webkit-animation: pxlUpandDown 0.7s linear 1 forwards;
  -khtml-animation: pxlUpandDown 0.7s linear 1 forwards;
  -moz-animation: pxlUpandDown 0.7s linear 1 forwards;
  -ms-animation: pxlUpandDown 0.7s linear 1 forwards;
  -o-animation: pxlUpandDown 0.7s linear 1 forwards;
  animation: pxlUpandDown 0.7s linear 1 forwards;
}
.pxl-services-list.layout-2 .content .box-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 450ms ease-out;
}
.pxl-services-list.layout-2 .content .box-content > *:nth-child(1) {
  transition-delay: 0ms;
  transform: translateY(0);
}
.pxl-services-list.layout-2 .content .box-content > *:nth-child(2) {
  transition-delay: 230ms;
}
.pxl-services-list.layout-2 .content .box-content > *:nth-child(3) {
  transition-delay: 320ms;
}
.pxl-services-list.layout-2 .row {
  max-width: 1326px;
  margin: auto;
}
.pxl-services-list.layout-2 .title {
  z-index: 3;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-2 .title {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .title {
    margin-top: 50px;
  }
}
.pxl-services-list.layout-2 .item-image {
  display: flex;
  margin-bottom: 48px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .item-image {
    margin-bottom: 30px;
  }
}
.pxl-services-list.layout-2 .item-image .col-auto {
  clip-path: polygon(8% 0, 100% 0, 100% 87%, 93% 100%, 0 100%, 0 14%);
  display: none;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-2 .item-image .col-auto {
    width: 100%;
  }
  .pxl-services-list.layout-2 .item-image .col-auto img {
    width: 100%;
  }
}
.pxl-services-list.layout-2 .item-subtitle {
  color: rgba(255, 255, 255, 0.64);
}
.pxl-services-list.layout-2 .item-description {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 424px;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .item-description {
    margin-top: 12px;
    font-size: 16px;
  }
}
.pxl-services-list.layout-2 .item-title {
  --color1: rgba(255, 255, 255, 0.32);
  --color2: #fff;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.4px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, var(--color2), var(--color2) 50%, var(--color1) 50%);
  background-size: 200% 100%;
  background-position: 0;
  transition: all 0.35s ease-in-out;
  margin-bottom: 0;
  padding-bottom: 24px;
  filter: blur(1px);
}
@media (max-width: 1199px) {
  .pxl-services-list.layout-2 .item-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .pxl-services-list.layout-2 .item-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .item-title {
    font-size: 36px;
    padding-bottom: 20px;
  }
}
.pxl-services-list.layout-2 .item-number {
  color: rgba(255, 255, 255, 0.32);
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.16px;
  transition: all 0.35s ease-in-out;
  filter: blur(1px);
}
.pxl-services-list.layout-2 .item-number .number {
  transition: all 0.35s ease-in-out;
}
.pxl-services-list.layout-2 .item-inner {
  display: flex;
  column-gap: 24px;
  row-gap: 15px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .item-inner {
    column-gap: 20px;
  }
}
.pxl-services-list.layout-2 .item-inner.active .item-title {
  background-position: -100%;
  filter: blur(0);
}
.pxl-services-list.layout-2 .item-inner.active .item-number {
  color: var(--primary-color);
  filter: blur(0);
}
.pxl-services-list.layout-2 .item-inner.active .number {
  color: #fff;
}
.pxl-services-list.layout-2 .item-inner + .item-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .item-inner + .item-inner {
    padding-top: 20px;
  }
}
.pxl-services-list.layout-2 .button-more {
  margin-top: 62px;
  display: block;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-2 .button-more {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-2 .button-more {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-2 .col-6 {
    width: 100%;
  }
}
.pxl-services-list.layout-3 .box-content {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 350ms ease-out;
}
.pxl-services-list.layout-3 .box-content.active {
  display: block;
  position: relative;
  opacity: 1;
}
.pxl-services-list.layout-3 .box-content.active .sub-des > * {
  opacity: 1;
  transform: translateY(0);
}
.pxl-services-list.layout-3 .box-content.active .col-auto img {
  transform: scale(1);
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .box-content.active .col-auto {
    display: block;
  }
}
.pxl-services-list.layout-3 .content {
  position: relative;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .content {
    width: 100%;
  }
}
.pxl-services-list.layout-3 .sub-des {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 32px;
  padding: 32px;
}
.pxl-services-list.layout-3 .sub-des > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 400ms ease-out;
}
.pxl-services-list.layout-3 .sub-des > *:nth-child(1) {
  transition-delay: 180ms;
}
.pxl-services-list.layout-3 .sub-des > *:nth-child(2) {
  transition-delay: 260ms;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .sub-des {
    right: 0;
    padding: 30px 15px;
  }
}
.pxl-services-list.layout-3 .item-image {
  display: flex;
}
.pxl-services-list.layout-3 .col-auto {
  clip-path: polygon(8% 0, 100% 0, 100% 94.5%, 92.5% 100%, 0 100%, 0 6%);
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .col-auto {
    display: none;
  }
}
.pxl-services-list.layout-3 .col-auto img {
  transform: scale(1.1);
  transition: all 1000ms ease;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-3 .col-auto img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .col-auto img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .col-auto img {
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .pxl-services-list.layout-3 .col-auto {
    width: 100%;
  }
}
.pxl-services-list.layout-3 .item-subtitle {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.pxl-services-list.layout-3 .item-description {
  color: #FFF;
  margin-top: 16px;
}
.pxl-services-list.layout-3 .item-title {
  color: rgba(255, 255, 255, 0.32);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 16px;
  transition: all 350ms ease;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .item-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .item-title {
    font-size: 22px;
  }
}
.pxl-services-list.layout-3 .item-inner {
  cursor: default;
}
.pxl-services-list.layout-3 .item-inner .item-subtitle {
  position: relative;
  color: rgba(255, 255, 255, 0.32);
  opacity: 1;
  transition: all 350ms ease;
}
.pxl-services-list.layout-3 .item-inner .btn-more {
  display: none;
  opacity: 0;
}
.pxl-services-list.layout-3 .item-inner.active .btn-more {
  display: block;
  -webkit-animation: pxlFadeInUp2 350ms linear 1 forwards;
  -khtml-animation: pxlFadeInUp2 350ms linear 1 forwards;
  -moz-animation: pxlFadeInUp2 350ms linear 1 forwards;
  -ms-animation: pxlFadeInUp2 350ms linear 1 forwards;
  -o-animation: pxlFadeInUp2 350ms linear 1 forwards;
  animation: pxlFadeInUp2 350ms linear 1 forwards;
}
.pxl-services-list.layout-3 .item-inner.active .item-subtitle {
  position: absolute;
  opacity: 0;
  transform: translateY(15px);
}
.pxl-services-list.layout-3 .item-inner.active .item-title {
  color: #fff;
}
.pxl-services-list.layout-3 .item-inner.active .pxl-divider::before {
  width: 100%;
}
.pxl-services-list.layout-3 .btn-more a {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  gap: 10px;
}
.pxl-services-list.layout-3 .btn-more a span {
  position: relative;
}
.pxl-services-list.layout-3 .btn-more a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  height: 1px;
  width: 0%;
  transition: all 350ms ease;
}
.pxl-services-list.layout-3 .btn-more a svg {
  fill: #fff;
  width: 8px;
  height: 8px;
  position: relative;
  top: 1px;
}
.pxl-services-list.layout-3 .btn-more a:hover span::after {
  width: 100%;
}
.pxl-services-list.layout-3 .btn-more a:hover svg {
  animation: toTopFromBottom 0.35s forwards;
}
.pxl-services-list.layout-3 .button-more {
  display: block;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .button-more {
    margin-top: 30px;
  }
}
.pxl-services-list.layout-3 .pxl-divider {
  width: 100%;
  height: 1px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 24px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .pxl-divider {
    margin-top: 20px;
  }
}
.pxl-services-list.layout-3 .pxl-divider::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 350ms ease;
}
.pxl-services-list.layout-3 .item-inner + .item-inner {
  margin-top: 24px;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .item-inner + .item-inner {
    margin-top: 20px;
  }
}
.pxl-services-list.layout-3 .title {
  padding-left: 61px;
}
@media (max-width: 1199px) {
  .pxl-services-list.layout-3 .title {
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .title {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-3 .title {
    padding-left: 15px;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-3 .title {
    margin-top: 50px;
  }
}
.pxl-services-list.layout-4 .box-image {
  padding: 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
  height: 100%;
}
.pxl-services-list.layout-4 .box-image.active .item-image img {
  transform: scale(1);
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .box-image {
    padding: 15px;
  }
}
.pxl-services-list.layout-4 .item-image {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
.pxl-services-list.layout-4 .item-image img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 1s ease;
}
@media (max-width: 1199px) {
  .pxl-services-list.layout-4 .item-image img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .item-image img {
    height: 400px;
  }
}
.pxl-services-list.layout-4 .item-title {
  color: #FFF;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  margin-bottom: 0;
  position: absolute;
  left: 52px;
  bottom: 60px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-4 .item-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .item-title {
    font-size: 50px;
    left: 30px;
    bottom: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-4 .item-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
}
.pxl-services-list.layout-4 .col-7 {
  width: 61%;
  padding-right: 14px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-4 .col-7 {
    padding-right: 15px;
    width: 100%;
  }
}
.pxl-services-list.layout-4 .col-5 {
  width: 39%;
  padding-left: 6px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-4 .col-5 {
    padding-left: 15px;
    width: 100%;
  }
}
.pxl-services-list.layout-4 .item-number {
  color: #0A0A0A;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  transition: all 350ms ease;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-4 .item-number {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .item-number {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-4 .item-number {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
.pxl-services-list.layout-4 .box-content {
  position: relative;
  padding: 50px 30px 50px 50px;
  z-index: 1;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
  height: 100%;
  overflow: hidden;
}
.pxl-services-list.layout-4 .box-content::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 20px;
  background-color: #fff;
  z-index: -1;
  transition: all 350ms ease;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .box-content::before {
    inset: 15px;
  }
}
.pxl-services-list.layout-4 .box-content::after {
  content: "";
  position: absolute;
  right: -135px;
  top: 2px;
  bottom: 0;
  width: 395px;
  mask: url(../images/overlay-clippath5.webp) no-repeat center / contain;
  -webkit-mask: url(../images/overlay-clippath5.webp) no-repeat center / contain;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2.5344352722px);
  transform: rotate(-180deg) translateX(-50%);
  opacity: 0;
  transition: all 350ms ease;
  z-index: -1;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .box-content {
    padding: 50px 30px 50px 30px;
  }
}
.pxl-services-list.layout-4 .pxl-item-boxs {
  margin-top: 95px;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .pxl-services-list.layout-4 .pxl-item-boxs {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-list.layout-4 .pxl-item-boxs {
    margin-top: 50px;
    margin-bottom: 18px;
  }
}
.pxl-services-list.layout-4 .pxl-item-boxs .category {
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  border-radius: 12px;
  background-color: #EEE;
  backdrop-filter: blur(30px);
  padding: 10px 12px;
  transition: all 350ms ease;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-4 .pxl-item-boxs .category {
    font-size: 12px;
    border-radius: 8px;
    padding: 8px 10px;
  }
}
.pxl-services-list.layout-4 .item-description {
  color: #A3A3A3;
  max-width: 267px;
  transition: all 350ms ease;
}
.pxl-services-list.layout-4 .btn-fourth {
  padding: 17px 32px;
  gap: 12px;
  margin-top: 47px;
}
.pxl-services-list.layout-4 .btn-fourth svg {
  z-index: 1;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-4 .btn-fourth {
    margin-top: 35px;
    padding: 14px 25px;
  }
}
.pxl-services-list.layout-4 .item-inner + .item-inner {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-4 .item-inner {
    flex-direction: column;
    gap: 20px;
  }
}
.pxl-services-list.layout-4 .item-inner:nth-child(even) {
  flex-direction: row-reverse;
}
.pxl-services-list.layout-4 .item-inner:nth-child(even) .col-5 {
  padding-right: 6px;
  padding-left: 15px;
}
.pxl-services-list.layout-4 .item-inner:nth-child(even) .col-7 {
  padding-left: 14px;
  padding-right: 15px;
}
.pxl-services-list.layout-4 .item-inner:nth-child(even) .box-content::after {
  right: auto;
  left: -135px;
  transform: rotate(0) translateX(-50%);
}
.pxl-services-list.layout-4 .item-inner:hover:nth-child(even) .box-content::after {
  transform: rotate(0) translateX(0);
}
.pxl-services-list.layout-4 .item-inner:hover .box-content::before {
  background-color: var(--primary-color);
}
.pxl-services-list.layout-4 .item-inner:hover .box-content::after {
  transform: rotate(-180deg) translateX(0);
  opacity: 1;
}
.pxl-services-list.layout-4 .item-inner:hover .item-number {
  color: #fff;
}
.pxl-services-list.layout-4 .item-inner:hover .category {
  background-color: #FAFAFA;
}
.pxl-services-list.layout-4 .item-inner:hover .item-description {
  color: #FAFAFA;
}
.pxl-services-list.layout-4 .item-inner:hover .btn-fourth {
  background-color: #0A0A0A;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.3, 1);
}
.pxl-services-list.layout-4 .item-inner:hover .btn-fourth::before {
  background-color: #fff;
}
.pxl-services-list.layout-4 .item-inner:hover .btn-fourth:hover {
  background-color: #fff;
  color: #0A0A0A;
}
.pxl-services-list.layout-5 .box-content {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 350ms ease-out;
}
.pxl-services-list.layout-5 .box-content.active {
  display: flex;
  align-items: start;
  position: relative;
  opacity: 1;
  z-index: 1;
}
.pxl-services-list.layout-5 .box-content.active .col-auto {
  transform: scaleY(1);
  transition: all 350ms ease 0.35s;
}
.pxl-services-list.layout-5 .box-content.active .tit-des {
  transform: translateY(0);
  transition-delay: 550ms;
  opacity: 1;
}
.pxl-services-list.layout-5 .title {
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding-left: 74.5px;
}
@media (max-width: 991px) {
  .pxl-services-list.layout-5 .title {
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-5 .title {
    padding-left: 15px;
    margin-top: 50px;
  }
}
.pxl-services-list.layout-5 .item-title {
  color: #0C0D02;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  transition: all 350ms ease-in-out 0s;
}
.pxl-services-list.layout-5 .item-title svg {
  width: 0;
  height: 10px;
  fill: var(--primary-color);
  opacity: 0;
  transition: all 350ms ease-in-out 0s;
  transform: translateX(-15px);
  margin-right: 0;
}
.pxl-services-list.layout-5 .item-description {
  color: rgba(12, 13, 2, 0.4);
  font-family: "DM Mono", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  transition: all 350ms ease-in-out 0s;
}
.pxl-services-list.layout-5 .item-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  cursor: pointer;
}
.pxl-services-list.layout-5 .item-inner.active .item-title {
  color: var(--primary-color);
}
.pxl-services-list.layout-5 .item-inner.active .item-title svg {
  opacity: 1;
  transform: translateX(0);
  width: 9px;
  margin-right: 13px;
}
.pxl-services-list.layout-5 .item-inner.active .item-description {
  color: var(--primary-color);
}
.pxl-services-list.layout-5 .item-inner + .item-inner {
  margin-top: 16px;
}
.pxl-services-list.layout-5 .tit-des {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 12px;
  transform: translateY(25px);
  opacity: 0;
  transition-delay: 0s;
  transition: all 350ms ease-in-out 0.3s;
}
@media (max-width: 575px) {
  .pxl-services-list.layout-5 .tit-des {
    bottom: 12px;
    left: 12px;
    padding: 8px;
  }
}
.pxl-services-list.layout-5 .tit-des .item-title {
  color: #FFF;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.16px;
  margin-bottom: 6px;
}
.pxl-services-list.layout-5 .tit-des .item-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.14286;
}
.pxl-services-list.layout-5 .item-image {
  position: relative;
}
.pxl-services-list.layout-5 .col-auto {
  transform: scaleY(0);
  transform-origin: 50% top;
  transition: all 350ms ease 0s;
  border-radius: 2px;
  overflow: hidden;
}
.pxl-services-list.layout-5 .item-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 1;
}
.pxl-services-list.layout-5 .item-dot svg {
  width: 15px;
  height: 15px;
  color: #fff;
}
.pxl-services-list.layout-5 .item-dot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(254, 70, 46, 0.3);
}
@media (max-width: 575px) {
  .pxl-services-list.layout-5 .item-dot {
    width: 35px;
    height: 35px;
    right: 15px;
  }
  .pxl-services-list.layout-5 .item-dot::before {
    inset: -5px;
  }
  .pxl-services-list.layout-5 .item-dot svg {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 767px) {
  .pxl-services-list.layout-5 .title, .pxl-services-list.layout-5 .content {
    width: 100%;
  }
}
.pxl-career-list.layout-career-list-1 .item-content {
  border-radius: 16px;
  background-color: #262626;
  padding: 40px 32px;
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .item-content {
    padding: 30px 20px;
  }
}
.pxl-career-list.layout-career-list-1 .box-title {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 10px;
}
.pxl-career-list.layout-career-list-1 .box-title > span {
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .box-title {
    flex-direction: column-reverse;
  }
}
.pxl-career-list.layout-career-list-1 .item-title {
  color: #FAFAFA;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.36px;
  margin-bottom: 8px;
}
.pxl-career-list.layout-career-list-1 .item-title a {
  color: inherit;
  width: fit-content;
  color: #FAFAFA;
  background-image: linear-gradient(transparent calc(100% - 1px), #FAFAFA 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.pxl-career-list.layout-career-list-1 .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 767px) {
  .pxl-career-list.layout-career-list-1 .item-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .item-title {
    font-size: 26px;
  }
}
.pxl-career-list.layout-career-list-1 .item-excerpt {
  max-width: 582px;
}
.pxl-career-list.layout-career-list-1 .box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .box-content {
    margin-top: 25px;
    flex-direction: column;
    align-items: start;
  }
}
.pxl-career-list.layout-career-list-1 .icon-item {
  gap: 12px;
  align-items: center;
}
.pxl-career-list.layout-career-list-1 .icon-item svg {
  fill: #fff;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #404040;
}
.pxl-career-list.layout-career-list-1 .icon-item > span {
  color: #fafafa;
}
.pxl-career-list.layout-career-list-1 .item-icon {
  column-gap: 31px;
  row-gap: 15px;
  margin-left: 6px;
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .item-icon {
    margin-left: 0;
  }
}
.pxl-career-list.layout-career-list-1 .btn-primary {
  height: 44px;
}
.pxl-career-list.layout-career-list-1 .post-list-toolbar {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .pxl-career-list.layout-career-list-1 .post-list-toolbar {
    margin-bottom: 25px;
  }
}
.pxl-career-list.layout-career-list-1 .post-list-toolbar .result-count {
  color: var(--heading-color);
}
.pxl-career-list.layout-career-list-1 .post-list-toolbar .result-count::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--primary-color);
  margin-right: 8px;
}
.pxl-services-scroll.layout-1 {
  position: relative;
}
.pxl-services-scroll.layout-1 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .row {
    flex-direction: column-reverse;
    gap: 70px;
  }
}
.pxl-services-scroll.layout-1 .scroll-1 {
  max-height: 475px;
  overflow-y: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .scroll-1 {
    overflow-y: scroll;
    scrollbar-width: auto;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .scroll-1 {
    max-height: max-content;
  }
}
.pxl-services-scroll.layout-1 .title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.pxl-services-scroll.layout-1 .title-icon i {
  font-size: 18px;
  color: #404040;
  margin-right: 16px;
  transition: all cubic-bezier(0.1, 0.5, 0.5, 1) 0.3s;
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-1 .title-icon {
    margin-bottom: 16px;
  }
}
.pxl-services-scroll.layout-1 .item-title {
  --heading-color-1: #404040;
  --heading-color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 0;
  transition: all cubic-bezier(0.1, 0.5, 0.5, 1) 0.3s;
}
.pxl-services-scroll.layout-1 .item-title div {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background: linear-gradient(to right, var(--heading-color) 50%, var(--heading-color-1) 50%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  background-position-x: 100%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.75s;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .item-title {
    color: var(--heading-color-1);
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .item-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-1 .item-title {
    font-size: 22px;
  }
}
.pxl-services-scroll.layout-1 .item-description {
  --heading-color-1: #404040;
  --heading-color: #A3A3A3;
  max-width: 306px;
  transition: all cubic-bezier(0.1, 0.5, 0.5, 1) 0.3s;
}
.pxl-services-scroll.layout-1 .item-description div {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background: linear-gradient(to right, var(--heading-color) 50%, var(--heading-color-1) 50%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  background-position-x: 100%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.75s;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .item-description {
    color: var(--heading-color-1);
  }
}
.pxl-services-scroll.layout-1 .item-number {
  color: #FAFAFA;
  scale: 0;
  opacity: 0;
  transition: all 350ms ease;
}
.pxl-services-scroll.layout-1 .item-inner + .item-inner {
  padding-top: 202px;
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-1 .item-inner + .item-inner {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .item-inner + .item-inner {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-1 .item-inner + .item-inner {
    padding-top: 50px;
  }
}
.pxl-services-scroll.layout-1 .item-image {
  position: relative;
  transition: all 350ms ease;
}
.pxl-services-scroll.layout-1 .item-image img {
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 350ms ease;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .item-image img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-1 .item-image img {
    height: 400px;
  }
}
.pxl-services-scroll.layout-1 .item-image.active img {
  position: relative;
  opacity: 1;
}
.pxl-services-scroll.layout-1 .progress-bar {
  --tab-progress: 0%;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  z-index: -1;
}
.pxl-services-scroll.layout-1 .progress-bar:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.pxl-services-scroll.layout-1 .progress-bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--tab-progress);
  background: var(--primary-color);
  border-radius: 0 0 8px 8px;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .progress-bar {
    display: none;
  }
}
.pxl-services-scroll.layout-1 .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0;
}
.pxl-services-scroll.layout-1 .item-inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 65px;
  padding-left: 32px;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .item-inner {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-1 .item-inner {
    gap: 35px;
  }
}
.pxl-services-scroll.layout-1 .item-inner.active .item-number {
  scale: 1;
  opacity: 1;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .item-inner.active .title-icon i {
    color: var(--primary-color);
  }
  .pxl-services-scroll.layout-1 .item-inner.active .item-title {
    color: var(--heading-color);
  }
  .pxl-services-scroll.layout-1 .item-inner.active .item-description {
    color: var(--heading-color);
  }
}
.pxl-services-scroll.layout-1 .item-inner:first-child .progress-bar:before {
  border-radius: 8px 8px 0 0;
}
.pxl-services-scroll.layout-1 .item-inner:first-child .progress-bar:after {
  border-radius: 8px;
}
.pxl-services-scroll.layout-1 .item-inner:first-child .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0;
}
.pxl-services-scroll.layout-1 .item-inner:last-child {
  --space-last: 109px;
}
.pxl-services-scroll.layout-1 .item-inner:last-child.active .progress-bar {
  height: calc(100% + var(--space-last));
}
.pxl-services-scroll.layout-1 .item-inner:last-child .progress-bar:before {
  border-radius: 0 0 8px 8px;
}
.pxl-services-scroll.layout-1 .item-inner:last-child .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0 0 8px 8px;
}
.pxl-services-scroll.layout-1 .col-7 {
  display: flex;
  justify-content: end;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .col-7 {
    justify-content: start;
  }
}
.pxl-services-scroll.layout-1 .box-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.pxl-services-scroll.layout-1 .svg-scroll {
  position: absolute;
  width: 40px;
  height: 334px;
  mask: url(../images/overlay-clippath.webp) no-repeat center / cover;
  -webkit-mask: url(../images/overlay-clippath.webp) no-repeat center / cover;
  left: 0;
  top: 83px;
  background-color: #0A0A0A;
  z-index: 1;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .svg-scroll {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-1 .svg-scroll {
    height: 200px;
    width: 23px;
  }
}
.pxl-services-scroll.layout-1 .pin-spacer {
  justify-content: center;
}
.pxl-services-scroll.layout-1 .col-5 {
  padding-left: 0;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .col-5 {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-1 .col-5 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .col-5 {
    width: 100%;
  }
}
.pxl-services-scroll.layout-1 .col-7 {
  padding-right: 0;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-1 .col-7 {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-1 .col-7 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-1 .col-7 {
    width: 100%;
  }
}
.pxl-services-scroll.layout-2 .item-subtitle {
  color: #FFF;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  margin-bottom: 82px;
  padding-top: 30px;
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .item-subtitle {
    font-size: 60px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-subtitle {
    font-size: 50px;
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-subtitle {
    font-size: 36px;
    letter-spacing: -1px;
    margin-bottom: 50px;
  }
}
.pxl-services-scroll.layout-2 .item-title {
  color: #FFF;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.36px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-title {
    font-size: 26px;
    letter-spacing: 0px;
  }
}
.pxl-services-scroll.layout-2 .title-icon {
  display: flex;
  align-items: center;
  gap: 32px;
  border-radius: 22px;
  background-color: #262626;
  padding: 12px;
  margin-bottom: 28px;
  opacity: 0.6;
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .title-icon {
    gap: 15px;
    margin-bottom: 20px;
    padding: 8px 10px;
  }
}
.pxl-services-scroll.layout-2 .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background-color: var(--primary-color);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}
.pxl-services-scroll.layout-2 .item-icon svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-icon svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-icon svg {
    width: 20px;
    height: 20px;
  }
}
.pxl-services-scroll.layout-2 .item-icon i {
  color: #fff;
  font-size: 26px;
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-icon i {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-icon i {
    font-size: 16px;
  }
}
.pxl-services-scroll.layout-2 .item-description {
  color: #A3A3A3;
  padding-bottom: 28px;
  border-bottom: 1px solid #525252;
  display: flex;
  align-items: center;
  opacity: 0.6;
}
.pxl-services-scroll.layout-2 .item-description svg {
  min-width: 24px;
  height: 24px;
  color: #fff;
  margin-right: 100px;
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-description svg {
    margin-right: 20px;
    min-width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-description {
    padding-bottom: 20px;
  }
}
.pxl-services-scroll.layout-2 .item-inner + .item-inner {
  padding-top: 130px;
}
.pxl-services-scroll.layout-2 .col-6 {
  overflow: hidden;
}
.pxl-services-scroll.layout-2 .col-6:nth-child(1) {
  padding-right: 10px;
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .col-6:nth-child(1) {
    padding-right: 15px;
  }
}
.pxl-services-scroll.layout-2 .col-6:nth-child(2) {
  padding-left: 122px;
  padding-right: 42px;
}
@media (max-width: 1399px) {
  .pxl-services-scroll.layout-2 .col-6:nth-child(2) {
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-2 .col-6:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .col-6:nth-child(2) {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .col-6 {
    width: 100%;
  }
}
.pxl-services-scroll.layout-2 .scroll-1 {
  max-height: 568px;
  overflow-y: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-2 .scroll-1 {
    overflow-y: scroll;
    scrollbar-width: auto;
    direction: rtl;
  }
  .pxl-services-scroll.layout-2 .scroll-1 > * {
    direction: ltr;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .scroll-1 {
    max-height: 492px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .scroll-1 {
    max-height: 390px;
  }
}
.pxl-services-scroll.layout-2 .box-content {
  position: relative;
}
.pxl-services-scroll.layout-2 .progress-bar {
  --tab-progress: 0%;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  z-index: -1;
}
.pxl-services-scroll.layout-2 .progress-bar:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.16);
}
.pxl-services-scroll.layout-2 .progress-bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--tab-progress);
  background: #FFF;
  border-radius: 0 0 100px 100px;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-2 .progress-bar {
    display: none;
  }
}
.pxl-services-scroll.layout-2 .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0;
}
.pxl-services-scroll.layout-2 .item-inner {
  padding-left: 35px;
  transition: all 350ms ease;
  position: relative;
}
@media (max-width: 1199px) {
  .pxl-services-scroll.layout-2 .item-inner {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-inner {
    padding-left: 10px;
  }
}
.pxl-services-scroll.layout-2 .item-inner.active .title-icon, .pxl-services-scroll.layout-2 .item-inner.active .item-description {
  opacity: 1;
}
.pxl-services-scroll.layout-2 .item-inner:first-child .progress-bar:before {
  border-radius: 100px 100px 0 0;
}
.pxl-services-scroll.layout-2 .item-inner:first-child .progress-bar:after {
  border-radius: 100px;
}
.pxl-services-scroll.layout-2 .item-inner:first-child .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0;
}
.pxl-services-scroll.layout-2 .item-inner:last-child .progress-bar:before {
  border-radius: 0 0 100px 100px;
}
.pxl-services-scroll.layout-2 .item-inner:last-child .progress-bar[style="--tab-progress: 100%;"]:after {
  border-radius: 0 0 100px 100px;
}
.pxl-services-scroll.layout-2 .item-template {
  position: relative;
  display: none;
}
.pxl-services-scroll.layout-2 .item-template.active {
  display: block;
  -webkit-animation: pxlFadeInUp2 300ms ease 1 forwards;
  -khtml-animation: pxlFadeInUp2 300ms ease 1 forwards;
  -moz-animation: pxlFadeInUp2 300ms ease 1 forwards;
  -ms-animation: pxlFadeInUp2 300ms ease 1 forwards;
  -o-animation: pxlFadeInUp2 300ms ease 1 forwards;
  animation: pxlFadeInUp2 300ms ease 1 forwards;
}
.pxl-services-scroll.layout-2 .item-number {
  color: #FFF;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.4px;
  position: absolute;
  left: 32px;
  top: 32px;
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .item-number {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .pxl-services-scroll.layout-2 .item-number {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .pxl-services-scroll.layout-2 .item-number {
    font-size: 45px;
    letter-spacing: -1px;
    left: 15px;
    top: 20px;
  }
}
.pxl-services-scroll.layout-2 .pin-spacer {
  justify-content: center;
}
.pxl-services-scroll.layout-2 .box-image {
  padding-left: 27px;
}
@media (max-width: 1399px) {
  .pxl-services-scroll.layout-2 .box-image {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .pxl-services-scroll.layout-2 .row {
    flex-direction: column-reverse;
    gap: 70px;
  }
}
.pxl-counter-list {
  position: relative;
  overflow: hidden;
}
.pxl-counter-list::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 8px;
  background-color: rgba(0, 0, 0, 0.12);
  width: 1px;
  height: 100%;
  z-index: 0;
}
.pxl-counter-list .item-inner {
  display: flex;
  column-gap: 32.5px;
  row-gap: 20px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 575px) {
  .pxl-counter-list .item-inner {
    column-gap: 25px;
  }
}
.pxl-counter-list .item-inner::before {
  content: "";
  position: relative;
  top: 33px;
  left: 0;
  background-color: #E5E5E5;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  transition: all 350ms ease;
}
.pxl-counter-list .item-inner:last-child::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: -1;
}
.pxl-counter-list .item-inner.active::before {
  background-color: var(--primary-color);
  animation: bounceIn 1s forwards;
}
.pxl-counter-list .item-inner.active .item-image {
  display: block;
  -webkit-animation: pxlFadeInUp2 400ms linear 1 forwards;
  -khtml-animation: pxlFadeInUp2 400ms linear 1 forwards;
  -moz-animation: pxlFadeInUp2 400ms linear 1 forwards;
  -ms-animation: pxlFadeInUp2 400ms linear 1 forwards;
  -o-animation: pxlFadeInUp2 400ms linear 1 forwards;
  animation: pxlFadeInUp2 400ms linear 1 forwards;
}
@media (max-width: 575px) {
  .pxl-counter-list .item-inner.active .item-image {
    display: none;
  }
}
.pxl-counter-list .item-image {
  overflow: hidden;
  border-radius: 100px;
  position: relative;
  margin-top: 7px;
  display: none;
}
.pxl-counter-list .item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: -3px -8px 10.9px 0 rgba(0, 0, 0, 0.25) inset, 5px 9px 8.6px 0 rgba(255, 255, 255, 0.3) inset;
}
@media (max-width: 767px) {
  .pxl-counter-list .item-image img {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .pxl-counter-list .item-image img {
    width: 80px;
  }
}
.pxl-counter-list .counter-number {
  color: var(--heading-color);
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4.8px;
  display: flex;
  gap: 4px;
}
@media (max-width: 991px) {
  .pxl-counter-list .counter-number {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .pxl-counter-list .counter-number {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-counter-list .counter-number {
    font-size: 50px;
    letter-spacing: -1px;
  }
}
.pxl-counter-list .counter-number-suffix {
  font-family: "Clash Grotesk", sans-serif;
  font-size: 84px;
  font-weight: 600;
  line-height: 0.57143;
  letter-spacing: -3.36px;
}
@media (max-width: 767px) {
  .pxl-counter-list .counter-number-suffix {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-counter-list .counter-number-suffix {
    font-size: 32px;
    letter-spacing: -1px;
  }
}
.pxl-counter-list .counter-title {
  color: #A3A3A3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.pxl-counter-list .item-inner + .item-inner {
  margin-top: 70px;
}
@media (max-width: 575px) {
  .pxl-counter-list .item-inner + .item-inner {
    margin-top: 50px;
  }
}
.pxl-post-list.layout-post-list-1 .item-title {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 0;
  margin-top: 28px;
}
.pxl-post-list.layout-post-list-1 .item-title a {
  width: fit-content;
  color: #fff;
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
}
.pxl-post-list.layout-post-list-1 .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 767px) {
  .pxl-post-list.layout-post-list-1 .item-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pxl-post-list.layout-post-list-1 .item-title {
    font-size: 22px;
    letter-spacing: 0;
    margin-top: 22px;
  }
}
.pxl-post-list.layout-post-list-1 .port-category {
  gap: 8px;
}
.pxl-post-list.layout-post-list-1 .port-category a {
  color: #E5E5E5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3333333333;
  padding: 6px 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.pxl-post-list.layout-post-list-1 .port-category a::after {
  background-color: rgba(255, 255, 255, 0.76);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 30px;
  opacity: 0;
}
.pxl-post-list.layout-post-list-1 .port-category a:hover::after {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}
.pxl-post-list.layout-post-list-1 .grid-item + .grid-item {
  border-top: 1px solid #404040;
  padding-top: 40px;
}
@media (max-width: 575px) {
  .pxl-post-list.layout-post-list-1 .grid-item + .grid-item {
    padding-top: 30px;
  }
}
.pxl-testimonial-list.layout-1 .box-content {
  transform-origin: 50% bottom;
  transition: all 400ms ease;
  max-width: 448px;
  max-height: 192px;
  height: 192px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .pxl-testimonial-list.layout-1 .box-content {
    max-width: 100%;
  }
}
.pxl-testimonial-list.layout-1 .box-content img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 400ms ease;
  pointer-events: none;
}
.pxl-testimonial-list.layout-1 .box-content.active {
  max-height: 347px;
  height: 347px;
}
.pxl-testimonial-list.layout-1 .title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pxl-testimonial-list.layout-1 .title.has-clip-path {
  clip-path: polygon(100% -1.5%, 100% 88.5%, 0% 99.5%, 2% 9%);
}
@media (max-width: 1199px) {
  .pxl-testimonial-list.layout-1 .title.has-clip-path {
    clip-path: polygon(100% 0%, 100% 90.5%, 0% 99%, 2% 9%);
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-list.layout-1 .title {
    width: 100%;
  }
}
.pxl-testimonial-list.layout-1 .item-inner {
  display: none;
  opacity: 0;
  -webkit-animation: pxlFadeInUp 400ms linear 1 forwards;
  -khtml-animation: pxlFadeInUp 400ms linear 1 forwards;
  -moz-animation: pxlFadeInUp 400ms linear 1 forwards;
  -ms-animation: pxlFadeInUp 400ms linear 1 forwards;
  -o-animation: pxlFadeInUp 400ms linear 1 forwards;
  animation: pxlFadeInUp 400ms linear 1 forwards;
  height: 100%;
}
.pxl-testimonial-list.layout-1 .item-inner.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .item-inner.active {
    gap: 35px;
  }
}
.pxl-testimonial-list.layout-1 .icon-wrapper {
  margin-bottom: 40px;
}
.pxl-testimonial-list.layout-1 .icon-wrapper svg {
  fill: #EEE;
  width: 57.494px;
  height: 47.526px;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .icon-wrapper {
    margin-bottom: 25px;
  }
  .pxl-testimonial-list.layout-1 .icon-wrapper svg {
    fill: #EEE;
    width: 45px;
    height: 45px;
  }
}
.pxl-testimonial-list.layout-1 .icon-wrapper i {
  color: #EEE;
}
.pxl-testimonial-list.layout-1 .item-title {
  color: #111;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.20833;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .pxl-testimonial-list.layout-1 .item-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-list.layout-1 .item-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .item-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}
.pxl-testimonial-list.layout-1 .item-des {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 733px;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .item-des {
    font-size: 16px;
  }
}
.pxl-testimonial-list.layout-1 .content {
  padding-left: 9px;
}
@media (max-width: 767px) {
  .pxl-testimonial-list.layout-1 .content {
    width: 100%;
    padding-left: 15px;
    margin-top: 50px;
  }
}
.pxl-testimonial-list.layout-1 .item-name {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .item-name {
    font-size: 20px;
  }
}
.pxl-testimonial-list.layout-1 .item-position {
  color: #737373;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
}
.pxl-testimonial-list.layout-1 .pxl-divider {
  width: 100%;
  height: auto;
  display: flex;
  border: 1px solid transparent;
  border-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 4px, transparent 4px 15px) 2 round;
  margin: 32px 0;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .pxl-divider {
    margin: 25px 0;
  }
}
.pxl-testimonial-list.layout-1 .box-star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .box-star {
    flex-direction: column;
    align-items: end;
    gap: 20px;
  }
}
.pxl-testimonial-list.layout-1 .item-rating-star {
  display: flex;
  align-items: center;
}
.pxl-testimonial-list.layout-1 .item-rating-star .item-text {
  color: #737373;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-right: 12px;
}
.pxl-testimonial-list.layout-1 .item-rating-star .pxli-rating::before {
  content: "";
}
.pxl-testimonial-list.layout-1 .item-rating-star .item-rating {
  gap: 4px;
}
.pxl-testimonial-list.layout-1 .item-subdescription {
  display: flex;
  align-items: center;
}
.pxl-testimonial-list.layout-1 .item-subdescription svg {
  width: 44px;
  height: 44px;
  fill: #666666;
}
@media (max-width: 575px) {
  .pxl-testimonial-list.layout-1 .item-subdescription svg {
    width: 38px;
    height: 38px;
  }
}
.pxl-testimonial-list.layout-1 .subdescription {
  color: #666;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  max-width: 230px;
  display: flex;
  align-items: center;
}
.pxl-testimonial-list.layout-1 .subdescription::after {
  content: "";
  position: relative;
  width: 1px;
  height: 30px;
  background-color: #707070;
  margin: 0 11px;
}
.item-rating {
  color: var(--primary-color);
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
}
.item-rating > * {
  max-width: 100%;
}
.item-rating.star1 i:nth-child(n + 2):before {
  color: #c8c8c8;
}
.item-rating.star2 i:nth-child(n + 3):before {
  color: #c8c8c8;
}
.item-rating.star3 i:nth-child(n + 4):before {
  color: #c8c8c8;
}
.item-rating.star4 i:nth-child(n + 5):before {
  color: #c8c8c8;
}
.pxl-swiper-slider:not(.pxl-swiper-initialized) .pxl-swiper-slider-wrap {
  visibility: hidden;
}
.pxl-logo-marquee1 {
  position: relative;
  overflow: hidden;
}
.pxl-logo-marquee1.layout-1 .pxl-item--marquee {
  width: max-content;
}
.pxl-logo-marquee1.layout-1 .pxl-item--marquee:first-child .pxl-item--inner {
  margin-left: 120px;
}
.pxl-logo-marquee1.layout-1 .item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  position: relative;
}
.pxl-logo-marquee1.layout-1 .item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.pxl-logo-marquee1.layout-1 .pxl-item--inner {
  flex-wrap: nowrap;
  display: inline-flex;
  align-items: center;
}
.pxl-logo-marquee1.layout-1 .pxl-flex-middle {
  display: flex;
  align-items: center;
  gap: 120px;
}
.pxl-logo-marquee1.layout-1 .pxl-logo-active {
  position: relative;
  -webkit-mask: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
  mask: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
}
.pxl-logo-marquee1.layout-1 .pxl-logo-active::before {
  --linear-color1: #0A0A0A;
  --linear-color2: rgba(10, 10, 10, 0.00);
  content: "";
  position: absolute;
  background: linear-gradient(90deg, var(--linear-color1) 0%, var(--linear-color2) 25%, var(--linear-color2) 75%, var(--linear-color1) 100%);
  inset: 0;
  z-index: 1;
}
.pxl-logo-marquee1.layout-1 .pxl-logo-active.mask-none {
  mask: none;
}
.pxl-logo-marquee1.layout-2 .pxl-item--marquee {
  width: max-content;
}
.pxl-logo-marquee1.layout-2 .pxl-item--marquee:first-child .pxl-item--inner {
  margin-left: 40px;
}
@media (max-width: 575px) {
  .pxl-logo-marquee1.layout-2 .pxl-item--marquee:first-child .pxl-item--inner {
    margin-left: 25px;
  }
}
.pxl-logo-marquee1.layout-2 .item-image {
  display: flex;
  align-items: center;
  width: max-content;
}
.pxl-logo-marquee1.layout-2 .pxl-item--inner {
  flex-wrap: nowrap;
  display: inline-flex;
  align-items: center;
}
.pxl-logo-marquee1.layout-2 .pxl-flex-middle {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 575px) {
  .pxl-logo-marquee1.layout-2 .pxl-flex-middle {
    gap: 25px;
  }
}
.pxl-logo-marquee1.layout-2 .pxl-text--logo {
  color: #FFF;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.36px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .pxl-logo-marquee1.layout-2 .pxl-text--logo {
    font-size: 30px;
  }
}
.pxl-logo-marquee1.layout-3 .box-image {
  width: max-content;
}
.pxl-logo-marquee1.layout-3 .box-image:first-child .pxl-item--inner {
  margin-left: 0;
}
.pxl-logo-marquee1.layout-3 .item-image {
  display: flex;
  align-items: center;
  width: max-content;
}
.pxl-logo-marquee1.layout-3 .pxl-item--inner {
  flex-wrap: nowrap;
  display: inline-flex;
  align-items: center;
}
.pxl-logo-marquee1.layout-3 .pxl-flex-middle {
  display: flex;
  align-items: center;
  gap: 0;
}
.pxl-logo-marquee1.layout-3 .pxl-logo-active {
  position: relative;
}
.pxl-logo-marquee1.layout-3 .item-image {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  width: 324px;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxl-clients.layout-1 .pxl-swiper-slider-wrap {
  overflow-x: clip;
}
.pxl-clients.layout-1 .item-image a {
  border-radius: 8px;
  background-color: #E5E5E5;
  display: flex;
  width: 100%;
  height: 148px;
  justify-content: center;
  align-items: center;
  transition: all 350ms ease;
  border: 2px solid transparent;
}
.pxl-clients.layout-1 .item-image a:hover {
  border-color: #FAFAFA;
  box-shadow: 0 97px 27px 0 rgba(217, 217, 217, 0.01), 0 62px 25px 0 rgba(217, 217, 217, 0.07), 0 35px 21px 0 rgba(217, 217, 217, 0.25), 0 16px 16px 0 rgba(217, 217, 217, 0.43), 0 4px 9px 0 rgba(217, 217, 217, 0.49);
}
#circle-cursor {
  width: 175px;
  height: 175px;
  background-color: #000;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  position: fixed;
  color: #fff;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  z-index: 86;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  -webkit-transform: scale(0.5);
  -khtml-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.18s ease;
  -khtml-transition: all 0.18s ease;
  -moz-transition: all 0.18s ease;
  -ms-transition: all 0.18s ease;
  -o-transition: all 0.18s ease;
  transition: all 0.18s ease;
}
#circle-cursor.enlarged {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 767px) {
  #circle-cursor {
    display: none;
  }
}
.pxl-fancy-box-carousel.layout-1 .item-icon {
  border-radius: 50%;
  border: 1px solid #D4D4D4;
  padding: 20px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pxl-fancy-box-carousel.layout-1 .item-icon svg {
  width: 50px;
  height: 40px;
  fill: #FE5631;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-1 .item-icon {
    padding: 12px 12px;
  }
  .pxl-fancy-box-carousel.layout-1 .item-icon svg {
    width: 30px;
    height: 30px;
  }
}
.pxl-fancy-box-carousel.layout-1 .item-date {
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5555555556;
  border-radius: 8px;
  background-color: #EEE;
  backdrop-filter: blur(6px);
  padding: 8px 24px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-1 .item-date {
    font-size: 16px;
    padding: 8px 24px;
    padding: 6px 16px;
  }
}
.pxl-fancy-box-carousel.layout-1 .item-inner {
  border-radius: 16px;
  background-color: #FAFAFA;
  padding: 40px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 991px) {
  .pxl-fancy-box-carousel.layout-1 .item-inner {
    padding: 30px 25px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-1 .item-inner {
    padding: 30px 20px;
    gap: 35px;
    height: 400px;
  }
}
.pxl-fancy-box-carousel.layout-1 .box-icon {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-1 .box-icon {
    margin-bottom: 30px;
  }
}
.pxl-fancy-box-carousel.layout-1 .item-title {
  color: #0A0A0A;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.36px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-1 .item-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-1 .item-title {
    font-size: 26px;
  }
}
.pxl-fancy-box-carousel.layout-1 .item-description {
  color: #525252;
}
.pxl-fancy-box-carousel.layout-1 .item-subtitle {
  color: #0A0A0A;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  border-top: 1px solid #D4D4D4;
  padding-top: 24px;
}
.pxl-fancy-box-carousel.layout-2 .pxl-swiper-slider-wrap {
  clip-path: polygon(8% 0, 100% 0, 100% 93.4%, 92.5% 100%, 0 100%, 0 7%);
}
.pxl-fancy-box-carousel.layout-2 .item-inner {
  height: 473px;
  padding: 32px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-2 .item-inner {
    padding: 30px 15px;
    height: 400px;
  }
}
.pxl-fancy-box-carousel.layout-2 .item-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  background: linear-gradient(0deg, rgba(2, 3, 8, 0.18) 0%, rgba(2, 3, 8, 0.18) 100%);
  z-index: 0;
  width: 0;
  transition: all 500ms ease;
}
.pxl-fancy-box-carousel.layout-2 .item-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  height: 100%;
  background: linear-gradient(0deg, rgba(2, 3, 8, 0.18) 0%, rgba(2, 3, 8, 0.18) 100%);
  z-index: 0;
  width: 0;
  transition: all 500ms ease;
}
.pxl-fancy-box-carousel.layout-2 .box-icon {
  display: flex;
  justify-content: end;
  z-index: 1;
}
.pxl-fancy-box-carousel.layout-2 .item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(255, 255, 255, 0.02);
  box-shadow: 0 2px 6px 0 rgba(2, 3, 8, 0.04), 0 1px 2px 0 rgba(2, 3, 8, 0.08), 0 2px 8px 0 rgba(255, 255, 255, 0.06) inset, 0 1px 3px 0 rgba(255, 255, 255, 0.12) inset, 0 0.5px 0.5px 0 rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 350ms ease;
  transition-delay: 250ms;
}
.pxl-fancy-box-carousel.layout-2 .item-icon i {
  color: #fff;
  font-size: 17px;
}
.pxl-fancy-box-carousel.layout-2 .item-icon svg {
  fill: #fff;
  width: 17px;
  height: 17px;
  position: relative;
  left: 1px;
}
.pxl-fancy-box-carousel.layout-2 .item-title {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-2 .item-title {
    font-size: 26px;
  }
}
.pxl-fancy-box-carousel.layout-2 .item-description {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 336px;
}
.pxl-fancy-box-carousel.layout-2 .item-content {
  z-index: 1;
}
.pxl-fancy-box-carousel.layout-2 .item-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 450ms ease-out;
}
.pxl-fancy-box-carousel.layout-2 .item-content > *:nth-child(1) {
  transition-delay: 250ms;
}
.pxl-fancy-box-carousel.layout-2 .item-content > *:nth-child(2) {
  transition-delay: 320ms;
}
.pxl-fancy-box-carousel.layout-2 .pxl-swiper-slide.swiper-slide-active .item-content > * {
  opacity: 1;
  transform: translateY(0);
}
.pxl-fancy-box-carousel.layout-2 .pxl-swiper-slide.swiper-slide-active .item-icon {
  opacity: 1;
}
.pxl-fancy-box-carousel.layout-2 .pxl-swiper-slide.swiper-slide-active .item-inner::after {
  left: 0%;
  width: 50%;
}
.pxl-fancy-box-carousel.layout-2 .pxl-swiper-slide.swiper-slide-active .item-inner::before {
  right: 0%;
  width: 50%;
}
.pxl-fancy-box-carousel.layout-2 .pxl-animated-waypoint .item-inner {
  background-size: 110%;
  transition: all 1000ms ease;
}
.pxl-fancy-box-carousel.layout-2 .pxl-animated-waypoint.active .item-inner {
  background-size: 100%;
}
@media (max-width: 1399px) {
  .pxl-fancy-box-carousel.layout-2 .pxl-animated-waypoint.active .item-inner {
    background-size: cover;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-inner {
  padding: 44px 44px 50px 44px;
  border-radius: 36px;
  background-color: #FFF;
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.04), 0 10px 11.8px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-3 .item-inner {
    padding: 35px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-inner {
    padding: 15px 15px 25px 15px;
    border-radius: 20px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-inner:hover .item-image img {
  transform: translateX(5px) scale(1.03);
}
.pxl-fancy-box-carousel.layout-3 .item-inner:hover .item-image .shimmer-path {
  animation: shimmer-slide 1s ease-in-out forwards;
}
.pxl-fancy-box-carousel.layout-3 .item-inner:hover .item-image .chevron-largeright1 .shimmer-path {
  animation-delay: 0.35s;
}
.pxl-fancy-box-carousel.layout-3 .item-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.pxl-fancy-box-carousel.layout-3 .item-image img {
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .pxl-fancy-box-carousel.layout-3 .item-image img {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-3 .item-image img {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-image img {
    height: 350px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-image svg {
  position: absolute;
  top: 0;
  bottom: 0;
  fill: #fff;
  transition: all 0.35s ease;
}
.pxl-fancy-box-carousel.layout-3 .item-image svg .shimmer-path {
  opacity: 0;
}
.pxl-fancy-box-carousel.layout-3 .item-image .chevron-largeright2 {
  right: 206px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-image .chevron-largeright2 {
    right: 100px;
    height: 100%;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-image .chevron-largeright1 {
  right: -91px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-image .chevron-largeright1 {
    right: -50px;
    height: 100%;
  }
}
.pxl-fancy-box-carousel.layout-3 .box-image {
  position: relative;
}
.pxl-fancy-box-carousel.layout-3 .box-icon {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  fill: #fff;
}
.pxl-fancy-box-carousel.layout-3 .item-icon {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/overlay-clippath2.webp);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.08));
  width: 63px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.pxl-fancy-box-carousel.layout-3 .item-icon svg {
  color: #0A0A0A;
  width: 24px;
  height: 24px;
  animation: down-up-move 1s infinite;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-icon {
    width: 50px;
    height: 41px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-subtitle {
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  padding: 10px 12px;
  position: absolute;
  right: 24px;
  top: 24px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-subtitle {
    padding: 8px 10px;
    font-size: 12px;
    right: 15px;
    top: 20px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-number {
  padding: 14px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 100px;
  background-color: var(--primary-color);
  box-shadow: 1px 5px 6.3px 0 rgba(0, 0, 0, 0.25), 0 -3px 5.5px 0 rgba(0, 0, 0, 0.12) inset, 2px 5px 5.3px 0 rgba(255, 255, 255, 0.25) inset;
  position: absolute;
  left: 24px;
  top: 24px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-number {
    padding: 10px;
    font-size: 16px;
    left: 15px;
    top: 20px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-title {
  color: #0A0A0A;
  font-family: "Clash Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 0.95238;
  letter-spacing: -1.68px;
  max-width: 306px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-3 .item-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-title a {
  color: inherit;
}
.pxl-fancy-box-carousel.layout-3 .item-title .title-2 {
  --heading-color: #0A0A0A;
  --heading-color-hover: #A3A3A3;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, var(--heading-color), var(--heading-color) 50%, var(--heading-color-hover) 50%);
  background-size: 200% 100%;
  background-position: 0;
  transition: all 0.35s ease-in-out;
}
.pxl-fancy-box-carousel.layout-3 .item-title:hover .title-2 {
  background-position: -100%;
}
.pxl-fancy-box-carousel.layout-3 .box-content {
  display: none;
}
.pxl-fancy-box-carousel.layout-3 .item-content {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .item-content {
    margin-top: 30px;
    gap: 15px;
  }
}
.pxl-fancy-box-carousel.layout-3 .btn-primary {
  padding: 26px 30px;
  gap: 12px;
  border-radius: 18px;
  box-shadow: none;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-3 .btn-primary {
    padding: 20px 25px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .btn-primary {
    padding: 15px 22px;
  }
}
.pxl-fancy-box-carousel.layout-3 .btn-primary svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .btn-primary svg {
    width: 18px;
    height: 18px;
  }
}
.pxl-fancy-box-carousel.layout-3 .item-inner.active .item-content {
  display: flex;
}
.pxl-fancy-box-carousel.layout-3 .item-inner.active .item-icon svg {
  animation: none;
}
.pxl-fancy-box-carousel.layout-3 .pxl-swiper-dots {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-3 .pxl-swiper-dots {
    margin-top: 50px;
  }
}
.pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet {
  flex: 0 0 198px;
  width: 198px;
  height: 6px;
  line-height: 6px;
  border-radius: 100px;
  background-color: #EEE;
  overflow: hidden;
}
.pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 350ms ease;
  transform: scaleX(0);
  left: 0;
}
.pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active, .pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet:hover {
  flex: 0 0 198px;
  width: 198px;
  height: 6px;
  line-height: 6px;
  background-color: transparent;
}
.pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active::before, .pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet:hover::before {
  transform: scaleX(1);
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet {
    flex: 0 0 150px;
    width: 150px;
  }
  .pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active, .pxl-fancy-box-carousel.layout-3 .pxl-swiper-pagination-bullet:hover {
    flex: 0 0 150px;
    width: 150px;
  }
}
.pxl-fancy-box-carousel.layout-4 .item-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-4 .item-title {
    font-size: 25px;
  }
}
.pxl-fancy-box-carousel.layout-4 .item-description {
  color: #525252;
  max-width: 371px;
}
.pxl-fancy-box-carousel.layout-4 .item-image {
  border-radius: 2px;
  position: relative;
}
.pxl-fancy-box-carousel.layout-4 .item-image img {
  pointer-events: none;
}
@media (max-width: 991px) {
  .pxl-fancy-box-carousel.layout-4 .item-image img {
    height: 300px;
    object-fit: cover;
  }
}
.pxl-fancy-box-carousel.layout-4 .item-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(51, 6, 0, 0.2) 0%, rgba(51, 6, 0, 0.2) 100%);
}
.pxl-fancy-box-carousel.layout-4 .pxl-swiper-slide .item-inner {
  opacity: 0;
  transition: all 400ms ease;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-4 .pxl-swiper-slide .item-inner {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-4 .pxl-swiper-slide .item-inner {
    gap: 30px;
  }
}
.pxl-fancy-box-carousel.layout-4 .pxl-swiper-slide.swiper-slide-active .item-inner {
  opacity: 1;
}
.pxl-fancy-box-carousel.layout-4 .pxl-swiper-slide.swiper-slide-active .item-content > * {
  opacity: 1;
  transform: translateY(0);
}
.pxl-fancy-box-carousel.layout-4 .item-content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 400ms ease;
}
.pxl-fancy-box-carousel.layout-4 .item-content > *:nth-child(1) {
  transition-delay: 120ms;
}
.pxl-fancy-box-carousel.layout-4 .item-content > *:nth-child(2) {
  transition-delay: 230ms;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-4 .col-6 {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .pxl-fancy-box-carousel.layout-4 .pxl-swiper-arrows {
    display: none;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-inner {
  background-color: #FFF;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.03);
  padding: 20px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-inner {
    padding: 15px;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-icon {
  width: 44px;
  height: 44px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 24px;
}
.pxl-fancy-box-carousel.layout-5 .item-icon svg {
  fill: #fff;
  width: 22px;
  height: 22px;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-icon {
    width: 38px;
    height: 38px;
  }
  .pxl-fancy-box-carousel.layout-5 .item-icon svg {
    width: 18px;
    height: 18px;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-subtitle {
  color: #0C0D02;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-5 .item-subtitle {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-subtitle {
    font-size: 30px;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-button {
  margin-top: 99.5px;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-5 .item-button {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-button {
    margin-top: 50px;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-button > a {
  width: 100%;
  color: #330600;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 21.5px;
  border-bottom: 2px solid var(--primary-color);
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-button > a {
    padding-bottom: 15px;
  }
}
.pxl-fancy-box-carousel.layout-5 .item-button > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #0C0D02;
  transition: all 400ms ease;
}
.pxl-fancy-box-carousel.layout-5 .item-button > a svg {
  width: 24px;
  height: 24px;
  color: #330600;
}
.pxl-fancy-box-carousel.layout-5 .item-button > a:hover svg {
  animation: toleftFromright 400ms linear forwards;
}
.pxl-fancy-box-carousel.layout-5 .item-button > a:hover::before {
  width: 100%;
}
.pxl-fancy-box-carousel.layout-5 .item-image img {
  width: 100%;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-5 .item-image img {
    height: 300px;
    object-fit: cover;
  }
}
.pxl-fancy-box-carousel.layout-5 .swiper-pagination-custom-wrap .swiper-pagination-custom-bullets {
  display: none;
}
.pxl-fancy-box-carousel.layout-5 .swiper-pagination-custom-wrap .swiper-pagination-custom-number::before {
  content: "Step:";
  position: relative;
  margin-right: 5px;
}
.pxl-fancy-box-carousel.layout-5 .pxl-swiper-dots.swiper-pagination-vertical {
  row-gap: 2px;
}
.pxl-fancy-box-carousel.layout-5 .pxl-swiper-dots.swiper-pagination-vertical .pxl-swiper-pagination-bullet {
  flex: 0 0 22px;
  width: 2px;
  height: 22px;
  line-height: 22px;
}
.pxl-fancy-box-carousel.layout-5 .pxl-swiper-dots.swiper-pagination-vertical .pxl-swiper-pagination-bullet:hover, .pxl-fancy-box-carousel.layout-5 .pxl-swiper-dots.swiper-pagination-vertical .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active {
  flex: 0 0 40px;
  width: 2px;
  height: 40px;
  line-height: 40px;
}
.pxl-fancy-box-carousel.layout-6 .pxl-swiper-slider-wrap {
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .pxl-fancy-box-carousel.layout-6 .pxl-swiper-slider-wrap {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-6 .pxl-swiper-slider-wrap {
    height: 400px;
  }
}
.pxl-fancy-box-carousel.layout-6 .pxl-swiper-container {
  width: 100%;
  height: 100%;
}
.pxl-fancy-box-carousel.layout-6 .box-content {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  transition: all 350ms ease 0s;
}
.pxl-fancy-box-carousel.layout-6 .box-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.02%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}
.pxl-fancy-box-carousel.layout-6 .box-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: all 350ms ease 0s;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .pxl-fancy-box-carousel.layout-6 .box-content {
    padding: 40px 20px;
  }
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-6 .box-content {
    padding: 30px 15px;
  }
}
.pxl-fancy-box-carousel.layout-6 .item-subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  transition: all 350ms ease 0s;
}
.pxl-fancy-box-carousel.layout-6 .item-title {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 0;
  max-width: 270px;
  transition: all 350ms ease 0s;
}
@media (max-width: 575px) {
  .pxl-fancy-box-carousel.layout-6 .item-title {
    font-size: 18px;
  }
}
.pxl-fancy-box-carousel.layout-6 .item-des {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-top: 8px;
  max-width: 280px;
  display: none;
}
.pxl-fancy-box-carousel.layout-6 .pxl-swiper-slide:last-child .item-inner {
  border: none;
}
.pxl-fancy-box-carousel.layout-6 .item-inner {
  display: flex;
  align-items: end;
  border-right: 1px solid #fff;
  height: 100%;
}
.pxl-fancy-box-carousel.layout-6 .item-inner.active .box-content::after {
  height: 100%;
}
.pxl-fancy-box-carousel.layout-6 .item-inner.active .item-subtitle {
  color: #262626;
}
.pxl-fancy-box-carousel.layout-6 .item-inner.active .item-title {
  color: #262626;
}
.pxl-team-carousel.layout-1 .pxl-swiper-slider-wrap {
  overflow-x: clip;
}
.pxl-team-carousel.layout-1 .item-inner {
  border-radius: 16px;
  background-color: #262626;
  padding: 16px 16px 28px 16px;
}
.pxl-team-carousel.layout-1 .item-inner:hover .item-image {
  border-bottom-left-radius: 12px;
}
.pxl-team-carousel.layout-1 .item-inner:hover .item-image img {
  transform: scale(1.15);
}
@media (max-width: 575px) {
  .pxl-team-carousel.layout-1 .item-inner {
    padding: 12px 12px 22px 12px;
  }
}
.pxl-team-carousel.layout-1 .item-image {
  margin-bottom: 20px;
  transform-origin: 50%;
  overflow-x: clip;
  border-radius: 12px;
  background: linear-gradient(180deg, #000 0%, #323232 100%);
  position: relative;
}
.pxl-team-carousel.layout-1 .item-image img {
  transform: scale(1);
  transform-origin: 50% bottom;
  transition: all 350ms ease;
  border-radius: 12px;
  pointer-events: none;
  width: 100%;
  object-fit: cover;
}
.pxl-team-carousel.layout-1 .item-image::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  background-color: #262626;
  mask: url(../images/Vector-l.svg) no-repeat center / cover;
  -webkit-mask: url(../images/Vector-l.svg) no-repeat center / cover;
  z-index: 1;
}
.pxl-team-carousel.layout-1 .item-image::before {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  background-color: #262626;
  mask: url(../images/Vector-r.svg) no-repeat center / cover;
  -webkit-mask: url(../images/Vector-r.svg) no-repeat center / cover;
  z-index: 1;
}
@media (max-width: 1199px) {
  .pxl-team-carousel.layout-1 .item-image::after, .pxl-team-carousel.layout-1 .item-image::before {
    display: none;
  }
}
.pxl-team-carousel.layout-1 .item-title {
  color: #FAFAFA;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
}
.pxl-team-carousel.layout-1 .item-position {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}
.pxl-team-carousel.layout-1 .item-info-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  padding: 0 8px;
}
.pxl-team-carousel.layout-1 .item-social {
  gap: 8px;
}
.pxl-team-carousel.layout-1 .item-social a {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pxl-team-carousel.layout-1 .item-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  transition: all 350ms ease;
  transform: scale(0);
  border-radius: 4px;
}
.pxl-team-carousel.layout-1 .item-social a i {
  color: #fff;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.pxl-team-carousel.layout-1 .item-social a:hover::before {
  transform: scale(1);
}
@media (max-width: 575px) {
  .pxl-team-carousel.layout-1 .item-social a {
    width: 30px;
    height: 30px;
  }
  .pxl-team-carousel.layout-1 .item-social a i {
    font-size: 13px;
  }
}
.pxl-testimonial-carousel.layout-1 {
  border-radius: 16px;
  background-color: #262626;
  padding: 40px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-1 {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 {
    padding: 20px 15px;
  }
}
.pxl-testimonial-carousel.layout-1 .item-rating i {
  font-size: 24px;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .item-rating i {
    font-size: 18px;
  }
}
.pxl-testimonial-carousel.layout-1 .item-description {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5555555556;
  margin-top: 90px;
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-1 .item-description {
    margin-top: 70px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .item-description {
    font-size: 16px;
    margin-top: 50px;
  }
}
.pxl-testimonial-carousel.layout-1 .pxl-swiper-slider-wrap .pxl-swiper-container {
  border-radius: 12px;
  background-color: #0A0A0A;
  padding: 56px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-1 .pxl-swiper-slider-wrap .pxl-swiper-container {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .pxl-swiper-slider-wrap .pxl-swiper-container {
    padding: 25px 15px;
  }
}
.pxl-testimonial-carousel.layout-1 .thumb-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
  padding: 32px 0;
  opacity: 0 !important;
  transition: all 350ms ease;
}
.pxl-testimonial-carousel.layout-1 .thumb-item.swiper-slide-thumb-active {
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-1 .thumb-item {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .thumb-item {
    gap: 25px;
  }
}
.pxl-testimonial-carousel.layout-1 .pxl-swiper-slider-thumbs .pxl-swiper-slider-inner, .pxl-testimonial-carousel.layout-1 .pxl-swiper-slider-thumbs .pxl-swiper-thumbs {
  height: 100%;
}
.pxl-testimonial-carousel.layout-1 .thumbs-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
}
.pxl-testimonial-carousel.layout-1 .thumbs-image {
  border-radius: 50%;
  background-color: #FF4D00;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .thumbs-image {
    width: 50px;
    height: 50px;
  }
}
.pxl-testimonial-carousel.layout-1 .thumbs-name {
  color: #FAFAFA;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2px;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .thumbs-name {
    font-size: 18px;
  }
}
.pxl-testimonial-carousel.layout-1 .thumbs-position {
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.pxl-testimonial-carousel.layout-1 .pxl-swiper-slide {
  opacity: 0;
  transition: all 350ms ease;
}
.pxl-testimonial-carousel.layout-1 .pxl-swiper-slide.swiper-slide-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-1 .row {
    flex-direction: column-reverse;
  }
  .pxl-testimonial-carousel.layout-1 .row .col-5, .pxl-testimonial-carousel.layout-1 .row .col-7 {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .btn-primary {
    height: 44px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-1 .item-image {
    width: 120px;
    object-fit: cover;
  }
}
.pxl-testimonial-carousel.layout-2 {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(143.1% 56.33% at 56.33% 50%, rgba(255, 255, 255, 0) 55.81%, rgba(255, 255, 255, 0.12) 100%);
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 {
    border-radius: 25px;
  }
}
.pxl-testimonial-carousel.layout-2 .row {
  height: 522px;
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .row {
    height: auto;
  }
}
.pxl-testimonial-carousel.layout-2 .pxl-swiper-slider-wrap {
  display: flex;
  padding-left: 1px;
}
.pxl-testimonial-carousel.layout-2 .pxl-swiper-slider-wrap .pxl-swiper-container {
  background-color: #fff;
  border-radius: 32px;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .pxl-swiper-slider-wrap .pxl-swiper-container {
    border-radius: 25px;
  }
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .pxl-swiper-slider-wrap {
    padding-left: 15px;
  }
}
.pxl-testimonial-carousel.layout-2 .item-title {
  padding: 10px 12px;
  border-radius: 12px;
  background-color: #262626;
  backdrop-filter: blur(30px);
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .item-title {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
  }
}
.pxl-testimonial-carousel.layout-2 .item-description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.32px;
  margin-top: 41px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-2 .item-description {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .item-description {
    font-size: 20px;
    margin-top: 25px;
  }
}
.pxl-testimonial-carousel.layout-2 .icon-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pxl-testimonial-carousel.layout-2 .icon-wrapper svg {
  fill: var(--primary-color);
  width: 267.46px;
  height: 192.44px;
}
@media (max-width: 1199px) {
  .pxl-testimonial-carousel.layout-2 .icon-wrapper svg {
    width: 220px;
    height: 189px;
  }
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .icon-wrapper svg {
    width: 160px;
    height: 130px;
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-2 .icon-wrapper svg {
    width: 120px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .icon-wrapper svg {
    width: 80px;
    height: 60px;
  }
}
.pxl-testimonial-carousel.layout-2 .item-inner {
  padding: 40px 64px 40px 40px;
  height: 100%;
}
@media (max-width: 1199px) {
  .pxl-testimonial-carousel.layout-2 .item-inner {
    padding: 40px 35px 40px 35px;
  }
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .item-inner {
    padding: 40px 35px 110px 35px;
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-2 .item-inner {
    padding: 40px 25px 90px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .item-inner {
    padding: 35px 15px 90px;
  }
}
.pxl-testimonial-carousel.layout-2 .thumbs-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxl-testimonial-carousel.layout-2 .thumbs-image img {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  transform-origin: 50% bottom;
  transition: all 350ms ease;
  object-fit: cover;
  opacity: 0;
}
.pxl-testimonial-carousel.layout-2 .thumbs-image img::after {
  content: "";
  position: absolute;
  inset: 0;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-image img {
    width: 300px;
  }
}
.pxl-testimonial-carousel.layout-2 .thumbs-wrap {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  height: 100%;
  align-items: end;
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-wrap {
    padding: 300px 40px 70px;
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-wrap {
    padding: 300px 25px 70px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-wrap {
    padding: 150px 20px 50px 15px;
  }
}
.pxl-testimonial-carousel.layout-2 .pxl-swiper-slider-inner, .pxl-testimonial-carousel.layout-2 .pxl-swiper-thumbs {
  height: 100%;
}
.pxl-testimonial-carousel.layout-2 .thumbs-name {
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-name {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .thumbs-name {
    font-size: 26px;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
}
.pxl-testimonial-carousel.layout-2 .thumbs-position {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.pxl-testimonial-carousel.layout-2 .item-rating-star {
  margin-top: 27px;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .item-rating-star {
    margin-top: 18px;
  }
}
.pxl-testimonial-carousel.layout-2 .item-rating i {
  font-size: 14px;
}
.pxl-testimonial-carousel.layout-2 .item-rating i::before {
  content: "";
}
.pxl-testimonial-carousel.layout-2 .btn-audio {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transform: scale(0.4);
  transition: all 350ms ease;
}
.pxl-testimonial-carousel.layout-2 .btn-audio svg {
  width: 47.6px;
  height: 47.6px;
  fill: #fff;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-2 .btn-audio {
    margin-bottom: 8px;
  }
  .pxl-testimonial-carousel.layout-2 .btn-audio svg {
    width: 38px;
    height: 38px;
  }
}
.pxl-testimonial-carousel.layout-2 .btn-audio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6.8571557999px);
  opacity: 0;
  border-radius: 50%;
  transition: all 400ms cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
  visibility: visible;
  animation: index-pulse-small-map2 1000ms linear infinite;
  z-index: -1;
}
.pxl-testimonial-carousel.layout-2 .btn-audio::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(17.1428890228px);
  opacity: 0;
  border-radius: 50%;
  transition: all 400ms cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
  visibility: visible;
  animation: index-pulse-small-map3 1000ms linear infinite;
  z-index: -2;
}
.pxl-testimonial-carousel.layout-2 .thumb-item .thumbs-image, .pxl-testimonial-carousel.layout-2 .thumb-item .thumbs-wrap {
  opacity: 0;
  transition: all 400ms ease;
}
.pxl-testimonial-carousel.layout-2 .thumb-item.swiper-slide-thumb-active .thumbs-image, .pxl-testimonial-carousel.layout-2 .thumb-item.swiper-slide-thumb-active .thumbs-wrap {
  opacity: 1;
}
.pxl-testimonial-carousel.layout-2 .thumb-item.swiper-slide-thumb-active .thumbs-image img {
  animation: effect-scale-image 400ms linear forwards;
  animation-delay: 0.25s;
}
.pxl-testimonial-carousel.layout-2 .thumb-item.swiper-slide-thumb-active .btn-audio {
  transform: scale(1);
}
.pxl-testimonial-carousel.layout-2 .pxl-swiper-pagination-bullet {
  flex: 0 0 15px;
  width: 15px;
  height: 2px;
  line-height: 15px;
}
.pxl-testimonial-carousel.layout-2 .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active, .pxl-testimonial-carousel.layout-2 .pxl-swiper-pagination-bullet:hover {
  flex: 0 0 15px;
  width: 15px;
  height: 2px;
  line-height: 15px;
}
.pxl-testimonial-carousel.layout-2 .thumbs-content {
  z-index: 1;
}
@media (max-width: 1199px) {
  .pxl-testimonial-carousel.layout-2 .col-5 {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .col-5 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .pxl-testimonial-carousel.layout-2 .col-7 {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-2 .col-7 {
    width: 100%;
  }
}
.pxl-testimonial-carousel.layout-3 .item-inner {
  text-align: center;
}
.pxl-testimonial-carousel.layout-3 .item-description {
  color: #262626;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.33333;
  letter-spacing: -0.36px;
  max-width: 856px;
  margin: auto;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-3 .item-description {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-3 .item-description {
    font-size: 26px;
    letter-spacing: 0px;
    padding-bottom: 25px;
  }
}
.pxl-testimonial-carousel.layout-3 .icon-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-3 .icon-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-3 .icon-wrapper {
    margin-bottom: 35px;
  }
}
.pxl-testimonial-carousel.layout-3 .icon-wrapper svg {
  width: 105px;
  height: 100px;
  fill: #262626;
}
@media (max-width: 991px) {
  .pxl-testimonial-carousel.layout-3 .icon-wrapper svg {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .pxl-testimonial-carousel.layout-3 .icon-wrapper svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-3 .icon-wrapper svg {
    width: 40px;
    height: 40px;
  }
}
.pxl-testimonial-carousel.layout-3 .icon-wrapper i {
  color: #262626;
}
.pxl-testimonial-carousel.layout-3 .pxl-divider {
  width: 470px;
  height: 1px;
  background-color: var(--heading-color);
  margin: auto;
  display: flex;
  margin-top: 48px;
  position: relative;
}
.pxl-testimonial-carousel.layout-3 .pxl-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  width: 1px;
  height: 48px;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-3 .pxl-divider {
    width: 100%;
    margin-top: 30px;
  }
  .pxl-testimonial-carousel.layout-3 .pxl-divider::before {
    height: 30px;
  }
}
.pxl-testimonial-carousel.layout-3 .name-position {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media (max-width: 575px) {
  .pxl-testimonial-carousel.layout-3 .name-position {
    font-size: 18px;
  }
}
.pxl-testimonial-carousel.layout-3 .item-name {
  color: var(--heading-color);
  font-weight: 500;
}
.pxl-testimonial-carousel.layout-3 .item-position {
  color: rgba(29, 24, 24, 0.5);
  margin-left: 5px;
}
.pxl-slider.layout-1 .pxl-swiper-slider-wrap {
  position: relative;
  border-radius: 40px 0 40px 40px;
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .pxl-swiper-slider-wrap {
    border-radius: 25px 0 25px 25px;
  }
}
.pxl-slider.layout-1 .pxl-swiper-slider-wrap::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 814px;
  height: 131px;
  background-color: #fff;
  mask: url(../images/overlay-clippath3.webp) no-repeat center / cover;
  -webkit-mask: url(../images/overlay-clippath3.webp) no-repeat center / cover;
  z-index: 1;
}
@media (max-width: 1399px) {
  .pxl-slider.layout-1 .pxl-swiper-slider-wrap::before {
    width: 50%;
    height: 95px;
    mask-position: right top;
    mask-size: contain;
  }
}
.pxl-slider.layout-1 .pxl-swiper-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 15%, rgba(0, 0, 0, 0) 47.17%);
  z-index: 1;
}
.pxl-slider.layout-1 .pxl-swiper-arrows.custom {
  flex-direction: column;
}
.pxl-slider.layout-1 .pxl-swiper-arrows.custom .pxl-swiper-arrow {
  backdrop-filter: blur(12px);
}
.pxl-slider.layout-1 .pxl-swiper-dots.style-bullets {
  flex-direction: column;
  gap: 28px;
}
.pxl-slider.layout-1 .pxl-swiper-dots.style-bullets .pxl-swiper-pagination-bullet {
  backdrop-filter: blur(12px);
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .pxl-swiper-dots.style-bullets {
    gap: 20px;
  }
}
.pxl-slider.layout-1 .item-inner {
  padding: 42px 42px 66px;
}
@media (max-width: 991px) {
  .pxl-slider.layout-1 .item-inner {
    padding: 60px 30px 60px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .item-inner {
    padding: 50px 20px 50px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .item-inner {
    padding: 50px 15px 50px;
  }
}
.pxl-slider.layout-1 .logo-icon {
  display: inline-flex;
  align-items: center;
  column-gap: 50.5px;
  row-gap: 12px;
  position: relative;
  padding: 17.5px 81px 17.5px 32px;
  transition: all 700ms ease 0.7s;
  opacity: 0;
  transform: translateY(-40px);
}
.pxl-slider.layout-1 .logo-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/img13-home3.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1199px) {
  .pxl-slider.layout-1 .logo-icon {
    padding: 15px 60px 15px 25px;
    column-gap: 35px;
  }
  .pxl-slider.layout-1 .logo-icon::after {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .logo-icon {
    padding: 15px 45px 15px 20px;
    column-gap: 25px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .logo-icon {
    column-gap: 15px;
    flex-direction: column;
    align-items: start;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    padding: 15px;
    border-radius: 20px;
  }
  .pxl-slider.layout-1 .logo-icon::after {
    display: none;
  }
}
.pxl-slider.layout-1 .item-logo img {
  width: 116px;
  height: 22px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .item-logo img {
    width: 80px;
    height: 17px;
    object-fit: contain;
  }
}
.pxl-slider.layout-1 .box-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9.5px 0 9.5px 50.5px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 1199px) {
  .pxl-slider.layout-1 .box-icon {
    padding: 9.5px 0 9.5px 35px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .box-icon {
    padding: 9.5px 0 9.5px 25px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .box-icon {
    padding: 0;
    border: none;
  }
}
.pxl-slider.layout-1 .box-icon .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.pxl-slider.layout-1 .box-icon .item-icon svg {
  width: 14px;
  height: 14px;
}
.pxl-slider.layout-1 .box-icon .item-icon i {
  font-size: 14px;
  color: #fff;
}
.pxl-slider.layout-1 .box-icon .item-text-icon {
  color: #0A0A0A;
}
.pxl-slider.layout-1 .box-icon .text-2 {
  color: #A3A3A3;
}
.pxl-slider.layout-1 .item-title {
  color: #FFF;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  margin-bottom: 104px;
  margin-top: 130px;
  max-width: 490px;
  opacity: 0;
  transition: all 400ms ease 0.8s;
}
@media (max-width: 991px) {
  .pxl-slider.layout-1 .item-title {
    font-size: 60px;
    margin-top: 110px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .item-title {
    font-size: 50px;
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .item-title {
    font-size: 36px;
    letter-spacing: -1px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.pxl-slider.layout-1 .item-des {
  color: #A3A3A3;
  max-width: 388px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 700ms ease 0.8s;
}
.pxl-slider.layout-1 .btn-primary {
  padding: 18px 20px;
  gap: 12px;
  border-radius: 20px;
  margin-top: 70px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  transition: all 700ms ease 1s;
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .btn-primary {
    margin-top: 50px;
    padding: 14px 20px;
  }
}
.pxl-slider.layout-1 .pxl-swiper-slide.swiper-slide-active .logo-icon {
  opacity: 1;
  transform: translateY(0);
}
.pxl-slider.layout-1 .pxl-swiper-slide.swiper-slide-active .item-title {
  opacity: 1;
}
.pxl-slider.layout-1 .pxl-swiper-slide.swiper-slide-active .item-des {
  opacity: 1;
  transform: translateY(0);
}
.pxl-slider.layout-1 .pxl-swiper-slide.swiper-slide-active .btn-primary {
  opacity: 1;
  transform: translateY(0);
}
.pxl-slider.layout-1 .arrow-right {
  position: absolute;
  inset: 0;
}
.pxl-slider.layout-1 .arrow-right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  height: 100%;
  width: 677px;
  mask: url(../images/overlay-clippath4.webp) no-repeat center / cover;
  -webkit-mask: url(../images/overlay-clippath4.webp) no-repeat center / cover;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3.5992798805px);
}
@media (max-width: 1199px) {
  .pxl-slider.layout-1 .arrow-right::before {
    width: 500px;
    mask-size: contain;
  }
}
@media (max-width: 991px) {
  .pxl-slider.layout-1 .arrow-right::before {
    width: 400px;
    left: 15px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .arrow-right::before {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .arrow-right::before {
    width: 180px;
    mask-position: bottom;
  }
}
.pxl-slider.layout-1 .arrow-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 84px;
  height: 89%;
  width: 600px;
  mask: url(../images/overlay-clippath5.webp) no-repeat center / cover;
  -webkit-mask: url(../images/overlay-clippath5.webp) no-repeat center / cover;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3.5992798805px);
}
@media (max-width: 1399px) {
  .pxl-slider.layout-1 .arrow-right::after {
    height: 100%;
    width: 677px;
    right: 50px;
    mask-size: contain;
    mask-position: bottom;
  }
}
@media (max-width: 1199px) {
  .pxl-slider.layout-1 .arrow-right::after {
    width: 500px;
    mask-size: contain;
    mask-position: center;
  }
}
@media (max-width: 991px) {
  .pxl-slider.layout-1 .arrow-right::after {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-1 .arrow-right::after {
    width: 300px;
    right: 15px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-1 .arrow-right::after {
    width: 180px;
    mask-position: bottom;
  }
}
.pxl-slider.layout-2 .item-title {
  color: #fff;
  font-size: 112px;
  font-weight: 600;
  line-height: 0.89286;
  letter-spacing: -3.36px;
  max-width: 680px;
  margin-bottom: 40px;
  font-family: "Inter Tight", sans-serif;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .pxl-slider.layout-2 .item-title {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .pxl-slider.layout-2 .item-title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-2 .item-title {
    font-size: 60px;
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-2 .item-title {
    font-size: 45px;
    letter-spacing: -1px;
    margin-bottom: 25px;
    max-width: 410px;
  }
}
.pxl-slider.layout-2 .item-des {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 448px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.32px;
}
.pxl-slider.layout-2 .btn-seventh {
  margin-top: 32px;
  color: #141414;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
}
.pxl-slider.layout-2 .btn-seventh .pxl-icon {
  margin-left: 2px;
  background-color: #fff;
}
.pxl-slider.layout-2 .btn-seventh .pxl-button-text::before {
  background-color: #fff;
}
.pxl-slider.layout-2 .btn-seventh .pxl-button-text::after {
  background-color: var(--primary-color);
}
.pxl-slider.layout-2 .btn-seventh svg {
  width: 16px;
  height: 16px;
  color: #141414;
  fill: transparent;
}
.pxl-slider.layout-2 .btn-seventh:hover {
  color: #fff;
}
.pxl-slider.layout-2 .btn-seventh:hover svg {
  fill: transparent;
}
.pxl-slider.layout-2 .btn-seventh:hover .pxl-icon {
  transform: translateX(-2px);
}
@media (max-width: 575px) {
  .pxl-slider.layout-2 .btn-seventh {
    margin-top: 25px;
    font-size: 15px;
  }
  .pxl-slider.layout-2 .btn-seventh .pxl-button-text {
    padding: 14px 30px 13.5px;
  }
}
.pxl-slider.layout-2 .item-logo {
  position: absolute;
  right: 47px;
  bottom: 0;
}
.pxl-slider.layout-2 .item-logo img {
  transform: translateX(100%);
  opacity: 0;
  transition: all 500ms ease 0.7s;
  object-fit: cover;
}
@media (max-width: 767px) {
  .pxl-slider.layout-2 .item-logo img {
    width: 500px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-2 .item-logo img {
    width: 400px;
  }
}
@media (max-width: 1199px) {
  .pxl-slider.layout-2 .item-logo {
    right: 15px;
  }
}
.pxl-slider.layout-2 .item-inner {
  padding: 122px 32px 70px;
  height: 900px;
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .pxl-slider.layout-2 .item-inner {
    padding: 122px 15px 70px;
  }
}
@media (max-width: 991px) {
  .pxl-slider.layout-2 .item-inner {
    padding: 110px 15px 70px;
    height: 800px;
  }
}
@media (max-width: 767px) {
  .pxl-slider.layout-2 .item-inner {
    padding: 90px 15px 70px;
    height: 650px;
  }
}
@media (max-width: 575px) {
  .pxl-slider.layout-2 .item-inner {
    padding: 70px 15px 70px;
    height: 550px;
  }
}
.pxl-slider.layout-2 .pxl-swiper-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(249deg, rgba(0, 0, 0, 0) 52.69%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.pxl-slider.layout-2 .item-content > * {
  opacity: 0;
  transform: translateY(35px);
  transition: all 600ms ease;
}
.pxl-slider.layout-2 .item-content > *:nth-child(1) {
  transition-delay: 700ms;
}
.pxl-slider.layout-2 .item-content > *:nth-child(2) {
  transition-delay: 800ms;
}
.pxl-slider.layout-2 .item-content > *:nth-child(3) {
  transition-delay: 950ms;
}
.pxl-slider.layout-2 .swiper-slide-active .item-logo img {
  opacity: 1;
  transform: translateX(0);
}
.pxl-slider.layout-2 .swiper-slide-active .item-content > * {
  opacity: 1;
  transform: translateY(0);
}
.pxl-slider.layout-2 .pxl-swiper-dots {
  flex-direction: column;
  gap: 0;
}
.pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet {
  flex: 0 0 40px;
  width: 1.5px;
  height: 40px;
  line-height: 40px;
  position: relative;
}
.pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: all 350ms ease;
}
.pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active, .pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet:hover {
  background-color: transparent;
}
.pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active::before, .pxl-slider.layout-2 .pxl-swiper-dots .pxl-swiper-pagination-bullet:hover::before {
  height: 100%;
}
.pxl-post-carousel.layout-post-1 .box-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pxl-post-carousel.layout-post-1 .meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-1 .meta-item {
    gap: 10px;
  }
}
.pxl-post-carousel.layout-post-1 .meta-item .item-name {
  display: flex;
  flex-direction: column;
}
.pxl-post-carousel.layout-post-1 .meta-item .author-avatar {
  border-radius: 50%;
  overflow: hidden;
}
.pxl-post-carousel.layout-post-1 .meta-item .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  letter-spacing: 0.32px;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-1 .meta-item .name {
    font-size: 14px;
  }
}
.pxl-post-carousel.layout-post-1 .meta-item .role {
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33333;
  text-transform: uppercase;
}
.pxl-post-carousel.layout-post-1 .item-date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pxl-post-carousel.layout-post-1 .item-date .month-year {
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33333;
  letter-spacing: -0.12px;
  text-transform: uppercase;
}
.pxl-post-carousel.layout-post-1 .item-date svg {
  fill: #808080;
  width: 18px;
  height: 18px;
}
.pxl-post-carousel.layout-post-1 .item-title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 0;
  margin-top: 24px;
  letter-spacing: 0.24px;
}
.pxl-post-carousel.layout-post-1 .item-title a {
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  color: inherit;
}
.pxl-post-carousel.layout-post-1 .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-1 .item-title {
    font-size: 16px;
    margin-top: 20px;
  }
}
.pxl-post-carousel.layout-post-1 .item-inner-wrap {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 32px;
  height: 511px;
}
@media (max-width: 1199px) {
  .pxl-post-carousel.layout-post-1 .item-inner-wrap {
    height: auto;
  }
}
@media (max-width: 767px) {
  .pxl-post-carousel.layout-post-1 .item-inner-wrap {
    padding-right: 0;
    border: none;
  }
}
.pxl-post-carousel.layout-post-1 .item-featured {
  position: relative;
}
.pxl-post-carousel.layout-post-1 .item-featured img {
  width: 100%;
}
.pxl-post-carousel.layout-post-1 .pxl-swiper-slide:last-child .item-inner-wrap {
  border-right: none;
}
.pxl-post-carousel.layout-post-1 .pxl-carousel-inner {
  --pxl-spacing-inline: 16px;
  --pxl-spacing-block: 16px;
  margin-block: calc(-1 * var(--pxl-spacing-block));
}
.pxl-post-carousel.layout-post-1 .pxl-carousel-inner .swiper-slide {
  -webkit-transition: all 0.35s ease;
  -khtml-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding-inline: var(--pxl-spacing-inline);
  padding-block: var(--pxl-spacing-block);
}
.pxl-post-carousel.layout-post-1 .pxl-swiper-slide {
  --pxl-width: 25%;
  --pxl-spacing-inline: 16px;
  flex-basis: calc(var(--pxl-width) + (var(--pxl-spacing-inline) / 2)) !important;
  width: 100% !important;
  -webkit-transition: all 350ms ease 0s;
  -khtml-transition: all 350ms ease 0s;
  -moz-transition: all 350ms ease 0s;
  -ms-transition: all 350ms ease 0s;
  -o-transition: all 350ms ease 0s;
  transition: all 350ms ease 0s;
}
@media (max-width: 1199px) {
  .pxl-post-carousel.layout-post-1 .pxl-swiper-slide {
    --pxl-width: 50%;
    flex-basis: var(--pxl-width) !important;
  }
}
@media (max-width: 767px) {
  .pxl-post-carousel.layout-post-1 .pxl-swiper-slide {
    --pxl-width: 100%;
  }
}
.pxl-post-carousel.layout-post-1 .pxl-swiper-slide:nth-child(3n - 2) {
  --pxl-width: 50%;
  flex-basis: calc(var(--pxl-width) - var(--pxl-spacing-inline)) !important;
  width: 100%;
}
@media (max-width: 1199px) {
  .pxl-post-carousel.layout-post-1 .pxl-swiper-slide:nth-child(3n - 2) {
    flex-basis: var(--pxl-width) !important;
  }
}
@media (max-width: 767px) {
  .pxl-post-carousel.layout-post-1 .pxl-swiper-slide:nth-child(3n - 2) {
    --pxl-width: 100%;
  }
}
.pxl-post-carousel.layout-post-2 .item-featured {
  border-radius: 24px;
}
@media (max-width: 767px) {
  .pxl-post-carousel.layout-post-2 .item-featured img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-2 .item-featured {
    border-radius: 20px;
  }
  .pxl-post-carousel.layout-post-2 .item-featured img {
    height: 400px;
  }
}
.pxl-post-carousel.layout-post-2 .item-inner {
  margin-top: 50px;
  display: flex;
  column-gap: 56px;
  row-gap: 20px;
}
@media (max-width: 991px) {
  .pxl-post-carousel.layout-post-2 .item-inner {
    column-gap: 30px;
  }
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-2 .item-inner {
    flex-direction: column;
    margin-top: 35px;
  }
}
.pxl-post-carousel.layout-post-2 .month-year {
  display: flex;
  flex-direction: column;
}
.pxl-post-carousel.layout-post-2 .month-year .date {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -1.44px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .pxl-post-carousel.layout-post-2 .month-year .date {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-2 .month-year .date {
    font-size: 35px;
    letter-spacing: 0;
    margin-bottom: 0;
  }
}
.pxl-post-carousel.layout-post-2 .month-year .year {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33333;
  text-transform: uppercase;
  max-width: 57px;
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-2 .month-year {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .pxl-post-carousel.layout-post-2 .month-year .year {
    max-width: auto;
  }
}
.pxl-post-carousel.layout-post-2 .item-title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 370px;
  margin-bottom: 29px;
}
.pxl-post-carousel.layout-post-2 .item-title a {
  width: fit-content;
  color: var(--heading-color);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
  background-repeat: no-repeat;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline forwards;
  color: inherit;
}
.pxl-post-carousel.layout-post-2 .item-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) pxl-wide-menu-underline-hover forwards;
}
@media (max-width: 575px) {
  .pxl-post-carousel.layout-post-2 .item-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
}
.pxl-post-carousel.layout-post-2 .item-excerpt {
  color: #FF481F;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33333;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .pxl-process-accordion-widget .widget-wrap {
    display: flex;
    column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .pxl-process-accordion-widget .widget-wrap {
    column-gap: 24px;
  }
}
.pxl-process-accordion-widget .widget-wrap .process-item {
  overflow: hidden;
}
@media (min-width: 768px) {
  .pxl-process-accordion-widget .widget-wrap .process-item {
    position: relative;
    flex: 1 0 0%;
    transition: flex 0.5s cubic-bezier(0.29, 0, 0.2, 1);
  }
}
@media (min-width: 768px) {
  .pxl-process-accordion-widget .widget-wrap .process-item.is-active {
    flex: 25.5%;
  }
}
.pxl-process-accordion-widget .widget-wrap .process-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: filter 0.6s cubic-bezier(0.48, 0, 0.11, 1);
}
.pxl-process-accordion-widget .process-item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .pxl-process-accordion-widget .process-item.is-active .process-count {
    opacity: 1;
    transform: none;
    transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
    transition-property: opacity, transform;
  }
  .pxl-process-accordion-widget .process-item.is-active .pxl-divider {
    opacity: 1;
    transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
  }
  .pxl-process-accordion-widget .process-item.is-active .pxl-divider::before {
    width: 100%;
  }
  .pxl-process-accordion-widget .process-item.is-active .process-name-active {
    opacity: 1;
    transform: none;
    transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
    transition-property: opacity, transform;
  }
  .pxl-process-accordion-widget .process-item.is-active .process-name {
    opacity: 0;
    transition: all 400ms ease 0s;
  }
  .pxl-process-accordion-widget .process-item.is-active .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--heading-color);
  }
  .pxl-process-accordion-widget .process-item.is-active .icon-wrapper svg {
    fill: #262626;
  }
  .pxl-process-accordion-widget .process-item.is-active .featured-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.58%, rgba(0, 0, 0, 0.4) 96.7%);
  }
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .process-count {
  opacity: 1;
  transform: none;
  transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
  transition-property: opacity, transform;
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .pxl-divider {
  opacity: 1;
  transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .pxl-divider::before {
  width: 100%;
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .process-name-active {
  opacity: 1;
  transform: none;
  transition: 400ms cubic-bezier(0.48, 0, 0.11, 1) 0.4s;
  transition-property: opacity, transform;
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .process-name {
  opacity: 0;
  transition: all 400ms ease 0s;
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .icon-wrapper {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .icon-wrapper svg {
  fill: var(--heading-color);
}
.pxl-process-accordion-widget .process-item.swiper-slide-active .featured-image::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.58%, rgba(0, 0, 0, 0.4) 96.7%);
}
.pxl-process-accordion-widget .featured-image {
  position: relative;
  flex: 1 1 auto;
  height: var(--image-height, 386px);
  overflow: hidden;
  border-radius: 16px;
}
.pxl-process-accordion-widget .featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FCFAF8B3;
  transition: 400ms cubic-bezier(0.48, 0, 0.11, 1);
}
.pxl-process-accordion-widget .process-item-inner {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .process-item-inner {
    inset: 24px 15px;
  }
}
.pxl-process-accordion-widget .process-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pxl-process-accordion-widget .icon-wrapper {
  padding: 16px;
  background-color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 12px;
  transition: 400ms cubic-bezier(0.48, 0, 0.11, 1);
  color: var(--primary-color);
}
.pxl-process-accordion-widget .icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .icon-wrapper {
    padding: 12px;
  }
  .pxl-process-accordion-widget .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
}
.pxl-process-accordion-widget .process-count {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08333;
  letter-spacing: -2.4px;
  opacity: 0;
  transform: translateX(15px);
}
@media (max-width: 767px) {
  .pxl-process-accordion-widget .process-count {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .process-count {
    font-size: 35px;
    letter-spacing: -1px;
  }
}
.pxl-process-accordion-widget .process-name {
  color: #262626;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.8px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 400ms ease 0.4s;
  display: block;
  opacity: 1;
}
@media (max-width: 991px) {
  .pxl-process-accordion-widget .process-name {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .pxl-process-accordion-widget .process-name {
    opacity: 1;
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .process-name {
    font-size: 30px;
    letter-spacing: 0;
  }
}
.pxl-process-accordion-widget .process-name-active {
  color: #FFF;
  font-size: 48px;
  line-height: 1.08333;
  letter-spacing: -2.4px;
  opacity: 0;
  transform: translateX(15px);
}
@media (max-width: 767px) {
  .pxl-process-accordion-widget .process-name-active {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .process-name-active {
    font-size: 35px;
    letter-spacing: -1px;
  }
}
.pxl-process-accordion-widget .pxl-divider {
  width: calc(100% - 5px);
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  border-radius: 4px;
  position: relative;
  margin-right: 5px;
  overflow: hidden;
  margin-top: 24px;
  opacity: 0;
}
.pxl-process-accordion-widget .pxl-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 650ms cubic-bezier(0.48, 0, 0.11, 1) 0.55s;
}
@media (max-width: 575px) {
  .pxl-process-accordion-widget .pxl-divider {
    height: 2px;
    margin-top: 16px;
  }
}
.pxl-sliders-wrap {
  position: relative;
  height: 100%;
}
.pxl-sliders-wrap:not(.pxl-swiper-initialized) .pxl-slider-wrapper {
  visibility: hidden;
}
.pxl-slider-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
  z-index: 0;
}
.pxl-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.pxl-slider-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pxl-slider-item > div {
  width: 100%;
}
.pxl-slider-item .pxl-slide-bg {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.pxl-slider-item .pxl-btn {
  position: relative;
  z-index: 1;
}
.effect-fade .pxl-slider-item:not(.swiper-slide-active) {
  z-index: -1;
}
.effect-fade .pxl-slider-item.swiper-slide-active {
  z-index: 1;
}
.pxl-slide-bg {
  background-image: var(--slide-bg-lazy);
}
.pxl-slider-container:hover .pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-prev, .pxl-slider-container:focus .pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-prev {
  opacity: 1;
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.pxl-slider-container:hover .pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-next, .pxl-slider-container:focus .pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-next {
  opacity: 1;
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.pxl-slider-arrow-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
.pxl-slider-arrow-wrap > * {
  max-width: 100%;
}
.pxl-slider-arrow-wrap.pos-absolute.wrap {
  position: absolute;
}
.pxl-slider-arrow-wrap.pos-absolute.separate .pxl-slider-arrow-prev {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pxl-slider-arrow-wrap.pos-absolute.separate .pxl-slider-arrow-next {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pxl-slider-arrow-wrap.pos-df {
  margin-top: 30px;
}
.pxl-slider-arrow-wrap.pos-df.wrap {
  justify-content: center;
}
.pxl-slider-arrow-wrap.separate {
  margin-top: 0;
  justify-content: space-between;
}
.pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-prev {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.pxl-slider-arrow-wrap.arrow-on-hover.separate .pxl-slider-arrow-next {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.pxl-slider-arrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.pxl-slider-arrow > * {
  max-width: 100%;
}
.pxl-slider-arrow.swiper-button-disabled {
  cursor: not-allowed;
}
.pxl-slider-arrow .arrow-text {
  font-size: 16px;
  position: relative;
}
.pxl-slider-arrow .pxl-icon {
  font-size: 25px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 1199px) {
  .pxl-slider-arrow .pxl-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .pxl-slider-arrow .pxl-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.pxl-slider-arrow .pxl-icon svg {
  width: 1em;
  height: 1em;
  -webkit-transition: fill 0.3s ease;
  -khtml-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.pxl-slider-arrow .pxl-icon svg path {
  -webkit-transition: fill 0.3s ease;
  -khtml-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.pxl-slider-dots.style-bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  column-gap: 10px;
  margin: 0 2px;
}
.pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet {
  width: 23px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  -khtml-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #cccccc;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  -khtml-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet:hover, .pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-box-shadow: 0px 0px 0px 1px var(--primary-color);
  -khtml-box-shadow: 0px 0px 0px 1px var(--primary-color);
  -moz-box-shadow: 0px 0px 0px 1px var(--primary-color);
  -ms-box-shadow: 0px 0px 0px 1px var(--primary-color);
  -o-box-shadow: 0px 0px 0px 1px var(--primary-color);
  box-shadow: 0px 0px 0px 1px var(--primary-color);
}
.pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet:hover:before, .pxl-slider-dots.style-bullets .pxl-slider-pagination-bullet.swiper-pagination-bullet-active:before {
  background: var(--primary-color);
}
.pxl-slide-item-wrap.full-screen {
  height: 100vh;
}
.pxl-slide-item-wrap.full-screen .slide-content-wrap > div {
  height: 100vh;
}
.swiper-gl {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}
.swiper-gl .swiper-slide, .swiper-gl swiper-slide {
  position: relative;
}
.swiper-gl .swiper-gl-image {
  display: none;
}
.swiper-gl > canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.swiper-gl-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.pxl-ttip {
  position: relative;
  display: inline-block;
}
.pxl-ttip:hover .tt-txt {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.tt-txt {
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 3px;
}
.tt-txt:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 6px solid transparent;
  z-index: 1000001;
  margin-bottom: 0;
  left: calc(50% - 6px);
  top: auto;
  bottom: -12px;
  transition: 0.3s;
}
.pxl-ttip .tt-txt {
  position: absolute;
  pointer-events: none;
  display: inline-block;
  background: #1b1b1b;
  color: #fff;
  padding: 8px 10px 8px 10px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  background: #1b1b1b;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  -khtml-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.tt_top .tt-txt, .tt-top .tt-txt {
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -khtml-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.tt_top .tt-txt:before, .tt-top .tt-txt:before {
  border-top-color: #1b1b1b;
}
.tt_top:hover .tt-txt, .tt-top:hover .tt-txt {
  -webkit-transform: translate(-50%, -8px);
  -khtml-transform: translate(-50%, -8px);
  -moz-transform: translate(-50%, -8px);
  -ms-transform: translate(-50%, -8px);
  -o-transform: translate(-50%, -8px);
  transform: translate(-50%, -8px);
}
.tt-top-left .tt-txt, .tt-top-right .tt-txt {
  bottom: 100%;
  left: 50%;
}
.tt-top-left .tt-txt:before, .tt-top-right .tt-txt:before {
  border-top-color: #1b1b1b;
}
.tt-top-left:hover .tt-txt, .tt-top-right:hover .tt-txt {
  -webkit-transform: translate(0, -8px);
  -khtml-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.tt-top-left .tt-txt {
  -webkit-transform: translate(-100%, 0);
  -khtml-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  margin-left: 12px;
}
.tt-top-left .tt-txt:before {
  left: auto;
  right: 6px;
}
.tt-top-left:hover .tt-txt {
  -webkit-transform: translate(-100%, -8px);
  -khtml-transform: translate(-100%, -8px);
  -moz-transform: translate(-100%, -8px);
  -ms-transform: translate(-100%, -8px);
  -o-transform: translate(-100%, -8px);
  transform: translate(-100%, -8px);
}
.tt-top-right .tt-txt {
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  margin-left: -12px;
}
.tt-top-right .tt-txt:before {
  left: 6px;
  right: auto;
}
.tt-top-right:hover .tt-txt {
  -webkit-transform: translate(0, -8px);
  -khtml-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.tt-left .tt-txt {
  left: auto;
  right: 100%;
  bottom: 50%;
  margin-bottom: -14px;
}
.tt-left .tt-txt:before {
  border-left-color: #1b1b1b;
  margin-right: -11px;
  margin-bottom: -6px;
  right: 0;
  bottom: 50%;
  left: auto;
}
.tt-left:hover .tt-txt {
  -webkit-transform: translate(-8px, 0);
  -khtml-transform: translate(-8px, 0);
  -moz-transform: translate(-8px, 0);
  -ms-transform: translate(-8px, 0);
  -o-transform: translate(-8px, 0);
  transform: translate(-8px, 0);
}
.tt-right .tt-txt {
  left: 100%;
  bottom: 50%;
  margin-bottom: -14px;
}
.tt-right .tt-txt:before {
  border-right-color: #1b1b1b;
  margin-left: -11px;
  margin-bottom: -6px;
  left: 0;
  bottom: 50%;
}
.tt-right:hover .tt-txt {
  -webkit-transform: translate(8px, 0);
  -khtml-transform: translate(8px, 0);
  -moz-transform: translate(8px, 0);
  -ms-transform: translate(8px, 0);
  -o-transform: translate(8px, 0);
  transform: translate(8px, 0);
}
.tt-bottom .tt-txt {
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -khtml-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.tt-bottom .tt-txt:before {
  border-bottom-color: #1b1b1b;
  top: -12px;
  bottom: auto;
}
.tt-bottom:hover .tt-txt {
  -webkit-transform: translate(-50%, 8px);
  -khtml-transform: translate(-50%, 8px);
  -moz-transform: translate(-50%, 8px);
  -ms-transform: translate(-50%, 8px);
  -o-transform: translate(-50%, 8px);
  transform: translate(-50%, 8px);
}
.tt-bottom-left .tt-txt, .tt-bottom-right .tt-txt {
  top: 100%;
  left: 50%;
}
.tt-bottom-left .tt-txt:before, .tt-bottom-right .tt-txt:before {
  border-bottom-color: #1b1b1b;
  top: -12px;
  bottom: auto;
}
.tt-bottom-left:hover .tt-txt, .tt-bottom-right:hover .tt-txt {
  -webkit-transform: translate(0, 8px);
  -khtml-transform: translate(0, 8px);
  -moz-transform: translate(0, 8px);
  -ms-transform: translate(0, 8px);
  -o-transform: translate(0, 8px);
  transform: translate(0, 8px);
}
.tt-bottom-left .tt-txt {
  -webkit-transform: translate(-100%, 100%);
  -khtml-transform: translate(-100%, 100%);
  -moz-transform: translate(-100%, 100%);
  -ms-transform: translate(-100%, 100%);
  -o-transform: translate(-100%, 100%);
  transform: translate(-100%, 100%);
  margin-left: 12px;
}
.tt-bottom-left .tt-txt:before {
  left: auto;
  right: 6px;
}
.tt-bottom-left:hover .tt-txt {
  -webkit-transform: translate(-100%, 8px);
  -khtml-transform: translate(-100%, 8px);
  -moz-transform: translate(-100%, 8px);
  -ms-transform: translate(-100%, 8px);
  -o-transform: translate(-100%, 8px);
  transform: translate(-100%, 8px);
}
.tt-bottom-right .tt-txt {
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  margin-left: -12px;
}
.tt-bottom-right .tt-txt:before {
  left: 6px;
  right: auto;
}
.tt-bottom-right:hover .tt-txt {
  -webkit-transform: translate(0, 8px);
  -khtml-transform: translate(0, 8px);
  -moz-transform: translate(0, 8px);
  -ms-transform: translate(0, 8px);
  -o-transform: translate(0, 8px);
  transform: translate(0, 8px);
}
.field-checkbox .pu-error .tt-text {
  left: 0;
  right: auto;
}
.field-checkbox .pu-error .tt-text:before {
  left: 0;
  right: auto;
}
.checkout-payment .form-field {
  position: relative;
}
.checkout-payment .form-field .pu-error {
  position: absolute;
  bottom: 7px;
  left: auto;
  right: 10px;
}
.checkout-payment .form-field .pu-error .tt-text {
  min-width: 200px;
}
.pxl-cursor-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  user-select: none;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -khtml-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  transform-origin: center;
  color: #000;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s linear, opacity 0.2s linear;
  display: inline-block;
}
@media (max-width: 575px) {
  .pxl-cursor-icon {
    width: 18px;
    height: 18px;
    font-size: 17px;
  }
}
.pxl-cursor-icon .pxl-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.pxl-cursor-icon .pxl-icon:before, .pxl-cursor-icon .pxl-icon:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: var(--second-color);
  transform-origin: 50% 50%;
  opacity: 1;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
  transition: transform ease 0.25s;
}
.pxl-cursor-icon .pxl-icon:before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pxl-cursor-icon .pxl-icon:after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pxl-cursor-icon.active {
  position: fixed !important;
  opacity: 1;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.pxl-cursor-icon.hide {
  display: none;
}
.pxl-page-overlay .pxl-cursor-icon .pxl-icon:before, .pxl-page-overlay .pxl-cursor-icon .pxl-icon:after {
  background-color: #fff;
}
.pxl-hidden-template .pxl-cursor-icon .pxl-icon:before, .pxl-hidden-template .pxl-cursor-icon .pxl-icon:after {
  background-color: #fff;
}
.cursor-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1199px) {
  .cursor-img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .cursor-img {
    width: 80px;
    height: 80px;
  }
}
.cursor-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}
.cursor-media.active {
  opacity: 0.8;
}
.pxl-archive-post:not(.sticky) .pxli-thumbtack {
  display: none;
}
body:not(.theme-core) .post-tags-share {
  justify-content: flex-start;
}
body:not(.theme-core) .single-next-prev-nav .nav-label-wrap {
  margin-bottom: 0;
}
body:not(.theme-core) .single-next-prev-nav .nav-title-wrap {
  display: none;
}
body:not(.theme-core) th {
  font-weight: 500;
}
.post-password-form {
  position: relative;
}
.post-password-form input[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
}
.pxl-sidebar-area .wp-block-latest-comments li {
  margin-bottom: 13px;
}
.wp-block-button {
  margin-bottom: 20px;
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.wp-block-cover {
  color: #fff;
}
[class*="wp-block-"] {
  margin-bottom: 30px;
}
[class*="wp-block-"]:first-child {
  margin-top: 0;
}
[class*="wp-block-"]:last-child {
  margin-bottom: 0;
}
.wp-block-pages-list__item {
  margin-bottom: 0;
}
.pxl-sidebar-area [class*="wp-block-"] {
  margin-top: 0;
  margin-bottom: 0;
}
.pxl-sidebar-area [class*="wp-block-"]:first-child {
  margin-top: 0;
}
.pxl-sidebar-area [class*="wp-block-"]:last-child {
  margin-bottom: 0;
}
.pxl-sidebar-area .wp-block-latest-comments [class*="wp-block-"] {
  line-height: var(--body-line-height);
}
.pxl-sidebar-area .widget_block h2 {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 24px;
  position: relative;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-size: var(--heading-font-size-h5);
}
.pxl-sidebar-area .widget_block h2:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: 0;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: var(--primary-color);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.pxl-sidebar-area .widget_block ul {
  margin: 0;
}
.pxl-sidebar-area .widget_block li > a {
  padding: 7.5px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  font-family: var(--heading-font-family);
  font-size: 16px;
  line-height: 24px;
}
.pxl-sidebar-area .widget_block .wp-block-latest-posts__list {
  margin-bottom: 0;
}
.wp-block-group.has-background {
  padding: 15px 20px;
}
.wp-block-group .wp-block-button + * {
  padding-top: 15px;
}
.wp-block-rss {
  list-style: none;
}
.wp-block-table .has-fixed-layout {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.blocks-gallery-caption {
  margin-bottom: 30px;
}
.wp-caption.alignright {
  margin-bottom: 0 !important;
}
.wp-block-quote br {
  display: none;
}
.pxl-sidebar-area .wp-block-latest-comments li {
  margin-bottom: 20px;
}
.pxl-sidebar-area .wp-block-latest-comments li:last-child {
  margin-bottom: 0;
}
.pxl-sidebar-area .wp-block-latest-comments [class*="wp-block-"] {
  padding-top: 0;
  padding-bottom: 0;
}
.widget_block.widget_search {
  border: 0;
  padding: 0;
}
.wp-block-search__label {
  display: none;
}
.wp-block-search__inside-wrapper {
  position: relative;
}
.wp-block-search__inside-wrapper .wp-block-search__input {
  padding-right: 50px;
  background-color: transparent;
  border-color: rgba(25, 27, 29, 0.1);
}
.wp-block-search__inside-wrapper .wp-block-search__button {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 43px;
  height: 43px;
  line-height: 1;
  border-color: transparent;
  border-radius: 6px;
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wp-block-search__inside-wrapper .wp-block-search__button {
    top: 4px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
[dir="rtl"] .wp-block-search__inside-wrapper .wp-block-search__button {
  right: auto;
  left: 6px;
}
.wp-block-search__inside-wrapper .wp-block-search__button:not(.has-icon):before {
  content: "";
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  font-family: "pxli" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
}
.wp-block-search__inside-wrapper .wp-block-search__button:active, .wp-block-search__inside-wrapper .wp-block-search__button:hover, .wp-block-search__inside-wrapper .wp-block-search__button:focus {
  background-color: var(--primary-color);
  color: #fff;
}
.wp-block-search__inside-wrapper:active [type="submit"], .wp-block-search__inside-wrapper:hover [type="submit"], .wp-block-search__inside-wrapper:focus [type="submit"] {
  background-color: var(--primary-color);
  color: #fff;
}
ul.wp-block-archives {
  list-style: none;
}
blockquote a, .wp-block-quote a {
  color: var(--second-color);
}
blockquote a:hover, .wp-block-quote a:hover {
  color: #fff;
}
.gx-0 {
  column-gap: 0px;
}
.gy-0 {
  row-gap: 0px;
}
.row.gx-0 {
  --bs-gutter-x: 0px;
  column-gap: 0;
}
.gx-5 {
  column-gap: 5px;
}
.gy-5 {
  row-gap: 5px;
}
.row.gx-5 {
  --bs-gutter-x: 5px;
  column-gap: 0;
}
.gx-8 {
  column-gap: 8px;
}
.gy-8 {
  row-gap: 8px;
}
.row.gx-8 {
  --bs-gutter-x: 8px;
  column-gap: 0;
}
.gx-10 {
  column-gap: 10px;
}
.gy-10 {
  row-gap: 10px;
}
.row.gx-10 {
  --bs-gutter-x: 10px;
  column-gap: 0;
}
.gx-12 {
  column-gap: 12px;
}
.gy-12 {
  row-gap: 12px;
}
.row.gx-12 {
  --bs-gutter-x: 12px;
  column-gap: 0;
}
.gx-15 {
  column-gap: 15px;
}
.gy-15 {
  row-gap: 15px;
}
.row.gx-15 {
  --bs-gutter-x: 15px;
  column-gap: 0;
}
.gx-16 {
  column-gap: 16px;
}
.gy-16 {
  row-gap: 16px;
}
.row.gx-16 {
  --bs-gutter-x: 16px;
  column-gap: 0;
}
.gx-20 {
  column-gap: 20px;
}
.gy-20 {
  row-gap: 20px;
}
.row.gx-20 {
  --bs-gutter-x: 20px;
  column-gap: 0;
}
.gx-24 {
  column-gap: 24px;
}
.gy-24 {
  row-gap: 24px;
}
.row.gx-24 {
  --bs-gutter-x: 24px;
  column-gap: 0;
}
.gx-30 {
  column-gap: 30px;
}
.gy-30 {
  row-gap: 30px;
}
.row.gx-30 {
  --bs-gutter-x: 30px;
  column-gap: 0;
}
@media (max-width: 1599px) {
  .gx-xl-0 {
    column-gap: 0px;
  }
  .gy-xl-0 {
    row-gap: 0px;
  }
  .row.gx-xl-0 {
    --bs-gutter-x: 0px;
  }
  .gx-xl-5 {
    column-gap: 5px;
  }
  .gy-xl-5 {
    row-gap: 5px;
  }
  .row.gx-xl-5 {
    --bs-gutter-x: 5px;
  }
  .gx-xl-8 {
    column-gap: 8px;
  }
  .gy-xl-8 {
    row-gap: 8px;
  }
  .row.gx-xl-8 {
    --bs-gutter-x: 8px;
  }
  .gx-xl-10 {
    column-gap: 10px;
  }
  .gy-xl-10 {
    row-gap: 10px;
  }
  .row.gx-xl-10 {
    --bs-gutter-x: 10px;
  }
  .gx-xl-12 {
    column-gap: 12px;
  }
  .gy-xl-12 {
    row-gap: 12px;
  }
  .row.gx-xl-12 {
    --bs-gutter-x: 12px;
  }
  .gx-xl-15 {
    column-gap: 15px;
  }
  .gy-xl-15 {
    row-gap: 15px;
  }
  .row.gx-xl-15 {
    --bs-gutter-x: 15px;
  }
  .gx-xl-16 {
    column-gap: 16px;
  }
  .gy-xl-16 {
    row-gap: 16px;
  }
  .row.gx-xl-16 {
    --bs-gutter-x: 16px;
  }
  .gx-xl-20 {
    column-gap: 20px;
  }
  .gy-xl-20 {
    row-gap: 20px;
  }
  .row.gx-xl-20 {
    --bs-gutter-x: 20px;
  }
  .gx-xl-24 {
    column-gap: 24px;
  }
  .gy-xl-24 {
    row-gap: 24px;
  }
  .row.gx-xl-24 {
    --bs-gutter-x: 24px;
  }
  .gx-xl-30 {
    column-gap: 30px;
  }
  .gy-xl-30 {
    row-gap: 30px;
  }
  .row.gx-xl-30 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 1199px) {
  .gx-lg-0 {
    column-gap: 0px;
  }
  .gy-lg-0 {
    row-gap: 0px;
  }
  .row.gx-lg-0 {
    --bs-gutter-x: 0px;
  }
  .gx-lg-5 {
    column-gap: 5px;
  }
  .gy-lg-5 {
    row-gap: 5px;
  }
  .row.gx-lg-5 {
    --bs-gutter-x: 5px;
  }
  .gx-lg-8 {
    column-gap: 8px;
  }
  .gy-lg-8 {
    row-gap: 8px;
  }
  .row.gx-lg-8 {
    --bs-gutter-x: 8px;
  }
  .gx-lg-10 {
    column-gap: 10px;
  }
  .gy-lg-10 {
    row-gap: 10px;
  }
  .row.gx-lg-10 {
    --bs-gutter-x: 10px;
  }
  .gx-lg-12 {
    column-gap: 12px;
  }
  .gy-lg-12 {
    row-gap: 12px;
  }
  .row.gx-lg-12 {
    --bs-gutter-x: 12px;
  }
  .gx-lg-15 {
    column-gap: 15px;
  }
  .gy-lg-15 {
    row-gap: 15px;
  }
  .row.gx-lg-15 {
    --bs-gutter-x: 15px;
  }
  .gx-lg-16 {
    column-gap: 16px;
  }
  .gy-lg-16 {
    row-gap: 16px;
  }
  .row.gx-lg-16 {
    --bs-gutter-x: 16px;
  }
  .gx-lg-20 {
    column-gap: 20px;
  }
  .gy-lg-20 {
    row-gap: 20px;
  }
  .row.gx-lg-20 {
    --bs-gutter-x: 20px;
  }
  .gx-lg-24 {
    column-gap: 24px;
  }
  .gy-lg-24 {
    row-gap: 24px;
  }
  .row.gx-lg-24 {
    --bs-gutter-x: 24px;
  }
  .gx-lg-30 {
    column-gap: 30px;
  }
  .gy-lg-30 {
    row-gap: 30px;
  }
  .row.gx-lg-30 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 991px) {
  .gx-md-0 {
    column-gap: 0px;
  }
  .gy-md-0 {
    row-gap: 0px;
  }
  .row.gx-md-0 {
    --bs-gutter-x: 0px;
  }
  .gx-md-5 {
    column-gap: 5px;
  }
  .gy-md-5 {
    row-gap: 5px;
  }
  .row.gx-md-5 {
    --bs-gutter-x: 5px;
  }
  .gx-md-8 {
    column-gap: 8px;
  }
  .gy-md-8 {
    row-gap: 8px;
  }
  .row.gx-md-8 {
    --bs-gutter-x: 8px;
  }
  .gx-md-10 {
    column-gap: 10px;
  }
  .gy-md-10 {
    row-gap: 10px;
  }
  .row.gx-md-10 {
    --bs-gutter-x: 10px;
  }
  .gx-md-12 {
    column-gap: 12px;
  }
  .gy-md-12 {
    row-gap: 12px;
  }
  .row.gx-md-12 {
    --bs-gutter-x: 12px;
  }
  .gx-md-15 {
    column-gap: 15px;
  }
  .gy-md-15 {
    row-gap: 15px;
  }
  .row.gx-md-15 {
    --bs-gutter-x: 15px;
  }
  .gx-md-16 {
    column-gap: 16px;
  }
  .gy-md-16 {
    row-gap: 16px;
  }
  .row.gx-md-16 {
    --bs-gutter-x: 16px;
  }
  .gx-md-20 {
    column-gap: 20px;
  }
  .gy-md-20 {
    row-gap: 20px;
  }
  .row.gx-md-20 {
    --bs-gutter-x: 20px;
  }
  .gx-md-24 {
    column-gap: 24px;
  }
  .gy-md-24 {
    row-gap: 24px;
  }
  .row.gx-md-24 {
    --bs-gutter-x: 24px;
  }
  .gx-md-30 {
    column-gap: 30px;
  }
  .gy-md-30 {
    row-gap: 30px;
  }
  .row.gx-md-30 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 767px) {
  .gx-sm-0 {
    column-gap: 0px;
  }
  .gy-sm-0 {
    row-gap: 0px;
  }
  .row.gx-sm-0 {
    --bs-gutter-x: 0px;
  }
  .gx-sm-5 {
    column-gap: 5px;
  }
  .gy-sm-5 {
    row-gap: 5px;
  }
  .row.gx-sm-5 {
    --bs-gutter-x: 5px;
  }
  .gx-sm-8 {
    column-gap: 8px;
  }
  .gy-sm-8 {
    row-gap: 8px;
  }
  .row.gx-sm-8 {
    --bs-gutter-x: 8px;
  }
  .gx-sm-10 {
    column-gap: 10px;
  }
  .gy-sm-10 {
    row-gap: 10px;
  }
  .row.gx-sm-10 {
    --bs-gutter-x: 10px;
  }
  .gx-sm-12 {
    column-gap: 12px;
  }
  .gy-sm-12 {
    row-gap: 12px;
  }
  .row.gx-sm-12 {
    --bs-gutter-x: 12px;
  }
  .gx-sm-15 {
    column-gap: 15px;
  }
  .gy-sm-15 {
    row-gap: 15px;
  }
  .row.gx-sm-15 {
    --bs-gutter-x: 15px;
  }
  .gx-sm-16 {
    column-gap: 16px;
  }
  .gy-sm-16 {
    row-gap: 16px;
  }
  .row.gx-sm-16 {
    --bs-gutter-x: 16px;
  }
  .gx-sm-20 {
    column-gap: 20px;
  }
  .gy-sm-20 {
    row-gap: 20px;
  }
  .row.gx-sm-20 {
    --bs-gutter-x: 20px;
  }
  .gx-sm-24 {
    column-gap: 24px;
  }
  .gy-sm-24 {
    row-gap: 24px;
  }
  .row.gx-sm-24 {
    --bs-gutter-x: 24px;
  }
  .gx-sm-30 {
    column-gap: 30px;
  }
  .gy-sm-30 {
    row-gap: 30px;
  }
  .row.gx-sm-30 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 575px) {
  .gx-xs-0 {
    column-gap: 0px;
  }
  .gy-xs-0 {
    row-gap: 0px;
  }
  .row.gx-xs-0 {
    --bs-gutter-x: 0px;
  }
  .gx-xs-5 {
    column-gap: 5px;
  }
  .gy-xs-5 {
    row-gap: 5px;
  }
  .row.gx-xs-5 {
    --bs-gutter-x: 5px;
  }
  .gx-xs-8 {
    column-gap: 8px;
  }
  .gy-xs-8 {
    row-gap: 8px;
  }
  .row.gx-xs-8 {
    --bs-gutter-x: 8px;
  }
  .gx-xs-10 {
    column-gap: 10px;
  }
  .gy-xs-10 {
    row-gap: 10px;
  }
  .row.gx-xs-10 {
    --bs-gutter-x: 10px;
  }
  .gx-xs-12 {
    column-gap: 12px;
  }
  .gy-xs-12 {
    row-gap: 12px;
  }
  .row.gx-xs-12 {
    --bs-gutter-x: 12px;
  }
  .gx-xs-15 {
    column-gap: 15px;
  }
  .gy-xs-15 {
    row-gap: 15px;
  }
  .row.gx-xs-15 {
    --bs-gutter-x: 15px;
  }
  .gx-xs-16 {
    column-gap: 16px;
  }
  .gy-xs-16 {
    row-gap: 16px;
  }
  .row.gx-xs-16 {
    --bs-gutter-x: 16px;
  }
  .gx-xs-20 {
    column-gap: 20px;
  }
  .gy-xs-20 {
    row-gap: 20px;
  }
  .row.gx-xs-20 {
    --bs-gutter-x: 20px;
  }
  .gx-xs-24 {
    column-gap: 24px;
  }
  .gy-xs-24 {
    row-gap: 24px;
  }
  .row.gx-xs-24 {
    --bs-gutter-x: 24px;
  }
  .gx-xs-30 {
    column-gap: 30px;
  }
  .gy-xs-30 {
    row-gap: 30px;
  }
  .row.gx-xs-30 {
    --bs-gutter-x: 30px;
  }
}
.pxl-border-anm.bw-no {
  border-width: 0;
}
.pxl-border-anm.bw-yes {
  border-width: var(--bd-width);
}
@media (max-width: 1599px) {
  .pxl-border-anm.bw-laptop-no {
    border-width: 0;
  }
  .pxl-border-anm.bw-laptop-yes {
    border-width: var(--bd-width);
  }
}
@media (max-width: 1199px) {
  .pxl-border-anm.bw-tablet_extra-no {
    border-width: 0;
  }
  .pxl-border-anm.bw-tablet_extra-yes {
    border-width: var(--bd-width);
  }
}
@media (max-width: 991px) {
  .pxl-border-anm.bw-tablet-no {
    border-width: 0;
  }
  .pxl-border-anm.bw-tablet-yes {
    border-width: var(--bd-width);
  }
}
@media (max-width: 767px) {
  .pxl-border-anm.bw-mobile_extra-no {
    border-width: 0;
  }
  .pxl-border-anm.bw-mobile_extra-yes {
    border-width: var(--bd-width);
  }
}
@media (max-width: 575px) {
  .pxl-border-anm.bw-mobile-no {
    border-width: 0;
  }
  .pxl-border-anm.bw-mobile-yes {
    border-width: var(--bd-width);
  }
}
.video-bg-type-background .parallax-inner {
  background-image: var(--pxl-video-player-bg-url);
}
.video-bg-type-background .static-img {
  opacity: 0;
  visibility: hidden;
}
.video-bg-type-background-only .parallax-inner {
  background-image: var(--pxl-video-player-bg-url);
}
.video-bg-type-background-only .static-img {
  display: none;
}
@media (max-width: 1599px) {
  .video-bg-type-laptop-static .parallax-inner {
    background-image: none;
  }
  .video-bg-type-laptop-static .static-img {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .video-bg-type-laptop-background .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-laptop-background .static-img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .video-bg-type-laptop-background-only .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-laptop-background-only .static-img {
    display: none;
  }
}
@media (max-width: 1199px) {
  .video-bg-type-tablet_extra-static .parallax-inner {
    background-image: none;
  }
  .video-bg-type-tablet_extra-static .static-img {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .video-bg-type-tablet_extra-background .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-tablet_extra-background .static-img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .video-bg-type-tablet_extra-background-only .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-tablet_extra-background-only .static-img {
    display: none;
  }
}
@media (max-width: 991px) {
  .video-bg-type-tablet-static .parallax-inner {
    background-image: none;
  }
  .video-bg-type-tablet-static .static-img {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .video-bg-type-tablet-background .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-tablet-background .static-img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .video-bg-type-tablet-background-only .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-tablet-background-only .static-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .video-bg-type-mobile_extra-static .parallax-inner {
    background-image: none;
  }
  .video-bg-type-mobile_extra-static .static-img {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .video-bg-type-mobile_extra-background .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-mobile_extra-background .static-img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .video-bg-type-mobile_extra-background-only .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-mobile_extra-background-only .static-img {
    display: none;
  }
}
@media (max-width: 575px) {
  .video-bg-type-mobile-static .parallax-inner {
    background-image: none;
  }
  .video-bg-type-mobile-static .static-img {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .video-bg-type-mobile-background .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-mobile-background .static-img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .video-bg-type-mobile-background-only .parallax-inner {
    background-image: var(--pxl-video-player-bg-url);
  }
  .video-bg-type-mobile-background-only .static-img {
    display: none;
  }
}
.pxl-list-style .list-item {
  width: calc(var(--item-width) - ( var(--item-gap) / 2 ));
}
.pxl-icon-list--layout--inline .pxl-icon-list-wg {
  display: flex;
  flex-direction: row;
}
.pxl-icon-list--layout--traditional .pxl-icon-list-wg {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .pxl-icon-list--layout--laptop-inline .pxl-icon-list-wg {
    display: flex;
    flex-direction: row;
  }
  .pxl-icon-list--layout--laptop-traditional .pxl-icon-list-wg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .pxl-icon-list--layout--tablet_extra-inline .pxl-icon-list-wg {
    display: flex;
    flex-direction: row;
  }
  .pxl-icon-list--layout--tablet_extra-traditional .pxl-icon-list-wg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .pxl-icon-list--layout--tablet-inline .pxl-icon-list-wg {
    display: flex;
    flex-direction: row;
  }
  .pxl-icon-list--layout--tablet-traditional .pxl-icon-list-wg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .pxl-icon-list--layout--mobile_extra-inline .pxl-icon-list-wg {
    display: flex;
    flex-direction: row;
  }
  .pxl-icon-list--layout--mobile_extra-traditional .pxl-icon-list-wg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .pxl-icon-list--layout--mobile-inline .pxl-icon-list-wg {
    display: flex;
    flex-direction: row;
  }
  .pxl-icon-list--layout--mobile-traditional .pxl-icon-list-wg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
/*# sourceMappingURL=style.map */