@charset "UTF-8";
/* Swiper navigation
 * ------------------------------------------- */
.pt-swiper-button-prev,
.pt-swiper-button-next {
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 15px);
}
.pt-swiper-button-prev::before,
.pt-swiper-button-next::before {
  display: block;
  font-family: pticons;
  font-size: 30px;
  line-height: 1;
  transition: transform 0.3s, opacity 0.3s;
}
.pt-swiper-button-prev.swiper-button-disabled::before,
.pt-swiper-button-next.swiper-button-disabled::before {
  opacity: 0.2;
}
.pt-swiper-button-prev path,
.pt-swiper-button-next path {
  fill: currentColor;
}

.pt-swiper-button-prev {
  left: -70px;
}
.pt-swiper-button-prev::before {
  content: "\e90a";
}
.pt-swiper-button-prev:hover::before {
  transform: translateX(-4px);
}

.pt-swiper-button-next {
  right: -70px;
}
.pt-swiper-button-next::before {
  content: "\e907";
}
.pt-swiper-button-next:hover::before {
  transform: translateX(4px);
}

.arrows-together .pt-swiper-arrows {
  z-index: 2;
  position: absolute;
  display: flex;
  gap: 30px;
}
.arrows-together .pt-swiper-button-prev,
.arrows-together .pt-swiper-button-next {
  position: static;
}

.arrows-align-default .pt-swiper-arrows {
  bottom: 0;
  right: 0;
}
.arrows-align-top-left .pt-swiper-arrows {
  top: 0;
  left: 0;
}
.arrows-align-top-right .pt-swiper-arrows {
  top: 0;
  right: 0;
}
.arrows-align-bottom-left .pt-swiper-arrows {
  bottom: 0;
  left: 0;
}
.arrows-align-bottom-right .pt-swiper-arrows {
  right: 0;
  bottom: 0;
}

/* Swiper pagination
 * ------------------------------------------- */
.pt-swiper-pagination {
  margin-top: var(--spacing-base);
  display: flex;
  justify-content: center;
  gap: 14px;
}
.pt-swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 5px;
  height: 5px;
  background-color: #DEDEDE;
}
.pt-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* Accordion
 * ------------------------------------------- */
.pt-accordion {
  border-bottom: 1px solid var(--color-border);
}
.pt-accordion-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 20px 8px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-secondary);
  font-size: var(--font-size-h6);
  font-weight: 500;
}
.pt-accordion-title::after {
  content: "\e901";
  font-family: pticons;
  font-weight: 400;
}
.pt-accordion-title.ui-state-active::after {
  content: "\e906";
}
.pt-accordion-content {
  display: none;
  padding: 0 8px 20px;
}

/* Blog
 * ------------------------------------------- */
.blog-items.blog-grid .blog-item:not(:last-child),
.blog-carousel.blog-grid .blog-item:not(:last-child) {
  margin-bottom: 48px;
}
.blog-items.blog-classic .blog-item:not(:last-child),
.blog-carousel.blog-classic .blog-item:not(:last-child) {
  margin-bottom: 48px;
}
.blog-items.blog-classic .entry-meta,
.blog-carousel.blog-classic .entry-meta {
  margin-bottom: 8px;
}
.blog-items .grid-sizer,
.blog-carousel .grid-sizer {
  position: absolute;
}

.blog-carousel .swiper-container {
  overflow: visible;
}
.blog-carousel .swiper-slide {
  pointer-events: none;
}
.blog-carousel .swiper-slide-visible {
  pointer-events: auto;
}

.filter-buttons {
  margin-bottom: 42px;
}
.filter-buttons .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
}
.filter-buttons button {
  opacity: 0.4;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  color: currentColor;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 95%;
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), color 1s cubic-bezier(0.23, 1, 0.32, 1), background 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-buttons button:hover {
  opacity: 1;
  background-size: 100% 1px;
}
.filter-buttons button.current, .filter-buttons button.active {
  opacity: 1;
  background-size: 100% 1px;
}
.filter-buttons button.current:hover, .filter-buttons button.active:hover {
  background-size: 0 1px;
}

.loadmore-button-block {
  text-align: center;
}
.loadmore-button-block .loadmore-button {
  cursor: pointer;
}

.blog-item .wrap {
  position: relative;
}

.blog-area {
  position: relative;
}

.blog-area.blog-grid .entry-thumb::before,
.blog-area.blog-carousel .entry-thumb::before {
  padding-top: 65%;
}

.blog-area.style-overlay .wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog-area.style-overlay .entry-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.blog-area.style-overlay .entry-thumb::before {
  display: none;
}
.blog-area.style-overlay .entry-thumb::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s;
}
.blog-area.style-overlay .blog-item:hover .entry-thumb::after {
  opacity: 1;
}
.blog-area.style-overlay .entry-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.6) 85%);
  color: #fff;
}
.blog-area.style-overlay .entry-caption .entry-date {
  color: currentColor;
}

.blog-area.blog-packery .blog-item {
  margin-bottom: 30px;
}
.blog-area.blog-packery .wrap::before {
  content: "";
  display: block;
  padding-top: 80%;
}
@media (min-width: 1024px) {
  .blog-area.blog-packery .wrap::before {
    padding-top: calc(40% - 15px);
  }
}
.blog-area.blog-packery .blog-item:nth-of-type(1) .wrap::before {
  padding-top: 80%;
}
.blog-area.blog-packery .entry-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.blog-area.blog-packery .entry-thumb::before {
  display: none;
}
.blog-area.blog-packery .entry-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  transition: opacity 0.2s;
}
.blog-area.blog-packery .entry-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  color: #fff;
}
.blog-area.blog-packery .entry-caption .entry-date {
  color: currentColor;
}

/* Brands
 * ------------------------------------------- */
.pt-brands {
  position: relative;
}
.pt-brands-grid {
  display: grid;
  grid-template-columns: repeat(var(--pt-cols, 6), 1fr);
  gap: var(--pt-gap, 30px);
  align-items: center;
  text-align: center;
}
.pt-brands-grid > div {
  position: relative;
}
.pt-brands .swiper-wrapper {
  align-items: center;
}

.pt-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-brand img {
  transition: opacity 0.4s, visibility 0.4s;
}
.pt-brand img + img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pt-brand.has-hover .pt-brand-inner {
  cursor: pointer;
}
.pt-brand.has-hover .pt-brand-inner:hover img {
  opacity: 0;
  visibility: hidden;
}
.pt-brand.has-hover .pt-brand-inner:hover img + img {
  opacity: 1;
  visibility: visible;
}

/* Cart
 * ------------------------------------------- */
.pt-cart-opener:hover .pt-cart-minicart {
  opacity: 1;
  visibility: visible;
}
.pt-cart-link {
  font-size: 15px;
  font-weight: 500;
}
.pt-cart-link .pt-cart-text {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.pt-cart-link:hover .pt-cart-text {
  background-size: 100% 1px;
}
.pt-cart-minicart {
  --submenu-margin: 18px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  position: absolute;
  top: calc(100% + var(--submenu-margin));
  right: 0;
  width: 350px;
  padding: 32px;
  background-color: #ECF1F3;
  transition: opacity 0.3s, visibility 0.3s;
}
.pt-cart-minicart::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: var(--submenu-margin);
}

/* Contact form 7
 * ------------------------------------------- */
.pt-contact-form-7 {
  position: relative;
}
.pt-contact-form-7 label {
  cursor: pointer;
  display: inline-block;
}
.pt-contact-form-7 .wpcf7-spinner {
  display: none !important;
}
.pt-contact-form-7 .wpcf7 form .wpcf7-response-output {
  margin: 30px 0 0;
}
.pt-contact-form-7 .wpcf7-not-valid-tip {
  margin-top: 6px;
}
.pt-contact-form-7 .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.pt-contact-form-7 .wpcf7-list-item:not(:last-child) {
  margin-bottom: 2px;
}
.pt-contact-form-7 .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 6px;
}
.pt-contact-form-7 input[type=radio] {
  appearance: none;
  opacity: 0.6;
  position: relative;
  top: 1px;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.pt-contact-form-7 input[type=radio]:checked {
  opacity: 1;
}
.pt-contact-form-7 input[type=radio]::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  margin-top: 3px;
  margin-left: 3px;
  border-radius: 50%;
  background-color: currentColor;
  transform: scale(0);
  transition: transform 0.4s;
}
.pt-contact-form-7 input[type=radio]:checked::before {
  transform: scale(1);
}
.pt-contact-form-7 input[type=radio] + .wpcf7-list-item-label {
  opacity: 0.6;
}
.pt-contact-form-7 input[type=radio]:checked + .wpcf7-list-item-label {
  opacity: 1;
}

/* Heading
 * ------------------------------------------- */
.pt-heading {
  isolation: isolate;
}
.pt-heading-title {
  position: relative;
  margin: 0;
  display: inline-block;
  font-family: var(--font-secondary);
}
.pt-heading-subtitle {
  margin-bottom: 12px;
  color: var(--color-accent);
  font-family: Quentin;
  font-size: 26px;
}
.pt-heading-decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.pt-heading-decor img,
.pt-heading-decor i {
  position: relative;
}
.pt-heading-decor.top {
  top: 0;
}
.pt-heading-decor.middle {
  top: 50%;
}
.pt-heading-decor.middle img {
  transform: translateY(-50%);
}
.pt-heading-decor.bottom {
  bottom: 0;
}
.pt-heading-decor.left {
  left: 0;
}
.pt-heading-decor.center {
  left: 50%;
}
.pt-heading-decor.center img {
  transform: translateX(-50%);
}
.pt-heading-decor.right {
  right: 0;
}
.pt-heading-decor.middle.center {
  transform-origin: 0% 0%;
}
.pt-heading-decor.middle.center img {
  transform: translate(-50%, -50%);
}

/* Icon Box
 * ------------------------------------------- */
.pt-icon-box-items {
  position: relative;
}
.pt-icon-box-items .swiper-container {
  overflow: visible;
}
.pt-icon-box-items .swiper-slide {
  pointer-events: none;
}
.pt-icon-box-items .swiper-slide-visible {
  pointer-events: auto;
}
.pt-icon-box-items.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-icon-box-items.layout-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pt-icon-box-items.position-before-content .pt-icon-box {
  display: flex;
  align-items: start;
  gap: 16px;
}
.pt-icon-box-items.position-before-content .pt-icon-box-icon {
  margin-bottom: 0;
}
.pt-icon-box-items.position-before-title .title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pt-icon-box-items.position-before-title .pt-icon-box-icon,
.pt-icon-box-items.position-before-title .pt-icon-box-title {
  margin-bottom: 0;
}
.pt-icon-box-items.position-inline .pt-icon-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pt-icon-box-items.position-inline .pt-icon-box-icon {
  margin-bottom: 0;
}
.pt-icon-box-items.position-inline .pt-icon-box-title {
  margin-bottom: 0;
}

.pt-icon-box {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, background-color 0.3s;
}
.pt-icon-box-icon {
  margin-bottom: 8px;
  display: inline-block;
  vertical-align: top;
  font-size: 32px;
  transition: color 0.3s, background-color 0.3s;
}
.pt-icon-box-icon i,
.pt-icon-box-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}
.shape-square .pt-icon-box-icon {
  padding: 0.5em;
  background-color: #B8BCD1;
}
.shape-circle .pt-icon-box-icon {
  padding: 0.5em;
  border-radius: 50%;
  background-color: #B8BCD1;
}
.pt-icon-box-title {
  margin-bottom: 18px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  font-weight: 500;
  transition: color 0.3s;
}
.pt-icon-box-separator {
  opacity: 0.2;
  font-size: 0;
  transition: color 0.3s;
}
.pt-icon-box-separator div {
  display: inline-block;
  width: 50px;
  height: 1px;
  margin-top: 12px;
  margin-bottom: -10px;
  background-color: currentColor;
}
.pt-icon-box-text {
  transition: color 0.3s;
}
.pt-icon-box-button {
  margin-top: 26px;
  transition: border 0.3s, background 0.3s, color 0.3s;
}
.pt-icon-box-hover-image {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}
.pt-icon-box-hover-image img {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-icon-box:hover .pt-icon-box-hover-image {
  opacity: 1;
  visibility: visible;
}

.swiper-slide-active .pt-icon-box-hover-image {
  opacity: 1;
  visibility: visible;
}

/* Portfolio
 * ------------------------------------------- */
.portfolio-block .wrap {
  position: relative;
}
.portfolio-block .grid-sizer {
  position: absolute;
}
.portfolio-block .portfolio-item {
  margin-bottom: 30px;
}
.portfolio-block .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-block.popup-gallery .link {
  isolation: isolate;
}
.portfolio-block.popup-gallery .link::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 32px;
  transition: opacity 0.3s, visibility 0.3s;
}
.portfolio-block.popup-gallery .link i {
  z-index: 2;
  position: relative;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 32px;
  transition: opacity 0.3s, visibility 0.3s;
}
.portfolio-block .portfolio-item .wrap:hover .link::before,
.portfolio-block .portfolio-item .wrap:hover .link i {
  opacity: 1;
  visibility: visible;
}

.portfolio-type-grid .img,
.portfolio-type-carousel .img {
  overflow: hidden;
}
.portfolio-type-grid .img div,
.portfolio-type-carousel .img div {
  padding-bottom: 65%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.portfolio-type-grid.orientation-portrait .img div,
.portfolio-type-carousel.orientation-portrait .img div {
  padding-bottom: 125%;
}
.portfolio-type-grid.orientation-portrait .entry-thumb::before,
.portfolio-type-carousel.orientation-portrait .entry-thumb::before {
  padding-top: 125%;
}
.portfolio-type-grid.orientation-cube .img div,
.portfolio-type-carousel.orientation-cube .img div {
  padding-bottom: 100%;
}
.portfolio-type-grid.orientation-cube .entry-thumb::before,
.portfolio-type-carousel.orientation-cube .entry-thumb::before {
  padding-top: 100%;
}

.portfolio-type-justified .portfolio-item {
  position: relative;
  width: 100%;
  margin: 0;
}
@media (min-width: 600px) {
  .portfolio-type-justified .portfolio-item {
    flex: 0 0 58.33331%;
    max-width: 58.33331%;
  }
}

.portfolio-type-justified .portfolio-item .wrap {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
}

.portfolio-type-justified .portfolio-item::before {
  content: "";
  display: block;
  padding-bottom: 62.13592%;
}

@media (min-width: 600px) {
  .portfolio-type-justified .portfolio-item:nth-child(4n+3),
.portfolio-type-justified .portfolio-item:nth-child(4n+4) {
    flex: 0 0 41.66665%;
    max-width: 41.66665%;
  }
}

@media (min-width: 600px) {
  .portfolio-type-justified .portfolio-item:nth-child(4n+3)::before,
.portfolio-type-justified .portfolio-item:nth-child(4n+4)::before {
    padding-bottom: 87%;
  }
}

.portfolio-type-justified .portfolio-item .img div,
.portfolio-type-justified .portfolio-item .entry-thumb {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.portfolio-type-justified .portfolio-item .img div {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-block .wrap {
  position: relative;
}
.portfolio-block.portfolio-type-grid .entry-thumb, .portfolio-block.portfolio-type-justified .entry-thumb {
  position: relative;
}
.portfolio-block.portfolio-type-grid .entry-thumb::before, .portfolio-block.portfolio-type-justified .entry-thumb::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.portfolio-block.portfolio-type-grid .entry-thumb img, .portfolio-block.portfolio-type-justified .entry-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-block .entry-caption {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.portfolio-block .entry-caption .entry-title {
  pointer-events: auto;
  margin: 0 0 8px;
  font-family: Quentin;
  font-size: 32px;
}
.portfolio-block .entry-caption .entry-more {
  pointer-events: auto;
}

.portfolio-block.caption-style-1 .entry-caption {
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s, visibility 0.3s;
}
.portfolio-block.caption-style-1 .entry-title {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.portfolio-block.caption-style-1 .entry-more {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.portfolio-block.caption-style-1 .wrap:hover .entry-caption {
  opacity: 1;
  visibility: visible;
}
.portfolio-block.caption-style-1 .wrap:hover .entry-title,
.portfolio-block.caption-style-1 .wrap:hover .entry-more {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-block.caption-style-2 .entry-caption {
  isolation: isolate;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.6) 85%);
}
.portfolio-block.caption-style-2 .entry-caption::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.4s;
}
.portfolio-block.caption-style-2 .entry-title {
  transform: translateY(35px);
  transition: transform 0.4s;
}
.portfolio-block.caption-style-2 .entry-more {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}
.portfolio-block.caption-style-2 .wrap:hover .entry-caption::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.portfolio-block.caption-style-2 .wrap:hover .entry-title {
  transform: translateY(0);
}
.portfolio-block.caption-style-2 .wrap:hover .entry-more {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-block.caption-style-3 .entry-caption {
  opacity: 0;
  visibility: hidden;
  justify-content: flex-end;
  transition: opacity 0.3s, visibility 0.3s;
}
.portfolio-block.caption-style-3 .entry-title {
  opacity: 0;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h6);
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.portfolio-block.caption-style-3 .entry-more {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.portfolio-block.caption-style-3 .wrap:hover .entry-caption {
  opacity: 1;
  visibility: visible;
}
.portfolio-block.caption-style-3 .wrap:hover .entry-title,
.portfolio-block.caption-style-3 .wrap:hover .entry-more {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-type-justified .row.isotope {
  margin-top: -15px;
}

.portfolio-type-carousel .swiper-container {
  overflow: visible;
}
.portfolio-type-carousel .swiper-slide {
  pointer-events: none;
}
.portfolio-type-carousel .swiper-slide-visible {
  pointer-events: auto;
}
.portfolio-type-carousel .portfolio-item {
  margin-bottom: 0;
}

/* Pricing Table
 * ------------------------------------------- */
.pt-pricing-plans-tabs {
  display: flex;
  border-bottom: 2px solid #E2EAED;
}
@media (max-width: 767px) {
  .pt-pricing-plans-tabs {
    flex-direction: column;
  }
}
.pt-pricing-plans-tabs-item {
  cursor: pointer;
  position: relative;
  opacity: 0.4;
  flex: 1;
  padding: 17px 30px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  font-weight: 500;
  text-align: center;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pt-pricing-plans-tabs-item:hover {
  opacity: 1;
}
.pt-pricing-plans-tabs-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6D94A3;
  transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pt-pricing-plans-tabs-item.pt-active {
  opacity: 1;
}
.pt-pricing-plans-tabs-item.pt-active::after {
  width: 100%;
}
.pt-pricing-plans-tabs-item:hover::after {
  width: 100%;
}
.pt-pricing-plans-content {
  position: relative;
  padding-top: 30px;
  display: none;
}
@media (min-width: 768px) {
  .pt-pricing-plans-content {
    padding-top: 96px;
  }
}
.pt-pricing-plans-content.pt-active {
  display: block;
}
.pt-pricing-plans-title {
  margin-bottom: 12px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  font-weight: 500;
}
.pt-pricing-plans-price .before-price,
.pt-pricing-plans-price .after-price {
  opacity: 0.5;
  font-size: 14px;
}
.pt-pricing-plans-price .before-price {
  margin-right: 8px;
}
.pt-pricing-plans-price .price {
  font-family: Quentin;
  font-size: var(--font-size-h1);
}
.pt-pricing-plans-separator {
  opacity: 0.4;
  width: 160px;
  height: 1px;
  margin: 24px 0;
  background-color: #6D94A3;
}
.pt-pricing-plans-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .pt-pricing-plans-options {
    padding-right: 50%;
  }
}
.pt-pricing-plans-options div::before {
  content: "·";
  margin-right: 10px;
}
.pt-pricing-plans-button {
  margin-top: 40px;
}
.pt-pricing-plans-image {
  overflow: hidden;
  position: relative;
}
.pt-pricing-plans-image::before {
  content: "";
  display: block;
}
.pt-pricing-plans-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-pricing-plans-image.primary {
  width: 100%;
  margin-bottom: 30px;
  border-top-right-radius: 175px;
  color: #C48F56;
  box-shadow: 10px -10px 0 0;
}
@media (min-width: 768px) {
  .pt-pricing-plans-image.primary {
    position: absolute;
    top: 40px;
    right: 0;
    width: 350px;
  }
}
.pt-pricing-plans-image.primary::before {
  padding-top: 50%;
}
@media (min-width: 768px) {
  .pt-pricing-plans-image.primary::before {
    padding-top: 125%;
  }
}
.pt-pricing-plans-image.secondary {
  width: 100%;
  margin-bottom: 30px;
  border-top-left-radius: 110px;
}
@media (min-width: 768px) {
  .pt-pricing-plans-image.secondary {
    position: absolute;
    top: 40px;
    right: 380px;
    width: 350px;
  }
}
.pt-pricing-plans-image.secondary::before {
  padding-top: 50%;
}
@media (min-width: 768px) {
  .pt-pricing-plans-image.secondary::before {
    padding-top: 65%;
  }
}

/* Pricing Table
 * ------------------------------------------- */
.pt-pricing-tables .swiper-container {
  overflow: visible;
}
.pt-pricing-tables .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.pt-pricing-tables .swiper-slide-visible {
  opacity: 1;
  visibility: visible;
}

.pt-pricing-table {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  padding: 53px 48px 64px;
  background-color: #E6EDEF;
  transition: color 0.3s, background-color 0.3s;
}
.pt-pricing-table-price {
  overflow: hidden;
  height: 70px;
  font-family: Quentin;
  font-size: 70px;
  line-height: 70px;
  text-align: center;
}
.pt-pricing-table-price div {
  transition: margin 0.5s;
}
.is-active .pt-pricing-table-price div:first-child {
  margin-top: -70px;
}
.pt-pricing-table-title {
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h6);
  font-weight: 500;
  text-align: center;
}
.pt-pricing-table-options {
  margin-top: 20px;
}
.pt-pricing-table-options .option-item:not(:last-child) {
  margin-bottom: 8px;
}
.pt-pricing-table-options .option-item.exclude {
  opacity: 0.4;
}
.pt-pricing-table-options .option-item i {
  vertical-align: middle;
}
.pt-pricing-table-button {
  margin-top: var(--spacing-base);
  text-align: center;
}
.pt-pricing-table-sticker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  padding: 5px 0;
  background-color: #C48F56;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.pt-pricing-table-sticker-wrapper {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}
.pt-pricing-table-image img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-pricing-table-switcher {
  margin-bottom: 40px;
  text-align: center;
}
.pt-pricing-table-switcher button {
  cursor: default;
  margin-bottom: 14px;
  opacity: 0.35;
  font-size: 14px;
  font-weight: 500;
}
.pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 1;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 0.35;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(2) {
  opacity: 1;
}
.pt-pricing-table-switcher span {
  opacity: 0.35;
}
.pt-pricing-table-toggle {
  cursor: pointer;
  position: relative;
  width: 80px;
  height: 16px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #D6E1E5;
}
.pt-pricing-table-toggle::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #6D94A3;
  transition: transform 0.3s;
}
.is-active .pt-pricing-table-toggle::before {
  transform: translateX(36px);
}

/* Products
 * ------------------------------------------- */
.product-block .woocommerce ul.products li.product .star-rating {
  display: none;
}

.load-items-area {
  display: none;
}

/* Progress Bar
 * ------------------------------------------- */
.pt-progress-bar-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
}
.pt-progress-bar-line-wrapper {
  height: 6px;
  display: block;
  border-radius: 3px;
  background-color: #EAEAEA;
}
.pt-progress-bar-line {
  width: 0;
  height: 100%;
  border-radius: 3px;
  background-color: var(--color-accent);
  transition: width 1s ease-in-out;
}

/* Rating
 * ------------------------------------------- */
.pt-rating {
  display: flex;
  gap: 10px;
}
.pt-rating i {
  position: relative;
  top: 3px;
  display: inline-block;
  color: var(--color-border);
  font-style: normal;
}
.pt-rating i::before {
  content: "★";
  display: block;
  font-size: inherit;
  font-family: inherit;
  position: absolute;
  overflow: hidden;
  color: #f0ad4e;
  top: 0;
  left: 0;
}
.pt-rating .pt-star-empty::before {
  content: none;
}
.pt-rating .pt-star-1::before {
  width: 10%;
}
.pt-rating .pt-star-2::before {
  width: 10%;
}
.pt-rating .pt-star-3::before {
  width: 30%;
}
.pt-rating .pt-star-4::before {
  width: 40%;
}
.pt-rating .pt-star-5::before {
  width: 50%;
}
.pt-rating .pt-star-6::before {
  width: 60%;
}
.pt-rating .pt-star-7::before {
  width: 70%;
}
.pt-rating .pt-star-8::before {
  width: 80%;
}
.pt-rating .pt-star-9::before {
  width: 90%;
}
.pt-rating-title {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
}

/* Services
 * ------------------------------------------- */
.pt-services .swiper-container {
  overflow: visible;
}
.pt-services .swiper-slide {
  pointer-events: none;
}
.pt-services .swiper-slide-visible {
  pointer-events: auto;
}
.pt-services.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-services.style-text-on-hover .pt-service {
  position: relative;
}
.pt-services.style-text-on-hover .pt-service::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.pt-services.style-text-on-hover .pt-service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.pt-services.style-text-on-hover .pt-service-image img {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-services.style-text-on-hover .pt-service-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: opacity 0.3s, visibility 0.3s;
}
.pt-services.style-text-on-hover .pt-service:hover .pt-service-content {
  opacity: 1;
  visibility: visible;
}
.pt-services.style-text-overlay .pt-service {
  position: relative;
}
.pt-services.style-text-overlay .pt-service::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.pt-services.style-text-overlay .pt-service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.pt-services.style-text-overlay .pt-service-image img {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-services.style-text-overlay .pt-service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.pt-service-image {
  position: relative;
  margin-bottom: 30px;
}
.pt-service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-service-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.pt-service-title {
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  font-weight: 500;
}
.pt-service-separator {
  margin: 12px 0;
  opacity: 0.5;
  font-size: 0;
  line-height: 1;
}
.pt-service-separator div {
  vertical-align: middle;
  width: 50px;
  height: 1px;
  display: inline-block;
  background-color: currentColor;
}
.pt-service-button {
  margin-top: 12px;
}
.pt-service .pt-service-separator + .pt-service-button {
  margin-top: 0;
}

/* Simple Links
 * ------------------------------------------- */
.pt-simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 30px;
}
.pt-simple-links a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 95%;
  transition: background 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.pt-simple-links a:hover {
  background-size: 100% 1px;
}

/* Slider
 * ------------------------------------------- */
.pt-slider {
  position: relative;
  height: 100vh;
  min-height: 800px;
}
.pt-slider .swiper-container {
  height: 100%;
}
.pt-slider .pt-swiper-arrows {
  position: absolute;
  top: 0;
  left: calc((100% - 1140px) / 2);
  width: 1140px;
  height: 100%;
  margin: 0 auto;
  color: #fff;
}
.pt-slider.arrows-position-outside .pt-swiper-arrows {
  left: 0;
  width: 100%;
}
.pt-slider.arrows-position-outside .pt-swiper-arrows .pt-swiper-button-prev {
  left: 30px;
}
.pt-slider.arrows-position-outside .pt-swiper-arrows .pt-swiper-button-next {
  right: 30px;
}

.pt-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.pt-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-slide-image::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-slide-content-wrapper {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 1140px;
  padding: 48px 15px;
}
.pt-slide-content {
  margin: 0 auto;
}
.pt-slide-subtitle {
  margin-bottom: 18px;
  font-family: Quentin;
  font-size: 32px;
}
.pt-slide-title {
  isolation: isolate;
  position: relative;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h1);
  font-weight: 500;
}
.pt-slide-title-bg-text {
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  color: var(--color-accent);
  font-family: Quentin;
  font-size: 128px;
}
.pt-slide-text {
  margin-top: 18px;
}
.pt-slide-buttons {
  display: inline-flex;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .style-split .pt-slide-content-wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .style-split .pt-slide-content-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 4fr 3fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .style-split .pt-slide-split-image {
    max-width: 60%;
  }
}

.pt-slider-thumbs {
  max-width: 1140px;
  padding: 0 10px;
  margin-top: -75px;
  margin-right: auto;
  margin-left: auto;
}

.pt-slider-thumb {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}
.pt-slider-thumb::before {
  content: "";
  display: block;
  height: 150px;
}
.pt-slider-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.pt-slider-pagination {
  position: static;
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 15px 40px;
  color: #fff;
}
.pt-slider-pagination-wrapper {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.pt-slider-pagination span {
  opacity: 0.6;
}
.pt-slider-pagination .current {
  opacity: 1;
  font-weight: 500;
}
.pt-slider-pagination.style-1 {
  gap: 20px;
}
.pt-slider-pagination.style-1 .separator {
  width: 120px;
  height: 1px;
  background-color: currentColor;
}
.pt-slider-pagination.style-2 {
  gap: 12px;
}
.pt-slider-pagination.style-2 .separator::before {
  content: "/";
}

.pt-slider-social {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.pt-slider-social-wrapper {
  user-select: none;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
}
.pt-slider-social a {
  user-select: auto;
  pointer-events: auto;
  opacity: 0.6;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #000;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  transition: opacity 0.4s;
}
.pt-slider-social a:hover {
  opacity: 1;
}
.pt-slider-social.has-separator::before {
  content: "";
  width: 65px;
  height: 1px;
  background-color: #fff;
}

.pt-slide-title,
.pt-slide-subtitle,
.pt-slide-title-bg-text,
.pt-slide-text,
.pt-slide-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
.swiper-slide-active .pt-slide-title,
.swiper-slide-active .pt-slide-subtitle,
.swiper-slide-active .pt-slide-title-bg-text,
.swiper-slide-active .pt-slide-text,
.swiper-slide-active .pt-slide-buttons {
  opacity: 1;
  transform: translateY(0px);
}

.swiper-slide-active .pt-slide-title-bg-text {
  opacity: 0.5;
}

.pt-slide-subtitle,
.pt-slide-title {
  transition-delay: 0.1s;
}

.pt-slide-text {
  transition-delay: 0.2s;
}

.pt-slide-title-bg-text,
.pt-slide-buttons {
  transition-delay: 0.3s;
}

/* Social Links
 * ------------------------------------------- */
.pt-social-links {
  display: flex;
  gap: 20px;
}
.pt-social-links a,
.pt-social-links i {
  transition: color 0.3s, background-color 0.3s;
}
.pt-social-links.pt-shape-circle a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #EAEAF1;
  color: var(--color-accent);
  font-size: 14px;
}
.pt-social-links.pt-shape-circle a:hover {
  background-color: var(--color-accent);
  color: #fff;
}

/* Testimonials
 * ------------------------------------------- */
.pt-testimonials .swiper-container {
  overflow: visible;
}
.pt-testimonials .swiper-slide {
  pointer-events: none;
}
.pt-testimonials .swiper-slide-visible {
  pointer-events: auto;
}
.pt-testimonials.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-testimonials.style-1 .pt-testimonial-rating {
  margin-bottom: 26px;
}
.pt-testimonials.style-1 .pt-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 29px;
}
.pt-testimonials.style-1 .pt-testimonial-image {
  position: relative;
  overflow: hidden;
  width: 48px;
  border-radius: 50%;
}
.pt-testimonials.style-1 .pt-testimonial-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-testimonials.style-1 .pt-testimonial-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-testimonials.style-2 .pt-testimonial {
  position: relative;
}
.pt-testimonials.style-2 .pt-testimonial-rating {
  margin-bottom: 20px;
}
.pt-testimonials.style-2 .pt-testimonial-content {
  padding: 35px;
  background-color: #F3F5F6;
}
@media (min-width: 1024px) {
  .pt-testimonials.style-2 .pt-testimonial-content {
    padding: 54px calc(35% + 48px) 54px 48px;
  }
}
.pt-testimonials.style-2 .pt-testimonial-separator {
  opacity: 0.5;
  margin-top: 22px;
  font-size: 0;
  line-height: 1;
}
.pt-testimonials.style-2 .pt-testimonial-separator div {
  vertical-align: middle;
  width: 50px;
  height: 1px;
  display: inline-block;
  background-color: var(--color-accent);
}
.pt-testimonials.style-2 .pt-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
}
.pt-testimonials.style-2 .pt-testimonial-image {
  position: relative;
  width: 48px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pt-testimonials.style-2 .pt-testimonial-image {
    position: absolute;
    top: -60px;
    right: 0;
    bottom: -60px;
    width: 35%;
    border-radius: 0;
  }
}
.pt-testimonials.style-2 .pt-testimonial-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-testimonials.style-2 .pt-testimonial-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-testimonials.style-3 .pt-testimonial {
  position: relative;
}
.pt-testimonials.style-3 .pt-testimonial-rating {
  margin-bottom: 20px;
}
.pt-testimonials.style-3 .pt-testimonial-content {
  position: relative;
  padding: 35px;
  background-color: #F3F5F6;
}
@media (min-width: 1024px) {
  .pt-testimonials.style-3 .pt-testimonial-content {
    padding: 80px calc(40% + 80px) 80px 80px;
  }
}
@media (min-width: 1024px) {
  .pt-testimonials.style-3 .pt-testimonial-content::before {
    content: "\e900";
    position: absolute;
    top: 50px;
    left: 40px;
    font-family: pticons;
    font-size: 24px;
  }
}
.pt-testimonials.style-3 .pt-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 29px;
}
.pt-testimonials.style-3 .pt-testimonial-meta::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
}
.pt-testimonials.style-3 .pt-testimonial-image {
  position: relative;
  overflow: hidden;
  width: 48px;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .pt-testimonials.style-3 .pt-testimonial-image {
    position: absolute;
    top: -80px;
    right: 0;
    bottom: -80px;
    width: 40%;
    border-radius: 0;
  }
}
.pt-testimonials.style-3 .pt-testimonial-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-testimonials.style-3 .pt-testimonial-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.pt-testimonial {
  position: relative;
  isolation: isolate;
}
.pt-testimonial-content {
  transition: background-color 0.3s;
}
.text-align-center .pt-testimonial-content {
  text-align: center;
}
.text-align-right .pt-testimonial-content {
  text-align: right;
}
.text-align-center .pt-testimonial-meta {
  justify-content: center;
}
.text-align-right .pt-testimonial-meta {
  justify-content: end;
  flex-direction: row-reverse;
}
.pt-testimonial-image {
  transition: border-color 0.3s;
}
.pt-testimonial-author {
  font-family: Quentin;
  font-size: var(--font-size-h4);
  transition: color 0.3s;
}
.pt-testimonial-occupation {
  font-size: 14px;
  transition: color 0.3s;
}
.pt-testimonial-text {
  transition: color 0.3s;
}
.pt-testimonial-rating {
  display: inline-flex;
}

.has-quotes .pt-testimonial-text {
  position: relative;
}
.has-quotes .pt-testimonial-text::before, .has-quotes .pt-testimonial-text::after {
  content: "\e900";
  position: absolute;
  font-family: pticons;
  font-size: 24px;
}
.has-quotes .pt-testimonial-text::before {
  top: -40px;
  left: -30px;
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .has-quotes .pt-testimonial-text::before {
    left: -60px;
  }
}
.has-quotes .pt-testimonial-text::after {
  right: -30px;
  bottom: -40px;
}
@media (min-width: 1024px) {
  .has-quotes .pt-testimonial-text::after {
    right: -60px;
  }
}

/* Text Marquee
 * ------------------------------------------- */
.pt-text-marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h1);
  font-weight: 500;
}
.pt-text-marquee-original, .pt-text-marquee-copy {
  animation: pt-text-marquee var(--duration, 20s) linear infinite;
}
.pt-text-marquee span {
  margin-right: 30px;
}

@keyframes pt-text-marquee {
  0% {
    transform: translateX(0) translateZ(0);
  }
  100% {
    transform: translateX(-100%) translateZ(0);
  }
}
/* Timeline
 * ------------------------------------------- */
.pt-timeline {
  position: relative;
}
.pt-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: var(--color-accent);
}
@media (max-width: 767px) {
  .pt-timeline::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .pt-timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .pt-timeline-item {
    gap: 200px;
  }
}
.pt-timeline-item::before {
  content: "";
  position: absolute;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
@media (max-width: 767px) {
  .pt-timeline-item::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .pt-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }
}
@media (min-width: 768px) {
  .pt-timeline-item:nth-child(even) .pt-timeline-subtitle::after {
    right: 0;
    left: auto;
  }
}
.pt-timeline-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .pt-timeline-item:not(:last-child) {
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .pt-timeline-content {
    width: 50%;
  }
}
.pt-timeline-subtitle {
  position: relative;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-weight: 500;
}
.pt-timeline-subtitle::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: currentColor;
}
.pt-timeline-title {
  margin-bottom: 18px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  font-weight: 500;
}
.pt-timeline-image {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .pt-timeline-image {
    width: 100%;
    margin-bottom: var(--spacing-base);
  }
}
.pt-timeline-image::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.pt-timeline-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Video Gallery
 * ------------------------------------------- */
.pt-video-gallery {
  isolation: isolate;
  position: relative;
  padding: 30px;
  color: #fff;
}
@media (min-width: 768px) {
  .pt-video-gallery {
    padding: 70px 64px 100px;
  }
}
.pt-video-gallery::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.pt-video-gallery-heading {
  margin-bottom: 24px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h4);
  font-weight: 500;
}
@media (min-width: 768px) {
  .pt-video-gallery-heading {
    font-size: var(--font-size-h3);
  }
}
.pt-video-gallery-image {
  user-select: none;
  pointer-events: none;
  opacity: 0;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pt-video-gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-active .pt-video-gallery-image {
  opacity: 1;
}
.pt-video-gallery-link {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 768px) {
  .pt-video-gallery-link {
    top: 40px;
    right: 48px;
  }
}
.pt-active .pt-video-gallery-link {
  opacity: 1;
  visibility: visible;
}
.pt-video-gallery-titles {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}
.pt-video-gallery-title {
  cursor: pointer;
  opacity: 0.6;
  font-family: var(--font-secondary);
  font-size: var(--font-size-h6);
  font-weight: 500;
  transition: opacity 0.4s ease-in;
}
@media (min-width: 768px) {
  .pt-video-gallery-title {
    font-size: var(--font-size-h5);
  }
}
.pt-video-gallery-title::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 16px;
  background-color: currentColor;
}
@media (min-width: 768px) {
  .pt-video-gallery-title::before {
    width: 65px;
  }
}
.pt-video-gallery-title.pt-active {
  opacity: 1;
}
.pt-video-gallery-button {
  margin-top: 44px;
  border-color: currentColor !important;
  color: currentColor !important;
}

/* Video
 * ------------------------------------------- */
.pt-video {
  position: relative;
}
.has-image .pt-video-button-wrapper {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-video-button {
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
.pt-video-button svg {
  margin-left: 3px;
  transition: transform 0.3s ease-in-out;
}
.pt-video-button:hover svg {
  transform: scale(1.1);
}
.pt-video-button path {
  fill: #fff;
}
.pt-video-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-border 1.5s ease-out infinite;
}
.pt-video-image {
  position: relative;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}
.pt-video-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-video-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.pt-video-image::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
