* {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
/* ============================================================
   GLOBAL THEME VARIABLES
   ------------------------------------------------------------
   • Edit values here to update styles site-wide
   • Keeps typography consistent and easy to manage
   ============================================================ */

:root {
  /* -----------------------------
     FONT FAMILY
     ----------------------------- */
  --primary-font: "Manrope", sans-serif;

  /* -----------------------------
     FONT WEIGHTS
     ----------------------------- */
  --heading-font-weight: 500; /* Headings (H1–H6) */
  --text-font-weight: 300; /* Default body text */
  --light-font-weight: 200; /* Secondary / subtle text */

  /* -----------------------------
     HEADING FONT SIZES
     ----------------------------- */
  --themeH1-size: 50px; /* Main page headings */
  --themeH2-size: 40px; /* Section headings */
  --themeH3-size: 32px; /* Sub-section headings */
  --themeH4-size: 22px; /* Minor headings */

  /* -----------------------------
     BODY & UTILITY FONT SIZES
     ----------------------------- */
  --themeFont-size: 22px; /* Default paragraph text */
  --themeFont-large: 28px; /* Large body / emphasis text */
}

body,
html {
  scroll-behavior: smooth;
  font-family: var(--primary-font);
  color: #414a4b;
  font-size: var(--themeFont-size);
  line-height: 1;
}

img {
  display: block;
  max-width: 100%;
}

/* Builder CSS  */
/* Builder CSS  */
/* Builder CSS  */
.block-editor-page :where(.wp-block) {
  width: 100%;
  max-width: 100%;
}

.block-editor-block-list__block:has(
    > div.wp-block-genesis-custom-blocks-gallery-item
  )
  .allCategoryBoxesImg {
  width: 100% !important;
  max-height: fit-content;
}

.wp-block-genesis-custom-blocks-tabs-gallery-section
  .block-editor-inner-blocks
  > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: repeat(3, min(50%, 300px));
  column-gap: 20px;
}

/* GLOBAL CSS */
.container {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.headingH1 {
  font-family: var(--primary-font);
  font-weight: var(--heading-font-weight);
  font-style: Regular;
  font-size: var(--themeH1-size);
  line-height: 1.1;
}

.headingH2,
.archive-description .archive-title,
article.entry .entry-title {
  font-family: var(--primary-font);
  font-weight: var(--heading-font-weight);
  font-style: Regular;
  font-size: var(--themeH2-size);
  line-height: 1.1;
}

.headingH3 {
  font-family: var(--primary-font);
  font-weight: var(--heading-font-weight);
  font-style: Regular;
  font-size: var(--themeH3-size);
  line-height: 1.1;
}

.headingH4 {
  font-family: var(--primary-font);
  font-weight: var(--heading-font-weight);
  font-size: var(--themeH4-size);
  line-height: 1.1;
}

.container > .mainBtn {
  justify-content: center;
}

.mainBtn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.mainBtn :is(a, button) {
  padding: 10px 35px;
  font-family: var(--primary-font);
  font-weight: var(--light-font-weight);
  font-style: Light;
  font-size: var(--themeFont-size);
  line-height: 1;
  letter-spacing: 0px;
  border-radius: 100px;
  transition: all ease 0.3s;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.mainBtn :is(a, button).btn1 {
  background: #a3bfcb;
  color: #414a4b;
  box-shadow: 0px 5px 20px 0px #a3bfcb3b;
}

.mainBtn :is(a, button).btn1:hover {
  background: #414a4b;
  color: #fff;
  box-shadow: 0px 5px 20px 0px #a3bfcb91;
}

.mainBtn :is(a, button).btn2 {
  background: #414a4b;
  color: #fff;
  box-shadow: 0px 5px 20px 0px #a3bfcb3b;
}

.mainBtn :is(a, button).btn2:hover {
  background: #a3bfcb;
  color: #414a4b;
  box-shadow: 0px 5px 20px 0px #a3bfcb91;
}

/* GLOBAL CSS */

/* HEADER CSS START */

.mainHeader {
  background: #fff;
  transition: all 0.3s ease;
}

.mainHeader.sticky {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom: 26px;
}

.mainHeadRow {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.mainHeader.sticky .headerLogoArea {
  position: relative;
  max-width: 150px;
  height: 100px;
}

/* .headerLogoArea {
    width: 100%;
    max-width: 305px;
    height: 250px;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(26px);
} */
.headerLogoArea {
  width: 100%;
  max-width: 230px;
  height: fit-content;
  transition: all 0.3s ease;
  position: relative;
  transform: translateY(26px);
  margin-bottom: -30px;
}
.headLogoImg {
  width: 100%;
  max-width: 100%;
}

.headLogoImg a {
  display: block;
  height: 100%;
  width: 100%;
}

.headLogoImg a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.headerLinksMobileDrawer {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr max-content;
  gap: 150px;
}

.headerLinksHldr ul {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: end;
  height: 100%;
}
#menu-header-menu .li_home {
  display: none;
}
.headerLinksHldr ul li a {
  font-family: Manrope;
  font-weight: var(--light-font-weight);
  font-style: Light;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0px;
  color: #414a4b;
  position: relative;
  padding: 50px 20px 20px;
  display: block;
  border-radius: 0 0 10px 10px;
  transition: all ease 0.3s;
  border: 1px solid transparent;
  /* background: #a3bfcb; */
}

.headerLinksHldr ul li a:hover {
  border: 1px solid #a3bfcb;
  color: #414a4b;
  background: transparent;
}

.headerIconsHldr ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.headerIconsHldr ul li {
  background: #a3bfcb;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  transition: all ease 0.3s;
}

.headerIconsHldr ul li:hover {
  background: #414a4b;
}

.headerIconsHldr ul li:hover a img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7500%)
    hue-rotate(63deg) brightness(114%) contrast(100%);
}

.headerIconsHldr ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 12px;
}

.headerIconsHldr ul li a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.headerHamburgerIconHldr .menuDrawerOpen {
  width: 40px;
  height: 40px;
}

.headerHamburgerIconHldr .menuDrawerOpen img {
  height: 100%;
  width: 100%;
}

.headerDrawerCrossIcon .menuDrawerClose {
  width: 40px;
  height: 40px;
}

.headerDrawerCrossIcon .menuDrawerClose img {
  height: 100%;
  width: 100%;
}

.headerLinksMobileDrawer .headerDrawerCrossIcon {
  display: none;
}

.headerHamburgerIconHldr {
  display: none;
}

/* HEADER CSS END */

/* BANNER */

.mainBanner {
  padding-top: 283px;
  padding-bottom: 670px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainBannerContent {
  padding: 70px 15px;
  background: #363d3dcc;
  border-radius: 16px;
}

.headingTop {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-large);
  line-height: 34px;
  letter-spacing: 0px;
  display: block;
  margin-bottom: 20px;
}

.mainBannerContent .headingTop {
  color: #fff;
  text-align: center;
}

.mainBannerContent .headingH1 {
  color: #fff;
  text-align: center;
}

.mainBannerContent .mainBtn {
  justify-content: center;
}

/* BANNER */

/* CATEGORY BOXES */

.categoryBoxesMain {
  margin-top: 100px;
  margin-bottom: 100px;
}

.categoryBoxesMainRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: space-between;
  gap: 100px 30px;
}

.categoryBoxHldr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

/* .categoryBoxHldr:hover .categoryContent {
  background: #a3bfcb;
} */

.categoryBoxHldr:hover .categoryContent h4 a {
  font-weight: 600;
}

.categoryContent {
  padding: 20px;
  border: 1px solid #a3bfcb;
  border-top: none;
  transition: all ease 0.3s;
  border-radius: 0 0 16px 16px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.categoryContent h4 {
  text-align: center;
}

.categoryContent h4 a {
  color: #414a4b;
  transition: all 0.3s ease;
}

.categoryContent h4 a::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.categoryBoxHldr:hover .categoryImg img {
  transform: translateY(20px);
}

.categoryImg {
  width: 100%;
  height: 100%;
}

.categoryImg img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  transition: all ease 0.3s;
  border-radius: 50%;
}

/* CATEGORY BOXES */

/* YOUR HOME */

.yourHomeMain {
  padding-top: 170px;
  padding-bottom: 170px;
  background: #707c7f;
}

.yourHomeMainCntent {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}

.yourHomeMainCntent .headingH2 {
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.yourHomeMainCntent p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffff;
  margin-top: 20px;
}

.headingHldr {
  margin-bottom: 50px;
}

.headingHldr .headingH2 {
  text-align: center;
  margin-bottom: 15px;
}

.headingHldr p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
}

/* YOUR HOME */

/* WITH CREATIVE TOUCH */

.withCreativeTouch {
  margin-top: 150px;
  margin-bottom: 100px;
}

.withCreativeTouchRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  place-content: space-between;
  max-width: 83%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  position: relative;
}

.withCreativeTouch .container {
  position: relative;
}

.withCreativeTouchRowHldr {
  position: relative;
}

.withCreativeTouchRowHldr::before {
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(../img/creative-bg-shape-tp.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  position: absolute;
  top: -197px;
  left: 0;
  z-index: -1;
}

.withCreativeTouchRowHldr::after {
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(../img/creative-bg-shape-btm.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.withCreativeTouchIconImg {
  width: 163px;
  height: 163px;
  background: #a3bfcb;
  padding: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.withCreativeTouchIconImg img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.withCreativeTouchIconCnt {
  margin-top: 20px;
}
.withCreativeTouch .headingH2 {
  color: #a3bfcb;
}
.withCreativeTouchIconCnt .headingH4 {
  text-align: center;
}

.withCreativeTouchIconCnt p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 1.2;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

/* WITH CREATIVE TOUCH */

/* WORK WITH YOU */

.workWithYou {
  margin-top: 100px;
  margin-bottom: 100px;
}

.workWithYouRow {
  padding-top: 30px;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.workWithYouRow .mainBtn {
  justify-content: center;
}

.workWithYouRow::before {
  content: "";
  background: #a3bfcb;
  height: 1px;
  width: 90%;
  left: 50%;
  top: 0;
  position: absolute;
  transform: translateX(-50%);
}

.workWithYouRow ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: item;
  position: relative;
  padding-left: 83px;
}

.workWithYouRow ul li {
  position: relative;
  /* display: flex; */
  align-items: center;
  gap: 20px;
  row-gap: 5px !important;
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 30px;
  letter-spacing: 0px;
  counter-increment: item;
}

.workWithYouRow ul li em {
  display: block;
  font-style: normal;
  width: 100%;
}

.workWithYouRow ul li::before {
  content: counter(item);
  height: 63px;
  width: 63px;
  min-width: 63px;
  background: #a3bfcb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 35px;
  line-height: 1;
  position: absolute;
  left: -83px;
}

.workWithYouRow ul li:nth-of-type(3n + 2) {
  margin-left: 8%;
}

.workWithYouRow ul li:nth-of-type(3n + 3) {
  margin-left: 16%;
}

/* WORK WITH YOU */

/* IMAGE WITH CONTENT */

.imgWithContent.withbg {
  padding-top: 200px;
  padding-bottom: 200px;
  background: linear-gradient(339.14deg, #ffffff 0%, #dce7ed 50%, #ffffff 100%);
}

.imgWithContent.withbg .headingHldr {
  max-width: 1190px;
  margin-right: auto;
  margin-left: auto;
}

.imgWithContent.withbg .headingHldr * {
  text-align: left;
}

.imgWithCntRow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  place-content: space-between;
}

.imgWithContent.withbg .imgWithCntRow {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.imgWithContent.withbg .imgWithCntRow .imgWithCntRowMedia {
  width: 400px;
  height: 400px;
  margin-left: auto;
  object-fit: contain;
  border-radius: 50%;
}

.imgWithContent.withbg .imgWithCntRow .imgWithCntRowMedia img {
  height: 100%;
  width: 100%;
  margin-left: auto;
  object-fit: contain;
  border-radius: 50%;
}

.imgWithCntRowContent {
  max-width: 626px;
}

.imgWithCntRowContent p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 1.2;
  letter-spacing: 0px;
  margin-top: 20px;
}

/* IMAGE WITH CONTENT */

/* INSTAGRAM GALLERY SECTION */

.instaGalleryMain {
  padding-top: 160px;
  padding-bottom: 160px;
  background: linear-gradient(337.08deg, #ffffff 0%, #dce7ed 50%, #ffffff 100%);
}

.instaGalleryMainRow {
  max-width: 1610px;
  margin-left: auto;
  margin-right: auto;
}

.instadummyimg {
  width: 100%;
}

/* INSTAGRAM GALLERY SECTION */

/* FOOTER */

.mainFooterTop {
  padding-top: 190px;
  padding-bottom: 190px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainFooterRow .headingHldr * {
  color: #fff;
}

.mainFooterRow .mainBtn {
  justify-content: center;
}

.mainFooterBottom {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #414a4b;
}

.mainFooterBottomCnt p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #fff;
  text-align: end;
}

.mainFooterBottomCnt p a {
  color: #fff;
  /* text-decoration: underline; */
  text-underline-offset: 2px;
  transition: all ease 0.3s;
}

.mainFooterBottomCnt p a:hover {
  opacity: 50%;
}

/* FOOTER */

/* INNER BANNER */

.innerBanner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 215px;
  padding-bottom: 215px;
}

.innerBannerCnt * {
  text-align: center;
  color: #fff;
}

/* INNER BANNER */

/* beautifulSpace */

.beautifulSpace {
  padding-top: 100px;
  padding-bottom: 100px;
}

.beautifulSpaceRow {
  max-width: 1534px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 67% 30%;
  gap: 30px;
  align-items: center;
}

.contactDetailList {
  margin-top: 40px;
  margin-bottom: 40px;
}

.contactDetailList ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactDetailList ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 1.2;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
}

.contactDetailList ul li a:hover {
  opacity: 50%;
}

.contactDetailList ul li a img {
  object-fit: contain;
  width: 25px;
}

.beautifulSpaceImg {
  width: 100%;
  max-width: 100%;
  height: 450px;
}

.beautifulSpaceImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  max-width: 450px;
  margin-left: auto;
  margin-right: 0px;
}

/* beautifulSpace */

/* REVIEW SLIDER */

.reviewsSlider {
  background: #707c7f;
  padding-top: 130px;
  padding-bottom: 130px;
}

.reviewsSliderRow {
  position: relative;
  max-width: 1507px;
  margin-left: auto;
  margin-right: auto;
}

.testiSlider {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

.testiBox :is(p, span) {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-style: Regular;
  font-size: var(--themeFont-size);
  line-height: 27px;
  letter-spacing: 0px;
  color: #fff;
  text-align: center;
  display: block;
}

.testiBox *:not(:first-child) {
  margin-top: 30px;
}

:is(.swiper-button-prev, .swiper-button-next) {
  height: auto !important;
  width: auto !important;
}

:is(.swiper-button-prev, .swiper-button-next):hover {
  opacity: 50%;
}

:is(.swiper-button-prev, .swiper-button-next):hover svg {
  height: small !important;
}

:is(.swiper-button-prev, .swiper-button-next) svg {
  width: 40px !important;
  height: 70px !important;
  color: #fff;
}

:is(.swiper-button-prev) {
  left: 0px !important;
}

:is(.swiper-button-next) {
  right: 0px !important;
}

/* REVIEW SLIDER */

/* visitWahington */

.visitWahington {
  padding-top: 100px;
  padding-bottom: 100px;
}

.visitWahingtonRow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  max-width: 1585px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.visitWahingtonImg {
  width: 100%;
}

.visitWahingtonImg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.visitWahingtonContent .headingH2 {
  margin-bottom: 30px;
}

.visitWahingtonContent p {
  font-family: Manrope;
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 27px;
  letter-spacing: 0px;
}

/* visitWahington */

/* FAQ */

.faqMain {
  padding-top: 150px;
  padding-bottom: 150px;
  background: linear-gradient(341.06deg, #ffffff 0%, #dce7ed 50%, #ffffff 100%);
}

.faqMainRow {
  column-count: 2;
  column-gap: 30px;
}

.faqBox {
  margin-bottom: 30px;
  break-inside: avoid;
}

.faqMainRow {
  max-width: 1375px;
  margin-left: auto;
  margin-right: auto;
}

.faqHead {
  margin-bottom: 10px;
  color: #000;

  .headingH4 {
    font-weight: 500;
  }
}

.faqBody p {
  font-family: var(--primary-font);
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 27px;
  letter-spacing: 0px;
  color: #000;
}

/* FAQ */

/* MEET THE TEAM */

.meetTheTeam {
  padding-top: 100px;
  padding-bottom: 100px;
}

.meetTheTeamRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px 70px;
  max-width: 1810px;
  margin-left: auto;
  margin-right: auto;
}

.teamBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.teamBox h3 {
  transition: all ease 0.3s;
}

.teamBox:hover h3 {
  color: #a3bfcb;
  transform: translateY(-10px);
}

.teamBox img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* MEET THE TEAM */

/* ALL CATEGORY BOX */

.allCategoryBoxes {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(350.46deg, #ffffff 0%, #dce7ed 50%, #ffffff 100%);
}

.allCatgTop {
  margin-bottom: 40px;
}

.allCategoryBoxesNameRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
}

.allCatgBoxesNamePr button {
  font-family: var(--primary-font);
  font-weight: var(--light-font-weight);
  font-size: var(--themeFont-size);
  line-height: 1;
  letter-spacing: 0px;
  color: #414a4b;
  border: 1px solid #a3bfcb;
  border-top: none;
  min-width: fit-content;
  height: 70px;
  text-align: center;
  padding: 10px 20px;
  background: #fff;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all ease 0.3s;
  position: relative;
}

.allCatgBoxesNamePr button::before {
  content: "";
  background: #a3bfcb;
  position: absolute;
  top: 0;
  left: -30vw;
  width: 100vw;
  height: 1px;
}

.allCatgBoxesNamePr button::after {
  content: "";
  background: #a3bfcb;
  position: absolute;
  top: 0;
  right: -30vw;
  width: 100vw;
  height: 1px;
}

.allCatgBoxesNamePr button.active,
.allCatgBoxesNamePr button:hover {
  background: #a3bfcb;
  color: #fff;
}

.allCategoryBoxesROW {
  margin-top: 100px;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.allCategoryBoxesImg {
  width: 100%;
  max-height: 365px;
}

.allCategoryBoxesImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.allCategoryBoxesImg {
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.allCategoryBoxesImg.hidecatg {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hidecatg {
  display: none !important;
}

.load-more_spinner,
.load-more__spinner {
  height: 30px;
  width: 30px;
  border: 5px solid #a3bfcb;
  border-top: 5px solid #000;
  border-radius: 50%;
  display: none;
  animation: rotate 2s linear infinite;
  margin: 30px auto;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ALL CATEGORY BOX */

body.search main.content {
  display: flex;
  gap: 30px;
  padding: 100px 20px;
  flex-wrap: wrap;
  max-width: 1840px;
  margin: 0 auto;
}

body.search main.content .archive-description {
  flex: 1 0 100%;
  width: 100%;
}

body.search main.content .archive-description .archive-title {
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

body.search main.content article.status-publish {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  width: 100%;
  flex: 1 0 30%;
}

body.search main.content article.status-publish .entry-content * {
  width: 100%;
  height: 300px;
  object-fit: cover;
  min-height: 300px;
}

body.search main.content .entry {
  width: 100%;
  text-align: center;
}

body.search main.content .entry p {
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 28px;
  letter-spacing: 0;
  color: #414a4b;
}

body.search
  main.content
  article.status-publish
  .entry-header
  .entry-title
  .entry-title-link {
  font-weight: var(--text-font-weight);
  font-size: 26px;
  line-height: 22px;
  letter-spacing: 0;
  color: #160e0c;
}

body.error404 article.entry {
  padding: 100px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body.error404 article.entry .entry-title {
  margin: 0;
  padding: 0;
  color: #000000;
}

body.error404 article.entry .entry-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.error404 article.entry .entry-content p {
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 28px;
  letter-spacing: 0;
  color: #414a4b;
  max-width: 840px;
}

body.error404 article.entry .entry-content p * {
  display: inline-block;
}

body.error404 article.entry .search-form .search-form-input {
  height: 50px;
  width: 100%;
  max-width: 400px;
  background: #f5f5f5;
  border: 1px solid #414a4b;
  padding: 10px;
  border-radius: 6px;
}

body.error404 article.entry .search-form .search-form-input::placeholder,
body.error404 article.entry .search-form .search-form-input {
  font-weight: var(--text-font-weight);
  font-size: 18px;
  line-height: 14px;
  letter-spacing: 0;
  color: #414a4b;
}

body.error404 article.entry .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

body.error404 article.entry .search-form .search-form-submit {
  font-weight: var(--text-font-weight);
  font-size: var(--themeFont-size);
  line-height: 20px;
  letter-spacing: 0;
  height: 54px;
  border-radius: 100px;
  background: #000000;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  color: #fff;
  cursor: pointer;
  border: none;
}
