﻿/** @format */

@import "https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&amp;family=Poppins:wght@200;300;400;500;600;700;800;900&amp;family=Roboto:wght@100;200;400;500;700&amp;display=swap";
:root {
  --pxs-ff-body: "Barlow", sans-serif;
  --pxs-ff-heading: "Barlow", serif;
  --pxs-ff-p: "Roboto", sans-serif;
  --pxs-ff-fontawesome: "Font Awesome 6 Free";
  --pxs-fw-normal: normal;
  --pxs-fw-thin: 100;
  --pxs-fw-elight: 200;
  --pxs-fw-light: 300;
  --pxs-fw-regular: 400;
  --pxs-fw-medium: 500;
  --pxs-fw-sbold: 600;
  --pxs-fw-bold: 700;
  --pxs-fw-ebold: 800;
  --pxs-fw-black: 900;
  --pxs-fs-body: 14px;
  --pxs-fs-p: 14px;
  --pxs-fs-h1: 48px;
  --pxs-fs-h2: 40px;
  --pxs-fs-h3: 24px;
  --pxs-fs-h4: 20px;
  --pxs-fs-h5: 16px;
  --pxs-fs-h6: 14px;
  --pxs-color-common-white: #ffffff;
  --pxs-color-common-white-light: #f4f5f6;
  --pxs-color-common-black: #000000;
  --pxs-color-common-black-2: #333;
  --pxs-color-heading-primary: #399f6e;
  --pxs-color-text-body: #1c1c1c;
  --pxs-color-theme-primary: #399f6e;
  --pxs-color-theme-secondary: #0d2f3f;
  --pxs-color-theme-bg-yellow: #ead65a;
  --pxs-color-theme-bg-yellow-2: #ffc62d;
  --pxs-color-theme-bg-green: #2e875c;
  --pxs-color-theme-bg-green-2: #1f7f7b;
  --pxs-color-theme-bg-red: #cc4026;
  --pxs-color-theme-bg-red-2: #f03d1b;
  --pxs-color-theme-bg-grey: #fffdf5;
  --pxs-color-theme-primary-half: rgba(57, 159, 110, 0.75);
  --pxs-color-grey-1: #c5c5c5;
  --pxs-color-grey-2: #665f73;
  --pxs-color-grey-3: #8a8a8a;
  --pxs-color-grey-4: #e1e1e1;
  --pxs-color-grey-5: #aec1db;
  --pxs-color-grey-6: #ddd;
  --pxs-color-grey-7: #767676;
  --pxs-color-grey-8: #fbfbfb;
  --pxs-color-grey-9: #777777;
  --pxs-color-border-1: #ededed;
  --pxs-color-border-2: rgba(28, 28, 28, 0.1);
  --pxs-color-ribbon-1: #b28200;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--pxs-ff-body);
  font-size: var(--pxs-fs-body);
  font-weight: normal;
  color: var(--pxs-color-text-body);
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pxs-ff-heading);
  color: var(--pxs-color-theme-secondary);
  margin-top: 0px;
  font-weight: var(--pxs-fw-sbold);
  line-height: 1.2;
}
h1 {
  font-size: var(--pxs-fs-h1);
}
h2 {
  font-size: var(--pxs-fs-h2);
}
h3 {
  font-size: var(--pxs-fs-h3);
}
h4 {
  font-size: var(--pxs-fs-h4);
}
h5 {
  font-size: var(--pxs-fs-h5);
}
h6 {
  font-size: var(--pxs-fs-h6);
}
ul {
  margin: 0px;
  padding: 0px;
}
p {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  font-weight: var(--pxs-fw-normal);
  color: var(--pxs-color-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: rgba(0, 0, 0, 0);
}
button:hover {
  cursor: pointer;
}
button:focus {
  outline: 0;
  border: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
input {
  outline: none;
}
input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}
*::-moz-selection {
  background: var(--pxs-color-common-black);
  color: var(--pxs-color-common-white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--pxs-color-common-black);
  color: var(--pxs-color-common-white);
  text-shadow: none;
}
::selection {
  background: var(--pxs-color-common-black);
  color: var(--pxs-color-common-white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--pxs-color-common-black);
  font-size: var(--pxs-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--pxs-color-common-black);
  font-size: var(--pxs-fs-body);
  opacity: 1;
}
.bg-grey {
  background-color: var(--pxs-color-theme-bg-grey);
}
.w-img img {
  width: 100%;
}
.m-img img {
  max-width: 100%;
}
img {
  max-width: 100%;
}
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.z-index-1 {
  z-index: 1;
}
.z-index-11 {
  z-index: 11;
}
.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.b-radius {
  border-radius: 6px;
}
.padding {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .padding {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .padding {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .sm-padding {
    padding: 15px;
  }
}
.padding-15 {
  padding: 15px !important;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.section-heading {
  margin-bottom: 70px;
  line-height: 1;
}
@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
.section-title {
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
}
.section-title:before {
  background-image: url("../img/shape/section-title-shape.png");
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  height: 22px;
  width: 273px;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-90 {
  margin-bottom: 90px;
}
.oh {
  overflow: hidden;
}
.ratings li {
  display: inline-flex;
}
.ratings li:not(:last-of-type) {
  margin-right: 10px;
}
.ratings li i {
  font-size: 20px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pxs-primary-btn {
  background: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
  font-family: var(--pxs-ff-primary);
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  padding: 15px 35px;
  letter-spacing: 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.pxs-primary-btn:hover {
  color: var(--pxs-color-common-white);
  opacity: 0.9;
}
@media (max-width: 767px) {
  .pxs-primary-btn {
    font-size: 15px;
    padding: 15px 25px;
  }
}
.pxs-primary-btn i {
  margin-left: 5px;
  transform: rotate(-45deg);
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--pxs-color-theme-primary);
}
.drp-buttons .btn-primary {
  background-color: var(--pxs-color-theme-primary);
  border-color: var(--pxs-color-theme-primary);
}
.header {
  width: 100%;
  border-bottom: 1px solid var(--pxs-color-border-2);
}
.header .top-bar {
  background-color: var(--pxs-color-theme-secondary);
  height: 58px;
  line-height: 58px;
}
.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header .top-bar .top-bar-inner {
    justify-content: center;
  }
}
.header .top-bar .top-bar-inner .top-left-content {
  list-style: none;
}
.header .top-bar .top-bar-inner .top-left-content .top-left-list {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media (max-width: 991px) {
  .header .top-bar .top-bar-inner .top-left-content .top-left-list {
    column-gap: 20px;
  }
}
.header .top-bar .top-bar-inner .top-left-content .top-left-list li {
  font-size: 13px;
}
.header .top-bar .top-bar-inner .top-left-content .top-left-list li a {
  color: var(--pxs-color-common-white);
  display: flex;
  align-items: center;
}
.header .top-bar .top-bar-inner .top-left-content .top-left-list li a i {
  color: var(--pxs-color-common-white);
  margin-right: 10px;
  font-size: 15px;
}
.header
  .top-bar
  .top-bar-inner
  .top-left-content
  .top-left-list
  li:nth-child(1)
  a
  i {
  font-size: 13px;
  margin-bottom: 2px;
}
.header .top-bar .top-right-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header .top-bar .top-right-content {
    display: none;
  }
}
.header .top-bar .top-right-content .top-right-list {
  display: flex;
  align-items: center;
}
.header .top-bar .top-right-content .top-right-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.header .top-bar .top-right-content .top-right-list li .nice-select {
  background-color: rgba(0, 0, 0, 0);
  color: var(--pxs-color-common-white);
  font-size: 13px;
  line-height: 42px;
  border: none;
  padding-left: 0px;
}
.header .top-bar .top-right-content .top-right-list li .nice-select .option {
  background-color: var(--pxs-color-theme-bg-yellow);
  color: var(--pxs-color-common-black);
}
.header
  .top-bar
  .top-right-content
  .top-right-list
  li
  .nice-select
  .option:hover {
  background-color: var(--pxs-color-theme-secondary);
  color: var(--pxs-color-common-white);
}
.header
  .top-bar
  .top-right-content
  .top-right-list
  li
  .nice-select
  .option.selected {
  font-weight: 600;
}
.header .top-bar .top-right-content .top-right-list li .nice-select:after {
  border-color: var(--pxs-color-theme-bg-yellow);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.header .top-bar .top-right-content .top-right-list li .top-social-list {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .header .top-bar .top-right-content .top-right-list li .top-social-list {
    display: none;
  }
}
.header .top-bar .top-right-content .top-right-list li .top-social-list li a {
  color: var(--pxs-color-common-white);
  font-size: 14px;
}
.header .top-bar .top-right-content .top-right-list li.usd {
  margin-right: 12px;
  position: relative;
}
.header .top-bar .top-right-content .top-right-list li.usd:before {
  background-color: var(--pxs-color-border-1);
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .top-bar .top-right-content .header-btn {
  margin-left: 20px;
  margin-bottom: 2px;
}
.header .top-bar .top-right-content .header-btn .pxs-header-btn {
  background-color: var(--pxs-color-theme-bg-yellow);
  font-family: var(--pxs-ff-heading);
  font-size: 17px;
  font-weight: 700;
  height: 58px;
  line-height: 58px;
  padding: 0 70px;
  display: block;
}
.header .top-bar .top-right-content .header-btn .pxs-header-btn:hover {
  color: var(--pxs-color-theme-secondary);
}
@media (max-width: 991px) {
  .header .top-bar .top-right-content .header-btn .pxs-header-btn {
    padding: 0 40px;
    font-size: 15px;
  }
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-logo img {
    max-width: 120px;
  }
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-menu-wrap {
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .header .primary-header-inner .header-menu-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 15px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a {
  color: var(--pxs-color-theme-primary);
}
.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  li.active
  ul
  li:hover {
  background-color: var(--pxs-color-theme-primary-half);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a {
  color: var(--pxs-color-common-black);
}
.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  li.active
  ul
  li
  a.active,
.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  li.active
  ul
  li
  a:hover {
  color: var(--pxs-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a {
  display: block;
  font-family: var(--pxs-ff-body);
  color: var(--pxs-color-common-black);
  font-size: 18px;
  padding: 27px 0;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  content: "";
  background-color: var(--pxs-color-common-white);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -10px;
  transform: skewX(30deg);
  transition: all 0.4s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  background-color: var(--pxs-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 81px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
  -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
  background-color: var(--pxs-color-theme-primary-half);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active {
  background-color: var(--pxs-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  color: var(--pxs-color-common-black);
  font-weight: 500;
  font-size: 15px;
  line-height: 45px;
  padding: 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
  padding-left: 10px;
  color: var(--pxs-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
  display: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown a {
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown a {
    padding-right: 15px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown ul li {
  margin: 0;
  padding-left: 20px;
}
.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .has-dropdown
  ul
  li
  a {
  padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown:after {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  content: "";
  color: var(--pxs-color-theme-primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .has-dropdown:hover:before {
  color: var(--pxs-color-theme-primary);
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-right {
    display: none;
  }
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
}
@media (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
.header .primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-right .header-right-item {
    line-height: 1;
  }
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .mobile-side-menu-toggle {
  color: var(--pxs-color-common-black);
  font-size: 20px;
}
.header .primary-header-inner .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box {
  display: flex;
  align-items: center;
  margin-left: 20px;
  column-gap: 15px;
}
@media (max-width: 991px) {
  .header
    .primary-header-inner
    .header-right
    .header-right-item
    .header-right-box {
    display: none;
  }
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box
  .doller {
  display: none;
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box
  .shop-icon {
  position: relative;
  display: none;
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box
  .shop-icon
  a {
  background-color: rgba(13, 47, 63, 0.09);
  color: var(--pxs-color-common-black);
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  display: block;
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box
  .shop-icon
  span {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  font-family: var(--pxs-ff-p);
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  display: block;
  position: absolute;
  top: -3px;
  right: -6px;
}
.header
  .primary-header-inner
  .header-right
  .header-right-item
  .header-right-box
  .header-author-thumb {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
  .header .primary-header-inner .header-right {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media (max-width: 991px) {
  .side-menu-icon {
    display: none;
  }
}
.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--pxs-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--pxs-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .side-menu-wrapper {
    display: none;
  }
}
.side-menu-content .side-menu-header {
  font-family: var(--pxs-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content
  .side-menu-item
  .side-menu-thumb-box
  .side-menu-info
  .side-menu-title {
  font-family: var(--pxs-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--pxs-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content
  .side-menu-item
  .side-menu-thumb-box
  .side-menu-info
  p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--pxs-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--pxs-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}
.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.html), auto;
}
@media (max-width: 991px) {
  .side-menu-overlay {
    display: none;
  }
}
.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99999;
}
.sticky-header-wrap.fixed {
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}
.sticky-header-wrap .header {
  background-color: var(--pxs-color-common-white);
  position: relative;
  top: 0;
}
.sticky-header-wrap .header .top-bar {
  display: none;
}
@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}
@media (max-width: 991px) {
  .mobile-side-menu {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    background-color: var(--pxs-color-theme-secondary);
    z-index: 100;
    padding: 80px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 40px;
    right: 40px;
    color: var(--pxs-color-common-white);
    font-size: 14px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pxs-color-grey-6);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
    top: 20px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--pxs-color-theme-primary);
    color: var(--pxs-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--pxs-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--pxs-color-common-white);
    font-family: var(--pxs-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-list li {
    font-size: 20px;
    color: var(--pxs-color-common-white);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-list li i {
    background-color: var(--pxs-color-theme-primary);
    font-size: 12px;
    color: var(--pxs-color-common-black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
  }
  .mobile-side-menu .side-menu-list li :last-child {
    margin-bottom: 0;
  }
  .mobile-side-menu .side-menu-social ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    list-style: none;
  }
  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--pxs-color-theme-bg-dark-deep);
    color: var(--pxs-color-theme-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--pxs-color-border-6);
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
  }
  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--pxs-color-theme-primary);
    color: var(--pxs-color-common-white);
  }
  .mobile-side-menu .mean-bar {
    background-color: rgba(0, 0, 0, 0);
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: rgba(0, 0, 0, 0);
    margin-top: 0;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    float: none;
    display: block;
    width: auto;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pxs-color-border-5);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--pxs-color-common-white);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    padding: 0;
    top: -14px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before,
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "";
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    a.mean-expand.mean-clicked:after {
    content: "";
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 40px;
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    ul
    li:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 18px;
    font-weight: 400;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.html), auto;
  }
}
#popup-search-box {
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  width: 100%;
  height: 100%;
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 30px 30px;
  padding-right: 80px;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #ddd;
  border: 1px solid #666;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.html), auto;
}
#popup-search-box .box-inner-wrap button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #444;
  font-size: 50px;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap button:hover {
  color: #ddd;
}
#popup-search-box .box-inner-wrap button:focus {
  outline: none;
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.popup-tags {
  position: relative;
  margin: 0 auto;
}
.signin-box.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.signin-box .modal-dialog {
  background-color: var(--pxs-color-common-white);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .signin-box .modal-dialog {
    max-width: 700px;
  }
}
.signin-box .modal-dialog .bg {
  background-image: url(../img/bg-img/sign-in-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .signin-box .modal-dialog .bg {
    width: 100%;
  }
}
.signin-box .modal-dialog .modal-content {
  background-color: rgba(0, 0, 0, 0);
}
.signin-box .modal-dialog .modal-content .modal-header {
  border-bottom: none;
}
@media (max-width: 991px) {
  .signin-box .modal-dialog .modal-content .modal-header .btn-close {
    background-color: #fff;
    margin: 20px;
  }
}
.signin-box .modal-dialog .modal-content .modal-body {
  padding-bottom: 60px;
}
.signin-carousel-wrapper {
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .signin-carousel-wrapper {
    margin-bottom: 40px;
  }
}
.signin-carousel-wrapper .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.2);
}
.signin-carousel-wrapper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--pxs-color-common-white);
}
.signin-item .signin-thumb {
  text-align: center;
  margin-bottom: 40px;
}
.signin-item .signin-left-content .title {
  font-size: 24px;
  color: var(--pxs-color-common-white);
  font-weight: 600;
}
.signin-item .signin-left-content p {
  font-family: var(--pxs-ff-p);
  font-size: 15px;
  font-weight: 400;
  color: var(--pxs-color-common-white);
}
.signin-form-box {
  background-color: var(--pxs-color-common-white);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 50px 70px 50px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
.signin-form-box .title {
  color: var(--pxs-color-common-black);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 15px;
}
.signin-form-box .account {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  margin-bottom: 30px;
}
.signin-form-box .account a {
  color: var(--pxs-color-theme-secondary);
  font-size: 13px;
  font-weight: 600;
}
.signin-form-box .signin-form .form-control {
  background-color: #dcdcdc;
  font-size: 12px;
  box-shadow: none;
  border: none;
  height: 45px;
  margin-bottom: 20px;
}
.signin-form-box .signin-form .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
  color: var(--pxs-color-theme-secondary);
}
.signin-form-box .signin-form .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
  color: var(--pxs-color-theme-secondary);
}
.signin-form-box .signin-form .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
  color: var(--pxs-color-theme-secondary);
}
.signin-form-box .signin-form .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
  color: var(--pxs-color-theme-secondary);
}
.signin-form-box .signin-form .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-secondary);
  font-weight: 600;
  height: 45px;
  width: 100%;
}
.signin-form-box .signup-btn-box .separator {
  text-align: center;
}
.signin-form-box .signup-btn-box .separator span {
  background-color: var(--pxs-color-common-white);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 35px 0;
  padding: 0 20px;
}
.signin-form-box .signup-btn-box .title-border {
  position: relative;
  z-index: 1;
}
.signin-form-box .signup-btn-box .title-border:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid var(--pxs-color-border-2);
  z-index: -1;
}
.signin-form-box .signup-btn-box .signup-btn {
  color: var(--pxs-color-theme-secondary);
  font-size: 16px;
  font-weight: 500;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  border: 1px solid var(--pxs-color-border-2);
  border-radius: 5px;
}
.signin-form-box .signup-btn-box .signup-btn.facebook {
  background-color: #4267b2;
  color: var(--pxs-color-common-white);
}
.signin-form-box .signup-btn-box .signup-btn.apple {
  background-color: var(--pxs-color-theme-secondary);
  color: var(--pxs-color-common-white);
}
.signin-form-box .signup-btn-box .signup-btn:not(:last-of-type) {
  margin-bottom: 20px;
}
.btn-warning-custom {
  background-color: #fc0;
  color: #000;
}
.sign-signup-section {
  padding: 100px 0;
  margin-bottom: 150px;
  background-color: #999;
  background-image: url("../img/bg-img/login-bg.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.sign-signup-section input[type="number"]::-webkit-outer-spin-button,
.sign-signup-section input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sign-signup-section input[type="number"] {
  -moz-appearance: textfield;
}
.sign-signup-section:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .otp-input {
    width: 40px;
    height: 40px;
  }
}
.form-signin {
  max-width: 400px;
  margin-left: auto;
  padding: 36px 32px 46px 32px;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 99;
  position: relative;
}
.form-signin .bg-line {
  transform: translateY(11px);
  border-color: #e5e7eb;
}
.form-signin .btn-facebook {
  background-color: #4267b2;
}
.form-signin .btn-apple {
  background-color: #0d2f3f;
}
.hero-section {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .hero-section {
    overflow: hidden;
  }
}
.hero-left {
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: relative;
}
.hero-left .hero-video-thumb {
  position: relative;
}
@media (max-width: 1399px) {
  .hero-left .hero-video-thumb {
    max-width: 330px;
  }
}
@media (max-width: 1399px) {
  .hero-left .hero-video-thumb {
    max-width: 355px;
  }
}
@media (max-width: 767px) {
  .hero-left .hero-video-thumb {
    max-width: 100%;
  }
}
.hero-left .hero-video-thumb:before {
  background-image: url(../img/shape/hero-shape.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  content: "";
  width: 360px;
  height: 285px;
  position: absolute;
  top: -70px;
  right: -100px;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-left .hero-video-thumb:before {
    top: -50px;
  }
}
.hero-left .hero-video-thumb .hero-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .hero-left .hero-video-thumb .hero-video-btn {
    top: 73%;
    left: 52%;
    z-index: 1;
  }
}
.hero-left .hero-video-thumb .hero-video-btn a {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-common-black);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation: ripple_white 2s linear infinite;
  animation: ripple_white 2s linear infinite;
}
.hero-left .hero-video-thumb .hero-video-btn a i {
  margin-left: 2px;
}
.hero-left .hero-thumb {
  position: absolute;
  right: 75px;
  bottom: -107px;
  text-align: center;
}
@media (max-width: 1399px) {
  .hero-left .hero-thumb {
    max-width: 230px;
    right: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-left .hero-thumb {
    max-width: 200px;
    bottom: -30px;
  }
}
@media (max-width: 991px) {
  .hero-left .hero-thumb {
    right: 100px;
  }
}
@media (max-width: 767px) {
  .hero-left .hero-thumb {
    right: 80px;
  }
}
.hero-left .hero-thumb img {
  border-radius: 10px;
}
.hero-left .hero-thumb .counter-item {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  height: 100px;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .hero-left .hero-thumb .counter-item {
    margin-bottom: 10px;
  }
}
.hero-left .hero-thumb .counter-item .plane {
  background-image: url(../img/images/plane.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  width: 129px;
  height: 90px;
  position: absolute;
  top: -33px;
  right: -74px;
  z-index: -1;
}
.hero-left .hero-thumb .counter-item .counter-content {
  padding-top: 25px;
}
.hero-left .hero-thumb .counter-item .counter-title {
  font-size: 24px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
.hero-left .hero-thumb .counter-item .counter-title .odometer-auto-theme {
  font-family: inherit;
}
.hero-left .hero-thumb .counter-item .package {
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
}
.hero-content .hero-title {
  font-weight: 700;
  max-width: 500px;
  width: 100%;
  line-height: 1.25em;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 991px) {
  .hero-content .hero-title {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hero-content .hero-title {
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.hero-content .hero-title span {
  color: var(--pxs-color-theme-primary);
  position: relative;
}
.hero-content .hero-title span:after {
  background-image: url(../img/shape/hero-title-shape-2.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 37px;
  width: 35px;
}
.hero-content .hero-title:before {
  background-image: url(../img/shape/hero-title-shape.png);
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  height: 20px;
  width: 235px;
}
.hero-content p {
  color: var(--pxs-color-grey-2);
  font-size: 18px;
  max-width: 450px;
  line-height: 1.8em;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hero-content p {
    margin-bottom: 30px;
  }
}
.hero-bottom {
  background-color: var(--pxs-color-theme-primary);
  padding: 50px 0 0 0;
}
@media (max-width: 767px) {
  .hero-bottom {
    padding-bottom: 30px;
  }
}
.hero-bottom .hero-author-info {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
@media (max-width: 1399px) {
  .hero-bottom .hero-author-info {
    column-gap: 15px;
  }
}
@media (max-width: 991px) {
  .hero-bottom .hero-author-info {
    margin-bottom: 30px;
  }
}
.hero-bottom .hero-author-info .author-list {
  display: flex;
  align-items: center;
}
.hero-bottom .hero-author-info .author-list li:not(:first-of-type) {
  margin-left: -15px;
}
.hero-bottom .hero-author-info .author-list li img {
  height: 50px;
  width: 50px;
}
.hero-bottom .hero-author-info .author {
  color: var(--pxs-color-common-white);
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  font-weight: 500;
}
.hero-bottom .hero-author-info span {
  color: var(--pxs-color-common-white);
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.hero-bottom .hero-author-info span i {
  color: var(--pxs-color-theme-bg-yellow-2);
  line-height: 1;
  font-size: 14px;
  margin-right: 5px;
}
.hero-bottom .hero-items {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-bottom .hero-items {
    margin-bottom: 30px;
  }
}
.hero-bottom .hero-items .hero-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .hero-bottom .hero-items .hero-item {
    column-gap: 10px;
  }
}
.hero-bottom .hero-items .hero-item i {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-theme-primary);
  font-size: 20px;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
}
.hero-bottom .hero-items .hero-item .number {
  color: var(--pxs-color-common-white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero-bottom .hero-items .hero-item .number {
    font-size: 20px;
  }
}
.hero-bottom .hero-items .hero-item .number span {
  display: block;
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hero-bottom .hero-items .hero-item .number span {
    font-size: 11px;
    margin-top: 5px;
  }
}
.hero-bottom .hero-items .hero-item:nth-child(1) {
  margin-right: 35px;
  padding-right: 35px;
  border-right: 1px solid var(--pxs-color-common-white);
}
.hero-bottom .hero-box {
  background-color: var(--pxs-color-common-white);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  margin-top: 35px;
  transform: translateY(50px);
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1199px) {
  .hero-bottom .hero-box {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .hero-bottom .hero-box {
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
    transform: translateY(0px);
    margin: 30px 0 1cqw 0;
  }
}
@media (max-width: 767px) {
  .hero-bottom .hero-box .box-item {
    width: 100%;
  }
}
.hero-bottom .hero-box .box-item .box-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.hero-bottom .hero-box .box-item:not(:last-of-type) {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid var(--pxs-color-border-2);
}
@media (max-width: 991px) {
  .hero-bottom .hero-box .box-item:not(:last-of-type) {
    margin-right: 20px;
    padding-right: 20px;
    border-right: none;
  }
}
@media (max-width: 767px) {
  .hero-bottom .hero-box .box-item:not(:last-of-type) {
    margin-right: 0px;
    padding-right: 0px;
  }
}
.hero-bottom .hero-box .box-item .form-control {
  width: 150px;
  border: none;
  border-bottom: 1px solid var(--pxs-color-border-2);
  padding-left: 0;
}
@media (max-width: 991px) {
  .hero-bottom .hero-box .box-item .form-control {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .hero-bottom .hero-box .box-item .form-control {
    width: 100%;
  }
}
.hero-bottom .hero-box .box-item .form-control:focus {
  box-shadow: none;
}
.hero-bottom .hero-box .box-item .form-control.nice-select {
  height: inherit;
  line-height: inherit;
}
.hero-bottom .hero-box .box-item .form-control.nice-select:after {
  border-color: var(--pxs-color-theme-primary);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.hero-bottom .hero-box .box-item .form-control.nice-select .option {
  padding-left: 20px;
}
.hero-bottom .hero-box .box-item.date-input .form-control {
  width: 200px;
}
@-webkit-keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08),
      0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08),
      0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
  }
}
@keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
  }
}
.promo-section {
  padding-top: 150px;
}
@media (max-width: 991px) {
  .promo-section {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .promo-section {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.promo-item {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
@media (max-width: 991px) {
  .promo-item {
    flex-direction: column;
    align-items: baseline;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .promo-item {
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .promo-item .promo-icon {
    height: 60px;
    width: 60px;
  }
}
.promo-item .promo-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
.promo-item .promo-content p {
  max-width: 250px;
}
.promo-item .promo-content p:last-child {
  margin-bottom: 0;
}
.event-section {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .event-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .event-section {
    padding-bottom: 30px;
  }
}
.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .event-top {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .event-top {
    flex-direction: column;
    row-gap: 60px;
    margin-bottom: 30px;
    align-items: baseline;
  }
}
.event-top .section-heading {
  margin-bottom: 0;
}
.event-top .section-heading .section-title {
  margin-bottom: 0;
}
.event-carousel-wrap {
  position: relative;
}
.event-carousel-wrap .event-carousel {
  padding: 10px 10px 20px 10px;
}
.swiper-arrow .swiper-nav {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  z-index: 1;
}
.swiper-arrow .swiper-prev {
  left: auto;
  right: -10px;
}
@media (max-width: 767px) {
  .swiper-arrow {
    display: none;
  }
}
.event-item .event-thumb {
  position: relative;
  border-radius: 5px 5px 0 0;
}
.event-item .event-thumb .event-img {
  overflow: hidden;
}
.event-item .event-thumb .event-img img {
  width: 100%;
}
.event-item .event-thumb .event-text {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  line-height: 1;
}
.event-item .event-thumb .event-text.feature {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  padding: 0 45px;
  border-radius: 0 0 10px 0;
  margin-left: -7px;
}
.event-item .event-thumb .event-text.feature:before {
  position: absolute;
  content: "";
  background-color: var(--pxs-color-ribbon-1);
  height: 10px;
  width: 10px;
  bottom: -4px;
  left: 2px;
  transform: rotate(-45deg);
  z-index: -1;
}
.event-item .event-thumb .event-text.trending {
  top: 50%;
}
.event-item .event-thumb .event-text.new {
  height: 115px;
  width: 115px;
  position: absolute;
  right: -8px;
  top: -8px;
  left: auto;
  overflow: hidden;
}
.event-item .event-thumb .event-text.new span {
  background: var(--pxs-color-theme-bg-red);
  color: #fff;
  transform: rotate(45deg);
  position: absolute;
  right: -35px;
  top: 15px;
  padding: 10px;
  min-width: 127px;
  text-align: center;
}
.event-item .event-thumb .event-text.new span:before {
  width: 0;
  height: 0;
  border-left: 7px solid rgba(0, 0, 0, 0);
  border-right: 7px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid var(--pxs-color-theme-bg-red);
  position: absolute;
  left: -2px;
  right: 0;
  bottom: 0;
  content: "";
  top: 30px;
  transform: rotate(-45deg);
  z-index: -1;
}
.event-item .event-thumb .event-text.new span:after {
  width: 0;
  height: 0;
  border-top: 7px solid rgba(0, 0, 0, 0);
  border-left: 10px solid var(--pxs-color-theme-bg-red);
  border-bottom: 7px solid rgba(0, 0, 0, 0);
  position: absolute;
  left: 88%;
  right: 0;
  top: 28px;
  bottom: 0;
  content: "";
  transform: rotate(-45deg);
  z-index: -1;
}
.event-item .event-content-wrap {
  background-color: var(--pxs-color-common-white);
  padding: 25px;
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
}
.event-item .event-content-wrap .event-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-grey-4);
}
.event-item
  .event-content-wrap
  .event-content
  .event-content-left
  .event-title {
  color: var(--pxs-color-theme-secondary);
  font-weight: 600;
}
@media (max-width: 991px) {
  .event-item
    .event-content-wrap
    .event-content
    .event-content-left
    .event-title {
    font-size: 18px;
  }
}
.event-item
  .event-content-wrap
  .event-content
  .event-content-left
  .event-title
  a {
  transition: all 0.3s ease-in-out;
}
.event-item
  .event-content-wrap
  .event-content
  .event-content-left
  .event-title
  a:hover {
  color: var(--pxs-color-theme-primary);
}
.event-item .event-content-wrap .event-content .event-content-left .activity {
  line-height: 1;
  margin-bottom: 0;
}
.event-item
  .event-content-wrap
  .event-content
  .event-content-left
  .activity
  span {
  color: var(--pxs-color-grey-3);
  font-weight: 400;
  font-size: 14px;
}
.event-item
  .event-content-wrap
  .event-content
  .event-content-left
  .activity
  span:nth-child(1) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--pxs-color-grey-4);
}
.event-item .event-content-wrap .event-content .event-content-right {
  font-size: 24px;
}
.event-item .event-content-wrap .event-list {
  list-style: none;
  margin-bottom: 30px;
}
.event-item .event-content-wrap .event-list li {
  font-size: 16px;
  color: var(--pxs-color-common-black);
  display: inline-flex;
  align-items: center;
}
.event-item .event-content-wrap .event-list li:not(:last-of-type) {
  margin-right: 30px;
}
.event-item .event-content-wrap .event-list li i {
  line-height: 1;
}
.event-item .event-content-wrap .event-list li span {
  line-height: 1;
  margin-left: 10px;
}
.event-item .event-content-wrap .event-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-item .event-content-wrap .event-price-wrap .price {
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.event-item .event-content-wrap .event-price-wrap .price span {
  color: var(--pxs-color-theme-bg-red);
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
  text-decoration: line-through;
}
.event-item:hover .event-thumb img {
  transform: scale(1.1);
}
.see-more-btn {
  color: var(--pxs-color-theme-primary);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
}
.see-more-btn:hover {
  color: var(--pxs-color-theme-primary);
}
.see-more-btn i {
  font-size: 22px;
}
.offer-carousel-wrap {
  position: relative;
}
.offer-carousel-wrap .swiper-arrow .swiper-nav {
  left: -20px;
}
.offer-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
  left: auto;
  right: -20px;
}
.offer-item {
  position: relative;
}
.offer-item .offer-shape {
  background-image: url(../img/images/offer-discount.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  width: 137px;
  height: 150px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.offer-item .discount-box {
  position: absolute;
  bottom: 15px;
  right: 12px;
}
.offer-item .discount-box .discount {
  color: var(--pxs-color-theme-secondary);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  display: inline-block;
}
.offer-item .discount-box .discount span {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.offer-item .offer-content {
  position: absolute;
  top: 20px;
  left: 35px;
}
.offer-item .offer-content .offer-text {
  background-image: url(../img/images/offer-text-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 29px;
  width: 99px;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: var(--pxs-color-common-black);
  line-height: 29px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.offer-item .offer-content .offer-title {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: var(--pxs-color-common-white);
  font-weight: 400;
}
.offer-item .offer-content .offer-desc {
  color: var(--pxs-color-common-white);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 13px;
}
.offer-item .offer-content .places {
  font-family: "Roboto", sans-serif;
  color: var(--pxs-color-common-white);
  font-size: 16px;
  font-weight: 400;
}
.travel-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .travel-section {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .travel-section {
    padding-bottom: 40px;
  }
}
.travel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .travel-top .section-heading {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .travel-top {
    flex-direction: column;
    align-items: baseline;
    row-gap: 80px;
    margin-bottom: 30px;
  }
}
.travel-top .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.travel-top .swiper-nav {
  background-color: rgba(0, 0, 0, 0);
  color: var(--pxs-color-theme-primary);
  border: 1px solid var(--pxs-color-grey-4);
  position: inherit;
  height: 50px;
  width: 50px;
  line-height: 50px;
  transition: all 0.3s ease-in-out;
}
.travel-top .swiper-nav:hover {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.travel-carousel {
  padding: 90px 10px 10px 10px;
}
.travel-item {
  background-color: var(--pxs-color-common-white);
  padding: 120px 15px 30px 15px;
  position: relative;
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
}
.travel-item .travel-thumb {
  height: 180px;
  width: 180px;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 25px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.travel-item .travel-thumb img {
  border-radius: 50%;
}
.travel-item .travel-content .travel-title {
  color: var(--pxs-color-common-black);
  font-weight: 700;
  margin-bottom: 15px;
}
.travel-item .travel-content .travel-title a {
  color: var(--pxs-color-common-black);
}
.travel-item .travel-content p {
  color: var(--pxs-color-common-black);
  font-weight: 400;
  margin-bottom: 20px;
}
.testimonial-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .testimonial-section {
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding-bottom: 25px;
  }
}
.testimonial-section .testi-bg {
  background-image: url(../img/bg-img/bubble-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 1120px;
  height: 100%;
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonial-section .testi-bg {
    display: none;
  }
}
.testimonial-section .swiper-arrow {
  position: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  padding-top: 65px;
}
.testimonial-section .swiper-arrow .swiper-nav {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--pxs-color-theme-primary);
  color: var(--pxs-color-theme-primary);
  position: inherit;
  height: 45px;
  width: 45px;
  line-height: 43px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .swiper-arrow .swiper-nav:hover {
  background-color: var(--pxs-color-theme-primary);
  border: 1px solid var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.testi-wrap {
  position: relative;
}
.testi-wrap .testi-img {
  background-image: url(../img/testi/testi-img-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 35%;
  left: 22%;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .testi-wrap .testi-img {
    left: 10%;
  }
}
@media (max-width: 767px) {
  .testi-wrap .testi-img {
    display: none;
  }
}
.testi-wrap .testi-img.img-2 {
  background-image: url(../img/testi/testi-img-3.png);
  background-position: top right;
  left: auto;
  right: 22%;
}
@media (max-width: 991px) {
  .testi-wrap .testi-img.img-2 {
    right: 10%;
  }
}
.testi-thumb {
  width: 168px;
  margin: 0 auto;
  margin-bottom: 35px;
}
.testi-thumb img {
  border-radius: 50%;
}
.testi-item .testi-title {
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.testi-item .testi-title:before {
  background-image: url(../img/shape/testi-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  content: "";
  height: 9px;
  width: 241px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.testi-item .ratings {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .testi-item .ratings {
    margin-bottom: 10px;
  }
}
.testi-item .ratings li i {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.testi-item p {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .testi-item p {
    padding: 0 15px;
  }
}
.testi-item p:before {
  background-image: url(../img/testi/quote-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  content: "";
  height: 25px;
  width: 32px;
  position: absolute;
  top: -25px;
  left: -15px;
}
@media (max-width: 767px) {
  .testi-item p:before {
    display: none;
  }
}
.testi-item p:after {
  background-image: url(../img/testi/quote-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  content: "";
  height: 25px;
  width: 32px;
  position: absolute;
  bottom: 0;
  right: -15px;
}
@media (max-width: 767px) {
  .testi-item p:after {
    display: none;
  }
}
.subscribe-section {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .subscribe-section {
    height: auto;
    border-bottom: 1px solid var(--pxs-color-border-2);
  }
}
.subscribe-section .subscribe-bg {
  background-image: url(../img/bg-img/subscribe-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .subscribe-section .subscribe-bg {
    display: none;
  }
}
.subscribe-video-btn {
  position: absolute;
  left: 22.5%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .subscribe-video-btn {
    display: none;
  }
}
.subscribe-video-btn .video-btn a {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-theme-secondary);
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation: ripple_white 2s linear infinite;
  animation: ripple_white 2s linear infinite;
}
.subscribe-content .subscribe-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 35px;
  position: relative;
}
@media (max-width: 767px) {
  .subscribe-content .subscribe-title {
    font-size: 32px;
  }
}
.subscribe-content .subscribe-title:before {
  background-image: url(../img/shape/subscribe-shape.png);
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  height: 22px;
  width: 196px;
}
.subscribe-content .subscribe-title span {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}
.subscribe-content p {
  max-width: 500px;
  margin-bottom: 30px;
}
.subscribe-content .subscribe-form {
  position: relative;
  width: 470px;
}
@media (max-width: 991px) {
  .subscribe-content .subscribe-form {
    width: 100%;
  }
}
.subscribe-content .subscribe-form .form-control {
  background-color: var(--pxs-color-common-white);
  border: none;
  height: 55px;
  border-radius: 5px;
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
}
.subscribe-content .subscribe-form .form-control:focus {
  border: none;
}
.subscribe-content .subscribe-form .pxs-primary-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 55px;
}
.subscribe-content .subscribe-form .pxs-primary-btn i {
  transform: rotate(0deg);
}
@keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
  }
}
.blog-page-header .header-content {
  padding: 65px 0;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.blog-page-header .header-content .blog-page-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
.blog-page-header .header-content .blog-page-title span {
  position: relative;
  padding: 5px 10px 10px 10px;
  z-index: 1;
}
.blog-page-header .header-content .blog-page-title span:before {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0px, 0px) skew(-4deg, 0deg) rotate(-2deg);
  border-radius: 4px;
  z-index: -1;
}
.blog-page-header .header-content p {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.blog-section {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .blog-section {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding-bottom: 20px;
  }
}
.blog-section:before {
  background-color: var(--pxs-color-common-white);
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.blog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .blog-top {
    flex-direction: column;
    align-items: baseline;
  }
}
.blog-top .see-more-btn {
  margin-bottom: 30px;
}
.post-card {
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  border-radius: 15px 15px 0 0;
}
@media (max-width: 991px) {
  .post-card {
    margin-bottom: 30px;
  }
}
.post-card .post-thumb {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.post-card:hover .post-thumb img {
  transform: scale(1.05);
}
.post-card .post-content {
  background-color: var(--pxs-color-common-white);
  padding: 25px;
}
.post-card .post-content .post-title {
  max-width: 420px;
  width: 100%;
  margin: 20px 0;
}
.post-card .post-content .post-title a {
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .post-title a:hover {
  color: var(--pxs-color-theme-primary);
}
@media (max-width: 991px) {
  .post-card .post-content .post-title {
    font-size: 22px;
  }
}
.post-card .post-content p {
  margin-bottom: 30px;
}
.post-card .post-content p:last-child {
  margin-bottom: 0;
}
.post-card .post-content .post-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card .post-content .post-box .post-author {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.post-card .post-content .post-box .post-author .post-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.post-card .post-content .post-box .post-author .post-name span {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-3);
  font-weight: 500;
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-top: 7px;
}
.post-card .post-content .post-box .read-more-btn {
  color: var(--pxs-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
}
.post-card .post-content .post-box .read-more-btn:hover {
  color: var(--pxs-color-theme-primary);
}
.post-card .post-content .post-box .read-more-btn i {
  font-size: 18px;
  transform: rotate(-45deg);
}
.post-meta {
  column-gap: 30px;
}
.post-meta li {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  font-weight: 400;
}
.post-meta li i {
  color: var(--pxs-color-theme-primary);
  font-size: 15px;
  margin-right: 8px;
}
.blog-inner {
  padding: 70px 0 45px 0;
  position: relative;
  z-index: 1;
}
.blog-inner:before {
  background-color: var(--pxs-color-theme-bg-grey);
  content: "";
  width: 100%;
  height: 43%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.blog-inner .post-card {
  margin-bottom: 25px;
}
.blog-details-wrap {
  margin-bottom: 55px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
@media (max-width: 991px) {
  .blog-wrapper {
    margin-bottom: 40px;
  }
}
.blog-wrapper .pxs-blog .blog-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-wrapper .pxs-blog .blog-author-box {
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
  }
}
.blog-wrapper .pxs-blog .blog-author-box .author-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-wrapper .pxs-blog .blog-author-box .author-info .author-name {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.blog-wrapper .pxs-blog .blog-author-box .author-info .author-name span {
  color: var(--pxs-color-grey-7);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-top: 5px;
}
.blog-wrapper .pxs-blog .blog-author-box .author-social {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.blog-wrapper .pxs-blog .blog-author-box .author-social .author-link {
  font-size: 14px;
  color: var(--pxs-color-common-black);
  font-weight: 500;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  border: 1px solid var(--pxs-color-theme-bg-green-2);
}
.blog-wrapper .pxs-blog .blog-author-box .author-social .author-link i {
  color: var(--pxs-color-theme-bg-green-2);
}
.blog-wrapper .pxs-blog .blog-author-box .author-social ul li {
  display: inline-flex;
}
.blog-wrapper
  .pxs-blog
  .blog-author-box
  .author-social
  ul
  li:not(:last-of-type) {
  margin-right: 15px;
}
.blog-wrapper .pxs-blog .blog-author-box .author-social ul li a {
  font-size: 24px;
  color: var(--pxs-color-theme-bg-green-2);
  transition: all 0.3s ease-in-out;
}
.blog-wrapper .pxs-blog .blog-author-box .author-social ul li a:hover {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.blog-wrapper .pxs-blog .blog-details-thumb {
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-wrapper .pxs-blog .pxs-blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-wrapper .pxs-blog p {
  line-height: 30px;
  color: var(--pxs-color-common-black-2);
}
.blog-wrapper .pxs-blog .desc {
  font-family: var(--pxs-ff-body);
  font-style: italic;
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
  margin-bottom: 0;
  border-left: 3px solid var(--pxs-color-theme-bg-yellow-2);
  padding: 5px 0;
  margin: 30px 0;
  padding-left: 20px;
}
.blog-wrapper .pxs-blog .blog-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .blog-wrapper .pxs-blog .blog-img-wrap {
    flex-direction: column;
    row-gap: 20px;
  }
}
.sidebar-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.sidebar-item .search-box {
  padding: 40px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
.sidebar-item .search-box .search-form {
  position: relative;
}
.sidebar-item .search-box .search-form .form-control {
  background-color: rgba(0, 0, 0, 0);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  height: 50px;
  padding-left: 20px;
  border: 1px solid var(--pxs-color-grey-6);
  padding-right: 40px;
}
.sidebar-item
  .search-box
  .search-form
  .form-control::-webkit-input-placeholder {
  color: var(--pxs-color-grey-10);
  font-size: 16px;
  font-weight: 500;
}
.sidebar-item .search-box .search-form .form-control:-moz-placeholder {
  color: var(--pxs-color-grey-10);
  font-size: 16px;
  font-weight: 500;
}
.sidebar-item .search-box .search-form .form-control::-moz-placeholder {
  color: var(--pxs-color-grey-10);
  font-size: 16px;
  font-weight: 500;
}
.sidebar-item .search-box .search-form .form-control:-ms-input-placeholder {
  color: var(--pxs-color-grey-10);
  font-size: 16px;
  font-weight: 500;
}
.sidebar-item .search-box .search-form .search-btn {
  background-color: var(--pxs-color-theme-bg-green-2);
  color: var(--pxs-color-common-white);
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  font-size: 15px;
}
.sidebar-item .sidebar-title {
  color: var(--pxs-color-theme-bg-green-2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  margin-bottom: 50px;
}
.sidebar-item .sidebar-title:before {
  background-color: var(--pxs-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.sidebar-item .thumb-post li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.sidebar-item .thumb-post li .thumb-post-info .thumb-post-title {
  font-size: 16px;
  font-family: var(--pxs-ff-p);
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  margin-bottom: 10px;
}
.sidebar-item .thumb-post li .thumb-post-info .thumb-post-title a {
  transition: all 0.3s ease-in-out;
}
.sidebar-item .thumb-post li .thumb-post-info .thumb-post-title a:hover {
  color: var(--pxs-color-theme-primary);
}
.sidebar-item .thumb-post li .thumb-post-info .date {
  font-size: 16px;
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
}
.sidebar-item .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-item .category-list li a {
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.sidebar-item .category-list li a:hover {
  color: var(--pxs-color-theme-primary);
}
.sidebar-item .category-list li span {
  font-size: 16px;
  color: var(--pxs-color-theme-primary);
}
.sidebar-item .category-list li:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.sidebar-item .archive-list li {
  font-size: 14px;
  font-family: var(--pxs-ff-p);
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.sidebar-item .search-box.box-2 .search-btn {
  width: inherit;
  padding: 0 20px;
}
.sidebar-item .tags li {
  display: inline-flex;
}
.sidebar-item .tags li a {
  background-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  padding: 0 17px;
  line-height: 30px;
  margin: 0 10px 10px 0;
  border: 1px solid var(--pxs-color-grey-9);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.sidebar-item .tags li a:hover {
  background-color: var(--pxs-color-theme-bg-green-2);
  color: var(--pxs-color-common-white);
  border: 1px solid var(--pxs-color-theme-bg-green-2);
}
.page-header {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 200px;
  position: relative;
}
.search-filter-items {
  background-color: var(--pxs-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 13px;
  padding: 30px;
  border-radius: 7px;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .search-filter-items {
    max-width: 800px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .search-filter-items {
    flex-direction: column;
    align-items: baseline;
    row-gap: 20px;
    bottom: -180px;
  }
}
.search-filter-items .search-filter-item {
  position: relative;
  border-radius: 7px;
}
.search-filter-items .search-filter-item .form-design {
  height: inherit;
  font-size: 14px;
  line-height: inherit;
  padding: 30px 20px 10px 45px;
  width: 380px;
  border: 1px solid var(--pxs-color-grey-5);
}
@media (max-width: 991px) {
  .search-filter-items .search-filter-item .form-design {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .search-filter-items .search-filter-item .form-design {
    width: 350px;
  }
}
.search-filter-items .search-filter-item .form-design.nice-select:after {
  border-color: var(--pxs-color-theme-secondary);
  height: 8px;
  width: 8px;
  margin-top: -5px;
  right: 20px;
}
.search-filter-items .search-filter-item .form-design.nice-select .list li {
  font-size: 16px;
}
.search-filter-items .search-filter-item .form-design.form-control {
  box-shadow: none;
}
.search-filter-items .search-filter-item .form-design.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--pxs-color-grey-2);
}
.search-filter-items .search-filter-item .search-filter-header {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 13px;
  left: 45px;
  z-index: 1;
}
.search-filter-items .search-filter-item .search-filter-icon {
  color: var(--pxs-color-theme-primary);
  font-size: 18px;
  position: absolute;
  top: 20px;
  left: 18px;
  line-height: 1;
  z-index: 1;
}
.search-filter-items .search-filter-item:nth-child(2) .search-filter-header {
  left: 55px;
}
.search-filter-items .search-filter-item:nth-child(2) .form-design {
  padding-left: 55px;
}
.search-filter-items .search-filter-item .pxs-primary-btn {
  height: 60px;
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
.search-filter-items .search-filter-item .pxs-primary-btn i {
  margin-right: 10px;
  transform: rotate(0);
  margin-left: 0;
}
@media (max-width: 767px) {
  .search-filter-items .search-filter-item .pxs-primary-btn {
    width: 350px;
    text-align: center;
  }
}
.event-listing-section {
  padding-top: 130px;
}
@media (max-width: 991px) {
  .event-listing-section {
    padding-top: 110px;
  }
}
@media (max-width: 767px) {
  .event-listing-section {
    padding-top: 230px;
  }
}
.listing-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
@media (max-width: 991px) {
  .listing-top {
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
  }
}
.listing-top .listing-top-left .listing-top-title {
  line-height: 1;
  margin-bottom: 20px;
}
.listing-top .listing-top-left span {
  color: var(--pxs-color-common-black);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  display: block;
  line-height: 1;
}
.listing-top .listing-top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 17px;
}
.listing-top .listing-top-right .right-item .event-select {
  height: 40px;
  line-height: 38px;
  border: 1px solid var(--pxs-color-border-2);
}
.listing-top .listing-top-right .right-item .event-select span {
  font-size: 15px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
}
.listing-top .listing-top-right .right-item .event-select:after {
  border-color: var(--pxs-color-theme-secondary);
  height: 6px;
  width: 6px;
  margin-top: -3px;
}
.listing-top .listing-top-right .right-item .listing-top-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-secondary);
  display: block;
  font-size: 15px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (max-width: 767px) {
  .listing-top .listing-top-right .right-item .listing-top-btn {
    margin-top: 20px;
  }
}
.event-sidebar {
  padding: 30px 20px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .event-sidebar {
    margin-bottom: 60px;
  }
}
.event-sidebar .event-sidebar-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-border-2);
  margin-bottom: 30px;
}
.event-sidebar .event-sidebar-item .event-sidebar-title {
  color: var(--pxs-color-common-black);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-border-2);
}
.event-sidebar .event-sidebar-item .check-box-wrap .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.event-sidebar .event-sidebar-item .check-box-wrap .form-item:last-child {
  margin-bottom: 0;
}
.event-sidebar .event-sidebar-item .check-box-wrap .form-item .form-left {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.event-sidebar
  .event-sidebar-item
  .check-box-wrap
  .form-item
  .form-left
  .form-check-input {
  box-shadow: none;
  border: 1px solid var(--pxs-color-common-black);
  border-radius: 2px;
  margin-bottom: 3px;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.event-sidebar
  .event-sidebar-item
  .check-box-wrap
  .form-item
  .form-left
  .form-check-input:checked {
  background-color: var(--pxs-color-theme-bg-green);
  border: 1px solid var(--pxs-color-theme-bg-green);
  border: none;
}
.event-sidebar
  .event-sidebar-item
  .check-box-wrap
  .form-item
  .form-left
  .form-check-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.event-sidebar .event-sidebar-item .check-box-wrap .form-item .form-right span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s all ease-in-out;
}
.event-sidebar
  .event-sidebar-item
  .check-box-wrap
  .form-item:hover
  .form-check-label {
  color: var(--pxs-color-theme-bg-green);
}
.event-sidebar
  .event-sidebar-item
  .check-box-wrap
  .form-item:hover
  .form-right
  span {
  color: var(--pxs-color-theme-bg-green);
}
.event-sidebar .event-sidebar-item .filter-box .filter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content h3 {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  font-weight: 500;
  color: var(--pxs-color-theme-secondary);
  margin-bottom: 0;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content .reset {
  font-size: 16px;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content .reset a {
  color: var(--pxs-color-grey-3);
}
.event-sidebar .event-sidebar-item .filter-box .filter-content .line {
  position: relative;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content .line:before {
  background-color: var(--pxs-color-grey-3);
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 0;
  border-radius: 10px;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content.info {
  margin-bottom: 20px;
}
.event-sidebar .event-sidebar-item .filter-box .filter-content.info h3 {
  font-size: 15px;
  font-weight: 600;
}
.event-sidebar .event-sidebar-item .filter-box .range-slider input {
  background-color: var(--pxs-color-grey-6);
  width: 100%;
  height: 6px;
  border-radius: 30px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.event-sidebar
  .event-sidebar-item
  .filter-box
  .range-slider
  input::-webkit-slider-thumb {
  background: var(--pxs-color-theme-bg-green);
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.event-sidebar
  .event-sidebar-item
  .filter-box
  .range-slider
  input::-moz-range-thumb {
  background: var(--pxs-color-theme-bg-green);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.event-sidebar
  .event-sidebar-item
  .filter-box
  .range-slider
  .range-slider-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.event-sidebar
  .event-sidebar-item
  .filter-box
  .range-slider
  .range-slider-output
  .price {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0;
}
.event-sidebar .event-sidebar-item .event-rating-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .event-sidebar .event-sidebar-item .event-rating-btn {
    justify-content: flex-start;
    column-gap: 20px;
  }
}
.event-sidebar .event-sidebar-item .event-rating-btn .rating-btn-item {
  position: relative;
  cursor: pointer;
}
.event-sidebar .event-sidebar-item .event-rating-btn .rating-btn-item input {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.event-sidebar
  .event-sidebar-item
  .event-rating-btn
  .rating-btn-item
  label
  span {
  background-color: var(--pxs-color-grey-4);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pxs-color-grey-7);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
}
.event-sidebar
  .event-sidebar-item
  .event-rating-btn
  .rating-btn-item
  input:checked
  + label
  span {
  background-color: var(--pxs-color-theme-bg-yellow-2);
}
.event-sidebar .event-sidebar-item.item-2 {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.event-listing-items .event-listing-item {
  display: grid;
  grid-template-columns: 1fr 60%;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .event-listing-items .event-listing-item {
    grid-template-columns: 1fr;
  }
}
.event-listing-items .event-listing-item .event-listing-carousel {
  width: 100%;
  padding-left: 5px;
}
.event-listing-items
  .event-listing-item
  .event-listing-carousel
  .event-listing-thumb {
  position: relative;
}
.event-listing-items
  .event-listing-item
  .event-listing-carousel
  .event-listing-thumb
  img {
  width: 100%;
}
.event-listing-items
  .event-listing-item
  .event-listing-carousel
  .event-listing-thumb
  .event-text {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  line-height: 1;
}
.event-listing-items
  .event-listing-item
  .event-listing-carousel
  .event-listing-thumb
  .event-text.feature {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  padding: 0 45px;
  border-radius: 0 0 10px 0;
  margin-left: -7px;
}
.event-listing-items
  .event-listing-item
  .event-listing-carousel
  .event-listing-thumb
  .event-text.feature:before {
  position: absolute;
  content: "";
  background-color: var(--pxs-color-ribbon-1);
  height: 10px;
  width: 10px;
  bottom: -4px;
  left: 2px;
  transform: rotate(-45deg);
  z-index: -1;
}
.event-listing-items .event-listing-item .event-listing-content {
  padding: 39px 30px 41px 30px;
  border: 1px solid var(--pxs-color-grey-4);
}
@media (max-width: 991px) {
  .event-listing-items .event-listing-item .event-listing-content {
    margin-left: 5px;
  }
}
.event-listing-items .event-listing-item .event-listing-content .post-meta {
  margin-bottom: 20px;
}
.event-listing-items .event-listing-item .event-listing-content .post-meta li {
  line-height: 1;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-listing-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.event-listing-items .event-listing-item .event-listing-content p {
  max-width: 400px;
  width: 100%;
}
.event-listing-items .event-listing-item .event-listing-content .event-list {
  list-style: none;
  margin-bottom: 15px;
}
.event-listing-items .event-listing-item .event-listing-content .event-list li {
  font-size: 16px;
  color: var(--pxs-color-common-black);
  display: inline-flex;
  align-items: center;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-list
  li:not(:last-of-type) {
  margin-right: 30px;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-list
  li
  i {
  line-height: 1;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-list
  li
  span {
  line-height: 1;
  margin-left: 10px;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-price-wrap
  .price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-price-wrap
  .price
  span {
  color: var(--pxs-color-theme-bg-red-2);
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
  text-decoration: line-through;
}
.event-listing-items
  .event-listing-item
  .event-listing-content
  .event-price-wrap
  .pxs-primary-btn
  i {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.event-listing-items .event-pagination {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.event-listing-items .event-pagination .arrow a {
  background-color: var(--pxs-color-grey-4);
  color: var(--pxs-color-theme-primary);
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: block;
}
.event-listing-items .event-pagination .pagination-list {
  background-color: var(--pxs-color-grey-4);
  border-radius: 5px;
}
.event-listing-items .event-pagination .pagination-list li {
  display: inline-flex;
}
.event-listing-items .event-pagination .pagination-list li button {
  font-size: 15px;
  font-weight: 500;
  color: var(--pxs-color-common-black);
  font-family: var(--pxs-ff-p);
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.event-listing-items .event-pagination .pagination-list li button:hover {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.event-listing-items .event-pagination .pagination-list li.active button {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.top-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 25px;
}
.top-btn a {
  color: var(--pxs-color-common-black);
  font-family: var(--pxs-ff-p);
  font-size: 14px;
  height: 30px;
  line-height: 25px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  column-gap: 7px;
  border: 1px solid var(--pxs-color-border-2);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.top-btn a:hover {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.top-btn a i {
  font-size: 12px;
}
@media (max-width: 991px) {
  .event-details-left {
    margin-bottom: 40px;
  }
}
.event-details-left .event-details-thumb {
  position: relative;
  margin-bottom: 30px;
}
.event-details-left .event-details-thumb img {
  border-radius: 10px;
}
.event-details-left .event-details-thumb .see-all-btn {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-common-black);
  font-family: var(--pxs-ff-p);
  font-weight: 600;
  height: 40px;
  line-height: 39px;
  padding: 2px 20px 0 20px;
  border-radius: 90px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.event-details-left .event-details-carousel-wrap {
  position: relative;
  margin-bottom: 40px;
}
.event-details-left
  .event-details-carousel-wrap
  .event-details-carousel
  .event-details-item {
  position: relative;
}
.event-details-left
  .event-details-carousel-wrap
  .event-details-carousel
  .event-details-item
  .event-carousel-thumb
  img {
  border-radius: 10px;
}
.event-details-left
  .event-details-carousel-wrap
  .event-details-carousel
  .event-details-item
  a {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-theme-primary);
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .event-details-left
    .event-details-carousel-wrap
    .event-details-carousel
    .event-details-item
    a {
    transform: translate(-50%, -50%) scale(1);
  }
}
.event-details-left
  .event-details-carousel-wrap
  .event-details-carousel
  .event-details-item:hover
  a {
  transform: translate(-50%, -50%) scale(1);
}
.event-details-left .event-details-carousel-wrap .swiper-arrow .swiper-nav {
  background-color: var(--pxs-color-theme-bg-green);
  left: -20px;
}
.event-details-left
  .event-details-carousel-wrap
  .swiper-arrow
  .swiper-nav.swiper-prev {
  left: auto;
  right: -20px;
}
.event-details-left .event-details-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
@media (max-width: 767px) {
  .event-details-left .event-details-content {
    flex-direction: column;
    row-gap: 30px;
  }
}
.event-details-left
  .event-details-content
  .details-left-content
  .details-content-title {
  color: var(--pxs-color-common-black);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  max-width: 450px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .event-details-left
    .event-details-content
    .details-left-content
    .details-content-title {
    font-size: 26px;
  }
}
.event-details-left .event-details-content .details-left-content ul li {
  color: var(--pxs-color-common-black);
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
}
.event-details-left
  .event-details-content
  .details-left-content
  ul
  li:not(:last-of-type) {
  margin-right: 20px;
}
.event-details-left .event-details-content .details-left-content ul li i {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.event-details-left
  .event-details-content
  .details-left-content
  ul
  li:nth-child(2)
  i {
  color: var(--pxs-color-common-black);
}
.event-details-left .event-details-content .details-left-content ul li span {
  color: var(--pxs-color-grey-2);
  font-size: 16px;
  font-weight: 400;
}
.event-details-left .event-details-content .details-right-content ul {
  margin-top: 8px;
}
.event-details-left .event-details-content .details-right-content ul li {
  display: inline-flex;
}
.event-details-left
  .event-details-content
  .details-right-content
  ul
  li:not(:last-of-type) {
  margin-right: 15px;
}
.event-details-left .event-details-content .details-right-content ul li a {
  font-size: 22px;
  color: var(--pxs-color-theme-primary);
}
.event-details-left .event-schedule {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-left .event-schedule .schedule-title {
  line-height: 1;
  margin-bottom: 30px;
}
.event-details-left .event-schedule .schedule-list {
  display: flex;
  align-items: center;
  column-gap: 45px;
}
@media (max-width: 767px) {
  .event-details-left .event-schedule .schedule-list {
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
  }
}
.event-details-left .event-schedule .schedule-list li {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.event-details-left .event-schedule .schedule-list li i {
  font-size: 30px;
}
.event-details-left .event-schedule .schedule-list li .list-title {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.event-details-left .event-schedule .schedule-list li .list-title span {
  color: var(--pxs-color-theme-bg-green-2);
  font-size: 16px;
  display: block;
  margin-top: 5px;
}
.event-details-left .event-nav-wrap {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-left .event-nav-wrap.wrap-2 {
  margin-bottom: 60px;
}
.event-details-left .event-nav-wrap .tab-navigation {
  column-gap: 40px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-left .event-nav-wrap .tab-navigation li button {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  transition: 0.5s;
}
.event-details-left .event-nav-wrap .tab-navigation li button:before {
  background-color: var(--pxs-color-theme-secondary);
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 0;
  height: 3px;
  transition: 0.5s;
  opacity: 0;
  border-radius: 30px;
}
.event-details-left .event-nav-wrap .tab-navigation li button.active {
  font-weight: 600;
}
.event-details-left .event-nav-wrap .tab-navigation li button.active:before {
  opacity: 1;
  width: 100%;
}
.event-details-left .event-nav-wrap .tab-content .tab-pane {
  font-size: 16px;
  color: var(--pxs-color-common-black);
  font-family: var(--pxs-ff-p);
  line-height: 28px;
  max-width: 780px;
  width: 100%;
}
.event-details-left .event-wrap-map {
  margin-bottom: 50px;
  overflow: hidden;
}
.event-details-left .event-wrap-map .event-map-title {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
  position: relative;
}
.event-details-left .event-wrap-map .event-map-title:before {
  background-color: var(--pxs-color-theme-secondary);
  content: "";
  width: 120px;
  height: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  border-radius: 20px;
}
.event-details-left .event-wrap-map .nav {
  box-shadow: 1px 7px 14px -3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -3px rgba(0, 0, 0, 0.3);
}
.event-details-left .event-wrap-map .nav .nav-link {
  height: 106.6666666667px;
  width: 110px;
  text-align: center;
  border-radius: 0;
}
.event-details-left .event-wrap-map .nav .nav-link .tab-info i {
  color: var(--pxs-color-theme-bg-green-2);
  font-size: 25px;
  margin-bottom: 10px;
}
.event-details-left .event-wrap-map .nav .nav-link .tab-info span {
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.event-details-left .event-wrap-map .nav .nav-link.active {
  background-color: var(--pxs-color-theme-bg-green-2);
}
.event-details-left .event-wrap-map .nav .nav-link.active .tab-info i {
  color: var(--pxs-color-common-white);
}
.event-details-left .event-wrap-map .nav .nav-link.active .tab-info span {
  color: var(--pxs-color-common-white);
}
.event-details-left .event-wrap-map .tab-content {
  padding-left: 0;
}
.event-details-left .event-wrap-map .tab-content .mapouter {
  width: 100%;
}
.event-details-left .comments-area {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .event-details-left .comments-area {
    margin-bottom: 30px;
  }
}
.event-details-left .comments-area .comment-header {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}
.event-details-left .comments-area .comment-item {
  display: grid;
  grid-template-columns: 60px 1fr;
}
@media (max-width: 767px) {
  .event-details-left .comments-area .comment-item {
    grid-template-columns: 1fr;
  }
}
.event-details-left .comments-area .comment-item:not(:last-of-type) {
  margin-bottom: 45px;
}
.event-details-left .comments-area .comment-item .comment-thumb {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .event-details-left .comments-area .comment-item .comment-thumb {
    margin-bottom: 20px;
  }
}
.event-details-left .comments-area .comment-item .comment-thumb img {
  border-radius: 50%;
}
.event-details-left .comments-area .comment-item .comment-content {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .event-details-left .comments-area .comment-item .comment-content {
    margin-left: 0;
  }
}
.event-details-left .comments-area .comment-item .comment-content .comment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.event-details-left
  .comments-area
  .comment-item
  .comment-content
  .comment-top
  .comment-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.event-details-left
  .comments-area
  .comment-item
  .comment-content
  .comment-top
  .date {
  font-family: var(--pxs-ff-p);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.event-details-left
  .comments-area
  .comment-item
  .comment-content
  .comment-top
  .date
  span {
  color: var(--pxs-color-theme-primary);
}
.event-details-left .comments-area .comment-item .comment-content p:last-child {
  margin-bottom: 0;
}
.event-details-left .event-form .form-header {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
}
.event-details-left .event-form p {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .event-details-left .event-form p {
    margin-bottom: 30px;
  }
}
.event-details-left .event-form .form-group .form-control {
  border: none;
  font-weight: 400;
  line-height: 1;
  padding-left: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
  border-radius: 0;
  margin-bottom: 50px;
  box-shadow: none;
}
.event-details-left
  .event-form
  .form-group
  .form-control::-webkit-input-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-details-left .event-form .form-group .form-control:-moz-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-details-left .event-form .form-group .form-control::-moz-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-details-left
  .event-form
  .form-group
  .form-control:-ms-input-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-details-left .event-form .form-group .form-control.address {
  border: 1px solid var(--pxs-color-grey-6);
  padding: 30px;
  height: 310px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.event-details-left .event-form .form-check {
  margin-bottom: 40px;
}
.event-details-left .event-form .form-check .form-check-input {
  box-shadow: none;
  border-color: var(--pxs-color-theme-primary);
}
.event-details-left .event-form .form-check .form-check-input:checked {
  border-color: var(--pxs-color-theme-primary);
  background-color: var(--pxs-color-theme-primary);
}
.event-details-left .event-form .form-check label {
  font-family: var(--pxs-ff-p);
  text-transform: uppercase;
}
.event-details-left .event-form .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-common-black);
  font-weight: 500;
}
.comments-area {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .comments-area {
    margin-bottom: 30px;
  }
}
.comments-area .comment-header {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}
.comments-area .comment-item {
  display: grid;
  grid-template-columns: 60px 1fr;
}
@media (max-width: 767px) {
  .comments-area .comment-item {
    grid-template-columns: 1fr;
  }
}
.comments-area .comment-item:not(:last-of-type) {
  margin-bottom: 45px;
}
.comments-area .comment-item .comment-thumb {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .comments-area .comment-item .comment-thumb {
    margin-bottom: 20px;
  }
}
.comments-area .comment-item .comment-thumb img {
  border-radius: 50%;
}
.comments-area .comment-item .comment-content {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .comments-area .comment-item .comment-content {
    margin-left: 0;
  }
}
.comments-area .comment-item .comment-content .comment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.comments-area .comment-item .comment-content .comment-top .comment-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.comments-area .comment-item .comment-content .comment-top .date {
  font-family: var(--pxs-ff-p);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.comments-area .comment-item .comment-content .comment-top .date span {
  color: var(--pxs-color-theme-primary);
}
.comments-area .comment-item .comment-content p:last-child {
  margin-bottom: 0;
}
.event-form .form-header {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
}
.event-form p {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .event-form p {
    margin-bottom: 30px;
  }
}
.event-form .form-group .form-control {
  border: none;
  font-weight: 400;
  line-height: 1;
  padding-left: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
  border-radius: 0;
  margin-bottom: 50px;
  box-shadow: none;
}
.event-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-form .form-group .form-control:-moz-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-form .form-group .form-control::-moz-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-form .form-group .form-control:-ms-input-placeholder {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
.event-form .form-group .form-control.address {
  border: 1px solid var(--pxs-color-grey-6);
  padding: 30px;
  height: 310px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.event-form .form-check {
  margin-bottom: 40px;
}
.event-form .form-check .form-check-input {
  box-shadow: none;
  border-color: var(--pxs-color-theme-primary);
}
.event-form .form-check .form-check-input:checked {
  border-color: var(--pxs-color-theme-primary);
  background-color: var(--pxs-color-theme-primary);
}
.event-form .form-check label {
  font-family: var(--pxs-ff-p);
  text-transform: uppercase;
  cursor: pointer;
}
.event-form .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-common-black);
  font-weight: 500;
}
.event-details-right {
  margin-bottom: 60px;
}
.event-details-right .event-banner {
  background-color: var(--pxs-color-theme-primary);
  padding: 30px;
  border-radius: 12px 12px 0 0;
}
.event-details-right .event-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-details-right .event-banner .banner-content .banner-title {
  color: var(--pxs-color-common-white);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
.event-details-right .event-banner .banner-content .banner-title span {
  font-size: 16px;
  font-weight: 400;
}
.event-details-right .event-banner .banner-content .discount {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  font-size: 15px;
  padding: 5px 20px;
  border-radius: 40px;
  margin-bottom: 0;
}
.event-details-right .event-sidebar {
  padding: 30px;
  border-radius: 0 0 12px 12px;
}
.event-details-right .event-sidebar .schedule-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-right .event-sidebar .schedule-box > div {
  padding: 15px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 5px;
}
.event-details-right .event-sidebar .schedule-box > div .top-content {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.event-details-right .event-sidebar .schedule-box > div .date {
  font-size: 14px;
  color: var(--pxs-color-grey-7);
  font-weight: 400;
  margin-bottom: 0;
}
.event-details-right .event-sidebar .schedule-box > div .date span {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
}
.event-details-right .event-sidebar .schedule-box > div .date .weekday {
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  font-weight: 500;
}
.event-details-right .event-sidebar .ticket-info {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-right .event-sidebar .ticket-info .ticket-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-details-right
  .event-sidebar
  .ticket-info
  .ticket-item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-right .event-sidebar .ticket-info .ticket-item .ticket-title {
  font-size: 18px;
  color: var(--pxs-color-common-black);
  font-weight: 600;
  margin-bottom: 0;
}
.event-details-right
  .event-sidebar
  .ticket-info
  .ticket-item
  .ticket-title
  span {
  display: block;
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-2);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin-top: 10px;
}
.event-details-right .event-sidebar .ticket-info .ticket-item .number {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.event-details-right
  .event-sidebar
  .ticket-info
  .ticket-item
  .number
  .text-design {
  font-size: 25px;
  height: 35px;
  width: 35px;
  line-height: 31px;
  text-align: center;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 50%;
  display: block;
  cursor: pointer;
}
.event-details-right .event-sidebar .ticket-info .ticket-item .number input {
  font-size: 18px;
  height: 35px;
  width: 35px;
  line-height: 31px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--pxs-color-grey-6);
}
.event-details-right .event-sidebar .sidebar-service {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.event-details-right .event-sidebar .sidebar-service .sidebar-service-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.event-details-right .event-sidebar .sidebar-service .sidebar-service-info h3 {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  font-weight: 600;
  color: var(--pxs-color-theme-secondary);
  margin-bottom: 0px;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .sidebar-service-info
  .line {
  position: relative;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .sidebar-service-info
  .line:before {
  background-color: var(--pxs-color-common-black);
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 0;
  border-radius: 10px;
}
.event-details-right .event-sidebar .sidebar-service .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.event-details-right .event-sidebar .sidebar-service .form-item:last-child {
  margin-bottom: 0;
}
.event-details-right .event-sidebar .sidebar-service .form-item .form-left {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item
  .form-left
  .form-check-input {
  box-shadow: none;
  border: 1px solid var(--pxs-color-common-black);
  border-radius: 2px;
  margin-bottom: 3px;
  height: 18px;
  width: 18px;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item
  .form-left
  .form-check-input:checked {
  background-color: var(--pxs-color-theme-bg-green);
  border: 1px solid var(--pxs-color-theme-bg-green);
  border: none;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item
  .form-left
  .form-check-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item
  .form-right
  span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s all ease-in-out;
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item:hover
  .form-check-label {
  color: var(--pxs-color-theme-bg-green);
}
.event-details-right
  .event-sidebar
  .sidebar-service
  .form-item:hover
  .form-right
  span {
  color: var(--pxs-color-theme-bg-green);
}
.event-details-right .event-sidebar .promo-code {
  margin-bottom: 30px;
}
.event-details-right .event-sidebar .promo-code .promo-title {
  font-size: 18px;
  color: var(--pxs-color-common-black);
  margin-bottom: 20px;
  line-height: 1;
}
.event-details-right .event-sidebar .promo-code .promo-code-box {
  position: relative;
}
.event-details-right .event-sidebar .promo-code .promo-code-box .form-control {
  padding: 15px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 5px;
}
.event-details-right
  .event-sidebar
  .promo-code
  .promo-code-box
  .form-control:focus {
  box-shadow: none;
}
.event-details-right
  .event-sidebar
  .promo-code
  .promo-code-box
  .promo-code-btn {
  background-color: var(--pxs-color-theme-secondary);
  color: var(--pxs-color-common-white);
  font-size: 12px;
  font-weight: 400;
  height: 30px;
  line-height: 28px;
  padding: 0 20px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.event-details-right .event-sidebar .price-box {
  margin-bottom: 50px;
}
.event-details-right .event-sidebar .price-box .price-title {
  font-size: 18px;
  color: var(--pxs-color-common-black);
  margin-bottom: 20px;
  line-height: 1;
}
.event-details-right .event-sidebar .price-box .price-list {
  background-color: var(--pxs-color-common-white-light);
  padding: 20px;
  border-radius: 8px;
}
.event-details-right .event-sidebar .price-box .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-details-right
  .event-sidebar
  .price-box
  .price-list
  li:not(:last-of-type) {
  margin-bottom: 25px;
}
.event-details-right .event-sidebar .price-box .price-list li span {
  color: var(--pxs-color-common-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.event-details-right .event-sidebar .payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.event-details-right .event-sidebar .payment .payment-title {
  color: var(--pxs-color-common-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
.event-details-right .event-sidebar .event-sidebar-btn .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-common-black);
  font-weight: 500;
  width: 100%;
}
.event-details-right .event-sidebar .event-sidebar-btn span {
  font-size: 14px;
  font-weight: 500;
  color: var(--pxs-color-common-black);
  display: block;
  margin-top: 20px;
  line-height: 1;
}
.event-sidebar-tour .tour-header {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
}
.event-sidebar-tour .tour-item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
.event-sidebar-tour .tour-item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .event-sidebar-tour .tour-item {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .event-sidebar-tour .tour-item {
    width: 100%;
  }
}
.event-sidebar-tour .tour-item .tour-content .tour-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.event-sidebar-tour .tour-item .tour-content ul {
  margin-bottom: 10px;
}
.event-sidebar-tour .tour-item .tour-content ul li {
  color: var(--pxs-color-common-black);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
}
.event-sidebar-tour .tour-item .tour-content ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.event-sidebar-tour .tour-item .tour-content ul li i {
  color: var(--pxs-color-theme-bg-yellow-2);
  width: 20px;
}
.event-sidebar-tour .tour-item .tour-content ul li:nth-child(2) i {
  color: var(--pxs-color-theme-bg-green-2);
  margin-left: 3px;
  width: 17px;
}
.event-sidebar-tour .tour-item .tour-content ul li:nth-child(2) span {
  color: var(--pxs-color-common-black);
}
.event-sidebar-tour .tour-item .tour-content ul li span {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-2);
  font-size: 14px;
  font-weight: 400;
}
.event-sidebar-tour .tour-item .tour-content .price {
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}
.event-sidebar-tour .tour-item .tour-content .price:before {
  background-image: url(../img/shape/tour-shape.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  content: "";
  width: 52px;
  height: 7px;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.event-sidebar-tour .tour-item .tour-content .price span {
  color: var(--pxs-color-theme-bg-red-2);
  text-decoration: line-through;
  font-size: 11px;
  font-weight: 400;
  margin-left: 5px;
}
.project-section {
  padding-top: 0;
}
.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .project-top .section-heading {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .project-top {
    flex-direction: column;
    align-items: baseline;
    row-gap: 80px;
    margin-bottom: 30px;
  }
}
.project-top .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.project-top .swiper-nav {
  background-color: rgba(0, 0, 0, 0);
  color: var(--pxs-color-theme-primary);
  border: 1px solid var(--pxs-color-grey-4);
  position: inherit;
  height: 50px;
  width: 50px;
  line-height: 50px;
  transition: all 0.3s ease-in-out;
}
.project-top .swiper-nav:hover {
  background-color: var(--pxs-color-theme-primary);
  color: var(--pxs-color-common-white);
}
.project-wrap {
  height: 525px;
}
@media (max-width: 767px) {
  .project-wrap {
    height: auto;
  }
}
.project-wrap.wrap-3 .project-box,
.project-wrap.wrap-1 .project-box {
  height: 250px;
}
@media (max-width: 767px) {
  .project-wrap.wrap-3 .project-box,
  .project-wrap.wrap-1 .project-box {
    height: auto;
  }
}
.project-wrap.wrap-3 .project-box:first-child,
.project-wrap.wrap-1 .project-box:first-child {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .project-wrap.wrap-2,
  .project-wrap.wrap-1 {
    margin-bottom: 25px;
  }
}
.project-box {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.project-box:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, #112437 80%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.project-box .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.project-box .rating {
  background-color: var(--pxs-color-common-white);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
  margin-bottom: 0;
  padding: 5px 10px;
  border-radius: 14px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.project-box .rating i {
  font-size: 12px;
  color: var(--pxs-color-theme-bg-yellow-2);
}
.project-box .project-content {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
}
.project-box .project-content h4 {
  margin-bottom: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.project-box .project-content .project-title {
  font-size: 24px;
  color: var(--pxs-color-common-white);
  font-weight: 500;
  line-height: 1;
}
.project-box .project-content span {
  color: var(--pxs-color-common-white);
  line-height: 1;
}
@media (max-width: 767px) {
  .project-carousel {
    display: none;
  }
}
.project-bottom {
  display: none;
}
@media (max-width: 767px) {
  .project-bottom {
    display: block;
  }
}
.customer-booking-wrap {
  padding: 40px 30px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
.customer-booking-wrap.wrap-2 {
  padding-bottom: 10px;
}
.customer-booking-wrap .booking-header {
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
  line-height: 1;
}
.customer-booking-form .form-group .form-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--pxs-color-common-black);
}
.customer-booking-form .form-group .form-control {
  background-color: var(--pxs-color-grey-8);
  height: 50px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 8px;
  box-shadow: none;
  padding-left: 20px;
}
.customer-booking-form .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
}
.customer-booking-form .form-group .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
}
.customer-booking-form .form-group .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
}
.customer-booking-form .form-group .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
}
.customer-booking-form .form-group .form-box {
  background-color: var(--pxs-color-grey-8);
  display: flex;
  align-items: center;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 8px;
}
.customer-booking-form .form-group .form-box .booking-box {
  background-color: var(--pxs-color-grey-8);
  border: none;
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  color: var(--pxs-color-theme-secondary);
  border-radius: 0;
}
.customer-booking-form .form-group .form-box .booking-box:after {
  border-color: var(--pxs-color-theme-secondary);
  height: 8px;
  width: 8px;
  margin-top: -5px;
  right: 15px;
}
.customer-booking-form .form-group .form-box .booking-box:before {
  background-color: var(--pxs-color-common-black);
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.customer-booking-form .form-group .form-box .form-control {
  border: none;
}
.customer-booking-form
  .form-group
  .form-box
  .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.customer-booking-form .form-group .form-box .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.customer-booking-form .form-group .form-box .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.customer-booking-form
  .form-group
  .form-box
  .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
@media (max-width: 767px) {
  .customer-booking-form .form-group.number {
    margin-bottom: 30px;
  }
}
.form-group .select-control {
  background-color: var(--pxs-color-grey-8);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--pxs-color-grey-6);
  width: 100%;
  border-radius: 8px;
}
.form-group .select-control:after {
  border-color: var(--pxs-color-theme-secondary);
  height: 8px;
  width: 8px;
  margin-top: -5px;
  right: 15px;
}
@media (max-width: 767px) {
  .form-code .form-group {
    margin-bottom: 30px;
  }
}
.payment-box .payment-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pxs-color-common-black);
  margin-bottom: 15px;
}
.payment-box .radio-item {
  background-color: var(--pxs-color-grey-8);
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--pxs-color-grey-6);
  margin-bottom: 30px;
}
.payment-box .radio-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.payment-box .radio-item label span {
  font-size: 16px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.payment-box .radio-item label input {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  accent-color: var(--pxs-color-theme-primary);
  width: 20px;
  height: 20px;
}
.event-sidebar.sidebar-2 {
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
.event-sidebar.sidebar-2 .event-review-box {
  margin-bottom: 30px;
}
.event-sidebar.sidebar-2 .event-review-box .review-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pxs-color-common-black);
}
.event-sidebar.sidebar-2 .event-review-box .review {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 25px;
}
.event-sidebar.sidebar-2 .event-review-box .review span {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-2);
  font-size: 15px;
  font-weight: 400;
}
.event-sidebar.sidebar-2 .event-review-box .review i {
  color: var(--pxs-color-theme-bg-yellow-2);
  margin-right: 5px;
}
.event-sidebar.sidebar-2 .event-review-box img {
  width: 100%;
}
.event-sidebar.sidebar-2 .schedule-box {
  border-bottom: none;
  padding-bottom: 0;
}
.event-sidebar.sidebar-2 .guest-box {
  padding: 10px 15px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.event-sidebar.sidebar-2 .guest-box .guest-content-left .top-content {
  color: var(--pxs-color-grey-2);
  font-size: 14;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.event-sidebar.sidebar-2 .guest-box .guest-content-left .room {
  color: var(--pxs-color-grey-2);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.event-sidebar.sidebar-2 .guest-box .guest-content-left .room span {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
}
.event-sidebar.sidebar-2 .guest-box i {
  font-size: 30px;
  color: var(--pxs-color-common-black);
}
.cancel-wrap {
  padding: 30px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
.cancel-wrap .cancel-item:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.cancel-wrap .cancel-item .cancel-title {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
  line-height: 1;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.cancel-wrap .cancel-item .list-title {
  margin-bottom: 20px;
  line-height: 1;
}
.cancel-wrap .cancel-item ul {
  list-style: disc;
  padding-left: 20px;
}
.cancel-wrap .cancel-item ul li {
  color: var(--pxs-color-theme-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .customer-information .top-btn a {
    font-size: 10px;
  }
}
.customer-information-wrap {
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  padding: 50px;
}
@media (max-width: 767px) {
  .customer-information-wrap {
    padding: 25px;
  }
}
.customer-information-wrap .inforation-header {
  font-size: 28px;
  color: var(--pxs-color-common-black);
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .customer-information-wrap .inforation-header {
    font-size: 22px;
  }
}
.customer-payment-form .payment-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.customer-payment-form .payment-item .payment-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .customer-payment-form .payment-item .payment-title {
    font-size: 18px;
  }
}
.customer-payment-form .payment-item .payment-title span {
  display: block;
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .customer-payment-form .payment-item .payment-title span {
    font-size: 12px;
  }
}
.customer-payment-form .payment-item .payment-form {
  position: relative;
}
.customer-payment-form .payment-item .payment-form .form-control {
  background-color: var(--pxs-color-grey-8);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  height: 60px;
  box-shadow: none;
  border: 1px solid var(--pxs-color-grey-6);
  padding-left: 20px;
  border-radius: 8px;
}
.customer-payment-form
  .payment-item
  .payment-form
  .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item
    .payment-form
    .form-control::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item
  .payment-form
  .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item
    .payment-form
    .form-control:-moz-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item
  .payment-form
  .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item
    .payment-form
    .form-control::-moz-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item
  .payment-form
  .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item
    .payment-form
    .form-control:-ms-input-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form .payment-item .payment-form .form-icon {
  color: var(--pxs-color-grey-1);
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.customer-payment-form
  .payment-item.item-2
  .payment-form
  .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item.item-2
    .payment-form
    .form-control::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item.item-2
  .payment-form
  .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item.item-2
    .payment-form
    .form-control:-moz-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item.item-2
  .payment-form
  .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item.item-2
    .payment-form
    .form-control::-moz-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form
  .payment-item.item-2
  .payment-form
  .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-item.item-2
    .payment-form
    .form-control:-ms-input-placeholder {
    font-size: 14px;
  }
}
.customer-payment-form .payment-box .payment-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .customer-payment-form .payment-box .payment-info {
    flex-direction: column;
    row-gap: 20px;
    align-items: baseline;
  }
}
.customer-payment-form .payment-box .payment-info:not(:last-of-type) {
  margin-bottom: 50px;
}
.customer-payment-form .payment-box .payment-info .payment-left .payment-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-box
    .payment-info
    .payment-left
    .payment-title {
    font-size: 18px;
  }
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-left
  .payment-title
  span {
  display: block;
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-grey-9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .customer-payment-form
    .payment-box
    .payment-info
    .payment-left
    .payment-title
    span {
    font-size: 12px;
  }
}
.customer-payment-form .payment-box .payment-info .payment-right .payment-form {
  position: relative;
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-control {
  background-color: var(--pxs-color-grey-8);
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  height: 60px;
  box-shadow: none;
  border: 1px solid var(--pxs-color-grey-6);
  padding-left: 20px;
  text-align: center;
  border-radius: 8px;
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .payment-form
  .form-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.customer-payment-form .payment-box .payment-info .payment-right .input-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .input-wrap
  .line {
  font-size: 30px;
  color: var(--pxs-color-common-black);
}
.customer-payment-form
  .payment-box
  .payment-info
  .payment-right
  .input-wrap
  .form-control {
  width: 130px;
}
.submit-btn {
  margin-top: 50px;
}
.submit-btn .pxs-primary-btn {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  height: 60px;
}
.account-section {
  padding-top: 50px;
}
.account-cover {
  max-width: 1275px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.account-cover img {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .account-cover {
    height: 300px;
  }
  .account-cover img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
.account-cover .cover-btn {
  font-family: var(--pxs-ff-p);
  font-size: 14px;
  font-weight: 700;
  color: var(--pxs-color-theme-secondary);
  border: 1px solid var(--pxs-color-common-white);
  border-radius: 30px;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  position: absolute;
  right: 50px;
  bottom: 30px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  transition: all 0.3s ease-in-out;
}
.account-cover .cover-btn:hover {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-theme-secondary);
}
.account-cover .cover-btn i {
  font-size: 12px;
}
@media (max-width: 767px) {
  .account-cover .cover-btn {
    background-color: var(--pxs-color-common-white);
  }
}
.account-information {
  background-color: var(--pxs-color-common-white);
  padding: 50px 0;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  max-width: 270px;
  margin: 0 auto;
  width: 100%;
  margin-top: -130px;
  float: right;
  position: relative;
}
@media (max-width: 991px) {
  .account-information {
    float: inherit;
  }
}
@media (max-width: 767px) {
  .account-information {
    margin-top: 50px;
  }
}
.account-information .account-user .user-thumb {
  height: 120px;
  width: 120px;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 20px;
}
.account-information .user-btn {
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 35px;
}
.account-information .user-btn i {
  color: var(--pxs-color-theme-bg-red);
}
.account-information .user-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  padding-left: 35px;
  margin-bottom: 20px;
}
.account-information .nav-tabs {
  display: block;
  border: none;
}
.account-information .nav-tabs .nav-item .nav-link {
  color: var(--pxs-color-theme-secondary);
  font-size: 17px;
  font-weight: 600;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding: 0 0 0 35px;
  border: none;
}
.account-information .nav-tabs .nav-item .nav-link.active {
  background-color: var(--pxs-color-common-white-light);
  position: relative;
}
.account-information .nav-tabs .nav-item .nav-link.active:before {
  background-color: var(--pxs-color-theme-bg-green-2);
  content: "";
  height: 100%;
  width: 5px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.tab-content {
  padding-left: 10px;
}
@media (max-width: 991px) {
  .tab-content {
    padding-left: 0;
  }
}
.author-information-right {
  padding-top: 40px;
}
.author-information-right .user-name-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.author-information-right .user-name-box .user-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.author-information-right .user-name-box .edit-btn {
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  line-height: 45px;
  font-weight: 500;
  padding: 0 20px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 5px;
}
.author-information-right .desc {
  max-width: 700px;
  width: 100%;
  margin-bottom: 35px;
}
.author-information-right .information-list:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.author-information-right .information-list li {
  display: flex;
  align-items: center;
}
.author-information-right .information-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
.author-information-right .information-list li .list-left {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-common-black-2);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
  width: 190px;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.author-information-right .information-list li .list-left .list-left-title {
  font-weight: 400;
  margin-top: 2px;
}
.author-information-right .information-list li .list-left i {
  font-size: 18px;
  color: var(--pxs-color-grey-9);
}
.author-information-right .information-list li span {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 991px) {
  .author-information-right .information-list li span {
    line-height: 30px;
  }
}
.author-information-right .information-list li span a {
  color: var(--pxs-color-theme-secondary);
}
.booking-information {
  padding-top: 50px;
}
.booking-information .booking-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.booking-information .booking-item .booking-title {
  color: var(--pxs-color-theme-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
.booking-information .booking-item .booking-form {
  position: relative;
}
.booking-information .booking-item .booking-form .form-control {
  background-color: var(--pxs-color-grey-8);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
  height: 60px;
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 8px;
  box-shadow: none;
  padding-left: 20px;
}
.booking-information
  .booking-item
  .booking-form
  .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.booking-information
  .booking-item
  .booking-form
  .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.booking-information
  .booking-item
  .booking-form
  .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.booking-information
  .booking-item
  .booking-form
  .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
}
.booking-information .booking-item .booking-form .form-control.address {
  height: 200px;
  padding-top: 20px;
}
.booking-information .booking-item .booking-form .form-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}
.booking-information .booking-item .booking-form .form-btn-wrap {
  line-height: 60px;
  height: auto;
}
.booking-information .booking-item .booking-form .form-btn-wrap .form-btn {
  background-color: var(--pxs-color-theme-secondary);
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-common-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 15px;
}
.booking-information .booking-item .radio-item {
  line-height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
}
.booking-information .booking-item .radio-item label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
}
.booking-information .booking-item .radio-item label span {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: var(--pxs-color-common-black);
  margin-top: 2px;
}
.booking-information .booking-item .radio-item input {
  height: 20px;
  width: 20px;
  accent-color: var(--pxs-color-common-black);
}
.booking-information .add-more-btn {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 30px;
}
.booking-information .add-more-btn i {
  font-size: 26px;
  margin-left: 10px;
}
.booking-tab {
  margin-top: 50px;
}
.booking-tab .nav-tabs {
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.booking-tab .nav-tabs .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--pxs-color-theme-secondary);
  display: flex;
  align-items: center;
  column-gap: 10px;
  border: none;
  padding: 0 30px;
  line-height: 1;
}
@media (max-width: 991px) {
  .booking-tab .nav-tabs .nav-link {
    font-size: 12px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .booking-tab .nav-tabs .nav-link {
    padding: 0 12px;
  }
}
.booking-tab .nav-tabs .nav-link.active {
  position: relative;
}
.booking-tab .nav-tabs .nav-link.active:before {
  background-color: var(--pxs-color-theme-bg-green-2);
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .tab-table {
    overflow: scroll;
  }
}
@media (max-width: 991px) {
  .tab-table {
    overflow: scroll;
  }
}
.Airstream Booking-table {
  border: 1px solid var(--pxs-color-grey-6);
  border-radius: 8px;
  margin-bottom: 0;
  overflow: scroll;
}
.Airstream Booking-table thead {
  background-color: var(--pxs-color-theme-secondary);
}
.Airstream Booking-table thead tr th {
  color: var(--pxs-color-common-white);
}
.Airstream Booking-table tbody tr {
  height: 80px;
}
.Airstream Booking-table tbody tr th {
  color: var(--pxs-color-theme-bg-green-2);
  font-weight: 500;
}
.Airstream Booking-table tbody tr td {
  color: var(--pxs-color-common-black-2);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  font-weight: 500;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .Airstream Booking-table tbody tr td {
    font-size: 12px;
  }
}
.Airstream Booking-table tbody tr td .table-btn {
  background-color: var(--pxs-color-theme-secondary);
  color: var(--pxs-color-common-white);
  font-size: 12px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  display: block;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.Airstream Booking-table tbody tr td .table-btn i {
  margin-right: 10px;
}
.Airstream Booking-table tbody tr td .table-btn.btn-1 {
  margin-bottom: 5px;
}
.Airstream Booking-table tbody tr td .table-btn:hover {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-common-black-2);
}
.Airstream Booking-table > :not(caption) > * > * {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  padding-left: 20px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .Airstream Booking-table > :not(caption) > * > * {
    font-size: 12px;
  }
}
.bookmark-item-wrap {
  padding-top: 50px;
}
.bookmark-item-wrap .bookmark-item {
  display: flex;
  align-items: center;
}
.bookmark-item-wrap .bookmark-item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .bookmark-item-wrap .bookmark-item {
    flex-direction: column;
    align-items: baseline;
  }
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb {
  position: relative;
  max-width: 290px;
  width: 100%;
}
@media (max-width: 991px) {
  .bookmark-item-wrap .bookmark-item .bookmark-thumb {
    max-width: 100%;
  }
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb img {
  width: 100%;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb .bookmark-text {
  font-family: "Roboto", sans-serif;
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding: 0 35px;
  border-radius: 0 0 10px 0;
  margin-left: -7px;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb .bookmark-text:before {
  position: absolute;
  content: "";
  background-color: var(--pxs-color-ribbon-1);
  height: 10px;
  width: 10px;
  bottom: -4px;
  left: 2px;
  transform: rotate(-45deg);
  z-index: -1;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb .bookmark-shape {
  background-image: url(../img/images/offer-discount.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  width: 137px;
  height: 150px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb .discount-box {
  position: absolute;
  bottom: 15px;
  right: 12px;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb .discount-box .discount {
  color: var(--pxs-color-theme-secondary);
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  display: inline-block;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-thumb
  .discount-box
  .discount
  span {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.bookmark-item-wrap .bookmark-item .bookmark-thumb a {
  color: var(--pxs-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 7px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  line-height: 1;
}
.bookmark-item-wrap .bookmark-item .bookmark-content {
  width: 100%;
  padding: 20px 30px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .bookmark-item-wrap .bookmark-item .bookmark-content {
    padding: 20px;
  }
}
.bookmark-item-wrap .bookmark-item .bookmark-content .bookmark-top-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
@media (max-width: 767px) {
  .bookmark-item-wrap .bookmark-item .bookmark-content .bookmark-top-content {
    flex-direction: column;
    row-gap: 30px;
  }
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .bookmark-title {
  margin-bottom: 15px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  .price {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  .price:before {
  background-image: url(../img/shape/booking-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  content: "";
  width: 70px;
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 6px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  .price
  span {
  color: var(--pxs-color-theme-bg-red-2);
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
  margin-top: 2px;
  text-decoration: line-through;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  span {
  font-size: 14px;
  color: var(--pxs-color-common-black-2);
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: 2px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  span
  i {
  color: var(--pxs-color-theme-bg-green-2);
  margin-right: 5px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .booking-right
  .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-green-2);
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .booking-right
  .pxs-primary-btn
  i {
  transform: rotate(0);
  padding-right: 5px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .bookmark-item-wrap
    .bookmark-item
    .bookmark-content
    .bookmark-top-content
    .booking-right
    .pxs-primary-btn {
    padding: 10px;
  }
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .booking-list {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .booking-list
  li {
  font-size: 18px;
  color: var(--pxs-color-theme-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items
  .booking-rating {
  color: var(--pxs-color-common-black);
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items
  .booking-rating
  i {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items
  .booking-rating
  span {
  color: var(--pxs-color-grey-2);
  font-size: 16px;
  font-weight: 400;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items
  .remove-btn {
  color: var(--pxs-color-theme-secondary);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 7px;
  line-height: 1;
}
.bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .booking-bottom-content
  .bottom-items
  .remove-btn
  i {
  color: var(--pxs-color-theme-bg-red-2);
}
.password-box {
  background-color: var(--pxs-color-common-white);
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  padding: 100px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .password-box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .password-box {
    padding: 40px 20px;
  }
}
.password-box .password-thumb {
  margin-bottom: 40px;
}
.password-box span {
  font-family: var(--pxs-ff-p);
  font-size: 21px;
  line-height: 1;
  display: block;
  margin-bottom: 50px;
}
.password-box .password-form {
  position: relative;
}
.password-box .password-form .form-control {
  font-size: 16px;
  box-shadow: none;
  border: 1px solid var(--pxs-color-grey-6);
  height: 80px;
  padding-left: 70px;
  margin-bottom: 30px;
}
.password-box .password-form .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: #94a3b8;
}
.password-box .password-form .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: #94a3b8;
}
.password-box .password-form .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: #94a3b8;
}
.password-box .password-form .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  color: #94a3b8;
}
.password-box .password-form .form-icon {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-box .password-form .form-icon.icon-2 {
  left: auto;
  right: 25px;
}
.password-box .pxs-primary-btn {
  background-color: var(--pxs-color-theme-secondary);
  font-size: 24px;
  width: 100%;
  line-height: 80px;
  padding: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .password-box .pxs-primary-btn {
    margin-top: 0;
  }
}
.faq-section {
  padding-top: 80px;
}
.faq-content {
  max-width: 1005px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.faq-content .accordion .accordion-item {
  border: none;
  box-shadow: none;
}
.faq-content .accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 25px;
}
.faq-content .accordion .accordion-item .accordion-header {
  border-bottom: 1px solid var(--pxs-color-grey-6);
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 22px;
  font-weight: 500;
  border: none;
  padding: 0 35px;
  height: 65px;
}
@media (max-width: 767px) {
  .faq-content .accordion .accordion-item .accordion-header .accordion-button {
    padding: 0 20px;
    line-height: 30px;
    height: 80px;
  }
}
@media (max-width: 991px) {
  .faq-content .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}
.faq-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:focus {
  background-color: var(--pxs-color-theme-bg-green-2);
  color: var(--pxs-color-common-white);
  box-shadow: none;
}
.faq-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: var(--pxs-color-theme-bg-green-2);
  color: var(--pxs-color-common-white);
  box-shadow: none;
}
.faq-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  content: "";
  height: auto;
  width: auto;
}
.faq-content .accordion .accordion-item .accordion-body {
  background-color: var(--pxs-color-theme-bg-grey);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  line-height: 30px;
  padding: 35px;
}
@media (max-width: 767px) {
  .faq-content .accordion .accordion-item .accordion-body {
    padding: 20px;
  }
}
.privacy-section {
  padding: 80px 0 70px 0;
}
@media (max-width: 767px) {
  .privacy-section {
    padding: 60px 0 30px 0;
  }
}
.privacy-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
.privacy-top {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .privacy-top {
    margin-bottom: 40px;
  }
}
.privacy-top .privacy-header {
  font-size: 35px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .privacy-top .privacy-header br {
    display: none;
  }
}
@media (max-width: 767px) {
  .privacy-top .privacy-header {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.privacy-top p {
  max-width: 480px;
  width: 100%;
}
.privacy-top p:last-child {
  margin-bottom: 0;
}
.privacy-item {
  margin-bottom: 30px;
}
.privacy-item .privacy-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.privacy-item p:last-child {
  margin-bottom: 0;
}
.privacy-content .privacy-header {
  font-size: 45px;
  margin-bottom: 20px;
}
.privacy-content p {
  padding-left: 40px;
  border-left: 3px solid var(--pxs-color-theme-bg-green-2);
  max-width: inherit;
}
.contact-content .contact-title {
  font-size: 32px;
  margin-bottom: 15px;
}
.contact-content p {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .contact-content .contact-list {
    margin-bottom: 40px;
  }
}
.contact-content .contact-list li {
  display: flex;
  align-items: center;
}
.contact-content .contact-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.contact-content .contact-list li img {
  margin-right: 20px;
}
.contact-content .contact-list li a,
.contact-content .contact-list li span {
  font-family: var(--pxs-ff-p);
  color: var(--pxs-color-theme-secondary);
  font-size: 14px;
  font-weight: 500;
}
.pxs-contact-form .form-group .form-control {
  background-color: var(--pxs-color-grey-8);
  border: 1px solid var(--pxs-color-grey-6);
  height: 55px;
  padding-left: 20px;
  margin-bottom: 30px;
  width: 100%;
  border-radius: 8px;
  box-shadow: none;
}
.pxs-contact-form .form-group .form-control.address {
  height: 180px;
  padding-top: 15px;
}
.pxs-contact-form .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
}
.pxs-contact-form .form-group .form-control:-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
}
.pxs-contact-form .form-group .form-control::-moz-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
}
.pxs-contact-form .form-group .form-control:-ms-input-placeholder {
  font-family: var(--pxs-ff-p);
  font-size: 12px;
}
.pxs-contact-form .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  color: var(--pxs-color-theme-bg-dark);
  font-weight: 600;
}
.error-section {
  padding-top: 20px;
}
.error-content .error-number {
  font-size: 450px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 991px) {
  .error-content .error-number {
    font-size: 150px;
  }
}
@media (max-width: 991px) {
  .error-content .error-number {
    font-size: 100px;
  }
}
.error-content .error-text {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .error-content .error-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.error-content .pxs-primary-btn {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  font-weight: 600;
  color: var(--pxs-color-theme-secondary);
}
.about-section {
  position: relative;
  z-index: 1;
}
.about-section .about-img {
  background-image: url(../img/images/about-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: 48%;
  height: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 18px 0 0 18px;
  top: 100px;
  right: 0;
}
@media (max-width: 991px) {
  .about-section .about-img {
    position: inherit;
    width: 100%;
    height: 500px;
    border-radius: 0;
    top: 50px;
    margin-bottom: 60px;
  }
}
.about-section .video-btn a {
  background-color: var(--pxs-color-common-white);
  color: var(--pxs-color-theme-primary);
  font-size: 40px;
  height: 95px;
  width: 95px;
  line-height: 95px;
  text-align: center;
  animation: ripple_white 2s linear infinite;
  border-radius: 50%;
  display: block;
}
.about-item {
  padding: 30px;
  box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0, 0, 0, 0.3);
  border-left: 3px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
.about-item.item-2 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-item.item-2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .about-item {
    margin-bottom: 20px;
  }
}
.about-item:hover {
  border-left: 3px solid var(--pxs-color-theme-primary);
}
.about-item .about-title {
  font-size: 22px;
  margin-bottom: 15px;
}
.about-item .about-title a {
  color: var(--pxs-color-theme-secondary);
}
.about-item p {
  line-height: 30px;
}
.about-item p:last-child {
  margin-bottom: 0;
}
@-webkit-keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08),
      0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08),
      0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
  }
}
@keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4),
      0px 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 0px 12px rgba(0, 0, 0, 0.4);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08),
      0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
  }
}
.footer-section {
  position: relative;
  z-index: 1;
  padding-top: 250px;
}
.footer-section:before {
  background-color: var(--pxs-color-theme-bg-green);
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer-section:before {
    height: 70%;
  }
}
.footer-section .footer-shape {
  background-image: url("../img/shape/footer-top-shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 660px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer-top {
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .widget-item {
    margin-bottom: 50px;
  }
}
.widget-item .widget-header {
  color: var(--pxs-color-common-white);
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .widget-item .widget-header {
    margin-bottom: 60px;
  }
}
.widget-item .widget-header:before {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.widget-item .widget-header:after {
  background-color: var(--pxs-color-theme-bg-yellow-2);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.widget-item .desc {
  color: var(--pxs-color-common-white);
  margin-bottom: 30px;
}
.widget-item a {
  color: var(--pxs-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: var(--pxs-ff-p);
  font-size: 18px;
  font-weight: 500;
}
.widget-item .widget-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
.widget-item .widget-list li a {
  font-size: 16px;
  color: var(--pxs-color-common-white);
  transition: all 0.3s ease-in-out;
  line-height: 1;
}
.widget-item .widget-list li a:hover {
  color: var(--pxs-color-theme-bg-yellow-2);
}
.widget-item .address {
  color: var(--pxs-color-common-white);
  font-size: 16px;
  line-height: 30px;
  display: block;
  margin-bottom: 20px;
}
.widget-item .phone-call {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}
.widget-item .mail {
  font-weight: 400;
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  margin-bottom: 40px;
  position: relative;
}
.widget-item .mail:before {
  background-image: url(../img/shape/footer-shape.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  height: 23px;
  width: 160px;
}
.widget-item .widget-social li {
  display: inline-flex;
}
.widget-item .widget-social li:not(:last-of-type) {
  margin-right: 25px;
}
.widget-item.item-2 {
  margin-left: 150px;
}
@media (max-width: 991px) {
  .widget-item.item-2 {
    margin-left: 0;
  }
}
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}
.footer-bottom .portfolio {
  color: var(--pxs-color-common-white);
  font-family: var(--pxs-ff-p);
  font-size: 16px;
  line-height: 1;
}
.rtl {
  direction: rtl;
}
.rtl .header .top-left-content .top-left-list li a i {
  margin-right: auto;
  margin-left: 10px;
}
.rtl .header .top-right-content .top-right-list li.usd {
  margin-right: 0;
  margin-left: 12px;
}
.rtl .header .top-right-content .top-right-list li .top-social-list {
  margin-right: 20px;
}
.rtl .header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown a {
  padding-right: 0;
  padding-left: 15px;
}
.rtl
  .header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .has-dropdown:after {
  right: auto !important;
  left: 0 !important;
}
.rtl .hero-left .hero-thumb {
  right: auto;
  left: 40px;
}
.rtl .hero-bottom .hero-items .hero-item:nth-child(1) {
  margin-right: 0;
  padding-right: 0;
  margin-left: 35px;
  padding-right: 35px;
  border-right: 1px solid rgba(0, 0, 0, 0);
  border-left: 1px solid var(--pxs-color-common-white);
}
.rtl .section-title:before,
.rtl .subscribe-content .subscribe-title:before,
.rtl .hero-content .hero-title:before {
  left: auto;
  right: 0;
}
.rtl .hero-bottom .hero-box .box-item:not(:last-of-type) {
  margin-right: auto;
  padding-right: 0;
  border-right: 1px solid rgba(0, 0, 0, 0);
  margin-left: 45px;
  padding-left: 45px;
  border-left: 1px solid var(--pxs-color-border-2);
}
.rtl .testimonial-section .swiper-arrow .swiper-nav,
.rtl .travel-top .swiper-nav,
.rtl .project-top .swiper-nav {
  transform: rotate(180deg);
}
.rtl .subscribe-section .subscribe-bg {
  left: auto;
  right: 0;
}
.rtl .subscribe-video-btn {
  left: auto;
  right: 22.5%;
}
.rtl .widget-item.item-2 {
  margin-left: 0;
  margin-right: 150px;
}
.rtl .widget-item .widget-header:before {
  left: auto;
}
.rtl .widget-item .widget-header:after {
  left: auto;
  right: 0;
}
.rtl .widget-item .mail:before {
  left: auto;
}
.rtl .widget-item .widget-social li:not(:last-of-type) {
  margin-right: 0;
  margin-left: 25px;
}
.rtl .subscribe-content .subscribe-form .form-control {
  text-align: end;
}
.rtl .post-meta li i {
  margin-right: 0;
  margin-left: 8px;
}
.rtl .search-filter-items .search-filter-item .pxs-primary-btn i {
  margin-right: 0;
  margin-left: 5px;
}
.rtl .search-filter-items .search-filter-item .search-filter-icon {
  left: auto;
  right: 18px;
}
.rtl .search-filter-items .search-filter-item .search-filter-header {
  left: auto;
  right: 55px;
}
.rtl .search-filter-items .search-filter-item:nth-child(2) .form-design {
  padding-left: 0;
  padding-right: 55px;
}
.rtl .search-filter-items .search-filter-item .form-design span {
  width: 100%;
  display: block;
  text-align: right;
  padding-right: 34px;
}
.rtl .search-filter-items .search-filter-item .form-design.nice-select:after {
  right: auto;
  left: 20px;
}
.rtl .event-sidebar .event-sidebar-item .check-box-wrap .form-item .form-left {
  column-gap: 30px;
}
.rtl
  .event-listing-items
  .event-listing-item
  .event-listing-content
  .event-list
  li:not(:last-of-type) {
  margin-right: 0;
  margin-left: 30px;
}
.rtl
  .event-listing-items
  .event-listing-item
  .event-listing-content
  .event-list
  li
  span {
  margin-right: 10px;
  margin-left: 0;
}
.rtl
  .event-listing-items
  .event-listing-item
  .event-listing-content
  .event-price-wrap
  .price
  span {
  margin-left: 0;
  margin-right: 5px;
}
.rtl .event-listing-items .event-pagination .arrow a {
  transform: rotate(180deg);
}
.rtl .nice-select .list {
  left: auto;
  right: 0;
}
.rtl
  .search-filter-items
  .search-filter-item
  .form-design.nice-select
  .list
  li {
  text-align: right;
}
.rtl .top-btn a i {
  transform: rotate(180deg);
}
.rtl .event-details-left .event-details-thumb .see-all-btn {
  left: auto;
  right: 30px;
}
.rtl
  .event-details-right
  .event-sidebar
  .sidebar-service
  .form-item
  .form-left {
  column-gap: 30px;
}
.rtl .event-details-right .event-sidebar .sidebar-service .form-item {
  padding-left: 0;
}
.rtl
  .event-details-right
  .event-sidebar
  .promo-code
  .promo-code-box
  .promo-code-btn {
  right: auto;
  left: 20px;
}
.rtl .event-details-left .event-wrap-map .event-map-title:before {
  left: auto;
  right: 0;
}
.rtl .event-details-left .comments-area .comment-item .comment-content {
  margin-left: 0;
  margin-right: 25px;
}
.rtl .sidebar-item .search-box .search-form .form-control {
  text-align: left;
}
.rtl .sidebar-item .sidebar-title:before {
  left: auto;
  right: 0;
}
.rtl .blog-wrapper .pxs-blog .desc {
  border-left: none;
  border-right: 3px solid var(--pxs-color-theme-bg-yellow-2);
  padding-left: 0;
  padding-right: 20px;
}
.rtl .comments-area .comment-item .comment-content {
  margin-left: 0;
  margin-right: 25px;
}
.rtl .event-form .form-check {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.rtl .event-form .form-check .form-check-input {
  margin-bottom: 5px;
}
.rtl
  .faq-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:after {
  margin-left: 0;
  margin-right: auto;
}
.rtl .account-information .nav-tabs .nav-item .nav-link {
  padding: 0 35px 0 0;
}
.account-information .nav-tabs .nav-item .nav-link.active:before {
  left: auto;
  right: 0;
}
.rtl .account-information .user-name {
  text-align: right;
  padding-left: 0;
  padding-right: 35px;
}
.rtl .booking-information .add-more-btn i {
  margin-left: 0;
  margin-right: 10px;
}
.rtl .booking-information .booking-item .booking-form .form-icon {
  right: auto;
  left: 20px;
}
.rtl .booking-information .booking-item .booking-form .form-control {
  padding-left: 0;
  padding-right: 20px;
}
.rtl .booking-information .booking-item .booking-form .form-btn-wrap .form-btn {
  margin-right: 0;
  margin-left: 15px;
}
.rtl .account-cover .cover-btn {
  right: auto;
  left: 50px;
}
.rtl .Airstream Booking-table tbody tr td .table-btn i {
  margin-right: 0;
  margin-left: 10px;
}
.rtl .Airstream Booking-table > :not(caption) > * > * {
  padding-left: 0;
  padding-right: 20px;
}
.rtl
  .bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .booking-right
  .pxs-primary-btn
  i {
  padding-right: 0;
  padding-left: 5px;
}
.rtl
  .bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  span
  i {
  padding-right: 0;
  padding-left: 5px;
}
.rtl
  .bookmark-item-wrap
  .bookmark-item
  .bookmark-content
  .bookmark-top-content
  .bookmark-left
  .left-box
  .price
  span {
  margin-left: 0;
  margin-right: 10px;
}
.rtl .password-box .password-form .form-control {
  padding-left: 0;
  padding-right: 70px;
}
.rtl .customer-booking-form .form-group .form-box .booking-box:before {
  right: auto;
  left: 0;
}
.rtl .pxs-primary-btn i {
  margin-left: 0;
  margin-right: 5px;
  transform: rotate(-135deg);
}
.rtl .customer-payment-form .payment-item .payment-form .form-icon {
  right: auto;
  left: 20px;
}
.rtl .privacy-content p {
  border-left: none;
  border-right: 3px solid var(--pxs-color-theme-bg-green-2);
  padding-left: 0;
  padding-right: 40px;
}
.rtl .contact-content .contact-list li img {
  margin-right: 0;
  margin-left: 20px;
}
.rtl .rtl-switcher .label-switcher {
  flex-direction: row-reverse;
}
.rtl
  .header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .has-dropdown
  ul
  li {
  padding-left: 0;
  padding-right: 20px;
}
.rtl .header .primary-header-inner .header-menu-wrap .sub-menu .has-dropdown a {
  text-align: right;
}
@media (max-width: 991px) {
  .rtl .widget-item.item-2 {
    margin-right: 0;
  }
  .rtl .hero-bottom .hero-items .hero-item:nth-child(1) {
    margin-right: 0;
  }
  .rtl .rtl-switcher {
    margin: 0 0 0 20px;
  }
  .rtl
    .header
    .primary-header-inner
    .header-right
    .header-right-item
    .search-icon {
    margin-left: 20px;
  }
  .rtl .header .top-bar .top-right-content {
    column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .rtl .blog-top {
    align-items: flex-start;
  }
  .rtl .travel-top {
    row-gap: 40px;
    align-items: flex-start;
  }
}
