@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2'),
       url('/assets/fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-black';
  src: url('/assets/fonts/Inter-Black.woff2') format('woff2'),
       url('/assets/fonts/Inter-Black.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-bold';
  src: url('/assets/fonts/Inter-Bold.woff2') format('woff2'),
       url('/assets/fonts/Inter-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-light';
  src: url('/assets/fonts/Inter-Light.woff2') format('woff2'),
       url('/assets/fonts/Inter-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-thin';
  src: url('/assets/fonts/Inter-Thin.woff2') format('woff2'),
       url('/assets/fonts/Inter-Thin.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /******* COLORS ********/
    --color-primary: #003C43;
    --color-secondary: #135D66;
    --color-accent: #77B0AA;
    --color-light: #E3FEF7;
    --color-white: #ffffff;
    --color-black: #222222;
    --color-green: #565656;

      --primary-light: #8abdff;
      --primary: #6d5dfc;
      --primary-dark: #5b0eeb;
      
      --white: #FFFFFF;
      --greyLight-1: #E4EBF5;
      --greyLight-2: #c8d0e7;
      --greyLight-3: #bec8e4;
      --greyDark: #8697be;
  
    /******* FONT FAMILY ********/
    --ff-inter: "Inter", sans-serif;
    --ff-inter-black: "Inter-black", sans-serif;
    --ff-inter-bold: "Inter-Bold", sans-serif;
    --ff-inter-light: "Inter-light", sans-serif;
    --ff-inter-thin: "Inter-thin",  sans-serif;

  
    /******* FONT SIZES ********/
    --fs-h1: clamp(3rem, 8vw + 1rem, 6.5rem);
    --fs-h2: clamp(2.5rem, 6vw + 0.5rem, 5.5rem);
    --fs-h3: clamp(2rem, 5vw, 4.5rem);
    --fs-h4: clamp(1.5rem, 4vw, 3.5rem);
    --fs-h5: clamp(1.25rem, 3vw, 3rem);
    --fs-h6: clamp(1rem, 2.5vw, 2.5rem);
    --fs-li: clamp(1rem, 2.25vw, 2rem);
    --fs-p: clamp(1rem, 3vw, 1.2rem);
    --fs-psm: clamp(0.75rem, 1.5vw, 1.125rem);

    /******* TRANSITIONS ********/
    --transition: all 0.2s ease;
  }


  /******* GENERAL STYLES ********/
  html {
    background: var(--greyLight-1);
  }
    

  body {  
    background-color: var(--greyLight-1);
    color: var(--color-black);
    line-height: 1.5;
    font-family: var(--ff-inter);
    width: min(1920px, calc(100% -3%));
    text-wrap: balance;
  }

  img{
    width: 100%;
    height: auto;
    min-width: 1rem;
    box-sizing:border-box;
    object-fit: cover;
  }


  a {
    text-decoration: none;
    color: inherit;
  }

  a:hover {
    color: var(--color-blue);
  }

  h1,
  h2, 
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--ff-inter);
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: var(--fs-h1);
    line-height: 1;
    text-transform: uppercase;
  }
  
  h2 {
    font-size: var(--fs-h2);
    line-height: 1;
  }
  
  h3 {
    font-size: var(--fs-h3);
    line-height: 1;
  }
  
  h4 {
    font-size: var(--fs-h4);
    line-height: 1;
  }
  
  h5 {
    font-size: var(--fs-h5);
    line-height: 1;
  }
  
  h6 {
    font-size: var(--fs-h6);
    line-height: 1.1;
  }
  
  p {
    font-size: var(--fs-p);
    line-height: 1.45;
    font-family: var(--ff-inter);
  }
  
/*********** HEADER START ***********/
header{
    padding: 1% 5% 5% 5%;
}

.homepage{
  background-image: url("../images/hero-bg-3sm.webp");
    background-image: -webkit-image-set(
    url("/assets/images/hero-bg-3sm.webp") 1x,
    url("/assets/images/hero-bg-3md.webp") 2x);
    background-image: image-set(
    url("/assets/images/hero-bg-3sm.webp") 1x,
    url("/assets/images/hero-bg-3md.webp") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.servicespage{
  background-image: url("/assets/images/hero-bg-4sm.webp");
    background-image: -webkit-image-set(
    url("/assets/images/hero-bg-4sm.webp") 1x,
    url("/assets/images/hero-bg-4md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-4sm.webp") 1x,
    url("../images/hero-bg-4md.webp") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.productspage{
  background-image: url("/assets/images/hero-bg-5sm.webp");
    background-image: -webkit-image-set(
    url("/assets/images/hero-bg-5sm.webp") 1x,
    url("/assets/images/hero-bg-5md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-5sm.webp") 1x,
    url("../images/hero-bg-5md.webp") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.portspage{
  background-image: url("/assets/images/herobg-port-sm.webp");
    background-image: -webkit-image-set(
    url("/assets/images/herobg-port-sm.webp") 1x,
    url("/assets/images/herobg-port-md.webp") 2x);
    background-image: image-set(
    url("../images/herobg-port-sm.webp") 1x,
    url("../images/herobg-port-md.webp") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.stonewallpage{
  background-image: url("/assets/images/hero-bg-stone-walls-sm.webp");
    background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.firepitpage{
  background-image: url("/assets/images/stone-firepit.webp");
    /* background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.walkwayspage{
  background-image: url("/assets/images/herobg-walkways.webp");
    /* background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.kitchenspage{
  background-image: url("/assets/images/herobg-kitchens.webp");
    /* background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.waterpage{
  background-image: url("/assets/images/water-feature-hero.webp");
    /* background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.contactpage{
  background-image: url("/assets/images/contact.png");
    /* background-image: -webkit-image-set(
    url("/assets/images/hero-bg-stone-walls-sm.webp") 1x,
    url("/assets/images/hero-bg-stone-walls-md.webp") 2x);
    background-image: image-set(
    url("../images/hero-bg-stone-walls-sm.webp") 1x,
    url("../images/hero-bg-stone-walls-md.webp") 2x); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    max-width: 25%;
}

.logo img{
    width: 100px;
    height: 100px;
}

.navbar{
    max-width: 50%;
}

.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    list-style: none;
}

.navbar ul li a{
    color: var(--color-white);
    font-family: var(--ff-inter);
    font-size: var(--fs-p);
    text-transform: uppercase;
}

.cta{
    max-width: 25%;
    display: flex;
    color: var(--color-white);
    padding: .4rem 1rem;
    border-radius: .3rem;
    justify-content: flex-end;
    align-items: center;
    font-family: var(--ff-inter);
    font-size: var(--fs-p);
    background: #427c8c;
    transition: all .5s ease-out;
    cursor: pointer;
}

.cta:hover{
  background: var(--color-white);
  color: #427c8c;
}

.active{
  border-bottom: 3px solid var(--color-white);
}

/**************MOBILE NAVBAR******************/
/* Add these styles to your existing CSS file */

/* Add these styles to your existing CSS file */

.mobile-menu-content {
  display: none; /* Hide the mobile menu by default */
  background-color: #000;
  position: absolute;
  top: 0px; /* Adjust based on your header height */
  right: 0;
  width: 80%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu img{
  filter: invert(1);
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu-content ul li {
  /* border-bottom: 1px solid #ddd; */
  text-align: center;
}

.mobile-menu-content ul li a {
  display: flex;
  padding: 15px 25px;
  text-decoration: none;
  color: #fff;
  font-size: var(--fs-h5);
  font-family: var(--ff-inter-bold);
  text-transform: uppercase;
}

.mobile-menu-content ul li a:hover {
  background-color: #27b3ffcb;
}

.dropdown{
  background: #000000;
  display: block;
  transform: translateX(0px);
  animation: .5s animation;
  height: 100svh;
}

@keyframes animation {
  from {
    top: -200px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}

.close-btn {
  text-align: right;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5em;
  background-color: #000;
  color: var(--color-white);
}

.overlay{
  border-image: linear-gradient(hsla(0, 0%, 0%, 0.122) ,hsla(215, 60%, 4%, 0.473))fill 1;
}

.hero{
    padding: 10% 0 0 0;
}

.hero h1{
    color: var(--color-white);
    text-shadow: 2px 2px 0 #000;
    font-family: var(--ff-inter-black);
    max-width: 70%;
    margin-bottom: 1.5rem;
}

.hero h2{
    font-size: var(--fs-h5);
    color: var(--color-white);
    font-family: var(--ff-inter-bold);
    text-shadow: 2px 2px 0 #000;
    line-height: 1.2;
}

.hero p{
    color: #ffffff;
    font-family: var(--ff-inter);
    text-shadow: 1px 1px 0 #000;
    margin-top: 2rem;
}

.hero .btn{
    background: #427c8c;
    font-family: var(--ff-inter-bold);
    padding: 1rem 1.5rem;
    border-radius: .3rem;
    color: var(--color-white);
    width: fit-content;
    margin-top: 3rem;
    cursor: pointer;
    font-size: var(--fs-p);
    transition: all .5s ease-out;
}

.hero .btn:hover{
  background: var(--color-white);
  color: #427c8c;
}

.mobile-nav{
  display: none;
}


/************CARD SECTION************/
.card-section{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 5%;
  column-gap: 1rem;
  row-gap: 5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.card{
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  padding: 1rem;
  min-width: 13rem;
  border-radius: .3rem;
}

.card img{
  max-width: 120px;
  margin-top: -5rem;
  margin-bottom: 2rem;
}

.card h3{
  font-size: var(--fs-p);
  font-weight: 700;
  font-family: var(--ff-inter-bold);
}

/************HOME SERVICES SECTION************/
.home-services{
  display: flex;
  padding: 2% 5%;
  height: fit-content;
  gap: 2rem;
  padding-top: 3rem;
  flex-wrap: wrap;
  background: #f1f1f1;
}


.left-home-services, .right-home-services{
  flex: 1;
  min-width: 15rem;
}

.left-home-services img{
  display: flex;
  height: 100%;
}

.right-home-services{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.right-home-services h4{
  font-size: var(--fs-h6);
  font-weight: 700;
  font-family: var(--ff-inter-bold);
}

.right-home-services h5{
  font-family: var(--ff-inter);
  line-height: 1.3;
  font-size: var(--fs-p);
  font-weight: 700;
  margin-top: -1rem;
  color: var(--color-green);
}

.right-home-services img{
  width: 22px;
  height: 22px;
}

.five{
  margin-top: 1rem;
}

.ten{
  margin-top: 2rem;
}

.flexarrow{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding-bottom: 1rem;
}

.flexarrow a{
  font-weight: 300;
  font-family: var(--ff-inter-bold);
}

.flexarrow img{
  margin-left: .5rem;
  margin-bottom: .25rem;
  width: 20px;
  height: 20px;
}

/********** COMMENTS ****************/
.comments{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 5%;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-comments{
  display: flex;
  flex: 1;
  flex-direction: column;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: .4rem;
  min-width: 15rem;
  background: #f1f1f1;
}

.top-card{
  display: flex;
  flex-direction: row;
}

.avatar{
  width: 25%;
}

.avatar img{
  max-width: 100px;
  max-height: 100px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.address{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 1rem;
}

.address h6{
  font-size: var(--fs-h6);
  font-weight: 700;
  font-family: var(--ff-inter-bold);
}

.address p{
  line-height: .5em;
  font-family: var(--ff-inter);
  font-size: var(--fs-psm);
  margin-top: -.5rem;
}

.bottom-card{
  display: flex;
  margin-top: 1rem;
}

/***********SERVICES PAGE************/
.serv-wrap{
  padding: 5%;
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
}

.serv-wrap h3{
  font-size: var(--fs-h5);
}
.serv-img-wrap{
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  padding-bottom: 2rem;
}

.serv-img{
  border: 1px solid #ccc;
  padding: 1rem;
  background: #f2f2f2;
}

.btn-full{
  display: flex;
  border: 1px solid #ccc;
  padding: 2%;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-full:hover{
  background: var(--color-white);
  color: var(--color-secondary);
}

.btn-full:hover img{
  filter: invert(0);
}

.btn-full img{
  width: 32px;
  height: 32px;
  min-width: 26px;
  min-height: 26px;
  object-fit: contain;
  margin-right: 1rem;
  filter: invert(1);
}
/*****************PRODUCT SECTION*********************/
.prod-main{
  display: flex;
  flex-direction: column;
  padding: 5%;
}

.prod-main h3{
  font-size: var(--fs-h5);
  font-weight: 700;
  font-family: var(--ff-inter-bold);
  border-bottom: 10px solid #41C4ED;
  width: fit-content;
}

.prod-cards{
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}

.prod-cards img{
  aspect-ratio: 2.35 / 1;
  max-height: 15rem;
  object-fit: cover;
}

.prod-cards h4{
  font-size: var(--fs-p);
  font-family: var(--ff-inter-bold);
}

.prod-cards p{
  margin-bottom: 1rem;
}

.prod-cards span{
  font-family: var(--ff-inter-light);
  font-style: italic;
  color: var(--color-primary);
}
/****************PORTFOLIO PAGE********************/
.portfolio-wrapper{
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  padding-bottom: 2rem;
  padding: 5%;
}

.card-port{
  display: flex;
  flex-direction: column;
  background: #F1F1EF;
  padding: 1rem;
  min-width: 10rem;
}

blockquote {
  font-size: var(--fs-li); /* Increase the font size */
  line-height: 1.6; /* Adjust the line height for better readability */
  padding: 1.2rem; /* Increase top padding to accommodate larger ::before */
  margin: 0 0 5rem 0; /* Add some margin to separate it from other content */
  border-left: 1rem solid #cfcfcf; /* Optional: add a left border for a quote effect */
  color: #555; /* Optional: change the text color */
  background: #f9f9f9; /* Optional: add a background color */
  font-style: italic;
}



.card-port h3{
  font-size: var(--fs-p);
  font-family: var(--ff-inter-bold);
  margin-top: 1rem;
}

.card-port p{
  font-family: var(--ff-inter-light);
}

.bottom-port{
  padding: calc(5% + 1rem);
}

.bottom-port span{
  font-style: italic;
}

.bottom-port h4{
  margin: 2rem 0;
}

.bottom-port ul li{
  margin: 1rem;
}

.bottom-port a{
  color: var(--color-primary);
  text-decoration: underline;
  font-style: italic;
}
/****************WALLS PAGE**************/
.walls-main{
  padding: 5%;
}

.walls-main h3{
  font-size: var(--fs-h6);
}

.walls-main ul li{
  margin: 1% 3%;
  font-family: var(--ff-inter-bold);
  color: #427c8c;
}

.walls-main ul li ul li{
  color: var(--color-black);
  font-family: var(--ff-inter-light);
}

.walls-main a{
  color: #427c8c;
  text-decoration: underline;
  font-style: italic;
}

.bottom-walls{
  padding: 3% 5% 0 5%;
}

.bottom-walls img{
  border: 1px solid #ccc;
  padding: 2%;
}

.bottom-walls h3{
  font-family: var(--ff-inter-bold);
  font-size: var(--fs-h6);
  line-height: 1.3;
}

.bottom-walls span{
  font-family: var(--ff-inter-light);
  font-style: italic;
}

.bottom-walls p{
  padding: .5rem 0 1rem 0;
}

.bottom-walls h4{
  font-family: var(--ff-inter-bold);
  font-size: var(--fs-h6);
  line-height: 1.3;
}

.bottom-walls ul{
  margin-bottom: 1rem;
}

.bottom-walls ul li{
  margin: 1% 3%;
  font-family: var(--ff-inter-bold);
  color: #427c8c;
}

.bottom-walls h5{
  font-family: var(--ff-inter-bold);
  font-size: var(--fs-h6);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.bottom-walls a{
  color: #427c8c;
  text-decoration: underline;
  font-style: italic;
}

/****************CONTACT****************/
.bottom-walls form{
  background: var(--greyLight-1);
  border-radius: 3rem;
  box-shadow:.8rem .8rem 1.4rem var(--greyLight-2), 
            -.2rem -.2rem 1.8rem var(--white);
  padding: 4rem;
  margin: 4rem 0;
}
.bottom-walls form div{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;      
}

fieldset{
  border: none;
  padding: 2rem;
  margin: 0;
}

.bottom-walls form input{
  padding: 1rem;
  width: 20.4rem;
  height: 4rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  padding-left: 1.4rem;
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 0.5rem var(--white);
  background: none;
  font-family: inherit;
  color: var(--greyDark);
}
.bottom-walls form input::-webkit-input-placeholder {
  color: var(--greyDark);
}
.bottom-walls form input::-moz-placeholder {
  color: var(--greyDark);
}
.bottom-walls form input:-ms-input-placeholder {
  color: var(--greyDark);
}
.bottom-walls form input::placeholder {
  color: var(--greyDark);
}

.bottom-walls form textarea{
  padding: .5rem 1rem;
  width: 100%;
  height: 6rem;
  border: none;
  border-radius: .5rem;
  font-size: 1.4rem;
  padding-left: 1.4rem;
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0 0.5rem var(--white);
  background: none;
  font-family: inherit;
  color: var(--greyDark);
}

.bottom-walls form input::-moz-placeholder {
  color: var(--greyDark);
}
.bottom-walls form input:-ms-input-placeholder {
  color: var(--greyDark);
}
.bottom-walls form input::placeholder {
  color: var(--greyDark);
}

.bottom-walls form input:focus {
  outline: none;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
}

.bottom-walls form textarea:focus {
  outline: none;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
}

.bottom-walls form textarea::placeholder{
  color: var(--greyDark);
}

.btn-form {
  width: 15rem;
  height: 4rem;
  border-radius: 1rem;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  background: none;
  font-size: 1.4rem;
  font-family: inherit;
  color: var(--greyDark);
}

.bottom-walls form button{
  color: var(--greyDark);
}

.bottom-walls form button:hover{
  color: var(--primary);
}

.bottom-walls form button:active{
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 0.5rem var(--white);
}

@media (max-width: 600px){
  .bottom-walls form{
  background: var(--greyLight-1);
  border-radius: 2rem;
  box-shadow:.8rem .8rem 1.4rem var(--greyLight-2), 
            -.2rem -.2rem 1.8rem var(--white);
  padding: 1rem;
  margin: 1rem 0;
}
.bottom-walls form div{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;      
}

fieldset{
  border: none;
  padding: 1rem;
  margin: 0;
}

.bottom-walls form input{
  padding: .5rem;
  width: fit-content;
  height: 2rem;
  border: none;
  border-radius: .5rem;
  font-size: 1rem;
  padding-left: .6rem;
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 0.5rem var(--white);
  background: none;
  font-family: inherit;
  color: var(--greyDark);
}

.bottom-walls form textarea{
  padding: .5rem;
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: .3rem;
  font-size: 1rem;
  padding-left: .6rem;
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0 0.5rem var(--white);
  background: none;
  font-family: inherit;
  color: var(--greyDark);
}

.btn-form {
  width: fit-content;
  height: 2rem;
  border-radius: .5rem;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  background: none;
  font-size: 1rem;
  padding: .5rem 1rem;
  font-family: inherit;
  color: var(--greyDark);
}
}

#spinner {
        display: none;
    }

#spinner::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 5px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}



/***********FOOTER****************/
footer{
  display: flex;
  flex-wrap: wrap;
  background: var(--color-primary);
  padding: 2% 5%;
  height: fit-content;
  gap: 2rem;
  padding-top: 3rem;
}

.left-footer, .right-footer, .mid-footer{
  flex: 1;
  min-width: 15rem;
}

.left-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-footer img{
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.mid-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
}

.right-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.right-footer form{
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.right-footer input, .right-footer button{
  padding: .3rem .7rem;
}

/********** MEDIA QUERIES************/

@media (max-width: 1000px){
  .nav{ 
    display: none;
  }
  
  .mobile-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo{
    justify-content: flex-start;
  }

  .mobile-logo img{
    max-width: 75px;
    max-height: 75px;
  }

  .mobile-menu{
    justify-content: flex-end;
  }

  .mobile-menu img{
    max-width: 55px;
    max-height: 55px;
  }

}