* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

body {
  overflow-x: hidden;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 400;
}

header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 10;
}

#header.hidden {
  opacity: 0;
  transform: translateY(-100%);

  transition: all 0.3s ease-in;
}

#header2.active {
  opacity: 1;

  transition: all 0.3s ease-in;
  transform: translateY(0);
}

#header {
  transition: all 0.3s ease-in;
  opacity: 1;
}

#header2 {
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in;
  opacity: 0;
  transform: translateY(-100%);
  z-index: 20;
}

header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

header .container-2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-section span {
  font-weight: bold;
  font-size: 13px;
}

.center-nav-button {
  background-color: black;
  color: white;
  border: none;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  transform: translateY(-58px);
  font-weight: 550;
}

.nav-items {
  display: flex;
  /* position: relative; */
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease-in;
}

.nav-items-2 {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 20px;
}

.nav-items-3 {
  display: flex;
  flex-direction: row-reverse;
  justify-items: center;
  align-items: center;
  gap: 20px;
}

.center-nav-button-2 {
  background-color: black;
  color: white;
  border: none;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 550;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.svg-icon {
  transition: all 0.3s ease;
}
.nav-items:hover .svg-icon {
  transform: translateY(-12px);
  transition: all 0.3s ease;
}

.center-nav-button-2:hover {
  background-color: #ffffff;
  color: black;
  transition: all 0.3s ease;
  border: 1px solid black;
}

.nav-items:hover .center-nav-button {
  background-color: #ffffff;
  color: black;
  transition: all 0.3s ease;
  border: 1px solid black;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.right-nav-button {
  font-size: 11px;
  font-weight: 550;
}

.marquee-container {
  position: absolute;
  bottom: 22px;
  width: 100%;
  overflow: hidden;
  background-color: #fffabd;
  border: 1px solid #000000;
  padding: 10px 0;
  z-index: 9;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.dropdown-menu {
  position: absolute;
  top: 130px;
  background-color: white;
  border: 1px solid #000000;
  /* padding: 10px 8px; */
  box-shadow: 10px 10px 12px -8px rgba(0, 0, 0, 0.38);
  z-index: 1000;
  border-radius: 10px;
  transition: all 0.4s ease-in;
  font-size: 14px;
  display: none;
}

.dropdown-menu-2 {
  position: absolute;
  top: 111px;
  left: 172px;
  background-color: white;
  border: 1px solid #000000;
  /* padding: 10px 8px; */
  box-shadow: 10px 10px 12px -8px rgba(0, 0, 0, 0.38);
  z-index: 1000;
  border-radius: 10px;
  display: none;
}

.menu-card {
  width: 100%;
  min-width: 220px;
  max-width: 384px;
  /* Equivalent to max-w-sm */
  background-color: white;
  padding: 1rem;
  box-shadow: var(--card-shadow);
  border-radius: 10px;
  /* Equivalent to rounded-3xl */
}

.arrow-circle-drop {
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: 900;
  padding-top: 1px;
  transition: transform 0.3s ease;
  color: #000;
}

.arrow-circle-drop:hover {
  background-color: #000;
  color: white;
  font-size: 18px;

  transition: all 0.3s ease-in;
}

/* 4. Primary Action Button */
.main-button {
  background-color: #66b3f5;
}

.main-button-green {
  background-color: #b2cb4a;
}

.main-button-red {
  background-color: #f88076;
}

.main-button-orange {
  background-color: #fdaf32;
}

.main-button-green,
.main-button-red,
.main-button,
.main-button-orange {
  width: 100%;
  color: white;
  font-weight: 500;
  padding: 6px 8px 6px 20px;
  margin-bottom: 1rem;
  border-radius: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}
.main-button-green span,
.main-button-red span,
.main-button span,
.main-button-orange span {
  height: 18px;
}

.main-button:hover,
.main-button-green:hover,
.main-button-red:hover,
.main-button-orange:hover {
  background-color: black;
  transform-origin: left;
  width: 94%;
  transition: all 0.3s ease;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 13px;
}

.menu-item {
  display: flex;
  gap: 8px;
  padding: 5px;
  color: #000000 !important;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
  cursor: pointer;
}

.arrow-circle-sub {
  background-color: #66b3f5;
}

.arrow-circle-sub-green,
.arrow-circle-sub,
.arrow-circle-sub-red,
.arrow-circle-sub-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;

  color: white;
  vertical-align: middle;
}
.header-1 .arrow-circle-sub-green,
.header-1 .arrow-circle-sub,
.header-1 .arrow-circle-sub-red,
.header-1 .arrow-circle-sub-orange {
  padding-top: 2px;
}

.arrow-circle-sub-red {
  background-color: #f88076;
}

.arrow-circle-sub-orange {
  background-color: #fdaf32;
}

.arrow-circle-sub-green {
  background-color: #b2cb4a;
}

.arrow-circle-sub:hover,
.arrow-circle-sub-green:hover,
.arrow-circle-sub-red:hover,
.arrow-circle-sub-orange:hover {
  background-color: #000;
  font-size: 16px;
}

.menu-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* Equivalent to space-x-3 */
  width: 100%;
}

.menu-link .arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  stroke-width: 3;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Hero_Start */
.hero {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-bg {
  min-height: 510px;
  max-height: 510px;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: -59px;
}

/* card styling */
.card {
  width: 280px;
  background: #fff;
  border: 1px solid #040404;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.card img {
  transform-origin: center;
  max-height: 260px;
  width: 260px;
  padding: 20px 0px;
  object-position: left;
  transition: all 0.3s ease-in;
}

.tag {
  line-height: 1.4;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #66b3f5;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  z-index: 10;
}
.tag-2 {
  line-height: 1.4;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #66b3f5;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  z-index: 10;
}

.tag-orange {
  line-height: 1.4;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fdaf32;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  z-index: 10;
}

.side-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #66b3f5;
  font-weight: bold;
  top: 0;
  bottom: 0;
  font-size: 0.8rem;
  font-family: "GillSansNova-Bold", sans-serif;
}

.side-text.left {
  left: 0px;
}

.side-text.right {
  right: 0px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content p {
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.4;
}

.date {
  font-size: 0.8rem;
  color: #999;
  text-align: right;
  padding: 0 10px 10px 0;
}

/* //slider styling */
.mySwiper {
  height: 400px !important;
}

.mySwiper .swiper-slide {
  height: 380px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
}

.mySwiper2 .swiper-slide {
  height: 320px !important;
  /* Each slide fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #a3a3a3 !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #121212 !important;
  /* active color */
  opacity: 1;
}

/* --- Navigation buttons --- */

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  /* arrow icon color */
  background: #111111d4;
  /* button background */
  width: 40px !important;
  /* size */
  height: 40px !important;
  border-radius: 50%;
  /* circular buttons */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.swiper-pagination {
  bottom: 0px !important; /* move it up or down */
  position: absolute;
  z-index: 10;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  /* smaller arrow icon */
  font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-button-next {
  right: 40px !important;
}

.swiper-button-prev {
  left: 40px !important;
}

/* second-section */

.section-2 {
  padding: 60px 0px 0px 0px;
}

.section-2 .container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.section-2 .tab {
  width: 100%;
  border: 1px solid black;
  border-radius: 8px;
  background-color: #fff35b;
  padding: 20px 40px;
  row-gap: 10px;
}

.section-2 .tab .tabs {
  width: 100%;
  border-radius: 100px;
  background-color: #ffffff;
  padding: 7px 25px;
  margin-right: 10px;
  font-size: 13px;
}

.heading-1 {
  width: 100%;
  padding-left: 16px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.grid-box {
  padding: 60px 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.card-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
  background: #fff;
  position: relative;
  text-align: center;
}

.card-2 img {
  z-index: 9;
  position: relative;
  max-height: 300px;
  width: 300px;
  transform: scale(1.01);
  transition: all 0.3s ease-in;
}

.people-mobile {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  display: block;
  z-index: 8;
  bottom: 0;
}

.side-text-2 {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #66b3f5;
  font-weight: bold;
  top: -130px;
  bottom: 0;
  font-size: 0.8rem;
}

.side-text-2.left {
  left: 0px;
}

.side-text-2.right {
  right: 0px;
}

.inner-tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.inner-tabs {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 13px;
  background-color: #f6f6f6;
}

.grid-sec {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.grid-bg {
  width: 100%;
  display: block;
  position: absolute;
  object-fit: cover;
  min-height: 700px;
  max-height: 700px;
}

.got-out {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  top: 40px;
}

.people {
  width: 100%;
}

.people-img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  bottom: 220px;
  pointer-events: none;
}

.screen-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.row-one {
  display: flex;
  gap: 100px;
}

.row-two {
  transform: translateX(10%);
  display: flex;
  gap: 400px;
}

.screen {
  position: relative;
  z-index: 10;
}

.contai {
  position: relative;
  width: 180px;
  height: 180px;
}

.contai-2 {
  position: relative;
  width: 180px;
  height: 180px;
}

.board-2 {
  position: absolute;
  top: 80px;
  left: 120px;
  width: 244px;
  height: 150px;
  background: white;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board {
  position: absolute;
  top: 80px;
  left: 120px;
  width: 244px;
  height: 150px;
  background: white;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board::after {
  content: "";
  position: absolute;
  bottom: -60.7px;
  left: 50%;
  background-color: white;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
  width: 8px;
  height: 60px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.board-2::after {
  content: "";
  position: absolute;
  bottom: -60.8px;
  left: 50%;
  background-color: white;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
  width: 8px;
  height: 60px;

  transform: translateX(-50%);
}

.arrow-screen {
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #000;
  width: 29px;
  height: 29px;
  font-size: 18px;
  font-weight: 900;
  padding-top: 1px;
  transition: transform 0.3s ease;
  color: #000;
}

.arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  top: 15px;
  left: 45px;
  width: 130px;
  height: 130px;
  background: #66b3f5;
  border-radius: 50%;
  color: white;

  line-height: 1.6;
  text-align: center;
  padding-top: 10px;
}

.circle-2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  bottom: -160px;
  left: 100px;
  width: 130px;
  height: 130px;
  background: #66b3f5;
  border-radius: 50%;
  color: white;
  line-height: 1.6;
  text-align: center;
  padding-top: 10px;
}

.circle-3 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  top: 15px;
  right: -260px;
  width: 130px;
  height: 130px;
  background: #66b3f5;
  border-radius: 50%;
  color: white;

  line-height: 1.6;
  text-align: center;
  padding-top: 10px;
}

/* Hover effect */
.board:hover {
  border-color: black;
  /* change main border */
  /* slight lift */
}

.board:hover::after {
  border-color: black;
}

.board:hover .arrow-screen {
  color: white;
  background-color: #000;
  transition: all 0.1s ease-in;
}

.svg-text {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.section-5 {
  background-color: #fff35b;
}

.section-5 .container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.img-row {
  display: flex;
  gap: 20px;
}
.img-row .first-img {
  width: 187px;
  height: 149px;
}
.img-row .sec-5-2 {
  height: 166px;
}

.section-5-inner {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.section-5-inner .content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 1.8;
}

.sec-5-inner-tab {
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  background-color: #f6f6f6;
}

.section-6 {
  padding: 60px 0px;
}

.view-more-btn {
  position: relative;
  display: inline-flex;
  background-color: white;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50px;
  padding-left: 16px;
  height: fit-content;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn-foot {
  position: absolute;
  display: inline-flex;
  background-color: white;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50px;
  padding-left: 16px;
  height: fit-content;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  right: 6px;
  bottom: -14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
  padding-bottom: 3px;
}

.arrow-circle-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  border: 1px solid #000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
  padding-bottom: 3px;
}

.view-more-btn span {
  margin-right: 10px;
}

.view-more-btn:hover {
  background-color: #ececec;
}

.view-more-btn:hover .arrow-circle {
  background-color: black;
  color: white;
}

.view-more-btn-foot span {
  margin-right: 10px;
}

.view-more-btn-foot:hover {
  background-color: #ececec;
}

.view-more-btn-foot:hover .arrow-circle {
  background-color: black;
  color: white;
}

.section-6-top {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: relative;
  padding: 0px 20px;
}

.card-3 {
  width: 227px;
  border: 1px solid #000;
  border-radius: 10px;
  border-bottom-right-radius: 16px;
  position: relative;
  background-color: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 202px;
  background-color: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #555;
  transform: scale(0.85);
  transition: all 0.2s ease-in;
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #fdaf32;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 10;
}

.content {
  padding: 12px;
}

.title {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 6px;
}

.price {
  font-size: 14px;
  color: #000;
}

.price small {
  font-size: 12px;
  color: #555;
}

.arrow-btn {
  position: absolute;
  bottom: -1px;
  right: -1px;
  border: 1px solid #000;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding-top: 3px;
  font-size: 20px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.card-3:hover .arrow-btn {
  background: #000;
  color: #fff;
  transition: all 0.2s ease-in;
  font-size: 24px;
}

.card-3:hover {
  transition: all 0.2s ease-in;
  background-color: #eeeeee;
}

.card-3:hover .image-container {
  transform: scale(1);
  transition: all 0.2s ease-in;
}

.sec-6-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 30px;
  column-gap: 15px;
  transform: translateY(-20px);
}

.footer {
  background-color: #fff35b;
}

.footer .container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 20px;
  justify-content: center;
  display: flex;
  gap: 60px;
}

.footer .header {
  display: flex;
  height: unset;
  gap: 15px;
}

.logo {
  width: 120px;
  height: 120px;

  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.main-content {
  display: flex;
  gap: 40px;
}

.news-section {
  position: relative;
  flex: 1;
}

.news-title {
  font-size: 32px;
  font-weight: bold;
  text-align: right;

  letter-spacing: -0.4px;
}

.news-list {
  background-color: white;
  border-radius: 15px;
  border: 1px solid black;
  padding: 30px;
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #000000;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  margin-right: 10px;
  color: #707070;
}

.foot {
  top: -20px;
  left: 365px;
}

.sidebar {
  flex: 1;
  padding-top: 20px;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.action-btn {
  background-color: white;
  border: 2px solid #1a1a1a;
  min-width: 141px;
  border-radius: 25px;
  padding: 4px 20px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.action-btn:hover {
  background-color: #1a1a1a;
  color: white;
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.category-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.category-item:hover::before {
  background-color: black;
  color: white;
}

.mascots {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  gap: 10px;
  margin: 30px 0;
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 10px;
  font-size: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-weight: bold;
  text-align: right;
  font-size: 11px;
  color: #000000;
}

.bottom-container {
  display: flex;
  justify-content: flex-end;
}

.off-canvas-menu {
  background-color: white;
  padding: 30px 20px 20px 20px;
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100%;
  transition: right 0.3s ease;
  box-sizing: border-box;
  z-index: 1000;
  overflow-y: auto;
}

.off-canvas-menu.open {
  right: 0;
}

.search-menu {
  display: flex;
  background-color: white;
  padding: 12px 24px 12px 12px;
  border: 2px solid #dedede;
  justify-content: space-between;
  border-radius: 100px;
  margin-top: 40px;
}

.search-menu input {
  border: none;
  width: 100%;
  padding: 0px 10px;
  font-size: 20px;
}

.search-menu input:focus {
  outline: none;
}
.search-menu-box {
  display: flex;
  background-color: white;
  padding: 12px 24px 12px 12px;
  border: 2px solid #dedede;
  justify-content: space-between;
  border-radius: 100px;
  width: 100%;
  min-width: 650px;
}

.search-menu-box input {
  border: none;
  width: 100%;
  padding: 0px 10px;
  font-size: 13px;
}

.search-menu-box input:focus {
  outline: none;
}

.sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
}
.sub-container {
  display: flex;
  justify-content: space-between;
}

.sub-menu-list li .svg-blue {
  fill: #66b3f5;
}

.sub-menu-list li .svg-green {
  fill: #b2cb4a;
}

.sub-menu-list li .svg-red {
  fill: #f88076;
}

.sub-menu-list li .svg-orange {
  fill: #fdaf32;
}

.sub-menu-list li svg:hover {
  fill: #000;
}

.sub-menu-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-button-off {
  width: 65%;
  color: white;
  font-weight: 500;
  padding: 4px 8px 4px 20px;
  margin-bottom: 1rem;
  border-radius: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.main-button-off svg path:first-child {
  fill: white;
}

.main-button-off svg path:last-child {
  fill: rgb(0, 0, 0);
}

.main-button-off svg:hover path:first-child {
  fill: #000;
}

.main-button-off svg:hover path:last-child {
  fill: #ffffff;
}
.section-5-inner .img-row .second-image {
  width: 126px !important;
}
.bubble {
  position: relative;
  background-color: #111;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 15px;
}

.bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #111;
}

/* .contai-page-3 {
  position: relative;
  width: 244px;
 
}

.board-page-3 {
  position: relative;
  width: 244px;
  height: 160px;
  background: white;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board-page-3::after {
  content: "";
  position: absolute;
  bottom: -60.8px;
  left: 50%;
  background-color: white;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
  width: 8px;
  height: 60px;
  transition: all 0.3s ease-in;
  transform: translateX(-50%);
}

.arrow-screen-page-3 {
  display: flex;
  background-color: rgb(0, 0, 0);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #000;
  width: 29px;
  height: 29px;
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 3px;
  transition: transform 0.3s ease;
  color: #ffffff;

}

.arrow-page-3 {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 14px;
}
.blue-circle {
  position: absolute;
  background: #66B3F5;
  border-radius: 50%;
  color: white;
  z-index: 10;
  font-size: 14px;
  width: 131px;
  height: 138px;
  display: flex;
  justify-content: center;
  align-items: center;
 left: -48px;
 top: -65px;
} */
.speech-bubble {
  position: relative;
  background-color: #fdaf32;
  color: #000000;
  padding: 12px 80px;
  border-radius: 30px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  transform: translate(0, -20px);
  height: fit-content;
  border: 2px solid #000;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #000000;
}
.speech-bubble::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #fdaf32;
  z-index: 4;
}

.speech-bubble-yellow {
  top: 40px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 243, 91, 1);
  color: #000000;
  padding: 10px 60px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;

  height: fit-content;
  border: 2px solid #000;
}

.speech-bubble-yellow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 111%;
  transform: translateY(-50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #000000;
}
.speech-bubble-yellow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 104%;
  transform: translateY(-50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid rgba(255, 243, 91, 1);
  z-index: 4;
}

.speech-bubble-black {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  padding: 10px 80px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;

  height: fit-content;
  border: 2px solid #000;
}

.speech-bubble-black::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 111%;
  transform: translateY(-50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #000000;
}
.speech-bubble-black::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 104%;
  transform: translateY(-50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid rgb(0, 0, 0);
  z-index: 4;
}

.search-box {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #f6f6f6;
  z-index: 9999;
  transition: all 0.4s ease-in;
}
.search-box-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding-top: 57px;
}
.mid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
#cross {
  margin-top: 4px;
}
.cart-0 {
  right: -9px;
  top: -3px;
  position: absolute;
  background: #dedede;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}
.top-6-img{
  width: 100%;
  max-width: 390px;
  

}
.center-logo-img .header-2-logo {
width: 98px;
transform: none !important;
}
@media (min-width: 1024px) and (max-width: 1350px) {
  .grid-box {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 34px;
  }

  .section-2 .container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sec-6-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 15px;
    transform: translateY(-20px);
  }

  /* .section-5-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }

  .section-5-inner .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
  } */

  .img-row {
    display: flex;
    gap: 0px;
    align-items: flex-end;
  }

  .logo-svg-5 {
    transform: translateX(-10px);
        height: 190px;
    display: flex;

  }

  .categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .large-hide {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg-hide {
    display: none;
  }
  .card-2-img-cont {
    border: 1px solid #a7a7a7;
    border-radius: 14px;
    max-height: 300px;

    width: 300px;
    transition: all 0.4s ease-in;
  }
  .card-2:hover .card-2-img {
    transform: scale(0.85);
    transition: all 0.4s ease;
  }
  .card img:hover {
    transform: scale(1.6) translateY(26px) translateX(10px);
    transition: all 0.4s ease;
  }
  .mt-2 {
    margin-top: 4px;
  }
  .bubble {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    line-height: 1.5;
  }
  .category-item::before {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    font-size: 12px;
  }
  /* .mySwiper.swiper {
 padding-right: calc(-0px + 50vw);
}*/
  .swiper-wrapper {
    justify-content: center;
  }
  .right-section {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media (min-width: 1350px) {
  .xl-hide {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .md-hide {
    display: none !important;
  }

  .mt-5 {
    margin-top: 20px;
  }

  header .container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
    max-width: 1350px;
    margin: 0 auto;
    
  }

  .section-2 .tab {
    border: 1px solid black;
    border-radius: 8px;
    background-color: #fff35b;
    padding: 20px 40px;
    row-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .grid-box {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .sec-6-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 15px;
    transform: translateY(-20px);
  }

  .section-2 .tab .tabs {
    width: fit-content;
    border-radius: 100px;
    background-color: #ffffff;
    padding: 7px 25px;
    margin-right: 10px;
  }

  .section-2 .container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .people-img {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    bottom: 0px;
    pointer-events: none;
  }

  .section-5-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .section-5-inner .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
  }

  .img-row {
    display: flex;
    gap: 0px;
    align-items: flex-end;
  }

  .logo-svg-5 {
    transform: translateX(-10px);
  }

  .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .footer .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .footer .header {
    display: flex;
    gap: 15px;
    height: unset;
    margin-bottom: 0px;
  }

  .action-btn {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border: 2px solid #1a1a1a;
    min-width: unset;
    max-width: 200px;
    align-items: center;
    border-radius: 25px;
    padding: 4px 4px 4px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .category-item::before {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    font-size: 12px;
  }

  .sidebar {
    flex: 1;
    padding-top: 0px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
    font-size: 12px;
    margin: 0px;
    flex-wrap: wrap;
  }

  .copyright {
    font-weight: bold;
    text-align: center;
    font-size: 11px;
    color: #000000;
  }

  .bottom-container {
    display: flex;
    justify-content: space-between;
  }

  .bubble {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (min-width: 360px) and (max-width: 768px) {
  .sm-hide {
    display: none !important;
  }

  .mt-5 {
    margin-top: 20px;
  }
  .left-section svg,
  .left-section img {
    width: 100px;
  }
  header .container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
    max-width: 1350px;
    margin: 0 auto;
    
  }

  .section-2 .container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-2 .tab {
    border: 1px solid black;
    border-radius: 8px;
    background-color: #fff35b;
    padding: 20px 20px;
    row-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .section-2 .tab .tabs {
    width: fit-content;
    border-radius: 100px;
    background-color: #ffffff;
    padding: 4px 13px;
    margin-right: 10px;
  }

  .grid-box {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }

  .people-img {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    bottom: 0px;
    pointer-events: none;
  }

  .sec-6-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 20px;
    transform: translateY(-20px);
  }

  .section-5-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    gap: 0px;
  }

  .section-5-inner .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    padding: 0px 20px;
  }

  .img-row {
    display: flex;
    gap: 0px;
    align-items: flex-end;
  }

  .logo-svg-5 {
    transform: translateX(-10px);
  }

  .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .footer .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .footer .header {
    display: flex;
    gap: 15px;
    height: 67px;
    margin-bottom: 0px;
  }

  .action-btn {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border: 2px solid #1a1a1a;
    min-width: unset;
    max-width: 200px;
    align-items: center;
    border-radius: 25px;
    padding: 4px 4px 4px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .category-item::before {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    font-size: 12px;
  }

  .sidebar {
    flex: 1;
    padding-top: 0px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
    font-size: 12px;
    margin: 10px 0;
    flex-wrap: wrap;
  }

  .copyright {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    color: #000000;
  }

  .foot {
    top: -20px;
    left: 348px;
  }

  .card-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 180px;
    background: #fff;
    position: relative;
    text-align: center;
  }
  .card-2 img {
    z-index: 9;
    position: relative;
    height: 100%;
    width: 180px;
    transition: all 0.3s ease-in;
  }

  .bottom-container {
    display: flex;
    justify-content: space-between;
  }

  .card-3 {
    width: 180px;
    border: 1px solid #000;
    border-radius: 10px;
    border-bottom-right-radius: 16px;
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
  }

  .people-mobile {
    position: absolute;
    margin: 0 auto;
    display: block;
    z-index: 8;
    bottom: 33px;
  }

  .swiper-button-next {
    right: 20px !important;
  }

  .swiper-button-prev {
    left: 20px !important;
  }
  .grid-bg {
    width: 100%;
    display: block;
    position: absolute;
    object-fit: cover;
    min-height: 630px !important;
    height: auto;
    top: 104px;
  }
  .grid-sec {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
  }
  .footer-row .header .logo img {
    width: 100px;
  }
  .footer-row .header .svgss svg {
    width: 200px;
  }
  .section-5-inner .img-row img {
    width: 140px;
  }
  .center-logo-img img {
    width: 100px;
    transform: translateY(20px) !important;
  }
  .center-logo-img .header-2-logo {
    width: 56px;
  
  }
  .right-actions .profile-svg {
    width: 30px;
    height: 30px;
  }
  .right-actions .cart-svg {
    width: 35px;
    height: 30px;
  }
  .header-1 .container .right-section {
    transform: translateY(-20px);
  }
  .slider-container {
    padding-top: 10px !important;
  }
  .section-6-top {
    padding: 0px !important;
  }
  .bubble {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.5;
  }
  .arrow-circle {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
    padding-bottom: 3px;
  }
  .view-more-btn {
    background-color: #ececec;
  }
  .view-more-btn-foot {
    background-color: #ececec;
  }
  .tag-2 {
    line-height: 1.4;
    position: absolute;
    top: -10px;
    right: 0px;
    background: #66b3f5;
    color: #fff;
    padding: 2px 10px;
    font-size: 0.8rem;
    border-radius: 2px;
    z-index: 10;
  }
  .speech-bubble-black {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    padding: 8px 60px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;

    height: fit-content;
    border: 2px solid #000;
  }
  .cart-01 {
    right: -19px;
    top: -13px;
    position: absolute;
    background: #dedede;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
}

@media (min-width: 360px) and (max-width: 450px) {
  .card-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 160px;
    background: #fff;
    position: relative;
    text-align: center;
  }

  .card-2 img {
    z-index: 9;
    position: relative;
    height: 160px;
    width: 160px;
    transition: all 0.3s ease-in;
  }
  .inner-tabs {
    padding: 2px 6px;
    border-radius: 100px;
    font-size: 11px;
    background-color: #f6f6f6;
  }
  .card-3 {
    width: 160px;
    border: 1px solid #000;
    border-radius: 10px;
    border-bottom-right-radius: 16px;
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
  }
  .title {
    font-size: 12px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 6px;
  }
  .image-container {
    height: 160px;
  }

  .section-5-inner .img-row .first-img {
    width: 140px;
    height: 160px;
    object-fit: contain;
  }
  .section-5-inner .img-row .second-image {
    width: 100px !important;
    height: 160px;
    object-fit: contain;
  }
  .section-5-inner .img-row .section-5-logo {
    width: 110px;
  }
  .section-5 .container .sec5-svg {
    width: 300px;
  }

  .bubble {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    line-height: 1.5;
  }
  .mascots img {
    width: 176px;
  }
  .arrow-btn {
    position: absolute;
    bottom: -1px;
    right: -1px;
    border: 1px solid #000;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    padding-top: 3px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
  }
}
