*{
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
  /* outline: 1px solid red !important; */
}

:root{
  --primary-color: #49a8d6;
  --secondary-color: #be1b1d;
  --tertiary-color: #c497fc;
  --quaternary-color: #2bba69;
  --grey-color: #F7F7F7;
}

body{
  margin: 0;
  font-family: sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

img{
  max-width: 100%;
  height: auto;
}

.container{
width: 95%;
margin: 0 auto;
}

.clearfix::after,
section::after,
footer::after{
  content: '';
  display: block;
  clear: both;
}

.mobile{
  display: flex;
  justify-content: center;
}

.desktop{
  display: none;
}

@media (min-width: 60rem){
  .desktop{
    display: inline;
  }
  
  .mobile{
    display: none;
  }
}
/* Column
=========*/

.col-3{
  display: flex;
  flex-direction: column;
}

.col-2{
  display: flex;
  flex-direction: column;
}

.col-1{
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media (min-width: 60rem){
.col-3{
  width: 36.666%;
}

.col-2{
  width: 30%;
}

.col-1{
  width: 16.666%;
}

}

/* Page Theme
=============*/

.Comic-panel{
  border: 2px solid black;
}



/* Typography
=============*/

.unstyled-list {
  list-style-type: none;
}

a,
a:visited,
a:hover{
  text-decoration: none;
  color: inherit;
}

h1, 
h2, 
h3, 
h4,
h5,
h6
p{
  margin: 0;
}

.primary-color{
  color: var(--primary-color);
}

.secondary-color{
  color: var(--secondary-color);
}

.tertiary-color{
  color: var(--tertiary-color);
}

.quaternary-color{
  color: var(--quaternary-color);
}

select:invalid {
  color: #757575;
}

select option {
  color: #000000;
}


/* Button
=========*/

[class^=button]{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: .7rem;
  border-radius: .3rem;
  border: 2px solid;
  width: fit-content;
  transition: transform 0.2s ease-in-out;
}

[class^=button]:hover{
  transform: scale(1.2);
}

.button-floating{
  margin: 0 auto;
}

.button-primary{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.button-primary:hover{
  background-color: #8cb7cc;
}

.button-secondary{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.button-secondary:hover{
  background-color: #be585a;
}

.button-tertiary{
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: white;
}

.button-tertiary:hover{
  background-color: #dbc2fa;
}

.button-white{
  background-color: white;
  border-color: white;
  color: black;
}


/* Header 
========= */

.headerMobile{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85vw;
  position: fixed;
  border-radius: 10px;
  background-color: white;
  height: 3rem;
  top: 1rem;
  z-index: 99;
  box-shadow: 0 .2rem 1rem -.5rem rgb(121, 111, 111);
}

.headerMobile-logo-holder{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: .9rem;
  width: 85%;
}

.hM-Logo-1{
  width: 3rem;
}

.hM-Logo-2{
  width: 10rem;
}

.bar-holder {
  display: inline-block;
  cursor: pointer;
  padding-right: .6rem;
}

.bar1, .bar2, .bar3 {
  width: 1.8rem;
  height: .17rem;
  background-color: var(--primary-color);
  margin: .4rem 0;
  transition: 0.4s;
  border-radius: 10px;
}

/* The sidepanel menu */
.sidepanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: var(--grey-color);
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: .5rem .5rem .5rem .5rem;
  text-decoration: none;
  font-size: 1.7rem;
  color: black;
  display: block;
  transition: 0.3s;
}

.sidepanel div{
  display: flex;
  justify-content: space-evenly;
  margin-top: 15vh;
  width: 95%;
  justify-self: flex-end;
}

.sidepanel img{
  width: 3rem;
}

.sidepanel > img{
  position: absolute;
  bottom: 5%;
  right: 10%;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: -.75rem;
  right: 1rem;
  font-size: 5rem;
  font-weight: 200;
  margin-left: 50px;
  color: var(--primary-color);
}

@media (min-width: 60rem) {
  /*
  .header-desktop{
    position: sticky;
    top: 0;
  }
  */

  .header-top{
    display: flex;
    justify-content: space-evenly;
    font-size: .95rem;
    font-weight: 700;
    color: white;
    background-color: var(--primary-color);
    padding: 1rem;
  }

  .header-top > div{
    display: flex;
    align-items: center;
    column-gap: .3rem;
  }

  .header-top img{
    width: 2rem;
  }

  .header-bot{
    display: flex;
    justify-content: space-between;
    padding: 0rem 3rem;
    width: 95%;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: auto;
    border-bottom: 2px solid black;
  }

  .header-bot > div{
    width: 25%;
  }

  .header-nav{
    width: 45%;
  }

  .header-nav > ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-nav a:hover {
    color: var(--primary-color);
  }

  .header-nav-contact{
    background-color: var(--secondary-color);
    padding: 1rem;
    color: white;
    border-radius: .5rem;
  }

  .header-nav-contact:hover{
    background-color: var(--tertiary-color);
  }
}


/* Home Hero
============*/

.Home-hero{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 95%;
  margin: auto;
  padding: 25vh 0 35vh;
  background-image: url('/assets/Background-3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid black;
  border-top: 0;
  color: white; 
}

.H-h-text-holder{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.85);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.H-h-image-holder{
  width: 15rem;
  align-self: flex-start;
  justify-self: ;
}

.H-h-button-holder{
  display: flex;
  gap: 7rem;
}

.H-h-button-holder > a{
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
}

.H-h-button-holder > a > img{
  width: 1.3rem;
}

@media (max-width: 60rem) {
  .Home-hero{
    width: 98%;
    padding: 15vh 0;
    background-position: 50% 20%;
  }

  .H-h-text-holder{
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .H-h-button-holder{
    gap: 2.5rem;
  }

}

/* Home Services
================*/

.Home-services{  
  position: relative;
  text-align: center;
  padding: 80vh 0;
  background-image: url(/assets/Background-2.png);
  background-size: cover;
  background-color: var(--grey-color);
}

.H-s-container{
  position: absolute;
  top: -15%;
  left: 6%;
  display: flex;
  flex-direction: column;
  border: 2px solid black;
  border-radius: .7rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.65);
  background-color: white;
  width: 88%;
  gap: 2rem;
  padding: 2.5rem 0;
}

.H-s-top-title h4{
  margin-bottom: 1rem;
}

.H-s-flag-holder{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  text-align: start;
}

.H-s-flag-holder img{
  width: 15%;
}

.H-s-card-gallery{
  display: flex;
  justify-content: space-evenly;
}

.H-s-card-holder{
  width: 28%;
}

.H-s-card-holder a{
  color: white;
}

.H-s-card{
  display: flex;
  flex-direction: column;
  border: .5rem solid black;
  border-radius: .7rem;
  border-bottom-right-radius: 2rem;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.45);
  background-image: url(/assets/Card-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: .75rem;
  margin-bottom: 3rem;
}

.red-card{
  background-image: url(/assets/Card-2.png);
}

.blue-card{
  background-image: url(/assets/Card-3.png);
}

.H-s-c-title,
.H-s-c-sub-title,
.H-s-c-text{
  background-color: #dcf0e5;
  border: 4px solid #336549;
  border-radius: 1rem;
  padding: .3rem .2rem .3rem .5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.32);
  margin-bottom: .5rem;
}

.r-c-title,
.r-c-sub-title,
.r-c-text{
  background-color: #f0dedc;
  border: 4px solid #5e3430;
}

.b-c-title,
.b-c-sub-title,
.b-c-text{
  background-color: #dce8f0;
  border: 4px solid #30475e;
}

.H-s-c-title img,
.H-s-c-sub-title img{
  width: 1.8rem;
  transition: transform 0.2s ease-in-out;
}

.H-s-c-title img:hover,
.H-s-c-sub-title img:hover{
  transform: scale(1.3);
}

.H-s-c-image{
  border-radius: .7rem;
  border: 4px solid #336549;
  width: 93%;
  align-self: center;
  transition: transform 0.2s ease-in-out;
}

.H-s-c-image:hover{
  transform: scale(1.1);
}

.r-c-image{
  border: 4px solid #5e3430;
}

.b-c-image{
  border: 4px solid #30475e;
}

.H-s-c-text{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eefef5;
  font-size: .8rem;
  text-align: start;
}

.r-c-text{
  background-color: #fdf3f3;
}

.b-c-text{
  background-color: #eff0f2;
}

.H-s-c-text span{
  font-weight: 700;
  text-decoration: underline;
}

.H-s-c-text img{
  position: absolute;
  width: 6rem;
  right: -3%;
  bottom: -15%;
  transition: transform 0.2s ease-in-out;
}

.H-s-c-text img:hover{
  transform: scale(1.5);
}

@media (max-width: 60rem){
  .Home-services{
    padding: 10vh 0;
  }

  .H-s-container{
    position: static;
    width: 95%;
    margin: 0 auto;
  }

  .H-s-flag-holder{
    flex-wrap: wrap;
    row-gap: 2rem;
    margin-bottom: 2rem;
  }

  .H-s-flag-holder img{
    width: 31%;
  }

  .H-s-card-gallery{
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
  }

  .H-s-card-holder{
    width: 95%;
  }  
  
  .H-s-card{
    margin-bottom: 1rem;
  }

  .H-s-c-text img{
    bottom: -25%;
  }
}

/* Home Intro
=============*/



.Home-intro{
  display: flex;
  align-items: stretch;
  margin: 0 auto 2rem;
}

.Home-intro-left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  padding: 1rem;
  background-image: url(/assets/Background-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: .6rem;
}

.H-i-left-top{
  display: flex;
  justify-content: center;
}

.H-i-left-bot img{
  float: right;
  margin-left: 20px; 
  margin-bottom: 6px;
  width: 12rem;
  border-radius: .5rem;
  border: 2px solid black;
}

.H-i-left-bot p{
  margin: .75rem 0;
  font-weight: 600;
}

.Home-intro-right{
  width: 55%;
}

.H-i-right-top{
  background-image: url(/assets/Plumb-Van-1.jpg);
  background-position:  50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25vh;
  margin-bottom: .6rem;
}

.H-i-right-bot{
  background-image: url(/assets/Plumb-Character-1-4.png);
  background-position:  50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18vh;
}

@media (max-width: 60rem){
  .Home-intro{
    flex-wrap: wrap;
  }

  .Home-intro-left{
    width: 100%;
    margin-right: 0;
  }

  .H-i-right-top{
    padding: 10vh 47vw;
    margin-top: .6rem
  }

  .H-i-right-bot{
    padding: 10vh 47vw;
  }
}

/*Home Review
=============*/

.Home-reviews{
  margin: 4rem 0;
  text-align: center;
}

.H-p-review-holder{
  column-count: 3; /* Creates 3 columns */
  column-gap: 20px; /* Space between the columns */
  max-width: 1200px; 
  margin: 1rem auto; 
  padding: 20px;
  text-align: start;
}

/*Home Contact
==============*/

.Home-contact{
  display: flex;
  justify-content: center;
  align-items: center
}

.Home-contact > .contact-form{
  width: 40%;
}

@media (max-width: 60rem){
  .Home-contact > .contact-form{
    width: 95%;
    margin: 2rem 0;
  }
}

/*About Page
============*/

/*Review Page
=============*/

.Review-page{
  margin: 2rem 0 1rem;
  text-align: center;  
}

.R-p-review-holder{
  column-count: 3; /* Creates 3 columns */
  column-gap: 20px; /* Space between the columns */
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px;
  text-align: start;
}

.R-p-r-h-review-box{
  background-color: var(--grey-color);
  padding: 1.5rem;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .85rem;
  break-inside: avoid;
  margin-bottom: 20px;
}

.R-p-r-h-r-b-reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.R-p-r-h-r-b-reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.R-p-r-h-r-b-stars{
  color: #ffb800;
  font-size: 2rem;
}

@media (max-width: 56.25rem) {
  .Review-page{
    margin: 6rem 0 2rem;
  }
  .R-p-review-holder{
    column-count: 2; 
  }
}

@media (max-width: 37.5rem) {
  .R-p-review-holder{
    column-count: 1; 
  }
}
/*Service Page
==============*/

.Service-page{
  text-align: center;
  margin: 2rem 0 1rem;
}

.S-p-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 1.5rem 0;
}

.S-p-comic-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  flex-shrink: 0;
  gap: 2rem;
  text-align: center;
  background-image: url('/assets/Plumb-Comic-Background-2.png');
  background-size: 300px;
  background-position: center;
  background-repeat: repeat;
}

.S-p-comic-border {
  background-color: black; 
  padding: 5px; 
  cursor: pointer;
  transition: transform 0.3s ease; 
}

.S-p-comic-border:hover {
  transform: scale(1.03) translateY(-5px);
}

.S-p-comic-content {
  background-size: cover;
  background-position: center;
  height: 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.frame-1, .frame-1 .S-p-comic-content {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.frame-2, .frame-2 .S-p-comic-content {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.frame-3, .frame-3 .S-p-comic-content {
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
}

.S-p-CTA{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.S-p-CTA-button-holder{
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: white;
}

@media (max-width: 60rem) {
  .Service-page{
    margin: 6rem 0 2rem;
  }
}








/*Service Page Sub-page
=======================*/

.S-p-sub-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.S-p-sub-page-info-section {
  padding: 20px;
  border-radius: 10px;
}

.S-p-s-p-i-s-list{
  display: flex;
  flex-direction: column;
  margin: 2rem 0 4rem;
  gap: 1.5rem;
}

.S-p-sub-page-comic-part-1, .S-p-sub-page-comic-part-2 {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

.S-p-sub-page-comic-page {
  display: flex;
  flex-direction: column;
  gap: 15px; /* The space between your rows */
  max-width: 800px; /* Adjust based on how wide you want the whole page */
  margin: 0 auto;
}

/* Base styling for all borders and content (same as your last design!) */
.S-p-sub-page-comic-border {
  background-color: #000;
  padding: 6px; 
  cursor: pointer;
  transition: transform 0.3s ease;
}

.S-p-s-p-c-b-red{
  background-color: #5e3430;
}

.S-p-s-p-c-b-green{
  background-color: #336549;
}

.S-p-s-p-c-b-blue{
  background-color: #30475e; 
}

.S-p-sub-page-comic-border:hover {
  transform: scale(1.02) translateY(-3px);
}

.S-p-sub-page-comic-content {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  height: 100%;
}

/* --- ROW 1: THE SLANTED MAGIC --- */
.S-p-sub-page-comic-row-slanted {
  display: flex;
  flex-direction: column;
}

/* Frame 1: Flat top, slanted bottom (lower on right) */
.S-p-sub-page-frame-1 {
  height: 300px; 
}
.S-p-sub-page-frame-1, .S-p-sub-page-frame-1 .S-p-sub-page-comic-content {
  /* This creates the slanted bottom */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 66.6%); 
}

/* Frame 2: Slanted top, Flat bottom */
.S-p-sub-page-frame-2 { 
  height: 250px; 
  /* THE MAGIC: This slides Frame 2 UP into the empty space of Frame 1, leaving exactly a 15px gap! */
  margin-top: -85px; 
}
.S-p-sub-page-frame-2, .S-p-sub-page-frame-2 .S-p-sub-page-comic-content {
  /* This slanted top matches the exact angle of Frame 1's bottom */
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}

/* --- ROW 2: THE MIDDLE RECTANGLE --- */
.S-p-sub-page-frame-3 {
  height: 150px;
}
.S-p-sub-page-frame-3, .S-p-sub-page-frame-3 .S-p-sub-page-comic-content {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* --- ROW 3: THE BOTTOM THIRDS --- */
.S-p-sub-page-comic-row-thirds {
  display: flex;
  gap: 15px; /* Gap between the three panels */
  height: 200px;
}
.S-p-sub-page-frame-4, .S-p-sub-page-frame-5, .S-p-sub-page-frame-6 {
  flex: 1; /* This magical property tells Flexbox: "Divide the space perfectly into 3 equal pieces!" */
}
.S-p-sub-page-frame-4, .S-p-sub-page-frame-4 .S-p-sub-page-comic-content,
.S-p-sub-page-frame-5, .S-p-sub-page-frame-5 .S-p-sub-page-comic-content,
.S-p-sub-page-frame-6, .S-p-sub-page-frame-6 .S-p-sub-page-comic-content {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
}

@media (min-width: 60rem) {
  
  .S-p-sub-page-wrapper {
    display: grid;
    /* This splits the screen into two equal columns */
    grid-template-columns: 1fr 1fr; 
    
    /* This defines our puzzle pieces! */
    grid-template-areas: 
      "comic-top    info-box"
      "comic-bottom info-box";
      
    /* The horizontal gap between the left and right columns */
    column-gap: 40px; 
    /* The vertical gap between the top comic and bottom comic */
    row-gap: 15px; 
  }

  /* Now we just assign our HTML divs to the puzzle pieces we created above */
  .S-p-sub-page-comic-part-1 {
    grid-area: comic-top;
  }
  
  .S-p-sub-page-comic-part-2 {
    grid-area: comic-bottom;
  }
  
  .S-p-sub-page-info-section {
    grid-area: info-box;
    /* Optional: This keeps the info box pinned to the top of its column instead of stretching */
    align-self: start; 
  }
}






/*Contact Form
===============*/

.contact-page{
  display: flex;
  margin: 2rem 0;
  align-items: center;
  justify-content: center;
}

.contact-page > .contact-form{
  width: 35%;
}

.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
  background: linear-gradient(180deg, #92cfed 0%, #49a8d6 100%);
  padding: 1.5rem;
  border: 2px solid black;
  border-radius: .7rem;
}

.contact-title{
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-title img{
  width: 7rem;
}

.contact-title hr{
  color: white;
}

.contact-inputs{
  display: flex;
  margin: .5rem 0;
  height: 2.5rem;
  border-radius: .7rem;
  width: 100%;
  border: none;
  padding: 0 .3rem;
}

.contact-select-holder,
.contact-message-holder{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-message-holder label,
.contact-select-holder label{
  color: white;
}

.contact-message{
  width: 100%;
  height: 9rem;
  resize: none; /* Disables manual resizing completely */
  overflow-y: auto;
  margin-top: .5rem;
  padding: .5rem .3rem;
}

.submit{
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  width: 100%;
  justify-content: center;
  background-color: var(--secondary-color);
  color: white;
  padding: .5rem;
  border: 2px solid white;
}

.submit-img{
  width: .8rem;
  margin-left: .6rem;
}


.Submitted-page{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15vh 0;
}

.Submitted-page img{
  width: 35%;
  border: 2px solid black;
}

.Submitted-page-text-holder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.honeypot-container{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 60rem){
  .contact-page > .contact-form{
    width: 95%;
    margin: 4rem 0 2rem;
  }

  .contact-title img{
    display: none;
  }

  .contact-message{
    width: 100%;
  }
}

/* Footer
=========*/

footer{
  background-color: white;
}

.Footer-icon-holder{
  display: flex;
  justify-content: space-evenly;
  padding: 2rem 0;
}

.Footer-icon-holder a{
  width: 10%;
}

@media (min-width: 60rem){
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 100%;
  padding: 4rem 2.5%;
  gap: 0;
  justify-content: space-around;
}

.footer-branding {
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.7rem;
  font-weight: 700;
  gap: 5rem;
  line-height: 3rem;
}

.footer-branding img{
  width: 70%;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
}

.footer-nav > span {
  display: flex;
  align-items: center;
  word-break: break-word;
  width: 85%;
  flex-direction: row;
}

.footer-nav span:first-child {
  font-weight: 700;
  color: var(--primary-color);
  padding-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-nav:last-child span {
  width: 70%;
}

.footer-nav > span > img {
  width: 3rem;
  padding-right: .5rem;
}

.footer-nav a:hover {
  color: var(--secondary-color);
}

.footer-bot {
  padding: .8rem 0;
  font-size: .8rem;
  display: flex;
  justify-content: center;
  gap: .8rem;
}
}











.Koi-tag{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.Koi-tag a{
  width: fit-content;
  display: flex;
  align-items: center; 
}

.Koi-logo{
  width: 1.4rem;
  padding-left: .2rem;
}