:root {
    --blue: #062fff;
    --white: #ffffff;
    --gray: #666666;
    --grayLight: #e2e3e5;
    --orange: #ff8200;

}

/* Reset */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

.headline-section-text {
    font-size: 2rem;
}

div.showcase-img {
    display: block;
    margin-bottom: 30px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url(../img/gray_paint_1.jpg);
}

.card-logo-img {
    height: 200px;
    width: auto;
}

#contact-button {
    background-color: var(--blue);
    opacity: .8;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 1.2rem;
}
#contact-button:hover {
    opacity: .7;
}

#contact-button a {
    color: white;
    text-decoration: none;
}

#contact-submit-btn {
    color: white;
    background-color: var(--blue);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 1.2rem;
}

#contact-submit-btn:hover {
    opacity: .8;
}

#contact-submit-btn-in-progress {
    opacity: .8;
}

.contact-form-container {
    margin: 0 auto;
    max-width: 600px;
    padding: 0 10px;
}

#contact-submit-btn-in-progress {
    display: none;
}

#contact-success-alert {
    display: none;
}

.mccammon-blue {
    color: #062fff;
}

.mccammon-gray {
    color: #666666;
}

.carousel-img {
    height: 1000px;
    width: auto;
}

.invalid {
    color: darkred;
}

#nameInvalid, #emailInvalid, #messageInvalid {
    display: none;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

/* Footer */
.footer-section-one {
    color: var(--gray);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-section-two {
    display: flex;
    flex-wrap: wrap;
    color: var(--gray);
    flex-direction: row;
    justify-content: space-around;
}

.footer__headline {
    font-weight: bold;
    font-family: 'Helvetica', serif;
}

.footer__list {
    font-family: 'Helvetica', serif;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list-flex-col {
    display:  flex;
    flex-direction: row;
    justify-content: center;
}