@keyframes eutf_pulse_animation {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 0.8;
  }
  15% {
    opacity: 0.4;
  }
  70% {
    transform: scale(1);
    opacity: 0;
  }
}
/* =============================================================================
- General Elements
============================================================================= */
.gwel-element {
  position: relative;
  z-index: 1;
}

/* =============================================================================
- Overlay Link
============================================================================= */
.gwel-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.gwel-widget-empty-icon {
  background-color: #babfc5;
  font-size: 22px;
  display: block;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

/* =============================================================================
- Pagination
============================================================================= */
.gwel-pagination {
  margin-top: 6%;
}
.gwel-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.gwel-pagination ul li {
  width: 2.250em;
  margin: 0 0.250rem;
}
.gwel-pagination ul li svg {
  display: block;
  width: 2.000rem;
}
.gwel-pagination ul li a {
  transition: color .3s ease;
}
.gwel-pagination .prev {
  display: flex;
  justify-content: flex-start;
}
.gwel-pagination .prev svg {
  transform: rotate(180deg);
}
.gwel-pagination .next {
  display: flex;
  justify-content: flex-end;
}
.gwel-pagination a.prev,
.gwel-pagination a.next {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.gwel-pagination a.prev .gwel-arrow-point,
.gwel-pagination a.next .gwel-arrow-point {
  transform: translateX(-50%);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gwel-pagination a.prev .gwel-arrow-line,
.gwel-pagination a.next .gwel-arrow-line {
  transform: translateX(-100%);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gwel-pagination a.prev:hover .gwel-arrow-point,
.gwel-pagination a.prev:hover .gwel-arrow-line,
.gwel-pagination a.next:hover .gwel-arrow-point,
.gwel-pagination a.next:hover .gwel-arrow-line {
  transform: translateX(0);
}

/* =============================================================================
- Infinite Pagination
============================================================================= */
.gwel-infinite-pagination {
  display: none;
}

.gwel-infinite-button-wrapper {
  text-align: center;
}
.gwel-infinite-button-wrapper .gwel-infinite-button {
  margin-top: 6%;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
  position: relative;
  position: relative;
}
.gwel-infinite-button-wrapper .gwel-infinite-button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 0.143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.gwel-infinite-button-wrapper .gwel-infinite-button:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.gwel-infinite-button-wrapper .gwel-infinite-button.gwel-is-loading {
  animation: gwel_infinite_anim 0.4s infinite ease-in-out both;
}

.gwel-load-more-btn {
  padding: 18px;
  margin-top: 2.000rem;
  text-align: center;
  transition: all 0.3s ease;
  color: inherit;
  border-style: solid;
  border-width: 1px;
  display: block;
  position: relative;
}
.gwel-load-more-btn:hover {
  color: inherit;
}
.gwel-load-more-btn span {
  position: relative;
  z-index: 1;
}
.gwel-load-more-btn.loading span {
  animation: gwel_load_more_anim .6s linear infinite;
}
.gwel-load-more-btn .gwel-progress-bar {
  position: absolute;
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  background-color: currentColor;
  z-index: 0;
  transition: width 1s ease;
}
.gwel-load-more-btn .gwel-progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  white-space: nowrap;
}
.gwel-load-more-btn.loading .gwel-progress-bar {
  width: 5%;
}

.gwel-infinite-page-load {
  display: none;
  /* hidden by default */
  text-align: center;
  margin-top: 6%;
}
.gwel-infinite-page-load .gwel-loader-ellips {
  position: relative;
  width: 88px;
  height: 4px;
  margin: 0 auto;
}
.gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 0.5em;
  border: 2px solid;
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(1), .gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(2) {
  left: 0;
}
.gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(3) {
  left: 32px;
}
.gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(4) {
  left: 64px;
}
.gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(2), .gwel-infinite-page-load .gwel-loader-ellips .gwel-loader-ellips-dot:nth-child(3) {
  animation-name: slide;
}

@keyframes gwel_load_more_anim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gwel_infinite_anim {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes slide {
  to {
    transform: translateX(32px);
  }
}
/* =============================================================================
- Animation
============================================================================= */
.gwel-animated-item {
  transition-behavior: normal, normal;
  transition-duration: 1.25s, 1.25s;
  transition-timing-function: ease, ease;
  transition-delay: var(--animation-delay, 0s), var(--animation-delay, 0s);
  transition-property: transform, opacity;
}
.gwel-animated-item.gwel-slow-animation {
  transition-duration: 2s, 2s;
}
.gwel-animated-item.gwel-fast-animation {
  transition-duration: .75s, .75s;
}
.gwel-animated-item.gwel-fade-in {
  opacity: 0;
}
.gwel-animated-item.gwel-fade-in-up {
  opacity: 0;
  transform: translate(0px, -30px) scale(1);
}
.gwel-animated-item.gwel-fade-in-down {
  opacity: 0;
  transform: translate(0px, 30px) scale(1);
}
.gwel-animated-item.gwel-fade-in-left {
  opacity: 0;
  transform: translate(-30px, 0px) scale(1);
}
.gwel-animated-item.gwel-fade-in-right {
  opacity: 0;
  transform: translate(30px, 0px) scale(1);
}
.gwel-animated-item.gwel-zoom-in {
  opacity: 0;
  transform-origin: left;
  transform: translate(30px, 0px) scale(0.8);
}
.gwel-animated-item.gwel-animated {
  opacity: 1;
  transform: translate(0px, 0px) scale(1);
}

/* Custom Slide Animations */
.fade-in-up-small {
  animation-name: fadeInUpSmall;
}

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    transform: translate(0px, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.fade-in-down-small {
  animation-name: fadeInDownSmall;
}

@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    transform: translate(0px, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.fade-in-left-small {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    transform: translate(-30px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.fade-in-right-small {
  animation-name: fadeInRigthSmall;
}

@keyframes fadeInRigthSmall {
  0% {
    opacity: 0;
    transform: translate(30px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.clipping-up {
  animation-name: clippingUp;
}

@keyframes clippingUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.clipping-down {
  animation-name: clippingDown;
}

@keyframes clippingDown {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.clipping-left {
  animation-name: clippingLeft;
}

@keyframes clippingLeft {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.clipping-right {
  animation-name: clippingRight;
}

@keyframes clippingRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* =============================================================================
- Icon General
============================================================================= */
.gwel-icon {
  line-height: 1;
  position: relative;
  color: var(--gwel-icon--text-c, #b8b8b8);
  font-size: var(--gwel-icon--size, 24px);
  top: var(--gwel-icon--vertical-top, 0px);
  text-align: center;
}
.gwel-icon i {
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.gwel-icon svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: currentColor;
}
.gwel-icon svg g,
.gwel-icon svg path {
  fill: inherit;
}
.gwel-icon.gwel-icon-view-stacked {
  padding: var(--gwel-icon--padding, 0.5em);
  color: var(--gwel-icon--text-c, #ffffff);
  background-color: var(--gwel-icon--background-c, #b8b8b8);
  border-radius: var(--gwel-icon--border-radius, 100%);
}
.gwel-icon.gwel-icon-view-framed {
  padding: var(--gwel-icon--padding, 0.5em);
  color: var(--gwel-icon--text-c, #b8b8b8);
  border: var(--gwel-icon--border-w, 3px) solid var(--gwel-icon--border-c, #f7f7f7);
  background-color: var(--gwel-icon--background-c, transparent);
  border-radius: var(--gwel-icon--border-radius, 100%);
}

/* =============================================================================
- Swiper Arrows
============================================================================= */
.gwel-swiper .gwel-swiper-inner {
  position: relative;
}
.gwel-swiper .gwel-navigation-arrows {
  display: flex;
  justify-content: var(--arrows--horizontal-position);
  gap: var(--arrows--gap, 10px);
}
.gwel-swiper .gwel-navigation-arrows .gwel-button {
  cursor: pointer;
  color: var(--arrows-icon-c, #b8b8b8);
  font-size: var(--arrows-icon-size, 24px);
  padding: var(--arrows-icon-padding, 0.5em);
  text-align: center;
  line-height: 1;
  position: relative;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.gwel-swiper .gwel-navigation-arrows .gwel-button i {
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.gwel-swiper .gwel-navigation-arrows .gwel-button svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: currentColor;
}
.gwel-swiper .gwel-navigation-arrows .gwel-button svg g,
.gwel-swiper .gwel-navigation-arrows .gwel-button svg path {
  fill: inherit;
}
.gwel-swiper .gwel-navigation-arrows .gwel-button.gwel-icon-view-stacked {
  color: var(--arrows-icon-c, #ffffff);
  background-color: var(--arrows-icon-background-c, #000000);
  border-radius: var(--arrows-icon-border-r, 100%);
}
.gwel-swiper .gwel-navigation-arrows .gwel-button.gwel-icon-view-framed {
  color: var(--arrows-icon-c, #b8b8b8);
  border: var(--arrows-icon-border-w, 3px) solid var(--arrows-icon-border-c, #b8b8b8);
  background-color: var(--arrows-icon-background-c, transparent);
  border-radius: var(--arrows-icon-border-r, 100%);
}
.gwel-swiper.gwel-arrows-position-middle .gwel-swiper-inner {
  display: block;
}
.gwel-swiper.gwel-arrows-position-middle .gwel-swiper-inner .gwel-navigation-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
  justify-content: space-between;
  transform: translateY(-50%);
}
.gwel-swiper.gwel-arrows-position-middle .gwel-swiper-inner .gwel-navigation-arrows .gwel-button {
  pointer-events: visible;
  transform: translateY(var(--arrows--vertical-adjustment, 0));
}
.gwel-swiper.gwel-arrows-position-middle .gwel-swiper-inner .gwel-navigation-arrows .gwel-button.gwel-button-prev {
  margin-left: var(--arrows--horizontal-adjustment, 0);
}
.gwel-swiper.gwel-arrows-position-middle .gwel-swiper-inner .gwel-navigation-arrows .gwel-button.gwel-button-next {
  margin-right: var(--arrows--horizontal-adjustment, 0);
}
.gwel-swiper.gwel-arrows-position-top .gwel-navigation-arrows {
  margin-bottom: var(--arrows--vertical-offset, 30px);
}
.gwel-swiper.gwel-arrows-position-bottom .gwel-navigation-arrows {
  margin-top: var(--arrows--vertical-offset, 30px);
}
.gwel-swiper.gwel-arrows-align-left .gwel-navigation-arrows {
  align-self: flex-start;
}
.gwel-swiper.gwel-arrows-align-center .gwel-navigation-arrows {
  align-self: center;
}
.gwel-swiper.gwel-arrows-align-right .gwel-navigation-arrows {
  align-self: flex-end;
}

/* =============================================================================
- Swiper Pagination
============================================================================= */
.gwel-swiper .gwel-pagination {
  position: relative;
  margin-top: var(--pagination--offset, 30px);
  z-index: 10;
  pointer-events: none;
}
.gwel-swiper .gwel-pagination.swiper-pagination-bullets {
  display: flex;
  gap: var(--bullet-gap);
  justify-content: var(--pagination--horizontal-position);
}
.gwel-swiper .gwel-pagination.swiper-pagination-bullets .gwel-bullet {
  pointer-events: visible;
  width: var(--bullet-w, 12px);
  height: var(--bullet-h, 12px);
  background-color: var(--bullet-background-c);
  border-radius: var(--bullet-border-r);
  border: var(--bullet-border-w, 0) solid var(--bullet-border-c);
  cursor: pointer;
  transition: background-color .3s ease, border-color .3s ease;
}
.gwel-swiper .gwel-pagination.swiper-pagination-progressbar {
  background-color: var(--progressbar-background-c);
  height: var(--progressbar-h, 6px);
}
.gwel-swiper .gwel-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--progressbar-active-c);
}

/* =============================================================================
- General Carousel
============================================================================= */
.gwel-swiper.gwel-expan-right .gwel-swiper-carousel {
  margin-right: calc(-1*(100vw - var(--content-width))/2);
  padding-right: calc((100vw - var(--content-width))/2);
}
.gwel-swiper.gwel-expan-left .gwel-swiper-carousel {
  margin-left: calc(-1*(100vw - var(--content-width))/2);
  padding-left: calc((100vw - var(--content-width))/2);
}
.gwel-swiper.gwel-expan-both .gwel-swiper-carousel {
  margin-right: calc(-1*(100vw - var(--content-width))/2);
  margin-left: calc(-1*(100vw - var(--content-width))/2);
  padding-left: calc((100vw - var(--content-width))/2);
  padding-right: calc((100vw - var(--content-width))/2);
}
.gwel-swiper .gwel-carousel {
  align-items: var(--carousel--vertical-align);
}

/* =============================================================================
- Advanced Title
============================================================================= */
.gwel-advance-title.gwel-title-fancy {
  background-color: #E0E0E0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================================================================
- Button
============================================================================= */
.elementor-widget .gwel-btn-wrapper {
  display: flex;
  align-items: center;
}
.elementor-widget .gwel-btn {
  display: inline-flex;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: var(--grve-typography--button-f, inherit);
  font-weight: var(--grve-typography--button-w);
  font-style: var(--grve-typography--button-st, normal);
  text-transform: var(--grve-typography--button-tr);
  font-size: var(--grve-typography--button-s, 16px);
  line-height: 1.000em;
  letter-spacing: var(--grve-typography--button-ls);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
  min-width: min-content;
}
.elementor-widget .gwel-btn:focus {
  text-decoration: none;
}
.elementor-widget .gwel-btn.gwel-btn-fluid {
  width: 100%;
}
.elementor-widget .gwel-btn .gwel-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}
.elementor-widget .gwel-btn .gwel-btn-inner.gwel-icon-right {
  flex-direction: row;
}
.elementor-widget .gwel-btn .gwel-btn-inner.gwel-icon-left {
  flex-direction: row-reverse;
}
.elementor-widget .gwel-btn .gwel-icon {
  text-align: center;
  font-size: var(--gwel-btn-icon--size, 24px);
  top: var(--gwel-btn-icon--vertical-adjust, 0px);
  color: var(--gwel-btn-icon--text-c, currentColor);
  overflow: hidden;
}
.elementor-widget .gwel-btn .gwel-icon.gwel-icon-view-stacked {
  padding: var(--gwel-btn-icon--padding, 0.5em);
  color: var(--gwel-btn-icon--text-c, #ffffff);
  background-color: var(--gwel-btn-icon--background-c, #b8b8b8);
  border-radius: var(--gwel-btn-icon--border-radius, 100%);
}
.elementor-widget .gwel-btn .gwel-icon.gwel-icon-view-framed {
  padding: var(--gwel-btn-icon--padding, 0.5em);
  color: var(--gwel-btn-icon--text-c, #b8b8b8);
  border: var(--gwel-btn-icon--border-w, 3px) solid var(--gwel-btn-icon--border-c, #f7f7f7);
  background-color: var(--gwel-btn-icon--background-c, transparent);
  border-radius: var(--gwel-btn-icon--border-radius, 100%);
}
.elementor-widget .gwel-btn.gwel-btn-underline .gwel-btn-inner {
  position: relative;
}
.elementor-widget .gwel-btn.gwel-btn-underline .gwel-btn-inner:after {
  content: '';
  position: absolute;
  bottom: var(--gwel-btn--underline-offset, -5px);
  width: var(--gwel-btn--underline-w, 100%);
  height: var(--gwel-btn--underline-h, 1px);
  background-color: var(--gwel-btn--underline-c, currentColor);
  transition: background-color .3s ease, width .3s ease, height .3s ease;
}
.elementor-widget .gwel-btn.gwel-btn-underline.gwel-btn-underline-left .gwel-btn-inner:after {
  left: 0;
}
.elementor-widget .gwel-btn.gwel-btn-underline.gwel-btn-underline-right .gwel-btn-inner:after {
  right: 0;
}
.elementor-widget .gwel-btn.gwel-btn-underline.gwel-btn-underline-center .gwel-btn-inner:after {
  left: 50%;
  transform: translateX(-50%);
}
.elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-diagonial svg, .elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-diagonial i {
  animation: gwel_btn_icon_diagonial_animation .5s;
}
.elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-left-right svg, .elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-left-right i {
  animation: gwel_btn_icon_left_right_animation .5s;
}
.elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-right-left svg, .elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-right-left i {
  animation: gwel_btn_icon_right_left_animation .5s;
}
.elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-top-bottom svg, .elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-top-bottom i {
  animation: gwel_btn_icon_top_bottom_animation .5s;
}
.elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-bottom-top svg, .elementor-widget .gwel-btn:hover .gwel-icon.gwel-animation-bottom-top i {
  animation: gwel_btn_icon_bottom_top_animation .5s;
}
.elementor-widget.gwel-btn-solid .gwel-btn {
  border-radius: 2px;
  padding-top: var(--grve-padding--button-tb, 20px);
  padding-bottom: var(--grve-padding--button-tb, 20px);
  padding-left: var(--grve-padding--button-lr, 30px);
  padding-right: var(--grve-padding--button-lr, 30px);
  color: var(--grve-button--text-c, #000000);
  background-color: var(--grve-button--background-c, #ebebeb);
  border-style: solid;
  border-color: transparent;
}
.elementor-widget.gwel-btn-solid .gwel-btn:hover {
  color: var(--grve-button--text-hover-c, #ffffff);
  background-color: var(--grve-button--background-hover-c, #000000);
}
.elementor-widget.gwel-btn-outline .gwel-btn {
  border-radius: 2px;
  padding-top: var(--grve-padding--button-tb, 20px);
  padding-bottom: var(--grve-padding--button-tb, 20px);
  padding-left: var(--grve-padding--button-lr, 30px);
  padding-right: var(--grve-padding--button-lr, 30px);
  color: #000000;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #ebebeb;
}
.elementor-widget.gwel-btn-outline .gwel-btn:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.elementor-widget.gwel-btn-textual .gwel-btn {
  color: #000000;
}
.elementor-widget.gwel-btn-textual .gwel-btn:hover {
  color: #cccccc;
}

@keyframes gwel_btn_icon_diagonial_animation {
  0%,
	100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100%, -100%);
  }
  51% {
    transform: translate(-100%, 100%);
  }
}
@keyframes gwel_btn_icon_left_right_animation {
  0%,
	100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100%, 0);
  }
  51% {
    transform: translate(-100%, 0);
  }
}
@keyframes gwel_btn_icon_right_left_animation {
  0%,
	100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100%, 0);
  }
  51% {
    transform: translate(100%, 0);
  }
}
@keyframes gwel_btn_icon_top_bottom_animation {
  0%,
	100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 100%);
  }
  51% {
    transform: translate(0, -100%);
  }
}
@keyframes gwel_btn_icon_bottom_top_animation {
  0%,
	100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -100%);
  }
  51% {
    transform: translate(0, 100%);
  }
}
/* =============================================================================
- Button
============================================================================= */
.elementor-widget .gwel-adv-btn-wrapper {
  display: flex;
  align-items: center;
}
.elementor-widget.gwel-adv-btn-circle .gwel-btn {
  border-radius: 100%;
  width: var(--gwel-button--size, 200px);
  height: var(--gwel-button--size, 200px);
  color: var(--gwel-button--text-c, #000000);
}
.elementor-widget.gwel-adv-btn-circle .gwel-btn:after {
  content: '';
  position: absolute;
  width: var(--gwel-button-circle--size, 200px);
  height: var(--gwel-button-circle--size, 200px);
  border: var(--gwel-button-border--size, 1px) solid var(--gwel-button--border-c, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: var(--gwel-button--background-c, #ebebeb);
  transition: all .3s ease;
  z-index: 2;
}
.elementor-widget.gwel-adv-btn-circle .gwel-btn .gwel-btn-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: 3;
}

/* =============================================================================
- List Items
============================================================================= */
.gwel-list-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gwel-list-items .gwel-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gwel-list-items .gwel-icon {
  font-size: var(--gwel-icon--size, 12px);
}
.gwel-list-items .gwel-item-separator {
  width: 100%;
  height: 1px;
}

/* =============================================================================
- Pricing List
============================================================================= */
.elementor-widget-gwel-pricing-list .gwel-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.elementor-widget-gwel-pricing-list .gwel-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-title {
  margin: 0;
  padding: 0;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-description {
  margin: 0;
  padding: 0;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-line {
  flex-grow: 1;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #efefef;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-item-image {
  flex-basis: 90px;
  max-width: 90px;
  overflow: hidden;
}
.elementor-widget-gwel-pricing-list .gwel-item img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
.elementor-widget-gwel-pricing-list .gwel-item .gwel-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.elementor-widget-gwel-pricing-list .gwel-item.gwel-has-discount .gwel-item-price {
  text-decoration: line-through;
}
.elementor-widget-gwel-pricing-list .gwel-item-separator {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #efefef;
}

/* =============================================================================
- Slogan
============================================================================= */
.gwel-slogan .gwel-title {
  margin: 0 0 18px 0;
}
.gwel-slogan .gwel-description p {
  display: inline-block;
  margin: 0;
}
.gwel-slogan .gwel-btn {
  margin-top: 30px;
}

/* =============================================================================
- Callout
============================================================================= */
.gwel-callout {
  display: flex;
  gap: 30px;
  background-color: #f7f7f7;
  padding: 30px;
  justify-content: space-between;
}
.gwel-callout .gwel-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gwel-callout .gwel-title {
  margin: 0;
}
.gwel-callout .gwel-description {
  margin: 0;
}

/* =============================================================================
- Icon Box
============================================================================= */
.e-grid .gwel-icon-box {
  height: 100%;
}

.gwel-icon-box.gwel-layout-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gwel-icon-box.gwel-layout-top.gwel-icon-left {
  align-items: flex-start;
  text-align: left;
}
.gwel-icon-box.gwel-layout-top.gwel-icon-right {
  align-items: flex-end;
  text-align: right;
}
.gwel-icon-box.gwel-layout-top.gwel-icon-center {
  align-items: center;
  text-align: center;
}
.gwel-icon-box.gwel-layout-side {
  display: flex;
  align-items: var(--gwel-icon--vertical-align, flex-start);
  gap: 30px;
}
.gwel-icon-box.gwel-layout-side.gwel-icon-left {
  text-align: left;
}
.gwel-icon-box.gwel-layout-side.gwel-icon-right {
  flex-direction: row-reverse;
  text-align: right;
}
.gwel-icon-box.gwel-layout-inline.gwel-icon-left {
  text-align: left;
}
.gwel-icon-box.gwel-layout-inline.gwel-icon-left .gwel-title-wrapper {
  text-align: left;
  align-items: var(--gwel-icon--vertical-align, flex-start);
}
.gwel-icon-box.gwel-layout-inline.gwel-icon-right {
  text-align: right;
}
.gwel-icon-box.gwel-layout-inline.gwel-icon-right .gwel-title-wrapper {
  text-align: right;
  flex-direction: row-reverse;
  align-items: var(--gwel-icon--vertical-align, flex-start);
}
.gwel-icon-box .gwel-title-wrapper {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.gwel-icon-box .gwel-title {
  margin: 0;
  flex: 1;
}
.gwel-icon-box .gwel-title.gwel-title-underline span {
  position: relative;
}
.gwel-icon-box .gwel-title.gwel-title-underline span:after {
  content: '';
  position: absolute;
  bottom: var(--gwel-icon-box--underline-offset, 0px);
  width: var(--gwel-icon-box--underline-w, 100%);
  height: var(--gwel-icon-box--underline-h, 2px);
  background-color: var(--gwel-icon-box--underline-c, currentColor);
  transition: background-color .3s ease, width .3s ease, height .3s ease;
  z-index: -1;
}
.gwel-icon-box .gwel-title.gwel-title-underline.gwel-line-left span:after {
  left: 0;
}
.gwel-icon-box .gwel-title.gwel-title-underline.gwel-line-right span:after {
  right: 0;
}
.gwel-icon-box .gwel-title.gwel-title-underline.gwel-line-center span:after {
  left: 50%;
  transform: translateX(-50%);
}
.gwel-icon-box .gwel-description {
  margin: 0;
}
.gwel-icon-box .gwel-btn {
  margin-top: 30px;
  z-index: 6;
}
.gwel-icon-box .gwel-icon {
  font-size: var(--gwel-icon--size, 60px);
}

/* =============================================================================
- Image Box
============================================================================= */
.gwel-image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gwel-image-box .gwel-title {
  margin: 0 0 18px 0;
}
.gwel-image-box .gwel-description {
  margin: 0;
}
.gwel-image-box .gwel-media {
  width: 100%;
  margin-bottom: 30px;
}
.gwel-image-box .gwel-media img {
  width: 100%;
  display: block;
}
.gwel-image-box .gwel-btn {
  margin-top: 30px;
}

/* =============================================================================
- Image Box
============================================================================= */
.gwel-image-text {
  display: flex;
  align-items: center;
  gap: 60px;
}
.gwel-image-text .gwel-title {
  margin: 0 0 18px 0;
}
.gwel-image-text .gwel-description {
  margin: 0;
}
.gwel-image-text .gwel-media {
  flex: 1;
}
.gwel-image-text .gwel-media img {
  width: 100%;
  display: block;
}
.gwel-image-text .gwel-content {
  flex: 1;
}
.gwel-image-text .gwel-btn {
  margin-top: 30px;
}

/* =============================================================================
- Team
============================================================================= */
.e-con-inner > .elementor-widget-gwel-team {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-team .gwel-media {
  position: relative;
}
.gwel-team .gwel-media img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gwel-team:hover img:nth-child(2) {
  opacity: 1;
}
.gwel-team.gwel-layout-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gwel-team.gwel-layout-1 .gwel-content {
  width: 100%;
}
.gwel-team.gwel-layout-1 .gwel-media {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.gwel-team.gwel-layout-1 .gwel-media img {
  width: 100%;
  max-width: none;
  display: block;
}
.gwel-team.gwel-layout-1 .gwel-description {
  margin: 18px 0 0 0;
  padding: 0;
}
.gwel-team.gwel-layout-1 .gwel-name {
  margin: 0 0 6px 0;
  padding: 0;
}
.gwel-team.gwel-layout-1 .gwel-socials {
  padding: 18px 0 0 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.gwel-team.gwel-layout-1 .gwel-socials a {
  display: block;
  line-height: 1;
  position: relative;
  text-align: center;
  font-size: var(--gwel-icon--size, 24px);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.gwel-team.gwel-layout-2 {
  position: relative;
  overflow: hidden;
}
.gwel-team.gwel-layout-2 .gwel-media {
  position: relative;
  z-index: 1;
  display: block;
}
.gwel-team.gwel-layout-2 .gwel-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gwel-team.gwel-layout-2 .gwel-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.gwel-team.gwel-layout-2 .gwel-bg-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.gwel-team.gwel-layout-2:hover .gwel-bg-overlay {
  opacity: 0 !important;
}
.gwel-team.gwel-layout-2:not(:hover) .gwel-bg-hover-overlay {
  opacity: 0 !important;
}
.gwel-team.gwel-layout-2 .gwel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 30px;
  pointer-events: none;
}
.gwel-team.gwel-layout-2 .gwel-name {
  margin: 0 0 6px 0;
  padding: 0;
}
.gwel-team.gwel-layout-2 .gwel-socials {
  padding: 18px 0 0 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.gwel-team.gwel-layout-2 .gwel-socials a {
  display: block;
  line-height: 1;
  position: relative;
  text-align: center;
  font-size: 24px;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
  pointer-events: visible;
}

/* =============================================================================
- Pricing Table
============================================================================= */
.e-con-inner > .elementor-widget-gwel-pricing-table {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-pricing-table .gwel-title {
  margin: 0 0 12px 0;
  padding: 0;
}
.gwel-pricing-table .gwel-price-wrapper {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.gwel-pricing-table .gwel-price-wrapper .gwel-price {
  display: flex;
  align-items: baseline;
  font-size: 40px;
  font-weight: bold;
}
.gwel-pricing-table .gwel-price-wrapper .gwel-price .gwel-currency {
  font-size: 30px;
}
.gwel-pricing-table .gwel-price-wrapper.gwel-currency-right .gwel-price {
  flex-direction: row-reverse;
}
.gwel-pricing-table .gwel-price-wrapper .gwel-period {
  font-size: 18px;
  margin-left: 6px;
}
.gwel-pricing-table .gwel-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gwel-pricing-table .gwel-item .gwel-item-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gwel-pricing-table .gwel-item-icon {
  font-size: var(--gwel-icon--size, 12px);
}
.gwel-pricing-table .gwel-item-separator {
  width: 100%;
  height: 1px;
}
.gwel-pricing-table .gwel-btn {
  margin-top: 30px;
}

/* =============================================================================
- Fancy Box
============================================================================= */
.e-con-inner > .elementor-widget-gwel-fancy-box {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-fancy-box {
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
}
.gwel-fancy-box:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gwel-fancy-box:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gwel-fancy-box .gwel-inner {
  padding: 30px;
  min-height: 450px;
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.gwel-fancy-box .gwel-bg-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 9s cubic-bezier(0.24, 1, 0.3, 1);
}
.gwel-fancy-box.gwel-hover-anim .gwel-content {
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.05, 0.3, 0.2, 1);
}
.gwel-fancy-box.gwel-hover-anim .gwel-top-wrapper {
  transition: transform 0.6s cubic-bezier(0.05, 0.3, 0.2, 1);
  transform: translateY(-100%);
}
.gwel-fancy-box.gwel-hover-anim:hover .gwel-top-wrapper,
.gwel-fancy-box.gwel-hover-anim:hover .gwel-content {
  transform: translateY(0);
}
.gwel-fancy-box:hover .gwel-bg-wrapper {
  transform: scale(1.2);
}
.gwel-fancy-box:hover:before {
  opacity: 0;
}
.gwel-fancy-box:hover:after {
  opacity: 1;
}
.gwel-fancy-box .gwel-title {
  margin: 0 0 18px 0;
  flex: 1;
}
.gwel-fancy-box .gwel-description {
  margin: 0;
}
.gwel-fancy-box .gwel-btn {
  margin-top: 30px;
  position: relative;
  z-index: 10;
  pointer-events: visible;
}
.gwel-fancy-box .gwel-icon {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: var(--gwel-icon--size, 60px);
}

/* =============================================================================
- Progress Bars
============================================================================= */
.gwel-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gwel-progress-bars .gwel-item {
  display: flex;
  flex-direction: column;
}
.gwel-progress-bars .gwel-item .gwel-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.gwel-progress-bars .gwel-item .gwel-bar-wrapper {
  width: 100%;
  height: 6px;
  position: relative;
  margin-top: 8px;
  overflow: hidden;
}
.gwel-progress-bars .gwel-item .gwel-bar-wrapper .gwel-bar {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  transition: width 0.9s cubic-bezier(0.05, 0.3, 0.2, 1);
  z-index: 2;
}
.gwel-progress-bars .gwel-item .gwel-bar-wrapper .gwel-bar-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #efefef;
  z-index: 1;
}

/* =============================================================================
- Cascading Images
============================================================================= */
.gwel-cascading-images {
  position: relative;
}
.gwel-cascading-images .gwel-item-image:not(:first-child) {
  position: absolute;
  pointer-events: none;
}
.gwel-cascading-images .gwel-item-image .gwel-image-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gwel-cascading-images .gwel-item-image img {
  display: block;
  border-radius: inherit;
  width: 100%;
}
.gwel-cascading-images .gwel-cascading-position-left {
  left: 0;
}
.gwel-cascading-images .gwel-cascading-position-left.gwel-cascading-position-top {
  top: 0;
  transform: translate(calc(-1 * var(--cascading-translate-x)), calc(-1 * var(--cascading-translate-y)));
}
.gwel-cascading-images .gwel-cascading-position-left.gwel-cascading-position-bottom {
  bottom: 0;
  transform: translate(calc(-1 * var(--cascading-translate-x)), var(--cascading-translate-y));
}
.gwel-cascading-images .gwel-cascading-position-right {
  right: 0;
}
.gwel-cascading-images .gwel-cascading-position-right.gwel-cascading-position-top {
  top: 0;
  transform: translate(var(--cascading-translate-x), calc(-1 * var(--cascading-translate-y)));
}
.gwel-cascading-images .gwel-cascading-position-right.gwel-cascading-position-bottom {
  bottom: 0;
  transform: translate(var(--cascading-translate-x), var(--cascading-translate-y));
}

/* =============================================================================
- Accordion
============================================================================= */
.gwel-accordion {
  display: flex;
  flex-direction: column;
}
.gwel-accordion .gwel-accordion-tab {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon {
  transition: transform .3s ease, opacity .3s ease, color .3s ease, border-color .3s ease, background-color .3s ease;
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon {
  opacity: 0;
  transform: rotate(-90deg);
}
.gwel-accordion .gwel-accordion-tab.gwel-active .gwel-accordion-open-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}
.gwel-accordion .gwel-accordion-tab.gwel-active .gwel-accordion-close-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon {
  line-height: 0;
  position: relative;
  color: var(--gwel-icon--text-c, #b8b8b8);
  text-align: center;
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon i,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon i {
  font-size: var(--gwel-icon--size, 24px);
  width: 1em;
  height: 1em;
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon svg,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon svg {
  display: block;
  width: var(--gwel-icon--size, 24px);
  height: var(--gwel-icon--size, 24px);
  fill: var(--gwel-icon--text-c, #000000);
}
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon svg g,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-open-icon svg path,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon svg g,
.gwel-accordion .gwel-accordion-tab .gwel-accordion-close-icon svg path {
  fill: var(--gwel-icon--text-c, inherit);
}
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-stacked .gwel-accordion-open-icon,
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-stacked .gwel-accordion-close-icon {
  padding: var(--gwel-icon--padding, 1.5em);
  color: var(--gwel-icon--text-c, #ffffff);
  background-color: var(--gwel-icon--background-c, #b8b8b8);
  border-radius: var(--gwel-icon--border-radius, 100%);
}
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-stacked .gwel-accordion-open-icon svg,
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-stacked .gwel-accordion-close-icon svg {
  fill: var(--gwel-icon--text-c, #ffffff);
}
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-framed .gwel-accordion-open-icon,
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-framed .gwel-accordion-close-icon {
  padding: var(--gwel-icon--padding, 1.5em);
  color: var(--gwel-icon--text-c, #b8b8b8);
  border: var(--gwel-icon--border-w, 3px) solid var(--gwel-icon--border-c, #f7f7f7);
  background-color: var(--gwel-icon--background-c, transparent);
  border-radius: var(--gwel-icon--border-radius, 100%);
}
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-framed .gwel-accordion-open-icon svg,
.gwel-accordion .gwel-accordion-tab.gwel-icon-view-framed .gwel-accordion-close-icon svg {
  fill: var(--gwel-icon--text-c, #000000);
}
.gwel-accordion .gwel-accordion-title {
  margin: 0;
  flex: 1;
}
.gwel-accordion .gwel-accordion-title span {
  position: relative;
}
.gwel-accordion .gwel-accordion-title .gwel-label {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 12px;
  line-height: 1.000em;
  white-space: nowrap;
  color: #ffffff;
  background-color: var(--e-global-color-primary, #000);
  padding: 4px 8px;
}
.gwel-accordion .gwel-accordion-icon {
  position: relative;
}
.gwel-accordion .gwel-accordion-icon .gwel-accordion-close-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.gwel-accordion .gwel-accordion-content {
  padding: 12px 0;
  display: none;
}

/* =============================================================================
- Counter
============================================================================= */
.gwel-counter {
  display: flex;
}
.gwel-counter .gwel-number-wrapper {
  display: inline-flex;
  font-size: 3.000rem;
  line-height: 1.000em;
}
.gwel-counter .gwel-number-wrapper .gwel-prefix,
.gwel-counter .gwel-number-wrapper .gwel-suffix {
  position: relative;
}
.gwel-counter .gwel-title {
  margin: 0 0 18px 0;
}
.gwel-counter .gwel-description {
  margin: 0;
}
.gwel-counter .gwel-btn {
  margin-top: 30px;
}
.gwel-counter .gwel-content {
  flex: 1;
}

/* =============================================================================
- Testimonial Grid
============================================================================= */
.e-con-inner > .elementor-widget-gwel-testimonial-grid {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-testimonial-grid .gwel-item-image {
  flex-basis: 50px;
  max-width: 50px;
  border-radius: 100%;
}
.gwel-testimonial-grid .gwel-grid-item-inner {
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #efefef;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gwel-testimonial-grid .gwel-item-image-inner {
  padding-bottom: 100%;
  position: relative;
}
.gwel-testimonial-grid .gwel-item-image-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 100%;
}
.gwel-testimonial-grid .gwel-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.gwel-testimonial-grid .gwel-item-meta .gwel-item-details {
  display: flex;
  flex-direction: column;
}
.gwel-testimonial-grid .gwel-item-meta .gwel-item-name {
  font-size: 0.8em;
  font-weight: bold;
}
.gwel-testimonial-grid .gwel-item-meta .gwel-item-identity {
  font-size: 0.8em;
}
.gwel-testimonial-grid .gwel-item-title {
  margin: 0 0 18px 0;
  padding: 0;
}
.gwel-testimonial-grid .gwel-item-description {
  margin: 0;
  padding: 0;
}

/* =============================================================================
- Testimonial Grid
============================================================================= */
.e-con-inner > .elementor-widget-gwel-testimonial-carousel {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-testimonial-carousel .gwel-icon {
  line-height: 1;
  position: relative;
  color: var(--gwel-testimonial--icon-c);
  font-size: var(--gwel-testimonial--icon-s, 24px);
  margin-bottom: var(--gwel-testimonial--icon-mb, 18px);
}
.gwel-testimonial-carousel .gwel-icon i {
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.gwel-testimonial-carousel .gwel-icon svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: var(--gwel-testimonial--icon-c);
}
.gwel-testimonial-carousel .gwel-icon svg g,
.gwel-testimonial-carousel .gwel-icon svg path {
  fill: var(--gwel-testimonial--icon-c);
}
.gwel-testimonial-carousel .gwel-carousel {
  display: flex;
  flex-direction: row;
  align-items: unset;
}
.gwel-testimonial-carousel .gwel-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}
.gwel-testimonial-carousel .gwel-item-details {
  display: flex;
}
.gwel-testimonial-carousel .gwel-item-name {
  font-size: 0.8em;
  font-weight: bold;
  text-align: left;
}
.gwel-testimonial-carousel .gwel-item-identity {
  font-size: 0.8em;
  text-align: left;
}
.gwel-testimonial-carousel .gwel-testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: var(--gwel-testimonial--item-s, none);
}
.gwel-testimonial-carousel .gwel-testimonial-item.gwel-layout-1 {
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #efefef;
  height: 100%;
}
.gwel-testimonial-carousel .gwel-testimonial-item.gwel-layout-1 .gwel-item-image {
  width: 50px;
  border-radius: 100%;
}
.gwel-testimonial-carousel .gwel-testimonial-item.gwel-layout-1 .gwel-item-details {
  flex-direction: column;
  gap: var(--gwel-testimonial--details-space, 0px);
}
.gwel-testimonial-carousel .gwel-testimonial-item.gwel-layout-2 .gwel-item-image {
  width: 120px;
  border-radius: 100%;
  margin-bottom: var(--gwel-testimonial--image-space, 18px);
}
.gwel-testimonial-carousel .gwel-testimonial-item.gwel-layout-2 .gwel-item-details {
  flex-direction: row;
  gap: var(--gwel-testimonial--details-space, 12px);
  margin-top: var(--gwel-testimonial--meta-mt, 24px);
}
.gwel-testimonial-carousel .gwel-item-image-inner {
  padding-bottom: 100%;
  position: relative;
}
.gwel-testimonial-carousel .gwel-item-image-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 100%;
}
.gwel-testimonial-carousel .gwel-item-meta {
  display: flex;
  align-items: center;
  gap: var(--gwel-testimonial--image-space, 12px);
  margin-top: var(--gwel-testimonial--meta-mt, 24px);
}
.gwel-testimonial-carousel .gwel-item-title {
  margin: 0 0 var(--gwel-testimonial--title-mb, 18px) 0;
  padding: 0;
}
.gwel-testimonial-carousel .gwel-item-description {
  margin: 0;
  padding: 0;
}

/* =============================================================================
- Image Gallery
============================================================================= */
.e-con-inner > .elementor-widget-gwel-image-gallery {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-image-gallery .gwel-item-image {
  position: relative;
}
.gwel-image-gallery .gwel-item-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all .3s ease;
}
.gwel-image-gallery .gwel-item-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  transition: all .3s ease;
}
.gwel-image-gallery .gwel-item-image:hover:before {
  opacity: 0;
}
.gwel-image-gallery .gwel-item-image:hover:after {
  opacity: 1;
}
.gwel-image-gallery .gwel-item-image-inner img {
  width: 100%;
  display: block;
  max-width: none;
}
.gwel-image-gallery.gwel-fitrows .gwel-item-image-inner {
  position: relative;
}
.gwel-image-gallery.gwel-fitrows .gwel-item-image-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.gwel-image-gallery.gwel-fitrows.gwel-image-square .gwel-item-image-inner {
  padding-bottom: 100%;
}
.gwel-image-gallery.gwel-fitrows.gwel-image-lanscape .gwel-item-image-inner {
  padding-bottom: 75%;
}
.gwel-image-gallery.gwel-fitrows.gwel-image-portait .gwel-item-image-inner {
  padding-bottom: 133.333333%;
}
.gwel-image-gallery.gwel-fitrows.gwel-image-custom-height .gwel-item-image-inner {
  height: 300px;
}

.elementor-element-edit-mode .gwel-image-gallery a {
  pointer-events: none;
}

/* =============================================================================
- Tab
============================================================================= */
.gwel-tab-horizontal .gwel-tabs-wrapper {
  display: flex;
  justify-content: var(--gwel-tabs-alignment, flex-start);
  gap: var(--tab-items-spacing, 0px);
}
.gwel-tab-horizontal .gwel-tab-title-wrapper {
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  min-width: var(--gwel-tabs--title-min-w, none);
}
.gwel-tab-horizontal .gwel-responsive-mode {
  display: none;
}
.gwel-tab-horizontal .gwel-tab-title {
  margin: 0;
  color: var(--gwel-tabs--title-c, #000000);
}
.gwel-tab-horizontal .gwel-tabs-content-wrapper {
  display: flex;
  flex-direction: column;
}
.gwel-tab-horizontal .gwel-tab-content:not(.gwel-active) {
  display: none;
}
.gwel-tab-horizontal .gwel-tab-content > p:last-child {
  margin-bottom: 0;
}
.gwel-tab-horizontal.gwel-layout-1 {
  background-color: var(--gwel-tabs--background-c, transparent);
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tabs-wrapper {
  overflow: hidden;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper {
  padding: 20px;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode {
  position: relative;
  border: var(--gwel-tabs--border-w, 1px) solid transparent;
  border-bottom: none;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active {
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  border-bottom: none;
  background-color: var(--gwel-tabs--active-background-c, transparent);
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:after, .gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:before {
  content: '';
  display: block;
  border-bottom: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  position: absolute;
  bottom: 0;
  height: 0;
  width: 999em;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:after {
  left: 100%;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:before {
  right: 100%;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-title-wrapper.gwel-responsive-mode {
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-item:not(:first-child) .gwel-tab-title-wrapper.gwel-responsive-mode {
  border-top: none;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tabs-content-wrapper {
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  background-color: var(--gwel-tabs--active-background-c, transparent);
  border-top: none;
}
.gwel-tab-horizontal.gwel-layout-1 .gwel-tab-content {
  padding: 30px;
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tab-title-wrapper {
  padding: 20px 0;
  position: relative;
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tab-title-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--gwel-tabs--border-w,1px));
  width: 100%;
  height: 0;
  border-bottom: var(--gwel-tabs--title-line-s, 1px) solid var(--gwel-tabs--title-border-c, #000000);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tab-title-wrapper:hover:after, .gwel-tab-horizontal.gwel-layout-2 .gwel-tab-title-wrapper.gwel-active:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tabs-wrapper {
  gap: var(--tab-items-spacing, 20px);
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tab-content {
  padding-top: 20px;
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tabs-wrapper {
  border-bottom: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-horizontal.gwel-layout-2 .gwel-tab-title-wrapper.gwel-responsive-mode {
  border-bottom: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-horizontal.gwel-layout-3 .gwel-tabs-wrapper {
  gap: var(--tab-items-spacing, 20px);
}
.gwel-tab-horizontal.gwel-layout-3 .gwel-tab-content {
  padding-top: 20px;
}
.gwel-tab-horizontal.gwel-layout-3 .gwel-tab-title-wrapper {
  padding: 12px 20px;
  background-color: var(--gwel-tabs--title-background-c, #f7f7f7);
  border: var(--gwel-tab--title-border-w, 1px) solid var(--gwel-tabs--title-border-c, #d5d8dc);
  border-radius: var(--gwel-tabs--title-border-r, 4px);
}
.gwel-tab-horizontal.gwel-layout-3 .gwel-tab-title-wrapper.gwel-active {
  background-color: var(--gwel-tabs--title-background-c, #000000);
  border: var(--gwel-tab--title-border-w, 1px) solid var(--gwel-tabs--title-border-c, #000000);
}
.gwel-tab-horizontal.gwel-layout-3 .gwel-tab-title-wrapper.gwel-active .gwel-tab-title {
  color: var(--gwel-tabs--title-c, #ffffff);
}

/* =============================================================================
- Tour
============================================================================= */
.gwel-tab-vertical {
  display: flex;
}
.gwel-tab-vertical .gwel-tabs-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: var(--gwel-tabs-alignment, flex-start);
  gap: var(--tab-items-spacing, 0px);
  flex-basis: var(--gwel-tabs--title-w, 20%);
}
.gwel-tab-vertical .gwel-tab-title-wrapper {
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  cursor: pointer;
}
.gwel-tab-vertical .gwel-responsive-mode {
  display: none;
}
.gwel-tab-vertical .gwel-tab-title {
  margin: 0;
  color: var(--gwel-tabs--title-c, #000000);
}
.gwel-tab-vertical .gwel-tabs-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gwel-tab-vertical .gwel-tab-content:not(.gwel-active) {
  display: none;
}
.gwel-tab-vertical .gwel-tab-content > p:last-child {
  margin-bottom: 0;
}
.gwel-tab-vertical.gwel-layout-1 {
  background-color: var(--gwel-tabs--background-c, transparent);
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tabs-wrapper {
  overflow: hidden;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper {
  padding: 20px;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode {
  position: relative;
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  border-right: none;
  border-radius: var(--gwel-tabs--title-border-r, 0) var(--gwel-tabs--title-border-r, 0) 0 0;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode:not(:last-child) {
  border-bottom: none;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active {
  background-color: var(--gwel-tabs--active-background-c, transparent);
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:after, .gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:before {
  content: '';
  display: block;
  border-right: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  position: absolute;
  right: 0;
  height: 999em;
  width: 0;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:after {
  top: 100%;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:before {
  bottom: 100%;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-title-wrapper.gwel-responsive-mode {
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-item:not(:first-child) .gwel-tab-title-wrapper.gwel-responsive-mode {
  border-top: none;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tabs-content-wrapper {
  border: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
  background-color: var(--gwel-tabs--active-background-c, transparent);
  border-left: none;
}
.gwel-tab-vertical.gwel-layout-1 .gwel-tab-content {
  padding: 30px;
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-normal-mode {
  padding: 20px 0;
  position: relative;
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-normal-mode:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: calc(-1 * var(--gwel-tabs--border-w,1px));
  width: 0;
  height: 100%;
  border-right: var(--gwel-tabs--title-line-s, 1px) solid var(--gwel-tabs--title-border-c, #000000);
  z-index: 1;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-normal-mode:hover:after, .gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active:after {
  transform: scaleX(1);
  transform-origin: center top;
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-responsive-mode {
  padding: 20px 0;
  position: relative;
  border-bottom: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-responsive-mode:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--gwel-tabs--border-w,1px));
  width: 100%;
  height: 0;
  border-bottom: var(--gwel-tabs--title-line-s, 1px) solid var(--gwel-tabs--title-border-c, #000000);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-responsive-mode:hover:after, .gwel-tab-vertical.gwel-layout-2 .gwel-tab-title-wrapper.gwel-responsive-mode.gwel-active:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tabs-wrapper {
  gap: var(--tab-items-spacing, 20px);
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tab-content {
  padding: 30px;
}
.gwel-tab-vertical.gwel-layout-2 .gwel-tabs-wrapper {
  border-right: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-vertical.gwel-layout-3 .gwel-tabs-wrapper {
  gap: var(--tab-items-spacing, 20px);
}
.gwel-tab-vertical.gwel-layout-3 .gwel-tab-content {
  padding: 30px;
}
.gwel-tab-vertical.gwel-layout-3 .gwel-tab-title-wrapper {
  justify-content: center;
  padding: 12px 20px;
  background-color: var(--gwel-tabs--title-background-c, #f7f7f7);
  border: var(--gwel-tab--title-border-w, 1px) solid var(--gwel-tabs--title-border-c, #d5d8dc);
  border-radius: var(--gwel-tabs--title-border-r, 4px);
}
.gwel-tab-vertical.gwel-layout-3 .gwel-tab-title-wrapper.gwel-active {
  background-color: var(--gwel-tabs--title-background-c, #000000);
  border: var(--gwel-tab--title-border-w, 1px) solid var(--gwel-tabs--title-border-c, #000000);
}
.gwel-tab-vertical.gwel-layout-3 .gwel-tab-title-wrapper.gwel-active .gwel-tab-title {
  color: var(--gwel-tabs--title-c, #ffffff);
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-normal-mode {
  padding: 0;
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-normal-mode .gwel-tab-title {
  position: relative;
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-normal-mode .gwel-tab-title:after {
  content: '';
  position: absolute;
  bottom: var(--gwel-tabs--title-line-offset, 0px);
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: var(--gwel-tabs--title-line-s, 1px) solid var(--gwel-tabs--title-border-c, #000000);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right bottom;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-normal-mode:hover .gwel-tab-title:after, .gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-normal-mode.gwel-active .gwel-tab-title:after {
  transform: scaleX(1);
  transform-origin: left bottom;
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-responsive-mode {
  padding: 20px 0;
  position: relative;
  border-bottom: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-responsive-mode:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--gwel-tabs--border-w,1px));
  width: 100%;
  height: 0;
  border-bottom: var(--gwel-tabs--title-line-s, 1px) solid var(--gwel-tabs--title-border-c, #000000);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-responsive-mode:hover:after, .gwel-tab-vertical.gwel-layout-4 .gwel-tab-title-wrapper.gwel-responsive-mode.gwel-active:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tabs-wrapper {
  gap: var(--tab-items-spacing, 20px);
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tab-content {
  padding: 30px;
}
.gwel-tab-vertical.gwel-layout-4 .gwel-tabs-wrapper {
  border-right: var(--gwel-tabs--border-w, 1px) solid var(--gwel-tabs--border-c, #d5d8dc);
}

/* =============================================================================
- Table
============================================================================= */
.e-con-inner > .elementor-widget-gwel-data-table {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-data-table {
  background-color: transparent;
  width: 100%;
  margin-bottom: 15px;
  font-size: .9em;
  border-spacing: 0;
  border-collapse: collapse;
}
.gwel-data-table thead th {
  text-align: var(--gwel-table-header--align);
  padding: var(--gwel-table-header--padding, 15px);
  color: var(--gwel-table-header--c, #ffffff);
  background-color: var(--gwel-table-header--background-c, #000000);
}
.gwel-data-table tbody td {
  text-align: var(--gwel-table-content--align);
  padding: var(--gwel-table-content--padding, 15px);
  color: var(--gwel-table-content--c, #000000);
  background-color: var(--gwel-table-content--background-c, #f2f2f2);
}
.gwel-data-table td, .gwel-data-table th {
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid rgba(128, 128, 128, 0.5);
  text-align: left;
}
.gwel-data-table th {
  font-weight: 700;
}

/* =============================================================================
- Highlighted Text
============================================================================= */
.gwel-highlighted-text {
  margin: 0;
}
.gwel-highlighted-text span {
  position: relative;
}
.gwel-highlighted-text svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 6px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible !important;
  z-index: -1;
}
.gwel-highlighted-text svg path {
  stroke: red;
  stroke-width: 9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gwel-highlighted-text .gwel-text-nowrap {
  white-space: nowrap;
}

/* =============================================================================
- Fancy Box
============================================================================= */
.gwel-fancy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gwel-fancy-list .gwel-item,
.gwel-fancy-list .gwel-item-inner {
  justify-content: space-between;
}
.gwel-fancy-list .gwel-item-content {
  display: flex;
}
.gwel-fancy-list .gwel-item-title,
.gwel-fancy-list .gwel-item-text {
  width: 100%;
}
.gwel-fancy-list .gwel-item-title {
  margin: 0;
}
.gwel-fancy-list .gwel-item-icon {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.gwel-fancy-list .gwel-item-icon i {
  font-size: 12px;
  width: 1em;
  height: 1em;
}
.gwel-fancy-list .gwel-item-icon svg {
  display: block;
  width: 30px;
  height: auto;
}
.gwel-fancy-list .gwel-item-icon svg g,
.gwel-fancy-list .gwel-item-icon svg path {
  fill: inherit;
}
.gwel-fancy-list .gwel-item-separator {
  width: 100%;
  height: 1px;
}
.gwel-fancy-list.gwel-icon-view-stacked .gwel-item-icon {
  padding: 0.5em;
  color: #ffffff;
  background-color: var(--e-global-color-primary);
  border-radius: 100%;
}
.gwel-fancy-list.gwel-icon-view-stacked .gwel-item-icon svg {
  fill: #ffffff;
}
.gwel-fancy-list.gwel-icon-view-framed .gwel-item-icon {
  padding: 0.5em;
  color: var(--e-global-color-primary);
  border: 3px solid var(--e-global-color-primary);
  background-color: transparent;
  border-radius: 100%;
}
.gwel-fancy-list.gwel-icon-view-framed .gwel-item-icon svg {
  fill: #000000;
}

/* =============================================================================
- Video Button
============================================================================= */
.gwel-video-btn-wrapper {
  display: flex;
  gap: 30px;
}
.gwel-video-btn-wrapper.gwel-title-position-bottom {
  flex-direction: column;
}
.gwel-video-btn-wrapper .gwel-video-btn {
  display: inline-flex;
  font-size: 12px;
  padding: 30px;
  border-style: solid;
  border-width: 3px;
  border-radius: 100%;
  color: var(--e-global-color-primary);
  cursor: pointer;
}

/* =============================================================================
- Auto Scrolling Images
============================================================================= */
.gwel-auto-scrolling-images {
  overflow: hidden;
  display: flex;
}
.gwel-auto-scrolling-images .gwel-element-inner {
  position: relative;
}
.gwel-auto-scrolling-images .gwel-images-wrapper-helper {
  display: flex;
  visibility: hidden;
  pointer-events: none;
}
.gwel-auto-scrolling-images .gwel-images-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-timeline: auto;
  animation-range-start: normal;
}
.gwel-auto-scrolling-images .gwel-image-item img {
  width: 100%;
}

@keyframes gwel-vertical-image-anim {
  0% {
    transform: translateY(0) translateZ(0);
  }
  100% {
    transform: translateY(-100%) translateZ(0);
  }
}
@keyframes gwel-vertical-image-anim-copy {
  0% {
    transform: translateY(100%) translateZ(0);
  }
  100% {
    transform: translateY(0) translateZ(0);
  }
}
@keyframes gwel-horizontal-image-anim {
  0% {
    transform: translateX(0) translateZ(0);
  }
  100% {
    transform: translateX(100%) translateZ(0);
  }
}
@keyframes gwel-horizontal-image-anim-copy {
  0% {
    transform: translateX(-100%) translateZ(0);
  }
  100% {
    transform: translateX(0) translateZ(0);
  }
}
/* =============================================================================
- Contact Form 7
============================================================================= */
.e-con-inner > .elementor-widget-gwel-cf7 {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.wpcf7 .wpcf7-form-control:not(.wpcf7-submit) {
  margin-bottom: var(--gwel-cf7--input-space, 20px);
}
.wpcf7 label {
  color: var(--gwel-cf7--label-c, inherit);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--gwel-cf7--placeholder-c, #000);
}
.wpcf7 input,
.wpcf7 .wpcf7-textarea,
.wpcf7 .wpcf7-select {
  color: var(--gwel-cf7--input-c, #000);
  background-color: var(--gwel-cf7--input-bg-c, transparent);
  padding: var(--gwel-cf7--input-p, 10px);
}
.wpcf7 input:focus,
.wpcf7 .wpcf7-textarea:focus,
.wpcf7 .wpcf7-select:focus {
  color: var(--gwel-cf7--input-c, #000);
}
.wpcf7 .select-state,
.wpcf7 .select-gender,
.wpcf7 .accept-this-1 {
  color: var(--gwel-cf7--other-input-c, #000);
}
.wpcf7 input[type="submit"] {
  display: inline-flex;
  justify-content: center;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: var(--grve-typography--button-f, inherit);
  font-weight: var(--grve-typography--button-w);
  font-style: var(--grve-typography--button-st, normal);
  text-transform: var(--grve-typography--button-tr);
  font-size: var(--grve-typography--button-s, 16px);
  line-height: 1.000em;
  letter-spacing: var(--grve-typography--button-ls);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
  white-space: nowrap;
  min-width: min-content;
  padding-top: var(--grve-padding--button-tb, 20px);
  padding-bottom: var(--grve-padding--button-tb, 20px);
  padding-left: var(--grve-padding--button-lr, 30px);
  padding-right: var(--grve-padding--button-lr, 30px);
  color: var(--grve-button--text-c, #000000);
  background-color: var(--grve-button--background-c, #ebebeb);
  border-style: solid;
  border-color: transparent;
  margin-top: var(--gwel-cf7--submit-space, 20px);
}
.wpcf7 input[type="submit"]:hover {
  color: var(--grve-button--text-hover-c, #ffffff);
  background-color: var(--grve-button--background-hover-c, #000000);
}
.wpcf7 input[type="submit"]:focus {
  text-decoration: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 .gwel-form .gwel-fields-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gwel-cf7--input-space, 20px);
}
.wpcf7 .gwel-form .gwel-fields-wrapper p {
  margin-bottom: 0;
}
.wpcf7 .gwel-form .gwel-fields-wrapper > div {
  width: 100%;
}
.wpcf7 .gwel-form .gwel-fields-wrapper .gwel-one-half {
  width: calc(50% - var(--gwel-cf7--input-space, 20px)/2 );
}
.wpcf7 .gwel-form .gwel-fields-wrapper .gwel-one-third {
  width: calc(33.333333% - var(--gwel-cf7--input-space, 20px)/1.5 );
}
@media only screen and (max-width: 767px) {
  .wpcf7 .gwel-form .gwel-fields-wrapper .gwel-one-half,
  .wpcf7 .gwel-form .gwel-fields-wrapper .gwel-one-third {
    width: 100%;
  }
}
.wpcf7 .gwel-newsletter.gwel-horizontal {
  display: flex;
  gap: var(--gwel-cf7--input-space, 20px);
  align-items: center;
}
.wpcf7 .gwel-newsletter.gwel-horizontal input[type="submit"],
.wpcf7 .gwel-newsletter.gwel-horizontal .wpcf7-form-control {
  margin: 0;
}
.wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wpcf7 form input[type=date],
.wpcf7 form input[type=email],
.wpcf7 form input[type=number],
.wpcf7 form input[type=password],
.wpcf7 form input[type=search],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=text],
.wpcf7 form input[type=url],
.wpcf7 form select,
.wpcf7 form textarea {
  width: 100%;
  outline: none;
}
.wpcf7 form > *:not(input[type=submit]) {
  width: 100%;
}

/* =============================================================================
- Post Sliders
============================================================================= */
.gwel-posts-slider {
  overflow: hidden;
}
.gwel-posts-slider .gwel-item-url {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.gwel-posts-slider.gwel-arrows-position-top .gwel-swiper-inner {
  display: block;
}
.gwel-posts-slider.gwel-arrows-position-top .gwel-swiper-inner .gwel-navigation-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}
.gwel-posts-slider.gwel-arrows-position-top .gwel-swiper-inner .gwel-navigation-arrows .gwel-button {
  pointer-events: visible;
  transform: translateY(var(--arrows--vertical-adjustment, 0));
}
.gwel-posts-slider.gwel-arrows-position-top .gwel-swiper-inner .gwel-navigation-arrows .gwel-button.gwel-button-prev {
  margin-left: var(--arrows--horizontal-adjustment, 0);
}
.gwel-posts-slider.gwel-arrows-position-top .gwel-swiper-inner .gwel-navigation-arrows .gwel-button.gwel-button-next {
  margin-right: var(--arrows--horizontal-adjustment, 0);
}
.gwel-posts-slider .gwel-carousel-item-inner {
  position: relative;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gwel-posts-slider .gwel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.gwel-posts-slider .gwel-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gwel-posts-slider .gwel-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.gwel-posts-slider .gwel-content {
  position: relative;
  z-index: 2;
}
.gwel-posts-slider .gwel-content .gwel-title,
.gwel-posts-slider .gwel-content .gwel-description,
.gwel-posts-slider .gwel-content .gwel-read-more {
  color: #ffffff;
}
.gwel-posts-slider .gwel-content .gwel-title {
  margin: 0;
}
.gwel-posts-slider .gwel-content .gwel-read-more {
  display: inline-flex;
}

/* =============================================================================
- Posts Carousel
============================================================================= */
.gwel-posts-carousel .gwel-carousel-item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
.gwel-posts-carousel .gwel-item-url {
  width: 100%;
}
.gwel-posts-carousel .gwel-content {
  width: 100%;
}
.gwel-posts-carousel .gwel-title {
  margin-bottom: 0;
}

.elementor-element-edit-mode .gwel-posts-carousel a {
  pointer-events: none;
}

/* =============================================================================
- Image Hover Item
============================================================================= */
.gwel-hover-item {
  width: 100%;
  position: relative;
}
.gwel-hover-item .gwel-image-hover {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-style: solid;
  border-width: var(--image-border-width, 0);
  border-color: var(--image-border-color);
  border-radius: var(--image-border-radius);
  transition-duration: var(--image-transition-duration);
}
.gwel-hover-item .gwel-image-hover .gwel-image {
  position: relative;
  transition-duration: var(--image-transition-duration);
}
.gwel-hover-item .gwel-image-hover .gwel-image img {
  width: 100%;
  height: auto;
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-default-ratio img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-image-square {
  padding-bottom: 100%;
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-image-lanscape {
  padding-bottom: 75%;
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-image-portait {
  padding-bottom: 133.333333%;
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-animation-zoom-out {
  transform: scale(1.1);
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-animation-move-left {
  transform: scale(1.1) translateX(3%);
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-animation-move-right {
  transform: scale(1.1) translateX(-3%);
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-animation-move-top {
  transform: scale(1.1) translateY(3%);
}
.gwel-hover-item .gwel-image-hover .gwel-image.gwel-animation-move-bottom {
  transform: scale(1.1) translateY(-3%);
}
.gwel-hover-item .gwel-content {
  padding-top: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.gwel-hover-item .gwel-meta-data {
  display: flex;
  gap: 12px;
}
.gwel-hover-item .gwel-read-more {
  font-weight: bold;
}
.gwel-hover-item .gwel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.gwel-hover-item .gwel-overlay:before, .gwel-hover-item .gwel-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition-duration: var(--overlay-transition-duration);
}
.gwel-hover-item.gwel-style-2 .gwel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  padding: 30px;
}
.gwel-hover-item.gwel-style-2 .gwel-title,
.gwel-hover-item.gwel-style-2 .gwel-description,
.gwel-hover-item.gwel-style-2 .gwel-read-more,
.gwel-hover-item.gwel-style-2 .gwel-meta-data {
  color: #ffffff;
}
.gwel-hover-item.gwel-style-2 .gwel-overlay:before {
  background-color: rgba(0, 0, 0, 0.5);
}
.gwel-hover-item:hover .gwel-image.gwel-animation-zoom-in {
  transform: scale(1.1);
}
.gwel-hover-item:hover .gwel-image.gwel-animation-zoom-out {
  transform: scale(1);
}
.gwel-hover-item:hover .gwel-image.gwel-animation-move-left, .gwel-hover-item:hover .gwel-image.gwel-animation-move-right, .gwel-hover-item:hover .gwel-image.gwel-animation-move-top, .gwel-hover-item:hover .gwel-image.gwel-animation-move-bottom {
  transform: scale(1.1) translateX(0);
}
.gwel-hover-item:hover .gwel-overlay:before {
  opacity: 0 !important;
}
.gwel-hover-item:not(:hover) .gwel-overlay:after {
  opacity: 0 !important;
}
.gwel-hover-item .gwel-item-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

/* =============================================================================
- Broken Grid
============================================================================= */
.e-con-inner > .elementor-widget-gwel-posts-broken,
.e-con-inner > .elementor-widget-gwel-gallery-broken {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-broken-grid.gwel-layout-1 .gwel-broken-container {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
  column-gap: 5vw;
  row-gap: 5vw;
}
.gwel-broken-grid.gwel-layout-1 .gwel-broken-container .gwel-broken-item:nth-child(4n + 1) {
  grid-column: 2 / 4;
}
.gwel-broken-grid.gwel-layout-1 .gwel-broken-container .gwel-broken-item:nth-child(4n + 2) {
  grid-column: 4 / 6;
  margin-top: 5vw;
}
.gwel-broken-grid.gwel-layout-1 .gwel-broken-container .gwel-broken-item:nth-child(4n + 3) {
  grid-column: 1 / 3;
  margin-top: 5vw;
  align-self: end;
}
.gwel-broken-grid.gwel-layout-1 .gwel-broken-container .gwel-broken-item:nth-child(4n) {
  grid-column: 3 / 6;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 5vw;
  row-gap: 5vw;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(4n + 1) {
  grid-column: 2 / 4;
  align-self: center;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(4n + 2) {
  grid-column: 4 / 8;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(4n + 3) {
  grid-column: 1 / 4;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(4n + 4) {
  grid-column: 4 / 7;
  align-self: center;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(12n + 11) {
  grid-column: 2 / 6;
}
.gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item:nth-child(12n + 12) {
  grid-column: 6 / 9;
}
.gwel-broken-grid.gwel-layout-3 .gwel-broken-container {
  display: grid;
  grid-template-columns: 6fr 4fr 4fr;
  column-gap: 5vw;
  row-gap: 15vw;
}
.gwel-broken-grid.gwel-layout-3 .gwel-broken-container .gwel-broken-item:nth-child(2n) {
  margin-top: 10vw;
  grid-column: 3 / 4;
}
.gwel-broken-grid.gwel-layout-3 .gwel-broken-container .gwel-broken-item:nth-child(3n) {
  grid-column: 1 / 3;
}
.gwel-broken-grid.gwel-layout-3 .gwel-broken-container .gwel-broken-item:nth-child(5n) {
  grid-column: 2 / 3;
}
.gwel-broken-grid.gwel-layout-3 .gwel-broken-container .gwel-broken-item:nth-child(10n) {
  grid-column: 1 / 2;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container {
  display: grid;
  grid-template-columns: 6fr 6fr 6fr;
  column-gap: 5vw;
  row-gap: 5vw;
  align-items: center;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item:nth-child(2n) {
  grid-column: 2 / 4;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item:nth-child(3n) {
  grid-column: 1 / 3;
  padding-left: 8vw;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item:nth-child(5n) {
  grid-column: 1 / 3;
  padding-left: 3vw;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item:nth-child(16n) {
  grid-column: 3 / 4;
  padding-left: 3vw;
}
.gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item:nth-child(18n) {
  grid-column: 2 / 4;
}
.gwel-broken-grid .gwel-animation-item {
  transition: transform .4s ease, opacity .4s ease;
}
.gwel-broken-grid .gwel-animation-item.gwel-fade-in {
  opacity: 0;
}
.gwel-broken-grid .gwel-animation-item.gwel-fade-in-up {
  opacity: 0;
  transform: translate(0px, -30px) scale(1);
}
.gwel-broken-grid .gwel-animation-item.gwel-fade-in-down {
  opacity: 0;
  transform: translate(0px, 30px) scale(1);
}
.gwel-broken-grid .gwel-animation-item.gwel-fade-in-left {
  opacity: 0;
  transform: translate(-30px, 0px) scale(1);
}
.gwel-broken-grid .gwel-animation-item.gwel-fade-in-right {
  opacity: 0;
  transform: translate(30px, 0px) scale(1);
}
.gwel-broken-grid .gwel-animation-item.gwel-zoom-in {
  opacity: 0;
  transform: translate(30px, 0px) scale(0.8);
}
.gwel-broken-grid .gwel-animation-item.gwel-animated {
  opacity: 1;
  transform: translate(0px, 0px) scale(1);
}
@media only screen and (max-width: 767px) {
  .gwel-broken-grid.gwel-layout-1 .gwel-broken-container, .gwel-broken-grid.gwel-layout-2 .gwel-broken-container, .gwel-broken-grid.gwel-layout-3 .gwel-broken-container, .gwel-broken-grid.gwel-layout-4 .gwel-broken-container {
    display: block;
  }
  .gwel-broken-grid.gwel-layout-1 .gwel-broken-container .gwel-broken-item, .gwel-broken-grid.gwel-layout-2 .gwel-broken-container .gwel-broken-item, .gwel-broken-grid.gwel-layout-3 .gwel-broken-container .gwel-broken-item, .gwel-broken-grid.gwel-layout-4 .gwel-broken-container .gwel-broken-item {
    padding: 0;
    margin: 0 0 3.000rem 0;
  }
}

/* =============================================================================
- Content Carousel
============================================================================= */
.e-con-inner > .elementor-widget-gwel-content-carousel {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-content-carousel .gwel-carousel {
  display: flex;
  flex-direction: row;
  align-items: unset;
}
.gwel-content-carousel .gwel-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.gwel-content-item {
  width: 100%;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #efefef;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.gwel-content-item .gwel-item-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.gwel-content-item .gwel-item-graphic {
  margin-bottom: var(--gwel-content--graphic-mb, 30px);
}
.gwel-content-item .gwel-item-image {
  width: var(--gwel-content--image-w, 90px);
}
.gwel-content-item .gwel-item-image img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}
.gwel-content-item .gwel-icon {
  line-height: 1;
  position: relative;
  color: var(--gwel-content--icon-c);
  font-size: var(--gwel-content--icon-s, 24px);
}
.gwel-content-item .gwel-icon i {
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.gwel-content-item .gwel-icon svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: var(--gwel-content--icon-c);
}
.gwel-content-item .gwel-icon svg g,
.gwel-content-item .gwel-icon svg path {
  fill: var(--gwel-content--icon-c);
}
.gwel-content-item .gwel-item-title {
  margin: 0 0 var(--gwel-content--title-mb, 18px) 0;
  padding: 0;
}
.gwel-content-item .gwel-item-description {
  margin: 0;
  padding: 0;
}
.gwel-content-item .gwel-content {
  flex: 1;
}
.gwel-content-item .gwel-item-link-title {
  margin-top: var(--gwel-content--button-mt, 30px);
}

/* =============================================================================
- Hotspot
============================================================================= */
.e-con-inner > .elementor-widget-gwel-hotspot {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

/*! pro-elements - v3.17.0 - 01-11-2023 */
@keyframes gwel-hotspot-soft-beat {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes gwel-hotspot-expand {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.gwel-hotspot-element {
  display: flex;
  justify-content: var(--background-align);
}
.gwel-hotspot-element .gwel-hotspot-inner {
  position: relative;
  width: var(--container-width);
  max-width: var(--container-max-width);
  height: var(--container-height);
}
.gwel-hotspot-element .gwel-hotspot-inner > img {
  display: block;
  width: var(--image-width, auto);
  height: var(--container-height);
  opacity: var(--opacity, 1);
}

.gwel-hotspot {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.gwel-hotspot--position-left.gwel-hotspot--position-top {
  transform: translate(calc(-1 * var(--hotspot-translate-x)), calc(-1 * var(--hotspot-translate-y)));
}
.gwel-hotspot--position-left.gwel-hotspot--position-bottom {
  transform: translate(calc(-1 * var(--hotspot-translate-x)), var(--hotspot-translate-y));
}

.gwel-hotspot--position-right.gwel-hotspot--position-top {
  transform: translate(var(--hotspot-translate-x), calc(-1 * var(--hotspot-translate-y)));
}
.gwel-hotspot--position-right.gwel-hotspot--position-bottom {
  transform: translate(var(--hotspot-translate-x), var(--hotspot-translate-y));
}

.gwel-hotspot--active {
  z-index: 2;
}

.gwel-hotspot-inner-circle,
.gwel-hotspot-outer-circle {
  content: "";
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
}

.gwel-hotspot-inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--hotspot--background-color);
  padding: calc(var(--hotspot-size, 18px) / 2);
}

.gwel-hotspot-outer-circle {
  background-color: var(--hotspot--background-color);
  padding: var(--hotspot-padding, 4px);
}

.gwel-hotspot--icon .gwel-hotspot-button,
.gwel-hotspot-outer-circle {
  width: var(--hotspot-size, 18px);
  height: var(--hotspot-size, 18px);
}

.gwel-hotspot--icon .gwel-hotspot-button {
  line-height: 0;
  box-sizing: content-box;
  font-size: var(--hotspot--icon-size, 18px);
  color: var(--hotspot--icon-color, #fff);
}

.gwel-hotspot-icon,
.gwel-hotspot-label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gwel-hotspot-icon svg,
.gwel-hotspot-label svg {
  height: var(--hotspot--icon-size, 18px);
  width: auto;
  fill: var(--hotspot--icon-color, #fff);
}

.gwel-hotspot-button {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  color: var(--hotspot--text-color);
  min-width: var(--hotspot-button-width);
  min-height: var(--hotspot-button-height);
}
.gwel-hotspot-button:before {
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  box-sizing: content-box;
}
.gwel-hotspot-button svg,
.gwel-hotspot-button svg g {
  fill: var(--hotspot--icon-color, #fff);
}

.gwel-hotspot:not(.gwel-hotspot--circle) .gwel-hotspot-button {
  min-width: var(--hotspot-min-width);
  min-height: var(--hotspot-min-height);
  background-color: var(--hotspot--background-color);
  padding: var(--hotspot-padding, 4px);
  border-radius: var(--hotspot-border-radius, 3px);
}
.gwel-hotspot:not(.gwel-hotspot--circle) .gwel-hotspot-button:before {
  border-radius: var(--hotspot-border-radius, 3px);
}
.gwel-hotspot:not(.gwel-hotspot--circle) .gwel-hotspot--expand:before {
  background-color: var(--hotspot--background-color);
}

.gwel-hotspot--overlay {
  opacity: .7;
  transition: opacity 0.2s;
}

.gwel-hotspot--active .gwel-hotspot--overlay,
.gwel-hotspot--overlay:hover {
  opacity: 1;
}

.gwel-hotspot--soft-beat {
  animation: gwel-hotspot-soft-beat .7s infinite alternate;
  animation-timing-function: ease;
}

.gwel-hotspot--expand .gwel-hotspot-outer-circle {
  animation: gwel-hotspot-expand 2s infinite;
}

.gwel-hotspot:not(.gwel-hotspot--circle) .gwel-hotspot--expand:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  animation: gwel-hotspot-expand 2s infinite;
}

.gwel-hotspot--sequenced {
  animation: fadeIn .3s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.gwel-hotspot__direction-mask {
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}

.gwel-hotspot-tooltip {
  white-space: var(--white-space, nowrap);
  transition-property: transform,opacity;
  transition-duration: var(--tooltip-transition-duration, 0.5s);
  transform-origin: center center;
  position: absolute;
  pointer-events: none;
  color: var(--tooltip-text-color, #fff);
  text-align: var(--tooltip-align);
  width: var(--tooltip-min-width);
  padding: var(--tooltip-padding, 8px);
  border-radius: var(--tooltip-border-radius);
  background-color: var(--tooltip-color);
}

.gwel-hotspot-tooltip p:last-of-type {
  margin-bottom: 0;
}

.gwel-hotspot__direction-mask .gwel-hotspot-tooltip {
  box-shadow: none !important;
  position: static;
}

.gwel-hotspot--active .gwel-hotspot-tooltip {
  pointer-events: visible;
}

.gwel-hotspot--fade-in-out {
  opacity: 0;
}

.gwel-hotspot--active .gwel-hotspot--fade-in-out {
  opacity: 1;
}

.gwel-hotspot--fade-grow {
  opacity: 0;
  transform: scale(0);
}

.gwel-hotspot--active .gwel-hotspot--fade-grow {
  opacity: 1;
  transform: scale(1);
}

.gwel-hotspot--override-tooltip-animation-from-top,
.gwel-hotspot--tooltip-animation-from-top {
  transform: translateY(calc(-100% - 1px));
}

.gwel-hotspot--override-tooltip-animation-from-left,
.gwel-hotspot--tooltip-animation-from-left {
  transform: translate(calc(-100% - 1px));
}

.gwel-hotspot--override-tooltip-animation-from-right,
.gwel-hotspot--tooltip-animation-from-right {
  transform: translate(calc(100% + 1px));
}

.gwel-hotspot--override-tooltip-animation-from-bottom,
.gwel-hotspot--tooltip-animation-from-bottom {
  transform: translateY(calc(100% + 1px));
}

.gwel-hotspot--fade-direction {
  opacity: 0;
}

.gwel-hotspot--active .gwel-hotspot--fade-direction,
.gwel-hotspot--active .gwel-hotspot--slide-direction {
  transform: translate(0) scale(1);
  opacity: 1;
}

.gwel-hotspot--show-tooltip {
  transition: none;
  opacity: 1;
  pointer-events: visible;
  transform: translate(0);
}

/* =============================================================================
- Text Inline Image
============================================================================= */
.gwel-text-inline-image .gwel-item-text {
  position: relative;
  z-index: 2;
}
.gwel-text-inline-image .gwel-image-wrapper {
  position: relative;
  width: var(--gwel-inline-image-w);
  transform: translateY(var(--gwel-inline-image-tr, 0));
  margin-left: var(--gwel-inline-image-margin-l, 0);
  margin-right: var(--gwel-inline-image-margin-r, 0);
  height: 1.000em;
  display: inline-block;
  vertical-align: top;
  z-index: 1;
}
.gwel-text-inline-image .gwel-image-wrapper img {
  max-width: none;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* =============================================================================
- Page Title
============================================================================= */
.gwel-page-title {
  display: flex;
  flex-direction: column;
}
.gwel-page-title .gwel-title {
  margin-bottom: 0;
}
.gwel-page-title .gwel-title a {
  color: currentColor;
}
.gwel-page-title .gwel-title-fancy span {
  background-color: #E0E0E0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================================================================
- Menu Widget
============================================================================= */
.gwel-menu-widget ul {
  display: flex;
  flex-direction: var(--gwel-menu--orientation, row);
  gap: var(--gwel-menu--item-s, 12px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.gwel-menu-widget ul a {
  position: relative;
  padding: var(--gwel-menu--items-p, 0px);
  color: var(--gwel-menu--item-c);
}
.gwel-menu-widget ul a span {
  position: relative;
  z-index: 3;
}
.gwel-menu-widget.gwel-direction-row .gwel-menu {
  justify-content: var(--gwel-menu--align);
}
.gwel-menu-widget.gwel-direction-column .gwel-menu {
  align-items: var(--gwel-menu--align);
}
.gwel-menu-widget.gwel-direction-column .gwel-sub-menu {
  padding-top: var(--gwel-menu--submenu-item-s, 12px);
  display: none;
}
.gwel-menu-widget.gwel-direction-column .gwel-sub-menu ul {
  gap: var(--gwel-menu--submenu-item-s, 12px);
}
.gwel-menu-widget .gwel-link-wrapper {
  display: flex;
  align-items: center;
  gap: var(--gwel-menu--arrow-offset-h, 6px);
}
.gwel-menu-widget .gwel-link-wrapper .gwel-arrow {
  width: var(--gwel-menu--arrow-size, 0.3em);
  height: var(--gwel-menu--arrow-size, 0.3em);
  position: relative;
  margin-top: var(--gwel-menu--arrow-offset-v, -0.15em);
}
.gwel-menu-widget .gwel-link-wrapper .gwel-arrow .gwel-arrow-icon {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  border-bottom: var(--gwel-menu--arrow-border-w, 1px) solid currentColor;
  border-right: var(--gwel-menu--arrow-border-w, 1px) solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  transition: transform .3s ease;
}
.gwel-menu-widget .gwel-link-wrapper.gwel-open .gwel-arrow {
  transform: scaleY(-1);
}
.gwel-menu-widget .gwel-underline-hover a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: var(--gwel-underline-position, 0px);
  width: 100%;
  border-top-width: var(--gwel-underline-h, 0.143em);
  border-top-style: solid;
  border-top-color: var(--gwel-underline-c, #000);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
}
.gwel-menu-widget .gwel-underline-hover a:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* =============================================================================
- Auto Scrolling Images
============================================================================= */
.gwel-marquee-text {
  overflow: hidden;
  display: flex;
}
.gwel-marquee-text .gwel-element-inner {
  position: relative;
}
.gwel-marquee-text .gwel-images-wrapper {
  display: flex;
  animation-duration: var(--gwel-text--animation-d, 20s);
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-timeline: auto;
  animation-range-start: normal;
  flex-direction: row;
  animation-name: gwel-horizontal-image-anim;
  animation-direction: var(--gwel-text--item-direction, normal);
  padding-top: 0;
  padding-left: var(--gwel-auto-scrolling-space, 20px);
  gap: var(--gwel-auto-scrolling-space, 20px);
}
.gwel-marquee-text .gwel-images-wrapper.gwel-copy-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: gwel-horizontal-image-anim-copy;
  animation-direction: var(--gwel-text--item-direction, normal);
}
.gwel-marquee-text .gwel-text-item {
  color: var(--gwel-text--item-c);
  white-space: nowrap;
  display: flex;
  flex-direction: var(--gwel-text--icon-p, row);
  gap: var(--gwel-text--icon-offset, 18px);
  align-items: center;
}
.gwel-marquee-text .gwel-text-item a {
  color: var(--gwel-text--item-c);
  transition: color .3s ease;
}
.gwel-marquee-text .gwel-text-item .gwel-icon {
  line-height: 1;
  position: relative;
  color: var(--gwel-text--icon-c);
  font-size: var(--gwel-text--icon-s, 120px);
  transform: translateY(var(--gwel-text--icon-vertical-p));
}
.gwel-marquee-text .gwel-text-item .gwel-icon i {
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.gwel-marquee-text .gwel-text-item .gwel-icon svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: var(--gwel-text--icon-c);
}
.gwel-marquee-text .gwel-text-item .gwel-icon svg g,
.gwel-marquee-text .gwel-text-item .gwel-icon svg path {
  fill: var(--gwel-text--icon-c);
}
.gwel-marquee-text.gwel-pause-on-hover:hover .gwel-images-wrapper {
  animation-play-state: paused;
}

@keyframes gwel-horizontal-image-anim {
  0% {
    transform: translateX(0) translateZ(0);
  }
  100% {
    transform: translateX(100%) translateZ(0);
  }
}
@keyframes gwel-horizontal-image-anim-copy {
  0% {
    transform: translateX(-100%) translateZ(0);
  }
  100% {
    transform: translateX(0) translateZ(0);
  }
}
/* =============================================================================
- Typed Text
============================================================================= */
.gwel-typed-text {
  text-align: var(--gwel-typed--text-align, left);
}
.gwel-typed-text .gwel-typed-wrapper {
  min-width: 1px;
  min-height: 1.000em;
  display: inline-block;
  vertical-align: baseline;
}

/* =============================================================================
- Posts List
============================================================================= */
.e-con-inner > .elementor-widget-gwel-posts-list {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.e-con-inner > .elementor-widget-gwel-posts {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-posts-list {
  display: flex;
  flex-direction: column;
  gap: var(--gwel-post--items-gap, 60px);
}
.gwel-posts-list .gwel-item-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.gwel-posts-list .gwel-post-item {
  display: flex;
  flex-direction: var(--gwel-post--item-direction, row);
  gap: var(--gwel-post--gap, 30px);
  position: relative;
  min-height: var(--gwel-post--item-min-h, 550px);
}
.gwel-posts-list .gwel-content {
  flex-basis: var(--gwel-post--content-w, 35%);
  background-color: var(--gwel-post--content-bg, #f7f7f7);
  padding: var(--gwel-post--content-padding, 30px);
  border-radius: var(--gwel-post--content-border-radius, 24px);
}
.gwel-posts-list .gwel-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gwel-posts-list .gwel-image {
  flex: 1;
  position: relative;
  min-height: var(--gwel-post--item-min-h, 550px);
}
.gwel-posts-list .gwel-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  border-radius: var(--gwel-post--image-border-radius, 24px);
}
.gwel-posts-list .gwel-content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.gwel-posts-list .gwel-bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gwel-posts-list .gwel-read-more-arrow {
  font-size: var(--gwel-post--arrow-size, 18px);
  color: var(--gwel-post--arrow-c, #000000);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.gwel-posts-list .gwel-read-more-arrow.grve-arrow-stacked {
  padding: var(--gwel-post--arrow-p, 18px);
  background-color: var(--gwel-post--arrow-bg, #e9e9e9);
  border-radius: var(--gwel-post--arrow-border-radius, 100px);
}
.gwel-posts-list .gwel-read-more-arrow.grve-arrow-framed {
  padding: var(--gwel-post--arrow-p, 18px);
  background-color: var(--gwel-post--arrow-bg, #e9e9e9);
  border-radius: var(--gwel-post--arrow-border-radius, 100px);
  border: var(--gwel-post--arrow-border-s, 1px) solid var(--gwel-post--arrow-border-c, #cccccc);
}
.gwel-posts-list .gwel-read-more-arrow svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: currentColor;
}

/* =============================================================================
- Posts List Titles
============================================================================= */
.e-con-inner > .elementor-widget-gwel-posts-list-titles {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow);
}

.gwel-posts-list-titles {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--gwel-posts-list-titles--height, 50vh);
  background-color: var(--gwel-posts-list-titles--bg-color, #000000);
  padding: var(--gwel-posts-list-titles--padding);
}
.gwel-posts-list-titles .gwel-posts-list-titles-inner {
  width: 100%;
  max-width: var(--gwel-posts-list-titles--width, 1500px);
  margin-left: auto;
  margin-right: auto;
}
.gwel-posts-list-titles .gwel-titles-wrapper {
  position: relative;
  z-index: 3;
  margin-left: calc(-1 * var(--gwel-posts-list-titles--gap, 30px)/2 );
  margin-right: calc(-1 * var(--gwel-posts-list-titles--gap, 30px)/2 );
}
.gwel-posts-list-titles .gwel-titles-wrapper:before, .gwel-posts-list-titles .gwel-titles-wrapper:after {
  display: table;
  content: " ";
}
.gwel-posts-list-titles .gwel-titles-wrapper:after {
  clear: both;
}
.gwel-posts-list-titles .gwel-post-item {
  float: left;
  display: block;
  padding: calc(var(--gwel-posts-list-titles--gap, 30px)/2);
  color: var(--gwel-posts-list-titles--text-c, #ffffff);
}
.gwel-posts-list-titles .gwel-post-item .gwel-title {
  position: relative;
  z-index: 2;
  color: var(--gwel-posts-list-titles--text-c, #ffffff);
  max-width: var(--gwel-posts-list-titles--title-w, none);
  white-space: normal;
}
.gwel-posts-list-titles .gwel-post-item .gwel-item-cnt {
  position: relative;
  top: var(--gwel-posts-list-titles--count-top);
  font-size: 14px;
  line-height: 1;
  color: var(--gwel-posts-list-titles--count-c, #6b6b6b);
}
.gwel-posts-list-titles.gwel-ellipsis .gwel-post-item .gwel-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.gwel-posts-list-titles.gwel-underline-hover .gwel-post-item .gwel-title:after {
  content: '';
  position: absolute;
  width: 100%;
  height: var(--gwel-posts-list-titles--underline-h, 18px);
  left: 0;
  bottom: var(--gwel-posts-list-titles--underline-b, 0);
  z-index: -1;
  background-color: var(--gwel-posts-list-titles--underline-c);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.gwel-posts-list-titles.gwel-underline-hover .gwel-post-item:hover .gwel-title:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.gwel-posts-list-titles .gwel-post-item-inner {
  display: flex;
  gap: 8px;
  align-items: var(--gwel-posts-list-titles--count-align, flex-start);
  white-space: nowrap;
}
.gwel-posts-list-titles .gwel-item-cnt {
  display: block;
}
.gwel-posts-list-titles .gwel-images-wrapper,
.gwel-posts-list-titles .gwel-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.gwel-posts-list-titles .gwel-images-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: var(--gwel-posts-list-titles--overlay-color, #000000);
  opacity: var(--gwel-posts-list-titles--overlay-opacity, 0.7);
}
.gwel-posts-list-titles .gwel-images .gwel-image-item {
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}
.gwel-posts-list-titles .gwel-images .gwel-image-item.gwel-active {
  opacity: 1;
}
.gwel-posts-list-titles .gwel-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* =============================================================================
- Social Links
============================================================================= */
.gwel-social-links {
  display: flex;
  flex-direction: row;
  gap: var(--gwel-icon--gap, 24px);
  justify-content: var(--gwel-social--align, flex-start);
}
.gwel-social-links .gwel-social-icon {
  line-height: 1em;
  position: relative;
  color: var(--gwel-icon--text-c, #b8b8b8);
  font-size: var(--gwel-icon--size, 24px);
  text-align: center;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.gwel-social-links .gwel-social-icon i {
  font-size: 1em;
  width: 1em;
  height: 1em;
  position: relative;
}
.gwel-social-links .gwel-social-icon i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gwel-social-links .gwel-social-icon svg {
  display: block;
  width: 1em;
  height: auto;
  max-height: 1em;
  fill: currentColor;
}
.gwel-social-links .gwel-social-icon svg g,
.gwel-social-links .gwel-social-icon svg path {
  fill: inherit;
}
.gwel-social-links .gwel-social-icon.gwel-icon-view-stacked {
  padding: var(--gwel-icon--padding, 0.5em);
  color: var(--gwel-icon--text-c, #ffffff);
  background-color: var(--gwel-icon--background-c, #b8b8b8);
  border-radius: 100%;
}
.gwel-social-links .gwel-social-icon.gwel-icon-view-framed {
  padding: var(--gwel-icon--padding, 0.5em);
  color: var(--gwel-icon--text-c, #b8b8b8);
  border: var(--gwel-icon--border-w, 3px) solid var(--gwel-icon--border-c, #f7f7f7);
  background-color: var(--gwel-icon--background-c, transparent);
  border-radius: 100%;
}

/* =============================================================================
- Text Editor
============================================================================= */
.elementor-widget-text-editor.gwel-underline-links-yes a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  transition: background-size .3s;
}
.elementor-widget-text-editor.gwel-underline-links-yes a:hover {
  background-size: 0% 2px;
}

/* =============================================================================
- Content Switcher
============================================================================= */
.gwel-content-switcher .gwel-switcher-wrapper {
  display: flex;
  align-items: center;
  justify-content: var(--gwel-switcher--align, center);
  gap: var(--gwel-switcher--gap, 16px);
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-switcher {
  width: var(--gwel-switcher--size, 80px);
  height: calc( var( --gwel-switcher--size, 80px) / 2);
  border: 1px solid var(--gwel-switcher--border-c, #DADADA);
  background-color: var(--gwel-switcher--background-c, #ffffff);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  box-sizing: content-box;
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-switcher .gwel-bullet-wrapper {
  width: calc( var( --gwel-switcher--size, 80px) / 2);
  height: calc( var( --gwel-switcher--size, 80px) / 2);
  padding: 3px;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform .3s ease;
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-switcher .gwel-bullet {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: var(--gwel-switcher--color, #000);
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-switcher.gwel-primary-active .gwel-bullet-wrapper {
  transform: translateX(0);
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-switcher.gwel-secondary-active .gwel-bullet-wrapper {
  transform: translateX(100%);
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-title {
  color: var(--gwel-switcher--title-c, inherit);
}
.gwel-content-switcher .gwel-switcher-wrapper .gwel-badge {
  color: var(--gwel-switcher--badge-c, #000);
  background-color: var(--gwel-switcher--badge-background-c, #fff);
  padding: var(--gwel-switcher--badge-padding, 9px 12px);
  border-radius: var(--gwel-switcher--badge-radius, 3px);
}
.gwel-content-switcher .gwel-content-wrapper {
  margin-top: var(--gwel-switcher--content-mt, 0px);
}
.gwel-content-switcher .gwel-content-wrapper .gwel-switcher-item-content {
  display: none;
}
.gwel-content-switcher .gwel-content-wrapper .gwel-switcher-item-content.active {
  display: block;
  animation: gwel_content_switcher_fadeIn ease .5s;
}
.gwel-content-switcher .gwel-content-wrapper .gwel-simple-content {
  color: var(--gwel-switcher--content-c, #000000);
}

@keyframes gwel_content_switcher_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =============================================================================
- Classic Grid Elements
============================================================================= */
.gwel-classic-grid .gwel-grid-container {
  display: grid;
  grid-row-gap: var(--gwel-grid--row-gap, 30px);
  grid-column-gap: var(--gwel-grid--column-gap, 30px);
  grid-template-columns: repeat(var(--gwel-grid--columns, 3), 1fr);
}
.gwel-classic-grid .gwel-grid-item {
  z-index: 1;
}
.gwel-classic-grid .gwel-grid-item:hover {
  z-index: 3;
}
.gwel-classic-grid .gwel-animation-item {
  transition: transform .4s ease, opacity .4s ease;
}
.gwel-classic-grid .gwel-animation-item.gwel-fade-in {
  opacity: 0;
}
.gwel-classic-grid .gwel-animation-item.gwel-fade-in-up {
  opacity: 0;
  transform: translate(0px, -30px) scale(1);
}
.gwel-classic-grid .gwel-animation-item.gwel-fade-in-down {
  opacity: 0;
  transform: translate(0px, 30px) scale(1);
}
.gwel-classic-grid .gwel-animation-item.gwel-fade-in-left {
  opacity: 0;
  transform: translate(-30px, 0px) scale(1);
}
.gwel-classic-grid .gwel-animation-item.gwel-fade-in-right {
  opacity: 0;
  transform: translate(30px, 0px) scale(1);
}
.gwel-classic-grid .gwel-animation-item.gwel-zoom-in {
  opacity: 0;
  transform: translate(30px, 0px) scale(0.8);
}
.gwel-classic-grid .gwel-animation-item.gwel-animated {
  opacity: 1;
  transform: translate(0px, 0px) scale(1);
}
