@font-face {
  font-family: canopee;
  src: url("../fonts/AmoretSans-Regular.ttf");
}

:root {
  --primary-color: #f1eee9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  font-family: "Manrope", sans-serif;
  height: 100%;
  background: var(--primary-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.website-content {
  position: relative;
  width: 100%;
  height: 85vh;
  padding: 1em;
  z-index: 1;
  /* overflow: hidden; */
  background: var(--primary-color);
}

.hero-img {
  margin-top: 4em;
  width: 100%;
  overflow: hidden !important;
  height: auto;
}


/* ----------------------------- */

/* slider area */
.hero-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  clip-path: inset(0 round 20px);
}

.hero-img .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  overflow: hidden !important;
}

.hero-img .slide img {
  width: 100%;
  overflow: hidden !important;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  border-radius: inherit;;
  border: 1px solid #00000023;
}

/* text stays above slides */
.hero-text {
    /* background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding-block: 10px;
  padding-inline: 20px;
  border: 1px solid rgba(255, 255, 255, 0.151); */
  /* backdrop-filter: blur(5px); */
  /* -webkit-backdrop-filter: blur(5px); */
  position: absolute;
  top: 88% !important;
  left: 7%;
    font-size: 0.8em !important;
  /* transform: translate(-50%, -50%); */
  text-shadow: 2px 2px 10px rgb(0, 0, 0);
  /* text-align: center; */
  color: #ffffff;
  z-index: 10;
  width: 55%;
  letter-spacing: 2px;
  font-family: canopee;
  line-height: 2.6rem;
}

.contact-btn-2 {
  margin-top: 1rem;
  background: white;
  color: black;
  font-size: 14px !important;
  padding: 20px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.contact-btn-2:hover {
  background: black;
  color: white;
  transition: all 0.3s ease;
}

/* ------------------------- */

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1em;
  color: var(--primary-color);
  z-index: 1000;
  mix-blend-mode: difference;
  pointer-events: auto;
}

nav > div {
  flex: 1;
}

.logo {
  text-align: center;
}

.logo img {
  filter: invert(1);
  transition: filter 0.3s ease;
}

.overlay-active .logo img {
  filter: invert(1);
}

.toggle-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-transform: capitalize;
}

.burger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75em 2em 1.5em 2em;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  border: none;
  width: 28px;
  height: 20px;
  transition: all 250ms ease-out;
  cursor: pointer;
}

.burger:before,
.burger:after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  background: var(--primary-color);
  transition: all 250ms ease-out;
  will-change: transform;
}

.burger:before {
  transform: translateY(-3px);
}

.burger:after {
  transform: translateY(3px);
}

.active.burger:before {
  transform: translateY(0) rotate(45deg);
}

.active.burger:after {
  transform: translateY(0) rotate(-45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  background: #141412;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  z-index: 1;
  will-change: transform;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 2.5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-item {
  display: flex;
  cursor: pointer;
  /* clip-path: polygon(0, 0, 100% 0, 100% 100%, 0 100%); */
}

.menu-item p {
  position: relative;
  text-align: center;
  font-family: canopee;
  font-size: 5vw;
  line-height: 80%;
  will-change: transform;
  transition: all 0.3s ease;
}

.menu-item p:hover {
  letter-spacing: 0.06em;
}


.sub-nav {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5em;
  opacity: 0;
}

.sub-nav p {
  font-family: canopee;
  font-size: 15px;
  color: var(--primary-color);
}

.contact-btn {
  display: inline-block;
  padding: 0.8em 1.3em;
  border: 2px solid var(--primary-color);
  border-radius: 2em;
  color: #cdc6be;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  transition: all 0.3s ease;
}


.contact-btn:hover {
  background: var(--primary-color);
  color: #141412;
}

.contact-btn-2:hover {
  background: var(--primary-color);
  color: #141412;
}

/* .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.4em;
  width: 70%;
  line-height: 60px !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-family: canopee;
} */

.about-us {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: space-between;
  padding-block: 80px;
  /* background-color: #8a7b6a; */
  background-image: url("../images/about-back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary-color);
  padding-inline: 40px;
  gap: 60px;
  margin-top: 120px;
}

.center-section {
  text-align: center;
  width: 50%;
}

.right-section {
  width: 25%;
}

.left-section {
  width: 25%;
}

.right-section img {
  width: 100%;
}

.left-section img {
  width: 100%;
}

.center-section h2 {
  font-family: canopee;
  font-size: 36px;
  margin-bottom: 20px;
}

.center-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #ece7e2;
  margin: 10px auto 0;
  border-radius: 2px;
}

.center-section p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 32px;
  color: #ece7e2;
}

.partners {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.partners-logos {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.logo-item {
  padding: 10px;
  width: 20%;
}

.partners {
  padding-inline: 40px;
  padding-block: 80px;
  border-bottom: 1px solid #8a7b6c3f;
}

.partners h3 {
  font-family: canopee;
  font-size: 36px;
  margin-bottom: 20px;
}

.partners-logos {
  margin-top: 40px;
}

.logo-item img {
  width: 100%;
}

.logo-item {
  background-color: #e6ddd463;
  border-radius: 10px;
  border: 1px solid #e6ddd48e;
}

@media (max-width: 900px) {
  .logo a {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .contact-btn {
    padding: 0em;
    border: none;
    font-size: 12px;
  }
  .logo img {
    width: 140px;
  }
}

.projects {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 80px 40px;
}

.section-project-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.section-title {
  font-family: canopee;
  font-size: 36px;
}

.section-desc {
  color: #555;
  font-size: 16px;
  line-height: 30px;
  max-width: 700px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 40px;
}

.item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  border: 1px solid #e6ddd48e;
}

#item-img {
  position: relative;
}

#item-content {
  content: "";
  width: 100%;
  height: auto;
  position: absolute;
  top: 85%;
  padding-inline: 20px;
  display: flex;
  border-radius: 10px 10px 0px 0px;
  justify-content: center;
  flex-direction: column;
  bottom: 0%;
  left: 0%;
}

#item-content h4 {
  font-family: canopee;
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}

#item-content span {
  font-size: 14px;
  color: #ece7e2;
  font-weight: 500;
}

#item-content-2 {
  content: "";
  width: 100%;
  height: auto;
  position: absolute;
  top: 70%;
  padding-inline: 20px;
  display: flex;
  border-radius: 10px 10px 0px 0px;
  justify-content: center;
  flex-direction: column;
  bottom: 0%;
  left: 0%;
}

#item-content-2 h4 {
  font-family: canopee;
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}

#item-content-2 span {
  font-size: 14px;
  color: #ece7e2;
  font-weight: 500;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.item:hover img {
  transform: scale(1.2);
}

.item.wide {
  grid-column: span 2;
}

.item.tall {
  grid-row: span 2;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-rows: 200px;
  }
}

/* ------------ Products ------------- */

/* --- SECTION LAYOUT --- */
.products-section {
  width: 100%;
  position: relative;
  border-top: 1px solid #8a7b6c3f;
  padding: 6rem 0;
}

.products-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  gap: 4rem;
}

/* --- LEFT (TITLES) --- */
.products-left {
  flex: 0 0 40%;
  position: sticky;
  top: 20vh; /* <— this makes it stay fixed */
  height: fit-content;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-titles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-titles li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 40px;
  font-family: canopee;
  border-bottom: 1px solid #141412;
  margin: 1.5rem 0;
  color: #777;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.product-titles li.active {
  color: #000;
  transform: translateX(8px);
}

/* --- RIGHT (IMAGES) --- */
.products-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.product-set {
  /* opacity: 0.2; */
  transform: translateY(50px);
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding-bottom: 3rem; /* space before divider */
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-set.active {
  opacity: 1;
  transform: translateY(0);
}

.product-set img {
  width: 100%;
  height: 100%;
  border: 1px solid #00000023;
  object-fit: cover;
  border-radius: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .products-wrapper {
    flex-direction: column;
    padding: 0 2rem;
  }
  .products-left {
    position: static;
    top: auto;
  }
}

footer {
  background: #141412;
  width: 100%;
  padding-inline: 40px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.top-footer {
  display: flex;
}

.footer-section-1 {
  width: 70%;
}
.side-footer-section {
  display: flex;
  width: 30%;
}
.footer-section-2 {
  width: 50%;
}
.footer-section-3 {
  width: 50%;
}
.footer-section-3 img {
  width: 100%;
}

.footer-section-1 h2 {
  font-family: canopee;
  font-size: 18px;
  line-height: 35px;
  color: #ece7e2;
    letter-spacing: 2px;
}

.footer-section-2 ul {
  list-style: none;
  padding: 0;
  line-height: 35px;
  color: var(--primary-color);
}

.footer-section-2 ul li a {
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

.footer-section-2 ul li a:hover {
  text-decoration: underline;
}
.contact-details ul {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.contact-details ul li a {
  display: flex;
  gap: 5px;
  font-size: 14px;
  align-items: center;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #ece7e233;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.footer-bottom p a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer-section-2 ul li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.products-right h3 {
  font-size: 18px;
  font-family: canopee;
  color: #141412;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 475px) {
  .sub-nav p{
    font-size: 12px;
  }
  #item-content-2 h4{
    font-size: 13px;
  }
  .toggle-btn span{
    display: none;
  }
  .products-right h3 {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    font-family: canopee;
    color: #141412;
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: block !important;
  }

  .hero-text {
    display: none;
  }

  .about-us {
    flex-direction: column;
    background-size: auto;
  }

  .left-section {
    display: none;
    width: 100%;
  }

  .center-section {
    width: 100% !important;
  }

  .right-section {
    display: none;
    width: 100%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners-logos {
    flex-direction: column;
  }

  .logo-item {
    width: 100% !important;
  }

  .contact-details ul {
    display: flex;
    flex-direction: column;
  }

  .product-titles li {
    font-size: 0.8rem;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 2rem;
  }

  .products-right {
    gap: 2rem;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
  .arrow{
    display: none;
  }
}

@media (max-width: 600px) {

    .arrow{
    display: none;
  }
    .products-right h3 {
    font-size: 18px;
        text-align: center;
    font-family: canopee;
    line-height: 30px;
    color: #141412;
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: block !important;
  }
  .hero-text {
    display: none;
  }

  .about-us {
    flex-direction: column;
    background-size: auto;
  }

  .left-section {
    display: none;
    width: 100%;
  }

  .center-section {
    width: 100% !important;
  }

  .right-section {
    display: none;
    width: 100%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners-logos {
    flex-direction: column;
  }

  .logo-item {
    width: 50%;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-right {
    gap: 2rem;
    width: 100%;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 725px) {

      .products-right h3 {
    font-size: 18px;
        text-align: center;
    font-family: canopee;
    line-height: 30px;
    color: #141412;
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: block !important;
  }

    .arrow{
    display: none;
  }

  .hero-text {
    display: none;
  }

  .about-us {
    flex-direction: column;
    background-size: auto;
  }

  .left-section {
    display: none;
    width: 100%;
  }

  .center-section {
    width: 100%;
  }

  .right-section {
    display: none;
    width: 100%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-right {
    gap: 2rem;
    width: 100%;
  }

  .item.tall {
    grid-row: span 3;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 785px) {

      .products-right h3 {
    font-size: 18px;
        text-align: center;
    font-family: canopee;
    line-height: 30px;
    color: #141412;
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: block !important;
  }

    .arrow{
    display: none;
  }
  .hero-text {
    display: none;
  }

  .about-us {
    flex-direction: column;
    background-size: auto;
  }

  .left-section {
    display: none;
    width: 100%;
  }

  .center-section {
    width: 100%;
  }

  .right-section {
    display: none;
    width: 100%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-right {
    gap: 2rem;
    width: 100%;
  }

  .item.tall {
    grid-row: span 3;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    /* flex-direction: column-reverse; */
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 899px) {
      .products-right h3 {
    font-size: 18px;
        text-align: center;
    font-family: canopee;
    line-height: 30px;
    color: #141412;
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: block !important;
  }
    .arrow{
    display: none;
  }
  .hero-text {
    display: none;
  }

  .left-section {
    width: 20%;
  }

  .center-section {
    width: 60%;
  }

  .right-section {
    width: 20%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-right {
    gap: 2rem;
    width: 100%;
  }

  .item.tall {
    grid-row: span 2;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 999px) {
  .hero-text {
    /* display: none; */
    font-size: 1em;
  }

  .left-section {
    width: 25%;
  }

  .center-section {
    width: 50%;
  }

  .right-section {
    width: 25%;
  }

  .partners {
    padding-block: 70px;
  }

  .partners h3 {
    font-size: 30px;
    text-align: center;
    line-height: 44px;
  }

  .section-project-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .grid {
    grid-auto-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .item.wide {
    grid-column: span 1;
  }

  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
  .products-left {
    width: 100% !important;
  }

  .product-set {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-right {
    gap: 2rem;
    width: 100%;
  }

  .item.tall {
    grid-row: span 2;
  }

  .products-section {
    padding: 4rem 0;
  }

  .footer-section-1 {
    width: 100% !important;
  }

  .side-footer-section {
    width: 100% !important;
  }

  .top-footer {
    /* flex-direction: column-reverse; */
    gap: 40px;
  }

  .footer-section-1 h2 {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 30px;
    gap: 20px;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 1200px) {
  .products-right h3 {
    display: none;
  }
  #item-img {
    height: -webkit-fill-available;
    width: auto;
  }
}

@media (max-width: 1340px) {
  .products-right h3 {
    display: none;
  }
}


/* Arrow buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 40px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  z-index: 20;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

/* small screens */
@media (max-width: 768px) {
  .arrow {
    font-size: 28px;
    padding: 6px 14px;
    left: 15px;
    right: 15px;
  }
}

@media (min-width: 1400px){
  .footer-section-1 h2{
    margin-right: 50px;
  }
}
