@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;
  
    /******* 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 ********/

  body {  
    background-color: var(--color-white);
    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;
}

.waterfallspage{
  background-image: url("/assets/images/herobg-waterfalls.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;
}

.contactpage{
  background-image: url("/assets/images/herobg-contact.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;
}

.spacer{
  margin-bottom: 1.5rem;
}

.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;
    max-width: 80%;
    margin-inline: auto;
}

.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;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
}

.five:hover{
  background: var(--color-white);
  color: var(--color-primary);
  outline: var(--color-primary) solid 1px;
}

.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;
}

.card-port span, .card-port h3, .card-port p{
  padding: 0.3rem 1rem;
}

.card-port img{
  width: 100%;
  height: 15rem;
  border-radius: .3rem .3rem 0 0;
  padding-bottom: .2rem;
  border-bottom: 2px dotted #ccc;
}

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 span{
  font-size: 0.8rem;
  margin-top: .5rem;
}

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

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

.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, .walls-main h4, .walls-main h5, .walls-main h6{
  font-family: var(--ff-inter-bold);
  font-size: var(--fs-h6);
}

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

.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;
}

/***********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;
}

/********** Contact form************/
.contactus{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5%;
  width: 100%;
}

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

.contactus p{
  font-size: var(--fs-p);
  font-family: var(--ff-inter-light);
  padding: 1rem 0;
  line-height: 1.5;
  max-width: 70%;
}

.contactus form{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

fieldset{
  margin: 2em 0;
  padding: 1em 2em;
  border: solid 1px #ccc;
  border-radius: 5px;
  min-width: 200px;
  background: #eff2ec;
}

legend{
  font-size: var(--fs-li);
  padding: 0 .25em;
  color: #999;
  background: var(--color-white);
  border-radius: .3em;
}

label{
  display: block;
  margin-top: 1em;
}

.checks label{
  margin-top: 0;
}

label:first-of-type{
  margin-top: 0;
}

input{
  padding: .8em;
  border: solid 1px #999;
  border-radius: .3em;
}

input[type="email"], input[type="text"], input[type="tel"], input[type="date"]{
  max-width: 100%;
  min-width: 30%;
}

textarea{
  min-height: 8em;
  min-width: 100%;
  padding: .5em;
  border: solid 1px #999;
}

select{
  padding: .8em;
  border: solid 1px #999;
  border-radius: .3em;
  min-width: 30%;
  background: var(--color-white);
}

.checks{
  margin-bottom: 1em;
}

.checks p{
  margin-bottom: 0;
}

input[type="checkbox"] + label, input[type="radio"] + label{
  display: inline-block;
  padding-top: o;
  margin-top: 0;
}

input[type="radio"]{
  margin-left: 1.5em;
  margin-right: 0;
}

input[type="radio"]:first-of-type{
  margin-left: 0;
}

input[type="submit"], input[type="reset"]{
  padding: .5em 1em;
  border-radius: 6px;
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  font-size: var(--fs-p);
  font-family: var(--ff-inter-bold);
  transition: all .2s ease-in-out;
}

input[type="submit"]:hover{
  background-color: var(--color-secondary);
  color: var(--color-white);
}



.message {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}
.message.success {
  background-color: #d4edda;
  color: #155724;
}
.message.error {
  background-color: #f8d7da;
  color: #721c24;
}

/********** 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;
  }

}