*{
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
}

:root{
  --primary-color: #49a8d6;
  --secondary-color: #be1b1d;
  --tertiary-color: #c497fc;
  --grey-color: #F7F7F7;
}

body{
margin: 0;
font-family: sans-serif;
}

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: 40rem){
  .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: 40rem){
.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);
}
/* 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: 40rem) {
  /*
  .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: 40rem) {
  .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;
}

.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: var(--grey-color);
  width: 88%;
  background-color: var(--grey-color);
  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: 40rem){
  .Home-services{
    padding: 10vh 0;
  }

  .H-s-container{
    position: static;
    width: 95%;
    margin: 0 auto;
  }

  .H-s-flag-holder{
    width: 95%;
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .H-s-flag-holder img{
    width: 33%;
  }

  .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: 40rem){
  .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{
}

/*Home Review
=============*/

.Home-contact{
  display: flex;
  justify-content: center;
  align-items: center
}

@media (max-width: 40rem){
  .Home-contact > .contact-form{
    width: 95%;
    margin: 2rem 0;
  }
}


/*Contact Form
===============*/

.contact-page{
  display: flex;
  margin: 2rem 0;
  align-items: center;
  justify-content: center;
}

.contact-page > .contact-form{
  width: 40%;
}

.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
  background: linear-gradient(180deg, #92cfed 0%, #49a8d6 100%);
  padding: 2rem 1rem;
  border: 2px solid black;
  border-radius: .7rem;
}

.contact-title{
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  color: white;
}

.contact-title img{
  width: 8rem;
}

.contact-title hr{
  color: white;
}

.contact-inputs{
  display: flex;
  margin: .5rem 0;
  height: 2.5rem;
  border-radius: .7rem;
  width: 45%;
  border-color: white;
}

.contact-message-holder{
  width: 100%;
}

.contact-message-holder label{
  color: white;
}

.contact-message{
  width: 100%;
  height: 10rem;
  resize: none; /* Disables manual resizing completely */
  overflow-y: auto;
  margin-top: .5rem;
}

.submit{
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  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: 40rem){
  .contact-page > .contact-form{
    width: 95%;
    margin: 4rem 0 2rem;
  }

  .contact-title img{
    display: none;
  }

  .contact-inputs{
    width: 90%;
  }

  .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: 40rem){
.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;
}