* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --headingFont: "Playfair Display", serif;
  --bodyFont: "Outfit", sans-serif;
}

.hidden {
  opacity: 0 !important;
  display: none !important;
}

.site-main{
	margin-top: -120px;
  /* width: calc(100% - 20px); */
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headingFont), serif;
}

h3 {
  font-size: 32px;
  font-family: var(--headingFont);
}

p,
span,
a {
  font-family: var(--bodyFont), sans-serif;
  padding: 0;
  margin: 0;
}
.brandIcon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: blinkFade 7s infinite ease-in-out;
}

@keyframes blinkFade {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  97% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: var(--bodyFont), sans-serif;
  background-color: #ffffff;
}
body *{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  overflow-x: hidden;
  z-index: 15;
  background: rgba(3, 0, 0, 0.33);
  box-shadow: 0 2px 8px rgba(9, 2, 2, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
  font-size: 20px;
}

.logo i {
  font-size: 28px;
  margin-right: 10px;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #8b4513;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-actions i {
  font-size: 20px;
  color: #333;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-actions i:hover {
  color: #8b4513;
}

.login-btn {
  margin-left: 20px;
  padding: 8px 20px;
  background-color: transparent;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  border-radius: 5px;
}

.login-btn:hover {
  background-color: #333;
  color: white;
}

.top-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 60px;
  color: white;
}

.nav-icon i {
  margin-right: 15px;
  font-size: 20px;
}

    html {
      scroll-behavior: smooth;
    }

#banner {
  width: 100vw;
  height: fit-content;
  background-image: url("<?php echo home_url(); ?>/wp-content/uploads/2025/09/Frame-2147226808-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 207px 0 0 147px;
  position: relative;
}

#banner .bannerWrapper {
  width: 100%;
  height: 100%;
}

#banner .bannerWrapper .banner-text {
  width: 100%;
  max-width: 830px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(167, 166, 166, 0.231372549);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 24px 60px;
  border-radius: 10px;
  color: white;
}

#banner .bannerWrapper .banner-text h1 {
  font-size: 64px;
  color: white;
}

#banner .bannerWrapper .banner-text h1 span {
  color: yellow;
}

#banner .bannerWrapper .banner-text p.banner-paragraph-text {
  margin-top: 16px;
  margin-bottom: 24px;
}

#banner .bannerWrapper .banner-text ul.banner-features {
	list-style-type: none;
  list-style-image: url("./listIcon.png");
  vertical-align: text-top;
  list-style-position: inside;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#banner .bannerWrapper .banner-text ul.banner-features li {
  font-weight: 300;
}



#banner .bannerWrapper .banner-text button.explore-btn {
  border: 1px solid white;
  background-color: transparent;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  font-family: var(--bodyFont);
  font-weight: 300;
  border-radius: 8px;
}

#banner .bannerFooter {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

#banner .bannerFooter .bannerFooterWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 8px;
  background-color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

#banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item h4 {
  font-size: 32px;
  line-height: normal;
  font-weight: 400;
}

#banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item span {
  font-weight: bold;
  font-size: 24px;
}

#banner .bannerFooter .bannerFooterWrapper .rounded1 {
  width: 60%;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}

#banner .bannerFooter .bannerFooterWrapper .rounded2 {
  width: 30%;
  padding: 18px 0;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

#banner .bannerFooter .bannerFooterWrapper .rounded2 h4 {
  font-size: 20px;
}

#browseByCategory {
  width: 100%;
  height: 100%;
  padding: 116px 0;
}

#browseByCategory .browseByCategory_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#browseByCategory .browseByCategory_wrapper .browseByCategoryHeader {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#browseByCategory .browseByCategory_wrapper .browseByCategoryHeader .iconBox {
  width: 76px;
  height: 72px;
  display: flex;
  align-items: end;
  justify-content: center;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper {
  width: 100%;
  max-width: 1095px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 90px;
  column-gap: 90px;
  row-gap: 50px;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem {
  width: 305px;
  padding-top: 31px;
  text-align: center;
  position: relative;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .icon {
  width: 102px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
	z-index:5;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card {
  width: 100%;
  padding: 12px;
  padding-top: 76px;
  background: linear-gradient(to bottom, #FFF1C7, #FFFFFF);
  text-align: center;
  border-radius: 16px;
  transition: all .3s ease;
  
}
#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card:hover {
  background: linear-gradient(to top, #FFF1C7, #FFFFFF);
  cursor: pointer;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card h3 {
  font-size: 20px;
  font-family: var(--headingFont);
  font-weight: 600;
  padding-bottom: 8px;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card p {
  font-size: 16px;
  font-weight: 300;
  font-family: var(--bodyFont);
}

#sectionThree {
  width: 100%;
  height: 100%;
  padding: 50px 150px;
  background-color: #FBF7EB;
}

#sectionThree .setionThreeWrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sectionThree .setionThreeWrapper aside.pictureSide {
  width: 100%;
  max-width: 526px;
}

#sectionThree .setionThreeWrapper aside.pictureSide h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-family: var(--headingFont);
  font-weight: 400;
}

#sectionThree .setionThreeWrapper aside.pictureSide p {
  font-family: var(--bodyFont);
  font-weight: 300;
}

#sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper {
  width: 100%;
  padding-top: 67px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 {
  display: flex;
  gap: 16px;
}

#sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 {
  display: flex;
  gap: 16px;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper {
  width: 798px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem .number {
  color: #C9C9C9;
  font-size: 60px;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem h4 {
  font-size: 24px;
  font-family: var(--headingFont);
  margin-bottom: 16px;
}

#sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem p {
  font-size: 16px;
  font-family: var(--bodyFont);
  font-weight: 300;
}

#smartProducts {
  width: 100%;
  height: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#smartProducts .exploreWrapper {
  width: 100%;
  max-width: 1621px;
}

#smartProducts .exploreWrapper .exploreProductHeader {
  width: 100%;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#smartProducts .exploreWrapper .exploreProductHeader img {
  width: 53px;
}



#trustedByClient {
  width: 100%;
  height: 805px;
  padding: 45px 10px;
  background-image: url(http://localhost/neilsPart/wp-content/uploads/2025/09/Rectangle-167.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

#trustedByClient .trustWrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

#trustedByClient .trustWrapper .trustHeader {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  color: white;
  margin-bottom: 100px;
}

#trustedByClient .trustWrapper .trustHeader .headerIcon {
  width: -moz-fit-content;
  width: fit-content;
}

#trustedByClient .trustWrapper .trustHeader h3 {
  color: white;
}

#trustedByClient .trustWrapper .trustHeader p {
  width: 100%;
  max-width: 555px;
  font-weight: 300;
  margin-top: 16px;
}

#trustedByClient .testimonialWraper {
  width: 100%;
}

#trustedByClient .testimonialWraper .slideWrapper {
  width: 100%;
  max-width: 1012px;
  margin: 0 auto;
  padding: 29px;
  background-color: #EDDDA9;
  border-radius: 16px;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure figcaption {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 46px;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person .details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person .details .personName {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--bodyFont);
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person .details .personCountery {
  font-size: 14px;
  font-weight: 300;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person .details .reating {
  display: flex;
  gap: 5px;
  color: #d4af37;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .indicatorWrapper {
  display: flex;
  gap: 10px;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .indicatorWrapper .indicator {
  width: 20px;
  height: 20px;
  background-color: rgba(212, 175, 55, 0.5137254902);
  border-radius: 50%;
}

#trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .indicatorWrapper .indicator:nth-child(2) {
  background-color: #e6b000;
}


@media (max-width: 768px) {
  #banner {
    width: 100%;
    height: fit-content;
    padding: 150px 10px 260px 10px;
  }

  #banner .bannerWrapper .banner-text {
    width: 100%;
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: rgba(61, 61, 61, 0.5490196078);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 30px 10px;
  }

  #banner .bannerWrapper .banner-text h1 {
    font-size: 28px;
    color: white;
  }

  #banner .bannerWrapper .banner-text h1 span {
    color: yellow;
  }

  #banner .bannerWrapper .banner-text p.banner-paragraph-text {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features {
    flex-direction: column;
    gap: 16px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features li {
    font-weight: 300;
  }

  #banner .bannerWrapper .banner-text button.explore-btn {
    border: 1px solid white;
  }
  #banner .bannerFooter {
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

  #banner .bannerFooter .bannerFooterWrapper {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item h4 {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item span {
    font-weight: bold;
    font-size: 20px;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item p {
    font-size: 12px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded1 {
    width: 100%;
    padding: 18px 0;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 {
    width: 100%;
    padding: 18px 0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 h4 {
    font-size: 20px;
  }
  /* ========browse by category======== */
  #browseByCategory {
  width: 100%;
  height: 100%;
  padding: 36px 0;
}

#browseByCategory .browseByCategory_wrapper {
  gap: 20px;
}

#browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper {
  row-gap: 20px;
}


  #sectionThree {
    padding: 50px 15px;
  }

  #sectionThree .setionThreeWrapper {
    flex-direction: column;
    gap: 50px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide {
    width: 100%;
    max-width: 526px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper {
    flex-direction: column;
    gap: 32px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(1) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(2) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(1) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(2) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper {
    width: 100%;
    max-width: 798px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem .number {
    color: #C9C9C9;
    font-size: 60px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem h4 {
    font-size: 24px;
    font-family: var(--headingFont);
    margin-bottom: 16px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem p {
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 300;
  }

  #smartProducts {
    width: 100%;
    height: 100%;
    padding: 120px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #smartProducts .exploreWrapper {
    width: 100%;
    max-width: 1621px;
  }

  #smartProducts .exploreWrapper .exploreProductHeader {
    width: 100%;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  #smartProducts .exploreWrapper .exploreProductHeader img {
    width: 53px;
  }

  #smartProducts .exploreWrapper .productWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
  }

  #trustedByClient {
    width: 100%;
    height: fit-content;
    padding: 15px 15px 100px 15px;
  }
  #trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper{
    flex-wrap: wrap;
  }
  #trustedByClient .testimonialWraper .slideWrapper .slide figure .perrsonWrapper .person {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0px;
}
  #trustedByClient .trustWrapper .testimonialWraper .slideWrapper .slide .perrsonWrapper .person .avatar{
    width: 50px;
    height: 50px;
    border: 1px solid red;
    border-radius: 50%;
  }
}

@media (min-width: 769px) {
  #banner {
    width: 100%;
    height: auto;
    padding: 150px 10px 130px 10px;
  }

  #banner .bannerWrapper .banner-text {
    width: 80%;
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: rgba(61, 61, 61, 0.5490196078);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 30px 10px;
  }

  #banner .bannerWrapper .banner-text h1 {
    font-size: 28px;
    color: white;
  }

  #banner .bannerWrapper .banner-text h1 span {
    color: yellow;
  }

  #banner .bannerWrapper .banner-text p.banner-paragraph-text {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features {
    flex-direction: column;
    gap: 16px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features li {
    font-weight: 300;
  }

  #banner .bannerWrapper .banner-text button.explore-btn {
    border: 1px solid white;
  }

  #banner .bannerFooter .bannerFooterWrapper {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item h4 {
    font-size: 28px;
    line-height: normal;
    font-weight: 400;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item span {
    font-weight: bold;
    font-size: 24px;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item p {
    font-size: 14px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded1 {
    width: 60%;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 {
    width: 40%;
    padding: 14px 0;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 h4 {
    font-size: 20px;
  }

  #sectionThree {
    padding: 100px 15px;
  }

  #sectionThree .setionThreeWrapper {
    flex-direction: column;
    gap: 50px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide {
    width: 100%;
    max-width: 526px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper {
    flex-direction: column;
    gap: 32px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(1) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(2) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(1) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(2) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper {
    width: 100%;
    max-width: 798px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem .number {
    color: #C9C9C9;
    font-size: 60px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem h4 {
    font-size: 24px;
    font-family: var(--headingFont);
    margin-bottom: 16px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem p {
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 300;
  }
}

@media (min-width: 1024px) {
  #main{width: 100%;}
  #banner {
    width: 100%;
    height: fit-content;
    padding: 150px 10px 110px 50px;
  }
  #banner .bannerWrapper .banner-text {
    width: 60%;
    max-width: 630px;
    height: -moz-fit-content;
    height: fit-content;
    background-color: rgba(167, 166, 166, 0.231372549);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 24px 60px;
    border-radius: 10px;
    color: white;
  }
  #banner .bannerFooter {
    width: 100%;
    position: absolute;
    bottom: -45px;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

  #sectionThree {
    padding: 100px 15px;
  }

  #sectionThree .setionThreeWrapper {
    flex-direction: row;
    gap: 50px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide {
    width: 100%;
    max-width: 526px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper {
    flex-direction: column;
    gap: 32px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(1) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 .imgBox:nth-child(2) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox {
    border: 2px solid rgba(0, 0, 0, 0);
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(1) {
    width: 60%;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 .imgBox:nth-child(2) {
    width: 40%;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper {
    width: 100%;
    max-width: 798px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem .number {
    color: #C9C9C9;
    font-size: 60px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem h4 {
    font-size: 24px;
    font-family: var(--headingFont);
    margin-bottom: 16px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem p {
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 300;
  }
}

@media (min-width: 1420px) {
  #banner {
    width: 100vw;
    height: fit-content;
    background-image: url("http://localhost/neilsPart/wp-content/uploads/2025/09/Frame-2147226808-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 207px 0 150px 147px;
    position: relative;
  }

  #banner .bannerWrapper {
    width: 100%;
    height: 100%;
  }

  #banner .bannerWrapper .banner-text {
    width: 60%;
    max-width: 830px;
    height: -moz-fit-content;
    height: fit-content;
    background-color: rgba(167, 166, 166, 0.231372549);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 24px 60px;
    border-radius: 10px;
    color: white;
  }

  #banner .bannerWrapper .banner-text h1 {
    font-size: 64px;
    color: white;
  }

  #banner .bannerWrapper .banner-text h1 span {
    color: yellow;
  }

  #banner .bannerWrapper .banner-text p.banner-paragraph-text {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features {
    list-style-type: none;
    list-style-image: url("./listIcon.png");
    vertical-align: text-top;
    list-style-position: inside;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #banner .bannerWrapper .banner-text ul.banner-features li {
    font-weight: 300;
  }


  #banner .bannerWrapper .banner-text button.explore-btn {
    border: 1px solid white;
    background-color: transparent;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    font-family: var(--bodyFont);
    font-weight: 300;
    border-radius: 8px;
  }

  #banner .bannerFooter {
    width: 100%;
    position: absolute;
    bottom: -40px;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  #banner .bannerFooter .bannerFooterWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 8px;
    background-color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item h4 {
    font-size: 32px;
    line-height: normal;
    font-weight: 400;
  }

  #banner .bannerFooter .bannerFooterWrapper .banner_Footer_Item span {
    font-weight: bold;
    font-size: 24px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded1 {
    width: 60%;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 {
    width: 30%;
    padding: 18px 0;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }

  #banner .bannerFooter .bannerFooterWrapper .rounded2 h4 {
    font-size: 20px;
  }

  #browseByCategory {
    width: 100%;
    height: 100%;
    padding: 116px 0;
  }

  #browseByCategory .browseByCategory_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #browseByCategory .browseByCategory_wrapper .browseByCategoryHeader {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #browseByCategory .browseByCategory_wrapper .browseByCategoryHeader .iconBox {
    width: 76px;
    height: 72px;
    display: flex;
    align-items: end;
    justify-content: center;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper {
    width: 100%;
    max-width: 1095px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 50px;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem {
    width: 305px;
    padding-top: 31px;
    text-align: center;
    position: relative;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .icon {
    width: 102px;
    height: 70px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card {
    width: 100%;
    padding: 12px;
    padding-top: 76px;
    background: linear-gradient(to bottom, #FFF1C7, #FFFFFF);
    text-align: center;
    border-radius: 16px;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card h3 {
    font-size: 20px;
    font-family: var(--headingFont);
    font-weight: 600;
    padding-bottom: 8px;
  }

  #browseByCategory .browseByCategory_wrapper .categoryWrapper .categoryItemWrapper .categoryItem .card p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--bodyFont);
  }

  #sectionThree {
    width: 100%;
    height: 100%;
    padding: 50px 150px;
    background-color: #FBF7EB;
  }

  #sectionThree .setionThreeWrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide {
    width: 100%;
    max-width: 526px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide h2 {
    margin-top: 8px;
    margin-bottom: 16px;
    font-family: var(--headingFont);
    font-weight: 400;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide p {
    font-family: var(--bodyFont);
    font-weight: 300;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper {
    width: 100%;
    padding-top: 67px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row1 {
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.pictureSide .pictureWrapper .row2 {
    display: flex;
    gap: 16px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper {
    width: 798px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem .number {
    color: #C9C9C9;
    font-size: 60px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem h4 {
    font-size: 24px;
    font-family: var(--headingFont);
    margin-bottom: 16px;
  }

  #sectionThree .setionThreeWrapper aside.listSide .listWrapper ul li .listItem p {
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 300;
  }
}

/*# sourceMappingURL=style.css.map */