.th-grid-gap {
  display: grid;
  gap: var(--horizontal-spacing-px);
}
.themeshawk-elementor-blog_posts_meta {
  line-height: 1.3em;
  font-size: 12px;
  margin-bottom: 13px;
  color: rgba(var(--color-foreground), 0.7);
}
.blog-post-thumbnail img {
  height: auto !important;
}
.blog-post-thumbnail {
  align-items: center;
  justify-content: center;
  display: flex;
}
/*News Blog Widget*/
.news-blog-posts {
  overflow: hidden;
}
/* Grid Layout */
.news-blog-grid {
  display: grid;
  gap: var(--horizontal-spacing-px);
}
.news-blog-grid.news-blog-columns-1 {
  grid-template-columns: 1fr;
}
.news-blog-grid.news-blog-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.news-blog-grid.news-blog-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.news-blog-grid.news-blog-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.news-blog-grid.news-blog-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.news-blog-grid.news-blog-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
/* List Layout */
.news-blog-list .news-blog-post {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
/* Masonry Layout */
.news-blog-masonry {
  column-gap: var(--horizontal-spacing-px);
}
.news-blog-masonry.news-blog-columns-1 {
  column-count: 1;
}
.news-blog-masonry.news-blog-columns-2 {
  column-count: 2;
}
.news-blog-masonry.news-blog-columns-3 {
  column-count: 3;
}
.news-blog-masonry.news-blog-columns-4 {
  column-count: 4;
}
.news-blog-masonry.news-blog-columns-5 {
  column-count: 5;
}
.news-blog-masonry.news-blog-columns-6 {
  column-count: 6;
}
.news-blog-masonry .news-blog-post {
  break-inside: avoid;
  margin-bottom: 30px;
}
/* Collage Layout */
.news-blog-collage {
  display: grid;
  gap: var(--horizontal-spacing-px);
  grid-template-columns: repeat(3, 1fr);
}
.news-blog-collage .news-blog-post {
  position: relative;
}
.news-blog-collage .news-blog-collage-item-0 {
  grid-column: span 2;
  grid-row: span 2;
}
.news-blog-collage .news-blog-collage-item-1 {
  grid-column: span 1;
}
.news-blog-collage .news-blog-collage-item-2 {
  grid-column: span 1;
}
/* New: Collage-2 Layout */
.news-blog-collage-2 {
  display: grid;
  gap: var(--horizontal-spacing-px);
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}
.news-blog-collage-2 .news-blog-collage-2-item-0 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.news-blog-collage-2 .news-blog-collage-2-item-1, .news-blog-collage-2 .news-blog-collage-2-item-2, .news-blog-collage-2 .news-blog-collage-2-item-3, .news-blog-collage-2 .news-blog-collage-2-item-4 {
  grid-column: span 1;
  grid-row: span 1;
}
/* New: Image Overlay */
.news-blog-image-overlay {
  position: relative;
}
.news-blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  /*align-items: flex-end;*/
  justify-content: flex-start;
  /*min-height: 50%;*/
}
.news-blog-overlay .news-blog-title, .news-blog-overlay .news-blog-excerpt, .news-blog-overlay .news-blog-meta, .news-blog-overlay .news-blog-categories, .news-blog-overlay .news-blog-tags {
  flex: 1 1 100%;
}
/* Post Styling */
.news-blog-post {
  border-radius: 4px;
}
.news-blog-image img {
  width: 100%;
  height: 100% !important;
  border-radius: 5px;
  display: block;
}
.news-blog-content {
  padding: 10px 0;
}
.news-blog-title {
  margin: 0px 0;
}
.news-blog-excerpt {
  color: rgb(var(--color-foreground));
}
.news-blog-meta {
  font-size: 0.8em;
  color: rgba(var(--color-foreground), 0.7);
  ;
}
.news-blog-categories, .news-blog-tags {
  font-size: 0.8em;
  margin-bottom: 0px;
}
.news-blog-heading {
  margin-bottom: 20px;
}
.news-blog-content {
  gap: 5px;
  display: flex;
  flex-direction: column;
}
/* Desktop */
.news-blog-grid.news-blog-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.news-blog-grid.news-blog-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.news-blog-grid.news-blog-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.news-blog-grid.news-blog-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.news-blog-grid.news-blog-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.news-blog-grid.news-blog-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
/* Tablet */
@media (max-width: 1024px) {
  .news-blog-grid.news-blog-columns-tablet-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-blog-grid.news-blog-columns-tablet-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-blog-grid.news-blog-columns-tablet-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-blog-grid.news-blog-columns-tablet-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .news-blog-grid.news-blog-columns-tablet-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .news-blog-grid.news-blog-columns-tablet-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .news-blog-masonry.news-blog-columns-tablet-1 {
    column-count: 1;
  }
  .news-blog-masonry.news-blog-columns-tablet-2 {
    column-count: 2;
  }
  .news-blog-masonry.news-blog-columns-tablet-3 {
    column-count: 3;
  }
  .news-blog-masonry.news-blog-columns-tablet-4 {
    column-count: 4;
  }
  .news-blog-masonry.news-blog-columns-tablet-5 {
    column-count: 5;
  }
  .news-blog-masonry.news-blog-columns-tablet-6 {
    column-count: 6;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .news-blog-grid.news-blog-columns-mobile-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-blog-grid.news-blog-columns-mobile-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-blog-grid.news-blog-columns-mobile-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-blog-grid.news-blog-columns-mobile-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .news-blog-grid.news-blog-columns-mobile-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .news-blog-grid.news-blog-columns-mobile-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .news-blog-masonry.news-blog-columns-mobile-1 {
    column-count: 1;
  }
  .news-blog-masonry.news-blog-columns-mobile-2 {
    column-count: 2;
  }
  .news-blog-masonry.news-blog-columns-mobile-3 {
    column-count: 3;
  }
  .news-blog-masonry.news-blog-columns-mobile-4 {
    column-count: 4;
  }
  .news-blog-masonry.news-blog-columns-mobile-5 {
    column-count: 5;
  }
  .news-blog-masonry.news-blog-columns-mobile-6 {
    column-count: 6;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .news-blog-collage, .news-blog-collage-2 {
    grid-template-columns: 1fr !important;
    column-count: 1 !important;
  }
  .news-blog-collage .news-blog-collage-item-0, .news-blog-collage-2 .news-blog-collage-2-item-0 {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/*Woo Category List*/
.woo-category {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.woo-category-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.woo-category-image.circle img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.woo-category-image.square img {
  aspect-ratio: 1 / 1;
}
.woo-category-image.landscape img {
  aspect-ratio: 3 / 2;
}
.woo-category-image.portrait img {
  aspect-ratio: 2 / 3;
}
.woo-category-image.adapt img {
  width: 100%;
  height: auto;
}
/*Marquee Content*/
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 20px;
}
.marquee-text {
  display: inline-block;
  padding: 0 20px;
}
.marquee-image {
  display: inline-block;
}
.marquee-image img {
  height: auto;
}
.marquee-wrapper[data-direction="left"] .marquee-content {
  animation: scroll-left linear infinite;
}
.marquee-wrapper[data-direction="right"] .marquee-content {
  animation: scroll-right linear infinite;
}
.marquee-wrapper[data-direction="up"] .marquee-content {
  flex-direction: column;
  animation: scroll-up linear infinite;
}
.marquee-wrapper[data-direction="down"] .marquee-content {
  flex-direction: column;
  animation: scroll-down linear infinite;
}
.marquee-wrapper[data-pause="pause-on-hover"]:hover .marquee-content {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none !important;
  }
}
/*Testimonial*/
.eta-testimonial-section {
  padding: 20px 0;
}
.eta-testimonial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.eta-testimonial-grid .eta-testimonial-item {
  margin-bottom: 20px;
}
.eta-testimonial-item {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}
.eta-testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.eta-testimonial-author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eta-testimonial-image {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}
.eta-testimonial-author {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.eta-testimonial-designation {
  font-size: 14px;
  font-style: italic;
}
.eta-testimonial-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
}
.eta-testimonial-carousel .owl-dot.active span {
  transform: scale(1.2);
}
/*Timer*/
.themeshawk-timer-section {
  overflow: hidden;
}
.themeshawk-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.themeshawk-timer-grid .timer-box {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  min-width: 60px;
}
.themeshawk-timer-single {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.themeshawk-timer-single .timer-box {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  min-width: 60px;
}
.timer-box span {
  display: block;
}
.timer-days, .timer-hours, .timer-minutes, .timer-seconds {
  font-size: 24px;
  font-weight: bold;
}
.timer-label {
  font-size: 14px;
  margin-top: 5px;
}
.timer-expired {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
/*Collapsible content*/
.collapsible-container {
  gap: 15px;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
}
.collapsible-item {
  margin-bottom: 0px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.collapsible-title {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  background-color: #f8f9fa;
}
.collapsible-title:hover {
  transform: translateY(-2px);
}
.collapsible-icon {
  margin-right: 12px;
  font-size: 20px;
  font-weight: bold;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: rgb(var(--color-background));
  border-top: 1px solid #e9ecef;
  line-height: 1.6;
  transition: maxmole-height 0.3s ease, padding 0.3s ease;
}
.collapsible-content.open {
  max-height: 1000px; /* Adjust based on expected content height */
  padding: 20px;
}
.collapsible-content p {
  margin: 0 0 15px;
}
.collapsible-content *:last-child {
  margin-bottom: 0;
}
/*Call To Action*/
.cta-widget {
  padding: 20px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: inherit;
  gap: 15px;
}
.cta-heading {
  margin: 0;
  font-size: 2em;
}
.cta-content {
  font-size: 1.1em;
  line-height: 1.5;
}
.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  opacity: 0.9;
}
.cta-button i {
  font-size: 1.2em;
}
/*Blockquotes*/
/* Styles for Custom Blockquote Widget */
.custom-blockquote {
  position: relative;
  margin: 0;
  padding: 20px;
  background-color: #f7f7f7;
  border-left: 5px solid #007bff;
  border-radius: 5px;
}
.custom-blockquote .quote-content {
  font-size: 1.2em;
  font-style: italic;
  margin: 0 0 10px 0;
}
.custom-blockquote .quote-author {
  display: block;
  font-size: 0.9em;
  font-style: normal;
}
/*Progress tracker*/
.progress-tracker {
  position: relative;
  width: 100%;
}
.progress-tracker-horizontal {
  background-color: #e9ecef;
  border-radius: 5px;
  overflow: hidden;
}
.progress-tracker-horizontal .progress-tracker-fill {
  height: 100%;
  width: 0;
  background-color: #007bff;
  transition: width 0.3s ease;
}
.progress-tracker-horizontal .progress-tracker-percentage {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: bold;
}
.progress-tracker-circular {
  position: relative;
  display: inline-block;
}
.progress-tracker-circular .progress-tracker-fill {
  transition: stroke-dashoffset 0.3s ease;
}
.progress-tracker-circular .progress-tracker-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
}
/*Image Hover With Caption*/
.image_hover_with_caption {
  color: rgb(var(--color-background));
  position: relative;
  overflow: hidden;
  margin: 10px;
  /*min-width: 220px;
  max-width: 310px;
  max-height: 220px;*/
  width: 100%;
  background: rgb(var(--color-foreground));
  text-align: left;
}
.image_hover_with_caption * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.image_hover_with_caption img {
  max-width: 100%;
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.image_hover_with_caption figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 3em;
  width: 100%;
  height: 100%;
}
.image_hover_with_caption figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: '';
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.image_hover_with_caption h2, .image_hover_with_caption p {
  margin: 0 0 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.image_hover_with_caption h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transform: translate3d(30%, 0%, 0);
  transform: translate3d(30%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.image_hover_with_caption h2 span {
  font-weight: 800;
}
.image_hover_with_caption p {
  font-weight: 200;
  -webkit-transform: translate3d(0%, 30%, 0);
  transform: translate3d(0%, 30%, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.image_hover_with_caption a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: rgb(var(--color-background));
}
.image_hover_with_caption:hover img {
  opacity: 0.3;
}
.image_hover_with_caption:hover figcaption h2 {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.image_hover_with_caption:hover figcaption p {
  opacity: 0.9;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.image_hover_with_caption:hover figcaption::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
/*Before After Slider*/
/* Our wrapper */
.before-after-slider-wrapper {
  height: 600px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
/* Our image information */
.before, .after {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.content-image {
  height: 100% !important;
  max-width: inherit !important;
}
.after {
  width: 125px;
}
.scroller {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.9;
  pointer-events: auto;
  cursor: pointer;
}
.scroller:hover {
  opacity: 1;
}
.scrolling {
  pointer-events: none;
  opacity: 1;
}
.scroller__thumb {
  width: 100%;
  height: 100%;
  padding: 5px;
}
.scroller:before, .scroller:after {
  content: " ";
  display: block;
  width: 7px;
  height: 9999px;
  position: absolute;
  left: 50%;
  margin-left: -3.5px;
  z-index: 30;
  transition: 0.1s;
}
.scroller:before {
  top: 100%;
}
.scroller:after {
  bottom: 100%;
}
/* If you want to change the colors, make sure you change the fill in the svgs to match */
.scroller {
  border: 5px solid rgb(var(--color-background));
}
.scroller:before, .scroller:after {
  background: rgb(var(--color-background));
}
/*Image Hover With Effects*/
.grid_image_hover_effect {
  position: relative;
  list-style: none;
  text-align: center;
}
/* Common style */
.grid_image_hover_effect figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}
.grid_image_hover_effect figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}
.grid_image_hover_effect figure figcaption {
  padding: 2em;
  color: rgb(var(--color-background));
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.grid_image_hover_effect figure figcaption::before, .grid_image_hover_effect figure figcaption::after {
  pointer-events: none;
}
.grid_image_hover_effect figure figcaption, .grid_image_hover_effect figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid_image_hover_effect figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.grid_image_hover_effect figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}
.grid_image_hover_effect figure h2 span {
  font-weight: 800;
}
.grid_image_hover_effect figure h2, .grid_image_hover_effect figure p {
  margin: 0;
}
.grid_image_hover_effect figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}
/* Individual effects */
/*---------------*/
/***** Lily *****/
/*---------------*/
figure.effect-lily img {
  max-width: none;
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
figure.effect-lily figcaption {
  text-align: left;
}
figure.effect-lily figcaption > div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  height: 50%;
}
figure.effect-lily h2, figure.effect-lily p {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
figure.effect-lily h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-lily p {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img, figure.effect-lily:hover p {
  opacity: 1;
}
figure.effect-lily:hover img, figure.effect-lily:hover h2, figure.effect-lily:hover p {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-lily:hover p {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
/*---------------*/
/***** Sadie *****/
/*---------------*/
figure.effect-sadie figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}
figure.effect-sadie h2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #484c61;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
figure.effect-sadie figcaption::before, figure.effect-sadie p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
figure.effect-sadie:hover h2 {
  color: rgb(var(--color-background));
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
}
figure.effect-sadie:hover figcaption::before, figure.effect-sadie:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Roxy *****/
/*---------------*/
figure.effect-roxy {
  background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
  background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}
figure.effect-roxy img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}
figure.effect-roxy figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid rgb(var(--color-background));
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
figure.effect-roxy figcaption {
  padding: 3em;
  text-align: left;
}
figure.effect-roxy h2 {
  padding: 30% 0 10px 0;
}
figure.effect-roxy p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
figure.effect-roxy:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-roxy:hover figcaption::before, figure.effect-roxy:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Bubba *****/
/*---------------*/
figure.effect-bubba {
  background: #9e5406;
}
figure.effect-bubba img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-bubba:hover img {
  opacity: 0.4;
}
figure.effect-bubba figcaption::before, figure.effect-bubba figcaption::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-bubba figcaption::before {
  border-top: 1px solid rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-background));
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
figure.effect-bubba figcaption::after {
  border-right: 1px solid rgb(var(--color-background));
  border-left: 1px solid rgb(var(--color-background));
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
figure.effect-bubba h2 {
  padding-top: 30%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
figure.effect-bubba p {
  padding: 20px 2.5em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
figure.effect-bubba:hover figcaption::before, figure.effect-bubba:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-bubba:hover h2, figure.effect-bubba:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Romeo *****/
/*---------------*/
figure.effect-romeo {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
figure.effect-romeo img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 0, 300px);
  transform: translate3d(0, 0, 300px);
}
figure.effect-romeo:hover img {
  opacity: 0.6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-romeo figcaption::before, figure.effect-romeo figcaption::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: rgb(var(--color-background));
  content: '';
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
figure.effect-romeo:hover figcaption::before {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
figure.effect-romeo:hover figcaption::after {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
figure.effect-romeo h2, figure.effect-romeo p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-romeo h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}
figure.effect-romeo p {
  padding: 0.25em 2em;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}
figure.effect-romeo:hover h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}
figure.effect-romeo:hover p {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}
/*---------------*/
/***** Layla *****/
/*---------------*/
figure.effect-layla {
  background: #18a367;
}
figure.effect-layla img {
  height: 390px;
}
figure.effect-layla figcaption {
  padding: 3em;
}
figure.effect-layla figcaption::before, figure.effect-layla figcaption::after {
  position: absolute;
  content: '';
  opacity: 0;
}
figure.effect-layla figcaption::before {
  top: 50px;
  right: 30px;
  bottom: 50px;
  left: 30px;
  border-top: 1px solid rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-background));
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border-right: 1px solid rgb(var(--color-background));
  border-left: 1px solid rgb(var(--color-background));
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
figure.effect-layla h2 {
  padding-top: 26%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-layla p {
  padding: 0.5em 2em;
  text-transform: none;
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
figure.effect-layla img, figure.effect-layla h2 {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
figure.effect-layla img, figure.effect-layla figcaption::before, figure.effect-layla figcaption::after, figure.effect-layla p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-layla:hover figcaption::before, figure.effect-layla:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-layla:hover h2, figure.effect-layla:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-layla:hover figcaption::after, figure.effect-layla:hover h2, figure.effect-layla:hover p, figure.effect-layla:hover img {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
/*---------------*/
/***** Honey *****/
/*---------------*/
figure.effect-honey {
  background: #4a3753;
}
figure.effect-honey img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-honey:hover img {
  opacity: 0.5;
}
figure.effect-honey figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgb(var(--color-background));
  content: '';
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
figure.effect-honey h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em 1.5em;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
figure.effect-honey h2 i {
  font-style: normal;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
figure.effect-honey figcaption::before, figure.effect-honey h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-honey:hover figcaption::before, figure.effect-honey:hover h2, figure.effect-honey:hover h2 i {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Oscar *****/
/*---------------*/
figure.effect-oscar {
  background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
  background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}
figure.effect-oscar img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-oscar figcaption {
  padding: 3em;
  background-color: rgba(58, 52, 42, 0.7);
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
figure.effect-oscar figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid rgb(var(--color-background));
  content: '';
}
figure.effect-oscar h2 {
  margin: 20% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
figure.effect-oscar figcaption::before, figure.effect-oscar p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
figure.effect-oscar:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-oscar:hover figcaption::before, figure.effect-oscar:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-oscar:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}
figure.effect-oscar:hover img {
  opacity: 0.4;
}
/*---------------*/
/***** Marley *****/
/*---------------*/
figure.effect-marley figcaption {
  text-align: right;
}
figure.effect-marley h2, figure.effect-marley p {
  position: absolute;
  right: 30px;
  left: 30px;
  padding: 10px 0;
}
figure.effect-marley p {
  bottom: 30px;
  line-height: 1.5;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
figure.effect-marley h2 {
  top: 30px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
figure.effect-marley:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-marley h2::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgb(var(--color-background));
  content: '';
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
figure.effect-marley h2::after, figure.effect-marley p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-marley:hover h2::after, figure.effect-marley:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Ruby *****/
/*---------------*/
figure.effect-ruby {
  background-color: #17819c;
}
figure.effect-ruby img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
figure.effect-ruby:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-ruby h2 {
  margin-top: 20%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
figure.effect-ruby p {
  margin: 1em 0 0;
  padding: 3em;
  border: 1px solid rgb(var(--color-background));
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1);
}
figure.effect-ruby:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-ruby:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
/*---------------*/
/***** Milo *****/
/*---------------*/
figure.effect-milo {
  background: #2e5d5a;
}
figure.effect-milo img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
  transform: translate3d(-30px, 0, 0) scale(1.12);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
figure.effect-milo:hover img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
figure.effect-milo h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em 1.2em;
}
figure.effect-milo p {
  padding: 0 10px 0 0;
  width: 50%;
  border-right: 1px solid rgb(var(--color-background));
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
figure.effect-milo:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Dexter *****/
/*---------------*/
figure.effect-dexter {
  background: -webkit-linear-gradient(top, rgba(37, 141, 200, 1) 0%, rgba(104, 60, 19, 1) 100%);
  background: linear-gradient(to bottom, rgba(37, 141, 200, 1) 0%, rgba(104, 60, 19, 1) 100%);
}
figure.effect-dexter img {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-dexter:hover img {
  opacity: 0.4;
}
figure.effect-dexter figcaption::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: -webkit-calc(50% - 30px);
  height: calc(50% - 30px);
  border: 7px solid rgb(var(--color-background));
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
figure.effect-dexter:hover figcaption::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-dexter figcaption {
  padding: 3em;
  text-align: left;
}
figure.effect-dexter p {
  position: absolute;
  right: 60px;
  bottom: 60px;
  left: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}
figure.effect-dexter:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Sarah *****/
/*---------------*/
figure.effect-sarah {
  background: #42b078;
}
figure.effect-sarah img {
  max-width: none;
  width: -webkit-calc(100% + 20px);
  width: calc(100% + 20px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
figure.effect-sarah:hover img {
  opacity: 0.4;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-sarah figcaption {
  text-align: left;
}
figure.effect-sarah h2 {
  position: relative;
  overflow: hidden;
  padding: 0.5em 0;
}
figure.effect-sarah h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(var(--color-background));
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
figure.effect-sarah:hover h2::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-sarah p {
  padding: 1em 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
figure.effect-sarah:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Zoe *****/
/*---------------*/
figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 3.75em;
  background: rgb(var(--color-background));
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
figure.effect-zoe h2 {
  float: left;
}
figure.effect-zoe p.icon-links a {
  float: right;
  color: #3c4a50;
  font-size: 1.4em;
}
figure.effect-zoe:hover p.icon-links a:hover, figure.effect-zoe:hover p.icon-links a:focus {
  color: #252d31;
}
figure.effect-zoe p.description {
  position: absolute;
  bottom: 8em;
  padding: 2em;
  color: rgb(var(--color-background));
  text-transform: none;
  font-size: 90%;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  -webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
}
figure.effect-zoe h2, figure.effect-zoe p.icon-links a {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
figure.effect-zoe p.icon-links a span::before {
  display: inline-block;
  padding: 8px 10px;
  font-family: 'feathericons';
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
figure.effect-zoe h2 {
  display: inline-block;
}
figure.effect-zoe:hover p.description {
  opacity: 1;
}
figure.effect-zoe:hover figcaption, figure.effect-zoe:hover h2, figure.effect-zoe:hover p.icon-links a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-zoe:hover h2 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
/*---------------*/
/***** Chico *****/
/*---------------*/
figure.effect-chico img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}
figure.effect-chico:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-chico figcaption {
  padding: 3em;
}
figure.effect-chico figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid rgb(var(--color-background));
  content: '';
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
figure.effect-chico figcaption::before, figure.effect-chico p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico h2 {
  padding: 20% 0 20px 0;
}
figure.effect-chico p {
  margin: 0 auto;
  max-width: 200px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
figure.effect-chico:hover figcaption::before, figure.effect-chico:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 50em) {
  .content {
    padding: 0 10px;
    text-align: center;
  }
  .grid_image_hover_effect figure {
    display: inline-block;
    float: none;
    margin: 10px auto;
    width: 100%;
  }
}
.content {
  margin: 0 auto;
  max-width: 1000px;
}
.content > h2 {
  clear: both;
  margin: 0;
  padding: 4em 1% 0;
  color: #484B54;
  font-weight: 800;
  font-size: 1.5em;
}
.content > h2:first-child {
  padding-top: 0em;
}
/*Profile Card*/
.container_profile_card .profile_card .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c73df;
}
.container_profile_card .profile_card .icon .fa, .container_profile_card .profile_card .icon .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: rgb(var(--color-background));
}
.container_profile_card .profile_card .slide {
  width: 100%;
  height: 200px;
  transition: 0.5s;
}
.container_profile_card .profile_card .slide.slide1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: .7s;
  transform: translateY(50%);
}
.container_profile_card .profile_card:hover .slide.slide1 {
  transform: translateY(0px);
}
.container_profile_card .profile_card .slide.slide2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: .8s;
  transform: translateY(-50%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.container_profile_card .profile_card:hover .slide.slide2 {
  transform: translateY(0);
}
.container_profile_card .profile_card .slide.slide2::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  bottom: 15px;
  left: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #2c73df;
}
.container_profile_card .profile_card .slide.slide2 .content p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #414141;
}
.container_profile_card .profile_card .slide.slide2 .content h3 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 24px;
  text-align: center;
  color: #414141;
}
/*Blog Posts List*/
.blog-post {
  padding: 0px;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.blog-post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.blog-post-title {
  margin: 10px 0;
}
.blog-post-title a {
  text-decoration: none;
}
.blog-post-excerpt {
  margin-bottom: 10px;
}
.blog-post-carousel .blog-post {
  display: flex;
}
/*Woo Tabs*/
.woo-product-tabs-section {
  margin-bottom: 30px;
}
.woo-product-tabs-nav {
  display: flex;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 20px;
}
.woo-product-tabs-nav li {
  margin: 0 5px;
}
.woo-product-tabs-nav a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.woo-product-tabs-nav li.active a, .woo-product-tabs-nav li a, .nav-tabs .nav-link {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1) !important;
  border: 1px solid rgba(var(--color-foreground), 0.1) !important;
}
.woo-product-tabs-nav {
  border: none !important;
  margin-bottom: 20px;
}
/*Tab*/
.woo-product-tabs-nav .nav-link {
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  border-radius: 100px !important;
  border: 1px solid rgba(var(--color-foreground), 0.1);
}
.woo-product-tabs-nav .nav-link.active {
  background-color: var(--theme-base-color);
  color: rgb(var(--color-background));
}
.woo-product-tabs-content .tab-pane {
  display: none;
}
.woo-product-tabs-content .tab-pane.active {
  display: block;
}
.woo-product-grid, .woo-product-masonry, .woo-product-carousel {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woo-product-tabs-content {
  padding: 20px 0;
}
/*Lookbook Slider*/
@keyframes pulse {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.1);
  }
}
.slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 999;
}
.slick-next, .slick-prev {
  &:before {
    display: block;
    font-size: 40px;
    line-height: 35px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: bold;
    text-align: center;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(var(--color-background));
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
  }
}
.slick-next {
  right: 0;
  &:before {
    content: "\0203A";
  }
}
.slick-prev {
  left: 0;
  &:before {
    content: "\02039";
  }
}
.lookbook-section {
  position: relative;
  display: block;
  width: 100%;
  float: left;
}
.product-item {
  float: left;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-item .glide__bullets {
  /*position: relative;*/
  height: 100%;
}
.product-item .glide__bullet {
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
}
.product-item .glide__bullet--active {
  transform: scale(0.7);
}
.product-item .marker {
  position: absolute;
  width: 60px;
  height: 60px;
}
.product-item .dot {
  position: absolute;
  display: block;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border-radius: 100%;
  background: rgb(var(--color-background));
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
  z-index: 9;
}
.product-item .dot:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  top: -15px;
  left: -15px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
  animation: 2.5s pulse ease-in-out infinite;
}
.product-detail {
  position: relative;
  float: left;
  width: 100%;
  padding: 0px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}
.product-detail .glide__slides {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-detail .glide__slide {
  float: left;
}
.product-detail figure {
  position: relative;
  float: left;
  display: block;
  width: 280px;
}
.product-detail figure img {
  width: 180px;
  margin: 0 auto;
}
.product-detail header {
  width: 360px;
  display: block;
  position: relative;
}
.product-detail header h1 {
  font-size: 16px;
  font-weight: 100;
  margin: 0;
}
.product-detail header span {
  font-size: 12px;
  display: block;
  margin: 20px 0;
}
.product-detail header a {
  color: black;
  text-decoration: none;
}
.product-detail header .btn {
  position: relative;
  display: block;
  width: 80%;
  padding: 20px 0;
  color: white;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: black;
  font-size: 12px;
  margin: 0 10%;
}
.product-detail .glide__bullets {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.product-detail .glide__bullet {
  border: 0;
  width: 80px;
  height: 3px;
  background: #e8e8e8;
  border-radius: 0;
  margin-right: -5px;
}
.product-detail .glide__bullet--active {
  background: black;
}
/*Lookbook Image*/
.ripple-animation {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border: 4px solid;
  border-radius: 100%;
  background: rgb(var(--color-background));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.ripple-animation span {
  position: relative;
  font-size: 72px;
  top: 5px;
  left: -5px;
}
.ripple-animation::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: rgb(var(--color-background));
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(2, 2, 1);
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(2, 2, 1);
  }
}
/*Image collage v2*/
.image-container-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
}
.image-container-slideshow.first-image {
  grid-column: span 2;
  /*height: 100%;*/ /* Twice the height of other images plus gap */
}
.image-container-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.text-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.text-background-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  gap: 10px;
}
.text-background-wrapper span {
  color: rgb(var(--color-foreground));
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
/* Position-specific styles */
.text-overlay-wrapper.position-top {
  justify-content: flex-start;
  padding-top: 0px;
}
.text-overlay-wrapper.position-bottom {
  justify-content: flex-end;
  padding-bottom: 0px;
}
.text-overlay-wrapper.position-left {
  align-items: flex-start;
  padding-left: 0px;
}
.text-overlay-wrapper.position-right {
  align-items: flex-end;
  padding-right: 0px;
}
/* Permanent title styling */
.image-container-slideshow.show-permanent .text-overlay-wrapper {
  opacity: 1;
}
.image-container-slideshow.show-permanent .text-background-wrapper span {
  transform: translateY(0);
  opacity: 1;
  transition: none;
}
/* Hover effects for non-permanent titles */
.image-container-slideshow:not(.show-permanent) .text-overlay-wrapper {
  opacity: 0;
}
.image-container-slideshow:not(.show-permanent):hover .text-overlay-wrapper {
  opacity: 1;
}
.image-container-slideshow:not(.show-permanent):hover .text-background-wrapper span {
  transform: translateY(0);
  opacity: 1;
}
.image-container-slideshow:not(.show-permanent):hover .text-background-wrapper span:nth-child(1) {
  transition-delay: 0.1s;
}
.image-container-slideshow:not(.show-permanent):hover .text-background-wrapper span:nth-child(2) {
  transition-delay: 0.2s;
}
/* Image hover effect */
.image-container-slideshow:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .image-container-slideshow.first-image {
    grid-column: span 1;
    grid-row: span 1;
  }
  .text-overlay-wrapper.position-top, .text-overlay-wrapper.position-bottom, .text-overlay-wrapper.position-left, .text-overlay-wrapper.position-right {
    padding: 10px;
  }
  .text-background-wrapper {
    padding: 8px 12px;
  }
}
/*Positions*/
.position-right {
  left: auto !important;
  right: 5% !important;
  width: auto !important;
}
.position-left {
  left: 5% !important;
  right: auto !important;
  width: auto !important;
}
.position-top {
  top: 5% !important;
  height: auto !important;
}
.position-bottom {
  bottom: 5% !important;
  height: auto !important;
}
.position-right-top {
  left: auto !important;
  right: 5% !important;
  width: auto !important;
  top: 5% !important;
  height: auto !important;
}
.position-right-bottom {
  left: auto !important;
  right: 5% !important;
  width: auto !important;
  bottom: 5% !important;
  height: auto !important;
  top: auto !important;
}
.position-left-top {
  left: 5% !important;
  right: auto !important;
  width: auto !important;
  top: 5% !important;
  height: auto !important;
}
.position-left-bottom {
  left: 5% !important;
  right: auto !important;
  width: auto !important;
  bottom: 5% !important;
  height: auto !important;
  top: auto !important;
}
.position-center {
  left: auto !important;
  right: auto !important;
}
.position-center-top {
  left: auto !important;
  right: auto !important;
  top: 5% !important;
  height: auto !important;
}
.position-center-bottom {
  left: auto !important;
  right: auto !important;
  bottom: 5% !important;
  height: auto !important;
  top: auto !important;
}
/*Woocommerce Stars*/
.themeshawk-woo-product-list .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: WooCommerce
}
.themeshawk-woo-product-list .star-rating::before {
  content: "sssss";
  color: #cfc8d8;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}
.themeshawk-woo-product-list .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em
}
.themeshawk-woo-product-list .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0
}
.themeshawk-woo-product-list .woocommerce-product-rating {
  line-height: 2;
  display: block
}
.themeshawk-woo-product-list .woocommerce-product-rating::after, .themeshawk-woo-product-list .woocommerce-product-rating::before {
  content: " ";
  display: table
}
.themeshawk-woo-product-list .woocommerce-product-rating::after {
  clear: both
}
.themeshawk-woo-product-list .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left
}
.themeshawk-woo-product-list .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none
}
.themeshawk-woo-product-list .hreview-aggregate .star-rating {
  margin: 10px 0 0
}
.themeshawk-woo-product-list .star-rating span::before {
  color: #FDCC0D !important;
}
.themeshawk-woo-product-list .star-rating::before {
  color: rgba(255, 223, 0, 1); /* Light yellow */
}
.glide {
  position: relative;
  width: auto !important;
}
.section-heading {
  margin-bottom: 30px !important;
}
/*Mobile Nav*/
.mobile-nav-menu-wrapper {
  position: relative;
}
.mobile-nav-menu.horizontal .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-menu.horizontal .menu-item {
  margin-right: 10px;
}
.mobile-nav-menu.vertical .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-menu.vertical .menu-item {
  margin-bottom: 10px;
}
.mobile-nav-menu .menu-item a {
  text-decoration: none;
  display: inline-block;
}
.mobile-nav-menu .sub-menu {
  list-style: none;
  padding-left: 20px;
  display: none;
}
.mobile-nav-menu .menu-item:hover > .sub-menu {
  display: block;
}
.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}
@media (max-width: 767px) {
  .mobile-nav-menu.breakpoint-mobile .menu {
    display: none;
  }
  .mobile-nav-menu.breakpoint-mobile.has-mobile-menu .mobile-nav-toggle {
    display: block;
  }
  .mobile-nav-menu.breakpoint-mobile.mobile-active .menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: rgb(var(--color-background));
    padding: 20px;
    overflow-y: auto;
  }
  .mobile-nav-menu.breakpoint-mobile.mobile-active .menu-item {
    margin-bottom: 15px;
  }
  .mobile-nav-menu.breakpoint-mobile.mobile-active .sub-menu {
    display: none;
  }
  .mobile-nav-menu.breakpoint-mobile.mobile-active .menu-item:hover > .sub-menu {
    display: block;
  }
}
@media (max-width: 1024px) {
  .mobile-nav-menu.breakpoint-tablet .menu {
    display: none;
  }
  .mobile-nav-menu.breakpoint-tablet.has-mobile-menu .mobile-nav-toggle {
    display: block;
  }
  .mobile-nav-menu.breakpoint-tablet.mobile-active .menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: rgb(var(--color-background));
    padding: 20px;
    overflow-y: auto;
  }
  .mobile-nav-menu.breakpoint-tablet.mobile-active .menu-item {
    margin-bottom: 15px;
  }
  .mobile-nav-menu.breakpoint-tablet.mobile-active .sub-menu {
    display: none;
  }
  .mobile-nav-menu.breakpoint-tablet.mobile-active .menu-item:hover > .sub-menu {
    display: block;
  }
}
/*Image Hover With Effects V2*/
/* Reset and Base Styles */
/* Typography */
.elementor-widget-hover-effects .effectTab-header .title {
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  text-align: center;
  text-transform: uppercase;
}
.elementor-widget-hover-effects .effectTab-header .title::before {
  position: absolute;
  content: "";
  left: 0;
  width: 156%;
  height: 3px;
  margin-left: -28%;
  bottom: -1.5px;
}
.elementor-widget-hover-effects .effectTab-header .title::after {
  position: absolute;
  content: "";
  left: 50%;
  width: 25px;
  height: 25px;
  bottom: -26px;
  margin: 0 0 0 -10px;
  -webkit-clip-path: polygon(75% 0, 75% 69%, 41% 93%, 0 68%, 0 0);
  clip-path: polygon(75% 0, 75% 69%, 41% 93%, 0 68%, 0 0);
}
/* Grid System */
.elementor-widget-hover-effects .column-3, .elementor-widget-hover-effects .column-4, .elementor-widget-hover-effects .column-6, .elementor-widget-hover-effects .column-8, .elementor-widget-hover-effects .column-12 {
  float: left;
  padding: 15px;
}
.elementor-widget-hover-effects .column-3 {
  width: 25%;
}
.elementor-widget-hover-effects .column-4 {
  width: 33.33333333333333%;
}
.elementor-widget-hover-effects .column-6 {
  width: 50%;
}
.elementor-widget-hover-effects .column-8 {
  width: 66.66666666666667%;
}
.elementor-widget-hover-effects .column-12 {
  width: 100%;
}
/* Responsive Grid */
@media (max-width: 575px) {
  .elementor-widget-hover-effects .column-xs-12 {
    width: 100%;
  }
  .elementor-widget-hover-effects .hide-xs {
    display: none;
  }
  .elementor-widget-hover-effects .effectTab-header .title::before {
    width: 125%;
    left: 15%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .elementor-widget-hover-effects .column-sm-6 {
    width: 50%;
  }
  .elementor-widget-hover-effects .column-sm-12 {
    width: 100%;
  }
  .elementor-widget-hover-effects .hide-sm {
    display: none;
  }
  .elementor-widget-hover-effects .visible-sm {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .elementor-widget-hover-effects .column-md-6 {
    width: 50%;
  }
  .elementor-widget-hover-effects .column-md-12 {
    width: 100%;
  }
  .elementor-widget-hover-effects .hide-md {
    display: none;
  }
  .elementor-widget-hover-effects .visible-md {
    display: block;
  }
}
/* Effect Styles */
.elementor-widget-hover-effects .box-tab {
  margin: 10px 0;
}
.elementor-widget-hover-effects .effect {
  margin: auto;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);
  border: 5px solid #f5f5f5;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}
.elementor-widget-hover-effects .grid-width3, .elementor-widget-hover-effects .grid-width6 {}
.elementor-widget-hover-effects .grid-width8 {}
.elementor-widget-hover-effects .col3-block-height {}
.elementor-widget-hover-effects .effect img {
  position: relative;
  display: block;
  min-height: 100%;
  opacity: .8;
}
.elementor-widget-hover-effects .effect .tab-text {
  padding: 2em;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Effect One */
.elementor-widget-hover-effects .effect-one .tab-text::before, .elementor-widget-hover-effects .effect-one .tab-text::after {
  position: absolute;
  content: '';
  opacity: 0;
}
.elementor-widget-hover-effects .effect-one .tab-text::before {
  top: 50px;
  right: 30px;
  bottom: 50px;
  left: 30px;
  border-top: 2px solid rgba(255, 255, 255, .3);
  border-bottom: 2px solid rgba(255, 255, 255, .3);
  transform: scale(0, 1);
  transform-origin: 0 0;
}
.elementor-widget-hover-effects .effect-one .tab-text::after {
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border-right: 1px solid rgb(var(--color-background));
  border-left: 1px solid rgb(var(--color-background));
  transform: scale(1, 0);
  transform-origin: 100% 0;
}
.elementor-widget-hover-effects .effect-one .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 14px;
  width: 100%;
  left: 0;
  text-align: center;
}
.elementor-widget-hover-effects .effect-one .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-one .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-one .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-one:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-one:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-one:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-one .icons-block i {
  padding-left: 10px;
}
.elementor-widget-hover-effects .effect-one h2 {
  padding-top: 20%;
  transition: transform .35s;
}
.elementor-widget-hover-effects .effect-one p {
  padding: .5em 2.7em;
  text-transform: none;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  line-height: 16px;
}
.elementor-widget-hover-effects .effect-one h2, .elementor-widget-hover-effects .effect-one img {
  transform: translate3d(0, -30px, 0);
}
.elementor-widget-hover-effects .effect-one .tab-text::before, .elementor-widget-hover-effects .effect-one .tab-text::after, .elementor-widget-hover-effects .effect-one img, .elementor-widget-hover-effects .effect-one p {
  transition: opacity .35s, transform .35s;
}
.elementor-widget-hover-effects .effect-one:hover img {
  opacity: .7;
  transform: translate3d(0, 0, 0) scale(1.1, 1.1);
}
.elementor-widget-hover-effects .effect-one:hover .tab-text::before, .elementor-widget-hover-effects .effect-one:hover .tab-text::after {
  opacity: 1;
  transform: scale(1);
}
.elementor-widget-hover-effects .effect-one:hover h2, .elementor-widget-hover-effects .effect-one:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-one:hover .tab-text::after, .elementor-widget-hover-effects .effect-one:hover h2, .elementor-widget-hover-effects .effect-one:hover img, .elementor-widget-hover-effects .effect-one:hover p {
  transition-delay: .15s;
}
.elementor-widget-hover-effects .effect-one .pt-1 {
  padding-top: 10% !important;
}
.elementor-widget-hover-effects .effect-one .pt-2 {
  padding-top: 16% !important;
}
.elementor-widget-hover-effects .effect-one .pt-3 {
  padding-top: 28% !important;
}
/* Effect Two */
.elementor-widget-hover-effects .effect-two .tab-text {
  top: auto;
  bottom: 0;
  padding: 1em;
  transition: transform .35s;
  transform: translate3d(0, 100%, 0);
}
.elementor-widget-hover-effects .effect-two .col3 {
  height: 5.5rem !important;
}
.elementor-widget-hover-effects .effect-two h2 {
  float: left;
  word-break: break-all;
  width: 50%;
  text-align: left;
  display: inline-block;
}
.elementor-widget-hover-effects .effect-two .col3-head {
  width: 100% !important;
  padding-bottom: 10px;
}
.elementor-widget-hover-effects .effect-two p.icon-links a {
  float: right;
  line-height: 20px;
}
.elementor-widget-hover-effects .effect-two p.description {
  position: absolute;
  bottom: 7em;
  text-transform: none;
  opacity: 0;
  transition: opacity .35s;
  line-height: 18px;
  padding: 15px 50px;
  right: 30px;
  left: 30px;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 2% 100%);
}
.elementor-widget-hover-effects .effect-two p.col6 {
  left: 80px !important;
  right: 80px !important;
  bottom: 8rem;
}
.elementor-widget-hover-effects .effect-two h2, .elementor-widget-hover-effects .effect-two p.icon-links a {
  transition: transform .35s;
  transform: translate3d(0, 200%, 0);
}
.elementor-widget-hover-effects .effect-two:hover p.description {
  opacity: 1;
}
.elementor-widget-hover-effects .effect-two:hover .tab-text, .elementor-widget-hover-effects .effect-two:hover h2, .elementor-widget-hover-effects .effect-two:hover p.icon-links a {
  transform: translate3d(0, 0, 0);
  padding-right: 10px;
}
.elementor-widget-hover-effects .effect-two:hover h2 {
  transition-delay: 50ms;
}
.elementor-widget-hover-effects .effect-two:hover p.icon-links a:nth-child(3) {
  transition-delay: .1s;
}
.elementor-widget-hover-effects .effect-two:hover p.icon-links a:nth-child(2) {
  transition-delay: .15s;
}
.elementor-widget-hover-effects .effect-two:hover p.icon-links a:first-child {
  transition-delay: .2s;
}
/* Effect Three */
.elementor-widget-hover-effects .effect-three {
  text-align: left;
}
.elementor-widget-hover-effects .effect-three h2 {
  transform: translate3d(25px, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-three h2:before {
  content: "[ ";
  position: absolute;
  left: -15px;
  bottom: 3px;
}
.elementor-widget-hover-effects .effect-three:hover h2 {
  transform: translate3d(0, 0, 0);
  opacity: .5;
}
.elementor-widget-hover-effects .effect-three .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border: 140px solid transparent;
  border-radius: 50% 0 0 50%;
  opacity: 0;
  transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 135deg);
  transition: all .35s .15s;
  border-color: transparent transparent transparent rgb(var(--color-background));
}
.elementor-widget-hover-effects .effect-three:hover .tab-text:before {
  transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 45deg);
  opacity: .8;
  transition-delay: 0s;
}
.elementor-widget-hover-effects .effect-three p {
  position: absolute;
  width: 31px;
  height: 36px;
  bottom: 70px;
  right: -31px;
}
.elementor-widget-hover-effects .effect-three p a {
  width: 31px;
  height: 36px;
  position: absolute;
  opacity: 0;
  transition: all .35s cubic-bezier(.25, .4, .2, .5) 0s;
}
.elementor-widget-hover-effects .effect-three p a i {
  transition: transform .35s cubic-bezier(.5, .2, .4, .25) 0s;
}
.elementor-widget-hover-effects .effect-three:hover p a {
  opacity: 1;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(1) {
  transform: translate3d(0, 60px, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .15s;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(1) i {
  transform: translate3d(-100px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .15s;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(2) {
  transform: translate3d(0, 30px, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .25s;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(2) i {
  transform: translate3d(-80px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .25s;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .35s;
}
.elementor-widget-hover-effects .effect-three:hover p a:nth-child(3) i {
  transform: translate3d(-45px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .35s;
}
.elementor-widget-hover-effects .effect-three img {
  transform: scale3d(1.1, 1.1, 1) translate3d(15px, 0, 0);
  transition: all .35s;
  transform-origin: 85% 100%;
}
.elementor-widget-hover-effects .effect-three:hover img {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
  opacity: .6;
}
/* Effect Four */
.elementor-widget-hover-effects .effect-four .tab-text h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1em 1.2em;
}
.elementor-widget-hover-effects .effect-four .tab-text p {
  width: 65%;
  line-height: 1;
  letter-spacing: 1px;
  text-align: left;
  float: right;
  padding-left: 15px;
  border-left: 1px solid rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-background));
  transform: translate3d(40px, 0, 0);
  opacity: 0;
  transition: all .35s;
  padding-bottom: 5px;
}
.elementor-widget-hover-effects .effect-four .tab-text p:after, .elementor-widget-hover-effects .effect-four .tab-text p:before {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50px;
  content: "";
  position: absolute;
}
.elementor-widget-hover-effects .effect-four .tab-text p:after {
  top: -5px;
  left: -5px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.elementor-widget-hover-effects .effect-four .tab-text p:before {
  right: 0;
  bottom: -6px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.elementor-widget-hover-effects .effect-four .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 10px;
  padding-top: 9px;
}
.elementor-widget-hover-effects .effect-four .icon-c3 {
  padding-left: 5px;
  padding-top: 0;
}
.elementor-widget-hover-effects .effect-four .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-four .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-four .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-four:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-four:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-four:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-four .icons-block i {
  padding-left: 7px;
}
.elementor-widget-hover-effects .effect-four:hover p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-four img {
  max-width: none;
  width: calc(100% + 60px);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.12);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-four:hover img {
  transform: translate3d(-20px, 0, 0) scale(1);
  opacity: .5;
}
/* Effect Five */
.elementor-widget-hover-effects .effect-five {
  text-align: left;
}
.elementor-widget-hover-effects .effect-five h2 {
  transform: translate3d(0, 20px, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-five:hover h2 {
  transform: translate3d(0, 0, 0);
  opacity: .6;
}
.elementor-widget-hover-effects .effect-five img {
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-five:hover img {
  opacity: .6;
  transform: translate3d(0, 0, 0) scale(1.16);
}
.elementor-widget-hover-effects .effect-five .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 180%;
  background-color: #FFF;
  opacity: .8;
  transform-origin: 0 100%;
  transform: rotate(90deg);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-five:hover .tab-text:before {
  transform: rotate(67deg);
}
.elementor-widget-hover-effects .effect-five p {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 15px 25px 0;
}
.elementor-widget-hover-effects .effect-five p a {
  margin: 0 5px;
}
.elementor-widget-hover-effects .effect-five p a i {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-five:hover p a i {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-five:hover p a:nth-child(1) i {
  transition-delay: .15s;
}
.elementor-widget-hover-effects .effect-five:hover p a:nth-child(2) i {
  transition-delay: .1s;
}
.elementor-widget-hover-effects .effect-five:hover p a:nth-child(3) i {
  transition-delay: .05s;
}
/* Effect Six */
.elementor-widget-hover-effects .effect-six img {
  transition: all .35s;
  transform: translate3d(0, 0, 0) scale(1.05);
}
.elementor-widget-hover-effects .effect-six:hover img {
  opacity: .4;
  transform: translate3d(0px, 0, 0) scale(1);
}
.elementor-widget-hover-effects .effect-six .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
}
.elementor-widget-hover-effects .effect-six .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-six .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-six .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-six:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-six:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-six:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-six .icons-block i {
  padding-left: 10px;
}
.elementor-widget-hover-effects .effect-six p {
  max-width: 100%;
  padding: 0 10px;
  margin: 30px;
  text-align: right;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 3px solid rgb(var(--color-background));
  opacity: 0;
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-six:hover p {
  opacity: 1;
}
.elementor-widget-hover-effects .effect-six .tab-text:before {
  background-color: rgba(255, 255, 255, .4);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  transition: all .6s;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  content: "";
}
.elementor-widget-hover-effects .effect-six:hover .tab-text:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
}
/* Effect Seven */
.elementor-widget-hover-effects .effect-seven img {
  transition: all .35s;
  transform: translate3d(0, 0, 0) scale(1);
}
.elementor-widget-hover-effects .effect-seven:hover img {
  opacity: .6;
  transform: translate3d(-50px, 0, 0) scale(1.1) rotate(3deg);
}
.elementor-widget-hover-effects .effect-seven h2 {
  padding-top: 20%;
  transform: scale3d(.8, .8, 1);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-seven .col8-head {
  padding-top: 9%;
}
.elementor-widget-hover-effects .effect-seven:hover h2 {
  transform: scale3d(1, 1, 1);
}
.elementor-widget-hover-effects .effect-seven p {
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  opacity: 0;
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-seven:hover p {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-seven .tab-text:after {
  border-top: 1px solid rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-background));
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  opacity: 0;
  transition: all .35s;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  content: "";
}
.elementor-widget-hover-effects .effect-seven:hover .tab-text:after {
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-seven .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
}
.elementor-widget-hover-effects .effect-seven .c4 {
  right: 0;
  text-align: right;
  padding-right: 15px;
}
.elementor-widget-hover-effects .effect-seven .c3 {
  bottom: 50%;
  margin-bottom: -40px;
  left: 23%;
}
.elementor-widget-hover-effects .effect-seven .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-seven .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-seven .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-seven:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-seven:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-seven:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-seven .icons-block i {
  padding-left: 10px;
}
/* Effect Eight */
.elementor-widget-hover-effects .effect-eight img {
  transition: all .3s ease-in-out;
  transform: translate3d(0, 0, 0) scale(1, 1);
}
.elementor-widget-hover-effects .effect-eight:hover img {
  opacity: .6;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
}
.elementor-widget-hover-effects .effect-eight .tab-text h2 {
  transform: scale3d(.9, .9, 1);
  transition: all .5s ease-in-out;
}
.elementor-widget-hover-effects .effect-eight .col8-head {
  padding-top: 9%;
}
.elementor-widget-hover-effects .effect-eight:hover h2 {
  transform: scale3d(1.1, 1.1, 1);
}
.elementor-widget-hover-effects .effect-eight p {
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  opacity: 0;
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-eight:hover p {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-eight .tab-text:after {
  content: "";
  position: absolute;
  left: -230px;
  top: 0;
  border-top: 208px solid rgba(7, 0, 2, .3);
  border-left: 140px solid rgba(240, 74, 126, .6);
  border-bottom: 188px solid transparent;
  border-right: 160px solid transparent;
  transition: all .4s ease-in-out;
}
.elementor-widget-hover-effects .effect-eight:hover .tab-text:after {
  transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);
  opacity: 1;
  top: 103px;
  left: -378px;
  border-top: 325px solid rgba(240, 74, 126, .8);
  border-left: 422px solid rgba(240, 74, 126, .8);
  border-bottom: 218px solid transparent;
  border-right: 160px solid transparent;
}
.elementor-widget-hover-effects .effect-eight .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 15px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 5px;
}
.elementor-widget-hover-effects .effect-eight .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-eight .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-eight .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-eight:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eight:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eight:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eight .icons-block i {
  padding-left: 10px;
}
/* Effect Nine */
.elementor-widget-hover-effects .effect-nine img {
  transition: all .3s ease-in-out;
  transform: translate3d(0, 0, 0) scale(1, 1);
}
.elementor-widget-hover-effects .effect-nine:hover img {
  opacity: .6;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
}
.elementor-widget-hover-effects .effect-nine .tab-text h2 {
  transform: scale3d(.9, .9, 1);
  transition: all .5s ease-in-out;
  z-index: 2;
  position: relative;
  padding-top: 18%;
}
.elementor-widget-hover-effects .effect-nine:hover h2 {
  transform: scale3d(1, 1, 1);
}
.elementor-widget-hover-effects .effect-nine p {
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  opacity: 0;
  transition: all .35s;
  z-index: 2;
  position: relative;
}
.elementor-widget-hover-effects .effect-nine:hover p {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-nine .tab-text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 0px);
  height: inherit;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
  transition: all .4s ease-in-out;
}
.elementor-widget-hover-effects .effect-nine:hover .tab-text:after {
  opacity: 1;
  top: 0;
  left: 0;
  border-top: 135px solid rgba(0, 0, 0, .5);
  border-left: 135px solid rgba(0, 0, 0, .5);
  border-bottom: 135px solid rgba(0, 0, 0, .5);
  border-right: 135px solid rgba(0, 0, 0, .5);
}
.elementor-widget-hover-effects .effect-nine .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
  padding-top: 10px;
}
.elementor-widget-hover-effects .effect-nine .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-nine .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-nine .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-nine:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-nine:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-nine:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-nine .icons-block i {
  padding-left: 7px;
}
/* Effect Ten */
.elementor-widget-hover-effects .effect-ten img {
  transition: all .35s;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
}
.elementor-widget-hover-effects .effect-ten:hover img {
  opacity: .85;
  transform: translate3d(0, 0, 0) scale(1, 1);
}
.elementor-widget-hover-effects .effect-ten h2 {
  transform: translate3d(0, 5px, 0);
  transition: all .35s;
  z-index: 2;
  position: relative;
  padding-top: 10%;
}
.elementor-widget-hover-effects .effect-ten:hover h2 {
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-ten p {
  line-height: 1.1;
  padding-top: 5px;
  transform: translate3d(0, 10px, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-ten:hover p {
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-ten .tab-text {
  transform-style: preserve-3d;
  perspective: 300px;
}
.elementor-widget-hover-effects .effect-ten .tab-text:after {
  content: "";
  width: 180%;
  height: 180%;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, .45) 50%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all .4s linear;
}
.elementor-widget-hover-effects .effect-ten .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(132, 132, 132, .45) 50%, rgba(255, 255, 255, .65) 65%);
  transform: rotate3d(-1, 1, 0, 20deg);
  transform-origin: 50% 50%;
  transition: width .2s linear .2s, height .2s linear .2s, bottom .2s linear 0s, right .2s linear 0s;
}
.elementor-widget-hover-effects .effect-ten:hover .tab-text:after {
  top: -80%;
  left: -80%;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, .45) 60%);
}
.elementor-widget-hover-effects .effect-ten:hover .tab-text:before {
  width: 100%;
  height: 100%;
  bottom: 50%;
  right: 50%;
  transition: width .2s linear 0s, height .2s linear 0s, bottom .2s linear .2s, right .2s linear .2s;
}
.elementor-widget-hover-effects .effect-ten .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
  padding-top: 10px;
}
.elementor-widget-hover-effects .effect-ten .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-ten .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-ten .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-ten:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-ten:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-ten:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-ten .icons-block i {
  padding-left: 7px;
}
/* Effect Eleven */
.elementor-widget-hover-effects .effect-eleven img {
  transform: translate3d(-10px, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-eleven:hover img {
  opacity: .6;
  transform: translate3d(-30px, 0, 0) scale(1.1, 1.1);
}
.elementor-widget-hover-effects .effect-eleven h2 {
  text-align: left;
  transform: translate3d(-10px, 0, 0);
  transition: all .55s 0s;
  z-index: 2;
  position: relative;
  padding-top: 10%;
}
.elementor-widget-hover-effects .effect-eleven:hover h2 {
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-eleven p {
  text-align: left;
  line-height: 1.2;
  padding-top: 34px;
  padding-left: 1px;
  transform: translate3d(15px, 0, 0);
  opacity: 0;
  transition: all .35s 0s;
  z-index: 5;
  position: absolute;
  word-spacing: 3px;
  top: 65px;
  width: calc(100% - 4em);
}
.elementor-widget-hover-effects .effect-eleven:hover p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-delay: .2s;
}
.elementor-widget-hover-effects .effect-eleven .tab-text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 125px solid rgba(255, 255, 255, .3);
  border-right: 350px solid transparent;
  border-bottom: 125px solid rgba(255, 255, 255, .3);
  transform: translate3d(-100%, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-eleven .tab-text:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 125px solid transparent;
  border-right: 350px solid rgba(255, 255, 255, .3);
  border-bottom: 125px solid transparent;
  transform: translate3d(100%, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-eleven:hover .tab-text:before, .elementor-widget-hover-effects .effect-eleven:hover .tab-text:after {
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-eleven .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
}
.elementor-widget-hover-effects .effect-eleven .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-eleven .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-eleven .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-eleven:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eleven:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eleven:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-eleven .icons-block i {
  padding-left: 10px;
}
/* Effect Twelve */
.elementor-widget-hover-effects .effect-twelve .tab-text h2 {
  position: relative;
  padding: .5em 0;
  text-align: left;
  overflow: hidden;
}
.elementor-widget-hover-effects .effect-twelve h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgb(var(--color-background));
  transform: translate3d(-100%, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-twelve:hover h2:after {
  transform: translate3d(0, 0, 0);
}
.elementor-widget-hover-effects .effect-twelve .tab-text p {
  padding: .7em 0;
  text-align: left;
  line-height: 1.1;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-twelve:hover p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.elementor-widget-hover-effects .effect-twelve img {
  max-width: none;
  opacity: 1;
  transform: translate3d(-10px, 0, 0);
  transition: all .35s;
}
.elementor-widget-hover-effects .effect-twelve:hover img {
  transform: translate3d(0, 0, 0);
  opacity: .4;
}
.elementor-widget-hover-effects .effect-twelve .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
}
.elementor-widget-hover-effects .effect-twelve .icons-block .social-icon-1, .elementor-widget-hover-effects .effect-twelve .icons-block .social-icon-2, .elementor-widget-hover-effects .effect-twelve .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0;
}
.elementor-widget-hover-effects .effect-twelve:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-twelve:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-twelve:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s;
}
.elementor-widget-hover-effects .effect-twelve .icons-block i {
  padding-left: 10px;
}
/* Responsive Adjustments */
@media (max-width: 575px) {
  .elementor-widget-hover-effects .effect-two p.description {
    bottom: 5.8em;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .elementor-widget-hover-effects .effect-two p.description {
    bottom: 5.8em;
  }
}
.collage-container-slideshow h1, .collage-container-slideshow h2, .collage-container-slideshow h3, .collage-container-slideshow h4, .collage-container-slideshow h5, .collage-container-slideshow h6, .collage-container-slideshow .h1, .collage-container-slideshow .h2, .collage-container-slideshow .h3, .collage-container-slideshow .h4, .collage-container-slideshow .h5, .collage-container-slideshow .h6 {
    margin-bottom: 0px;
}

.blog-tabs-nav, .woo-product-tabs-nav {
    gap: 10px;
    margin-bottom: 20px !important;
}

.blog-tabs-nav .nav-link, .woo-product-tabs-nav .nav-link {
    padding: 10px !important;
}

.blog-tabs-nav .nav-link, .woo-product-tabs-nav .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.grid-wrapper {
    gap: 10px;
    display: grid;
}