:root {
  /* ==================================================COLORS */
  --clr-golden: #D5B263;
  --clr-l-blue: #deeff7;
  --clr-dtp-blue: #0035679a;
  --clr-d-blue: #003567;
  --clr-l-green: rgb(16, 194, 186);
  --clr-blu1: hsl(219, 89%, 80%);
  --clr-blu2: hsl(219, 89%, 70%);
  --clr-blu3: hsl(219, 89%, 60%);
  --clr-blu3tp: rgba(62, 126, 244, 0.645);
  --clr-blu4: hsl(219, 61%, 37%);
  --clr-blu4tp: rgba(37, 77, 152, 0.645);
  --clr-blu5: hsl(219, 89%, 20%);
  --clr-blu5tp: rgba(6, 37, 96, 0.645);
  --clr-blu5b: rgba(1, 50, 142, 0.6);
  --clr-red1: hsl(345, 88%, 80%);
  --clr-red2: hsl(345, 88%, 70%);
  --clr-red3: hsl(345, 88%, 60%);
  --clr-red4: hsl(345, 88%, 46%);
  --clr-red5: hsl(345, 88%, 20%);
  --clr-ora1: hsl(14, 100%, 80%);
  --clr-ora2: hsl(14, 100%, 70%);
  --clr-ora3: hsl(14, 100%, 60%);
  --clr-ora4: hsl(14, 100%, 45%);
  --clr-ora5: hsl(14, 100%, 20%);
  --clr-gre1: hsl(176, 66%, 70%);
  --clr-gre2: hsl(176, 66%, 60%);
  --clr-gre3: hsl(176, 66%, 40%);
  --clr-gre4: hsl(176, 66%, 30%);
  --clr-gre5: hsl(176, 66%, 20%);
  --clr-jlo: #fdc800;
  --clr-B1: #1f4b60;
  --clr-B1tp: #1f4b60aa;
  --clr-B2: #ee9b08;
  --clr-B2tp: #ee9b08aa;
  --clr-B3: #fbdf9d;
  --clr-B3tp: #fbdf9daa;
  --clr-B4: #b95404;
  --clr-B4tp: #b95404aa;
  --clr-B5: #092a3f;
  --clr-B5tp: #092a3faa;
  --clr-D1: #202020;
  --clr-D2: #3F3F3F;
  --clr-D3: #707070;
  --clr-D4: #FFDF6C;
  --clr-D5: #FFFFFF;
  --clr-D6: #1d1e22;
  --clr-D7: #393f4d;
  --clr-D8: #d4d4dc;
  --clr-D9: #feda6a;
  --clr-G1: #164A41;
  --clr-G2: #4D774E;
  --clr-G3: #9DC88D;
  --clr-G4: #F1B24A;
  --clr-G5: #FFFFFF;
  --wid-mob1: 479px;
  --wid-tab1: 768px;
  --clr-base: rgb(64, 174, 190);
  /*=================================================== Font Sizes */
  --fs-small: 1rem;
  --fs-smedium: 1.25rem;
  --fs-medium: 1.5rem;
  --fs-mlarge: 1.75rem;
  --fs-large: 2rem;
  --fs-medium-large: 2.5rem;
  --fs-xlarge: 3rem;
  --fs-xxlarge: 6rem;
  --fs-xxxlarge: 8rem;
  /* ===================================================Font Weight */
  --fw-3: 400;
  --fw-5: 500;
  --fw-7: 700;
  --fw-9: 900;
  /* ===================================================font Family  */
  /* ===================================================LINE HEIGHT */
  --lh-default: 125%;
  /* ===================================================RESPONSi
  VE FONT SIZE */
  --fs-responsive: clamp(2rem, 5vw, 4rem);
}

/* ========================================================Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================Remove default margin */
* {
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
  display: inline-block;
  padding: 1rem;
}

a {
  text-decoration: none;
}

/*========================================================== Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/*========================================================== Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.1;
}

/*============================= A elements that don't have a class get default styles */
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ................................................ */
/* ========================================================MODE DAY NIGHT */
/*========================================================= FADE ANIMATION */
.fadeIn_up {
  transform: translateY(100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_up .show {
  transform: translateY(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_down {
  transform: translateY(-100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_down .show {
  transform: translateY(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_left {
  transform: translateX(100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_left .show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_right {
  transform: translateX(-100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_right .show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

.show {
  transform: translateX(0px);
  opacity: 1;
}

/* ==================================================FONT WEIGHT*/
.fw-regular {
  font-weight: var(--fw-3);
}

.fw-semiBold {
  font-weight: var(fw-5);
}

.fw-bold {
  font-weight: var(--fw-7);
}

.fw-xbold {
  font-weight: var(--fw-9);
}

/* ==================================================FONT SIZE */
.fs-heading1 {
  font-size: var(--fs-xlarge);
}

.fs-heading1a {
  font-size: var(--fs-medium-large);
}

.fs-heading2 {
  font-size: var(--fs-large);
}

.fs-heading3 {
  font-size: var(--fs-medium);
}

.margin-normal {
  margin: 1em;
}

.margin-top-bottom-normal {
  margin: 1em 0em;
}

.margin-normal2 {
  margin: 1.5em;
}

.margin-top-bottom-normal2 {
  margin: 1.5em 0em;
}

.margin-normal3 {
  margin: 2em;
}

.margin-top-bottom-normal3 {
  margin: 2em 0em;
}

.padding-normal {
  padding: 1em;
}

.padding-top-bottom {
  padding: 1em 0em;
}

.padding-normal2 {
  padding: 1.5em;
}

.padding-top-bottom2 {
  padding: 1.5em 0em;
}

.padding-normal3 {
  padding: 2em;
}

.padding-top-bottom3 {
  padding: 2em 0em;
}

.fc-white {
  color: white;
}

.fc-black {
  color: black;
}

.clr-blu5 {
  color: var(--clr-blu5);
}

/* ===================================================FONT FAMILY*/
.blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* =====================================================GRID COLUMNS */
.grid {
  display: grid;
  /* gap: 1rem; */
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.row-2 {
  /* grid-auto-rows: repeat(2,1fr); */
  grid-template-rows: repeat(2, 1fr);
}

.row-3 {
  grid-template-rows: repeat(3, 1fr);
}

.flex {
  display: flex;
  /* gap: 1rem; */
}

.fd-column {
  flex-direction: column;
}

/* 
    @media only screen and (min-width:50em){
      .col-2 , .col-3, .col-4, .col-5, .col-6{

        grid-auto-flow: column;
        grid-auto-columns: 1fr;
      }
    } */
/* =======================================================ALIGN ITEMS CENTER */
.xy-center {
  justify-content: center;
  align-items: center;
}

.y-center {
  align-items: center;
}

.x-center {
  justify-content: center;
}

/* ========================================================TEXT CENTER */
.txt-center {
  text-align: center;
}

.pointer {
  cursor: pointer;
}

/* ===================================================================================DEFAULT CSS END */
/* IE 8 */
/* IE 5-7 */
/* Netscape */
/* Safari 1.x */
/* Good browsers */
header .header {
  width: 100vw;
  height: 14vh;
  background-color: rgba(25, 25, 25, 0.504);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  position: fixed;
  z-index: 1000001;
}
header .header .varHeader {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  padding: 2rem 6rem;
}
header .header .varHeader .hamMenu {
  position: relative;
}
header .header .varHeader .hamMenu .line {
  width: 40px;
  height: 3px;
  background-color: var(--clr-golden);
  filter: drop-shadow(1px 1px 1px black);
  margin: 4px;
  cursor: pointer;
}
header .header .varHeader .hamMenu .xcross {
  display: none;
  position: absolute;
}
header .header .varHeader .hamMenu .lines {
  display: none;
}
header .header .varHeader .logo {
  margin-top: -20px;
  width: 100%;
}
header .header .varHeader .logo img {
  width: 100px;
  height: auto;
  margin-right: auto;
  filter: drop-shadow(1px 1px 1px black);
}
header .header .varHeader .cta a button {
  padding: 0.3rem 1.2rem;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  margin-right: 2rem;
  font-family: Tahoma, sans-serif;
  filter: drop-shadow(1px 1px 2px black);
}
header .navMenu {
  width: 100vw;
  height: 80vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.588);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transform: translateY(-90vh);
  transition: all 0.5s ease;
  z-index: 100;
}
header .navMenu ul {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 8rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
header .navMenu ul li a {
  color: var(--clr-golden);
  font-size: 2rem;
}
header .navShow {
  transform: translateY(0vw);
}
header .hideLine {
  display: none;
}

@media only screen and (max-width: 800px) {
  header .header {
    width: 100vw;
    height: 8vh;
    background-color: rgba(25, 25, 25, 0.504);
    position: fixed;
    z-index: 1000001;
  }
  header .header .varHeader {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  header .header .varHeader .hamMenu {
    position: relative;
  }
  header .header .varHeader .hamMenu .line {
    width: 40px;
    height: 3px;
    margin: 4px;
  }
  header .header .varHeader .hamMenu .xcross {
    display: none;
    position: absolute;
  }
  header .header .varHeader .hamMenu .lines {
    display: none;
  }
  header .header .varHeader .logo {
    margin-top: 10px;
    width: 100%;
  }
  header .header .varHeader .logo img {
    width: 80px;
    height: auto;
    margin-left: auto;
  }
  header .header .varHeader .cta {
    display: none;
  }
  header .navMenu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    transform: translateX(-100vw);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    transition: all 0.5s ease;
    z-index: 100;
  }
  header .navMenu ul {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 8rem 2rem 2rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  header .navMenu ul li {
    width: 100%;
    list-style: none;
  }
  header .navMenu ul li a {
    text-decoration: none;
    font-size: 1.4rem;
  }
  header .navShow {
    transform: translateX(0vw);
  }
  header .hideLine {
    display: none;
  }
}
.heroSection {
  width: 100%;
  height: 100vh;
  background-image: url(./images/simg2.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.heroSection .hero {
  width: 100%;
  height: 100%;
  padding-top: 10vh;
  display: flex;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.heroSection .hero .heroTxt {
  width: 100%;
  text-align: center;
}
.heroSection .hero .heroTxt p {
  letter-spacing: 1.8px;
  color: black;
  filter: drop-shadow(1px 1px 1px white);
  font-weight: 700;
}
.heroSection .hero .heroTxt p:nth-child(1) {
  font-size: 2rem;
}
.heroSection .hero .heroTxt h1 {
  font-size: 4rem;
  color: whitesmoke;
  filter: drop-shadow(1px 1px 2px black);
  margin: 2rem 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.heroSection .hero .heroTxt button {
  margin: 1rem 0;
  padding: 0.6rem 2rem;
  color: white;
  font-size: 1.8rem;
  background-color: transparent;
  border: 2px solid var(--clr-golden);
  filter: drop-shadow(1px 1px 2px black);
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .heroSection {
    width: 100vw;
    height: auto;
    background-image: url(./images/PXL-Banner1jpg.jpg);
    background-size: contain;
  }
  .heroSection .hero {
    width: 100%;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: end;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  .heroSection .hero .heroTxt {
    padding: 0;
    text-align: center;
  }
  .heroSection .hero .heroTxt h1 {
    font-size: 3rem;
    margin: 2rem 0;
    color: var(--clr-B1);
    filter: drop-shadow(2px 2px 3px white);
    background-color: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .heroSection .hero .heroTxt button {
    margin: 1rem 0;
    padding: 0.4rem 1.4rem;
    color: var(--clr-B1);
    font-size: 1.2rem;
    background-color: transparent;
    border: 2px solid var(--clr-B1);
    cursor: pointer;
    filter: none;
  }
}
.dreamHomesSection {
  width: 100vw;
  height: auto;
  padding-top: 6rem;
  background: linear-gradient(25deg, white 50%, #ececec 50%);
  overflow: hidden;
}
.dreamHomesSection .dreamHomes {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  background-color: white;
  display: flex;
  padding: 2rem;
}
.dreamHomesSection .dreamHomes .dHTxt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dreamHomesSection .dreamHomes .dHTxt h2 {
  font-size: 2.8rem;
  color: var(--clr-B1);
  margin: 1rem 0;
}
.dreamHomesSection .dreamHomes .dHTxt button {
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem 1.8rem;
  background-color: transparent;
  border: 1px solid var(--clr-golden);
}
.dreamHomesSection .dreamHomes .dHImg img {
  width: 550px;
  height: auto;
  -webkit-clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
          clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
}

@media only screen and (max-width: 800px) {
  .dreamHomesSection {
    overflow-x: hidden;
  }
  .dreamHomesSection .dreamHomes {
    width: 98%;
    flex-direction: column-reverse;
    padding: 1rem;
  }
  .dreamHomesSection .dreamHomes .dHTxt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .dreamHomesSection .dreamHomes .dHTxt p {
    margin: 1rem 0;
  }
  .dreamHomesSection .dreamHomes .dHTxt h2 {
    font-size: 2.8rem;
    color: var(--clr-B1);
    margin: 1rem 0;
  }
  .dreamHomesSection .dreamHomes .dHTxt button {
    width: -moz-max-content;
    width: max-content;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    border: 1px solid var(--clr-golden);
  }
  .dreamHomesSection .dreamHomes .dHImg img {
    max-width: 500px;
    width: 100%;
    height: auto;
    -webkit-clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
            clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
  }
}
.specificationsSection {
  width: 100vw;
  height: auto;
  margin: 6rem 2rem;
  overflow: hidden;
}
.specificationsSection h3 {
  text-align: center;
  color: var(--clr-B1);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  margin-bottom: 2rem;
  font-weight: 600;
}
.specificationsSection .specifications {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem;
}
.specificationsSection .specifications .specification {
  width: 100%;
}
.specificationsSection .specifications .specification .sTxt {
  text-align: center;
}
.specificationsSection .specifications .specification .speciImg {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 5px;
  margin-bottom: 1rem;
}
.specificationsSection .specifications .specification .speciImg h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--clr-B1);
}
.specificationsSection .specifications .specification .speciImg img {
  width: 40px;
  height: auto;
  margin-left: auto;
}
.specificationsSection .specifications .specification .speciTxt {
  width: 100%;
  color: rgb(98, 98, 98);
}
.specificationsSection .specifications .specification .speciTxt img {
  width: 100%;
  min-height: 280px;
  height: auto;
  border-radius: 50%;
  -webkit-clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
          clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
}

@media only screen and (max-width: 800px) {
  .specificationsSection {
    width: 100vw;
    height: auto;
    margin: 4rem 5px;
    overflow: hidden;
  }
  .specificationsSection h3 {
    text-align: center;
    color: var(--clr-B1);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  .specificationsSection .specifications {
    width: 98%;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  .specificationsSection .specifications .specification {
    width: 100%;
  }
  .specificationsSection .specifications .specification .sTxt {
    text-align: center;
  }
  .specificationsSection .specifications .specification .speciImg {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 5px;
    margin-bottom: 1rem;
  }
  .specificationsSection .specifications .specification .speciImg h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--clr-B1);
  }
  .specificationsSection .specifications .specification .speciImg img {
    width: 40px;
    height: auto;
    margin-left: auto;
  }
  .specificationsSection .specifications .specification .speciTxt {
    width: 100%;
    color: rgb(98, 98, 98);
  }
  .specificationsSection .specifications .specification .speciTxt img {
    width: 100%;
    min-height: 280px;
    height: auto;
    border-radius: 50%;
    -webkit-clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
            clip-path: polygon(45% 0, 100% 0, 100% 55%, 55% 100%, 0 100%, 0 45%);
  }
}
.builderTrustSection {
  width: 100vw;
  height: 40vh;
  background-color: var(--clr-B1);
  font-family: system-ui, sans-serif;
}
.builderTrustSection .builderTrust {
  display: flex;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.builderTrustSection .builderTrust .builderTrustTxt {
  width: 100%;
}
.builderTrustSection .builderTrust .builderTrustTxt h2 {
  font-weight: 1.6rem;
  color: var(--clr-golden);
  text-align: center;
}
.builderTrustSection .builderTrust .builderTrustTxt h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--clr-golden);
}
.builderTrustSection .builderTrust .builderTrustTxt p {
  color: white;
}
.builderTrustSection .builderTrust .builderTrustTxt img {
  width: 25px;
  height: auto;
}

@media only screen and (max-width: 800px) {
  .builderTrustSection {
    height: auto;
    padding: 2rem 1rem;
    text-align: center;
  }
  .builderTrustSection .builderTrust {
    width: 98%;
    flex-direction: column;
  }
}
.midBannerSection {
  width: 100%;
  height: 100vh;
  background-color: #ececec;
}
.midBannerSection .midBanner {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 6rem 2rem;
}
.midBannerSection .midBanner .midBannerCol-1 {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.midBannerSection .midBanner .midBannerCol-1 img {
  width: 60px;
  height: auto;
}
.midBannerSection .midBanner .midBannerCol-1 h2 {
  font-family: cursive;
  color: var(--clr-B1);
  font-size: clamp(2rem, 2vw, 4rem);
}
.midBannerSection .midBanner .midBannerCol-1 button {
  padding: 0.8rem 2.4rem;
  background-color: transparent;
  border: 3px solid var(--clr-golden);
  color: var(--clr-golden);
  filter: drop-shadow(1px 1px black);
  font-size: 1.2rem;
}
.midBannerSection .midBanner .midBannerCol-2 {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.midBannerSection .midBanner .midBannerCol-2 .mBI1 {
  background: url(./images/chairs2.jpg);
  background-size: cover;
  border: 3px solid var(--clr-golden);
}
.midBannerSection .midBanner .midBannerCol-2 .mBI2 {
  background: url(./images/furniture.jpg);
  background-size: cover;
  border: 3px solid var(--clr-golden);
}
.midBannerSection .midBanner .midBannerCol-2 .mBI3 {
  background: url(./images/AJ_Design_Build.jpg);
  background-size: cover;
  border: 3px solid var(--clr-golden);
}
.midBannerSection .midBanner .midBannerCol-2 .mBI4 {
  width: 100%;
  height: 100%;
}
.midBannerSection .midBanner .midBannerCol-2 .mBI4 h2 {
  margin: -1rem;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 90px 0;
  color: var(--clr-B1);
  font-size: 1.4rem;
  background-color: var(--clr-golden);
  filter: drop-shadow(3px 3px 6px rgb(66, 66, 66));
}

@media only screen and (max-width: 800px) {
  .midBannerSection {
    height: auto;
  }
  .midBannerSection .midBanner {
    width: 98%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 1rem;
  }
  .midBannerSection .midBanner .midBannerCol-1 {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .midBannerSection .midBanner .midBannerCol-1 img {
    width: 60px;
    height: auto;
  }
  .midBannerSection .midBanner .midBannerCol-1 h2 {
    font-family: cursive;
    color: var(--clr-B1);
    font-size: clamp(2rem, 2vw, 4rem);
  }
  .midBannerSection .midBanner .midBannerCol-1 button {
    padding: 0.8rem 2.4rem;
    background-color: transparent;
    border: 3px solid var(--clr-B1);
    color: var(--clr-B1);
    filter: none;
    font-size: 1.2rem;
  }
  .midBannerSection .midBanner .midBannerCol-2 {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
  }
  .midBannerSection .midBanner .midBannerCol-2 .mBI1 {
    background: url(./images/chairs2.jpg);
    background-size: cover;
    border: 3px solid var(--clr-golden);
  }
  .midBannerSection .midBanner .midBannerCol-2 .mBI2 {
    background: url(./images/furniture.jpg);
    background-size: cover;
    border: 3px solid var(--clr-golden);
  }
  .midBannerSection .midBanner .midBannerCol-2 .mBI3 {
    background: url(./images/AJ_Design_Build.jpg);
    background-size: cover;
    border: 3px solid var(--clr-golden);
  }
  .midBannerSection .midBanner .midBannerCol-2 .mBI4 {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2000;
  }
  .midBannerSection .midBanner .midBannerCol-2 .mBI4 h2 {
    margin: -1rem;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 90px 0;
    color: var(--clr-B1);
    font-size: 1.4rem;
    background-color: var(--clr-golden);
    filter: drop-shadow(3px 3px 6px rgb(66, 66, 66));
  }
}
.recentProjectsSection {
  width: 100vw;
  height: auto;
  text-align: center;
  margin-top: 5rem;
}
.recentProjectsSection h2 {
  font-size: 2rem;
  color: var(--clr-B1);
  margin-bottom: 3rem;
}
.recentProjectsSection .recentProjects {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.recentProjectsSection .recentProjects .imgs {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.recentProjectsSection .recentProjects .imgs img {
  width: 330px;
  height: 330px;
}
.recentProjectsSection .recentProjects .imgs .hidTxt {
  position: absolute;
  z-index: 101;
  width: 310px;
  height: 310px;
  left: 30px;
  top: 60%;
  background-color: rgba(59, 59, 59, 0.56);
  padding: 0.5rem;
}
.recentProjectsSection .recentProjects .imgs .hidTxt h2 {
  color: var(--clr-golden);
  filter: drop-shadow(1px 1px 2px black);
  border-bottom: 1px solid var(--clr-golden);
  font-size: 1.6rem;
  font-weight: 600;
}
.recentProjectsSection .recentProjects .imgs .hidTxt p {
  color: white;
  filter: drop-shadow(1px 1px 2px black);
  margin-top: -25px;
}
.recentProjectsSection .recentProjects .imgs::before {
  content: "";
  display: block;
  position: absolute;
  width: 310px;
  height: 310px;
  left: 10px;
  top: 10px;
  border: 2px solid var(--clr-golden);
  z-index: 111;
  cursor: pointer;
}
.recentProjectsSection button {
  background-color: transparent;
  border: 2px solid var(--clr-B1);
  color: var(--clr-B1);
  padding: 0.8rem 2.4rem;
  margin-top: 3rem;
}

@media only screen and (max-width: 800px) {
  .recentProjectsSection {
    margin-top: 4rem;
  }
  .recentProjectsSection .recentProjects {
    width: 98%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .recentProjectsSection .recentProjects .imgs img {
    width: 330px;
    height: 330px;
  }
  .recentProjectsSection .recentProjects .imgs .hidTxt {
    position: absolute;
    z-index: 101;
    width: 310px;
    height: 310px;
    left: 35px;
    top: 55%;
    background-color: rgba(59, 59, 59, 0.56);
    padding: 0.5rem;
  }
  .recentProjectsSection .recentProjects .imgs .hidTxt h2 {
    color: var(--clr-golden);
    filter: drop-shadow(1px 1px 2px black);
    border-bottom: 1px solid var(--clr-golden);
    font-size: 1.6rem;
    font-weight: 600;
  }
  .recentProjectsSection .recentProjects .imgs .hidTxt p {
    color: white;
    filter: drop-shadow(1px 1px 2px black);
    margin-top: -25px;
  }
  .recentProjectsSection .recentProjects .imgs::before {
    content: "";
    display: block;
    position: absolute;
    width: 310px;
    height: 310px;
    left: 35px;
    top: 10px;
    border: 2px solid var(--clr-golden);
    z-index: 111;
    cursor: pointer;
  }
  .recentProjectsSection button {
    background-color: transparent;
    border: 2px solid var(--clr-B1);
    color: var(--clr-B1);
    padding: 0.8rem 2.4rem;
    margin-top: 3rem;
  }
}
.mySlides {
  display: none;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
  animation-timing-function: ease-in ease-out;
}

@keyframes fade {
  0% {
    transform: translate3d(100vw, 0, 0);
    opacity: 0;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.testimonials-section {
  width: 100%;
  min-height: fit-content(6em);
  overflow-x: hidden;
  position: relative;
  margin: 5rem 0;
}
.testimonials-section .testimonials {
  width: 90%;
  margin: 0 auto;
  grid-template-columns: 0.7fr 1fr;
}
.testimonials-section .testimonials .testimonial-heading {
  height: auto;
  background-color: transparent;
  padding: 1rem;
}
.testimonials-section .testimonials .testimonial-heading p:nth-child(1) {
  color: var(--clr-golden);
}
.testimonials-section .testimonials .testimonial-heading h2 {
  color: var(--clr-B1);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-top: 2rem;
}
.testimonials-section .testimonials .testimonial-img-txt {
  text-align: center;
  color: black;
  font-style: italic;
  line-height: var(--lh-default);
  min-height: fit-content(24em);
}
.testimonials-section .testimonials .testimonial-img-txt img {
  width: 170px;
  height: auto;
  border-radius: 50%;
  padding: 2em;
  z-index: 1000;
}
.testimonials-section .testimonials .testimonial-img-txt h5 {
  margin: 1rem 0rem 0rem;
}
.testimonials-section .testimonials .testimonial-img-txt p {
  padding: 0em 2em 2em 2em;
}

@media only screen and (max-width: 768px) {
  .testimonials-section {
    width: 100%;
    height: auto;
  }
  .testimonials-section .testimonials {
    width: 98%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .testimonials-section .testimonials .testimonial-heading {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .testimonials-section .testimonials .testimonial-heading .testimonial-img-txt {
    height: auto;
  }
}
.footerImg {
  width: 100vw;
  display: flex;
  overflow: hidden;
}
.footerImg img {
  width: 100%;
  height: auto;
}

.footerSection {
  background-color: var(--clr-D1);
  text-align: end;
  padding-top: 2rem;
}
.footerSection .upperFooterSection {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid white;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.footerSection .upperFooterSection .form {
  display: flex;
  flex-direction: column;
}
.footerSection .upperFooterSection .form h2 {
  margin: 1rem 0;
  color: var(--clr-golden);
}
.footerSection .upperFooterSection .form input {
  border: none;
  border-bottom: 1px solid white;
  margin-bottom: 10px;
  background-color: transparent;
  color: white;
}
.footerSection .upperFooterSection .form button {
  width: -moz-max-content;
  width: max-content;
  border: none;
  padding: 0.6rem 2rem;
  margin: 1rem 0;
}
.footerSection .upperFooterSection .footerLogo img {
  width: 100px;
  height: auto;
}
.footerSection .upperFooterSection .footerLogo h3 {
  color: var(--clr-golden);
}
.footerSection .upperFooterSection .socialMedia {
  color: white;
}
.footerSection .upperFooterSection .socialMedia h3 {
  color: var(--clr-golden);
}
.footerSection .upperFooterSection .socialMedia img {
  width: 70px;
  height: auto;
  padding: 1rem;
}
.footerSection .lowerFooterSection {
  text-align: center;
}
.footerSection .lowerFooterSection h4 {
  font-size: 0.9rem;
  padding: 1rem;
  color: var(--clr-golden);
}

@media only screen and (max-width: 800px) {
  .footerSection {
    background-color: var(--clr-D1);
    text-align: end;
    padding-top: 2rem;
  }
  .footerSection .upperFooterSection {
    width: 98%;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .footerSection .upperFooterSection .form {
    display: flex;
    flex-direction: column;
  }
  .footerSection .upperFooterSection .form h2 {
    margin: 2rem 0;
    color: var(--clr-golden);
  }
  .footerSection .upperFooterSection .form input {
    border: none;
    border-bottom: 1px solid white;
    margin-bottom: 10px;
    background-color: transparent;
    color: white;
  }
  .footerSection .upperFooterSection .form button {
    padding: 0.4rem 2rem;
  }
  .footerSection .upperFooterSection .footerLogo img {
    width: 100px;
    height: auto;
    margin: 0.5rem 0;
  }
  .footerSection .upperFooterSection .footerLogo h3 {
    color: var(--clr-golden);
    margin-bottom: 2rem;
  }
  .footerSection .upperFooterSection .socialMedia {
    color: white;
  }
  .footerSection .upperFooterSection .socialMedia h3 {
    color: var(--clr-golden);
  }
  .footerSection .upperFooterSection .socialMedia img {
    width: 70px;
    height: auto;
    padding: 1rem;
  }
  .footerSection .lowerFooterSection {
    text-align: center;
  }
  .footerSection .lowerFooterSection h4 {
    font-size: 0.8rem;
    padding: 1rem;
    color: var(--clr-golden);
  }
}
.contactSection {
  width: 100vw;
  height: auto;
  padding: 10rem 0 2rem 0;
  font-family: brandon-grotesque, sans-serif;
  background-color: var(--clr-D1);
}
.contactSection .contact {
  width: 80%;
  margin: 0 auto;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contactSection .contact .contactTxt h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--clr-golden);
}
.contactSection .contact .contactTxt p {
  font-size: 1.2rem;
  margin: 2rem 0;
  color: whitesmoke;
}
.contactSection .contact .contactTxt h3 {
  margin: 1rem 0;
  color: var(--clr-golden);
}
.contactSection .contact .contactTxt h4 {
  color: whitesmoke;
}
.contactSection .contact .contactForm {
  height: 100%;
}
.contactSection .contact .contactForm h2 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--clr-golden);
}
.contactSection .contact .contactForm .form {
  display: flex;
  flex-direction: column;
}
.contactSection .contact .contactForm .form input {
  border: none;
  border-bottom: 1px solid var(--clr-golden);
  margin-bottom: 2rem;
  height: 2rem;
  background-color: transparent;
  color: white;
}
.contactSection .contact .contactForm .form textarea {
  background-color: transparent;
  border: 1px solid var(--clr-golden);
  height: 3rem;
  margin: 1rem 0 2rem 0;
  color: white;
}
.contactSection .contact .contactForm .form button {
  background-color: transparent;
  border: 2px solid var(--clr-golden);
  padding: 0.6rem 1.8rem;
  width: -moz-max-content;
  width: max-content;
  color: whitesmoke;
}

@media only screen and (max-width: 800px) {
  .contactSection {
    width: 100vw;
    height: auto;
    padding: 10rem 0 2rem 0;
    font-family: brandon-grotesque, sans-serif;
    background-color: var(--clr-D1);
  }
  .contactSection .contact {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contactSection .contact .contactTxt h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr-golden);
  }
  .contactSection .contact .contactTxt p {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: whitesmoke;
  }
  .contactSection .contact .contactTxt h3 {
    margin: 1rem 0;
    color: var(--clr-golden);
  }
  .contactSection .contact .contactTxt h4 {
    color: whitesmoke;
  }
  .contactSection .contact .contactForm {
    height: 100%;
  }
  .contactSection .contact .contactForm h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr-golden);
  }
  .contactSection .contact .contactForm .form {
    display: flex;
    flex-direction: column;
  }
  .contactSection .contact .contactForm .form input {
    border: none;
    border-bottom: 1px solid var(--clr-golden);
    margin-bottom: 2rem;
    height: 2rem;
    background-color: transparent;
  }
  .contactSection .contact .contactForm .form textarea {
    background-color: transparent;
    border: 1px solid var(--clr-golden);
    height: 3rem;
    margin: 1rem 0 2rem 0;
  }
  .contactSection .contact .contactForm .form button {
    background-color: transparent;
    border: 2px solid var(--clr-golden);
    padding: 0.6rem 1.8rem;
    width: -moz-max-content;
    width: max-content;
    color: whitesmoke;
  }
}
.saDesigns {
  background-image: url(./images/stand-alon.jpg);
}

.loftConv {
  background-image: url(./images/loft-conv.jpg);
}

.kitExt {
  background-image: url(./images/PXL-Banner1jpg.jpg);
}

.refurb {
  background-image: url(./images/kitExt.jpg);
}

.mainBannerSection {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.mainBannerSection .mainBanner {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
}
.mainBannerSection .mainBanner .mainBannerTxt {
  width: 100%;
  text-align: center;
  filter: drop-shadow(1px 1px 2px var(--clr-D1));
}
.mainBannerSection .mainBanner .mainBannerTxt h1 {
  font-size: 3rem;
  color: white;
}
.mainBannerSection .mainBanner .mainBannerTxt button {
  background-color: white;
  color: black;
  padding: 0.8rem 2.6rem;
  border: none;
  margin-top: 2rem;
}

@media only screen and (max-width: 800px) {
  .mainBannerSection {
    padding-top: 10rem;
    width: 100vw;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mainBannerSection .mainBanner {
    width: 98%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
  }
  .mainBannerSection .mainBanner .mainBannerTxt {
    width: 100%;
    text-align: center;
    filter: drop-shadow(1px 1px 2px var(--clr-D1));
    padding: 8rem 0;
  }
  .mainBannerSection .mainBanner .mainBannerTxt h1 {
    font-size: 2rem;
    color: white;
  }
  .mainBannerSection .mainBanner .mainBannerTxt button {
    background-color: white;
    color: black;
    padding: 0.5rem 2rem;
    border: none;
    margin-top: 2rem;
  }
}
.freeConsultationSection {
  margin-top: -70px;
  width: 100vw;
  height: auto;
}
.freeConsultationSection .freeConsultation {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}
.freeConsultationSection .freeConsultation .fCon {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.679);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 1px 1px 3px black;
}
.freeConsultationSection .freeConsultation .fCon img {
  width: 40px;
  height: auto;
}
.freeConsultationSection .freeConsultation .fCon h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

@media only screen and (max-width: 800px) {
  .freeConsultationSection {
    margin-top: -70px;
    width: 100vw;
    height: auto;
  }
  .freeConsultationSection .freeConsultation {
    width: 98%;
    grid-template-columns: 1fr 1fr;
  }
  .freeConsultationSection .freeConsultation .fCon {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.679);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    box-shadow: 1px 1px 3px black;
  }
  .freeConsultationSection .freeConsultation .fCon h2 {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.extendStyleSection {
  margin: 5rem 0;
  width: 100vw;
  text-align: center;
}
.extendStyleSection h2 {
  color: var(--clr-B1);
  font-family: cursive;
  font-weight: 600;
  font-size: 2rem;
  padding: 0rem;
}
.extendStyleSection p {
  padding: 2rem 6rem;
}
.extendStyleSection button {
  background-color: transparent;
  color: var(--clr-B1);
  padding: 0.8rem 2.6rem;
  border: 1px solid var(--clr-B1);
  margin-top: 1rem;
}
@media only screen and (max-width: 800px) {
  .extendStyleSection h2 {
    padding: 1rem;
  }
  .extendStyleSection p {
    padding: 1rem 1rem;
  }
}
.transformSpacesSection {
  width: 100vw;
  height: auto;
  position: relative;
}
.transformSpacesSection h2 {
  text-align: center;
  color: var(--clr-B1);
  font-size: 2rem;
  font-weight: 500;
  font-family: cursive;
  padding: 0rem;
}
.transformSpacesSection .transformSpaces {
  width: 80%;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.transformSpacesSection .transformSpaces .transformSpace {
  width: 100%;
  padding: 2rem;
  color: rgba(245, 245, 245, 0.749);
  background-color: var(--clr-D1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: center;
  color: white;
  box-shadow: 2px 2px 4px rgb(138, 138, 138);
}
.transformSpacesSection .transformSpaces .transformSpace img {
  width: 30px;
  height: auto;
}
.transformSpacesSection .transformSpaces .transformSpace h2 {
  margin-bottom: 1rem;
  color: var(--clr-golden);
}

@media only screen and (max-width: 800px) {
  .transformSpacesSection h2 {
    padding: 1rem;
  }
  .transformSpacesSection .transformSpaces {
    width: 98%;
    grid-template-columns: 1fr;
  }
}
.aboutBannerSection {
  width: 100vw;
  height: 70vh;
  background-image: url(./images/about_us_banner.jpeg);
  background-size: contain;
}
.aboutBannerSection .aboutBanner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutBannerSection .aboutBanner h1 {
  font-size: 3rem;
  color: white;
  filter: drop-shadow(1px 1px 1px black);
  padding: 0rem;
}

.aboutUs .about {
  font-family: monospace;
}

@media only screen and (max-width: 800px) {
  .aboutBannerSection {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
  }
  .aboutBannerSection .aboutBanner h1 {
    padding: 2rem;
  }
}
.galleryBannerSection {
  width: 100vw;
  height: 60vh;
  background-image: url(./images/about_us_banner.jpeg);
  background-position: center center;
  background-size: cover;
}
.galleryBannerSection .galleryBanner {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.galleryBannerSection .galleryBanner h1 {
  font-size: 3rem;
  color: white;
  filter: drop-shadow(1px 1px 2px black);
}

.gallery {
  width: 100%;
  height: auto;
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gallery img {
  width: 300px;
  height: 300px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.1);
}

.expanded-img-container {
  display: none;
  position: fixed;
  top: 12vh;
  left: 5%;
  width: 90%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  text-align: center;
}

.expanded-img-container img {
  width: 500px;
  max-width: 80%;
  height: auto;
  max-height: 500px;
  margin-top: 5%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 800px) {
  .galleryBannerSection {
    width: 100vw;
    height: 60vh;
    background-image: url(./images/about_us_banner.jpeg);
    background-position: center center;
    background-size: cover;
  }
  .galleryBannerSection .galleryBanner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .galleryBannerSection .galleryBanner h1 {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(1px 1px 2px black);
  }
  .gallery {
    width: 100%;
    height: auto;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .gallery img {
    width: 300px;
    height: 300px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .gallery img:hover {
    transform: scale(1.1);
  }
  .expanded-img-container {
    display: none;
    position: fixed;
    top: 12vh;
    left: 5%;
    width: 90%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    text-align: center;
  }
  .expanded-img-container img {
    width: 500px;
    max-width: 80%;
    height: auto;
    max-height: 500px;
    margin-top: 5%;
  }
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}/*# sourceMappingURL=style.css.map */