*,*::before, *::after {
    box-sizing: border-box;
}
/*General website styling */

html {
    background-color: #8fbc8f;
    height: 100%;
}

main {
    min-height: 100%;
    margin-bottom: -100px;
}

main:after {
    content: "";
    display: block;
    height: 100px;
}

h1 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    height: 80px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
}

.logo {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
}

body {
    background-color:ghostwhite;
    width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 0 20px 20px 20px;
    min-height: 100%;
}

h2 {
    text-align: center;
    font-family:Arial, Helvetica, sans-serif;
}

/* Top-right number, address, etc*/
.topRight {
    position: absolute;
    top: 0%;
    right: 5%;
    line-height: 1.5;
}

.topRight p {
    font-size: 21px;
}

/* Start Slideshow CSS*/
.carousel {
    width: 100%;
    height: 50vh;
    position: relative;
}

.carousel > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
}

.slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide[data-active] {
    opacity: 1;
    z-index: 1;
    transition-delay: 0ms;
}

.carousel-button {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    font-size: 4rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    border-radius: .10rem;
    padding: 0 .5rem;
    background-color: rgba(0, 0, 0, .1);
}

.carousel-button:hover,
.carousel-button:focus {
    color: white;
    background-color: rgba(0, 0, 0, .2);
}

.carousel-button:focus {
    outline: 1px solid black;
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}
/*End Slideshow CSS*/

/*Nav Bar*/
.topnav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #8fbc8f;
}

.topnav li {
    display: inline-block;
    border-right: 1px solid #666
}

.topnav li a {
    display: inline-block;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 20px 60px;
    text-decoration: none;
    border-right: none;
}

.topnav a:hover {
    background-color:hsl(240, 62%, 90%);
    color: black;
}
/*End Nav Bar*/

/*Landing Page Columns*/
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
  }
  
.column {
    padding: 1rem;
    border-radius: 8px;
    background-color: hsl(240, 62%, 90%);
    flex: 1;
    text-align: center;
    width: 100%;
  }
  
@media (max-width: 1024px) {
    .column {
      width: 100%;
      flex: auto;
    }
  }
/*End Landing Page Columns*/

/*Service Page*/
.service-list ul {
    font-size: 20px;
    text-align: left;
}

.service-section {
    border-radius: 8px;
    background-color: hsl(240, 62%, 90%);
    padding: 1rem;
    width: 100%;
    flex: auto;
}
/*End Service Page*/

/*About Page*/
.about-section {
    border-radius: 8px;
    background-color: hsl(240, 62%, 90%);
    padding: 1rem;
    width: 100%;
    flex: auto;
}
/*End About Page*/

/*Contact Page*/
.contact-paragraph {
    border-radius: 8px;
    background-color: hsl(240, 62%, 90%);
    padding: 1rem;
    width: 100%;
    flex: auto;
}
.contact-section {
    border-radius: 8px;
    background-color: hsl(240, 62%, 90%);
    padding: 1rem;
    width: 100%;
    flex: auto;
}

.contact-section input {
    background-color: white;
    width: 70%;
    margin-left: 12%;
    font-size: 12px;
    padding: 16px 16px;
    border-radius: 10px;
    border-color: black;
    margin-bottom: 20px;
}

.contact-section textarea {
    background-color: white;
    width: 70%;
    margin-left: 12%;
    font-size: 20px;
    padding: 16px 16px;
    border-radius: 10px;
    border-color: black;
    margin-bottom: 20px;
}

.contact-section input:focus-within {
    outline: none;
    border-width: 3px;
}

.contact-section textarea:focus-within {
    outline: none;
    border-width: 3px;
}

.contact-section button {
    border-radius: 20px;
    border-color: black;
    font-size: 22px;
    padding: 10px 18px;
    text-align: center;
    display: flex;
    margin: auto;
}

.contact-section button:hover {
    opacity: 80%;
    cursor: pointer;
}
/*End Contact Page*/

/*Footer Styling*/
.footer {
    background-color: #8fbc8f;
}

.footer ul {
    list-style: none;
    text-align: left;
    padding-bottom: 20px;
    padding-top: 15px;
    padding-left: 30px;
}

.footer ul li {
    display: inline-block;
    padding: 0px 15px;
}

.footer ul li a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.footer ul li a:hover {
    color: whitesmoke;
}

.copy-right {
    text-align: left;
    padding-bottom: 20px;
    font-size: 20px;
    padding-left: 30px;
}

.foot-info {
    text-align: left;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.4;
}
/*End Footer Styling*/