@charset "UTF-8";
/*

@Author: VXPN Inc
@URL: /


*/
/* ROOT */
:root {
  --color-main: #4EADEA;
  --color-dark: #18181B;
  --color-gray: #999999;
  --color-dark-gray: #464649;
}

/* BODY */
* {
  outline: none !important;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Helvetica", "Arial";
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-dark);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/* HTML ELEMENTS */
figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-top: 0;
}

blockquote {
  width: 100%;
  display: block;
  margin: 40px 0;
  font-size: 22px;
  padding-left: 40px;
  border-left: 4px solid var(--color-main);
}
blockquote p {
  margin-bottom: 10px;
}
blockquote cite {
  font-family: "Avenir";
  font-size: 15px;
}

/* LINKS */
a {
  color: var(--color-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--color-dark);
}

a:focus {
  text-decoration: none;
  color: var(--color-dark);
}

/* HEADLINES */
h6 {
  width: 100%;
  font-size: 19px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0.48px;
}

h5 {
  width: 100%;
  font-size: 25px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: 0.48px;
}

h4 {
  width: 100%;
  font-size: 33px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -1.32px;
}

h3 {
  width: 100%;
  font-size: 44px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -2.32px;
}

h2 {
  width: 100%;
  font-size: 83px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -3.32px;
}

h1 {
  width: 100%;
  font-size: 83px;
  display: block;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -4px;
}

/* VXPN BUTTON */
.vxpn-button-wrapper {
  width: 100%;
  display: block;
}

.vxpn-button {
  display: inline-block;
  border-radius: 100px;
  position: relative;
  padding: 20px 50px;
  background: 0 0;
  border: 1px #ccc solid;
  overflow: hidden;
}
.vxpn-button:hover {
  text-decoration: none;
}
.vxpn-button:hover .button-label {
  color: var(--color-dark);
}
.vxpn-button .button-label {
  display: block;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 19px;
  letter-spacing: -0.95px;
  font-weight: bold;
  transition: color ease 0.3s;
}
.vxpn-button .vxpn-button-ripple {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
}
.vxpn-button .vxpn-button-ripple span {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1), webkit-border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: border-radius 0.5s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.5s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.5s cubic-bezier(0.4, 0, 0, 1), -moz-border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.5s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-border-radius 0.5s cubic-bezier(0.4, 0, 0, 1), -moz-border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}

@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-button {
    padding: 15px 35px;
  }
}
@media (pointer: fine) {
  .vxpn-button:hover .vxpn-button-ripple span {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-duration: 0s, 0s;
    -moz-transition-duration: 0s, 0s;
    -o-transition-duration: 0s, 0s;
    transition-duration: 0s, 0s;
    -webkit-animation: j-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
    -moz-animation: j-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
    -o-animation: j-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
    animation: j-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
  }
}
@-webkit-keyframes j-checkbox_rounded-ripple-in {
  0% {
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes j-checkbox_rounded-ripple-in {
  0% {
    -moz-border-radius: 100%;
    border-radius: 100%;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes j-checkbox_rounded-ripple-in {
  0% {
    border-radius: 100%;
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    border-radius: 0;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes j-checkbox_rounded-ripple-in {
  0% {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
/* FORM ELEMENTS */
input[type=text], input[type=email], input[type=search], input[type=tel], input[type=password], input[type=number], input[type=date] {
  width: 320px;
  max-width: 100%;
  height: 52px;
  display: inline-block;
  border-radius: 52px;
  padding: 0 30px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
  color: #fff;
}

input[type=radio] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
  border-radius: 50%;
}

input[type=radio]:checked {
  border: 6px solid var(--color-dark);
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
}

input[type=checkbox]:checked {
  border: 4px solid #ededed;
  background: var(--color-dark);
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  width: 520px;
  max-width: 100%;
  height: 140px !important;
  padding: 30px;
  border: 1px solid #8B8B8D;
  border-radius: 27px;
}

select {
  width: 420px;
  max-width: 100%;
  height: 52px;
  padding: 0 30px;
  padding-right: 60px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
  border-radius: 52px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 30px) 50%, calc(100% - 25px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input[type=submit] {
  height: 70px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--color-main);
  border: none;
  padding: 0 50px;
}

button[type=submit] {
  height: 70px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--color-main);
  border: none;
  padding: 0 50px;
}
button[type=submit] i {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  transform: translateY(2px);
}

/* FONT AWESOME */
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-style: normal;
  font-weight: normal;
}

.fa-brands.fa-facebook-f:before {
  content: "";
}

/* ELEMENTOR CUSTOMIZATION */
body .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

body .elementor-section.elementor-top-section {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

body .elementor-section.elementor-top-section .elementor-container {
  max-width: 100%;
}

body .elementor-section.elementor-top-section .elementor-container .elementor-widget {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  body .elementor-section.elementor-top-section {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
/* MOBILE MENU */
.vxpn-mobile-menu {
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 30px;
  padding-top: 140px;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 0.7);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 0.7);
}
.vxpn-mobile-menu.active {
  left: 0;
}
.vxpn-mobile-menu .inner {
  width: 100%;
  display: block;
  max-height: 90%;
  overflow: auto;
  margin: auto 0;
}
.vxpn-mobile-menu .inner .site-menu {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.vxpn-mobile-menu .inner .site-menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.vxpn-mobile-menu .inner .site-menu ul li {
  display: block;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.vxpn-mobile-menu .inner .site-menu ul li a {
  color: #fff;
  font-size: 6vw;
  font-weight: bold;
}
.vxpn-mobile-menu .inner .site-menu ul li a:hover {
  text-decoration: none;
}
.vxpn-mobile-menu .bottom-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.vxpn-mobile-menu .bottom-contact a {
  display: inline-block;
  color: var(--color-gray);
}
.vxpn-mobile-menu .bottom-contact a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-mobile-menu {
    display: flex;
  }
}
/* HAMBURGER */
.hamburger-button {
  background: transparent;
}
.hamburger-button .hamburger {
  display: flex;
  background: transparent;
  width: 20px;
  height: 1px;
  position: relative;
  transition: background 10ms 250ms ease;
  margin: 10px 0;
}
.hamburger-button .hamburger:before {
  content: "";
  transition: top 250ms 300ms ease, -webkit-transform 250ms 50ms ease;
  transition: top 250ms 300ms ease, transform 250ms 50ms ease;
  transition: top 250ms 300ms ease, transform 250ms 50ms ease, -webkit-transform 250ms 50ms ease;
  position: absolute;
  background: #fff;
  width: 20px;
  height: 1px;
  top: -3px;
}
.hamburger-button .hamburger:after {
  content: "";
  transition: top 250ms 300ms ease, -webkit-transform 250ms 50ms ease;
  transition: top 250ms 300ms ease, transform 250ms 50ms ease;
  transition: top 250ms 300ms ease, transform 250ms 50ms ease, -webkit-transform 250ms 50ms ease;
  position: absolute;
  background: #fff;
  width: 20px;
  height: 1px;
  top: 3px;
}
.hamburger-button.active {
  background: transparent;
}
.hamburger-button.active .hamburger:before {
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: top 250ms 50ms ease, -webkit-transform 250ms 300ms ease;
  transition: top 250ms 50ms ease, transform 250ms 300ms ease;
  transition: top 250ms 50ms ease, transform 250ms 300ms ease, -webkit-transform 250ms 300ms ease;
  top: 0;
}
.hamburger-button.active .hamburger:after {
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: top 250ms 50ms ease, -webkit-transform 250ms 300ms ease;
  transition: top 250ms 50ms ease, transform 250ms 300ms ease;
  transition: top 250ms 50ms ease, transform 250ms 300ms ease, -webkit-transform 250ms 300ms ease;
  top: 0;
}

/* NAVBAR */
body.logged-in.admin-bar .vx-navbar {
  top: 72px;
}

.vx-navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 65px;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 9;
}
.vx-navbar.sticky {
  position: fixed;
}
.vx-navbar .logo {
  display: inline-block;
}
.vx-navbar .logo svg {
  width: 73px;
}
.vx-navbar .site-menu {
  display: inline-block;
}
.vx-navbar .site-menu ul.nav-menu {
  display: flex;
  margin: 0;
  padding: 0;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item {
  display: inline-block;
  margin: 0;
  margin-left: 46px;
  padding: 0;
  list-style: none;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link:hover {
  text-decoration: none;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link:hover:before {
  width: 100%;
  background: #fff;
  transition: width 0.25s ease;
}
.vx-navbar .site-menu ul.nav-menu li.menu-item a.nav-link:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.vx-navbar .navbar-button {
  display: inline-block;
}
.vx-navbar .navbar-button .vxpn-button {
  padding: 15px 40px;
}
.vx-navbar .hamburger-button {
  display: none;
  height: 38px;
  align-items: center;
  border: 1px solid var(--color-gray);
  padding: 0 15px;
  border-radius: 50px;
  cursor: pointer;
}
.vx-navbar .hamburger-button.active .hamburger-label span:first-child {
  transform: translateY(-100%);
}
.vx-navbar .hamburger-button.active .hamburger-label span:last-child {
  transform: translateY(0);
}
.vx-navbar .hamburger-button .hamburger {
  display: inline-block;
}
.vx-navbar .hamburger-button .hamburger-label {
  display: none;
  margin-left: 10px;
  color: #fff;
  font-size: 15px;
  overflow: hidden;
  position: relative;
}
.vx-navbar .hamburger-button .hamburger-label span {
  transition: transform 250ms 300ms ease;
}
.vx-navbar .hamburger-button .hamburger-label span:first-child {
  display: inline-block;
}
.vx-navbar .hamburger-button .hamburger-label span:last-child {
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translateY(100%);
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vx-navbar {
    padding: 0 30px;
  }

  .vx-navbar .site-menu {
    display: none;
  }

  .vx-navbar .navbar-button {
    display: none;
  }

  .vx-navbar .hamburger-button {
    display: flex;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vx-navbar {
    top: 25px;
  }

  .vx-navbar .logo a img {
    width: 60px;
  }
}
/* SLIDER */
.vxpn-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-left: -65px;
  margin-right: -65px;
}
.vxpn-slider-wrapper .left-side {
  width: 500px;
  height: 30px;
  display: block;
  text-align: center;
  position: absolute;
  top: calc(50% + 250px);
  left: 65px;
  z-index: 3;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  color: #fff;
}
.vxpn-slider-wrapper .custom-menu {
  position: absolute;
  left: 65px;
  bottom: 65px;
  z-index: 1;
  padding: 15px 0;
}
.vxpn-slider-wrapper .custom-menu a {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
}
.vxpn-slider-wrapper .custom-menu a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.vxpn-slider-wrapper .custom-menu a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease;
}
.vxpn-slider-wrapper .custom-menu a:hover {
  text-decoration: none;
}
.vxpn-slider-wrapper .custom-menu a:hover:before {
  width: 100%;
  background: #fff;
  transition: width 0.25s ease;
}
.vxpn-slider-wrapper .custom-menu a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.vxpn-slider-wrapper .vxpn-slider {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  transition: opacity 600ms ease !important;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide.swiper-slide-active .slide-content {
  opacity: 1;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide .slide-overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #18181b;
  background: linear-gradient(180deg, #18181b 0%, rgba(0, 0, 0, 0) 50%, #18181b 100%);
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide .slide-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover !important;
  background-position: center !important;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide .slide-video {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide .slide-video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.vxpn-slider-wrapper .vxpn-slider .swiper-slide .slide-video video {
  width: auto;
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.vxpn-slider-wrapper .vxpn-slider .slide-content {
  display: inline-block;
  text-align: right;
  color: #fff;
  position: absolute;
  z-index: 2;
  right: 65px;
  bottom: 120px;
  transition: opacity 0.6s ease;
  opacity: 0;
  transition-delay: 0.8s;
}
.vxpn-slider-wrapper .vxpn-slider .slide-content h6 {
  width: 100%;
  display: block;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 30px;
}
.vxpn-slider-wrapper .vxpn-slider .slide-content h2 {
  width: 100%;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
.vxpn-slider-wrapper .vxpn-slider .slide-content a {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-dark);
  font-weight: bold;
  font-size: 19px;
  letter-spacing: -0.57px;
}
.vxpn-slider-wrapper .right-side {
  width: 300px;
  height: 30px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: calc(50% + 220px);
  left: calc(100% - 65px);
  z-index: 3;
  transform: rotate(90deg);
  transform-origin: 0 0;
  color: #fff;
}
.vxpn-slider-wrapper .right-side ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.vxpn-slider-wrapper .right-side ul li {
  display: inline-block;
  margin: 0 8px;
  padding: 0;
  list-style: none;
}
.vxpn-slider-wrapper .right-side ul li a {
  display: block;
  color: #fff;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-slider-wrapper {
    margin-left: -30px;
    margin-right: -30px;
  }

  .vxpn-slider-wrapper .left-side {
    left: 30px;
  }

  .vxpn-slider-wrapper .right-side {
    left: calc(100% - 30px);
  }

  .vxpn-slider-wrapper .vxpn-slider .slide-content {
    width: 100%;
    right: 0;
    bottom: 60px;
    padding: 0 30px;
    text-align: center;
  }

  .vxpn-slider-wrapper .vxpn-slider .slide-content h2 {
    font-size: 60px;
    letter-spacing: -2.32px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-slider-wrapper .left-side {
    display: none;
  }

  .vxpn-slider-wrapper .right-side {
    display: none;
  }

  .vxpn-slider-wrapper .vxpn-slider .slide-content h2 {
    font-size: 42px;
    letter-spacing: -1.32px;
  }

  .vxpn-slider-wrapper .vxpn-slider .slide-content a {
    padding: 15px 35px;
    font-size: 17px;
  }
}
/* PAGE HEADER*/
.vxpn-page-header {
  width: 100%;
  height: 35vh;
  min-height: 340px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 65px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.vxpn-page-header.gradient:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #18181b;
  background: linear-gradient(180deg, #18181b 0%, rgba(0, 0, 0, 0) 50%, #18181b 100%);
}
.vxpn-page-header .bg-color {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.vxpn-page-header .bg-image {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover !important;
  background-position: center !important;
}
.vxpn-page-header .bg-video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.vxpn-page-header .bg-video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.vxpn-page-header .bg-video video {
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.vxpn-page-header .inner {
  display: inline-block;
  text-align: right;
  position: relative;
  z-index: 1;
}
.vxpn-page-header .inner h6 {
  width: 100%;
  display: block;
  font-weight: 500;
  opacity: 0.8;
}
.vxpn-page-header .inner h1 {
  width: 100%;
  display: block;
  font-weight: bold;
  margin: 0;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-page-header {
    padding: 30px;
  }

  .vxpn-page-header .inner {
    width: 100%;
    text-align: center;
  }

  .vxpn-page-header .inner h1 {
    font-size: 60px;
    letter-spacing: -2px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-page-header .inner h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .vxpn-page-header .inner h6 {
    font-size: 16px;
  }
}
/* HEADLINES */
.vxpn-headlines {
  width: 100%;
  display: block;
  color: #fff;
}

/* TEXT EDITOR */
.vxpn-text-editor {
  width: 100%;
  display: block;
  color: #fff;
  line-height: 1.8;
}
.vxpn-text-editor a {
  color: #fff;
}
.vxpn-text-editor p {
  margin-bottom: 20px;
}
.vxpn-text-editor p:last-child {
  margin-bottom: 0;
}
.vxpn-text-editor span[style="text-decoration: underline"] {
  color: var(--color-gray) !important;
  border-bottom: 1px solid var(--color-gray);
  text-decoration: none !important;
}

/* MARQUEE LOGOS */
.vxpn-marquee-logos {
  width: calc(100% + 130px);
  display: flex;
  background-color: var(--color-main-bg);
  color: var(--color-white-text);
  position: relative;
  overflow: hidden;
  margin: 0 -65px;
}
.vxpn-marquee-logos .wrapperRollingText {
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.vxpn-marquee-logos .wrapperRollingText .rollingText {
  display: flex;
  align-items: center;
}
.vxpn-marquee-logos .wrapperRollingText .rollingText figure {
  width: 160px;
  display: flex;
  align-items: center;
  margin: 0 20px !important;
  opacity: 0.4;
}
.vxpn-marquee-logos .wrapperRollingText .rollingText img {
  width: 100%;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-marquee-logos {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }

  .vxpn-marquee-logos .wrapperRollingText .rollingText figure {
    width: 130px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-marquee-logos .wrapperRollingText .rollingText figure {
    width: 100px;
  }
}
/* PRICING FEATURES */
.vxpn-pricing-features {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.select-city {
  display: inline-block;
}
.select-city select {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--color-dark-gray);
  color: #fff;
  background-color: transparent;
}

.select-studio {
  width: 100%;
  display: block !important;
  margin: 0;
  text-align: center;
}
.select-studio .text-radio {
  display: inline-block;
  margin-bottom: 15px;
}
.select-studio select {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--color-dark-gray);
  color: #fff;
  background-color: transparent;
}

.switcher {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--color-gray);
  margin-bottom: 15px;
}
.switcher label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.switcher label:nth-child(2):after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  right: -32px;
  top: 0;
}
.switcher label:last-child:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: -32px;
  top: 0;
}
.switcher .switcher_inner {
  width: 42px;
  height: 24px;
  display: flex;
  align-items: center;
  margin: 0 10px;
  padding: 2px;
  background-color: var(--color-gray);
  border-radius: 41px;
}
.switcher input[type=radio] {
  display: none;
}
.switcher input[type=radio]:checked {
  background-color: blue;
}
.switcher input[type=radio]:checked + label {
  color: #fff !important;
}
.switcher input[type=radio]:checked + label:after {
  background-color: var(--color-dark);
}

.text-radio {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.text-radio li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
}
.text-radio li input[type=radio] {
  display: none;
}
.text-radio li input[type=radio]:checked + label {
  color: #fff;
}
.text-radio li label {
  height: 42px;
  line-height: 40px;
  display: inline-block;
  font-size: 15px;
  color: var(--color-gray);
  cursor: pointer;
  border-radius: 42px;
  border: 1px solid var(--color-dark-gray);
  padding: 0 20px;
}

.custom-qty {
  height: 52px;
  display: flex;
  align-items: center;
  border-radius: 52px;
  border: 1px solid var(--color-dark-gray);
  color: #fff;
}
.custom-qty span {
  display: inline-block;
  padding: 0 20px;
  cursor: pointer;
}
.custom-qty input[type=number] {
  width: auto;
  height: 42px;
  display: inline-block;
  padding: 0;
  margin: 0 -10px;
  border-radius: 0;
  border: none;
  text-align: center;
  color: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.qty-label {
  display: inline-block;
  color: var(--color-gray);
  margin-left: 10px;
}

/* PRICE BOX */
.vxpn-price-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--color-dark-gray);
  border-radius: 17px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vxpn-price-box .swiper-slide {
  display: flex;
  height: auto;
}
.vxpn-price-box .price-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid var(--color-dark-gray);
  padding: 50px;
  padding-top: 0;
}
.vxpn-price-box .price-box:hover .pricing:after {
  width: 100%;
}
.vxpn-price-box .price-box .price-box-content {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  position: relative;
}
.vxpn-price-box .price-box .price-box-sticky {
  position: sticky;
  top: 0;
  background-color: var(--color-dark);
  z-index: 1;
}
.vxpn-price-box .price-box .heading {
  width: 100%;
  display: block;
  margin-bottom: 25px;
  padding-top: 50px;
}
.vxpn-price-box .price-box .heading h3 {
  width: 100%;
  display: block;
  font-size: 31px;
  font-weight: bold;
  margin-bottom: 5px;
}
.vxpn-price-box .price-box .heading small {
  width: 100%;
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
}
.vxpn-price-box .price-box .pricing {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-dark-gray);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.vxpn-price-box .price-box .pricing:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0, 1);
}
.vxpn-price-box .price-box .pricing span {
  font-size: 49px;
  font-weight: 300;
  display: flex;
}
.vxpn-price-box .price-box .pricing span b {
  font-weight: normal;
  font-size: 19px;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
}
.vxpn-price-box .price-box .pricing small {
  display: inline-block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
  margin-left: 20px;
}
.vxpn-price-box .price-box .content {
  width: 100%;
  display: block;
  font-size: 17px;
  line-height: 1.8;
}
.vxpn-price-box .price-box .content ul {
  width: 100%;
  display: block;
  padding-left: 18px;
  margin: 10px 0;
  opacity: 0.9;
}
.vxpn-price-box .price-box .content ul li {
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
  font-weight: 300;
  font-size: 16px;
}
.vxpn-price-box .price-box .content ul li:last-child {
  margin-bottom: 0;
}
.vxpn-price-box .price-box .location {
  width: 100%;
  display: block;
}
.vxpn-price-box .price-box .location ul {
  width: 100%;
  display: block;
  margin: 0;
  margin-top: 20px;
  padding: 0;
}
.vxpn-price-box .price-box .location ul li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  font-size: 13px;
}
.vxpn-price-box .price-box .location ul li input[type=radio] {
  display: none;
}
.vxpn-price-box .price-box .location ul li input[type=radio]:checked + label {
  color: #fff;
  border-color: #fff;
}
.vxpn-price-box .price-box .location ul li label {
  color: var(--color-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
}
.vxpn-price-box .price-box .vxpn-button {
  display: flex;
  height: 58px;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.vxpn-price-box .price-box .vxpn-button .button-label small {
  width: 100%;
  display: block;
  font-weight: normal;
  opacity: 0.6;
  font-size: 13px;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-price-box .price-box .vxpn-button .button-label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-price-box .price-box {
    padding: 30px;
  }
}
/* EXTRAS BOX */
.vxpn-extras-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid var(--color-dark-gray);
  border-radius: 17px;
  color: #fff;
}
.vxpn-extras-box .extras-box {
  flex: 1 1 300px;
  border-right: 1px solid var(--color-dark-gray);
  padding: 50px;
}
.vxpn-extras-box .extras-box:hover .pricing:after {
  width: 100%;
}
.vxpn-extras-box .extras-box:last-child {
  border-right: none;
}
.vxpn-extras-box .extras-box .heading {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}
.vxpn-extras-box .extras-box .heading h3 {
  width: 100%;
  display: block;
  font-size: 31px;
  font-weight: bold;
  margin-bottom: 5px;
}
.vxpn-extras-box .extras-box .heading small {
  width: 100%;
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
}
.vxpn-extras-box .extras-box .pricing {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-dark-gray);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.vxpn-extras-box .extras-box .pricing:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0, 1);
}
.vxpn-extras-box .extras-box .pricing span {
  font-size: 49px;
  font-weight: 300;
  display: inline-block;
}
.vxpn-extras-box .extras-box .pricing span b {
  font-weight: normal;
  font-size: 19px;
  float: right;
  margin-top: 10px;
  margin-left: 10px;
}
.vxpn-extras-box .extras-box .pricing small {
  display: inline-block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
  margin-left: 20px;
}
.vxpn-extras-box .extras-box .content {
  width: 100%;
  display: block;
  font-size: 17px;
  line-height: 1.8;
}
.vxpn-extras-box .extras-box .content ul {
  width: 100%;
  display: block;
  padding-left: 15px;
  margin: 10px 0;
  opacity: 0.6;
}
.vxpn-extras-box .extras-box .content ul li {
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 300;
}
.vxpn-extras-box .extras-box .content ul li:last-child {
  margin-bottom: 0;
}
.vxpn-extras-box .extras-box .vxpn-button {
  display: inline-block;
  margin-top: 30px;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-extras-box .extras-box .vxpn-button .button-label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-extras-box .extras-box {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-dark-gray);
    padding: 30px;
  }

  .vxpn-extras-box .extras-box:last-child {
    border-bottom: none;
  }
}
/* VXPN PACKAGES */
.vxpn-packages {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--color-dark-gray);
  border-radius: 17px;
  color: #fff;
}
.vxpn-packages .package {
  width: 100%;
  display: block;
  border-right: 1px solid var(--color-dark-gray);
  padding: 50px;
}
.vxpn-packages .package:last-child {
  margin-right: 0;
}
.vxpn-packages .package select {
  width: 100%;
}
.vxpn-packages .package input {
  width: 100%;
}
.vxpn-packages .package a {
  color: #fff;
}
.vxpn-packages .package .heading {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}
.vxpn-packages .package .heading h5 {
  width: 100%;
  display: block;
  font-size: 31px;
  font-weight: bold;
  margin-bottom: 5px;
}
.vxpn-packages .package .heading small {
  width: 100%;
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
}
.vxpn-packages .package .pricing {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-dark-gray);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.vxpn-packages .package .pricing span {
  font-size: 49px;
  font-weight: 300;
  display: inline-block;
}
.vxpn-packages .package .pricing small {
  display: inline-block;
  font-size: 13px;
  letter-spacing: -0.26px;
  opacity: 0.4;
  margin-left: 20px;
}
.vxpn-packages .package .description {
  width: 100%;
  display: block;
  font-size: 17px;
  line-height: 1.8;
}
.vxpn-packages .package .description ul {
  width: 100%;
  display: block;
  padding-left: 15px;
  margin: 10px 0;
  opacity: 0.6;
}
.vxpn-packages .package .description ul li {
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 300;
}
.vxpn-packages .package .description ul li:last-child {
  margin-bottom: 0;
}

/* IMAGE */
.vxpn-image {
  width: 100%;
  display: block;
  margin: 0;
}
.vxpn-image img {
  display: inline-block;
}

/* VIDEO */
.vxpn-video {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 17px;
}
.vxpn-video iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}

/* PARALLAX IMAGE */
.vxpn-parallax-image {
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
}
.vxpn-parallax-image.horizontal img {
  aspect-ratio: 3/2;
  height: 150%;
}
.vxpn-parallax-image.vertical img {
  aspect-ratio: 2/3;
  height: 150%;
}
.vxpn-parallax-image img {
  width: 100%;
  height: 100%;
  float: left;
}

/* HORIZONTAL GALLERY */
.vxpn-horizontal-gallery {
  width: calc(100% + 130px);
  height: 100vh;
  display: flex;
  align-items: center !important;
  overflow: hidden;
  margin: 0 -65px;
}
.vxpn-horizontal-gallery .horizontal-gallery-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.vxpn-horizontal-gallery .horizontal-gallery-inner .flex-middle {
  height: 100%;
  display: flex;
  align-items: center;
}
.vxpn-horizontal-gallery .horizontal-gallery-inner .flex-middle figure {
  width: 41vw;
  height: auto !important;
  max-height: 70vh;
  display: flex;
  align-items: center;
  margin: 0 25px !important;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
}
.vxpn-horizontal-gallery .horizontal-gallery-inner .flex-middle figure img {
  width: 150%;
  max-width: 150%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 17px;
}

/* TEXT BOX */
.vxpn-text-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--color-dark-gray);
  border-radius: 17px;
  position: relative;
}
.vxpn-text-box:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: var(--color-dark-gray);
}
.vxpn-text-box .text-box {
  width: calc(50% - 100px);
  display: inline-block;
  border-bottom: 1px solid var(--color-dark-gray);
  margin: 0 50px;
  margin-bottom: -1px;
  padding: 50px 0;
}
.vxpn-text-box .text-box h4 {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.vxpn-text-box .text-box p {
  width: 100%;
  display: block;
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

/* TEAM MEMBER */
.vxpn-team-member {
  width: 100%;
  display: block;
  color: #fff;
  padding: 0 20px;
}
.vxpn-team-member:hover figure video {
  opacity: 1;
}
.vxpn-team-member figure {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 20px !important;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
}
.vxpn-team-member figure img {
  width: 100%;
}
.vxpn-team-member figure video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vxpn-team-member h6 {
  width: 100%;
  display: block;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
}
.vxpn-team-member small {
  width: 100%;
  display: block;
  font-size: 13px;
  margin-bottom: 15px;
  color: var(--color-gray);
}
.vxpn-team-member p {
  line-height: 1.7;
  font-size: 15px;
  color: var(--color-gray);
}

/* CONTENTS IFRAME */
.vxpn-contents {
  width: 100%;
  display: block;
  margin-top: 180px;
  padding: 0 65px;
}
.vxpn-contents iframe {
  width: 100%;
  background-color: #fff;
  padding: 25px 60px;
  border-radius: 25px;
}

.vxpn-accordion {
  width: 100%;
  display: block;
  position: relative;
}
.vxpn-accordion .accordion-item {
  width: 100%;
  position: relative;
  border-radius: 17px;
  border: 1px solid var(--color-dark-gray);
  padding: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.vxpn-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.vxpn-accordion .accordion-item .accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 26px;
}
.vxpn-accordion .accordion-item .accordion-header.open .arrow span:last-child {
  transform: rotate(-90deg);
}
.vxpn-accordion .accordion-item .accordion-header .arrow {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: 1px solid var(--color-dark-gray);
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}
.vxpn-accordion .accordion-item .accordion-header .arrow span:first-child {
  width: 13px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: calc(50% - 6.5px);
  top: calc(50% - 1px);
}
.vxpn-accordion .accordion-item .accordion-header .arrow span:last-child {
  width: 2px;
  height: 13px;
  background: #fff;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 6.5px);
  transition: transform ease 0.3s;
}
.vxpn-accordion .accordion-item .accordion-content {
  display: none;
  font-size: 19px;
  color: var(--color-gray);
  padding-right: 10%;
  padding-top: 30px;
  line-height: 1.6;
}
.vxpn-accordion .accordion-item .accordion-content p:last-child {
  margin-bottom: 0;
}

/* ERROR PAGE 404 */
.error-page-404 {
  width: 100%;
  min-height: 600px;
  display: block;
  text-align: center;
  color: #fff;
}
.error-page-404 .logo {
  width: 100%;
  display: block;
  padding: 30px 0;
  margin-bottom: 50px;
}
.error-page-404 .logo img {
  height: 73px;
}
.error-page-404 figure {
  width: 100%;
  display: block;
  margin-bottom: 30px !important;
}
.error-page-404 p {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 23px;
}
.error-page-404 a.vxpn-button {
  margin-bottom: 80px;
}

/* SIDEBAR */
.vxpn-sidebar {
  width: 100%;
  display: block;
  padding: 0 65px;
  margin-bottom: 40px;
}
.vxpn-sidebar .widget {
  width: 100%;
  display: block;
  margin: 0;
}
.vxpn-sidebar .widget ul.wp-block-categories {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
.vxpn-sidebar .widget ul.wp-block-categories li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
.vxpn-sidebar .widget ul.wp-block-categories li a {
  color: #fff;
}

/* BLOG */
.vxpn-blog {
  width: 100%;
  display: block;
  column-count: 2;
  column-gap: 50px;
  padding: 0 65px;
  margin: 0;
  color: #fff;
}
.vxpn-blog a {
  color: #fff;
}
.vxpn-blog .vxpn-blog-post {
  display: inline-block;
  border: 1px solid var(--color-dark-gray);
  border-radius: 17px;
  padding: 50px;
  margin-bottom: 50px;
}
.vxpn-blog .vxpn-blog-post .post-title {
  width: 100%;
  display: block;
}
.vxpn-blog .vxpn-blog-post .post-title a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
}
.vxpn-blog .vxpn-blog-post .post-title a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.vxpn-blog .vxpn-blog-post .post-title a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease;
}
.vxpn-blog .vxpn-blog-post .post-title a:hover {
  text-decoration: none;
}
.vxpn-blog .vxpn-blog-post .post-title a:hover:before {
  width: 100%;
  background: #fff;
  transition: width 0.25s ease;
}
.vxpn-blog .vxpn-blog-post .post-title a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.vxpn-blog .vxpn-blog-post .post-excerpt {
  width: 100%;
  display: block;
  color: var(--color-gray);
}
.vxpn-blog .vxpn-blog-post .post-excerpt p {
  line-height: 1.8;
  margin: 0;
}
.vxpn-blog .vxpn-blog-post .post-meta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-top: 20px;
}
.vxpn-blog .vxpn-blog-post .post-meta .post-date {
  display: inline-block;
  margin-right: 30px;
}
.vxpn-blog .vxpn-blog-post .post-meta .seperator {
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
}
.vxpn-blog .vxpn-blog-post .post-meta .post-category {
  display: inline-block;
  margin-left: 25px;
}
.vxpn-blog .vxpn-blog-post .post-meta .post-category a {
  display: inline-block;
  margin: 0 5px;
}

/* PORTFOLIO */
.vxpn-portfolio {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 65px;
  grid-column-gap: 65px;
  padding-bottom: 100px;
}
.vxpn-portfolio .vxpn-portfolio-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
}
.vxpn-portfolio .vxpn-portfolio-item figure {
  width: 100%;
  display: block;
  margin-bottom: 30px !important;
  border-radius: 17px;
  overflow: hidden;
}
.vxpn-portfolio .vxpn-portfolio-item figure a {
  width: 100%;
  display: block;
}
.vxpn-portfolio .vxpn-portfolio-item figure a img {
  width: 100%;
  float: left;
}
.vxpn-portfolio .vxpn-portfolio-item h3 {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  font-size: clamp(20px, 25px, 40px);
  font-weight: bold;
  letter-spacing: -1px;
}
.vxpn-portfolio .vxpn-portfolio-item p {
  width: 100%;
  display: block;
  margin: 0;
  font-size: clamp(16px, 19px, 22px);
  color: var(--color-gray);
  line-height: 1.4;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vxpn-portfolio {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 60px;
    grid-column-gap: 30px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vxpn-portfolio {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* PORFOLIO SINGLE */
.vxpn-portfolio-single {
  width: 100%;
  display: block;
  color: #fff;
  padding: 0;
}

.portfolio-single-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 120px;
}
.portfolio-single-footer .portfolio-navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 40px;
}
.portfolio-single-footer .portfolio-navigation .disabled-link {
  opacity: 0.4;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  margin: 0 40px;
}
.portfolio-single-footer .portfolio-navigation .disabled-link svg {
  margin: 0 10px;
}
.portfolio-single-footer .portfolio-navigation a {
  display: flex;
  align-items: center;
  margin: 0 40px;
  color: #fff;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.portfolio-single-footer .portfolio-navigation a svg {
  margin: 0 10px;
}
.portfolio-single-footer .portfolio-navigation a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.portfolio-single-footer .portfolio-navigation a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease;
}
.portfolio-single-footer .portfolio-navigation a:hover {
  text-decoration: none;
}
.portfolio-single-footer .portfolio-navigation a:hover:before {
  width: 100%;
  background: #fff;
  transition: width 0.25s ease;
}
.portfolio-single-footer .portfolio-navigation a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* RESULT FORM MESSAGE */
.nf-response-msg {
  border: none;
}
.nf-response-msg table.table.table-bordered {
  border: none;
}
.nf-response-msg table.table.table-bordered tbody tr td {
  border: none;
  color: #fff;
}
.nf-response-msg table.table.table-bordered tbody tr td h4 {
  letter-spacing: 0;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element input[type=text] {
  height: 52px;
  border-radius: 52px;
  color: #fff;
  padding: 0 30px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element input[type=text]:focus {
  background: transparent;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element input[type=email] {
  width: 100%;
  height: 52px;
  border-radius: 52px;
  color: #fff;
  padding: 0 30px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element input[type=email]:focus {
  background: transparent;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element ul li label:before {
  width: 12px;
  height: 12px;
  left: -27px;
  border: none;
  background: var(--color-dark);
}

.nf-form-cont .nf-form-content nf-field .nf-field-element ul li label:after {
  border: none;
}

.nf-form-cont .nf-form-content nf-field .nf-field-element textarea {
  width: 100%;
  height: 120px;
  color: #fff;
  padding: 30px;
  border-radius: 17px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
  font-family: "Helvetica Neue", "Helvetica", "Arial";
}

.nf-form-cont .nf-form-content nf-field .list-select-wrap .nf-field-element select {
  width: 100%;
  height: 52px;
  padding: 0 30px;
  color: #fff;
}

.nf-form-cont .nf-form-content nf-field .list-select-wrap .nf-field-element > div {
  height: 52px;
  border-radius: 52px;
  color: #fff;
  padding: 0 30px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
}

.nf-form-cont .nf-form-content nf-field .list-select-wrap .nf-field-element > div:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  top: 22px;
  right: 25px;
  border-color: var(--color-dark-gray) transparent transparent transparent;
}

.nf-form-cont .nf-form-content nf-field .list-select-wrap .nf-field-element > div:focus {
  background: transparent;
}

.nf-form-cont .nf-form-content button, .nf-form-cont .nf-form-content input[type=button], .nf-form-cont .nf-form-content input[type=submit] {
  border-radius: 50px;
  padding: 0 30px;
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .btn.ninja-forms-field {
  height: 52px;
  border-radius: 52px;
  background: none;
  color: #fff;
  padding: 0 30px;
  border: 1px solid var(--color-dark-gray);
  cursor: pointer;
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .btn.ninja-forms-field span {
  position: relative;
  padding-right: 40px;
  font-size: 14px;
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .btn.ninja-forms-field span:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9C14.8687 8.99993 14.7386 9.02574 14.6172 9.07597C14.4959 9.1262 14.3856 9.19985 14.2927 9.29273C14.1999 9.3856 14.1262 9.49587 14.076 9.61723C14.0257 9.73859 13.9999 9.86866 14 10V13H2V10C2 9.73478 1.89464 9.48043 1.70711 9.29289C1.51957 9.10536 1.26522 9 1 9C0.734784 9 0.48043 9.10536 0.292893 9.29289C0.105357 9.48043 1.60752e-07 9.73478 1.60752e-07 10V14C-7.43302e-05 14.1313 0.0257406 14.2614 0.0759689 14.3828C0.126197 14.5041 0.199854 14.6144 0.292727 14.7073C0.385601 14.8001 0.495869 14.8738 0.617229 14.924C0.738588 14.9743 0.868657 15.0001 1 15H15C15.1313 15.0001 15.2614 14.9743 15.3828 14.924C15.5041 14.8738 15.6144 14.8001 15.7073 14.7073C15.8001 14.6144 15.8738 14.5041 15.924 14.3828C15.9743 14.2614 16.0001 14.1313 16 14V10C16.0001 9.86866 15.9743 9.73859 15.924 9.61723C15.8738 9.49587 15.8001 9.3856 15.7073 9.29273C15.6144 9.19985 15.5041 9.1262 15.3828 9.07597C15.2614 9.02574 15.1313 8.99993 15 9Z' fill='white'/%3E%3Cpath d='M5.70692 5.70703L6.99989 4.41406V10C6.99989 10.2652 7.10524 10.5196 7.29278 10.7071C7.48032 10.8946 7.73467 11 7.99989 11C8.2651 11 8.51946 10.8946 8.70699 10.7071C8.89453 10.5196 8.99989 10.2652 8.99989 10V4.41406L10.2929 5.70703C10.4806 5.89369 10.7346 5.9983 10.9993 5.99793C11.264 5.99756 11.5178 5.89224 11.705 5.70507C11.8921 5.51789 11.9974 5.26413 11.9978 4.99942C11.9982 4.73471 11.8936 4.48066 11.7069 4.29296L8.70692 1.29296C8.61409 1.20009 8.50386 1.12641 8.38255 1.07614C8.26123 1.02587 8.1312 1 7.99989 1C7.86857 1 7.73854 1.02587 7.61722 1.07614C7.49591 1.12641 7.38569 1.20009 7.29285 1.29296L4.29285 4.29296C4.1062 4.48066 4.00159 4.73471 4.00195 4.99942C4.00232 5.26413 4.10764 5.51789 4.29482 5.70507C4.48199 5.89224 4.73575 5.99756 5.00046 5.99793C5.26517 5.9983 5.51922 5.89369 5.70692 5.70703Z' fill='white'/%3E%3C/svg%3E");
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .nf-fu-progress {
  width: 50%;
  height: 12px;
  margin: 0;
  margin-left: auto;
  background: none;
  border-radius: 12px;
  border: 1px solid var(--color-dark-gray);
}
.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .nf-fu-progress .nf-fu-progress-bar.nf-fu-progress-bar-success {
  background-color: #fff;
  border: 2px solid var(--color-dark);
  border-radius: 12px;
}

.nf-form-cont .nf-form-content nf-field .file_upload-wrap .nf-field-element .files_uploaded {
  width: 100%;
  font-size: 13px;
  margin-top: 10px;
}

.nf-form-cont .nf-form-content label {
  font-size: 14px;
  font-weight: normal;
}

.nf-form-cont .nf-error.field-wrap .nf-field-element:after {
  background: none;
  color: #e80000;
}

.nf-form-cont .nf-help {
  color: #fff;
  margin-left: 5px;
}

.nf-form-cont .checkbox-container.label-right label {
  margin-left: 34px;
  font-size: 14px;
  font-weight: normal;
}

.nf-form-cont .checkbox-container.label-right label:before {
  content: "";
  width: 12px;
  height: 10px;
  display: none;
  position: absolute;
  left: -31px;
  top: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.00091 7.13332L1.20091 4.33332L0.267578 5.26665L4.00091 8.99999L12.0009 0.999984L11.0676 0.0666504L4.00091 7.13332Z' fill='white'/%3E%3C/svg%3E%0A");
  opacity: 1;
}

.nf-form-cont .checkbox-container.label-right label.nf-checked-label:before {
  display: block;
}

.nf-form-cont .checkbox-wrap .nf-field-element label:after, .nf-form-cont .checkbox-wrap .nf-field-label label:after, .nf-form-cont .listcheckbox-wrap .nf-field-element label:after, .nf-form-cont .listcheckbox-wrap .nf-field-label label:after {
  width: 19px;
  height: 19px;
  border-radius: 3px;
  background-color: transparent;
  border-color: var(--color-gray);
  left: -34px;
  top: 1px;
}

/*
.nf-form-cont{ width: 100%;
  .nf-form-content textarea{background: transparent; border-radius: 52px; color:#fff; padding: 30px; border:1px solid var(--color-dark-gray);}
  .nf-form-content .list-select-wrap .nf-field-element>div, .nf-form-content input:not([type=button]){ background: transparent; border-radius: 52px; color:#fff; padding: 0 30px; border:1px solid var(--color-dark-gray);}}


.nf-form-cont .nf-form-content select.ninja-forms-field:not([multiple]){ color:#fff; padding: 0 30px;}
.nf-form-cont .nf-form-content .list-select-wrap .nf-field-element>div:focus, .nf-form-cont .nf-form-content input:not([type=button]):focus, .nf-form-cont .nf-form-content textarea:focus{background: transparent;}
.nf-form-cont .nf-form-content select.ninja-forms-field:focus{ background-color: transparent;}
*/
#nf-form-20-cont {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field {
  width: 50%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:first-child {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:last-child {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(6) {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(9) {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(18) {
  width: 100%;
}
#nf-form-20-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(19) {
  width: 100%;
}

#nf-form-13-cont {
  width: 100%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field {
  width: 50%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:first-child {
  width: 100%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:last-child {
  width: 100%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(6) {
  width: 100%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(7) {
  width: 100%;
}
#nf-form-13-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:nth-child(8) {
  width: 100%;
}

.nf-form-cont {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap {
  width: 100%;
  display: block;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout {
  width: 100%;
  display: block;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form {
  width: 100%;
  display: block;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div {
  width: 100%;
  display: block;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-before-form-content {
  display: none;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 0;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 40px;
  border: 0.5px solid var(--color-dark-gray);
  color: rgba(255, 255, 255, 0.9);
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:first-child {
  width: 100%;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  padding: 30px 40px;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field:last-child {
  width: 100%;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  padding: 30px 40px;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin: 5px 0;
  width: 100%;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field .nf-field-container p {
  margin: 0;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field h1 {
  font-size: 30px;
  letter-spacing: 0;
}
.nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form > div .nf-form-content nf-fields-wrap nf-field h2 {
  font-size: 19px;
  letter-spacing: 0;
}

/* BLOG POST */
.blog-post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-post:hover .post-image img {
  filter: none;
  -webkit-filter: grayscale(0%);
  transform: scale(1.03);
}
.blog-post .post-image {
  width: 100%;
  display: inline-block;
  margin: 0 !important;
  overflow: hidden;
}
.blog-post .post-image img {
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.blog-post .content-box {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.blog-post .content-box .author {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.blog-post .content-box .author img {
  height: 54px;
  display: inline-block;
  border-radius: 50%;
}
.blog-post .content-box .author figcaption {
  display: inline-block;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.5;
}
.blog-post .content-box small {
  width: 100%;
  display: block;
  color: var(--color-main);
  font-weight: 500;
}
.blog-post .content-box h3 {
  width: 100%;
  display: block;
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--color-main);
}
.blog-post .content-box h3 a {
  color: var(--color-main);
}
.blog-post .content-box blockquote {
  width: 100%;
  display: block;
  margin: 40px 0;
  font-size: 22px;
  padding-left: 40px;
  border-left: 4px solid var(--color-main);
}
.blog-post .content-box blockquote p {
  margin-bottom: 10px;
}
.blog-post .content-box blockquote cite {
  font-family: "Mont";
  font-size: 15px;
}
.blog-post .content-box ol {
  margin-bottom: 25px;
  opacity: 0.7;
}
.blog-post .content-box ol li {
  margin: 5px 0;
}
.blog-post .content-box ul {
  margin-bottom: 25px;
  opacity: 0.7;
}
.blog-post .content-box ul li {
  margin: 5px 0;
}
.blog-post .content-box p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  opacity: 0.7;
}
.blog-post .content-box p:last-child {
  margin-bottom: 0;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-item.active .page-link {
  background: var(--color-main);
  border-color: transparent;
  color: #fff;
}
.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  border-radius: 0 !important;
  padding: 0 20px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
}
.pagination .page-item .page-link:hover {
  text-decoration: none;
}

.ghost-button {
  height: 59px;
  line-height: 57px;
  display: inline-block;
  border-radius: 59px;
  border: 1px solid #fff;
  padding: 0 40px;
  color: #fff;
  font-size: 19px;
  letter-spacing: -0.95px;
  font-weight: bold;
}

/* FOOTER */
.vx-footer:not(:has(.vx-footer-cta)) .vx-footer-studios {
  border-top: none;
}

.vx-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 65px;
  background-color: var(--color-dark);
  color: #fff;
  border-top: 1px solid var(--color-dark-gray);
}
.vx-footer .vx-footer-cta {
  width: 100%;
  display: block;
  padding-top: 120px;
  padding-bottom: 60px;
}
.vx-footer .vx-footer-cta figure {
  width: 100%;
  display: block;
  margin: 0;
  margin-bottom: 50px;
}
.vx-footer .vx-footer-cta figure svg {
  width: 73px;
}
.vx-footer .vx-footer-cta h6, .vx-footer .vx-footer-cta h5, .vx-footer .vx-footer-cta h4, .vx-footer .vx-footer-cta h3 {
  width: 100%;
  display: block;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0.8;
  font-size: 25px;
  letter-spacing: 0.48px;
}
.vx-footer .vx-footer-cta h1, .vx-footer .vx-footer-cta h2 {
  width: 100%;
  display: block;
  font-size: 63px;
  letter-spacing: -3.32px;
  margin-bottom: 36px;
  font-weight: bold;
}
.vx-footer .vx-footer-cta h1 {
  font-size: 83px;
}
.vx-footer .vx-footer-cta ul {
  width: 100%;
  display: block;
  margin-bottom: 60px;
  padding: 0;
}
.vx-footer .vx-footer-cta ul li {
  display: inline-block;
  margin: 0;
  margin-right: 20px;
  padding: 0;
  padding-right: 30px;
  list-style: none;
  letter-spacing: 0.34px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}
.vx-footer .vx-footer-cta ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.vx-footer .vx-footer-cta ul li:last-child:after {
  display: none;
}
.vx-footer .vx-footer-cta ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 8px;
}
.vx-footer .vx-footer-cta .vxpn-button {
  display: inline-block;
  margin-right: 28px;
}
.vx-footer .vx-footer-studios {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid var(--color-dark-gray);
  border-bottom: 1px solid var(--color-dark-gray);
  padding: 100px 0;
}
.vx-footer .vx-footer-studios .studio-box {
  display: inline-block;
}
.vx-footer .vx-footer-studios .studio-box h1, .vx-footer .vx-footer-studios .studio-box h2, .vx-footer .vx-footer-studios .studio-box h3, .vx-footer .vx-footer-studios .studio-box h4, .vx-footer .vx-footer-studios .studio-box h5, .vx-footer .vx-footer-studios .studio-box h6 {
  width: 100%;
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.48px;
}
.vx-footer .vx-footer-studios .studio-box p {
  width: 100%;
  display: block;
  line-height: 1.8;
  margin: 0;
  color: var(--color-gray);
}
.vx-footer .vx-footer-contact-bar {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.vx-footer .vx-footer-contact-bar a.link {
  display: inline-block;
  margin-right: 40px;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  font-size: 20px;
}
.vx-footer .vx-footer-contact-bar a.link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.vx-footer .vx-footer-contact-bar a.link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease;
}
.vx-footer .vx-footer-contact-bar a.link:hover {
  text-decoration: none;
}
.vx-footer .vx-footer-contact-bar a.link:hover:before {
  width: 100%;
  background: #fff;
  transition: width 0.25s ease;
}
.vx-footer .vx-footer-contact-bar a.link:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.vx-footer .vx-footer-contact-bar ul {
  display: inline-block;
  margin-left: auto;
  padding: 0;
}
.vx-footer .vx-footer-contact-bar ul li {
  display: inline-block;
  margin-left: 25px;
  padding: 0;
  list-style: none;
}
.vx-footer .vx-footer-contact-bar ul li a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  border: 1px solid var(--color-dark-gray);
  color: var(--color-gray);
}
.vx-footer .vx-footer-contact-bar ul li a:hover {
  text-decoration: none;
  color: #fff;
}

.vx-bottom-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 65px;
  background: #000;
  color: #fff;
}
.vx-bottom-bar .copyright {
  display: inline-block;
  color: var(--color-gray);
}
.vx-bottom-bar .bottom-bar-menu {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.vx-bottom-bar .bottom-bar-menu li {
  display: inline-block;
  margin-left: 25px;
  padding: 0;
  list-style: none;
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link {
  display: block;
  position: relative;
  padding: 3px 0;
  color: var(--color-gray);
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--color-gray);
  transition: width 0.25s ease;
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link:hover {
  text-decoration: none;
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link:hover:before {
  width: 100%;
  background: var(--color-gray);
  transition: width 0.25s ease;
}
.vx-bottom-bar .bottom-bar-menu li a.nav-link:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .vx-footer {
    padding: 0 30px;
  }

  .vx-footer .vx-footer-cta {
    padding-top: 80px;
  }

  .vx-footer .vx-footer-cta h1, .vx-footer .vx-footer-cta h2 {
    font-size: 60px;
    letter-spacing: -2.32px;
  }

  .vx-footer .vx-footer-cta ul li {
    font-size: 15px;
    margin-right: 15px;
    padding-right: 25px;
  }

  .vx-footer .vx-footer-contact-bar {
    flex-wrap: wrap;
  }

  .vx-footer .vx-footer-contact-bar ul {
    width: 100%;
  }

  .vx-footer .vx-footer-contact-bar ul li {
    margin-left: 0;
    margin-right: 20px;
  }

  .vx-footer .vx-footer-studios {
    padding: 70px 0;
  }

  .vx-footer .vx-footer-studios .studio-box {
    width: 50%;
    margin-bottom: 50px;
  }

  .vx-footer .vx-footer-studios .studio-box:last-child {
    margin-bottom: 0;
  }

  .vx-bottom-bar {
    padding: 40px 30px;
  }

  .vx-bottom-bar .copyright {
    width: 100%;
    margin-bottom: 10px;
  }

  .vx-bottom-bar .bottom-bar-menu {
    width: 100%;
  }

  .vx-bottom-bar .bottom-bar-menu li {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .vx-footer .vx-footer-cta h6, .vx-footer .vx-footer-cta h5, .vx-footer .vx-footer-cta h4, .vx-footer .vx-footer-cta h3 {
    font-size: 22px;
  }

  .vx-footer .vx-footer-cta h1, .vx-footer .vx-footer-cta h2 {
    font-size: 42px;
    letter-spacing: -1.32px;
  }

  .vx-footer .vx-footer-cta ul {
    margin-bottom: 30px;
  }

  .vx-footer .vx-footer-cta ul li {
    width: 100%;
    margin: 0;
    margin-bottom: 6px;
    padding: 0;
    padding-left: 15px;
  }

  .vx-footer .vx-footer-cta ul li:after {
    right: auto;
    left: 0;
  }

  .vx-footer .vx-footer-cta ul li:last-child:after {
    display: block;
  }

  .vx-footer .vx-footer-studios {
    padding: 50px 0;
  }

  .vx-footer .vx-footer-studios .studio-box {
    width: 100%;
  }

  .vx-footer .vx-footer-studios .studio-box h6 {
    margin-bottom: 15px;
  }

  .vx-footer .vx-footer-contact-bar {
    padding: 30px 0;
  }

  .vx-bottom-bar {
    padding: 30px;
  }
}
.display-tablet, .display-mobile {
  display: none;
}

.hide-desktop {
  display: none;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.pagination li {
  float: left;
}

.page-numbers {
  height: 70px;
  line-height: 70px;
  float: left;
  padding: 0 25px;
  border: 1px solid #eee;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  margin-left: -1px;
  background: #fff;
}
.page-numbers:hover {
  color: var(--color-main);
  text-decoration: none;
}
.page-numbers.current {
  background: var(--color-main);
  color: #fff;
  border-color: transparent;
}

.pagination-bar {
  width: 100%;
  display: block;
  margin-top: 60px;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-item.active .page-link {
  background: var(--color-dark);
  border-color: transparent;
  color: #fff;
}
.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  border-radius: 0 !important;
  padding: 0 20px;
  color: var(--color-dark);
}
.pagination .page-item .page-link:hover {
  text-decoration: none;
}

/* BREADCRUMB */
.breadcrumb {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  margin-top: -40px;
}
.breadcrumb ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li:first-child:after {
  content: "";
  width: 19px;
  height: 9px;
  display: inline-block;
  margin: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='7' viewBox='0 0 6 7' fill='none'%3E%3Cpath d='M5.23609 3.3741L1.77809 6.4961L0.952088 5.5581L3.24809 3.4301L0.840088 1.3441L1.73609 0.350098L5.23609 3.3741Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumb ul li a {
  display: inline-block;
}
.breadcrumb ul li a:hover {
  color: var(--color-main);
  text-decoration: none;
}

/* BLOG POST */
.blog-post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.blog-post:last-child {
  margin-bottom: 0;
  padding-bottom: 60px;
}
.blog-post.single-post {
  width: 100%;
  margin-bottom: 25px;
}
.blog-post.single-post .post-image {
  width: 100%;
  flex: inherit;
  margin-bottom: 30px !important;
}
.blog-post.single-post .post-content {
  width: 100%;
  flex: inherit;
  display: block;
  padding: 0;
  border: none;
  text-align: left !important;
  margin-bottom: 50px;
}
.blog-post.single-post .post-content .is-layout-flex.wp-block-buttons {
  align-items: flex-start;
}
.blog-post.single-post .post-content .category:before {
  display: none;
}
.blog-post.single-post .post-content .date {
  margin-bottom: 15px;
}
.blog-post.single-post .post-content .post-title {
  width: 100%;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -1px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  color: var(--color-main);
}
.blog-post.single-post .post-content .post-author {
  margin-bottom: 40px;
}
.blog-post .post-image {
  width: 100%;
  display: block;
  float: left;
  margin-bottom: 0;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.blog-post .post-image a {
  width: 100%;
  float: left;
}
.blog-post .post-image img {
  float: left;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.blog-post .post-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog-post .post-content .post-metas {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 12px;
}
.blog-post .post-content .post-metas .categories {
  display: inline-block;
}
.blog-post .post-content .post-metas .categories ul {
  margin: 0;
  padding: 0;
}
.blog-post .post-content .post-metas .categories ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 10px;
  text-transform: uppercase;
}
.blog-post .post-content .post-metas .categories ul li a {
  display: inline-block;
}
.blog-post .post-content .post-metas .categories ul li a:hover {
  text-decoration: underline;
  color: var(--color-main);
}
.blog-post .post-content .post-metas .date {
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
}
.blog-post .post-content .category {
  height: 22px;
  line-height: 22px;
  display: inline-block;
  background: var(--color-dark);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 400;
  margin-right: 20px;
  color: #fff;
}
.blog-post .post-content .post-title {
  width: 100%;
  min-height: 80px;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-post .post-content .post-title .line {
  width: 20px;
  height: 2px;
  display: inline-block;
  margin: 0 4px;
  background: var(--color-dark);
  transform: translateY(-5px);
}
.blog-post .post-content .post-author {
  width: 100%;
  display: block;
}
.blog-post .post-content .post-author span {
  display: inline-block;
  opacity: 0.5;
  font-size: 13px;
}
.blog-post .post-content .post-author img {
  width: 54px;
  height: 54px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.blog-post .post-content .post-author b {
  color: #727479;
  font-weight: 500;
}
.blog-post .post-content .post-author b a {
  color: var(--color-dark);
}
.blog-post .post-content .post-author b a:hover {
  text-decoration: none;
}
.blog-post .post-content .post-categories {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  padding: 0;
}
.blog-post .post-content .post-categories li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.blog-post .post-content .post-categories li a {
  color: var(--color-dark);
  font-size: 11px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--color-dark);
}
.blog-post .post-content .post-categories li a:hover {
  text-decoration: none;
  border-color: var(--color-main);
}
.blog-post .post-content .social-share {
  width: 100%;
  float: left;
  padding: 0;
  margin-bottom: 40px;
  text-align: center;
}
.blog-post .post-content .social-share li {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}
.blog-post .post-content .social-share li.facebook a {
  background: #475993;
}
.blog-post .post-content .social-share li.twitter a {
  background: #76a9ea;
}
.blog-post .post-content .social-share li.google-plus a {
  background: #f34a38;
}
.blog-post .post-content .social-share li.linkedin a {
  background: #0077b7;
}
.blog-post .post-content .social-share li.youtube a {
  background: #f61c0d;
}
.blog-post .post-content .social-share li a {
  line-height: 44px;
  float: left;
  padding: 0 20px;
  background: var(--color-dark);
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 0;
}
.blog-post .post-content .social-share li a:hover {
  text-decoration: none;
}
.blog-post .post-content .excerpt {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  margin-top: 20px;
}
.blog-post .post-content .excerpt p {
  font-size: 20px;
  line-height: 30px;
}
.blog-post .post-content blockquote {
  background: var(--color-main);
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  font-size: 24px;
}
.blog-post .post-content blockquote p {
  font-size: 24px;
}
.blog-post .post-content blockquote:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10vh;
  opacity: 0.1;
  font-weight: 900;
}
.blog-post .post-content blockquote h5 {
  font-weight: 500;
}
.blog-post .post-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.blog-post .post-content p a {
  text-decoration: underline;
}
.blog-post .post-content p a:hover {
  text-decoration: none;
}
.blog-post .post-content h3 {
  font-weight: 500;
}
.blog-post .post-content h4 {
  font-weight: 500;
}
.blog-post .post-content h5 {
  font-weight: 500;
}
.blog-post .post-content h6 {
  font-weight: 500;
}
.blog-post .post-content strong {
  font-weight: 500;
}
.blog-post .post-content u {
  text-decoration: none;
  border-bottom: 2px solid var(--color-dark);
}
.blog-post .post-content .wp-block-image {
  margin-bottom: 30px;
}
.blog-post .post-content .image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.blog-post .post-content .image-left img {
  max-width: 300px;
}
.blog-post .post-content .custom-list {
  width: 100%;
  display: block;
  padding-left: 20px;
}
.blog-post .post-content .custom-list li {
  font-size: 17px;
}
.blog-post .post-content .image-full {
  display: block;
  height: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.blog-post .post-content .image-full img {
  width: 100%;
}
.blog-post .post-content .post-link {
  display: inline-block;
  overflow: hidden;
}
.blog-post .post-content .post-link a {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--color-dark);
}
.blog-post .post-content .post-link a:hover {
  text-decoration: none;
  color: var(--color-main);
}

/* CUSTOM FIXES */
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.page.type-page code {
  background: #eee;
  padding: 4px;
  color: var(--color-main);
  font-family: Courier;
}

.page-links {
  position: relative;
}

.post-501 .page-links {
  float: left;
  margin-top: 60px;
}

.post-501 .post-entry-footer {
  float: left;
}

.post-1133 .post-entry-footer {
  float: left;
}

.post-1133 .post-comment {
  margin-top: 50px;
}

.post-1133 p:last-child .alignright {
  margin-top: 30px;
  margin-right: 5px;
}

.wp-image-907 {
  width: 100%;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0 !important;
}

.blog-post .post-content .wp-block-quote {
  border: none;
  background: var(--color-main);
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-post .post-content .wp-block-quote a {
  color: #fff;
}

.blog-post .post-content .has-medium-font-size {
  font-size: 20px;
}

.page.type-page {
  width: 100%;
}

.page.type-page .post-content {
  padding-left: 0;
}

.page.type-page .post-content .category {
  display: none;
}

.page.type-page .post-content .date {
  display: none;
}

.page.type-page .post-content .author {
  display: none;
}

.blog-post .post-content select {
  width: 100%;
  margin-bottom: 30px;
}

.blog-post .post-content .wp-block-search .wp-block-search__button {
  height: 70px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--color-main);
  border: none;
  padding: 0 50px;
}

/* SEARCH RESULTS */
.search-results .blog-post .post-content .post-title {
  font-size: 30px;
  margin: 0;
}

/* BLOG STYLE FOR SIDEBAR */
.col-lg-10 .blog-post.sticky {
  background: #eee;
}

.col-lg-10 .blog-post.sticky .post-content {
  background: #fff;
  padding: 30px;
}

.col-lg-10 .blog-post.sticky:after {
  border-color: transparent transparent #eee transparent;
}

/* STICKY POST STYLE */
.blog-post.sticky {
  border: 1px solid #eee;
  padding: 30px;
  position: relative;
  box-shadow: 6px 6px 0 #f5f5f5;
}

.blog-post.sticky:before {
  content: "";
  width: 14px;
  height: 25px;
  background: var(--color-main);
  position: absolute;
  right: 30px;
  top: -10px;
}

.blog-post.sticky:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 6px 7px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  right: 30px;
  top: 9px;
}

.blog-post.sticky .post-content {
  padding-left: 0;
}

.blog-post.sticky .post-content .category:before {
  display: none;
}

/* BLOG FIXES */
.blog-post .post-content .post-tags {
  width: 100%;
  display: block;
  margin: 30px 0;
  padding: 0;
}

.blog-post .post-content .post-tags li {
  display: inline-block;
  margin: 3px 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}

.blog-post .post-content .post-tags li a {
  display: inline-block;
  background: var(--color-dark);
  color: #fff;
  padding: 0 12px;
  font-size: 13px;
  height: 24px;
  line-height: 25px;
  border-radius: 24px;
}

.blog-post .post-content .post-tags li a:hover {
  background: var(--color-main);
  text-decoration: none;
}

.blog-post .post-content .wp-block-button {
  display: block;
  margin-bottom: 10px;
}

.blog-post .post-content .wp-block-button:last-child {
  margin-bottom: 0;
}

.blog-post .post-content .wp-block-button__link {
  background: var(--color-main);
  font-size: 13px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 50px;
  color: #fff;
}

.blog-post .post-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: none;
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.blog-post .post-content .wp-block-cover {
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-cover.has-background-dim .wp-block-cover-text {
  color: #fff;
}

.blog-post .post-content .wp-block-cover-image.has-background-dim .wp-block-cover-image-text {
  color: #fff;
}

.blog-post .post-content .wp-block-gallery {
  width: 100%;
  margin-bottom: 40px;
  padding: 0;
}

.blog-post .post-content .wp-block-gallery .blocks-gallery-caption {
  font-size: 13px;
}

.blog-post .post-content .wp-block-gallery .blocks-gallery-item figure {
  width: 100%;
  position: relative;
}

.blog-post .post-content .wp-block-gallery .blocks-gallery-item figure figcaption {
  padding: 10px;
  bottom: 0;
}

.blog-post .post-content .wp-block-quote {
  margin: 20px 0;
}

.blog-post .post-content .wp-block-quote a {
  color: #fff;
}

.blog-post .post-content .wp-block-quote cite {
  font-family: georgia;
  font-style: italic;
  font-size: 13px;
}

.blog-post .post-content .wp-block-quote cite br {
  display: none;
}

.blog-post .post-content .blocks-gallery-grid {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.blog-post .post-content .wp-block-group.has-background {
  padding: 30px;
}

.blog-post .post-content .has-background {
  margin-bottom: 20px;
}

.blog-post .post-content .more-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  display: none;
}

.blog-post .post-content .gallery {
  display: block;
  margin-bottom: 40px;
}

.blog-post .post-content .gallery .gallery-item {
  position: relative;
}

.blog-post .post-content .gallery .gallery-item .gallery-caption {
  font-size: 13px;
  color: #727479;
}

.blog-post .post-content .gallery .gallery-item a {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.blog-post .post-content .gallery .gallery-item a img {
  /*width:100%; */
  height: auto;
}

.blog-post .post-content .wp-block-archives {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  padding: 0;
  font-size: 16px;
}

.blog-post .post-content .wp-block-archives li {
  width: 100%;
  display: block;
  margin: 0;
  margin-bottom: 10px;
  padding: 3px 0;
  list-style: none;
  color: #727479;
}

.blog-post .post-content .wp-block-archives li .comment-author-link a {
  text-decoration: none;
  font-weight: 600;
}

.blog-post .post-content .wp-block-archives li a {
  margin: 0;
  color: var(--color-main);
}

.blog-post .post-content .wp-block-calendar {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-calendar caption {
  width: 100%;
  padding-bottom: 20px;
  font-weight: 600;
  color: #727479;
}

.blog-post .post-content .wp-block-calendar a {
  display: inline-block;
  color: var(--color-main);
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}

.blog-post .post-content .wp-block-calendar .wp-calendar-nav {
  margin-top: -40px;
  border-top: 1px solid #eee;
}

.blog-post .post-content .wp-block-table {
  width: 100%;
}

.blog-post .post-content .wp-block-table a {
  color: var(--color-main);
}

.blog-post .post-content .wp-block-table table {
  width: 100%;
  border: 1px solid #f3f4f5;
}

.blog-post .post-content .wp-block-table table tr {
  border-bottom: 1px solid #f3f4f5;
}

.blog-post .post-content .wp-block-table table td {
  height: 50px;
  padding: 0 20px;
}

.blog-post .post-content .wp-block-search {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-search .wp-block-search__label {
  display: none;
}

.blog-post .post-content .wp-block-search input[type=search] {
  border: 1px solid #eee;
  padding: 0 15px;
}

.blog-post .post-content .wp-block-categories {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-latest-comments {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-latest-comments .wp-block-latest-comments__comment-author {
  text-decoration: none;
  font-weight: 600;
}

.blog-post .post-content .wp-block-latest-comments a {
  text-decoration: underline;
}

.blog-post .post-content .wp-block-latest-comments p {
  font-weight: 400;
  padding: 0;
  border: none;
  text-transform: inherit;
}

.blog-post .post-content .wp-block-latest-posts {
  padding: 0;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-tag-cloud {
  font-weight: 400;
  margin-bottom: 40px;
}

.blog-post .post-content .wp-block-tag-cloud a {
  display: inline-block;
  font-size: 13px !important;
  background: var(--color-main);
  color: #fff;
  padding: 0 20px;
  text-decoration: none;
  line-height: 25px;
  height: 24px;
}

.blog-post .post-content .wp-block-tag-cloud a:hover {
  background: var(--color-main);
  color: #fff;
}

.blog-post .post-content .wp-block-rss {
  margin-bottom: 40px;
}

.blog-post .post-content .post-entry-footer {
  width: 100%;
  display: block;
  padding: 20px;
  border: 1px solid #E5E5E5;
  margin-bottom: 30px;
  box-shadow: 6px 6px 0 #f5f5f5;
  margin-top: 40px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.blog-post .post-content .post-entry-footer .cat-links {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 600;
}

.blog-post .post-content .post-entry-footer .cat-links a {
  text-decoration: underline;
  font-weight: 400;
}

.blog-post .post-content .post-entry-footer .cat-links a:hover {
  text-decoration: none;
}

.blog-post .post-content .post-entry-footer .tags-links {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 600;
}

.blog-post .post-content .post-entry-footer .tags-links a {
  text-decoration: underline;
  font-weight: 400;
}

.blog-post .post-content .post-entry-footer .tags-links a:hover {
  text-decoration: none;
}

.blog-post .post-content .post-entry-footer .edit-link {
  width: 100%;
  display: block;
  font-weight: 600;
}

.blog-post .post-content .post-entry-footer .edit-link .screen-reader-text {
  display: inline-block;
  font-weight: 400;
}

.blog-post .post-navigation {
  width: 100%;
  display: block;
}

.blog-post .post-navigation .navigation {
  width: 100%;
  display: block;
  padding: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 6px 6px 0 #f5f5f5;
}

.blog-post .post-navigation .navigation:last-child {
  margin-bottom: 0;
}

.blog-post .post-navigation .navigation .screen-reader-text {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-post .post-navigation .navigation .nav-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.blog-post .post-navigation .navigation .nav-links .nav-previous {
  flex: 1;
  width: 50%;
  padding-right: 20px;
  border-right: 1px solid #eee;
}

.blog-post .post-navigation .navigation .nav-links .nav-previous a {
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.blog-post .post-navigation .navigation .nav-links .nav-previous a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.blog-post .post-navigation .navigation .nav-links .nav-previous a:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  margin-right: 13px;
  margin-left: -30px;
}

.blog-post .post-navigation .navigation .nav-links .nav-next {
  flex: 1;
  width: 50%;
  padding-left: 20px;
  text-align: right;
}

.blog-post .post-navigation .navigation .nav-links .nav-next a {
  display: flex;
  align-items: center;
  padding-right: 40px;
  float: right;
}

.blog-post .post-navigation .navigation .nav-links .nav-next a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.blog-post .post-navigation .navigation .nav-links .nav-next a:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  margin-left: 13px;
  margin-right: -30px;
}

.blog-post .post-content .page-links {
  width: 100%;
  display: block;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.blog-post .post-content .page-links h6 {
  display: none;
}

.blog-post .post-content .page-links .post-page-numbers {
  height: 60px;
  line-height: 60px;
  display: inline-block;
  border: 1px solid #eee;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
}

.blog-post .post-content .page-links .post-page-numbers.current {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.blog-post .post-content .size-large {
  width: 100%;
  height: auto;
}

.blog-post .post-content code {
  background: #eee;
  padding: 4px;
  color: var(--color-main);
  font-family: Courier;
}

pre.wp-block-verse {
  font-family: monospace;
}

.blog-post .post-content blockquote cite {
  display: block;
  margin-top: 10px;
}

.blog-post .post-content blockquote a {
  text-decoration: underline;
  color: #fff;
}

.blog-post .post-content blockquote *:last-child {
  margin-bottom: 0;
}

.blog-post .post-content blockquote {
  color: #fff;
}

.blog-post .post-content h3 {
  font-weight: 600;
}

.blog-post .post-content h4 {
  font-weight: 600;
}

.blog-post .post-content h5 {
  font-weight: 600;
}

.blog-post .post-content h6 {
  font-weight: 600;
}

.blog-post .post-content strong {
  font-weight: 600;
}

.blog-post .post-content ol {
  padding-left: 20px;
}

.blog-post .post-content ul {
  padding-left: 20px;
}

.blog-post .post-content ul li {
  margin-bottom: 10px;
}

.blog-post .post-content ul li:last-child {
  margin-bottom: 0;
}

.blog-post .post-content ol li {
  margin-bottom: 10px;
}

.blog-post .post-content ol li:last-child {
  margin-bottom: 0;
}

.blog-post .post-content u {
  text-decoration: none;
  border-bottom: 5px solid #75dab4;
}

.blog-post .post-content .image-full {
  display: block;
  height: auto;
  margin-bottom: 30px;
}

.blog-post .post-content .post-link {
  width: 100%;
  display: inline-block;
}

.blog-post .post-content .link-more {
  width: 100%;
  display: inline-block;
  overflow: hidden;
}

.blog-post .post-content .link-more a {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
}

.blog-post .post-content .link-more a:before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
}

.blog-post .post-content .link-more a:hover {
  transform: translateY(-100%);
  text-decoration: none;
}

.blog-post.tag-read-more .post-link {
  display: none;
}

table {
  width: 100%;
  border: 1px solid #eee;
  margin-bottom: 30px;
  margin-top: 10px;
}

table tr {
  padding: 15px 0;
}

table tr.odd {
  background: #f9f9f9;
}

table tr.event {
  background: #fff;
}

table tr th {
  padding: 15px;
  border: 1px solid #eee;
}

table tr td {
  padding: 15px;
  border: 1px solid #eee;
}

.tag-content-2 {
  position: relative;
}

.tag-content-2 .screen-reader-text {
  display: none;
}

.post-1788 .post-entry-footer {
  margin-top: 200px !important;
}

.post-password-form label {
  width: 100%;
}

.post-password-form input[type=password] {
  width: 100%;
  padding: 0 15px;
  margin: 10px 0;
}

.post-password-form input[type=submit] {
  margin-top: 5px;
}

.page-links {
  width: 100%;
  display: block;
  border-top: 1px solid #eee;
  padding-top: 40px;
  font-size: 16px;
}

.page-links h6 {
  display: none;
}

.page-links .post-page-numbers {
  height: 60px;
  line-height: 60px;
  display: inline-block;
  border: 1px solid #eee;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
}

.page-links .post-page-numbers.current {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.post-entry-footer {
  width: 100%;
  display: block;
  padding: 20px;
  border: 1px solid #E5E5E5;
  margin-bottom: 30px;
  font-size: 16px;
  box-shadow: 6px 6px 0 #f5f5f5;
  margin-top: 40px;
}

.post-entry-footer:last-child {
  margin-bottom: 0;
}

.post-entry-footer .cat-links {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-main);
  font-weight: 600;
}

.post-entry-footer .cat-links a {
  text-decoration: underline;
  font-weight: 400;
}

.post-entry-footer .tags-links {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-main);
  font-weight: 600;
}

.post-entry-footer .tags-links a {
  text-decoration: underline;
  font-weight: 400;
}

.post-entry-footer .edit-link {
  width: 100%;
  display: block;
  font-weight: 600;
}

.post-entry-footer .edit-link .screen-reader-text {
  display: inline-block;
  font-weight: 400;
}

.post-comment {
  width: calc(100% + 80px);
  display: block;
  padding: 40px;
  margin: 0 -40px;
  border-top: 1px solid #E5E5E5;
}

.search-no-results .content-section {
  text-align: center;
}

.search-no-results .content-section p {
  width: 100%;
  display: block;
  padding: 0 15%;
  margin-bottom: 40px;
  font-size: 3vw;
}

.search-no-results .content-section form {
  width: 100%;
}

.search-no-results .content-section form label {
  width: 100%;
  display: block;
}

.search-no-results .content-section form .screen-reader-text {
  display: none;
}

.search-no-results .content-section form input[type=search] {
  width: 100%;
  max-width: 650px;
  margin-bottom: 15px;
}

/* COMMENTS */
.post-comment .comments-title {
  width: 100%;
  display: block;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.post-comment .comment-list {
  width: 100%;
  display: block;
  margin-bottom: 60px;
  padding: 0 !important;
}

.post-comment .comment-list .comment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.post-comment .comment-list .children {
  margin-bottom: 20px;
}

.post-comment .comment-list .comment .comment-list {
  margin-bottom: 20px;
}

.post-comment .comment-list .comment .comment-content {
  width: calc(100% - 100px);
  display: inline-block;
}

.post-comment .comment-list .comment .comment-content ul {
  margin-bottom: 15px;
}

.post-comment .comment-list .comment .comment-content ul ul {
  margin-bottom: 0;
}

.post-comment .comment-list .comment .comment-content ul li {
  margin-bottom: 10px;
}

.post-comment .comment-list .comment .comment-content ul li ul li:last-child {
  margin-bottom: -10px;
}

.post-comment .comment-list .comment .comment-content ul li:last-child {
  margin-bottom: 0;
}

.post-comment .comment-list .comment .comment-content ol {
  margin-bottom: 15px;
}

.post-comment .comment-list .comment .comment-content ol ol {
  margin-bottom: 0;
}

.post-comment .comment-list .comment .comment-content ol li {
  margin-bottom: 10px;
}

.post-comment .comment-list .comment .comment-content ol li ol li:last-child {
  margin-bottom: -10px;
}

.post-comment .comment-list .comment .comment-content ol li:last-child {
  margin-bottom: 0;
}

.post-comment .comment-list .comment .comment-content p:empty {
  display: none;
}

.post-comment .comment-list .comment .comment-content p {
  margin-bottom: 15px;
}

.post-comment .comment-list .comment .comment-content h4 {
  font-size: 13px;
  font-weight: 600;
}

.post-comment .comment-list .comment .comment-content small {
  width: 100%;
  display: block;
  margin-bottom: 5px;
  opacity: 0.6;
}

.post-comment .comment-list .comment .comment-content .comment-reply-link {
  display: inline-block;
  padding: 3px 8px;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.post-comment .comment-list .comment .comment-content .comment-reply-link:hover {
  background: var(--color-main);
  color: #fff;
  text-decoration: none;
}

.post-comment .comment-list .comment .comment-avatar {
  margin-right: 20px;
}

.post-comment .comment-list .comment .comment-avatar:empty {
  display: none;
}

.post-comment .comment-list .comment .comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.post-comment .comment-form {
  width: 100%;
  display: block;
}

.post-comment .comment-form .comment-respond {
  width: 100%;
  display: block;
}

.post-comment .comment-form .comment-respond .comment-reply-title {
  width: 100%;
  display: block;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 26px;
}

.post-comment .comment-form .comment-respond form {
  position: relative;
}

.post-comment .comment-form .comment-respond form .comment-notes {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-comment .comment-form .comment-respond form .comment-form-cookies-consent {
  padding: 0 12px;
  margin-top: 10px;
}

.post-comment .comment-form .comment-respond form .comment-form-cookies-consent input[type=checkbox] {
  margin-right: 10px;
}

.post-comment .comment-form .comment-respond form .comment-form-cookies-consent label {
  width: auto;
  display: inline-block;
}

.post-comment .comment-form .comment-respond form .logged-in-as {
  font-weight: 400;
  text-transform: inherit;
  border: none;
  padding: 0;
  font-size: 16px;
  margin-bottom: 20px;
}

.post-comment .comment-form .comment-respond form .logged-in-as a {
  text-decoration: underline;
}

.post-comment .comment-form .comment-respond form label {
  width: 100%;
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

.post-comment .comment-form .comment-respond form input[type=text] {
  width: 100%;
  display: block;
  border: 1px solid #dadada;
  padding: 0 15px;
  background: #f7f7f7;
  height: 66px;
}

.post-comment .comment-form .comment-respond form input[type=email] {
  width: 100%;
  display: block;
  border: 1px solid #dadada;
  padding: 0 15px;
  background: #f7f7f7;
  height: 66px;
}

.post-comment .comment-form .comment-respond form textarea {
  width: 100%;
  display: block;
  border: 1px solid #dadada;
  padding: 15px;
  background: #f7f7f7;
  margin-bottom: 15px;
}

.post-comment .comment-form .comment-respond form button[type=submit] {
  height: 66px;
}

body.search-results .blog-post {
  margin-bottom: 50px;
}

body.search-results .blog-post .post-image {
  display: none;
}

body.search-results .blog-post .post-content {
  padding-left: 0;
}

body.search-results .blog-post .post-content {
  padding-left: 0;
}

body.search-results .blog-post .post-content .category {
  display: none;
}

body.search-results .blog-post .post-content .date {
  display: none;
}

body.search-results .blog-post .post-content .post-author {
  display: none;
}

body.search-results .blog-post .post-content .post-title a:hover {
  color: var(--color-main);
}

body.search-results .blog-post .excerpt {
  display: none;
}

body.search-results .blog-post .custom-link {
  display: none;
}

body.search-results .pagination {
  margin-top: 100px;
}

/*# sourceMappingURL=styles.css.map */
