/* largeBannerSection */
.largeBannerSection {
  width: 100%;
  position: relative;
}
.largeBannerImg {
  width: 100%;
  height: auto;
  aspect-ratio: 4.8/4;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.largeBannerInfoDiv {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
  width: 60%;
}
.largeBannerTitle {
  font-size: 30px;
  font-weight: 700;
  color: var(--clrF);
}
.largeBannerDescText {
  font-size: 17px;
  font-weight: 500;
  color: var(--clrF);
  line-height: 32px;
  margin-top: 10px;
}
.largeBannerLink {
  background-color: var(--clrF);
  border-radius: 7px;
  min-height: 40px;
  padding: 7px 25px;
  color: var(--clr3);
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .largeBannerSection {
    max-width: 1280px;
    margin: 0 auto;
  }
  .largeBannerImg {
    aspect-ratio: unset;
  }
  .largeBannerInfoDiv {
    right: 10%;
    left: unset;
    transform: translateY(-50%);
    text-align: right;
    align-items: flex-start;
  }
  .largeBannerLink {
    margin-top: 30px;
  }
}
/* middleBanner1 */
.middleBannerLink {
  width: 90%;
  max-width: 1150px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  box-shadow: 0 0 0 transparent;
}
.middleBannerLink:hover {
  box-shadow: 0 5px 15px #00000067;
}
.middleBannerImg {
  width: 100%;
  height: auto;
}
/* categorySection */
.categorySection {
  margin-top: 35px;
  gap: 35px;
}
.categorySectionTitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--clr3);
}
.categoryGrid {
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
}
.categoryItem {
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s ease-out;
  padding: 10px 10px 7px;
  border-radius: 8px;
}
.categoryItem:hover {
  box-shadow: 0 5px 15px #0000004d;
  transform: scale(1.05);
}
.categoryItemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}
.categoryTitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr3);
  margin-top: 15px;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 649px) {
  .categoryGrid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 7px;
  }
  .categoryItem {
    overflow: hidden;
  }
  .categoryTitle {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 968px) {
  .categorySection {
    max-width: 1100px;
  }
  .categoryItemImg {
    border-radius: 7px;
  }
}
@media screen and (min-width: 1028px) {
  .categoryGrid {
    gap: 40px;
  }
}
/* middleBanner2Link */
.middleBanner2Link {
  margin: 50px auto 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1150px;
  background-color: var(--clr0Op06);
}
/* textCollectionSection */
.textCollectionSection {
  flex-direction: column;
  margin-top: 40px;
  gap: 30px;
  max-width: 1150px;
}
.textCollectionItem {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background-color: var(--clr5);
}
.textCategoryPicture {
  transition: transform 0.3s;
  height: 100%;
  width: 100%;
}
.textCategoryImg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.textCategoryInfoDiv {
  position: absolute;
  right: 10%;
  top: 0;
  height: 100%;
  width: fit-content;
  z-index: 10;
  justify-content: center;
  gap: 15px;
}
.textCategoryTitle {
  color: var(--clrF);
  font-size: 20px;
  font-weight: 700;
}
.textCategoryLink {
  width: fit-content;
  padding: 6px 25px;
  border-radius: 7px;
  background-color: var(--clrF);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr3);
}
.textCollectionItem:hover .textCategoryPicture {
  transform: scale(1.08);
}
.textCollectionItem:hover .textCategoryLink {
  font-weight: 700;
}
.textCollectionItem:nth-child(even) {
  margin-top: 15px;
}
.textCollectionLink {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 16;
}
@media screen and (min-width: 649px) {
  .textCollectionItem {
    height: 380px;
  }
  .textCategoryInfoDiv {
    right: 50%;
    transform: translateX(50%);
    justify-content: center;
    align-items: center;
  }
  .textCategoryTitle {
    font-size: 28px;
  }
  .textCategoryLink {
    font-size: 14px;
  }
}
@media screen and (min-width: 1028px) {
  .textCollectionSection {
    flex-direction: row;
    gap: 30px 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .textCollectionItem {
    width: calc(100% / 2 - 40px / 2);
    margin-top: 0 !important;
    height: 380px;
  }
}
/* designersSection */
.designersSection {
  margin-top: 35px;
  gap: 35px;
}
.designerSectionTitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--clr3);
}
.designerGrid {
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
}
.designerItem {
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s ease-out;
  padding: 10px 10px 7px;
  border-radius: 8px;
}
.designerItem:hover {
  box-shadow: 0 5px 15px #0000004d;
  transform: scale(1.05);
}
.designerImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}
.designerName {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr3);
  margin-top: 15px;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 649px) {
  .designerGrid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (min-width: 968px) {
  .designersSection {
    max-width: 1100px;
  }
  .designerImg {
    border-radius: 7px;
  }
}
@media screen and (min-width: 1028px) {
  .designerGrid {
    gap: 40px;
  }
}
/* middleBannerSection3 */
.middleBannerSection3 {
  margin: 40px auto 0;
  position: relative;
  height: 400px;
  overflow: hidden;
  max-width: 1280px;
  width: 100%;
}
.middleBanner3InfoDiv {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  align-items: center;
  gap: 20px;
  transform: translate(-50%, -50%);
}
.middleImg3 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.middleBannerTitle {
  font-size: 20px;
  color: var(--clrF);
  font-weight: 800;
}
.middleBanner3DescText {
  font-size: 14px;
  font-weight: 500;
  color: var(--clrF);
  text-align: center;
}
.middleBanner3Link {
  padding: 7px 0;
  background-color: var(--clrF);
  font-weight: 500;
  color: var(--clr3);
  border-radius: 8px;
  margin-top: 15px;
  min-width: 150px;
}
.middleBanner3Link:hover {
  font-weight: 600;
}
@media screen and (min-width: 1028px) {
  .middleBannerSection3 {
    margin-top: 60px;
  }
  .middleBannerTitle {
    font-size: 28px;
  }
  .middleBanner3DescText {
    font-size: 15px;
  }
}
/* middleBanner4 */
.middleBanner4 {
  max-width: 1280px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.middleImg4 {
  height: auto;
  width: 100%;
}
/* accessLinkSection */
.accessLinkSection {
  margin-top: 40px;
  gap: 45px;
}
.accessItem {
  gap: 5px;
  align-items: center;
}
.accessImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-color: var(--clr0Op12);
}
.accessItemTitle {
  font-weight: 600;
  color: var(--clr3);
  font-size: 22px;
  margin-top: 20px;
}
.accessDescText {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr3);
  text-align: center;
}
.accessItemLink {
  border: 2px solid var(--clr3);
  border-radius: 8px;
  padding: 6px 25px;
  color: var(--clr5);
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}
.accessItemLink:hover {
  font-weight: 700;
}
@media screen and (min-width: 1028px) {
  .accessLinkSection {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 60px;
  }
}
/* gallerySection */
.gallerySection {
  margin-top: 90px;
  text-align: center;
}
.galleryTitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--clr3);
}
.galleryDescText {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr5);
  margin-top: 7px;
}
.swiperHolderDiv {
  position: relative;
  margin-top: 35px;
  width: 55%;
  align-self: center;
}
.gallerySwiper {
  width: 100%;
  user-select: none;
}
.sliderImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.nextSlideBtn,
.preSlideBtn {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  height: 40px;
  width: 40px;
  font-size: 25px;
}
.preSlideBtn {
  right: unset;
  left: -60px;
}
.galleryLinksDiv {
  flex-direction: column;
  margin: 20px auto 0;
  align-items: center;
}
.galleryLinkItem {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr3);
  text-decoration: underline;
  padding: 5px 20px;
  width: 100%;
}
.galleryLinkItem:hover {
  background-color: #a8a29e;
}
@media screen and (min-width: 550px) {
  .swiperHolderDiv {
    width: 80%;
  }
  .firstLoad .swiper-wrapper {
    gap: 25px;
  }
  .firstLoad .swiper-slide {
    width: calc(100% / 2 - 20px / 2);
  }
  .galleryLinksDiv {
    flex-direction: row;
    width: fit-content;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
  }
  .galleryLinkItem {
    width: 170px;
    padding: 7px 0;
  }
  .galleryLinkItem:hover {
    opacity: 0.6;
    background-color: unset;
  }
}
@media screen and (min-width: 768px) {
  .firstLoad .swiper-slide {
    width: calc(100% / 3 - 20px * 2 / 3);
  }
}
@media screen and (min-width: 1028px) {
  .firstLoad .swiper-slide {
    width: calc(100% / 4 - 20px * 3 / 4);
  }
  .firstLoad .swiper-wrapper {
    gap: 15px;
  }
}
@media screen and (min-width: 1250px) {
  .swiperHolderDiv {
    width: 90%;
  }
  .firstLoad .swiper-slide {
    width: calc(100% / 5 - 20px * 4 / 5);
  }
}
/* galleryModalMenu */
.galleryModalMenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #000000c5;
  z-index: 960;
  display: none;
}
.galleryModalMenu.activeModalMenu {
  display: -webkit-flex;
  display: flex;
}
.galleryModalContent {
  max-height: 80vh;
  max-height: 80dvh;
  width: 85%;
  max-width: 650px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 10px;
}
.galleryModalContent > div {
  background-color: var(--clrF);
  border-radius: 15px;
  padding: 25px 25px 60px;
}
.galleryModalContent::-webkit-scrollbar {
  width: 7px;
}
.galleryModalContent::-webkit-scrollbar-track {
  background: #0000001e;
}
.galleryModalContent::-webkit-scrollbar-thumb {
  background: #808080;
}
.galleryModalContent::-webkit-scrollbar-thumb:hover {
  background: #464646;
}
.galleryModalMainTitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr3);
}
.galleryCloserBtn {
  height: 35px;
  width: 35px;
  border-radius: 5px;
  background-color: var(--clr0Op06);
  font-size: 18px;
  color: var(--clr3);
}
.galleryModalHeader {
  border-bottom: 1px solid var(--clr0Op12);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.galleryModalGrid {
  flex-direction: column;
  gap: 30px;
}
.galleryMainImg {
  width: 100%;
  height: auto;
}
.galleryModalTitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr3);
}
.galleryModalText {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr5);
  text-align: justify;
  margin-top: 15px;
}
.gallerySampleHeader {
  grid-template-columns: 30px 1fr 30px;
  max-width: 90%;
  margin: 20px auto 0;
  gap: 25px;
  align-items: center;
}
.galleryModalSampleTitle {
  text-align: center;
}
.gallerySampleNextBtn,
.gallerySamplePrevBtn {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--clr0Op12);
  color: var(--clr5);
  font-size: 18px;
}
.gallerySampleSwiper {
  width: 100%;
}
.gallerySampleHolder {
  margin-top: 45px;
  width: 40%;
  align-self: center;
}
.galleryModalSampleText {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}
.galleryNextBtn,
.galleryPrevBtn {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 980;
  background-color: #eee;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 0 15px #00000093;
}
.galleryPrevBtn {
  right: unset;
  left: 0;
  transform: translate(50%, -50%);
}
.galleryPrevBtn svg {
  transform: translateX(-10%);
}
.gallerySliderImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.galleryModalSampleText {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr5);
  line-height: 18px;
}
.galleryModalMenu .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .galleryModalGrid {
    flex-direction: row;
    align-items: center;
  }
  .galleryMainImg,
  .galleryModalInfoDiv {
    width: calc(50% - 20px);
  }
  .galleryMainImg {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
/* homeLinksSection2 */
.homeLinksSection2 {
  margin-top: 70px;
  gap: 40px;
}
.homeLinksItem2 {
  text-align: center;
  gap: 7px;
}
.homeLinkImg2 {
  width: 65px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.homeLinkTitle {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 600;
  color: var(--clr3);
}
.homeLinkText {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr5);
}
.homeLink2SeeMore {
  padding: 5px 30px;
  border: 2px solid var(--clr3);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr5);
  width: fit-content;
  margin: 15px auto 0;
}
.homeLink2SeeMore:hover {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .homeLinkImg2 {
    width: 120px;
  }
  .homeLinkTitle {
    font-size: 18px;
  }
}
@media screen and (min-width: 968px) {
  .homeLinksSection2 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
/* socialSection */
.socialSection {
  margin-top: 100px;
  text-align: center;
  gap: 10px;
}
.socailTitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--clr3);
}
.socialDesc {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr5);
  margin-top: 10px;
}
.socialList {
  margin-top: 10px;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  direction: ltr;
}
.socialItem,
.socialItem svg {
  height: 25px;
  width: 25px;
}
@media screen and (min-width: 768px) {
  .socailTitle {
    font-size: 28px;
  }
}
/* subscribeSection */
.subscribeSection {
  background-color: #3d3935;
  color: var(--clrF);
  padding: 20px 0;
  margin-top: 100px;
}
.subscribeGrid {
  flex-direction: column;
  align-items: center;
}
.subscribeText {
  flex-direction: column;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--clrF);
  gap: 0;
  line-height: 22px;
}
.subscribeInput {
  width: 60%;
  height: 40px;
  background-color: var(--clrF);
  color: var(--clr3);
  padding: 0 15px;
  border-radius: 5px;
  outline: none;
  border: none;
  margin-top: 15px;
}
.submitSubscribeBtn {
  padding: 5px 8px;
  margin-top: 25px;
  font-size: 15px;
  color: #999;
  font-weight: 500;
  border: 1px solid #999;
  line-height: 18px;
}
@media screen and (min-width: 649px) {
  .subscribeGrid {
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 5px;
  }
  .subscribeText {
    width: 100%;
  }
  .submitSubscribeBtn {
    height: 40px;
    margin-top: 0;
  }
  .subscribeInput {
    margin-top: 0;
    border-radius: 3px;
  }
}
@media screen and (min-width: 968px) {
  .subscribeGrid {
    justify-content: flex-start;
    align-items: center;
  }
  .subscribeText {
    width: fit-content;
    margin-left: 30px;
  }
  .subscribeInput {
    width: 280px;
  }
}
