:root {
  --primary-color: #00386e;
  --main-color: #033463;
  --para-color: #023261;
  
  --button-color: #ffa726;
  --second-bg-color: #ffd54f;
  --head-font: "Baloo 2", sans-serif;
  --para-font: "Poppins", sans-serif;
}
body {
  font-family: "Poppins", sans-serif;
  font-family: "Baloo 2", sans-serif;
}
.section-title1 {
  font-size: 35px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  font-family: var(--head-font);
}
.section-title {
  font-size: 35px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--head-font);
}
.section-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--para-color);
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--head-font);
}
/* topbar css */
.topbar {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
}

.topbar-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  font-family: var(--para-font);
}
.topbar-container .left,
.topbar-container .center,
.topbar-container .right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.topbar-container .center {
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

.topbar-container i {
  margin-right: 6px;
  color: var(--para-color);
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
}
.topbar-container .register-icon {
  color: #fff;
  margin-right: 6px;
  background: none;
  padding: 0px;
}

.topbar-container a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.header {
  background-color: #2a73ba;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  font-family: var(--para-font);
}
.navbar-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo img {
  height: 80px;
}

/* NAV */
.navbar-nav {
  display: flex;
}

.navbar-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-nav a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  
}

.custom-dropdown {
  display: none;
  border-radius: 20px;
  position: absolute;
  background: #0334635e !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  min-width: 150px;
  flex-direction: column;
  z-index: 100;
}

.custom-dropdown a {
  padding: 10px;
  white-space: nowrap;
   transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
.custom-dropdown a:hover {
  color: var(--button-color);
  border-bottom: 2px solid #fff;
}
@media (min-width: 1025px) {
  .navbar-nav li {
    position: relative;
  }

  .navbar-nav li:hover > .custom-dropdown {
    display: flex;
    flex-direction: column;
  }
}

.nav-search {
  width: 300px;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 50px;
  padding: 0 50px 0 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
}

.search-box button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
}

/* TOGGLER */
.custom-navbar-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.offcanvas-close-btn {
  display: none;
}

@media (max-width: 1024px) {
  .custom-navbar-toggle {
    display: block;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--main-color);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 2000;
  }

  .navbar-nav.open {
    right: 0;
  }

  .navbar-nav ul {
    flex-direction: column;
    gap: 10px !important;
  }

  .custom-dropdown {
    position: relative;
    box-shadow: none;
    top: 0% !important;
    padding-left: 15px;
  }

  .nav-search-mobile {
    width: 100%;
    margin-top: 20px;
  }

  .nav-search-mobile .search-box input {
    height: 45px;
    border-radius: 20px;
    width: 250px;
    margin-left: 20px;
  }

  .search-box button {
    right: -51px;
  }
  .offcanvas-close-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-inner {
    align-items: center;
    height: 70px;
  }

  .logo {
    grid-column: 1 / 2;
  }

  .nav-search {
    grid-column: 2 / 3;
    justify-self: center;
    width: 70%;
  }
}

@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .topbar-container .left,
  .topbar-container .center,
  .topbar-container .right {
    justify-content: center;
    flex: unset;
    flex-direction: row;
    gap: 10px;
  }
  .logo img {
    height: 50px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f9f2d9;
  padding-top: 60px;
}
.hero-section .swiper-wrapper {
  height: fit-content !important;
}

.hero-slider {
  width: 100%;
  /* height: 80vh; */
  padding-top: 60px;
}
.hero-swipper {
  /* height: 70vh; */
}
/* .hero-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.hero-slider img {
  max-width: 100%;
  /* height: 60vh; */
  display: block;
}

.clouds {
  margin-top: -300px;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  position: relative;
  z-index: 5;
}

.cloud-strip {
  flex: 0 0 100%;
  animation: cloudScroll 60s linear infinite;
}

.cloud-strip img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  filter: invert(1);
}

/* Infinite scrolling clouds */
@keyframes cloudScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-slider img {
    width: 100%;
  }
}
.age-card {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.age-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -3%;
  font-family: var(--para-font);
}

.age-card p {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: var(--para-font);
}

.child-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 200px;
}

.card-btn {
  background-color: white;
  color: black;
  border-radius: 20px;
  padding: 6px 16px;
  border: none;
  font-weight: 600;
  margin-top: auto;
  width: fit-content;
}

.section-wrapper {
  position: relative;
  padding: 40px 0;
}

.icon-side {
  position: absolute;
  left: 50px;
  top: 30%;
  transform: translateY(-50%);
  animation: bounce 2s infinite;
}
.icon-side img {
  width: 128px;
  height: 128px;
}
.icon-right-side {
  position: absolute;
  right: 50px;
  top: 30%;
  transform: translateY(-50%);
  animation: bounce 2s infinite;
}
.icon-right-side img {
  width: 128px;
  height: 128px;
}
.icon-side-1 {
  position: absolute;
  left: 50px;
  top: 30%;
  transform: translateY(-50%);
  animation: bounce 2s infinite;
}
.icon-side-1 img {
  width: 128px;
  height: 128px;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
}

@media (max-width: 767px) {
  .child-img {
    height: 100px;
  }

  .icon-side {
    left: 20px;
    top: 5% !important;
  }
  .icon-side img {
    width: 50px !important;
    height: 50px !important;
  }
  .icon-side-1 {
    left: 20px;
    top: 9% !important;
  }
  .icon-side-1 img {
    width: 50px !important;
    height: 50px !important;
  }
  .icon-right-side {
    right: 20px;
    top: 7% !important;
  }
  .icon-right-side img {
    width: 50px !important;
    height: 50px !important;
  }
  .age-card {
    height: 200px;
  }
  .section-wrapper {
    padding: 25px 0;
  }
  .icon-side-rt {
    right: 20px;
    top: 2% !important;
  }
  .icon-side-rt img {
    width: 50px !important;
    height: 50px !important;
  }
  .kit-card {
    padding: 50px 20px 30px !important;
    height: 200px;
  }
  .kit-icon img {
    width: 100px;
    height: auto;
  }
  .learning-slider {
    padding: 0px !important;
  }
  .slider-nav {
    display: none;
  }
}

.quick-view {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quick-view img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.quick-view:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .icon-right-side {
    display: none;
  }

  .section-title {
    font-size: 22px;
  }
}

.custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.cat-link {
  flex: 0 0 calc(25% - 12px);
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.cat-card {
  overflow: hidden;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease;
}

.cat-card img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.cat-link:hover .cat-card {
  transform: scale(1.03);
}

@media (max-width: 400px) {
  .cat-link {
    flex: 0 0 calc(50% - 8px);
  }
}
/* Container Styling */
.learning-kits-section {
  padding: 60px 20px;
  background-color: #fff5f5;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.learning-kits-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.learning-kits-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(307px, 1fr));
  gap: 48px;
}
.icon-side-rt {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  animation: bounce 2s infinite;
}
.icon-side-rt img {
  width: 128px;
  height: 128px;
}
.kit-card-wrapper {
  position: relative;
  overflow: visible;
}

.kit-card {
  position: relative;
  padding: 90px 20px 30px;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  transition: transform 0.3s ease;
  text-align: center;
}

.kit-card:hover {
  transform: translateY(-6px);
}
.swiper-wrapper {
  position: relative;
}
.kit-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 0 100%;
  pointer-events: none;
  z-index: 0;
}

.kit-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 2;
}

.kit-icon img {
  width: 130px;
  height: auto;
}

/* Card Text */
.kit-title {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #662b03;
  font-family: var(--head-font);
  z-index: 1;
}

.kit-description {
  font-size: 16px;
  color: #4d0325;
  font-family: var(--para-font);
  z-index: 1;
}

/* Responsive Headings */
@media (max-width: 768px) {
  .learning-kits-section .section-title {
    font-size: 1.6rem;
  }

  .kit-title {
    font-size: 1.1rem;
  }

  .kit-description {
    font-size: 0.9rem;
  }

  .slider-header {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .slider-header .view-all {
    position: static !important;
  }
}

/* Header */
/* Header */
.slider-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.slider-header .view-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--para-font);
  font-size: 16px;
  background-color: #ffa726;
  border-radius: 5px;
  padding: 6px 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.slider-header .view-all:hover {
  background-color: #fb8c00;
}

.learningSwiper {
  width: 100%;
  overflow: hidden;
}

.product-card-slide {
  width: calc((100% / 4) - 20px) !important;
}
@media (max-width: 1024px) {
  .product-card-slide {
    width: calc((100% / 2) - 15px) !important;
  }
}
@media (max-width: 700px) {
  .product-card-slide {
    width: 100% !important;
  }
}

/* Card */
.learning-slider {
  padding: 60px 0px;
}
.swiper-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.swiper-card img {
  width: 100%;
  border-radius: 10px;
}
.swiper-card h3 {
  margin-top: 10px;
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
  font-family: var(--head-font);
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
}
.badge.sale {
  background: #ffd54f;
}
.badge.new {
  background: #4caf50;
}
.badge.soldout {
  background: #ff6f61;
  margin-left: 50px;
}

/* Rating */
.rating {
  color: #ff9800;
}
.learningSwiperWrapper {
  height: auto !important;
  position: relative;
}
/* Price */
.price {
  font-size: 16px;
  font-weight: bold;
}
.price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.buttons .cart {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--para-color);
  border-radius: 5px;
  font-size: 16px;
  font-family: var(--para-font);
}
.buttons .buy {
  background: #ffa726;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-family: var(--para-font);
}
.slider-wrapper {
  position: relative;
}
/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 30;
  cursor: pointer;
}
.slider-prev {
  left: -44px;
}
.slider-next {
  right: -44px;
}

.slider-nav img {
  width: 50px;
  height: 50px;
}
.swiper-button-lock {
  display: block !important;
}

.kits-banner {
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
}

.kits-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* max-height: 400px;  */
  border-radius: 20px;
}

@media (max-width: 768px) {
  .kits-banner img {
    max-height: 200px;
    border-radius: 12px;
  }
}
.kidsGallerySwiper {
  padding-bottom: 30px;
}

/* Slide wrapper */
.kidsGalleryWrapper {
  height: auto !important;
  position: relative;
  overflow: hidden;
}

.kidsGallerySlide {
  border-radius: 10px;
  overflow: hidden;
}

.kidsGallerySlide img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* Pagination dots */
.kidsGalleryPagination {
  position: absolute;
  bottom: -30px !important;
}
.kidsGalleryPagination .swiper-pagination-bullet {
  background: #a0b2c3;
  opacity: 1;
}
.kidsGalleryPagination .swiper-pagination-bullet-active {
  background: #000;
}

/* Section Wrapper */
.testimonial-section {
  padding: 60px 0;
  background: #fff;
}

.testimonial-heading {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.testimonial-image-wrap {
  text-align: center;
}
.testimonial-image {
  max-width: 100%;
  border-radius: 12px;
  box-sizing: content-box !important;
}

/* Carousel Area */
.testimonial-carousel {
  position: relative;
}

/* Card Style */
.testimonial-card {
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Quote Icon */
.testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
}

.testimonial-text {
  margin-left: 40px;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-family: var(--head-font);
}

.testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.testimonial-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.testimonial-role {
  font-size: 14px;
  color: #666;
}

/* Controls */
.testimonial-control {
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-heading {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 30px 20px;
    min-height: auto;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .section-title1 {
    font-size: 25px;
  }
  .cloud-strip img {
    height: 220px;
  }
  .clouds {
    margin-top: -153px !important;
  }
}
@media (max-width: 768px) {
  .cloud-strip img {
    height: 134px;
  }
  .clouds {
    margin-top: -100px !important;
  }
}
@media (max-width: 575px) {
  .testimonial-heading {
    font-size: 20px;
  }
  .testimonial-quote {
    width: 35px;
  }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }
  .testimonial-name {
    font-size: 16px;
  }
  .testimonial-role {
    font-size: 13px;
  }
}

/* Delivery Section */
.delivery-section {
  padding-bottom: 20px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.delivery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.delivery-item img {
  width: 60px;
  margin-bottom: 10px;
}
.delivery-item h4 {
  font-size: 18px;
  letter-spacing: 2px;
  font-family: var(--para-font);
  font-weight: 600;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .delivery-item h4 {
    font-size: 14px;
    letter-spacing: 0px;
  }
  /* .delivery-item img {
    width: 40px;
    margin-bottom: 0px;
} */
}
@media (max-width: 576px) {
  .delivery-item h4 {
    font-size: 10px;
    letter-spacing: 0px;
  }
  .delivery-item img {
    width: 40px;
    margin-bottom: 0px;
  }
  .hero-section {
    padding-top: 17px;
  }
  .clouds {
    margin-top: -68px;
  }
  .cloud-strip img {
    height: 70px;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  background-color: var(--main-color);
  color: #fff;
  padding: 60px 20px 20px;
  overflow: hidden;
}

.footer-overlay,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--para-font);

  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col p {
  font-size: 16px;
  font-family: var(--para-font);
}
.footer-col ul li {
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--para-font);
}
.footer-col form {
  display: flex;
  margin-top: 10px;
}
.footer-col form input {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 4px 0 0 4px;
}
.footer-col form button {
  padding: 10px 15px;
  border: none;
  background: #ffd54f;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 5px;
  background-color: #ffffff;
  color: var(--main-color);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a i {
  font-size: 18px;
}

ul li a i {
  transition: transform 0.3s, color 0.3s;
}

ul li a:hover i {
  transform: translateX(5px);
  color: #007bff;
}

.social-icons a:hover {
  background-color: var(--main-color);
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}
.footer-col img {
  max-height: 80px;
  height: auto;
  margin-bottom: 20px;
}
/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col form {
    flex-direction: column;
  }
  .footer-col form input,
  .footer-col form button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1600px) {
  .icon-side {
    top: 10%;
  }
  .icon-side-1 {
    top: 10%;
  }
  .icon-side-1 img {
    width: 100px;
    height: 100px;
  }
  .icon-side img {
    width: 100px;
    height: 100px;
  }
  .icon-right-side {
    right: 20px;
    top: 10%;
  }
  .icon-right-side img {
    width: 100px;
    height: 100px;
  }
  .icon-side-rt {
    right: 20px;
    top: 10%;
  }
  .icon-side-rt img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1280px) {
  .navbar-nav ul {
    gap: 0px !important;
  }
  .navbar-nav a {
    font-size: 13px !important;
  }
}
@media (max-width: 1200px) {
  .icon-side {
    top: 10%;
  }
  .icon-side-1 {
    top: 10%;
  }
  .icon-side-1 img {
    width: 80px;
    height: 80px;
  }
  .icon-side img {
    width: 80px;
    height: 80px;
  }
  .icon-right-side {
    right: 20px;
    top: 10%;
  }
  .icon-right-side img {
    width: 80px;
    height: 80px;
  }
  .icon-side-rt {
    right: 20px;
    top: 10%;
  }
  .icon-side-rt img {
    width: 80px;
    height: 80px;
  }
  .clouds {
    margin-top: -240px;
  }
}
@media (max-width: 1399.98px) and (min-width: 992px) {
  .card-btn {
    padding: 3px 12px;
    font-weight: 400;
    font-size: 12px;
    width: fit-content;
  }
  .child-img {
    height: 150px;
  }
}
@media (max-width: 575px) {
    .clouds {
        margin-top: -60px !important;
    }
}