@charset "UTF-8";
/* Default Elementor settings
 * ------------------------------------------- */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 15px;
}

.elementor-widget-container b,
.elementor-widget-container strong {
  font-weight: 500;
}

.elementor-widget-text-editor .elementor-widget-container a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: color 1s cubic-bezier(0.23, 1, 0.32, 1), background 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.elementor-widget-text-editor .elementor-widget-container a:hover {
  background-size: 100% 1.5px;
}

@media (min-width: 768px) {
  .min-height-800 {
    min-height: 800px;
  }
}

.align-content-initial .elementor-widget-wrap {
  align-content: initial;
}

.overflow-hidden .elementor-widget-wrap {
  overflow: hidden;
}

.counter-align-left .elementor-counter .elementor-counter-number-prefix {
  display: none;
}

.counter-align-left .elementor-counter .elementor-counter-title {
  text-align: left;
}

@media (min-width: 1025px) {
  .testimonials-overlay::before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    left: 57%;
    width: 9999em;
    height: 100%;
    background-color: var(--pt-color-bg);
  }
}

.vertical-menu .site-menu > ul {
  flex-direction: column;
  align-items: flex-start;
}

.read-more-margin .blog-area .entry-meta {
  margin-bottom: 0;
}
.read-more-margin .blog-area .entry-title {
  margin-top: 0;
}
.read-more-margin .blog-area .entry-more {
  margin-top: 12px;
}

/* Animations
 * ------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Swiper
 * ------------------------------------------- */
.swiper-overflow-visible .swiper {
  overflow: visible;
}

.swiper-slide {
  margin-bottom: 0 !important;
}

.elementor-widget-wrap.e-swiper-container {
  --e-column-margin-right: 0px !important;
  --e-column-margin-left: 0px !important;
}

/* Swiper navigation */
.pt-swiper-arrows {
  --arrow-size: 26px;
}

.pt-swiper-button-prev,
.pt-swiper-button-next {
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: calc(50% - var(--arrow-size) / 2);
  transition: opacity 0.3s;
}
.pt-swiper-button-prev::before,
.pt-swiper-button-next::before {
  display: block;
  font-family: pticons;
  font-size: var(--arrow-size);
  line-height: var(--arrow-size);
  transition: transform 0.3s;
}
.pt-swiper-button-prev.swiper-button-disabled,
.pt-swiper-button-next.swiper-button-disabled {
  opacity: 0.2;
}

.pt-swiper-button-prev {
  left: -58px;
}
.pt-swiper-button-prev::before {
  content: "\e903";
}
.pt-swiper-button-prev:hover::before {
  transform: translateX(-3px);
}

.pt-swiper-button-next {
  right: -58px;
}
.pt-swiper-button-next::before {
  content: "\e900";
}
.pt-swiper-button-next:hover::before {
  transform: translateX(3px);
}

.arrows-together .pt-swiper-arrows {
  z-index: 2;
  position: absolute;
  display: flex;
  gap: 15px;
}
.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;
}
.arrows-align-bottom-center .pt-swiper-arrows {
  position: static;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .pt-swiper-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .pt-swiper-arrows .pt-swiper-button-prev,
.pt-swiper-arrows .pt-swiper-button-next {
    --arrow-size: 16px;
    position: static;
    transform: none !important;
  }
}
/* Swiper pagination */
.pt-swiper-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-size: 7px;
}
.pt-swiper-pagination .swiper-pagination-bullet {
  background-color: currentColor;
  transition: opacity 0.3s;
}
.pt-swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}
.pt-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Masonry
 * ------------------------------------------- */
.grid-sizer {
  position: absolute;
}

/* Filter
 * ------------------------------------------- */
.filter-buttons {
  margin-bottom: 42px;
}
.filter-buttons .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 44px;
}
.filter-buttons button {
  position: relative;
  color: currentColor;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  transition: color 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-buttons button span {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  background-repeat: no-repeat;
  background-position: left 95%;
  transition: background 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-buttons button:hover span {
  opacity: 1;
  background-size: 100% 1.5px;
}
.filter-buttons button:not(.current):not(.active) {
  opacity: 0.6;
}
.filter-buttons button.current, .filter-buttons button.active {
  font-weight: 600;
}
.filter-buttons button:not(:last-of-type)::after {
  content: "";
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: -22px;
  width: 1px;
  height: 100%;
  background-color: currentColor;
}
.filter-buttons button sup {
  font-size: 9px;
}

/* Load More
 * ------------------------------------------- */
.loadmore-button-block {
  text-align: center;
}
.loadmore-button-block .loadmore-button {
  cursor: pointer;
}

/* Rating
 * ------------------------------------------- */
.pt-rating {
  display: flex;
  gap: 10px;
}
.pt-rating i {
  position: relative;
  display: inline-block;
  color: #FFD36440;
  font-style: normal;
  transition: color 0.3s;
}
.pt-rating i::before {
  content: "★";
  display: block;
  font-size: inherit;
  font-family: inherit;
  position: absolute;
  overflow: hidden;
  color: #FFD364;
  top: 0;
  left: 0;
  transition: color 0.3s;
}
.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%;
}

/* Accordion
 * ------------------------------------------- */
.pt-accordion-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 13px 24px;
  border-radius: 8px;
  background-color: #F2EFEC;
  font-weight: 500;
}
.pt-accordion-title::after {
  content: "\e905";
  font-family: pticons;
  font-weight: 400;
  transform: scale(0.7);
}
.pt-accordion-title.ui-state-active {
  background-color: #D5EBF1;
}
.pt-accordion-title.ui-state-active::after {
  content: "\e90c";
}
.pt-accordion-title:not(:first-child) {
  margin-top: 16px;
}
.pt-accordion-content {
  display: none;
  padding: 24px 24px 18px;
  font-size: 14px;
}

.pt-accordion.style-2 .pt-accordion-title {
  padding: 0;
  background-color: transparent;
  font-family: var(--pt-font-primary);
  font-size: 20px;
  font-weight: 600;
}
.pt-accordion.style-2 .pt-accordion-title::after {
  content: "";
}
.pt-accordion.style-2 .pt-accordion-title span {
  position: relative;
}
.pt-accordion.style-2 .pt-accordion-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF7E3D;
  scale: 0 100%;
  transform-origin: left;
  transition: scale 0.3s;
}
.pt-accordion.style-2 .pt-accordion-title.ui-state-active span::after {
  scale: 100%;
}
.pt-accordion.style-2 .pt-accordion-content {
  padding: 12px 0 0;
}

/* Avatars
 * ------------------------------------------- */
.pt-avatars {
  display: inline-block;
  padding: 4px;
  border-radius: 50px;
  background-color: var(--pt-color-secondary);
}
.pt-avatars .item {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 72px;
  border: 3px solid var(--pt-color-secondary);
  border-radius: 50%;
}
.pt-avatars .item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-avatars .item:not(:first-of-type) {
  margin-left: -22px;
}
.pt-avatars .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-avatars .button {
  display: inline-block;
  vertical-align: middle;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #FFE5A1;
  color: #06070B;
  line-height: 72px;
  font-size: 18px;
  text-align: center;
}
.pt-avatars .item + .button {
  margin-left: 12px;
}

/* Blog
 * ------------------------------------------- */
.blog-block {
  position: relative;
}
.blog-block .wrap {
  position: relative;
}
.blog-block .blog-item {
  margin-bottom: 48px;
}
.blog-block .entry-title {
  font-size: 20px;
  text-transform: capitalize;
}
.blog-block .entry-excerpt {
  font-size: 14px;
}

.blog-block + .pt-swiper-pagination {
  margin-top: 48px;
}

/* Type: Grid */
.blog-type-grid .entry-thumb::before {
  padding-top: 75%;
}

/* Type: Classic */
.blog-type-classic .entry-title {
  font-size: var(--pt-typography-h3-font-size);
  line-height: 1.3;
}

/* Type: List */
@media (min-width: 600px) {
  .blog-type-list .wrap {
    display: grid;
    grid-template-columns: var(--blog-image-width, 180px) 1fr;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 600px) {
  .blog-type-list .entry-thumb {
    margin-bottom: 0;
  }
}
.blog-type-list .entry-thumb::before {
  padding-top: 100%;
}
@media (min-width: 600px) {
  .blog-type-list .entry-caption {
    padding-right: 40px;
  }
}
.blog-type-list .entry-title {
  margin-top: 8px;
}

/* Type: Modern */
.blog-type-modern {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .blog-type-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-type-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-type-modern .grid-sizer {
  display: none;
}
@media (max-width: 1023px) {
  .blog-type-modern .entry-thumb::before {
    padding-top: 75%;
  }
}
.blog-type-modern .blog-item {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .blog-type-modern .blog-item:nth-child(2), .blog-type-modern .blog-item:nth-child(3), .blog-type-modern .blog-item:nth-child(4) {
    margin-bottom: 18px;
    padding-bottom: 44px;
    border-bottom: 1px solid #6C7D9E66;
  }
  .blog-type-modern .blog-item:nth-child(2) .entry-thumb::before, .blog-type-modern .blog-item:nth-child(3) .entry-thumb::before, .blog-type-modern .blog-item:nth-child(4) .entry-thumb::before {
    padding-top: 75%;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .wrap {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-thumb {
    margin-bottom: 0;
    border-radius: 10px;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-thumb::before {
    padding-top: 100%;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-title {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-meta,
.blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-excerpt {
    display: none;
  }
  .blog-type-modern .blog-item:not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .entry-more {
    margin-top: 10px;
  }
}

/* Brands
 * ------------------------------------------- */
.pt-brands {
  position: relative;
  overflow: hidden;
}
.pt-brands-grid {
  display: grid;
  grid-template-columns: repeat(var(--pt-cols, 6), 1fr);
  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;
  padding: 30px 0;
  transition: opacity 0.4s;
}
.pt-brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background-color: #C6D1E633;
}
.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 {
  position: relative;
  display: inline-block;
}
.pt-cart:hover .pt-cart-minicart {
  opacity: 1;
  visibility: visible;
}
.pt-cart-text::before {
  content: "\e908";
  font-family: pticons;
  font-size: 18px;
}
.pt-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  padding: 0 4px;
  min-width: 20px;
  border-radius: 50%;
  background-color: var(--pt-color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
.pt-cart-minicart {
  --submenu-margin: 18px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  position: absolute;
  top: calc(100% + var(--submenu-margin));
  width: 350px;
  padding: 32px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 1.3999999762px 3.25px 0px rgba(76, 58, 58, 0.04), 0px 7px 20px 0px rgba(76, 58, 58, 0.08);
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 1024px) {
  .pt-cart-minicart {
    display: none;
  }
}
.pt-cart-minicart::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: var(--submenu-margin);
}
.pt-cart:not(.on-left) .pt-cart-minicart {
  left: 0;
}
.pt-cart.on-left .pt-cart-minicart {
  right: 0;
}

/* Categories
 * ------------------------------------------- */
.pt-categories {
  position: relative;
}
.pt-categories.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-categories .pt-category-title {
  padding-right: 40px;
  font-family: var(--pt-font-primary);
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.pt-categories .pt-category-subtitle {
  opacity: 0.5;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.pt-categories .pt-category-text {
  margin-top: 20px;
  font-size: 14px;
}

/* Categories Type 2
 * ------------------------------------------- */
.pt-categories-2.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-categories-2 .pt-category {
  position: relative;
  padding: 45px 40px 43px;
  border-radius: 20px;
  background-color: #F2EFEC;
  text-align: center;
}
.pt-categories-2 .pt-category-subtitle {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 500;
}
.pt-categories-2 .pt-category-subtitle span {
  padding: 3px 8px;
  border-radius: 20px;
  background-color: #fff;
}
.pt-categories-2 .pt-category-title {
  font-family: var(--pt-font-primary);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}
.pt-categories-2 .pt-category-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Categories Type 2
 * ------------------------------------------- */
.pt-categories-3 .pt-category::after {
  content: "";
  opacity: 0.1;
  display: block;
  width: 100%;
  height: 1px;
  margin: 12px 0;
  background-color: currentColor;
}
.pt-categories-3 .pt-category:last-of-type::after {
  display: none;
}
.pt-categories-3 .pt-category-title {
  position: relative;
  font-family: var(--pt-font-primary);
  font-weight: 500;
  font-style: italic;
}
.pt-categories-3 .pt-category-title a {
  isolation: isolate;
  display: block;
  padding: 3px 14px 3px 0;
  transition: color 0.3s;
}
.pt-categories-3 .pt-category-title a::before {
  content: "\e900";
  vertical-align: middle;
  opacity: 0.25;
  margin-right: 15px;
  display: inline-block;
  font-family: pticons;
  font-style: normal;
  transform: rotate(90deg);
  transition: opacity 0.3s, transform 0.3s;
}
.pt-categories-3 .pt-category-title a::after {
  content: "";
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: 24px;
  height: 100%;
  border-radius: 6px;
  background-color: #A8C6FD;
  transform: scaleY(0);
  transition: opacity 0.3s, transform 0.3s;
}
.pt-categories-3 .pt-category-title a:hover {
  color: #000;
}
.pt-categories-3 .pt-category-title a:hover::before {
  opacity: 1;
  color: #A8C6FD;
  transform: rotate(0);
}
.pt-categories-3 .pt-category-title a:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

/* Countdown
 * ------------------------------------------- */
.pt-countdown {
  display: grid;
  gap: 20px 60px;
}
@media (min-width: 600px) {
  .pt-countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .pt-countdown {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pt-countdown-item {
  text-align: center;
}
.pt-countdown-title {
  margin-bottom: 20px;
  font-weight: 500;
}
.pt-countdown-digits {
  isolation: isolate;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-family: var(--pt-font-accent);
  font-size: 36px;
  line-height: 48px;
}
.pt-countdown-digits > div {
  padding: 18px 25px;
  border-radius: 3px;
  background-color: #F2EFEC;
}

/* Heading
 * ------------------------------------------- */
.pt-heading {
  isolation: isolate;
}
.pt-heading-title {
  position: relative;
  margin: 0;
  display: inline-block;
  font-family: var(--pt-font-primary);
}
.pt-heading-title span {
  font-family: var(--pt-font-accent);
  font-weight: 400;
}
.pt-heading-subtitle {
  margin-bottom: 24px;
  font-family: var(--pt-font-primary);
  font-size: 12px;
  font-weight: 600;
}
.pt-heading-subtitle::before {
  content: "";
  vertical-align: middle;
  width: 32px;
  height: 1px;
  margin-right: 12px;
  display: inline-block;
  background-color: currentColor;
}
.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-boxes {
  position: relative;
}
.pt-icon-boxes.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-icon-boxes.style-before-content .pt-icon-box {
  display: flex;
  align-items: start;
  gap: 32px;
}
.pt-icon-boxes.style-before-content .pt-icon-box-icon {
  margin-bottom: 0;
}
.pt-icon-boxes.style-before-title .title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pt-icon-boxes.style-before-title .pt-icon-box-icon,
.pt-icon-boxes.style-before-title .pt-icon-box-title {
  margin-bottom: 0;
}
.pt-icon-boxes.style-before-title .pt-icon-box-text {
  margin-top: 16px;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  text-align: center;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box:hover > *:not(.pt-icon-box-icon) {
  opacity: 0.15;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-icon {
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-icon img {
  max-width: 96px;
  transform: scale(0.9);
  transition: transform 0.4s;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box:hover .pt-icon-box-icon {
  opacity: 1;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box:hover .pt-icon-box-icon img {
  transform: scale(1);
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-title {
  margin-bottom: 0;
  transition: opacity 0.3s;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-text {
  margin-top: 6px;
  transition: opacity 0.3s;
}
.pt-icon-boxes.style-icon-on-hover .pt-icon-box-button {
  margin-top: 18px;
  transition: opacity 0.3s;
}
.pt-icon-boxes.style-custom {
  display: flex;
  flex-direction: column-reverse;
}
.pt-icon-boxes.style-custom .swiper-container {
  width: 100%;
  margin-top: -169px;
  padding-top: 169px;
}
.pt-icon-boxes.style-custom .swiper-container.hovered {
  z-index: 3;
}
.pt-icon-boxes.style-custom .pt-icon-box {
  height: auto;
  max-height: 126px;
  overflow: hidden;
  border-radius: 14px;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.pt-icon-boxes.style-custom .pt-icon-box:hover {
  max-height: 295px;
  margin-top: -169px;
}
.pt-icon-boxes.style-custom .pt-icon-box:hover .content-wrapper {
  background-color: #D6FD51;
  color: #000;
}
.pt-icon-boxes.style-custom .pt-icon-box:hover .pt-icon-box-icon {
  background-color: #212121;
}
.pt-icon-boxes.style-custom .content-wrapper {
  padding: 26px 30px;
  background-color: #212121;
  color: #fff;
  transition: background-color 0.4s ease;
}
.pt-icon-boxes.style-custom .title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pt-icon-boxes.style-custom .pt-icon-box-icon {
  margin-bottom: 0;
  background-color: #D6FD51;
  box-shadow: 0px 0px 13px rgba(214, 253, 40, 0.5), 0px 0px 2.1125px rgba(214, 253, 40, 0.25);
}
.pt-icon-boxes.style-custom .pt-icon-box-title {
  margin-bottom: 0;
}
.pt-icon-boxes.style-custom .pt-icon-box-text {
  margin-top: 24px;
}
.pt-icon-boxes.style-custom .pt-icon-box-button {
  width: 100%;
  margin-top: 0;
  padding: 20px 30px;
  background-color: #212121;
  color: #fff;
}
.pt-icon-boxes.style-custom .pt-swiper-arrows {
  position: absolute;
  top: -148px;
  right: 0;
  justify-content: flex-end;
}

.pt-icon-box {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, background-color 0.3s;
}
.pt-icon-box-icon {
  margin-bottom: 30px;
  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;
}
.pt-icon-box-icon svg path {
  transition: fill 0.3s;
}
.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: 12px;
  font-family: var(--pt-font-primary);
  font-size: var(--pt-typography-h5-font-size);
  font-weight: 600;
  text-transform: capitalize;
  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 {
  justify-content: space-between;
  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;
}
.pt-icon-box-additional-icon {
  position: absolute;
  bottom: 48px;
  right: 32px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

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

.has-separator .pt-icon-box {
  overflow: visible;
}
@media (min-width: 768px) {
  .has-separator .pt-icon-box:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -15px;
    width: 1px;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/* Number Box
 * ------------------------------------------- */
.pt-number-boxes {
  position: relative;
}
.pt-number-boxes.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pt-number-box {
  position: relative;
  padding-top: 30px;
}
.pt-number-box-number {
  pointer-events: none;
  position: absolute;
  top: -25px;
  right: 20px;
  color: #D5E3FF;
  font-family: var(--pt-font-accent);
  font-size: 100px;
  line-height: 1.3;
}
.pt-number-box-subtitle {
  opacity: 0.3;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.pt-number-box-title {
  padding-right: 20%;
  font-family: var(--pt-font-primary);
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
}
.pt-number-box-text {
  margin-top: 24px;
  padding-right: 30px;
  font-size: 14px;
}

/* Portfolio
 * ------------------------------------------- */
.portfolio-block .wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.portfolio-block .portfolio-item {
  margin-bottom: 30px;
}
.portfolio-block .entry-caption {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.portfolio-block .entry-caption .entry-cats {
  opacity: 0.7;
  font-family: var(--pt-font-primary);
  font-size: 12px;
  font-weight: 600;
}
.portfolio-block .entry-caption .entry-cats::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-right: 12px;
  background-color: currentColor;
}
.portfolio-block .entry-caption .entry-title {
  pointer-events: auto;
  margin: 0;
  font-family: var(--pt-font-primary);
  font-size: var(--pt-typography-h5-font-size);
  font-weight: 600;
  text-transform: capitalize;
}
.portfolio-block .entry-caption .entry-more {
  pointer-events: auto;
}
.portfolio-block .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.portfolio-type-grid .entry-thumb,
.portfolio-type-carousel .entry-thumb {
  position: relative;
}
.portfolio-type-grid .entry-thumb::before,
.portfolio-type-carousel .entry-thumb::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.portfolio-type-grid .entry-thumb img,
.portfolio-type-carousel .entry-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-type-grid.orientation-portrait .entry-thumb::before,
.portfolio-type-carousel.orientation-portrait .entry-thumb::before {
  padding-top: 125%;
}
.portfolio-type-grid.orientation-cube .entry-thumb::before,
.portfolio-type-carousel.orientation-cube .entry-thumb::before {
  padding-top: 100%;
}

.portfolio-block .entry-thumb {
  overflow: hidden;
}
.portfolio-block .entry-thumb img {
  transition: transform 1s cubic-bezier(0.17, 0.59, 0.05, 0.96);
}
.portfolio-block .entry-caption {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.portfolio-block .entry-cats {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.portfolio-block .entry-title {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.portfolio-block .wrap:hover .entry-thumb img {
  transform: scale(1.03);
}
.portfolio-block .wrap:hover .entry-caption {
  opacity: 1;
  visibility: visible;
}
.portfolio-block .wrap:hover .entry-cats,
.portfolio-block .wrap:hover .entry-title {
  opacity: 1;
  transform: translateY(0);
}

.gallery-block .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-block.popup-gallery .link {
  isolation: isolate;
}
.gallery-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;
}
.gallery-block.popup-gallery .link i {
  z-index: 2;
  position: relative;
  opacity: 0;
  visibility: hidden;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--pt-color-accent);
  color: #000;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  transition: opacity 0.3s, visibility 0.3s;
}
.gallery-block .portfolio-item .wrap:hover .link::before,
.gallery-block .portfolio-item .wrap:hover .link i {
  opacity: 1;
  visibility: visible;
}

/* Pricing Table
 * ------------------------------------------- */
.pt-pricing-table {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  padding: 63px 40px 72px;
  border-radius: 14px;
  background-color: #363434;
  transition: outline-color 0.3s, color 0.3s, background-color 0.3s;
}
.pt-pricing-table-title {
  font-family: var(--pt-font-accent);
  font-size: 24px;
  text-transform: uppercase;
}
.pt-pricing-table-subtitle {
  margin-top: 12px;
  opacity: 0.7;
  font-size: 14px;
}
.pt-pricing-table-price-wrapper {
  margin-top: 52px;
}
.pt-pricing-table-price {
  overflow: hidden;
  display: inline-block;
  height: 60px;
  padding: 0 1px;
  font-family: var(--pt-font-accent);
  font-size: 54px;
  line-height: 70px;
}
.pt-pricing-table-price span {
  display: block;
  transition: margin 0.5s;
}
.is-active .pt-pricing-table-price span:first-child {
  margin-top: -70px;
}
.pt-pricing-table-period {
  position: relative;
  top: -9px;
  margin-left: -6px;
  margin-right: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.pt-pricing-table .discount-percent {
  margin-bottom: 7px;
}
.pt-pricing-table .discount-percent span {
  padding: 3px 6px;
  border-radius: 20px;
  background-color: #CCDEFF;
  color: #06070B;
  font-size: 14px;
  font-weight: 600;
}
.pt-pricing-table .discount-price {
  opacity: 0.15;
  position: relative;
  top: -6px;
  font-family: var(--pt-font-primary);
  font-size: 26px;
  font-weight: 600;
  text-decoration: line-through;
}
.pt-pricing-table-options {
  margin-top: 20px;
}
.pt-pricing-table-options .option-item:not(:last-child) {
  margin-bottom: 12px;
}
.pt-pricing-table-options .option-item.exclude {
  opacity: 0.5;
}
.pt-pricing-table-options .option-item i {
  position: relative;
  top: 1px;
  margin-right: 8px;
}
.pt-pricing-table-options .option-item svg {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 8px;
}
.pt-pricing-table-button {
  display: block;
  margin-top: 30px;
  text-align: center;
}
.pt-pricing-table-button .pt-button {
  width: 100%;
  justify-content: center;
}
.pt-pricing-table-sticker {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 12px;
  border-radius: 25px;
  background-color: #CCDEFF;
  color: #06070B;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.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 {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pt-pricing-table-switcher button {
  cursor: default;
  opacity: 0.3;
  font-weight: 500;
}
@media (max-width: 480px) {
  .pt-pricing-table-switcher button {
    font-size: 14px;
  }
}
.pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 1;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 0.3;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(2) {
  opacity: 1;
}
.pt-pricing-table-toggle {
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 28px;
  border-radius: 15px;
  background-color: #8EAEF9;
}
.pt-pricing-table-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s;
}
.is-active .pt-pricing-table-toggle::before {
  transform: translateX(32px);
}

.pt-pricing-tables.style-2 .pt-pricing-table {
  text-align: center;
}
.pt-pricing-tables.style-2 .pt-pricing-table-header {
  margin: -63px -40px 0;
  padding: 27px 36px;
  background-color: grey;
}
.pt-pricing-tables.style-2 .pt-pricing-table-title {
  text-transform: capitalize;
  font-size: 20px;
}
.pt-pricing-tables.style-2 .pt-pricing-table-subtitle {
  opacity: 1;
  margin-top: 0;
  font-weight: 500;
}
.pt-pricing-tables.style-2 .pt-pricing-table-options {
  margin-top: 34px;
}
.pt-pricing-tables.style-2 .pt-pricing-table-options .option-item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #665C5C;
}
.pt-pricing-tables.style-2 .pt-pricing-table-price-wrapper {
  margin-top: 45px;
}
.pt-pricing-tables.style-2 .pt-pricing-table-button {
  margin-top: 45px;
}

/* Products
 * ------------------------------------------- */
.woocommerce ul.products li.product.swiper-slide {
  margin-bottom: 0;
}

/* Progress Bar
 * ------------------------------------------- */
.pt-progress-bar-content {
  display: flex;
  justify-content: space-between;
  font-family: var(--pt-font-primary);
  font-size: 12px;
  line-height: 30px;
  font-weight: 600;
}
.pt-progress-bar-line-wrapper {
  height: 18px;
  display: block;
  padding: 4px;
  border-radius: 20px;
  background-color: #E0E7F8;
}
.pt-progress-bar-line {
  width: 0;
  height: 100%;
  border-radius: 20px;
  background-color: #8EAEF9;
  transition: width 1s ease-in-out;
}
.pt-progress-bar-percentage {
  font-weight: 700;
}

/* Radial Progress Bar
 * ------------------------------------------- */
.pt-radial-progress-bar {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 599px) {
  .pt-radial-progress-bar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
.pt-radial-progress-bar .circle {
  position: relative;
}
.pt-radial-progress-bar .circle svg {
  transform: rotate(-90deg);
}
.pt-radial-progress-bar .circle svg circle {
  transition: stroke-dashoffset 1s linear;
  stroke-width: 1em;
}
.pt-radial-progress-bar .circle svg .bg {
  stroke: #BDD4FF33;
}
.pt-radial-progress-bar .circle svg .bar {
  stroke: var(--pt-color-secondary);
  transform-origin: center;
}
.pt-radial-progress-bar .circle .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--pt-font-accent);
  font-size: 48px;
}
.pt-radial-progress-bar .content .subtitle {
  opacity: 0.6;
  font-size: 12px;
}
.pt-radial-progress-bar .content .title {
  font-family: var(--pt-font-primary);
  font-size: 20px;
  font-weight: 600;
}
.pt-radial-progress-bar .content .text {
  margin-top: 4px;
  font-size: 12px;
}

/* Search
 * ------------------------------------------- */
.pt-search-toggle {
  cursor: pointer;
  display: inline-block;
}
.pt-search-toggle::before {
  content: "\e904";
  font-family: pticons;
}

/* Services
 * ------------------------------------------- */
.pt-services-1.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-services-1 .pt-service {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.pt-services-1 .pt-service::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.pt-services-1 .pt-service::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000010;
  transition: background-color 0.3s;
}
.pt-services-1 .pt-service-image {
  isolation: isolate;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-services-1 .pt-service-image::after {
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 16.08%, rgba(0, 0, 0, 0.6) 95.34%);
}
.pt-services-1 .pt-service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-services-1 .pt-service-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-rows: auto 0fr auto;
  padding: 26px 30px;
  border-radius: 20px;
  background-color: #fff;
  color: var(--pt-color-text);
  transition: visibility 0.3s, opacity 0.3s, top 0.3s, grid-template-rows 0.3s;
}
.pt-services-1 .pt-service-caption > div {
  overflow: hidden;
}
.pt-services-1 .pt-service-title {
  font-family: var(--pt-font-primary);
  font-size: 20px;
  font-weight: 600;
}
.pt-services-1 .pt-service-text {
  font-size: 14px;
}
.pt-services-1 .pt-service-text > div {
  padding-top: 10px;
  padding-bottom: 12px;
}
.pt-services-1 .pt-service-button {
  z-index: 1;
  position: relative;
  justify-content: start;
  margin-top: 6px;
}
.pt-services-1 .pt-service-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-services-1 .pt-service-subtitle {
  position: absolute;
  top: 32px;
  left: 32px;
  padding: 4px 20px;
  border-radius: 30px;
  background-color: #221E1D;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
}
.pt-services-1 .pt-service:hover::after {
  background-color: #00000030;
}
.pt-services-1 .pt-service:hover .pt-service-caption {
  grid-template-rows: auto 1fr auto;
}

/* Services Type 2
 * ------------------------------------------- */
.pt-services-2 {
  overflow: hidden;
  border-radius: 20px;
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .pt-services-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pt-services-2 {
    grid-template-columns: repeat(12, 1fr);
  }
}
.pt-services-2 .pt-service {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.pt-services-2 .pt-service::before {
  content: "";
  display: block;
  padding-top: 80%;
}
.pt-services-2 .pt-service::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000010;
  transition: background-color 0.3s;
}
.pt-services-2 .pt-service.intro {
  background-color: #CCDEFF;
  color: var(--pt-color-text);
}
.pt-services-2 .pt-service.intro::after {
  display: none;
}
.pt-services-2 .pt-service.intro .pt-service-caption {
  justify-content: flex-start;
  padding-top: 48px;
}
.pt-services-2 .pt-service.intro .pt-service-title {
  color: #000;
}
.pt-services-2 .pt-service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-services-2 .pt-service-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 16.08%, rgba(0, 0, 0, 0.6) 95.34%);
}
.pt-services-2 .pt-service-image img {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-services-2 .pt-service-title {
  font-family: var(--pt-font-primary);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
}
.pt-services-2 .pt-service > .pt-service-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px 30px;
  transition: opacity 0.3s, transform 0.3s;
}
.pt-services-2 .pt-service-subtitle {
  margin-bottom: 19px;
}
.pt-services-2 .pt-service-subtitle span {
  display: inline-block;
  padding: 2px 14px;
  border-radius: 20px;
  background-color: #221E1D;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.pt-services-2 .pt-service-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
}
.pt-services-2 .pt-service:not(.intro) .pt-service-caption {
  opacity: 0;
  visibility: hidden;
  top: 15px;
  color: #fff;
  transition: visibility 0.3s, opacity 0.3s, top 0.3s;
}
.pt-services-2 .pt-service-text {
  margin-top: 12px;
  font-size: 14px;
}
.pt-services-2 .pt-service-button {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}
.pt-services-2 .pt-service-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-services-2 .pt-service:hover::after {
  background-color: #00000030;
}
.pt-services-2 .pt-service:hover > .pt-service-title {
  opacity: 0;
  transform: translateY(-15px);
}
.pt-services-2 .pt-service:hover .pt-service-caption {
  opacity: 1;
  visibility: visible;
  top: 0;
}
@media (max-width: 1024px) {
  .pt-services-2 .pt-service:nth-child(1)::before {
    padding-top: 0;
  }
  .pt-services-2 .pt-service:nth-child(1) .pt-service-caption {
    position: sticky;
    padding-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .pt-services-2 .pt-service:nth-child(1) {
    grid-column-end: span 2;
  }
}
@media (min-width: 1024px) {
  .pt-services-2 .pt-service:nth-child(5n+1),
.pt-services-2 .pt-service:nth-child(5n) {
    grid-column-end: span 4;
  }
}
@media (min-width: 1024px) {
  .pt-services-2 .pt-service:nth-child(5n+2),
.pt-services-2 .pt-service:nth-child(5n-1) {
    grid-column-end: span 3;
  }
}
@media (min-width: 1024px) {
  .pt-services-2 .pt-service:nth-child(10n-7),
.pt-services-2 .pt-service:nth-child(10n-2) {
    grid-column-end: span 5;
    grid-row-end: span 2;
  }
}

/* Simple Links
 * ------------------------------------------- */
.pt-simple-links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 30px;
}
.pt-simple-links a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  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% 1.5px;
}

/* Team
 * ------------------------------------------- */
.pt-team {
  position: relative;
}
.pt-team.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pt-team .pt-team-member {
  text-align: center;
}
.pt-team .pt-team-member-title {
  margin-top: 21px;
  font-family: var(--pt-font-primary);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
}
.pt-team .pt-team-member-subtitle {
  opacity: 0.7;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
}
.pt-team .pt-team-member-text {
  opacity: 0.8;
  margin-top: 12px;
}
.pt-team .pt-team-member-text::before {
  content: "";
  opacity: 0.5;
  width: 140px;
  height: 1px;
  display: block;
  margin: 18px 0;
  background-color: currentColor;
}

.pt-team + .pt-swiper-pagination {
  margin-top: 48px;
}

/* Team
 * ------------------------------------------- */
.pt-team-2 {
  position: relative;
}
.pt-team-2 .swiper {
  padding-top: 32px;
  padding-bottom: 60px;
}
.pt-team-2 .pt-swiper-arrows {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.pt-team-2 .pt-swiper-button-prev,
.pt-team-2 .pt-swiper-button-next {
  position: static;
  --arrow-size: 20px;
}
.pt-team-2 .pt-team-member {
  text-align: center;
}
.pt-team-2 .pt-team-member-title {
  position: absolute;
  padding: 6px 16px;
  border-radius: 20px;
  background-color: #383C44;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.pt-team-2 .pt-team-member-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #383C44;
}
.pt-team-2 .pt-team-member-title.top-right {
  top: -32px;
  right: 0;
  transform: translateX(60%);
}
.pt-team-2 .pt-team-member-title.top-right::before {
  bottom: -13px;
  left: -13px;
}
.pt-team-2 .pt-team-member-title.bottom-left {
  bottom: -50px;
  transform: translateX(-90%);
}
.pt-team-2 .pt-team-member-title.bottom-left::before {
  top: -13px;
  right: -13px;
}

.pt-team-2 + .pt-swiper-pagination {
  margin-top: 48px;
}

/* Testimonials
 * ------------------------------------------- */
.pt-testimonials {
  position: relative;
}
.pt-testimonials.layout-grid {
  --columns: 3;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 30px;
}
.pt-testimonials.style-2 .pt-testimonial-content {
  padding: 48px 40px;
  border-radius: 20px;
}
.pt-testimonials.style-2 .pt-testimonial-author {
  font-family: var(--pt-font-text);
}
@media (min-width: 769px) {
  .pt-testimonials.style-2 .pt-testimonial-rating {
    position: absolute;
    top: 45px;
    right: 40px;
    margin-top: 0;
  }
}

.pt-testimonial {
  position: relative;
  isolation: isolate;
}
.pt-testimonial-content {
  padding: 48px 40px 40px;
  border-radius: 20px;
  background-color: #F2EFEC;
  transition: opacity 0.3s, background-color 0.3s;
}
.text-align-center .pt-testimonial-content {
  text-align: center;
}
.text-align-right .pt-testimonial-content {
  text-align: right;
}
.pt-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.text-align-center .pt-testimonial-meta {
  flex-direction: column;
  justify-content: center;
}
.text-align-right .pt-testimonial-meta {
  justify-content: end;
  flex-direction: row-reverse;
}
.pt-testimonial-avatar {
  position: relative;
  overflow: hidden;
  width: 70px;
  border-radius: 50%;
  transition: border-color 0.3s;
}
.pt-testimonial-avatar::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-testimonial-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-testimonial-author {
  font-family: var(--pt-font-primary);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}
.pt-testimonial-occupation {
  font-size: 12px;
  font-weight: 500;
  transition: color 0.3s;
}
.pt-testimonial-text {
  font-size: 18px;
  transition: color 0.3s;
}
.pt-testimonial-rating {
  margin-top: 54px;
  display: inline-flex;
  gap: 5px;
  font-size: 20px;
}

.pt-testimonials.navigation-style-2 .pt-swiper-arrows {
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.pt-testimonials.navigation-style-2 .pt-swiper-button-prev,
.pt-testimonials.navigation-style-2 .pt-swiper-button-next {
  position: static;
  padding: 8px;
  border-radius: 50%;
  background-color: #221E1D;
  color: #fff;
  --arrow-size: 16px;
}

/* 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: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--pt-color-accent);
  color: #fff;
  transition: transform 0.3s ease-in-out;
}
.pt-video-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
  transition: transform 0.3s ease-in-out;
}
.pt-video-button:hover::before {
  transform: scale(0.85);
}
.pt-video-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pt-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;
  border-radius: 20px;
}
.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;
  }
}
