/*
Theme Name: Glovera Child
Description: Child Theme for glovera Theme
Author: zozothemes
Version: 1.0
Template: glovera
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: zozothemes
*/

/*Custom Style Code Right Here */


  .yoga-timeline {
  position: relative;
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.yoga-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.yoga-column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.yoga-column.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.yoga-img img {
  width: 460px;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease;
}

.yoga-img.show img {
  opacity: 1;
  transform: scale(1);
}

/* Steps */
.yoga-step {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  cursor: pointer;
}

[data-side="left"] {
  flex-direction: row-reverse;
  text-align: right;
  transform: translateX(-150px) translateY(80px) rotate(-10deg);
}

[data-side="right"] {
  transform: translateX(150px) translateY(80px) rotate(10deg);
}

/* Animation on scroll */
.yoga-step.show[data-side="left"] {
  animation: arcLeft 1s ease forwards;
  animation-delay: var(--delay);
}
.yoga-step.show[data-side="right"] {
  animation: arcRight 1s ease forwards;
  animation-delay: var(--delay);
}

/* Keyframes */
@keyframes arcLeft {
  0% { opacity: 0; transform: translateX(-150px) translateY(80px) rotate(-10deg); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg); }
}
@keyframes arcRight {
  0% { opacity: 0; transform: translateX(150px) translateY(80px) rotate(10deg); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg); }
}

/* Icon */
.yoga-icon {
  width: 105px !important;
  height: 45px;
  border-radius: 50%;
  background: #f6df1c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.4s ease;
}
.yoga-icon img{
 width: 100px;
}
.yoga-step:hover .yoga-icon {
  transform: scale(1.15);
  background: #aabbcc;
}

/* Text */
.yoga-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
}
.yoga-text p {
  color: #777;
  font-size: 15px;
  margin: 5px 0 0;
}

/* Curved line */
.curve {
  position: absolute;
  display: none;
  top: 10;
  height: 80%;
  width: 60px;
  pointer-events: none;
}
.left-curve { left: 26%; }
.right-curve { right: 26%; }

/* Responsive */
@media (max-width: 900px) {
  .yoga-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .yoga-column.left { order: 1; }
  .yoga-column.center { order: 2; }
  .yoga-column.right { order: 3; }

  [data-side="left"], [data-side="right"] {
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(60px);
  }

  .curve {
    display: none;
  }
	.yoga-icon{
		width:50px !important;
	}
}

 