@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-Thin.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-Thin.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-Light.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-Regular.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-Medium.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-SemiBold.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WallopTRIAL";
  src: url("../fonts/WallopTRIAL-Bold.woff2") format("woff2"),
    url("../fonts/WallopTRIAL-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0c0d10;
  --white: #ffffff;
}

html {
  font-size: 10px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: "WallopTRIAL";
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--black);
  font-size: 2.5rem;
}
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
p,
div {
  letter-spacing: 0.1rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "WallopTRIAL";
  width: 100%;
}
a,
img {
  transition: all 0.4s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h1 {
  font-size: 9rem;
  line-height: 1;
  letter-spacing: -0.18rem;
}
h2,
.h2 {
  font-size: 8rem;
  line-height: 1.1;
  letter-spacing: -0.1rem;
}
h3,
.h3 {
  font-size: 6rem;
  line-height: 1.1;
  letter-spacing: -0.03rem;
}
h4,
.h4 {
  font-size: 4rem;
  line-height: 1.3;
}
h5,
.h5 {
  font-size: 3.5rem;
  line-height: 1.3;
  letter-spacing: -0.02rem;
}
h6 {
  font-size: 3rem;
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.5s ease;
}
button {
  outline: none;
  transition: all 0.5s ease;
  cursor: pointer;
}
img {
  max-width: 100%;
  max-height: 100%;
}
form,
input {
  width: 100%;
  font-family: inherit;
  font-size: inherit;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-47 {
  width: 47%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}

.full-box,
.w-100,
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.h-full,
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.relative {
  position: relative;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-5 {
  z-index: 5;
}
.align-end {
  align-items: flex-end;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}

.space-between,
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.box-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.grid {
  display: grid;
}
.grid-col-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-gap-2 {
  grid-gap: 2rem 2rem;
}
.grid-gap-3 {
  grid-gap: 3rem 3rem;
}
.grid-gap-4 {
  grid-gap: 4rem 4rem;
}
.grid-gap-5 {
  grid-gap: 5rem 5rem;
}
.grid-gap-6 {
  grid-gap: 6rem 6rem;
}
.grid-gap-7 {
  grid-gap: 7rem 7rem;
}
.center,
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}

strong {
  font-weight: 600;
  font-size: inherit;
  color: inherit;
}

.max-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.com-padding {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.bottom-padding {
  padding-bottom: 16rem;
}

.top-padding {
  padding-top: 16rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mt-8 {
  margin-top: 8rem;
}
.mt-9 {
  margin-top: 9rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mt-12 {
  margin-top: 12rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.mb-10 {
  margin-bottom: 10rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-white,
.text-white * {
  color: var(--white);
}
.text-black,
.text-black * {
  color: #0c0d10;
}
.text-dark,
.text-dark * {
  color: var(--dark);
}
.text-gray,
.text-gray * {
  color: var(--gray);
}
.text-primary,
.text-primary * {
  color: var(--primary);
}
.font-200,
.font-thin {
  font-weight: 200;
}
.font-300,
.font-light {
  font-weight: 300;
}
.font-400,
.font-normal {
  font-weight: 400;
}
.font-500,
.font-medium {
  font-weight: 500;
}
.font-600,
.font-semibold {
  font-weight: 600;
}
.font-700,
.font-bold {
  font-weight: 700;
}
.transition,
.transition * {
  transition: all 0.5s ease;
}
.rounded-1 {
  border-radius: 1rem;
}
.rounded-2 {
  border-radius: 2rem;
}
.rounded-3 {
  border-radius: 3rem;
}
.rounded-4 {
  border-radius: 4rem;
}
.rounded-5 {
  border-radius: 5rem;
}
.rounded-6 {
  border-radius: 6rem;
}
.rounded-full {
  border-radius: 50%;
  overflow: hidden;
}
.list-none,
.list-none ul,
.list-none ol {
  list-style: none;
}
.normal-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.bottom-top-overlay,
.bottom-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}

.top-bottom-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}
.left-right-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}
.right-left-overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}
.gap-5 {
  gap: 5rem;
}
.gap-6 {
  gap: 6rem;
}
.gap-7 {
  gap: 7rem;
}
.gap-8 {
  gap: 8rem;
}

.container {
  width: 87%;
  max-width: 1630px;
  padding: 0 15px;
  margin: 0 auto;
}
.full-width-slider {
  width: 95%;
  max-width: 1800px;
  margin-left: auto;
  padding-left: 15px;
}
.btn,
.btn * {
  transition: all 0.4s ease;
}
.btn {
  border: 0;
  border-radius: 6rem;
  height: 7.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1rem 3.5rem;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: -0.2px;
}
.btn-primary {
  background-color: #fba38d;
}
.btn-primary:hover {
  background-color: #f5633e;
}
.btn .arrow {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3rem;
}
.btn .arrow.chocolate {
  background-color: #7d4334;
}
.btn .arrow img {
  max-height: 2rem;
}
.btn-primary .arrow {
  background-color: #101014;
}
.btn:hover .arrow {
  transform: rotate(42deg);
}
.btn-white {
  background-color: var(--white);
  color: black;
}
.btn-white:hover {
  background-color: #fffaf0;
}
.btn-white .arrow {
  background-color: #ffe5cc;
}
.btn-large .arrow {
  margin-left: 5rem;
}
.btn-black {
  background-color: #101014;
  color: var(--white);
}
.btn-black:hover {
  background-color: #222222;
}
.btn-black .arrow {
  background-color: #fff6ee;
}
.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--black);
}
.section-heading {
  position: relative;
}
.section-heading h2 span,
.section-heading .h2 span {
  color: #43a5df;
}
/* ------------------------------------ */
/* ------------- HEADER START --------- */
/* ------------------------------------ */
header.header {
  background-color: #b5d5fe;
  position: relative;
  z-index: 20;
  transition: all 0.5s ease;
}
header .header-inner {
  width: 95%;
  max-width: 1920px;
  padding: 15px 15px;
  margin: 0 auto;
}
.header-logo img {
  height: 6rem;
}
header .mobile-drawer {
  width: 82%;
}
.header-menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.header-menu a {
  color: var(--black);
  font-size: 2.2rem;
  padding: 1rem 1.5rem;
}
.header-menu a:hover,
.header-menu .current-menu-item a,
.header .mobile-number:hover {
  color: #2475dd;
}
.header .mobile-number {
  margin-right: 2rem;
  font-size: 2rem;
}
.header-btn {
  background-color: #2475dd;
  color: var(--white);
  border: 0;
  border-radius: 5rem;
  font-size: 2rem;
  padding: 1.5rem 3rem;
  line-height: 1;
}
.header-btn:hover {
  background-color: #0c62d1;
}
#header.stick-header {
  position: fixed !important;
  animation: smoothScroll 1s forwards;
  left: 0;
  top: 0;
  transform: translateX(0);
  z-index: 50;
  width: 100%;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
body.stick-header .header-space {
  height: 12rem;
  display: block;
}
/* ------------------------------------ */
/* ------------- FOOTER START --------- */
/* ------------------------------------ */
footer.footer {
  background-color: #fff4eb;
  z-index: 10;
}
.footer-menu-col {
  width: 25%;
  padding: 0 3rem 0 5rem;
  border-left: 1px solid #888888;
}
.footer-menu-col:last-of-type {
  border-right: 1px solid #888888;
}
.footer-menu-box {
  margin-top: 5rem;
}
.footer-menu-col .footer-menu-box:first-of-type {
  margin-top: 0;
}
.footer-menu-box ul {
  list-style: none;
  padding-top: 2rem;
}
.footer-menu-box h6 {
  font-weight: 600;
  color: #262428;
}
.footer h6,
footer p {
  letter-spacing: -0.01rem;
}
.footer-menu-box li a {
  padding: 0.5rem 0;
  display: inline-block;
  color: #525252;
}
.footer li a:hover,
.footer .current-menu-item a {
  color: #74344c;
}

.footer-social-box {
  padding: 4rem 0;
  border-top: 1px solid #888888;
  border-bottom: 1px solid #888888;
}
.footer-social-links {
  gap: 2rem;
}
.footer-social-links .hp-cont-icon {
  background-color: #f7a691;
}
.footer-social-links .hp-cont-icon:hover {
  background-color: #74344c;
}

.footer-city-box ul li {
  margin: 1rem 0;
}
.footer-city-box ul li a,
.footer-city-box ul li span {
  color: #525252;
  padding: 0 2.4rem;
  border-left: 1px solid #888888;
}
.footer-bottom {
  padding: 5rem 0;
}
.footer-bottom p {
  color: #5b5b5b;
}
.footer-logo img {
  max-height: 8.1rem;
}
.floating-whatsapp {
  position: fixed;
  bottom: 60px;
  right: 20px;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 50;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-color: #fba38d;
  padding: 1.2rem;
}
.floating-whatsapp:hover img {
  transform: scale(1.1);
}
/* ------------------------------------ */
/* ------------- HOMEPAGE START --------- */
/* ------------------------------------ */
.hp-banner-section,
.ope-banner-section {
  background-color: #fff6ee;
  background: url("../img/hp-banner-bg.webp") repeat center;
  background-size: cover;
}
.hp-banner-section .max-1920 {
  padding-top: 9rem;
  padding-bottom: 18rem;
}
.hp-banner-section h1 {
/*   letter-spacing: -0.5rem; */
  color: #15191f;
  line-height: 1.2;
  text-align: center;
}
.hp-banner-section h1 span {
    color: #15191f;
}
.hp-banner-section h1 .line {
  display: block;
}
/* .hp-banner-section .line-1 {
  padding-left: 37%;
}
.hp-banner-section .line-2 {
  padding-left: 44%;
} */
.hp-banner-section .banner-image {
  width: 90%;
  max-width: 120rem;
}
.hp-banner-section .content-box {
  position: absolute;
  left: 0;
  top: 35rem;
  width: 50%;
  max-width: 58rem;
}
.hp-banner-section .description {
  font-size: 3rem;
  color: #585656;
  line-height: 1.35;
}
.hp-banner-section .content-box .line-arrow {
  width: 28rem;
  height: 22rem;
  position: absolute;
  right: 5rem;
  bottom: -13rem;
}
.hp-floating-banner-icon {
  position: absolute;
}
.hp-floating-banner-icon.banner-icon-1 {
  top: -4rem;
  right: 25%;
  width: 15.2rem;
  height: 15.2rem;
}
.hp-floating-banner-icon.banner-icon-2 {
  top: 18rem;
  right: 6%;
  width: 15rem;
  height: 10rem;
}
.hp-floating-banner-icon.banner-icon-3 {
  top: 20rem;
  left: 0;
  width: 14.2rem;
  height: 10rem;
}
.hp-floating-banner-icon.banner-icon-4 {
  bottom: 10rem;
  left: 2%;
  width: 13rem;
  height: 13rem;
}
.scroll-down-circle {
  width: 15.2rem;
  height: 15.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fba38d;
}
.scroll-down-arrow {
  max-height: 4rem;
  animation: scroll-down 1.5s infinite;
}
@keyframes scroll-down {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 1.5rem;
  }
  100% {
    margin-top: 0;
  }
}
.hp-banner-section .scroll-down-circle {
  position: absolute;
  right: 0;
  bottom: 20rem;
}
.hp-banner-section .btn-primary {
  background-color: #ff7d5c;
}
.hp-banner-section .btn-primary:hover {
  background-color: #fba38d;
}
.hp-intro-section {
  background-color: #fde4d1;
  margin-top: -8rem;
}
.hp-intro-counter {
  width: 80%;
}
.hp-intro-counter .title {
  font-size: 7.6rem;
  font-weight: 600;
  color: #ff7143;
  line-height: 1;
}
.hp-intro-counter .subtitle {
  font-size: 2.8rem;
  margin-top: 1rem;
}
.hp-cat-section {
  background-color: #fff4eb;
}
.section-top-wave::before,
.section-bottom-wave::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10rem;
  left: 0;
  background: url("../img/hp-toys-section-wave-top.webp") repeat center;
  background-size: contain;
}
.section-top-wave::before {
  top: -8rem;
}
.section-bottom-wave::after {
  bottom: -8rem;
}
.hp-cat-section::after,
.events-listing-section::after {
  background: url("../img/hp-toys-section-wave-bottom.webp") repeat center;
  background-size: contain;
}

.hp-cat-section .vector-1 {
  width: 26rem;
  height: 19rem;
  left: 0;
  top: -10rem;
}
.hp-cat-section .vector-2 {
  width: 10rem;
  height: 10rem;
  right: 5rem;
  top: -8rem;
}
.hp-cat-listing-item {
  padding: 4rem 4rem;
  border-radius: 3rem;
  overflow: hidden;
  background-color: #ddf0b7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hp-cat-listing-item .img-box {
  padding-top: 3rem;
  height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-cat-listing-item .img-box img {
  max-height: 38rem;
  transition: all 0.4s ease;
}
.hp-cat-listing-item:hover .img-box img {
  transform: scale(1.1);
}
.hp-cat-listing-item h5 {
  padding-right: 2rem;
}
.hp-cat-listing-item .arrow {
  width: 2.3rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.4s ease;
}
.hp-cat-listing-item:hover .arrow {
  transform: rotate(43deg);
}
.hp-cat-listing-top .item-2 {
  background-color: #ffe3f8;
}
.hp-cat-listing-top .item-3 {
  background-color: #ffe7c1;
}
.hp-cat-listing-bottom .item-1 {
  background-color: #ffe3f8;
}
.hp-cat-listing-bottom .item-2 {
  background-color: #ffe7c1;
}
.hp-playroom-setup .text-box {
  padding: 4rem 10rem;
}
.hp-whyus-section::after {
  background: url("../img/hp-why-us-wave-bottom.webp") repeat center;
  background-size: contain;
}
.hp-whyus-section .inner::before,
.hp-whyus-section .inner::after,
.hp-whyus-section .section-heading::before {
  content: "";
  position: absolute;
}
.hp-whyus-section .inner::before {
  left: 0;
  top: -35rem;
  width: 68rem;
  height: 68rem;
  background: url("../img/hp-why-us-line-top.webp") no-repeat center;
  background-size: contain;
}
.hp-whyus-section .inner::after {
  right: 0;
  bottom: -25rem;
  width: 53rem;
  height: 51rem;
  background: url("../img/hp-why-us-line-bottom.webp") no-repeat center;
  background-size: contain;
  z-index: 2;
}
.hp-whyus-section .section-heading .vector {
  width: 20rem;
  height: 15rem;
  left: -20rem;
  top: 7rem;
}
.hp-whyus-usp li {
  margin-top: 10rem;
}
.hp-whyus-usp li:first-child {
  margin-top: 0;
}
.hp-whyus-usp h5 {
  margin: 2rem 0 1rem 0;
}
.video-play-btn.hide {
  opacity: 0;
}
.play-btn {
  cursor: pointer;
}
.play-btn-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13rem;
  height: 13rem;
}
.hp-quality-section::before {
  background: url("../img/hp-quality-top-wave.webp") repeat center;
  background-size: contain;
}
.hp-quality-section .vector {
  width: 21rem;
  height: 17rem;
  right: 0;
  top: 2rem;
}
.hp-quality-cards {
  padding: 6rem 0;
}
.flip-card {
  background-color: transparent;
  width: 52rem;
  height: 53rem;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  cursor: pointer;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  border-radius: 2rem;
  color: black;
}
.flip-card-front img {
  border-radius: 2rem;
}
/* Style the back side */
.flip-card-back {
  background-color: #fedea3;
  color: white;
  transform: rotateY(180deg);
  border-radius: 2rem;
  padding: 3rem 3rem;
}
.hp-quality-card .quote-text {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-quality-card:nth-of-type(1) .flip-card-back {
  background-color: #cfeff7;
}
.hp-quality-card:nth-of-type(2) .flip-card-back {
  background-color: #ffe6cd;
}
.hp-quality-card:nth-of-type(3) .flip-card-back {
  background-color: #fedea3;
}
.hp-quality-card:nth-of-type(4) .flip-card-back {
  background-color: #d9f3d8;
}
.hp-quality-card:nth-of-type(5) .flip-card-back {
  background-color: #d5e6eb;
}
.hp-quality-card:nth-of-type(6) .flip-card-back {
  background-color: #f0e6da;
}
.hp-quality-card .flip-card-front::before,
.hp-quality-card .flip-card-front::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.hp-quality-card:nth-of-type(1) .flip-card-front::after,
.hp-quality-card:nth-of-type(2) .flip-card-front::after,
.hp-quality-card:nth-of-type(5) .flip-card-front::before,
.hp-quality-card:nth-of-type(5) .flip-card-front::after,
.hp-quality-card:nth-of-type(6) .flip-card-front::before,
.hp-quality-card:nth-of-type(6) .flip-card-front::after {
  background-color: #ffe6cd;
  border: 1rem solid #ffffff;
  left: -10rem;
  top: 50%;
  transform: translateY(-50%);
}
.hp-quality-card:nth-of-type(1) .flip-card-front::after {
  left: unset;
  right: -2rem;
}
.hp-quality-card:nth-of-type(2) .flip-card-front::after {
  background-color: #fedea3;
  left: unset;
  right: -2rem;
}
.hp-quality-card:nth-of-type(4) .flip-card-front::before {
  background-color: #cfeff7;
  border: 1rem solid #ffffff;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
}
.hp-quality-card:nth-of-type(5) .flip-card-front::before,
.hp-quality-card:nth-of-type(6) .flip-card-front::before {
  left: -2rem;
}
.hp-quality-card:nth-of-type(5) .flip-card-front::before {
  background-color: #d9f3d8;
}
.hp-quality-card:nth-of-type(5) .flip-card-front::after,
.hp-quality-card:nth-of-type(6) .flip-card-front::after {
  left: 50%;
  top: -10rem;
  transform: translateX(-50%);
}
.hp-quality-card:nth-of-type(5) .flip-card-front::after {
  background-color: #d5e6eb;
}
.hp-quality-card:nth-of-type(6) .flip-card-front::before {
  background-color: #d5e6eb;
}
.hp-quality-card:nth-of-type(6) .flip-card-front::after {
  background-color: #fedea3;
  top: -2rem;
}
.hp-quality-card .quote-icon {
  max-height: 5.7rem;
  object-fit: contain;
}
.hp-seo-section {
  background: linear-gradient(to top, #fdf5ff, #fefaff, #ffffff);
}
.hp-seo-section::after {
  background: url("../img/hp-seo-bottom-wave.png") repeat center;
  background-size: contain;
}

.hp-seo-section .logo {
  max-height: 8rem;
}
.hp-seo-section .container {
  padding-bottom: 10rem;
}
.hp-seo-section .icon-1 {
  width: 12rem;
  height: 12rem;
  left: 15%;
  top: -10rem;
}
.hp-seo-section .icon-2 {
  width: 24rem;
  height: 35rem;
  right: 0;
  top: -11rem;
}
.hp-seo-section .icon-3 {
  width: 26rem;
  height: 40rem;
  left: 0;
  bottom: -5rem;
}
.hp-seo-section .icon-4 {
  width: 42rem;
  height: 10rem;
  right: 7rem;
  bottom: -6rem;
}
.hp-about-section .content-wrapper {
  background-color: #fff8eb;
  padding: 18rem 6rem;
  border-radius: 3rem;
}
.hp-about-section h2 span {
  background-color: #ffdbd2;
  border-radius: 10rem;
  padding: 0 2rem;
}
.hp-about-usp li h4 {
  color: #6cb1da;
}
.hp-about-usp li:nth-child(2) h4 {
  color: #83c463;
}
.hp-about-usp p {
  font-size: 2.8rem;
  color: #262428;
}
.hp-about-section .vector-1 {
  left: 6rem;
  top: 6rem;
  width: 13rem;
}

.hp-about-section .vector-2 {
  width: 10rem;
  top: 6rem;
  right: 20rem;
}
.hp-about-section .vector-3 {
  max-width: 40rem;
  bottom: 8rem;
  left: 6rem;
}

.hp-about-section .vector-4 {
  width: 10rem;
  bottom: 8rem;
  right: 20rem;
}

.hp-certified-section {
  background-color: #ffe5cc;
}
.hp-certified-section::before,
.ps-about-section::before {
  background: url("../img/hp-certificate-top-wave.png") repeat center;
  background-size: contain;
}
.hp-certified-section::after {
  background: url("../img/hp-certificate-bottom-wave.png") repeat center;
  background-size: contain;
}
.hp-certified-section .inner {
  padding-top: 12rem;
}
.hp-certified-section .section-heading {
  width: 40%;
}
.hp-certified-section h2 {
  letter-spacing: -0.4rem;
}
.hp-certified-slider-box {
  width: 55%;
}
.hp-certified-slider .slick-list {
  margin: 0 -3rem;
}
.hp-certified-slider .slick-slide {
  margin: 0 3rem;
}
.circle-slider-arrow {
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #637b82;
  cursor: pointer;
  transition: all 0.4s ease;
}
.circle-slider-arrow.white {
  border-color: var(--white);
}
.circle-slider-arrow img {
  height: 2rem;
  transition: all 0.4s ease;
}
.slider-arrows .slick-arrow:nth-of-type(2) {
  margin-left: 2rem;
}
.hp-certified-section .slider-arrows {
  position: absolute;
  top: -3rem;
  right: 0;
}
.circle-slider-arrow:hover {
  background-color: #637b82;
}
.circle-slider-arrow:hover img {
  filter: invert(1) brightness(500);
}
.circle-slider-arrow.white:hover {
  background-color: #e7795d;
  border-color: #e7795d;
}
.circle-slider-arrow.white:hover img {
  filter: none;
}
.hp-certified-section .icon-1 {
  width: 12.5rem;
  height: 12.5rem;
  left: 34%;
  top: -6rem;
}
.hp-certified-section .icon-2 {
  width: 13.2rem;
  height: 13.2rem;
  right: 28%;
  top: -6rem;
}
.hp-certified-section .icon-3 {
  width: 13rem;
  height: 13rem;
  left: 27%;
  bottom: 5rem;
}
.circle-social-icon {
  width: 7.3rem;
  height: 7.3rem;
  border: 1px solid;
  transition: all 0.4s ease;
}
.social-icon-primary {
  border: 1px solid #fba38d;
}
.social-icon-primary:hover {
  background-color: #fba38d;
}
.social-icon-primary:hover img,
.hp-cont-social-links a:hover img {
  filter: invert(1) brightness(100) grayscale(300);
}
.circle-social-icon img {
  max-height: 3rem;
  transition: all 0.2s ease;
}
.insta-feeds-section .circle-social-icon {
  margin-left: 2rem;
}

.hp-faq-item {
  background-color: #fcf3e2;
  border-radius: 2rem;
  overflow: hidden;
  margin-top: 2rem;
}

.hp-faq-head {
  padding: 3rem 2.5rem;
}
.hp-faq-body {
  padding: 2rem 8rem 4rem 3rem;
  font-weight: 400;
  font-size: 2rem;
}
.hp-faq-head h6 {
  font-size: 2.8rem;
}
.accordion-head {
  cursor: pointer;
}
.accordion-body {
  display: none;
}
.accordion-head,
.accordion-body {
  position: relative;
  padding-right: 9rem;
}
.accordion-toggle-icon {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7782a;
}
.accordion-toggle-icon span {
  display: inline-block;
  width: 1.9rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #c7782a;
  transition: all 0.4s ease;
}
.accordion-toggle-icon span:nth-of-type(2) {
  width: 1px;
  height: 1.9rem;
}
.accordion-head.active .accordion-toggle-icon span:nth-of-type(2) {
  opacity: 0;
}
.hp-contact-box {
  background-color: #fdf6ff;
  padding: 15rem 5rem;
  border-radius: 3rem;
  overflow: hidden;
  max-width: 57rem;
  height: max-content;
}
.hp-contact-box::before,
.hp-contact-box::after {
  content: "";
  position: absolute;
  height: 13rem;
}
.hp-contact-box::before {
  top: 0;
  left: 0;
  width: 60%;
  background: url("../img/hp-contact-vector-top.webp") no-repeat center;
  background-size: contain;
}
.hp-contact-box::after {
  bottom: 0;
  right: 0;
  width: 47%;
  background: url("../img/hp-contact-vector-bottom.webp") no-repeat center;
  background-size: contain;
}
.hp-cont-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-color: #f8bad1;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-contact-list li {
  padding: 2rem 0;
  border-bottom: 1px solid #bfbfbf;
}
.hp-contact-list li p {
  padding-left: 2rem;
  color: #5b5b5b;
  transition: all 0.3s ease;
}
.hp-contact-list a:hover p {
  color: #74344c;
}
.hp-cont-icon img {
  max-height: 100%;
}
.hp-cont-social-links {
  gap: 2rem;
}

.hp-cont-social-links a:hover {
  background-color: #74344c;
}
.slider-box {
  visibility: hidden;
}
.slider-box.slick-initialized {
  visibility: visible;
}

/* ----------------------------------------------------- */
/* ------------- OUTDOOR PLAY EQUIPMENTS START --------- */
/* ----------------------------------------------------- */
.ope-banner-section .h2 img {
  max-height: 8.2rem;
  display: inline-block;
  margin: 0 5px;
}
.ope-banner-section .circle-slider-arrow,
.ope-related-toys-wrapper .circle-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ope-banner-section .ope-banner-prev {
  left: 5rem;
}
.ope-banner-section .ope-banner-next {
  right: 5rem;
}
.ope-banner-play {
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  cursor: pointer;
}
.ope-play-btn {
  width: 17rem;
  margin-right: 1rem;
}
.ope-banner-video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ope-banner-popup-inner {
  position: relative;
  background: #fff;
  border: 3px solid #fff;
  width: max-content;
  max-width: 1000px;
  height: auto;
  max-height: 80vh;
  /* box-shadow: 0 0 25px rgba(255, 255, 255, 0.3); */
  border-radius: 8px;
  animation: popupFadeIn 0.3s ease;
  margin: 0 auto;
}
.catalog-popup-form .ope-banner-popup-inner {
  max-width: 850px;
}

.ope-banner-popup-inner video,
.ope-banner-popup-inner img,
.ope-banner-popup-inner iframe {
  max-width: 100%;
  height: auto;
  max-height: calc(80vh - 6px);
  display: block;
  border-radius: 6px;
  object-fit: contain;
}
.catalog-popup-form .img-box img {
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.ope-banner-popup-close {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  z-index: 10;
  transition: 0.2s;
  transition: all 0.3s ease;
}

.ope-banner-popup-close:hover {
  background-color: #e7795d;
  color: var(--white);
}
.ope-slides-listing-section .section-heading img {
  width: 10rem;
}
.ope-slides-listing-section .flex-box.inner .bottom-vector {
  width: 39rem;
  height: 42rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.ope-slides-listing-section .main-content {
  width: 68%;
}
.ope-slides-listing-section .sidebar {
  width: 26%;
}
.ope-slides-listing-section .sticky {
  top: 20rem;
  padding-bottom: 45rem;
}
.ope-slides-listing-section .description,
.ope-slides-listing-section .description li,
.ope-slides-listing-section .description p {
  color: #585656;
}
.ope-slides-listing-section .description h2,
.ope-slides-listing-section .description h3,
.ope-slides-listing-section .description h4,
.ope-slides-listing-section .description h5,
.ope-slides-listing-section .description h6 {
  color: #15191f;
  margin: 3rem 0;
}
.ope-slides-listing-section .description ul {
  padding-left: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.ope-slides-listing-section .description ul li {
  width: 45%;
  margin: 5px 0;
}
.ope-slides-listing-section .description p,
.ope-slides-listing-section .description div {
  margin-top: 3rem;
}
.ope-slides-listing li {
  margin-top: 4rem;
}
.ope-slides-listing .img-box {
  width: 100%;
  /* height: 27rem; */
  border: 1rem solid #ffe6cd;
  border-radius: 3rem;
  aspect-ratio: 1 / 1;
}
.ope-slides-listing .img-box img{
	width:100%;
}
.ope-slides-listing a:hover .img-box img {
  transform: scale(1.1);
}
.ope-slides-listing h6 {
  font-size: 2.8rem;
  letter-spacing: -0.01rem;
  transition: all 0.4s ease;
}
.ope-slides-listing a:hover h6 {
  color: #e7795d;
}
.submit-box {
  position: relative;
}
.ope-sidebar-form .form-emoji {
  width: 80%;
  left: 10%;
  top: -12rem;
}
.ope-sidebar-form .wrapper {
  background-color: #fff4eb;
  padding: 7rem 5rem 5rem 5rem;
  border-radius: 3rem;
}
.ope-sidebar-form .input-box input,
.ope-sidebar-form .input-box textarea,
.ope-sidebar-form .input-box select {
  border: 1px solid #b3aba5;
  border-radius: 1rem;
  padding: 1.7rem 2rem;
  outline: 0;
  width: 100%;
  background-color: transparent;
  font-size: 2rem;
}
.ope-sidebar-form .input-box {
  margin-bottom: 1.5rem;
}
.ope-sidebar-form .submit-box,
.com-submit-box, .qa-contact-form .submit-box {
  margin-top: 4rem;
  background-color: #fba38d;
  border-radius: 6rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
div#formMessage, div#formMessageSimple, div#formMessage2 {
    margin-top: 2rem;
}
.ope-sidebar-form .submit-box input,
.com-submit-box input, .ope-sidebar-form .submit-box button, .qa-contact-form .submit-box button{
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 100%;
  height: 7rem;
  color: black;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: left;
  padding-left: 4rem;
  cursor: pointer;
}
.ope-sidebar-form .submit-box::after,
.com-submit-box::after, .qa-contact-form .submit-box::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: url("../img/submit-btn-arrow.png") no-repeat center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.ope-sidebar-form .submit-box:hover,
.com-submit-box:hover, .qa-contact-form .submit-box:hover {
  background-color: #f18a70;
}
.ope-sidebar-form .submit-box:hover::after,
.com-submit-box:hover::after, .qa-contact-form .submit-box:hover::after {
  transform: translateY(-50%) rotate(45deg);
}
.ope-gallery-slider .slick-list {
  padding-right: 10%;
}
.ope-gallery-slider .slick-slide {
  margin-right: 4rem;
}
.ope-gallery-section .vector-2 {
  top: -3rem;
}
.ope-testimonial-section .full-width-slider {
  margin-top: 15rem;
}
.ope-testimonial-section .section-heading .vector {
  left: -6rem;
  top: unset;
  bottom: -15rem;
}
.ope-testimonial-section .section-heading .vector-left {
  width: 12rem;
  height: 12rem;
  top: 0;
  left: -13rem;
}
.ope-testimonial-section .section-heading .vector-right {
  width: 12rem;
  height: 12rem;
  top: 5rem;
  right: -13rem;
  left: unset;
}
.same-height-slide .slick-track {
  display: flex;
}
.same-height-slide .slick-slide {
  height: inherit;
}
.same-height-slide .slick-slide > div {
  height: 100%;
}
.ope-testimonial-slider .slick-list {
  padding-right: 38%;
}
.ope-testimonial-slider .slick-slide {
  margin-right: 4rem;
}
.ope-testimonial-slide {
  background-color: #fedea3;
  padding: 8rem 7rem;
  border-radius: 2.5rem;
}
.ope-testimonial-slider .slick-slide:nth-of-type(odd) .ope-testimonial-slide {
  background-color: #d9f3d8;
}
.ope-testimonial-slide .avatar {
  width: 7.7rem;
  height: 7.7rem;
  margin-right: 2rem;
}
.ope-testimonial-slide .quote-icon {
  height: 4.8rem;
}
.ope-testimonial-slide .quote-text {
  font-size: 3.5rem;
  margin: 4rem 0;
}
.ope-testimonial-slide .meta .subtitle {
  font-size: 2rem;
  font-style: italic;
}
.bottom-vector-box {
  height: 10rem;
}
.ope-testimonial-section .bottom-vector {
  width: 10rem;
  height: 10rem;
  right: 18%;
  bottom: -10rem;
  display: inline-block;
}
.ope-related-toys-section .section-heading .vector {
  width: 8.5rem;
}
.ope-related-toys-section .w-max .vector {
  width: 15rem;
  margin-right: 2rem;
}
.ope-related-toys-section .w-max .avatar {
  max-height: 8.6rem;
}
.ope-related-toys-slider .slick-list {
  margin: 0 -1.5rem;
}
.ope-related-toys-slider .slick-slide {
  margin: 0 1.5rem;
}
.ope-related-toys-slide {
  background-color: #fff4eb;
  border-radius: 3rem;
  padding: 5rem 4rem;
  aspect-ratio: 1 / 1.05;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.ope-related-toys-slide .arrow {
  width: 2.3rem;
  object-fit: contain;
  display: inline-block;
  margin-top: 1.5rem;
}
.ope-related-toys-slide:hover .arrow {
  transform: rotate(45deg);
}
.ope-related-toys-slide:hover .img-box img {
  transform: scale(1.05);
}
.ope-related-toys-slide h5 {
  padding-right: 4rem;
}
.ope-related-toys-wrapper .circle-slider-arrow {
  border-color: #ff8c6c;
  background-color: #ff8c6c;
  width: 12rem;
  height: 12rem;
}
.ope-related-toys-wrapper .ope-related-prev {
  left: -6rem;
}
.ope-related-toys-wrapper .ope-related-next {
  right: -6rem;
}

/* ---------------------------------------------- */
/* ---------- PRODUCT DETAIL PAGE START --------- */
/* ---------------------------------------------- */
.detail-banner-section {
  padding: 13rem 0 15rem 0;
  background-color: #fff6ee;
}
.detail-banner-section::after,
.listing-banner-section::after,
.com-page-banner::after {
  background: url("../img/detail-banner-wave.png") repeat center;
  background-size: contain;
  height: 9rem;
}
.detail-product-images {
  height: max-content;
}
.detail-product-images .img-box {
  border-radius: 1.5rem;
}
.product-detail-box {
  height: inherit;
}
.product-detail-box h1 span{
	white-space: nowrap;
}
.product-detail-box h1 span,
.detail-intro-section .sidebar h5 span,
.h2 span {
  color: #43a5df;
}
.detail-spec-table {
  border-bottom: 1px solid #c5c5c5;
}
.detail-spec-table .heading {
  background-color: #f7ddb3;
  font-size: 2.8rem;
  padding: 1.5rem 3rem;
  border: 1px solid #f7ddb3;
}
.detail-spec-table .col {
  padding: 1.8rem 3rem;
  border-bottom: 2px dashed #cfcfcf;
  height: inherit;
  display: flex;
  align-items: center;
}
.detail-spec-table .col:first-of-type {
  padding-right: 2rem;
  width: 60%;
}
.detail-spec-table .col:nth-of-type(2) {
  color: #4e4e4e;
  font-weight: 400;
  padding-left: 0;
  width: 40%;
}
.detail-spec-table .row {
  border-left: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
}
.detail-spec-table .row:last-of-type .col {
  border-bottom: 0;
}
.product-detail-box .btn-box {
  gap: 2rem;
}
.detail-banner-usp {
  padding: 5rem 7rem;
  background-color: #f0e6da;
  row-gap: 4rem;
}
.detail-banner-usp li {
  padding: 0 3rem 0 5rem;
  border-left: 1px solid #989898;
}
.detail-banner-usp li:nth-child(3n) {
  border-right: 1px solid #989898;
}

.detail-banner-usp .icon {
  width: 7rem;
}
.detail-banner-usp .icon img {
  max-height: 6.5rem;
}
.detail-banner-usp h6 {
  padding-left: 3rem;
}
.detail-intro-section .section-heading img {
  transform: translateY(-8rem);
}
.detail-intro-section .main-content {
  width: 65%;
}
.detail-intro-section .sidebar {
  width: 29%;
}
.detail-intro-section .sidebar {
  background-color: #fff4eb;
  height: max-content;
  padding: 5rem 4rem;
}
.detail-intro-section .sidebar video {
  height: 57rem;
}
.detail-intro-section .sidebar::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 19rem;
  width: 60%;
  background: url("../img/detail-intro-sidebar-vector.png") no-repeat center;
  background-size: contain;
}
.detail-intro-form-box,
.qa-contact-bottom-bar {
  min-height: 33rem;
  padding: 7rem 8rem;
}
.detail-intro-form-box .flex-1 {
  padding-right: 2rem;
}
.detail-intro-form-box .ope-sidebar-form .input-box {
  margin-bottom: 0;
  width: calc(25% - 2rem);
}
.detail-intro-form-box input {
  height: 7rem;
}
.detail-intro-form-box .ope-sidebar-form .submit-box {
  margin-top: 0;
}
.detail-intro-form-box .ope-sidebar-form .submit-box input {
  min-width: 22rem;
}
.detail-intro-form-box .avatar-group {
  max-height: 5rem;
  display: inline-block;
  margin-right: 2rem;
}
.detail-intro-form-box .vector-1 {
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  width: 14rem;
}
.detail-intro-form-box .vector-2 {
  left: 0;
  bottom: -6rem;
  width: 13rem;
}
.related-toys-section {
  background-color: #fff4eb;
  clip-path: ellipse(110% 100% at 50% 100%);
}
.related-toys-section h2 img {
  height: 8rem;
  margin-left: 10px;
  margin-bottom: -1rem;
}
.related-toy-item {
  background-color: white;
  padding: 4rem 3rem;
}
.related-toy-item .img-box {
  padding: 2rem 0;
  height: 30rem;
}
.related-toy-item:hover .img-box img {
  transform: scale(1.05);
}
.related-toy-item h6 {
  padding-right: 3rem;
  font-size: 2.5rem;
}
.related-toy-item .arrow {
  width: 2.3rem;
}
.related-toy-item:hover .arrow {
  transform: rotate(45deg);
}
.detail-body-banner {
  height: 110rem;
  min-height: 500px;
}
.detail-body-banner .btn .arrow {
  background-color: #ff7d5c;
}
/* ---------------------------------------------- */
/* ---------- PRODUCT LISTING PAGE START --------- */
/* ---------------------------------------------- */
.listing-banner-section,
.com-page-banner {
  background-color: #fff6ee;
  padding: 12rem 0 10rem 0;
  position: relative;
}
.listing-banner-usp li {
  padding: 1rem 3rem 1rem 1.5rem;
  border-radius: 10rem;
  background-color: #f0e6da;
}
.listing-banner-usp li h6 {
  flex: 1;
}
.listing-banner-usp .icon {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #fff6ee;
  padding: 2rem;
  margin-right: 2rem;
}
.listing-banner-section .vector-1 {
  top: 3rem;
  left: 0;
  width: 14rem;
}
.listing-banner-section .vector-2 {
  left: 21%;
  bottom: 25%;
  width: 18rem;
}
.listing-banner-section .vector-3 {
  top: 0;
  left: 40%;
  width: 13rem;
}
.product-listing-section .vector-1 {
  left: -10rem;
  top: 0;
  width: 15rem;
}
.product-listing-section .vector-2 {
  left: 60%;
  top: -5rem;
  width: 8.3rem;
}
.product-listing-section .vector-3 {
  right: -12rem;
  top: 0;
  width: 15rem;
}
.product-listing-item h3 {
  letter-spacing: -0.1rem;
}
.product-listing-item .description {
  letter-spacing: -0.01rem;
}
.section-top-clip-path {
  clip-path: ellipse(100% 100% at 50% 100%);
}
.listing-about-section {
  background-color: #ffe3ce;
}
.product-listing-item .btn {
  font-weight: 500;
}
.listing-about-section .description h4,
.listing-about-section .description h5,
.listing-about-section .description h6 {
  font-weight: 600;
}
.listing-about-section h2 span {
  color: #fba38d;
}
.listing-about-section .description p {
  margin-top: 3rem;
}
.listing-about-section.vector-1 {
  width: 8.2rem;
}
.listing-about-section .vector-2 {
  width: 15rem;
}
/* ----------------------------------------- */
/* ---------- CERTIFIED PAGE START --------- */
/* ----------------------------------------- */
.certified-banner-section {
  padding-bottom: 3rem;
}
.certified-banner-section .vector-1 {
  width: 18rem;
  left: 23%;
  top: -15rem;
}
.certified-banner-section .vector-2 {
  width: 8.2rem;
  right: 0;
  bottom: -5rem;
}
.certified-banner-section .vector-3 {
  width: 13rem;
  left: 48%;
  top: -3rem;
}
.certified-banner-section .vector-4 {
  width: 13rem;
  right: -10rem;
  top: -5rem;
}
.certificate-listing-section.product-listing-section .vector-2 {
  left: 48%;
  top: -7rem;
}
.certificate-list-item {
  background-color: #fff6ee;
  border: 1rem solid #ffe6cd;
  border-radius: 3rem;
  padding: 7rem 5rem;
  min-height: 54rem;
}
.certificate-list-item h3 {
  color: #ff7143;
  letter-spacing: -0.2rem;
}
.certificate-list-item p {
  color: #585656;
}
.certificate-list-item .btn {
  width: 100%;
  justify-content: space-between;
}
.certificate-listing .vector-box-1 .vector {
  max-width: 42rem;
}
.certificate-listing .vector-box-2 .vector {
  max-height: 27rem;
}
.com-cta-cards-section {
  background-color: #ffe3ce;
}
.orange-heading h1 span,
.orange-heading h2 span {
  color: #ff7143;
}
.blue-heading h1 span,
.blue-heading h2 span {
  color: #43a5df;
}
.com-cta-cards-section .section-heading .vector-1 {
  width: 10rem;
  margin-right: 5rem;
}
.com-cta-cards-section .section-heading .vector-2 {
  width: 15rem;
}
.com-cta-card:hover .card-bg {
  transform: scale(1.08);
}
.com-cta-card .card-title {
  color: #fff4eb;
  font-size: 4.5rem;
  text-transform: capitalize;
  max-width: calc(100% - 9rem);
}
.com-cta-card .arrow {
  width: 6.6rem;
  height: 6.6rem;
  background-color: #fba38d;
  padding: 1.7rem;
  transition: all 0.4s ease;
}
.com-cta-card:hover .arrow {
  transform: rotate(45deg);
}
.com-cta-card .card-content {
  background: linear-gradient(
    180deg,
    rgba(112, 22, 0, 0) 30.81%,
    #701600 117.12%
  );
  padding: 7rem 5rem;
}

.certificate-item {
  padding: 5rem 4rem;
  border: 0.5rem solid #ffe6cd;
  color: #585858;
}

.certificate-item .icon {
  width: 14rem;
  height: 14rem;
  margin-right: 3rem;
}
.show-more-btn {
  display: inline-block;
  text-decoration: underline;
  color: #ff7143;
}

/* ----------------------------------------- */
/* ---------- CONTACT PAGE START --------- */
/* ----------------------------------------- */
.contact-banner-section {
  background-color: #fff6ee;
  padding-top: 8rem;
  --mask: radial-gradient(50px at 50% calc(100% - 70px), #000 99%, #0000 101%)
      calc(50% - 80px) 0/160px 100%,
    radial-gradient(50px at 50% calc(100% + 30px), #0000 99%, #000 101%) 50%
      calc(100% - 40px) / 160px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.contact-banner-section .section-heading {
  max-width: 40%;
  padding: 13rem 0;
}
.contact-banner-section .img-box {
  max-width: 62rem;
}

.contact-banner-section .vector-1 {
  width: 14rem;
  top: 0;
}
.contact-banner-section .vector-2 {
  width: 8.2rem;
  top: 0;
  right: -5rem;
}
.contact-banner-section .vector-3 {
  max-height: 8.2rem;
  bottom: 0;
  left: 0;
}
.contact-banner-section .vector-4 {
  left: 46%;
  top: 40%;
  width: 13rem;
}
.contact-banner-section .vector-5 {
  width: 13rem;
  right: 0;
  top: 10rem;
}
.contact-main-section .vector-1 {
  width: 22rem;
}
.contact-main-section .vector-2 {
  width: 10rem;
}
.contact-main-section .section-heading h5 {
  margin: 2rem 3rem 0 0;
  font-size: 4rem;
}
.contact-main-section {
  padding-top: 10rem;
}
.contact-usp-list li h6 {
  letter-spacing: -0.08rem;
  flex: 1;
}
.contact-main-section .contact-way img {
  max-width: 3rem;
  max-height: 3rem;
  display: inline-block;
  margin-right: 1rem;
}
.contact-main-section .contact-way {
  color: #585656;
  margin: 1.5rem 0;
}
.contact-main-section .contact-way:hover {
  color: #fba38d;
}
.contact-social-list {
  gap: 2rem;
}
.contact-social-list a {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 2rem;
  background-color: #fba38d;
  padding: 1.5rem;
}
.contact-social-list a:hover {
  background-color: #fb7958;
}
.contact-social-list a:hover img {
  transform: scale(1.05);
}
.contact-form-box .inner {
  background-color: #fff4eb;
  padding: 6rem 5rem;
}
.catalog-popup-form .contact-form-box .inner {
  padding: 3rem 3rem;
}
.contact-form-box .input-box input,
.contact-form-box .input-box textarea,
.contact-form-box .input-box select {
  background-color: white;
  border: 0;
}
.contact-form-box .submit-box {
  margin-top: 2rem;
}

.contact-location-card {
  max-width: 54rem;
}
.contact-location-card .content-box {
  padding: 6rem 5rem 8rem 5rem;
  color: #585656;
}
.contact-location-card .arrow {
  bottom: 4rem;
  right: 4rem;
  width: 5rem;
}
.contact-location-card:hover .arrow {
  transform: rotate(45deg);
}
.contact-bottom-banner {
  --mask: radial-gradient(74.33px at 50% 105px, #000 99%, #0000 101%)
      calc(50% - 100px) 0/200px 100%,
    radial-gradient(74.33px at 50% -55px, #0000 99%, #000 101%) 50% 50px/200px
      100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

/* ----------------------------------------- */
/* ---------- EVENTS PAGE START ---------- */
/* ----------------------------------------- */
.events-banner-section .vector-1 {
  left: -10rem;
  top: -4rem;
  width: 8rem;
}
.events-banner-section .vector-2 {
  left: 50%;
  top: -8rem;
  width: 8.5rem;
}

.events-banner-section .vector-3 {
  right: -10rem;
  top: -4rem;
  width: 8.2rem;
}
.event-play-btn {
  border: 1px solid #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  position: absolute;
  left: 6rem;
  bottom: 7rem;
  cursor: pointer;
}
.event-play-btn img {
  width: 8rem;
  height: 8rem;
  margin-right: 2rem;
}
.video-play-btn:hover img {
  transform: scale(1.05);
}
.events-map-section .vector-1 {
  width: 15rem;
  left: -4rem;
  top: 0;
}
.events-map-section .vector-2 {
  right: 7rem;
  top: -2rem;
  width: 8.2rem;
}
.events-map-section .vector-3 {
  top: 6rem;
  right: -8rem;
  width: 15rem;
}
.events-listing-section {
  background-color: #fff4eb;
}

.events-listing-section h2 {
  font-size: 7rem;
}
.events-listing-section h2 strong,
.events-listing-section h2 b {
  color: #43a5df;
  font-weight: inherit;
}
.events-listing-section p {
  margin-top: 3rem;
}
.events-listing-section .main-content p,
.events-listing-section .main-content li {
  color: #585656;
}
.events-listing-section ul {
  padding-left: 2rem;
}
.events-listing-section .main-content li {
  margin-top: 10px;
}
.events-listing-section .about-content img {
  border-radius: 3rem;
  margin-top: 4rem;
}
.events-quick-links {
  background-color: #ffe3ce;
  padding: 15rem 3rem 15rem 5rem;
}
.events-quick-links::before,
.events-quick-links::after {
  content: "";
  position: absolute;
}
.events-quick-links::before {
  top: 0;
  right: 0;
  width: 30rem;
  height: 12.5rem;
  background: url("../img/event-sidebar-before.webp") no-repeat center;
  background-size: contain;
}
.events-quick-links ul {
  list-style: none;
  padding-left: 0;
}
.events-quick-links::after {
  bottom: 0;
  left: -1rem;
  width: 27rem;
  height: 12rem;
  background: url("../img/event-sidebar-after.webp") no-repeat center;
  background-size: contain;
}
.events-quick-links li a {
  padding: 3px 10px 3px 2rem;
  position: relative;
  display: inline-block;
}
.events-quick-links li a:hover {
  color: #f48063;
}
.events-quick-links li a::before {
  content: "";
  width: 1rem;
  height: 1.9rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: url("../img/right-arrow-orange.webp") no-repeat center;
  background-size: contain;
}
.events-quick-links .vector-1 {
  width: 8.2rem;
  top: 6rem;
  left: 5rem;
}
.events-listing-section .vector-2 {
  bottom: -2rem;
  right: 1rem;
  width: 16rem;
}
.events-listing-section .event-slider .slick-list {
  margin: 0 -1.5rem;
}
.events-listing-section .event-slider .slick-slide {
  margin: 0 1.5rem;
}
.events-listing-section .event-item {
  padding-top: 15rem;
  margin-top: 10rem;
  position: relative;
}
.events-listing-section .event-item:first-of-type {
  padding-top: 0;
}
.events-listing-section .event-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5rem;
  background: url("../img/event-content-wave-line.webp") no-repeat center;
  background-size: contain;
}
.events-listing-section .event-item:first-of-type::after {
  display: none;
}
.events-listing-section .event-item p {
  margin-top: 3rem;
}
.events-listing-section .event-item ul {
  margin-top: 3rem;
  padding-left: 2.5rem;
}
.events-listing-section .event-item li {
  margin: 8px 0;
}
.events-listing-section .event-slider-box img {
  margin-top: 0;
}
.event-slider-box .slider-item img {
  border-radius: 3rem;
}

/* ----------------------------------------- */
/* ---------- PLAYROOM SETUP START ---------- */
/* ----------------------------------------- */
.ps-banner-section .vector-1 {
  width: 14rem;
  top: 5rem;
}
.ps-banner-section .vector-2 {
  width: 12rem;
  right: 8rem;
  top: 3rem;
}
.ps-banner-slider .slick-list,
.ps-related-slider .slick-list {
  margin: 0 -2rem;
}
.ps-banner-slider .slick-slide,
.ps-related-slider .slick-slide {
  margin: 0 2rem;
}
.ps-banner-usps {
  background-color: #f0e6da;
  padding: 5rem 2rem;
  border-radius: 3rem 0 0 3rem;
  padding-right: 0;
}
.ps-banner-usps li {
  padding: 0 2rem;
  border-left: 1px solid #989898;
}
.ps-banner-usps li:first-child {
  border-left: 0;
}
.ps-banner-usps li img {
  max-height: 6.8rem;
  max-width: 6rem;
  margin-right: 2rem;
}
.ps-price-box {
  border: 0.4rem solid #f0e6da;
  padding: 3rem 3rem;
}
.ps-price-box h4 {
  font-size: 5rem;
  letter-spacing: -0.1rem;
}
.ps-price-box h4 span {
  color: #d30c14;
}
.ps-banner-highlights-box .title {
  font-size: 4.5rem;
}
.ps-banner-usps li h6 {
  letter-spacing: -0.08rem;
  font-size: 2.5rem;
}
.ps-banner-highlights-box .vector {
  width: 27rem;
  right: 0;
  top: -8rem;
  height: 20rem;
}
.ps-price-box .cross {
  text-decoration: line-through;
}
.ps-products-listing {
  grid-row-gap: 7rem;
}
.ps-product-item h6 {
  padding-right: 2rem;
}
.ps-product-item .tag {
  background-color: #fba38d;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 5rem;
  letter-spacing: -0.05rem;
  line-height: 1;
  height: max-content;
}
.ps-product-item:hover .img-box img {
  transform: scale(1.05);
}
.ps-about-section {
  /* background: linear-gradient(
    0deg,
    rgba(255, 227, 206, 0) 15.33%,
    #ffe3ce 97.01%
  ); */
  background: linear-gradient(
    to bottom,
    rgb(255, 227, 206),
    rgba(255, 227, 206, 0.6),
    rgba(255, 227, 206, 0.2),
    #fffcf9
  );
}
.ps-about-section .vector-1 {
  width: 13.6rem;
  left: 44%;
  top: -5rem;
}
.ps-about-section .vector-2 {
  width: 14rem;
  right: 0;
  top: -5rem;
}
.ps-about-section .description p {
  margin-bottom: 3rem;
}
.ps-about-usps li {
  margin-bottom: 6rem;
}
.ps-about-usps li:last-child {
  margin-bottom: 0;
}
.ps-about-usps .count {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffe3ce;
  border-radius: 50%;
  background: url("../img/ps-about-usp-count-bg.webp") no-repeat center;
  background-size: contain;
}
.ps-about-usps .flex-1 {
  padding-left: 2.5rem;
}
.ps-about-usps p {
  margin-top: 1.5rem;
  line-height: 1.4;
}
.ps-download-box {
  padding: 5rem 5rem;
  background-color: #ffe3ce;
}
.ps-download-box .pdf-icon {
  width: 9.3rem;
  margin-right: 5rem;
  margin-top: 2rem;
}
.ps-download-box .vector {
  width: 9rem;
  right: 5rem;
  bottom: 5rem;
}
.ps-contact-bar {
  background-color: #ffe3ce;
  padding: 8rem 5rem;
  border-radius: 2rem;
}
.ps-contact-bar p {
  letter-spacing: -0.05rem;
}
.ps-contact-bar form {
  margin-top: 1rem;
}
.ps-contact-bar .input-box {
  margin-bottom: 0;
  width: calc(25% - 8rem);
  margin-top: 2.5rem;
}
.ps-contact-bar .input-box input {
  background-color: #fff4eb;
  height: 8.5rem;
  border: 0;
  border-radius: 1.5rem;
}
.ps-contact-bar .submit-box {
  min-width: 26rem;
  margin-top: 0;
  margin-top: 2.5rem;
}
.ps-contact-bar .submit-box input {
  height: 8.5rem;
}
.ps-contact-bar .vector-1 {
  width: 12rem;
  height: 12rem;
  left: 45%;
  top: -1rem;
}
.ps-contact-bar .vector-2 {
  width: 10rem;
  height: 9rem;
  right: 8rem;
  top: 5rem;
}
.ps-related-section {
  background-color: #ffe3ce;
}
.ps-related-slide h4 {
  letter-spacing: -0.09rem;
}
.ps-related-slide h4 span {
  color: #ff7143;
}
.ps-related-slide:hover .img-box img {
  transform: scale(1.05);
}
.ps-related-section .google-icon {
  padding: 2rem 3rem;
  background-color: #ffffff;
}
.ps-related-section .google-icon img {
  max-height: 7.2rem;
}

.ps-related-section .vector-1 {
  width: 8.2rem;
  left: 30%;
  top: -9rem;
}
.ps-related-section .vector-2 {
  width: 15rem;
  left: 45%;
  top: -8rem;
  max-height: unset;
}
.ps-related-section .vector-3 {
  width: 27rem;
  right: 19%;
  top: -13rem;
  max-height: unset;
}

/* ----------------------------------------- */
/* ---------- QUALITY ASSURANCE START ---------- */
/* ----------------------------------------- */
.qa-banner-section .section-heading {
  padding-bottom: 5rem;
}
.qa-banner-section .vector-1 {
  width: 12rem;
  top: -2rem;
  left: -9rem;
}
.qa-banner-section .vector-2 {
  width: 8.2rem;
  top: 0;
  right: -3rem;
}

.qa-qc-section .vector-1 {
  width: 8.2rem;
  top: 0;
  left: -9rem;
}
.qa-qc-section .vector-2 {
  right: -10rem;
  top: 8rem;
  width: 15rem;
}
.qa-qc-section .vector-3 {
  width: 6.5rem;
  left: -8rem;
  bottom: -2rem;
}
.qa-qc-process {
  grid-row-gap: 7rem;
}
.aq-qc-item .img-box img {
  height: 40rem;
}
.aq-qc-item:hover .img-box img {
  transform: scale(1.05);
}
.aq-qc-item .description {
  letter-spacing: -0.01rem;
}
.qa-certified-section {
  background: linear-gradient(
    180deg,
    #fefaf9 0%,
    #fefaf9 137.81%,
    rgba(254, 250, 249, 0) 165.84%
  );
}
.qa-certified-section .vector-1 {
  left: 42%;
  width: 26rem;
  top: -5rem;
}
.qa-certificates-list li {
  border: 1rem solid #ffe6cd;
  padding: 3rem 2rem;
}
.qa-certificates-list .logo-box {
  height: 20rem;
  padding-top: 1rem;
}
.qa-certificates-list img {
  max-width: 16rem;
  max-height: 16rem;
}
.qa-certificates-list .title {
  letter-spacing: -0.02rem;
  margin-top: 3rem;
  display: block;
}
.qa-certified-section::after {
  background: url("../img/qa-certified-bottom-wave.webp") repeat center;
  background-size: contain;
}
.qa-contact-section .description p,
.infra-about-section .description p {
  margin-top: 3rem;
}
.qa-contact-section .description ul {
  padding-left: 2.5rem;
  margin-top: 3rem;
}
.qa-contact-section .description img {
  display: block;
  border-radius: 1.7rem;
  margin-top: 4rem;
}

.qa-contact-form {
  background-color: #fff4eb;
  padding: 6rem 5rem;
  border-radius: 2rem;
}
.qa-contact-form p {
  font-size: 2.2rem;
  color: #575757;
  letter-spacing: -0.02rem;
}
.qa-contact-form .input-box input,
.qa-contact-form .input-box textarea {
  background-color: #ffffff;
  border: 0;
  outline: 0;
  color: #111111;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  font-size: 2.2rem;
  height: 8rem;
  width: 100%;
}
.qa-contact-form .input-box textarea {
  height: 20rem;
}
.qa-contact-form .input-box {
  margin-bottom: 2.5rem;
}
.qa-contact-form .submit-box {
  width: max-content;
  min-width: 30rem;
  margin: 0;
}
.qa-contact-section .vector-1 {
  top: -6rem;
  left: 0;
  width: 15rem;
}
.qa-contact-section .vector-2 {
  top: -10rem;
  left: 50%;
  width: 8.2rem;
}

.qa-contact-bottom-bar .vector-1 {
  width: 8.2rem;
  left: 52%;
  top: 8rem;
}
.qa-contact-bottom-bar .vector-2 {
  width: 25rem;
  left: 60%;
  top: 5rem;
}
.qa-products-section {
  background: linear-gradient(0deg, #ffffff 0%, #fff4ed 96.47%);
}
.qa-products-section .vector-1 {
  width: 12rem;
  left: -15rem;
  top: -2rem;
}
.qa-products-section .vector-2 {
  width: 13rem;
  right: -10rem;
  top: -2rem;
}
.qa-products-section::before {
  background: url("../img/qa-products-top-wave.webp") repeat center;
  background-size: contain;
}

.qa-product-item {
  background-color: #ffe3ce;
  padding: 4rem 3rem;
}
.qa-product-item .img-box {
  height: 35rem;
  padding-top: 4rem;
}
.qa-product-item::before {
  content: "";
  position: absolute;
  top: 4rem;
  right: 3rem;
  width: 2.2rem;
  height: 2.2rem;
  background: url("../img/link-arrow-blue.webp") no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}
.qa-product-item:hover .img-box img {
  transform: scale(1.05);
}
.qa-product-item:hover::before {
  transform: rotate(45deg);
}
.qa-products-listing {
  grid-row-gap: 7rem;
}
.qa-intro-section .inner {
  padding: 25rem 0;
}
.qa-intro-section .text-box {
  width: 66%;
}

.qa-intro-section .vector-1 {
  width: 27rem;
}
.qa-intro-section .vector-2 {
  width: 24rem;
}
.qa-intro-section .vector-3 {
  width: 22rem;
  left: 52%;
  top: 8rem;
}
.qa-intro-images .left-img {
  width: 40%;
  left: -20rem;
  bottom: -8rem;
}
.qa-intro-images .right-img {
  width: 26%;
  right: -5rem;
  bottom: 0;
}
.qa-intro-section .line-arrow {
  width: 6.2rem;
  right: -6rem;
  top: 5rem;
}
/* ----------------------------------------- */
/* ---------- INFRASTRUCTURE START ---------- */
/* ----------------------------------------- */
.infra-banner-section .vector-1 {
  width: 8rem;
}
.infra-banner-section .vector-2 {
  width: 12rem;
  right: -12rem;
}
.infra-about-usp-box {
  padding: 18rem 8rem;
}
.infra-about-usp h4 {
  font-size: 8rem;
  color: #ff7143;
  font-weight: 600;
  letter-spacing: -0.2rem;
}
.infra-about-usp h6 {
  font-size: 3.5rem;
  letter-spacing: -0.08rem;
  margin: 2rem 0 1.5rem 0;
}
.infra-about-usp p {
  color: #585656;
}

.infra-about-usp-box .grass {
  width: 70rem;
  top: -10.5rem;
  left: 4rem;
  transform: rotate(-5deg);
}

.infra-about-usp-box .tortoise {
  width: 20rem;
  left: 9rem;
  top: -6rem;
}
.infra-about-usp-box .ball {
  width: 8rem;
  left: 46%;
  top: -5rem;
}
.infra-about-usp-box .tree {
  left: -6rem;
  bottom: 6rem;
  width: 15rem;
}
.infra-about-usp-box .flower {
  width: 42rem;
  right: 6rem;
  bottom: 4rem;
}

.infra-capabilities-section .vector-1 {
  width: 15rem;
  left: -18rem;
  top: 0;
}
.infra-capabilities-section .vector-2 {
  width: 8rem;
  right: -18rem;
  left: unset;
  top: 0;
}

.infra-capabilities-section .vector-3 {
  width: 15rem;
  right: -13rem;
  bottom: 4rem;
}
.infra-capabilities-slider-wrapper {
  padding: 0 3rem;
}
.infra-capability-item {
  background-color: #ffe3ce;
  padding: 5rem 4.5rem 7rem 4.5rem;
}
.infra-capability-item .icon {
  width: 8.5rem;
  height: 8.5rem;
}
.infra-showreel-section {
  background: #ffffff;
}
.infra-fu-item {
  margin-top: 8rem;
}
.infra-fu-item:first-of-type {
  top: 0;
}
.infra-fu-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.infra-fu-item .img-box {
  width: 43%;
}
.infra-fu-item .text-box {
  width: 53%;
}
.infra-fu-item:nth-of-type(even) .text-box {
  padding-right: 10rem;
}
.infra-fu-item .icon {
  max-height: 7rem;
}
.infra-fu-item h3 span {
  color: #43a5df;
}
.infra-process-list {
  row-gap: 5rem;
}
.infra-process-item {
  width: 48%;
  background-color: #ffece0;
  padding: 4rem 5rem 6rem 5rem;
}
.infra-process-item .icon {
  width: 7rem;
  height: 7rem;
  background-color: #dd9a6f;
  padding: 1.5rem;
}
.infra-process-item:nth-of-type(odd) .icon {
  margin-left: auto;
}
.infra-process-item .inner {
  width: 67%;
  margin-left: auto;
}
.infra-process-item .count {
  font-size: 45rem;
  font-weight: 900;
  line-height: 0.7;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  position: absolute;
  left: -2rem;
  bottom: 0;
  -webkit-text-stroke: 3px #e4c2ad;
  -webkit-text-fill-color: transparent;
}
.infra-process-item:nth-of-type(even) .count {
  left: unset;
  right: -2rem;
}
.infra-process-item:nth-of-type(3) .count {
  left: -6rem;
}
.infra-process-item:nth-of-type(even) .inner {
  margin-left: 0;
  width: 65%;
}
.infra-glimpse-section {
  background: linear-gradient(0deg, #ffffff 0%, #eff4f7 96.47%);
}
.infra-glimpse-section::before {
  background: url("../img/infra-glimpse-wave.webp") repeat center;
  background-size: contain;
}
.infra-glimpse-section .vector-1 {
  width: 12rem;
  left: -15rem;
}
.infra-glimpse-section .vector-2 {
  width: 10rem;
  right: -12rem;
}
.infra-glimpse-images .img-box {
  margin: 3rem 0;
}
.infra-glimpse-images .img-box:hover img {
  transform: scale(1.08);
}
.infra-glimpse-slider-wrapper {
  padding: 0 10rem;
}

/* ----------------------------------------- */
/* ---------- ABOUT PAGE START ---------- */
/* ----------------------------------------- */
.about-banner-section .vector-1 {
  width: 8.2rem;
  top: -7rem;
  left: 18%;
}
.about-banner-section .vector-2 {
  width: 14rem;
  left: 45%;
  top: -9rem;
}
.about-banner-section .vector-3 {
  width: 13rem;
  bottom: -10rem;
}
.about-banner-section .vector-4 {
  bottom: -10rem;
  width: 12rem;
}
.about-intro-section .container {
  padding: 10rem 15px;
}
.text-editor-content p,
.text-editor-content ul,
.text-editor-content img {
  margin-top: 3rem;
}
.text-editor-content .btn img {
  margin-top: 0;
}
.text-editor-content ul {
  padding-left: 2.5rem;
}
.text-editor-content li {
  margin: 8px 0;
}
.about-intro-section .sidebar {
  background-color: #ffe3ce;
  padding: 4rem 4rem;
  width: 37%;
}
.about-intro-usps .icon {
  width: 10rem;
  height: 10rem;
  background: #fff6ee;
  padding: 1.8rem;
  margin-right: 2rem;
}
.about-intro-section .sidebar h4,
.about-intro-usps li h6 {
  letter-spacing: -0.05rem;
}
.about-intro-usps li h6 {
  position: relative;
  padding: 3rem 0;
}
.about-intro-usps h6::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 100%;
  height: 1.3rem;
  background: url("../img/about-intro-usp-line.png") no-repeat center;
  background-size: contain;
}
.about-intro-usps li:last-child h6::before {
  display: none;
}
.about-intro-section .vector-1 {
  width: 19rem;
  left: 50%;
  top: 0;
  z-index: 1;
}
.about-intro-section .vector-2 {
  max-width: 42rem;
  left: 0;
  bottom: 0;
}
.about-intro-section .vector-3 {
  max-height: 27rem;
  bottom: 0;
  right: 40%;
}

.about-legacy-section .vector-1 {
  right: -10rem;
  width: 10rem;
  top: -8rem;
}
.about-legacy-section .line-arrow {
  max-width: 15rem;
  right: -12rem;
  bottom: 8rem;
}
.about-legacy-section {
  background-color: #eff4f7;
}
.about-legacy-section .thumb-box {
  width: 37%;
}
.about-legacy-usp {
  padding: 4rem 3rem 6rem 4rem;
  border-radius: 2rem;
  background-color: #f8efc4;
}
.about-legacy-usp .icon {
  width: 7.7rem;
  height: 6rem;
  margin-bottom: 5rem;
  display: flex;
}
.about-legacy-usp h5 {
  letter-spacing: -0.06rem;
}
.about-legacy-section::before {
  background: url("../img/about-legacy-top-wave.webp") repeat center;
  background-size: contain;
}
.about-legacy-section::after {
  background: url("../img/about-legacy-bottom-wave.webp") repeat center;
  background-size: contain;
}
.about-explore-section {
  background: linear-gradient(180deg, #ffefe0 0%, rgba(255, 239, 224, 0) 100%);
}
.about-journey-years .slide-item {
  padding-bottom: 2rem;
  cursor: pointer;
}
.about-journey-years .year {
  font-size: 4rem;
  margin-bottom: 7rem;
}
.about-journey-years .line {
  width: 100%;
  background-color: #d9d9d9;
  height: 0.4rem;
}
.about-journey-years .line::after,
.about-journey-years .line::before {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}
.about-journey-years .line::after {
  width: 45%;
  height: 100%;
  top: 0;
  background-color: #d9d9d9;
}
.about-journey-years .slick-current .line::after {
  background-color: #fba38d;
}
.about-journey-years .line::before {
  top: -0.8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: 0.25rem solid #d9d9d9;
  z-index: 1;
}
.about-journey-years .slick-current .line::before {
  background-color: #fba38d;
  border-color: #fba38d;
}
.about-journey-details .slick-list {
  padding-right: 15%;
}
.about-journey-details .slick-slide {
  margin-right: 9rem;
}
.about-journey-details .img-box {
  width: 55%;
  border-radius: 3rem;
  overflow: hidden;
}
.about-journey-details .img-box img {
  border-radius: 3rem;
}
.about-journey-details .img-box .year {
  font-size: 8rem;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 5rem 6rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.about-journey-details .text-box {
  width: 39%;
  padding-right: 6rem;
  position: relative;
}
.about-journey-details .text-box::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
  width: 8rem;
  height: 0.5rem;
  background-color: #edb198;
}
.about-journey-details h3 span {
  color: #43a5df;
}
.about-journey-details .text-box p {
  letter-spacing: -0.01rem;
}
.about-capabilities-section .vector-1 {
  right: 30%;
  top: -10rem;
  width: 8rem;
}
.about-capabilities-section .description img {
  border-radius: 3rem;
}
.about-explore-links .link {
  background-color: #ffe3ce;
  padding: 5rem 5rem;
  border-radius: 2rem;
  margin: 2rem 0;
}
.about-explore-links .link:hover {
  background-color: rgb(245, 208, 180);
}
.about-explore-links .link .arrow {
  width: 2.2rem;
}
.about-explore-links .link:hover .arrow {
  transform: rotate(45deg);
}

/* --------------------------------- */
/* ----------- BLOGS PAGE ----------- */
/* ---------------------------------- */
.blog-item .title {
  color: #43a5df;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-item:hover .title {
  color: #1780bc;
}
.blog-item .img-box img {
  height: 39rem;
}
.blog-item:hover .img-box img {
  transform: scale(1.02);
}
.blog-item .blog-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-detail-content video,
.blog-detail-content iframe {
  max-width: 100%;
}
.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content img,
.blog-detail-content video,
.blog-detail-content iframe {
  margin-top: 4rem;
}
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
  margin-bottom: 5rem;
  margin-top: 5rem;
}
.blog-detail-content ul {
  padding-left: 2.5rem;
}
.blog-detail-content ol {
  margin-left: 4rem;
}
.blog-detail-content li {
  margin: 8px 0;
}

/* --------------------------- */
/* ------ FAQ PAGE ------- */
/* --------------------------- */
.faq-listing-section .sticky {
  top: 16rem;
}
.faq-sidebar {
  padding: 4rem 3rem;
  background-color: #fff6ee;
}
.faq-sidebar a {
  padding: 2rem 0;
  display: block;
  border-bottom: 1px solid #f1a991;
}
.faq-sidebar .active a {
  color: #ff7143;
}
.faq-sidebar li:last-child a {
  border-bottom: 0;
}
.faq-listing-section .sidebar {
  padding-top: 5rem;
}
.faq-group {
  padding-top: 10rem;
}
.faq-group-title {
  margin-bottom: 5rem;
}
.faq-item {
  border-top: 1px solid #f1a991;
}
.faq-item:last-of-type {
  border-bottom: 1px solid #f1a991;
}
.faq-head {
  padding: 4rem 0;
}
.faq-body {
  padding-bottom: 5rem;
  font-weight: 400;
}

.faq-body p:first-of-type {
  margin-top: 0;
}

/* --------------------------- */
/* ------ GALLERY PAGE ------- */
/* --------------------------- */
.simple-page-banner .vector-1 {
  left: 0;
  top: 0;
  width: 9rem;
}
.simple-page-banner .vector-2 {
  top: -5rem;
  max-width: 18rem;
}
.simple-page-banner .vector-3 {
  bottom: 0;
  left: 20%;
  width: 12rem;
}
.simple-page-banner .vector-4 {
  right: 10%;
  bottom: 0;
  width: 12rem;
}
.gallery-listing-grid {
  gap: 4rem;
}
.gallery-listing-grid .gallery-item {
  position: relative;
}
.gallery-listing-grid .gallery-item,
.gallery-listing-grid .gallery-item img {
  height: 60rem;
}
.gallery-listing-grid .gallery-item {
  width: calc(33% - 4rem);
}
.gallery-listing-grid .gallery-item.large {
  width: calc(37% - 5rem);
}
.gallery-listing-grid .gallery-item.small {
  width: calc(29% - 5rem);
}
.gallery-listing-grid .gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-listing-grid .gallery-item .content {
  padding: 5rem 5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}

.news-popup-content {
  padding: 7rem 3rem;
  overflow-y: auto;
  height: 100%;
  max-height: 80vh;
  width: 100%;
}
.news-popup-content .img-box img {
  width: 100%;
  height: auto;
}
.blog-item .date {
  font-size: 2rem;
  color: #555555;
}
.news-read-more {
  color: #ff7143;
  text-decoration: underline;
  cursor: pointer;
}
.news-popup-content .date {
  top: 3rem;
  right: 5rem;
}
.news-popup-content img.rounded-3 {
  border-radius: 3rem;
}
.news-popup-content .img-box img {
  max-height: unset;
}
.news-popup-content .img-box img {
  transform: none !important;
}
/* ===== Image Popup ===== */

.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    cursor: zoom-out;
}

.popup-img {
    max-width: 92%;
    max-height: 92%;
    transform: scale(0.7);
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #000;
    cursor: pointer;
    z-index: 11;
}
.contact-form-box .submit-box button.submit-btn {
    border: 0;
    outline: 0;
    background-color: transparent;
    width: 100%;
    height: 7rem;
    color: black;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 2.2rem;
    text-align: left;
    padding-left: 4rem;
    cursor: pointer;
}

.gallery-img {
    cursor: zoom-in;
    transition: transform .3s ease;
}
/* Basic styles for the dropdown */

 ul#menu-header-menu li {
  position: relative;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

/* Hide sub-menus by default */
ul#menu-header-menu ul.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #2475dd;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-width: max-content;
    height: auto;
    padding: 2rem 0;
    border-radius: 0 0 0.5rem 1.5rem;
}

/* Show sub-menus when parent button is expanded */
ul#menu-header-menu button[aria-expanded="true"] ~ ul.sub-menu,
ul#menu-header-menu li > button[aria-expanded="true"] + ul.sub-menu {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
header nav ul#menu-header-menu > li > a{
    margin-right: 0;
    padding: 1rem 2rem;
	letter-spacing: 0;
}
header nav ul li.accot-btn a{margin-right: 0 !important;}
ul#menu-header-menu ul.sub-menu > li{
  padding: 1rem 3rem 1rem 2rem;
}
body.single-case_study ul#menu-header-menu ul.sub-menu > li.last-child a,
ul#menu-header-menu ul.sub-menu > li.last-child a{
  padding: 1rem;
}
ul#menu-header-menu ul.sub-menu > li.menu-item-has-children{padding: 2.5rem 5.5rem 1rem 3rem;}
ul#menu-header-menu ul.sub-menu > li::before {
  content: '';
  position: absolute;
  background-color: #9aabff;
  width: 100%;
  height: 1px;
  bottom: 0rem;
  left: 0;
}
ul#menu-header-menu ul.sub-menu > li:last-child::before{display: none;}
ul#menu-header-menu ul.sub-menu > li.menu-item-has-children:last-child::before{display: none;}
ul#menu-header-menu ul.sub-menu li{position: relative;}
ul#menu-header-menu ul.sub-menu > li.menu-item-has-children::after{
  content: '';
  position: absolute;
  background: url(../img/next.png) no-repeat;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  right: 2rem;
  top: 53%;
  transform: translateY(-50%);
}
ul#menu-header-menu ul.sub-menu > li > ul.sub-menu > li::after{
  content: '';
  position: absolute;
  background: url(../img/arrow-right-2.png) no-repeat;
  width: 1.3rem;
  height: 1.3rem;
  background-size: contain;
  right: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
ul#menu-header-menu ul.sub-menu li a {
	display: block;
	transition: all linear .2s;
	font-size: 1.95rem;
	font-weight: 600;
}
ul#menu-header-menu ul.sub-menu li:first-child a{
    padding-top: 1rem;
}
ul#menu-header-menu ul.sub-menu li a {
  color: #ffffff;
}
ul#menu-header-menu ul.sub-menu li > ul.sub-menu {
  top: 0;
  z-index: 1;
  left: 100%;
}
 ul#menu-header-menu ul.sub-menu li a:after{display: none;}
 ul#menu-header-menu ul.sub-menu li a:hover{
  transform: translateX(1rem);
  color: #96E1FF;
}
ul#menu-header-menu li.menu-item-has-children{padding-right: 1.35rem;}
 ul#menu-header-menu li.menu-item-has-children:after{
	content: '';
	position: absolute;
	background: url(../img/arrow-down.png) no-repeat center;
	width: 1.1rem;
	height: .7rem;
	background-size: contain;
	right: 10px;
	top: 55%;
	transform: translateY(-100%);
	z-index: 1;
  filter: invert(1);
}

 ul#menu-header-menu ul.sub-menu > li > ul.sub-menu{
  padding: 1.3rem 3rem;
  left: 100%;
}


ul#menu-header-menu ul.sub-menu > li.menu-item-has-children:first-child{
  padding-top: 0;
}

.footer-menu-box li a p.menu-item-description {
  display: none;
}

.event-listing .description h5 {
  margin-top: 3rem;
}
.event-listing .description p {
  margin-top: 1.5rem;
}
.cities-listing-section{
  background: linear-gradient(
    to bottom,
    rgba(255, 244, 235, 1),
    rgba(255, 244, 235, 0.4)
  );
  padding-top: 12rem;
}
.cities-listing-section .footer-city-box {
  padding-bottom: 5rem;
}
.footer-city-box ul li a:hover{
  color: #2475dd;
}
.same-height-slide{
  visibility: hidden;
  display: none;
}
.same-height-slide.slick-initialized{
  visibility: visible;
  display: block;
}