.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.about-widget {
  position: relative;
  cursor: pointer;
  border-radius: 50px;
  background: none;
}

.hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 50px;
  padding: 16px 12px;
  transition: 500ms;
  background: none;
  border: 2px solid rgb(253 250 248 / 66%);
  rotate: -90deg;
}

.hamburger span {
  height: 2px;
  width: 83.3333%;
  background: #ff2f2c;
  transition: 500ms;
  animation: 1.4s ease-in-out 200ms infinite alternate forwards running burger-hover;
}

.hamburger .meat {
  width: 100%;
  transition: 200ms ease-in-out;
  animation: 1.4s ease-in-out 400ms infinite alternate forwards running burger-hover;
}

@keyframes burger-hover {
  0% {
    width: 100%;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

.sticky-wrapper.sticky {
  .hamburger {
    border: 2px solid rgb(115 115 115 / 66%);
  }
}

/* .main-menu li:nth-child(1) a {
  color: #ff2f2c;
} */

/* .main-menu li:nth-child(2) a {
  color: #fed96a;
}

.main-menu li:nth-child(3) a {
  color: #30c3ef;
}

.main-menu li:nth-child(4) a {
  color: #ad8fff;
}


.main-menu li:nth-child(5) a {
  color: #ff8fff;
} */

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.6;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  opacity: 1;
}

.about-us-sec {
  padding: 50px 0 30px;
  overflow: hidden;
  position: relative;
  background: url(../img/dotted-bg.png);
  background-size: cover;
  background-position: center;
  background-color: #fff;
}

.about-us-sec .abt-shape {
  position: absolute;
  z-index: 8;
}

.about-us-sec .abt-shape.one {
  width: 70px;
  height: 70px;
  left: 2%;
  top: 10px;
  fill: #cc8535;
  animation: rotateInfinite 15s linear infinite;
}

.about-us-sec .abt-shape.two {
  width: 30px;
  height: 30px;
  left: 40%;
  fill: #ff2f2c;
  animation: rotateInfinite 11s linear infinite;
  top: 0;
}

.about-us-sec .abt-shape.four {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 120px;
}

.about-us-sec .abt-shape.five {
  right: 1%;
  bottom: 0;
  width: 120px;
}

.about-us-sec .abt-shape.six {
  width: 140px;
  top: 70px;
  fill: #acd3e5;
  right: 36%;
  z-index: 4;
}

.about-us-sec .abt-left {
  background-color: #fff;
  padding: 30px 15px;
  padding-right: 20px;
}

.about-us-sec .abt-left .abt-title h6 {
  color: #ff2f2c;
}

.about-us-sec .abt-left .abt-title .abt-subheading,
.cta-two .abt-left .abt-title .abt-subheading {
  position: relative;
}

.about-us-sec .abt-left .abt-title .bottom-dots{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.about-us-sec .abt-left .abt-title .bottom-dots .dot {
  border: 2px solid #ff3b38;
  position: relative;
  display: block;
  float: left;
  width: 3px;
  height: 3px;
  margin-right: 3px;
  border-radius: 10px;
}

.about-us-sec .abt-left .abt-title .bottom-dots .dot.line-dot,
.cta-two .abt-left .abt-title .bottom-dots .dot.line-dot {
  height: 1px;
  width: 40px;
}

.about-us-sec .abt-left .abt-title h2,
.cta-two .abt-left .abt-title h2 {
  font-family: "Rowdies", sans-serif;
  font-size: 38px;
  color: #000;
  list-style: 48px;
}

.about-us-sec .abt-right {
  position: relative;
  text-align: right;
  margin-top: 20px;
}

.about-us-sec .abt-right > img {
  border-radius: 50%;
  max-width: 73%;
  overflow: hidden;
  border: 15px solid #cc8535;
  animation: shadow 3s infinite linear;
  position: relative;
  z-index: 3;
}

.about-us-sec .abt-right .abt-right-shape {
  position: absolute;
  right: -140px;
  top: 24%;
  animation: float 4s infinite alternate;
}

.about-us-sec .abt-right .abt-right-shape img {
  width: 500px;
  height: 462px;
}

.abt-count {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
}

.abt-btn {
  background-color: #ff2f2c;
  padding: 12px 18px;
  border-radius: 45px;
  color: #fff;
  position: relative;
}

.abt-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 45px;
  outline: 2px dashed #000;
  opacity: 0;
  z-index: 1;
  transition: 0.3s all;
}

.abt-btn:hover {
  color: #fff;
}

.abt-btn:hover::after {
  opacity: 1;
}


@keyframes shadow {
  0% {
    box-shadow: 0px 0px 0px 40px rgb(0 73 112);
  }

  50% {
    box-shadow: 0px 0px 0px 48px rgb(19 117 181);
  }

  100% {
    box-shadow: 0px 0px 0px 40px rgb(0 80 133);
  }
}

@keyframes float {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(40px);
  }
}

.abt-count .count {
  h3 {
    font-family: "Rowdies", sans-serif;
  }

  h5 {
    font-size: 16px;
        font-family: "Poppins", sans-serif;
        color: #000;
  }
}
.abt-count .count:first-child h3 {
  color: #88b520;
}

.abt-count .count:nth-child(2) h3 {
  color: #e96b3b;
}

.abt-count .count:last-child h3 {
  color: #973fea;
}


.category {
  padding: 40px 0 60px;
  position: relative;
}

.category .cat-shape {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 15%;
}

.category .cat-shape.one {
  left: 15%;
}

.category .cat-shape.two {
  right: 15%;
}

.category .cat-wrapper {
  position: relative;
  cursor: pointer;
}

.category .cat-wrapper .cat-img {
  width: 170px;
  height: 170px;
  margin-inline: auto;
  position: relative;
  border-radius: 50%;
}

.category .cat-wrapper .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category .cat-wrapper .cat-img::after,
.category .cat-wrapper .cat-img::before {
  content: "";
  width: 110%;
  height: 110%;
  display: inline-block;
  position: absolute;
  left: -7px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  z-index: -1;
  will-change: border-radius, transform, opacity;
  animation-delay: 200ms;
  background-image: linear-gradient(120deg, #88b520 0%, #88b520 100%);
  animation: wdt-border-blob-effect 20s linear infinite;
  animation-play-state: paused;
}

.category .cat-wrapper .cat-img::before {
  animation-duration: 1.5s;
}

.category .cat-wrapper .cat-img::after {
  animation-delay: 400ms;
}

.category .cat-wrapper .cat-img:hover::after,
.category .cat-wrapper .cat-img:hover::before {
  animation-play-state: running;
}

/* Modifier: .two */
.category .cat-wrapper.two .cat-img::after,
.category .cat-wrapper.two .cat-img::before {
  background-image: linear-gradient(120deg, #e96b3b 0%, #e96b3b 100%);
}

/* Modifier: .three */
.category .cat-wrapper.three .cat-img::after,
.category .cat-wrapper.three .cat-img::before {
  background-image: linear-gradient(120deg, #e1a753 0%, #e1a753 100%);
}

/* Modifier: .four */
.category .cat-wrapper.four .cat-img::after,
.category .cat-wrapper.four .cat-img::before {
  background-image: linear-gradient(120deg, #bf7408 0%, #bf7408 100%);
}

.category .cat-wrapper .cat-name {
  font-family: "Rowdies", sans-serif;
  font-size: 20px;
  margin-top: 20px;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.category .cat-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 100%;
  height: 60%;
  border-right: 2px dashed #303030;
  z-index: -1;
  transition: 0.3s all;
}

.category .cat-title {
  margin-bottom: 40px;
}

.category .cat-title h6 {
  color: #88b520;
}

.category .cat-title h2 {
  color: #000;
  font-family: "Rowdies", sans-serif;
  font-weight: 400;
}

@keyframes wdt-border-blob-effect {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    opacity: 0.89;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

.tabion {
  padding: 40px 0 60px;
  background-color: #f6f1e4;
  position: relative;
}

.tabion .nav-tabs {
  border: none;
  justify-content: space-between;
}

.tabion .nav-tabs .nav-link.active {
  background: url(../img/tabbed.png);
  width: 230px;
  border: 0;
  padding: 12px 20px;
  height: 70px;
  background-repeat: no-repeat;
}

.tabion .nav-tabs .nav-link {
  background: url(../img/tabo.png);
  width: 230px;
  border: 0;
  padding: 12px 20px;
  background-repeat: no-repeat;
  height: 70px;
  font-weight: bold;
  color: #000;
}

.tabion .nav-tabs .nav-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tabion .nav-tabs .nav-link span img {
  width: 20px;
}


.tabion .ship {
  position: absolute;
  top: -2%;
  width: 136px;
}

.floating2 {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.tabion .whale {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 170px;
  mix-blend-mode: multiply;
}

.floating1 {
  animation-name: floatingx;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  0% {
    transform: translate(0px, 0px);
  }

  65% {
    transform: translate(0px, 15px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes floatingx {
  0% {
    transform: translate(0px, 0px);
  }

  65% {
    transform: translate(35px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.product-grid.style14 {
  border-radius: 10px;
  margin-top: 25px;
}

.product-grid {
  position: relative;
}

.product-grid .box-img {
  /* background: #f5f5f5; */
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  margin-bottom: 20px;
}

.box-img {
  overflow: hidden;
}

.product-grid.style14 img {
  border-radius: 60px;
}

.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.product-grid .box-img .product-action {
  position: absolute;
  top: 8px;
  right: -20px;
  text-align: right;
  width: auto;
  max-width: auto;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  z-index: 2;
}

.product-grid .box-img .product-action a {
  display: block;
  border-radius: 4px;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #101111;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(60px);
  -ms-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.product-grid .box-img .product-action a .action-text {
  background-color: #ff0004;
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 15px 3px 6px;
  border-radius: 4px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -115px;
  top: 50%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.product-grid .box-img .product-action a .action-text:before {
  content: "";
  position: absolute;
  top: 9px;
  right: -10px;
  width: 12px;
  height: 12px;
  background: #ff0004;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.product-grid .box-img .product-action a .icon {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #e1e4e5;
  border-radius: 4px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.product-grid .box-img .product-action:after {
  content: "Add to cart";
  height: calc(var(--btn-size) + 4px);
  width: 40px;
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #101111;
  z-index: -1;
  border-radius: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  text-align: left;
  padding-left: 20px;
  line-height: 44px;
}

.product-grid .box-img .beige-color {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 100%;
  padding: 15px 16px 15px 16px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.beige-color {
  position: relative;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.product-grid .box-img .beige-title {
  font-weight: 400;
  font-size: 14px;
  color: #101111;
  margin-bottom: 10px;
}

.beige-title {
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 0;
}

.product-grid .box-img .beige-color span {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid transparent;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.beige-color span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #afafaf;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.product-grid .box-img .beige-color span:before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid #101111;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}


.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.product-grid .box-title {
  font-weight: 600;
  font-size: 17px;
  color: #101111;
  margin-bottom: 4px;
  text-align: center;
  margin-top: 10px;
  line-height: 1.417;
}

.product-grid .box-title a {
  color: inherit;
}

.product-grid:hover .beige-color,
.product-grid:focus .beige-color {
  opacity: 1;
  visibility: visible;
}

.product-grid:hover .product-action a,
.product-grid:focus .product-action a {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  min-width: 32px;
}

.product-grid:hover .product-action,
.product-grid:focus .product-action {
  right: 8px;
}

.border-title h5 {
  font-size: 20px;
}

.border-title h2 {
  font-family: "Rowdies", sans-serif;
}

.poster {
  padding: 0 0 0;
  position: relative;
}

.poster .poster-title h5 {
  color: #88b520;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.poster .poster-title h2 {
  font-weight: bold;
  font-family: "Rowdies", sans-serif;
  font-size: 38px;
  color: #000;
}

.poster-shape.one {
    position: absolute;
    top: 14%;
    width: 96px;
}

.poster-shape.two {
    position: absolute;
    fill: #88b520;
    width: 50px;
    left: 14%;
    top: 86px;
    animation: rotateInfinite 15s linear infinite;
}

.poster-shape.three {
    position: absolute;
    fill: #f4a21a;
    width: 50px;
    right: 13%;
    top: 100px;
    animation: rotateInfinite 15s linear infinite;
}

.poster-img-wrapper {
  margin-top: 20px;
}

.technology {
  padding: 50px 0 60px;
  position: relative;
}

.technology .tech-shape {
  position: absolute;
  left: 50px;
  top: 40px;
}

.technology .tech-shape video {
  width: 210px;
}

.technology .title {
  text-align: center;
  margin-bottom: 30px;
}

.technology .title h2 {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: #000;
  position: relative;
}

.technology .swiper-button-next:after,
.technology .swiper-button-prev:after {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.technology .swiper-button-prev,
.technology .swiper-button-next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eeeeee;
  border: 1px solid #161616;
}

.technology .personalities_wrap {
  display: flex;
  background: #f9ec27;
  border-radius: 50px;
  overflow: hidden;
}

.technology .personalities_wrap .img {
  width: 52%;
}

.technology .personalities_wrap .img img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.technology .personalities_wrap .content {
    background: #fff;
    border-radius: 0 50px 50px 0;
    width: 47.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 35px;
    text-align: left;
}

.technology .personalities_wrap .content h2 {
  font-size: 19px;
  color: #000;
  text-transform: uppercase;
}

.technology .slider .personalities_wrap img {
  width: auto;
  display: block;
  max-width: 100%;
}

.technology .personalities_wrap .content img {
  margin: 0 0 20px;
  height: 65px;
}

.technology .personalities_wrap .content p {
    font-size: 15px;
    line-height: 22px;
    color: rgb(32, 32, 32);
    margin-bottom: 0px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.technology .tech-shape.one {
    width: 130px;
    top: 20px;
    transform: scaleX(-1);
    left: 0px;
  }

.baby-soft {
  background: url(../img/kidsposter.jpg);
  background-position: center;
  background-size: cover;
}

.baby-soft .baby-soft-title {
  position: relative;
}

.baby-soft .baby-soft-title .head-img {
  width: 90px;
  margin-bottom: 20px;
  animation: moving 3s linear 0.2s infinite alternate;
}

.baby-soft .baby-soft-title h5 {
  font-size: 26px;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  color: #242c3a;
  margin-bottom: 0;
}

.baby-soft .baby-soft-title h2 {
  font-family: "Baloo 2", sans-serif;
  color: #242c3a;
  font-weight: 700;
  font-size: 60px;
}

.baby-soft .baby-soft-right {
  padding-left: 40px;
  position: relative;
  top: 100px;
}

@keyframes moving {
  50% {
    transform: scale(0.95) translate(-5px);
  }

  100% {
    transform: scale(1) translate(5px);
  }
}

.child-foot {
  background-color: #fcf7ee;
  padding-bottom: 40px;
  padding-top: 30px;
}

.child-foot .baby-soft-title h2 {
  font-family: "Baloo 2", sans-serif;
  color: #242c3a;
  font-weight: 700;
  font-size: 50px;
}

.child-foot .baby-soft-title h5 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  color: #242c3a;
  margin-bottom: 0;
}


.animate-box {
  text-align: center;
}

.animate-box img {
  animation: 4s qodef-float infinite ease-in-out;
  width: 180px;
}

.animate-box h3 {
  text-align: center;
  font-weight: 700;
  color: #444;
  font-size: 23px;
  line-height: 1.304em;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-family: "Baloo 2", sans-serif;
}

.animate-box p {
  text-align: center;
  font-size: 15px;
}

@keyframes qodef-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(16px);
  }

  100% {
    transform: translateY(0);
  }
}

.child-banner {
  background: #7166ce;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
}

.child-banner .child-shape {
  position: absolute;
}

.child-banner .child-shape.one {
  top: -30%;
  left: -14%;
  width: 300px;
  fill: #84c2cf;
}

.child-banner .child-shape.two {
  top: -28%;
  right: -12%;
  width: 280px;
  fill: #f7e054;
}

.child-banner .child-shape.three {
  left: 60px;
  top: 40px;
  animation: moving 3s linear 0.2s infinite alternate;
}

.child-banner .child-shape.three img {
  width: 130px;
}

.child-banner .child-shape.four {
  right: 58%;
  top: 16%;
  animation: moving 3s linear 0.2s infinite alternate;
  animation-delay: 1s;
}

.child-banner .child-shape.four img {
  width: 160px;
}

.child-banner .child-shape.five {
  right: 70px;
  top: 60px;
  animation: moving 3s linear 0.2s infinite alternate;
}

.child-banner .child-shape.five img {
  width: 130px;
}

.child-banner .child-shape.six {
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

.child-banner .child-shape.six img {
  width: 75px;
}

.child-banner .child-banner-left {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 15px solid #7bbfff;
}

.child-banner .child-banner-left img {
  width: 100%;
  object-fit: cover;
}

.child-banner .child-banner-right .head-img {
  animation: moving 3s linear 0.2s infinite alternate;
  width: 90px;
  margin-bottom: 20px;
}

.child-banner .child-banner-right .head-img img {
  filter: invert(1);
}

.child-banner .child-banner-right h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}

.child-banner .child-banner-right h5 {
  font-size: 25px;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  color: #fff;
  margin-bottom: 0;
}


.child-banner-bottom {
  position: relative;
  top: -80px;
}

.child-banner-slider {
  padding-inline: 8rem;
}

.cloud-img {
  -webkit-mask-image: url(https://dtthemes.kinsta.cloud/a-for-apple/wp-content/uploads/sites/2/2024/01/Footer-cloud-img.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center center;
  padding: 70px 0;
  background-color: #fcf7ee;
  margin-top: -40px;
}

.feat {
  padding: 50px 0;
  background: url(../img/feat-bg.jpg);
  background-attachment: fixed;
}

.feat .feat-wrapper {
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.feat .feat-wrapper .feat-content {
  text-align: center;
  padding: 20px 0;
}

.feat .feat-wrapper .feat-content h5 {
  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

.feat .feat-wrapper .feat-content h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feat .feat-wrapper .feat-content a {
  padding: 10px 12px;
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
}


.main-menu ul .active a span {
  position: absolute;
  width: 100%;
  background: #df0300;
  height: 2px;
  bottom: 0;
  left: 0;
  margin-bottom: 0 !important;
}

.main-menu ul .active a span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: -14px;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 1.5s linear infinite;
}


/* .main-menu>ul>li {
  overflow: hidden;
} */


.main-menu ul li a {
  overflow: hidden;
}

@keyframes animborder {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-area4 {
  position: relative;
  padding: 90px 50px 90px 0;
  background-size: 100% 100%;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 2;
}

.cta-area4 .cta-content-title {
  display: block;
  margin-top: -0.8rem;
}

.cta-area4 .cta-content-title {
  max-width: 380px;
  display: block;
  margin-left: auto;
  margin-top: -0.8rem;
}

.title-area {
  position: relative;
  z-index: 2;
}

.mb-10 {
  margin-bottom: 10px;
}

.cta-area4 .cta-content-title .box-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 98px;
  color: #fff;
  margin-bottom: 0;
}

.box-title {
  margin-top: -0.24em;
}

.cta-area4 .cta-content-title .box-title.style1 {
  margin-left: 60px;
}

.cta-area4 .cta-content-title .box-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 98px;
  color: #fff;
  margin-bottom: 0;
}

.box-title {
  margin-top: -0.24em;
}

.title-area .sec-title.style1 {
  margin-bottom: 5px;
}

.cta-area4 .cta-content-title .sec-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 25px;
}

.title-area .sec-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  z-index: 2;
}

.sec-title {
  margin-top: -0.18em;
}

.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #ea130e;
  color: #fff;
  /* font-family: var(--body-font2); */
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 16.5px 24px;
  border-radius: 48px;
  -webkit-perspective: 320px;
  perspective: 320px;
  z-index: 2;
  -webkit-transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.th-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #101111;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.th-btn.th-icon:after {
  content: "";
  position: relative;
  -webkit-mask-image: url(../images/arrow-right.svg);
  mask-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: #fff;
  width: 22px;
  height: 10px;
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

.cta-area4.style2 {
  padding: 60px 0 0 60px;
  height: 100%;
}

.cta-area4.style2 .cta-content-title {
  max-width: 350px;
  margin-left: 0;
}

.cta-area4 .cta-content-title {
  display: block;
  margin-top: -0.8rem;
}

.cta-area4 .cta-content-title {
  max-width: 380px;
  display: block;
  margin-left: auto;
  margin-top: -0.8rem;
}

.mb-15 {
  margin-bottom: 15px;
}

.cta-area4 .cta-content-title .sub-title2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  color: #101111;
  text-decoration: underline;
  margin-bottom: 18px;
}

.sub-title2 {
  display: block;
  margin-top: -0.2em;
  position: relative;
}

.cta-area4.style2 .cta-content-title .sec-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  color: #101111;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.text-theme {
  color: #e42e3b !important;
}

.line-btn {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 0.8;
  position: relative;
  text-transform: capitalize;
  color: #101111;
}

.line-btn:after {
  content: "";
  position: relative;
  -webkit-mask-image: url(../images/arrow-right.svg);
  mask-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: #101111;
  width: 32px;
  height: 10px;
  display: inline-block;
  margin-left: 8px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.safety-poster {
  padding: 50px 0 40px;
}

.product-switch {
  padding: 30px 0 40px;
  overflow: hidden;
}

.product-switch .title h2 {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: #000;
  position: relative;
}

.product-switch .swiper-button-prev,
.product-switch .swiper-button-next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eeeeee;
  border: 1px solid #161616;
}


.product-switch .swiper-button-next:after,
.product-switch .swiper-button-prev:after {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}


.prowrapper {
  text-align: center;
  cursor: pointer;
}

.prowrapper .proimg {
  border-radius: 8px;
  overflow: hidden;
}

.prowrapper .proimg .two {
  display: none;
}

.prowrapper .proname {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
}

.prowrapper:hover .proimg .one {
  display: none;
}

.prowrapper:hover .proimg .two {
  display: block;
}


@keyframes rotateInfinite {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.led {
  position: relative;
  padding: 30px 0;
}

.led-video {
  animation: floatTopToBottom 3s ease-in-out infinite;
}

.led-shape {
  position: absolute;
  left: -20px;
  bottom: -50px;
  transform: scaleX(-1);
  z-index: 2;
}

.led-shape img {
  width: 200px;
}

.inner-column {
  position: relative;
  padding-top: 35px;
}

.info-box {
  position: relative;
  padding-left: 92px;
  min-height: 50px;
  margin-bottom: 25px;
  flex-direction: column;
  padding-right: 20px;
}

.info-box:before {
  content: "";
  position: absolute;
  top: 65px;
  left: 40px;
  width: 1px;
  bottom: -40px;
  background-color: #ffb3a2;
}

.info-box:hover i,
.features-section-four .content-column .info-box.active i {
  -webkit-transform: rotate(180deg) scale(-1);
  transform: rotate(180deg) scale(-1);
}

.info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  font-size: 30px;
  border-radius: 50%;
  color: #000000;
  transition: all 0.3s ease;
}

.info-box .icon:before {
  position: relative;
  z-index: 2;
}

.info-box .icon:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  pointer-events: none;
  line-height: 76px;
  background-color: #f8f8f8;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px dashed #e4431f;
  animation: rotateFull 12s infinite ease-in-out;
}

.info-box .title {
  margin-bottom: 7px;
  font-weight: bold;
  font-family: "Jua", sans-serif;
}

.info-box .text {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
}

.led h1 {
font-size: 50px;
    font-family: "Rowdies", sans-serif;
    line-height: 50px;
    color: #000;
  }

.led h1 span {
  color: #e4431f;
}

.led a {
  text-decoration: underline;
  font-size: 18px;
  font-weight: 600;
}

.led a span {
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 4px;
  transition: 0.3s all;
}

.led a:hover span {
  margin-left: 10px;
}


@keyframes rotateFull {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: 360deg;
  }
}

@keyframes floatTopToBottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }
}

.led-shape.jump {
  right: -2px;
  left: unset;
  bottom: 15px;
}

.led-shape.jump video {
  width: 120px;
}

.technology .poster-title {
  margin-bottom: 40px;
}

.technology .poster-title h5 {
  color: #88b520;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.technology .poster-title h2 {
  font-weight: bold;
  font-family: "Rowdies", sans-serif;
  font-size: 38px;
  color: #000;
}

.led .info-box.one .icon {
  color: #ed4b03;
}

.led .info-box.two .icon {
  color: #041a5c;
}

.led .info-box.three .icon {
  color: #fea614;
}

.led .info-box.one .title {
  color: #ee5816;
}

.led .info-box.two .title {
  color: #112665;
}

.led .info-box.three .title {
  color: #feab22;
}

.led .info-box.one .icon:after {
  border: 2px dashed #ed4b03;
}

.led .info-box.two .icon:after {
  border: 2px dashed #041a5c;
}

.led .info-box.three .icon:after {
  border: 2px dashed #fea614;
}


.shoe-slider-sec {
  position: relative;
  padding: 50px 0 70px;
  background: #ffe2b5;
  min-height: 100vh;
}

.shoe-slider-sec .shoes-slider-box {
  position: absolute;
  height: 510px;
  width: 400px;
  background-color: #1c1c1c;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.shoe-slider-sec .btn-fill {
  background: #fff;
  outline: none;
  border: 0;
  color: #292929;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
}

.shoe-slider-sec .btn-fill .icon {
  margin-inline-start: 8px;
  display: inline-block;
  font-size: 9px;
}





.shoe-slider-sec .shoe-slider {
  z-index: 99;
}


.shoe-slider-sec .bg-text {
  position: absolute;
  text-align: center;
  z-index: 9;
  font-weight: bolder;
  text-transform: uppercase;
  font-size: 160px;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  color: #9998985b;
  animation: slightlyUp 1.1s ease-in;
  display: none;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
}

.shoe-slider-sec .owl-carousel .owl-item .shoes-details {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  text-align: center;
  display: none;
  animation: slightlyUp1 1.1s ease;
}

.shoe-slider-sec .owl-item.active.center .shoes-details {
  display: block;
}

.shoe-slider-sec .owl-item.active.center .bg-text {
  display: block;
}

@keyframes slightlyUp {
  0% {
    transform: translate(-50%, 40px);
  }

  100% {
    transform: translate(-50%, 0px);

  }
}


@keyframes slightlyUp1 {
  0% {
    bottom: -30px;
    opacity: 0;
  }

  100% {
    bottom: -20px;
    opacity: 1;
  }
}


.shoe-slider-sec .owl-carousel .owl-item .shoes-details .shoe-name {
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
  font-family: "Albert Sans", sans-serif;
}

.shoe-slider-sec .owl-carousel .owl-item img {
  position: relative;
  z-index: 999;
}


.shoe-slider-sec .owl-carousel .owl-nav .owl-next,
.shoe-slider-sec .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  bottom: -130px;
}

.shoe-slider-sec .owl-carousel .owl-nav .owl-next {
  right: 46.5%;
}

.shoe-slider-sec .owl-carousel .owl-nav .owl-prev {
  left: 46.5%;
}


.shoe-slider-sec .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #111;
  color: #000;
}

.essential {
  padding: 35px 0 70px;
  position: relative;
}

.essential .essential-img {
  position: relative;
}

.essential .essential-img::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 10px;
  right: 10px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 1;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.essential .essential-img::after {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  right: 20px;
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 1;
  transform: scaleY(0);
  transition: all 0.3s ease;
}

.essential .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
}

.essential .content h3 {
  font-family: "Albert Sans", sans-serif;
  font-size: 43px;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 20px;
  transition: all 0.3s;
  color: #000;
}

.essential .content p {
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: "Albert Sans", sans-serif;
  color: #000;
  transition: all 0.3s;
}

.essential .content .explr-btn {
  display: inline-block;
  height: 44px;
  padding: 0 30px;
  text-transform: uppercase;
  position: relative;
  line-height: 38px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  background: transparent;
  border: 1px solid #111111;
}


.my-container {
  width: 1340px;
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.essential .essential-img:hover::before {
  transform: scale(1);
}


.essential .essential-img:hover::after {
  transform: scaleY(1);
}


.man-swiper {
  background-image: url("../img/mens-shoes-bg.png");
  background-size: 100%;
  padding: 60px;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}

.man-swiper .safety-shape {
  width: 4.42rem;
  position: absolute;
  top: -52px;
  left: 20px;
  animation: jumpReverseAni 7s linear infinite;
}


@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }

}

.background-image,
.bg-img,
.footer,
.man-swiper,
[data-bg-src] {
  background-repeat: no-repeat;
}

.color-meta a,
.men-slider-mySwiper {
  padding: 10px;
}

.pt-50 {
  padding-top: 50px;
}

.sub-heading {
  text-align: center;
  color: #812143;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  font-style: italic;
}

.heading {
  font-size: 3rem;
  font-weight: 600;
  line-height: 50px;
  margin: 0;
  text-align: center;
  color: #000;
  font-family: "Albert Sans", sans-serif;
}

.sub-sub-heading {
  position: relative;
  font-size: 17px;
  font-style: italic;
  margin-top: 0 !important;
  color: #000;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
}

.sub-sub-heading::before {
  content: '';
  background-color: #000;
  width: 93px;
  position: absolute;
  bottom: -6px;
  height: 2px;
  left: 47%;
}


.men-sec-bg .swiper-thumbs {
  /* margin-top: 20px; */
  background: #ffffffe0;
  padding: 8px;
}

.swiper-thumbs {
  margin-top: 15px;
}

.men-sec-bg .swiper-thumbs img {
  opacity: 0.6;
}


.men-sec-bg .swiper-slide-visible.swiper-slide-thumb-active img {
  opacity: 1;
}

.safety-shoe-slider {
  padding: 3rem 0;
}

.safety-shoe-slider .swiper-slide img {
  transition: 1s all;
}

.safety-shoe-slider .swiper-slide.swiper-slide-active img {
  scale: 1.19;
  margin-top: -20px;
}


.safety-shoe-slider .swiper-slide img {
  scale: 0.7;
}

.poster-slider .swiper-slide {
  transition: 0.5s all;
}


.poster-slider .swiper-slide {
  scale: 0.96;
}

.poster-slider .swiper-slide.swiper-slide-active {
  scale: 1.05;

}


.poster-slider .swiper-button-prev,
.poster-slider .swiper-button-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eeeeee;
  border: 1px solid #666666;
  opacity: 0.8;
}



.poster-slider .swiper-button-next:after,
.poster-slider .swiper-button-prev:after {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.plane-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.plane-wrapper .plane-text-holder {
  padding: 20px;
  border-radius: 14px;
  background-color: #fff3e0;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
  font-family: "Amatic SC", sans-serif;
}

.plane-wrapper .plane-text-holder .plane-text {
  font-weight: 600;
  font-size: 24px;
}


.plane-wrapper {
  animation: 34s qodef-flight infinite linear;
  width: fit-content;
}

.plane-wrapper svg>path {
  transform: rotateZ(0);
  transform-origin: 7% 39%;
  animation: qodef-propeler .4s infinite linear;
}


@keyframes qodef-propeler {
  0% {
    transform: rotateZ(0)
  }

  25% {
    transform: rotateZ(90deg)
  }

  50% {
    transform: rotateZ(180deg)
  }

  75% {
    transform: rotateZ(270deg)
  }

  100% {
    transform: rotateZ(360deg)
  }
}

@keyframes qodef-flight {
  from {
    transform: translateX(150%);
  }

  to {
    transform: translateX(-100%);
  }
}


.banner-shape.on1 {
  position: absolute;
  top: 20%;
  left: 33%;
  animation: myAnim 1.5s ease 0.5s 1 normal forwards;
}

.banner-shape.on1 img {
  width: 370px !important;
}


.banner-shape.on2 {
  right: -10%;
  top: 23%;
  animation: scaleUpDown 2s infinite ease-in-out;

}

.banner-shape.on3 {
  left: -8%;
  top: 33%;
  animation: scaleUpDown 15s linear infinite;
}

.banner-shape.on3 img {
  width: 175px !important;
}


.banner-shape.on4 {
  left: 55%;
  top: 41%;
  opacity: 0.8;
  animation: scaleUpDown 15s linear infinite;
}

.banner-shape.on4 img {
  width: 50px !important;
}

.banner-shape.on5 {
  top: 26%;
  left: 3%;
  animation: bouncefromleft 2s ease 0.5s 1 normal forwards;
}

.banner-shape.on5 img {
  width: 280px !important;
}

.banner-shape.on6 {
  left: 20%;
  top: 11%;
  animation: floatingx 3s infinite;
}

.banner-shape.on6 img {
  width: 160px !important;
}

.banner-shape.on7 {
  right: 7%;
  top: 20%;
  animation: scaleUpDown 3s infinite ease-in-out;
}

.banner-shape.on7 img {
  width: 65px !important;
}

.banner-shape.on8 {
  right: 48%;
  top: 28%;
  animation: jello 2s ease 0.5s 1 normal forwards;
}

.banner-shape.on8 img {
  width: 175px !important;
}

.banner-shape.on9 {
  left: 0%;
  top: 40%;
  animation: scaleUpDown 4s infinite;
}

.banner-shape.on9 img {
  width: 60px !important;
}

.banner-shape.on10 {
  right: -190px;
  top: 40%;
  transform: rotate(-90deg);
  animation: moveUpDown 2s ease-in-out infinite;
}

.banner-shape.on10 img {
  width: 80px !important;
}

.banner-shape.on11 {
  top: 36%;
  right: 40%;
  animation: slightRotate 2s ease-in-out infinite;
}

.banner-shape.on11 img {
  width: 90px !important;
}



@keyframes slightRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes moveUpDown {

  0%,
  100% {
    top: 40%;
  }

  50% {
    top: 38%;
  }
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-155px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-54px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-32px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}


@keyframes scaleUpDown {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.14);
  }
}


@keyframes bouncefromleft {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateX(-178px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateX(-26px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateX(-13px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateX(-6.5px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateX(-4px);
  }

  25%,
  55%,
  75%,
  87%,
  98% {
    animation-timing-function: ease-out;
    transform: translateX(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0px);
  }
}


@keyframes jello {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }

  30% {
    transform: scale3d(0.65, 1.35, 1);
    opacity: 0.5;
  }

  40% {
    transform: scale3d(1.35, 0.65, 1);
    opacity: 0.7;
  }

  50% {
    transform: scale3d(0.85, 1.15, 1);
    opacity: 0.7;

  }

  65% {
    transform: scale3d(1.05, 0.95, 1);
    opacity: 0.8;

  }

  75% {
    transform: scale3d(0.95, 1.05, 1);
    opacity: 0.9;

  }

  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;

  }
}


.led-shape.cloud {
  top: 30px;
  left: 30px;
  animation: scaleUpDown 6s infinite;
  opacity: 0.7;
  width: 60px;
  height: 60px;

}


.plane-wrapper svg {
  height: 70px;
}


.bulb-container {
  width: 100px;
  height: 120px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transform-origin: top;
  animation: swing 3s ease-in-out infinite;
  top: 0;
  left: -15px;
}

.wire {
  width: 4px;
  height: 250px;
  background: black;
  position: relative;
  z-index: 1;
}

.connector {
  background: #292929;
  width: 24px;
  aspect-ratio: 4/5;
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 2;
}

.grove {
  background: #424242;
  width: 34px;
  height: 3px;
  z-index: 3;
}

.bulb {
  margin-top: -2px;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffeb00;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: -1px;
  z-index: 1;
  animation: flash 10s linear infinite;
}

.metal-wire {
  position: relative;
  border: 1px solid black;
  width: 22px;
  height: 11px;
  border-radius: 50%;
  z-index: 2;
}

.metal-wire:nth-child(1) {
  top: -1px;
}

.metal-wire:nth-child(2) {
  top: -7px;
}

.metal-wire:nth-child(3) {
  top: -13px;
}

@keyframes swing {
  0% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

@keyframes flash {
  0% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  1% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  1.001% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  10% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  11.001% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  11.002% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  12% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  /*    */
  39.999% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  40% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  41% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  41.001% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  /*    */

  75% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  75.5% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 150px 75px rgba(245, 223, 77, 1);
  }

  75.501% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  /*    */

  80% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  81.001% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }

  81.002% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  82% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }

  82.001% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }

  82.002% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  83% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }

  83.001% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  83.002% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }

  83.003% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 0px 0px transparent;
  }

  88% {
    background: rgba(255, 235, 0, 1);
    box-shadow: 0px 0px 80px 45px rgba(245, 223, 77, 1);
  }
}


.about-one {
  position: relative;
  padding: 50px 0px 120px;
}

@media (max-width: 767px) {
  .about-one {
    padding: 0 0 100px;
  }
}

.about-one__content {
  position: relative;
}

@media (min-width: 1200px) {
  .about-one__content {
    padding: 80px 15px 0 0;
  }
}

.about-one__content .sec-title {
  padding-bottom: 31px;
}

.about-one__content__text {
  line-height: 30px;
  margin: 0 0 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.about-one__content .kidearn-btn {
  font-size: 16px;
  padding: 11px 50px;
}

.about-one__image {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .about-one__image {
    margin: 40px 0 0;
  }
}

@media (min-width: 1200px) {
  .about-one__image {
    padding: 0 0 0 12px;
  }
}

.about-one__image__one {
  position: relative;
  display: inline-block;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 302.000000"><g transform="translate(0.000000,302.000000) scale(0.050000,-0.050000)"><path d="M2590 6019 c-2434 -335 -3454 -3293 -1730 -5019 1056 -1057 3313 -1336 4368 -540 955 721 1014 3098 109 4368 -600 843 -1726 1331 -2747 1191z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 302.000000"><g transform="translate(0.000000,302.000000) scale(0.050000,-0.050000)"><path d="M2590 6019 c-2434 -335 -3454 -3293 -1730 -5019 1056 -1057 3313 -1336 4368 -540 955 721 1014 3098 109 4368 -600 843 -1726 1331 -2747 1191z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.about-one__image__one img {
  width: 100%;
  height: auto;
}

.about-one__image__border {
  position: absolute;
  left: 50px;
  top: -8px;
  z-index: -1;
}

.about-one__image__border img {
  max-width: 100%;
  height: auto;
  -webkit-animation: rotated2 6s infinite linear;
  animation: rotated2 6s infinite linear;
}

.about-one__image__ball {
  width: 63px;
  height: 63px;
  background-color: var(--kidearn-secondary, #FFAA23);
  border-radius: 50%;
  position: absolute;
  right: -34px;
  bottom: 85px;
  animation: animationFrames 20s infinite linear;
}

@keyframes animationFrames {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

.about-one__image__leaf {
  position: absolute;
  left: -19px;
  bottom: -107px;
}

.about-one__image__leaf img {
  -webkit-animation: airTree 5s ease-in infinite;
  animation: airTree 5s ease-in infinite;
}

@keyframes airTree {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

.about-one__content .kidearn-btn {
  font-size: 16px;
  padding: 11px 50px;
}

.kidearn-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--kidearn-base, #F25334);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--kidearn-font, "DM Sans", sans-serif);
  padding: 9.25px 30px;
  transition: 800ms;
  letter-spacing: 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.kidearn-btn::before {
  left: -20px;
  transform: translate(-50%, -50%);
}


.kidearn-btn::before,
.kidearn-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--kidearn-black, #0B2038);
  border-radius: 50%;
}

.kidearn-btn::after {
  right: -20px;
  transform: translate(50%, -50%);
}

.about-one .sec-title {
  margin-bottom: 0;
  padding-bottom: 0;
}


.about-one .sec-title__title {
  font-family: "Rowdies", sans-serif;
}


.ot-header.inner-header {
  position: relative;
  z-index: 9999;


  .hamburger {
    border: 2px solid rgb(115 115 115 / 66%);
  }
}



.breadcumb-wrapper {
  z-index: 2;
  background-color: #103842;
}


.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


.breadcumb-content {
  text-align: right;
  padding-top: 70px;
  padding-bottom: 150px;
}


.breadcumb-title {
  font-size: 45px;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
  margin-bottom: 8px;
}

.breadcumb-menu {
  max-width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  list-style-type: none;
}


.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}


.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 2px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li::after {
  content: "/";
  margin-left: 10px;
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}


.about-one .points {
  padding-left: 0;



  li {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #808080;
    font-weight: 600;

    span {
      width: 30px;
      height: 30px;
      background-color: #e42e3b;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border-radius: 50%;

      position: relative;


      &::after {
        content: "";
        height: 12px;
        width: 12px;
        position: absolute;
        background-color: #fff;
        border-radius: 50%;
        left: -4px;
        bottom: 0;
      }




    }
  }
}


.gy-40 {
  --bs-gutter-y: 40px;
}


.th-blog-wrapper {
  padding: 60px 0 0px;
}

@media only screen and (min-width: 1300px) {
  .th-container3 {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}


@media (min-width: 1300px) {
  .row {
    --bs-gutter-x: 24px;
  }
}


.product-grid.style14 {
  border-radius: 10px;
}

.product-grid {
  position: relative;
}

.product-grid .box-img {
  /* background: #f6f1e4; */
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* border: 1px solid #afafaf57; */
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  margin-bottom: 20px;
}

.box-img {
  overflow: hidden;
}



.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
  background-color: #fff;
}

.box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}



.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}



.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.product-grid.style14 img {
  border-radius: 60px;
}

.product-grid .box-img img {
  width: auto;
  height: auto;
  object-fit: cover;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}


.product-grid .box-img .product-action {
  position: absolute;
  top: 8px;
  right: -20px;
  text-align: right;
  width: auto;
  max-width: auto;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  z-index: 2;
}

.product-grid .box-img .product-action a {
  display: block;
  border-radius: 4px;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(60px);
  -ms-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.product-grid .box-img .product-action a .action-text {
  background-color: #ff0004;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  padding: 3px 15px 3px 6px;
  border-radius: 4px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -115px;
  top: 50%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.product-grid .box-img .product-action a .action-text:before {
  content: "";
  position: absolute;
  top: 9px;
  right: -10px;
  width: 12px;
  height: 12px;
  background: #ff0004;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.beige-color {
  position: relative;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.sidebar-area {
  margin-bottom: -10px;
}

.product-categories-sidebar .product-categories-sidebar-heading {
  font-weight: 500;
  font-size: 25px;
  color: #313131;
  font-family: "Rowdies", sans-serif;
}

.accordion-button:not(.collapsed) {
  background-color: #000;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.widget.widget_offer {
  position: relative;
  border-radius: 8px;
  z-index: 2;
  min-height: 438px;
}

.widget_offer {
  padding-bottom: 100px;
}

.widget_offer {
  margin-top: 10px;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sidebar-area .accordion .accordion-body ul {
  padding-left: 0;
}

.sidebar-area .accordion .accordion-body ul li {
  list-style-type: none;
  margin-bottom: 8px;
  position: relative;
}

.sidebar-area .accordion .accordion-body ul li a {
  color: #000;
  font-weight: 500;
}

.sidebar-area .accordion .accordion-body ul li a.active {
  color: #000;
}

.accordion-item .accordion-button {
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  font-weight: 500;
}

.accordion-button:focus {
  z-index: 3;
  border: 0;
  outline: 0;
  box-shadow: none;
}


.product-details {
  padding: 40px 0 0;
}

@media (min-width: 1299px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1300px) {
  .row {
    --bs-gutter-x: 24px;
  }
}

.product-details .product-big-img {
  background-color: #f6f1e4 !important;
  border-radius: 10px;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

.product-big-img {
    background-color: #f6f1e4 !important;
    text-align: center;
    overflow: hidden;
    border-radius: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    left: 0;
    height: 633px;
    width: 633px;
    line-height: 633px;
  }
  
  
  .mySwiper11 {
  border: 1px solid #cfcfcf;

}

.swiper-thumbs {
  padding-right: 1px;
}

.big-img-thumb {
  border: 1px solid #eaeaea;
  /* margin-top: 10px; */
  background-color: #f6f1e4;

}


.summary-content .product-title,
.product-about .product-title {
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 11px 0;
}

.summary-content .product-title,
.product-about .product-title span {
  color: #ff0004;
}

.size {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.size .title {
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 0;
}

.size ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  padding-left: 0;
}

.size ul li {
  background: #ffffff;
  border: 1px solid #e1e4e6;
  border-radius: 6px;
  padding: 2px 14.1px;
  color: #636363;
  font-size: 16px;
  line-height: 14px;
  height: 35px;
  min-width: 35px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}

.pro-details {
  padding: 60px 0 0;
}


.product-about .product-title {
  font-size: 40px;
  font-weight: 500;
  margin: 0px 0px 11px;
                  font-family: "Rowdies", sans-serif;
}

.product-about .product-title span {
  color: rgb(255, 0, 4);
}


.size {
  display: flex;

  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}


.size .title {
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
    margin-bottom: 0px;
}

.size ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    padding-left: 0;
}


.size ul li {
    background: #ffffff;
    border: 1px solid #e1e4e6;
    border-radius: 6px;
    padding: 2px 14.1px;
    color: #636363;
    font-size: 16px;
    line-height: 14px;
    height: 35px;
    min-width: 35px;
    margin-right: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}


.product-about .beige-color {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.beige-title {
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-about .beige-color span {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}

.beige-color span {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(175, 175, 175);
    border-image: initial;
    transition: 0.4s ease-in-out;
}

.product-about .beige-color span::before {
    border: 2px solid #101111;
    border-radius: inherit;
}


.beige-color span::before {
    content: "";
    position: absolute;
    opacity: 0;
    inset: -2px;
    border: 1px solid #101111;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.summary-content .actions, .product-about .actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin: 32px 0px 25px;
}

.summary-content .checklist, .product-about .checklist {
    margin: 29px 0px;
}

.checklist ul {
    padding-left: 0px;
    text-align: left;
    margin-bottom: 0px;
    display: inline-block;
    list-style: none;
}

.checklist li:not(:last-child) {
    margin-bottom: 12px;
}

.summary-content .checklist li, .product-about .checklist li {
    color: #101111;
    background: #f6f1e4;
    padding: 14px 20px;
    border-radius: 10px;
    gap: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.checklist li {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101111;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
}

.summary-content .checklist li i, .product-about .checklist li i {
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #ff0004;
    color: #fff;
    border-radius: 50%;
}

.pro-details .abt-btn {
  padding: 8px 12px;
}


/* .pro-details .swiper-button-next,
.pro-details .swiper-button-prev {
  display: none;
} */


.technology.related {
  padding-bottom: 0;
}

.child-foot .swiper-button-next:after, .child-foot .swiper-button-prev:after {
    font-size: 20px;
    line-height: 1;
    color: red;
    min-width: 35px;
    height: 35px;
        background: #ffe7bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.ot-header.inner-header {
  position: relative;
}

.th-blog-wrapper .product-grid .box-img {
  border: 1px solid #afafaf57;
}

.technology.related .product-grid .box-img{
  border: 1px solid #afafaf57;
  overflow: hidden;
}


.cta-two {
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.cta-two .cta-shape {
        position: absolute;
    width: 75px;
    top: 20px;
}
.cta-two .cta-shape.one {
       top: 30%;
    left: -46px;
    width: 200px;
    opacity: 0.07;
        animation: upDown 3s ease-in-out infinite;
}
.cta-two .cta-shape.two {
  right: 95px;
    top: 70px;
    width: 90px;
    rotate: -30deg;
        animation: upDown 5s ease-in-out infinite;

}

.section-two-title .section-two-title-text {
    margin-bottom: 17px;
}

.section-two-title .section-two-title-text p {
    font-size: 18px;
    display: inline-block;
    font-weight: 500;
    line-height: 23px;
    background: linear-gradient(92deg, var(--zoso-text-primary-gradient) 0%, var(--zoso-text-blue-gradient) 100.14%);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
}

.section-two-title .section-two-title-title h2 {
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.3px;
    margin-bottom: 30px;
}

.section-two-details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.cta-two-left-box {
    justify-content: end;
    position: relative;
    margin-right: 10px;
}

.features-three-left-box, .cta-two-left-box {
    display: flex;
    position: relative;
}

.cta-two-left-box-shape-1 {
    position: absolute;
    width: 70px;
    height: 70px;
        right: 192px;
    top: 15px;
    background: url(../img/features-three-left-box-shape-1.png)no-repeat;
    background-size: contain;
    animation: 4s linear infinite features-three-left-box-shape;
}

.cta-two-left-box-shape-2 {
    position: absolute;
    width: 45px;
    height: 71px;
    right: 309px;
    bottom: 8px;
    background: url(../img/features-three-left-box-shape-2.png)no-repeat;
    background-size: contain;
    animation: 4s linear infinite features-three-left-box-shape;
}

.cta-two-left-box-shape-3 {
    position: absolute;
    width: 26px;
    height: 38px;
    right: 295px;
    bottom: 60px;
    background: url(../img/features-three-left-box-shape-3.png)no-repeat;
    background-size: contain;
    animation: 4s linear 1s infinite features-three-left-box-shape;
}

.cta-two-left-box-shape-4 {
    position: absolute;
    width: 26px;
    height: 38px;
    right: 284px;
    bottom: 11px;
    background: url(../img/features-three-left-box-shape-4.png)no-repeat;
    background-size: contain;
    animation: 4s linear 2s infinite features-three-left-box-shape;
}

.cta-two-left-img-1-shape, .cta-two-left-img-2-shape {
    position: relative;
}

.cta-two-left-img-1 {
    margin-bottom: 103px;
    position: relative;
    overflow: hidden;
    border-radius: 125px;
    z-index: 8;
}

.cta-two-left-img-1-shape::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    left: -26px;
    top: -21px;
    border: 1px solid #4bdb1c7d;
    border-radius: 125px;
    z-index: -1;
    animation: 5s linear infinite up-down-animation;
}

.cta-two-left-img-box img {
    width: 250px;
    height: 370px;
    transition: all 0.5s;
    transform: scale(1.1);
}

.cta-two-left-img-2 {
    margin-left: 20px;
    margin-top: 103px;
    position: relative;
    border-radius: 125px;
    overflow: hidden;
    z-index: 8;
}

.cta-two-left-img-box img {
    width: 250px;
    height: 370px;
    transition: all 0.5s;
    transform: scale(1.1);
}

.cta-two-left-img-2-shape::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    right: -24px;
    bottom: -16px;
    border: 1px solid #e9d27596;
    border-radius: 125px;
    z-index: -1;
    animation: 5s linear infinite up-down-animation;
    animation-direction: reverse;
}

@keyframes up-down-animation {
  0% {
    transform: translateY(0);
}
50% {
    transform: translateY(30px);
}
100% {
    transform: translateY(0);
}
}


@keyframes features-three-left-box-shape {
  0% {
    transform: scale(1);
}
50% {
    transform: scale(1.4);
}
100% {
    transform: scale(1);
}
}




.cta-two .abt-left .abt-title .bottom-dots .dot.line-dot {
    height: 1px;
    width: 128px;
}

.cta-two .abt-left .abt-title .bottom-dots .dot {
    border: 2px solid #4bdb1c;
    position: relative;
    display: block;
    float: left;
    width: 13px;
    height: 3px;
    margin-right: 3px;
    border-radius: 10px;
}

.cta-two .abt-subheading h6 {
  margin-bottom: 5px;
  color: #4bdb1c;
}


.cta-two .abt-left .abt-title h2 {
    font-family: "Rowdies", sans-serif;
    font-size: 38px;
    color: #000;
    line-height: 48px;
    margin-top: 10px;
}

.cta-two .abt-left .abt-title h2 span {
  color: #edc631;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: changeBackgroundColor 5s infinite;
}




/* Story Section */


@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');


.color1{color:#1BBC9B}/*MOUNTAIN MEADOW*/
.color2{color:#C0392B/*TALL POPPY*/}


.card {
    color: #013243;
    width: 350px;
    height: 430px;
    background: #efefef;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    box-shadow: inset 300px 0 50px rgb(0 0 0 / 25%), 20px 0 60px rgb(0 0 0 / 25%);
    transition: 1s;
    margin-inline: auto;
}

.card:hover {
	transform: perspective(2000px) scale(1.06);
	box-shadow: inset 20px 0 50px rgba(0,0,0,.5), 0 10px 100px rgba(0,0,0,.5);
}

.card:before {
	content:'';
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	height: 5px;
	background: #BAC1BA;
	transform-origin: bottom;
	transform: skewX(-45deg);
}

.card:after {
	content: '';
	position: absolute;
	top: 0;
	right: -5px;
	width: 5px;
	height: 100%;
	background: #92A29C;
	transform-origin: left;
	transform: skewY(-45deg);
}

.card .imgBox {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: left;
    transition: .7s;
}

.card .bark {
	position: absolute;
	background: #e0e1dc;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: .7s;
}

.card .imgBox img {
	min-width: 100%;
	max-height: 430px;
}

.card:hover .imgBox {
	transform: rotateY(-135deg);
}

.card:hover .bark {
	opacity: 1;
	transition: .6s;
  box-shadow: 300px 200px 100px rgba(0, 0, 0, .4) inset;
}

.card .details {
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 0 0 0 10px;
	z-index: -1;
	margin-top: 20px;
}

.card .details p {
	font-size: 15px;
	line-height: 5px;
	padding: 0 0 0 20px;
  font-family: 'Indie Flower', cursive !important;
  font-family: 'Amatic SC', cursive !important
}

.card .details h4 {
	text-align: center;
}

.text-right {
	text-align: right;
}


.story {
  padding: 50px 0;
}


.story .story-left {
  display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.story .story-left h1 {
    font-family: "Rowdies", sans-serif;
    font-size: 55px;
    color: #000;
    line-height: 66px;
    margin-top: 10px;
}


.ptb-50 {
    padding: 50px 0px;
}


.kids-banner {
    background-color: #ffd17a;
}

.kids-banner {
    position: relative;
    padding-bottom: 100px;
}




/* Contact Page */

.breadcrumb-sec {
    position: relative;
}


.breadcrumb-sec {
    background-color: #5ddefb;
    padding: 100px 0px;
    /* padding-top: 100px; */
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    /* padding-bottom: 0; */
}


.ptb-50 {
    padding: 50px 0px;
}


.breadcrumb-icon-1 {
    position: absolute;
    width: 7%;
}


.breadcrumb-icon-3 {
        position: absolute;
    width: 4%;
    left: 21%;
    top: 18%;
    animation: itswing .9s forwards infinite alternate;
}


.breadcrumb-icon-4 {
    position: absolute;
    width: 4%;
    left: 25%;
    bottom: 20%;
    animation: movingX 8s linear infinite;
}

.breadcrumb-sec h2 {
    color: #000;
    font-weight: 500;
}

.breadcrumb-sec h5 {
    font-size: 19px;
}

.breadcrumb-sec h5 a {
    color: #e60014;
    text-decoration: underline;
}

.banner-shape {
    position: absolute;
    bottom: -1px;
}


@keyframes movingX {
  0% {
    transform: translateX(0);
}
50% {
    transform: translateX(-50px);
}
100% {
    transform: translateX(0);
}
}

@keyframes itswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
}
100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
}
}



.it-contact-item {
    /* padding: 10px 25px; */
    padding-top: 14px;
    padding-bottom: 50px;
    text-align: center;
    border-radius: 10px;
    background: #f99c36;
    min-height: 100%;
}

.mb-25 {
    margin-bottom: 25px;
}

.it-contact-icon span {
    height: 100px;
    width: 100px;
    line-height: 111px;
    border-radius: 50%;
    display: inline-block;
    font-size: 40px;
    color: #f59831;
    text-align: center;
    background-color: #fff;
}

.it-contact-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.it-contact-content p {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    background-repeat: no-repeat;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    transition: background-size 0.6s linear;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}

.it-contact-item.it-contact-item-style-2 {
    position: relative;
    background-color: #25aabf;
}

.it-contact-item.it-contact-item-style-2 span {
    color: #1f90a2;
}

.it-contact-item.it-contact-item-style-3 {
    background-color: #f34a4a;
}

.it-contact-item.it-contact-item-style-3 span {
    color: #eb4f4f;
}

.it-contact-content a {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    background-repeat: no-repeat;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    transition: background-size 0.6s linear;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}



.contact-form {
    position: relative;
    z-index: 1;
    background-image: url(../img/line2.png);
}


.contact-form-box {
    background-color: #E7F8FE;
    padding: 50px;
}




.contact-form-box input {
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgb(205 229 237);
    height: 58px;
    width: 100%;
    padding: 0 20px;
    line-height: 58px;
    font-size: 19px;
    color: #a5a5a5;
    margin-bottom: 15px;
    font-weight: 400;
}


.contact-form-box textarea {
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgb(205 229 237);
    height: 180px;
    width: 100%;
    padding: 0 20px;
    line-height: 58px;
    font-size: 19px;
    color: #a5a5a5;
    font-weight: 400;
}

.pc-button.elementor-button {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    min-height: 58px;
    min-width: 180px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    background-color: #fe4b7b;
    border: 0px transparent;
    border-radius: 30px;
    margin-top: 0 !important;
}

.pc-button.elementor-button .button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
}

.elementor-button .elementor-button-text {
    display: inline-block;
}

.pc-button.elementor-button svg.inner-dashed-border {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
}


@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
}
  
}

.pc-button.elementor-button .inner-dashed-border {
    stroke: #ffffff;
}

.pc-button.elementor-button:hover .animated-dashes.inner-dashed-border {
    animation-play-state: running;
}

.activities-section .abt-title .abt-subheading,
.quality-assurance-sec .abt-title .abt-subheading,
.about-area .abt-title .abt-subheading,
.contact-form .abt-title .abt-subheading {
    position: relative;
}


.quality-assurance-sec .abt-subheading h6,
.contact-form .abt-subheading h6 {
    margin-bottom: -12px;
    color: #1cb5db;
}

.activities-section .abt-subheading h6,
.about-area .abt-subheading h6 {
  margin-bottom: -12px;
  color: #ff4500;
}

.activities-section .abt-title .bottom-dots,
.quality-assurance-sec .abt-title .bottom-dots,
.contact-form .abt-title .bottom-dots,
.about-area .abt-title .bottom-dots {
  display: inline-block;
}

.activities-section .abt-title .bottom-dots .dot.line-dot,
.about-area .abt-title .bottom-dots .dot.line-dot,
.quality-assurance-sec .abt-title .bottom-dots .dot.line-dot,
.contact-form .abt-title .bottom-dots .dot.line-dot {
    height: 1px;
    width: 128px;
}

.activities-section .abt-title .bottom-dots .dot.line-dot,
.about-area .abt-title .bottom-dots .dot.line-dot,
.quality-assurance-sec .abt-title .bottom-dots .dot.line-dot,
.contact-form .abt-title .bottom-dots .dot.line-dot {
    height: 1px;
    width: 40px;
}



.quality-assurance-sec .abt-title .bottom-dots .dot,
.contact-form .abt-title .bottom-dots .dot {
    border: 2px solid #1cb5db;
    position: relative;
    display: block;
    float: left;
    width: 13px;
    height: 3px;
    margin-right: 3px;
    border-radius: 10px;
}

.activities-section .abt-title .bottom-dots .dot,
.about-area .abt-title .bottom-dots .dot {
    border: 2px solid #ff4500;
    position: relative;
    display: block;
    float: left;
    width: 13px;
    height: 3px;
    margin-right: 3px;
    border-radius: 10px;
}

.activities-section .abt-title h2,
.about-area .abt-title h2,
.quality-assurance-sec .abt-title h2,
.contact-form .abt-title h2 {
        font-family: "Rowdies", sans-serif;
    font-size: 38px;
    color: #000;
    line-height: 48px;
    margin-top: 4px;
    margin-bottom: 25px;
}

.about-area .abt-title h2 {
  margin-bottom: 10px;
}

.about-area .abt-title .abt-title h2 span,
.quality-assurance-sec .abt-title h2 span,
.contact-form .abt-title h2 span {
    color: #ed9531;
}


.space, .space-bottom {
    padding-bottom: 30px;
}


.space, .space-top {
    padding-top: 60px;
}

.img-box4 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .img-box4 .img1 {
        margin-left: 5px;
    }
}
.img-box4 .img2 {
    margin-top: -20px;
}
.img-box4 .img4 {
    margin-top: -20px;
}

.img-box4 img {
    border-radius: 15px;
}

.mb-37 {
    margin-bottom: 25px;
}

 p, .text {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: rgb(22, 22, 22);
  line-height: 28px;
  margin-bottom: 0px;
  font-weight: 500;
}

.position-relative {
    position: relative !important;
}

.about-image img:nth-child(2) {
    left: 0;
    top: 65px;
    width: 410px;
    position: absolute;
}


.feedback-area {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/feedback-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.feedback-area .content {
    max-width: 530px;
}

.position-relative {
    position: relative !important;
}

.feedback-area .content .box {
    left: 0;
    right: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    padding-left: 30px;
    padding-right: 30px;
}

.feedback-area .content .box p {
    line-height: 1.5;
    max-width: 350px;
    font-size: 26px;
    font-style: italic;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 25px;
}
.feedback-area .content .box span {
    color: #fa3f7b;
    font-size: 14px;
    font-weight: 600;
}


.about-area {
  padding-bottom: 50px;
  padding-top: 50px;
}


.activities-section.style-two {
    position: relative;
    display: block;
}

.internal-why-icon {
    position: absolute;
    bottom: 0;
    width: 13%;
}

.activities-section.style-two .image-box {
    margin: 120px 70px 0px 110px;
}

.activities-section .image-box .image {
    position: relative;
    display: block;
    float: left;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, .1);
}

.activities-section.style-two .image-box .image:before {
    right: 205px;
    background: #d9f0f7;
    height: 400px;
}

.activities-section .image-box .image:before {
    position: absolute;
    content: '';
    background: #9be9ff;
    height: 290px;
    width: 290px;
    top: -110px;
    right: -110px;
    border-radius: 20px;
    z-index: -1;
}

.activities-section .image-box .image img {
    width: 100%;
    border-radius: 20px;
}

.single-item {
    margin-top: 25px;
}

.single-item h3 {
      font-family: "Rowdies", sans-serif;
    font-size: 22px;
    color: #000;
    line-height: 40px;
    margin-top: 4px;
    margin-bottom: 0px;
    font-weight: 400;
}

.activities-section {
  padding-top: 50px;
}


.mission-vision-card {
    background-image: url(../img/text-section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 50px;
    margin-top: 10px;
}

.mision-vision-internal-card {
    background: #f4a21a;
    border-radius: 50px;
    border: 3px dashed #000;
    padding: 37px 70px 48px 70px;
}

.mision-vision-internal-card h5 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
}

.mision-vision-internal-card h5 img {
    width: 7%;
}

.mision-vision-internal-card p {
    color: #fff;
    font-size: 19px;
}

.mision-img {
    margin: -100px -40px 0px 0px;
}


.box-1 h2 {
  font-size: 34px;
  font-family: "Sensie", sans-serif;
  font-weight: 400;
}

.box-1 h2 span {
  color: #db2522;
  color: transparent;
  animation: changeBackgroundColor 5s infinite;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}


@keyframes changeBackgroundColor {
  0% {
    background-color: #f4a21a;
  }
  25% {
    background-color: #db2522;
  }
  50% {
    background-color: #81F24C;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #f4a21a;
  }
}
@keyframes changeBackgroundColor1 {
  0% {
    background-color: #1a79f4;
  }
  50% {
    background-color: #db2522;
  }
  100% {
    background-color: #81F24C;
  }
}

.ot-blog-wrapper {
  position: relative;
}


.ot-blog-wrapper .story-shape {
  position: absolute;
  left: 0;
  top: 10%;
   animation: jumpReverseAni 7s linear infinite;

}
.ot-blog-wrapper .story-shape.two {
  position: absolute;
  left: unset;
  display: inline-block;
  z-index: -1;
  top: 0%;
      width: 160px;
    right: -50px;

}


.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}


.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper .line-shape {
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 120px;
}

.breadcrumb-wrapper .plane-shape {
    position: absolute;
    top: 25%;
    left: 15%;
}

.breadcrumb-wrapper .doll-shape {
    position: absolute;
    bottom: 25%;
    left: 12%;
}

.breadcrumb-wrapper .parasuit-shape {
    position: absolute;
    right: 10%;
    top: 10%;
}

.breadcrumb-wrapper .frame-shape {
    position: absolute;
    top: 12%;
    right: 23%;
    animation: rounded 5s linear infinite;
}


@keyframes rounded {
  50% {
    transform: rotate(20deg);
}
}

.breadcrumb-wrapper .bee-shape {
    position: absolute;
    bottom: 25%;
    right: 18%;
}


.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.breadcrumb-wrapper .page-heading {
    margin: 110px 0 100px;
    text-align: center;
    z-index: 9;
}

.breadcrumb-wrapper .page-heading h1 {
    color: #fff;
    font-size: 50px;
    z-index: 9;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    list-style-type: none;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: #fff;
}



@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}
50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}
}


.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
}


.quality-assurance-sec {
  margin-top: 50px;
}

.quality-assurance-sec p {
  text-align: justify;
}

.modal-body .contact-form-style {
  margin-top: 10px;
}

.sidemenu-content .info-box {
  padding-left: 0;
  flex-direction: row;
}


.sidemenu-content .info-box::before {
  content: none;
}

.abt-left p {
  text-align: justify;
}

.cta-two .abt-left {
  padding-right: 30px;
}

.cta-two .abt-left p {
  text-align: justify;
}

.about-area p {
  text-align: justify;
}

.p-relative {
    position: relative;
}


.it-choose-thumb-wrap {
  padding-right: 30px;
}

.it-choose-shape-3 {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.08);
}

.it-choose-shape-4 {
    position: absolute;
    bottom: 23%;
    right: -1%;
    animation: rotate2 4s linear infinite;
}

.it-choose-shape-2 {
  position: absolute;
    top: 3%;
    left: 0%;
    animation: itswing 0.9s forwards infinite alternate;
    transform-origin: top right;
}

.it-choose-shape-2 img {
  width: 100px;
}


.ite-choose-shape-3 img,
.ite-choose-shape-4 img,
.ite-choose-shape-5 img,
.it-choose-2-thumb img {
  transition: all 0.3s ease-out 0s;
}

.it-choose-shape-5 {
    position: absolute;
    bottom: -4%;
    left: -16%;
    animation: itswing 1.4s forwards infinite alternate;
    transform-origin: top right;
}


.it-choose-2-thumb {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    mask-size: contain;
    mask-repeat: no-repeat;
    z-index: 2;
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    overflow: hidden;
}


@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

@keyframes itswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
}
100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
}
}



.tpchoose-shape-one {
    position: absolute;
    bottom: 55px;
    left: -38px;
    z-index: -1;
}

.tpchoose-shape-two {
    position: absolute;
    bottom: 58px;
    right: 38px;
    z-index: -1;
}

.tpchoose-shape-three {
position: absolute;
    bottom: 35px;
    left: -37px;
    z-index: -1;
}

.tpchoose-border-anim {
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -webkit-animation: img-border 5s linear infinite alternate;
    -moz-animation: img-border 5s linear infinite alternate;
    -o-animation: img-border 5s linear infinite alternate;
    animation: img-border 5s linear infinite alternate;
    transition: all 0.3s ease-out 0s;
}


@keyframes img-border {
  0% {
    -webkit-border-radius: 51% 49% 77% 23% / 65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23% / 65% 50% 50% 35%;
}
100% {
    -webkit-border-radius: 30% 70% 28% 72% / 53% 69% 31% 47%;
    -moz-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    border-radius: 30% 70% 28% 72% / 53% 69% 31% 47%;
}
}


.activities-section .abt-title h2 {
  margin-bottom: 0;
}

.quality-assurance-sec .box-title{
  font-size: 22px;
  margin-bottom: 6;
}

@media (min-width: 1200px) {
    .ps-xl-5 {
        padding-left: 3rem !important;
    }
}


@media (max-width: 1399px) {
    :root {
        --main-container: 1250px;
        --container-gutters: 24px;
    }
}

@media only screen and (min-width: 1300px) {
    .my-container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }
}

.quality-point-wrapper {
  padding-right: 20px;
}

.quality-assurance-sec {
  position: relative;
}

.quality-assurance-sec .quality-shape {
  position: absolute;
  right: 10px;
  top: 0;
}

.quality-assurance-sec .quality-shape video {
  width: 135px;
}


.quality-assurance-sec .abt-title h2 {
  margin-bottom: 15px;
}

.kulfiImage {
    position: relative;
    overflow: hidden;
    z-index: 8;
    height: 80%;
    border: 1px solid #cfcfcf;

}

.tiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.tile {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
}

.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.5s ease-out;
}

#kulfiThumbs {
    margin-top: 10px;
    display:flex;
flex-wrap:wrap;
    justify-content:space-between;
}

#kulfiThumbs img {
    width: 105px;
    cursor: pointer;
    /*margin-right: 10px;*/
    border: 1px solid #cfcfcf;
}


/* .kulfiImage::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 700px;
    width: 300px;
    background: linear-gradient(to left, pink, skyblue);
    animation: move 1.5s infinite;
}

@keyframes move {
  100% {
    transform: translate(-50%, -50%) rotate(225deg);
}
} */


#amazon {
position: fixed;
    right: -3px;
    bottom: 58%;
    cursor: pointer;
    opacity: 1;
    z-index: 9999;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

#amazon img{
width: 64px;
}



@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0, 0, 0);
}
40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}
70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
}
90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0,-4px,0);
    transform: translate3d(0, -4px, 0);
}
}


.abt-title p span,
.about-area .sub-title p span {
  font-weight: 700;
  color: #000;

}


#login_btn {
    position: fixed;
    right: 7px;
    bottom: 51%;
    cursor: pointer;
    opacity: 1;
    z-index: 9999;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

#login_btn img {
  width: 44px !important;
}


.right1 {
  color: #fff;
}

.footer-wrapper .widget_title:after {
      background-image: -webkit-linear-gradient(left, var(--theme-color), transparent);
    background-image: linear-gradient(to right, var(--theme-color), transparent);
}


@media (max-width: 620px) {
    .th-menu-toggle {
        background-color: transparent;
        color: #ff2f2c;
    }
}
.th-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 18px;
    border: none;
    display: inline-block;
    border-radius: 50%;
}

.thumbslider .swiper-button-next,
.thumbslider .swiper-button-prev {
 background: #ffffffc7;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }


 .thumbslider .swiper-button-next:after, .thumbslider .swiper-button-prev:after {
  font-size: 20px;
  color: #000;
 }


 .mobile-logo img {
  width: 150px;
 }


 /* .carousel-control-prev,
 .carousel-control-next {
  visibility: hidden;
 } */