*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    letter-spacing: 1px;
    font-family: 'Rubik', sans-serif;
}

body{
    background-color: #fefefe;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    height: 100px;
    width: 100%;
    top: 0;
    align-items: center;
    background-color: white;
    color: black;
    position: fixed;
    z-index: 998;
}

.sticky{
    box-shadow: 0 0 10px 0 #5c5c5c;
}

.logo-container{
    width: 250px;
    height: 200px;
    margin-top: 150px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
}

.logo-container img{
    width: 100%;
    height: 100%;
}

.logo-container.sticky{
    width: 150px;
    height: 100px;
    margin-top: 0px;
    box-shadow: none;
}

.nav-items{
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-items .nav-link a{
    color: black;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    font-size: 14px;
    font-weight: 500;
}

.nav-items .nav-link a:hover{
    color: #7D0000;
}

.nav-items .nav-link{
    color: white;
}

/*HERO IMAGE*/
.header-image{
    background-image: url(images/san-marcos-texas-bathroom-renovation.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: center;
    height: 100vh;
}

.header-image h1{
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 50px;
    text-align: left; 
    animation: slideInFromLeft 1.5s ease-out forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%);
    }
}

/*Intro section*/
.introduction-section{
    padding: 80px;
    background-color: #fefefe;
}

.introduction-section h1,
.red-h1,
.home-service-section h1,
.white-h1,
.home-gallery h1,
.contact-us-banner-header h1,
.serving-locations-section h1,
.pages-intro-section h1,
.services-section h1,
.portfolio-banner h1,
.header-container h1,
.thank-you-banner h1{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 800;
}

.red-h1{
    color: #7D0000;
}

.introduction-description-container,
.pages-intro-description-container{
    padding: 40px 0;
    display: flex;
}

.introduction-description,
.pages-intro-description{
    width: 55%;
}

.introduction-description p,
.short-banner p,
.pages-intro-description p,
.portfolio-banner p{
    font-size: 16px;
    line-height: 1.5rem;
    padding-bottom: 20px;
    text-transform: capitalize;
}

.introduction-icon{
    height: auto;
    width: 45%;
}

.introduction-icon img{
    width: 100%;
    height: 100%;
}

/*Short Banner*/
.short-banner{
    background-color: #7D0000;
    padding: 80px;
}

.short-banner h1{
    color: white;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 800;
    padding-bottom: 40px;
}

.short-banner p{
    width: 80%;
    font-weight: 500;
}

/*Home Services Section*/
.home-service-section{
    background-color: white;
    padding: 40px;
}

.home-service-section h1{
    text-align: center;
}

.home-services-icon-section,
.home-services-icon-section2,
.services-icon-section{
    padding: 80px 40px;
}

.home-services-icon-section h1,
.home-services-icon-section2 h1,
.services-icon-section h1{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
}

.services-icons,
.services-page-icons{
    padding: 60px 0 0 0;
    display: flex;
    justify-content: space-evenly;
}

.icon{
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper,
.icon-wrapper2,
.icon-wrapper3 {
    width: 180px; 
    height: 180px; 
    border-radius: 50%;
    background-color: #F8F8F8; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; 
    margin-right: 10px;
}

.icon-wrapper2 {
    background-color: #383838; 
}

.home-services-icon-section2{
    background-color: #1C1C1C;
    text-align: center;
}

.white-h1{
    color: white;
}

.button button{
    color: black;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #7D0000;
    background-color: white;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    margin-top: 50px;
}

/*Home gallery*/
.home-gallery{
    background-color: #F8F8F8;
    padding: 60px;
    text-align: center;
}

.home-gallery h1{
    text-align: left;
}

.image-grid{
    --gap: 15px;
    --num-cols: 3;
    --row-height: 100px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: repeat(var(--row-height), 1fr);
    gap: var(--gap);
    background-color: #F8F8F8;
    margin-top: 60px;
}

.image-grid > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-grid-col-2{
    grid-column: span 2;
}

.image-grid-row-2{
    grid-column: span 2;
}

/*Contact Us Section*/
.contact-us-banner{
    position: relative;
    padding: 40px;
    display: flex;
}

.contact-us-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/texas-background.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.contact-us-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: -1;
}

.contact-us-banner-header{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*Contact us Form*/
.contact-us-form{
    text-align: center;
    padding: 20px;
    width: 50%;
}

.input-box{
    padding: 10px 0;
    text-align: left;
}

label{
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding-right: 20px;
}

/*Font size of text when typing*/
.form-control{
    font-size: 16px;
    padding: 8px;
    margin-top: 4px; 
    width: 100%;
}

input{
    font-size: 15px;
    color: black;
    padding: 4px;
    width: 50%;
    border: white;
    opacity: .4;
}
  
textarea.form-control{
    font-size: 15px;
    color: black;
    padding: 2px;
    width: 100%;
    resize: none;
    border: white;
    opacity: .4;
}

/*Serving Locations*/
.serving-locations-section{
    background-color: #F8F8F8;
    text-align: center;
    padding: 50px 0;
}

.serving-location-container{
    display: flex;
    padding-top: 50px;
}

.right-container p,
.left-container p{
    font-size: 16px;
    color: black;
    line-height: 2rem;
}

.right-container,
.left-container{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-icon-container{
    width: 650px;/*width:auto*/
    height: 500px;
    flex-shrink: 0;
}

.location-icon-container img{
    width: 100%;
    height: 100%;
}

.location{
    display: flex;
    justify-content: center;
    align-items: center;
}

.location p{
    padding-left: 5px;
    line-height: 3rem;
    font-weight: 500;
}

/*Footer*/
footer{
    background-color: #7D0000;
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0;
}

footer p,
footer a{
    text-decoration: none;
    color: white;
    font-size: 12px;
    margin: 20px 0;
}

footer p{
    text-transform: uppercase;
}

footer a{
    display: block;
}

.footer-nav h3,
.footer-contact h3,
.footer-hours h3{
    font-size: 16px;
    text-transform: uppercase;
}

.icons svg{
    padding: 0 5px;
}

.Copyright{
    background-color: white;
    text-align: center;
    padding: 10px;
}

.Copyright p{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1rem;
}

.Copyright a{
    text-decoration: none;
    color: #7D0000;
}

.red-p{
    color: #7D0000;
}

/*Services Page*/
.pages-intro-section{
    padding: 80px;
    background-color: #fefefe;
    margin-top: 20vh;
}

.pages-intro-description{
    width: 55%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pages-intro-image{
    height: auto;
    width: 35%; /*Can change*/
}

.pages-intro-image img{
    width: 100%;
    height: 100%;
}

/*Services Page*/
.services-section{
    background-color: #1C1C1C;
    padding: 80px 40px;
}

.services-section h1{
    text-align: left;
}

.services-page-icons{
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
    padding: 40px 0;
    text-align: center;
    align-items: center;
}

.services-icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-icon h1{
    font-size: 16px;
    text-align: center;
}

.icon-wrapper3{
    background-color: #383838; 
}

/*Portfolio banner*/
.portfolio-banner{
    position: relative;
    padding: 50px;
}

.portfolio-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/travertine-tile.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.portfolio-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.1;
    z-index: -1;
}

.portfolio-banner p{
    width: 80%;
    padding-top: 40px;
}

/*Portfolio Pages*/
.portfolio-section-header{
    display: flex;
    justify-content: space-evenly;
    background-color: #1C1C1C;
    padding-top: 60px;
    text-align: center;
}

.portfolio-gallery{
    background-color: #1C1C1C;
    padding: 80px 100px;
}

.image-grid1{
    --gap: 15px;
    --num-cols: 3;
    --row-height: 100px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: repeat(var(--row-height), 1fr);
    gap: var(--gap);
    background-color: #1C1C1C;
}

.image-grid1 > img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 0 10px 0 #141414;
}

.portfolio-container-section {
    display: none;
}

.show {
    display: block;
}

/*Contact Page*/
.contact-us{
    display: flex;
    padding: 80px;
    background-color: #1C1C1C;
    padding-top: 30vh;
}

.contact-us-header{
    width: 50%;
}

.contact-us-header p{
    text-transform: capitalize;
    font-size: 14px;
    color: white;
    padding-top: 40px;
    line-height: 1.5rem;
}

.contact-us-header a{
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.thank-you-banner{
    position: relative;
    padding: 60px;
    text-align: center;
}

.thank-you-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/austin-texas.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.thank-you-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: -1;
}

@media screen and (max-width:1024px){
    html, body{
        width: auto!important;
        overflow-x: hidden!important;
    }

    .nav-items{
        flex-direction: column;
        top: 100px;
        width: 100vw;
        padding: 3rem 0;
        height: 100vh;
        background-color: white;
        position: fixed;
        z-index: -1;
        transition: 0.4s ease-in;
        -webkit-transition: 0.4s ease-in;
        -moz-transition: 0.4s ease-in;
        -o-transition: 0.4s ease-in;
        right: -100%;
        gap: 70px;
    }

    .bars{
        height: auto;
        width: 25px;
        cursor: pointer;
        margin-right: 30px;
    }

    .bars .bar{
        height: 4px;
        width: 100%;
        background-color: black;
        margin: 5px;
    }

    .nav-items.active{
        right: 0;
    }

    .sticky{
        box-shadow: none;
    }

    .logo-container{
        width: 150px;
        height: 100px;
        margin-top: 0px;
        transition: none;
    }
    
    .logo-container img{
        width: 100%;
        height: 100%;
    }
    
    .logo-container.sticky{
        width: 150px;
        height: 100px;
        margin-top: 0px;
        box-shadow: none;
    }
    .disabledScroll {
        overflow: hidden;
    }
    /*HERO IMAGE*/
    .header-image{
        background-image: url(images/san-marcos-texas-bathroom-renovation.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-image: center;
        height: 60vh;
    }

    .header-image h1{
        background-color: rgba(0, 0, 0, 0.3);
        padding: 10px;
        position: absolute;
        top: 30%;
        left: 40%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 30px;
        text-align: left; 
        animation: slideInFromLeft 1.5s ease-out forwards;
    }

    /*Intro section*/
    .introduction-section{
        padding: 80px;
        background-color: #fefefe;
    }

    .introduction-section h1,
    .red-h1,
    .home-service-section h1,
    .white-h1,
    .home-gallery h1,
    .contact-us-banner-header h1,
    .serving-locations-section h1,
    .pages-intro-section h1,
    .services-section h1,
    .portfolio-banner h1,
    .header-container h1,
    .thank-you-banner h1{
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .introduction-description-container,
    .pages-intro-description-container{
        padding: 40px 0;
        display: block;
    }

    .introduction-description,
    .pages-intro-description{
        width: auto;
    }

    .introduction-description p,
    .short-banner p,
    .pages-intro-description p,
    .portfolio-banner p{
        font-size: 14px;
        line-height: 1.5rem;
        padding-bottom: 20px;
        text-transform: capitalize;
    }

    .introduction-icon{
        height: auto;
        width: auto;
    }

    .introduction-icon img{
        width: 100%;
        height: 100%;
    }

    /*Short Banner*/
    .short-banner{
        background-color: #7D0000;
        padding: 80px;
    }

    .short-banner h1{
        color: white;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 800;
        padding-bottom: 40px;
    }

    .short-banner p{
        width: 80%;
        font-weight: 500;
    }

    /*Home Services Section*/
    .home-service-section{
        background-color: white;
        padding: 40px;
    }

    .home-service-section h1{
        text-align: center;
    }

    .home-services-icon-section,
    .home-services-icon-section2,
    .services-icon-section{
        padding: 80px 40px;
    }

    .home-services-icon-section h1,
    .home-services-icon-section2 h1,
    .services-icon-section h1{
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
        text-align: left;
    }

    .services-icons,
    .services-page-icons{
        padding: 60px 0 0 0;
        display: block;
        justify-content: space-evenly;
    }

    .icon{
        display: flex;
        justify-content: left;
        align-items: left;
        padding-bottom: 20px;
    }

    .icon-wrapper,
    .icon-wrapper2,
    .icon-wrapper3 {
        width: 180px; 
        height: 180px; 
        border-radius: 50%;
        background-color: #F8F8F8; 
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px; 
        margin-right: 10px;
    }

    /*Home gallery*/
    .home-gallery{
        background-color: #F8F8F8;
        padding: 60px 40px;
        text-align: center;
    }

    /*Contact Us Section*/
    .contact-us-banner{
        position: relative;
        padding: 40px;
        display: block;
    }

    .contact-us-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(images/texas-background.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        z-index: -1;
    }

    .contact-us-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.6;
        z-index: -1;
    }

    .contact-us-banner-header{
        width: auto;
        display: block;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /*Contact us Form*/
    .contact-us-form{
        text-align: center;
        padding: 20px;
        width: auto;
    }

    /*Serving Locations*/
    .serving-locations-section{
        background-color: #F8F8F8;
        text-align: center;
        padding: 50px 0;
    }

    .serving-location-container{
        display: block;
        padding-top: 50px;
    }

    .right-container p,
    .left-container p{
        font-size: 14px;
        color: black;
        line-height: 3rem;
    }

    .right-container,
    .left-container{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /*Services Page*/
    .pages-intro-section{
        padding: 80px;
        background-color: #fefefe;
        margin-top: 8vh;
    }

    .pages-intro-description{
        width: auto;
        margin: 0 auto;
        display: block;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pages-intro-image{
        height: auto;
        width: 60%; /*Can change*/
    }

    .pages-intro-image img{
        width: 100%;
        height: 100%;
    }

    /*Services Page*/
    .services-section{
        background-color: #1C1C1C;
        padding: 80px 40px;
    }

    .services-section h1{
        text-align: left;
    }

    .services-page-icons{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        padding: 20px 0;
        text-align: center;
        align-items: center;
    }

    .services-icon{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }

    .services-icon-section{
        padding: 40px;
    }

    .services-icon h1{
        font-size: 16px;
        text-align: center;
    }

    .icon-wrapper3{
        background-color: #383838; 
    }

    /*Portfolio Pages*/
    .portfolio-section-header{
        display: flex;
        justify-content: space-evenly;
        background-color: #1C1C1C;
        padding: 60px 0;
        text-align: center;
    }

    .portfolio-gallery{
        background-color: #1C1C1C;
        padding: 80px;
    }

    .image-grid1{
        --gap: 15px;
        --num-cols: 3;
        --row-height: 100px;

        box-sizing: border-box;
        padding: var(--gap);

        display: grid;
        grid-template-columns: repeat(var(--num-cols), 1fr);
        grid-auto-rows: repeat(var(--row-height), 1fr);
        gap: var(--gap);
        background-color: #1C1C1C;
    }

    .image-grid1 > img{
        width: 100%;
        height: 400px;
        object-fit: cover;
        box-shadow: 0 0 10px 0 #141414;
    }

    .portfolio-container-section {
        display: none;
    }

    .show {
        display: block;
    }

    /*Contact Page*/
    .contact-us{
        display: block;
        padding: 80px;
        background-color: #1C1C1C;
        padding-top: 15vh;
    }

    .contact-us-header{
        width: auto;
    }

    .contact-us-header p{
        text-transform: capitalize;
        font-size: 14px;
        color: white;
        padding-top: 40px;
        line-height: 1.5rem;
    }

    .contact-us-header a{
        color: white;
        text-decoration: none;
        font-size: 14px;
    }

    .thank-you-banner{
        position: relative;
        padding: 60px;
        text-align: center;
    }

    .thank-you-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(images/austin-texas.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        z-index: -1;
    }

    .thank-you-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.7;
        z-index: -1;
    }
    
}

@media only screen and (max-width:760px){
    html, body{
        width: auto!important;
        overflow-x: hidden!important;
    }

    .logo-container{
        width: 70px;
        height: 60px;
        margin-top: 0px;
        transition: none;
    }
    
    .logo-container img{
        width: 100%;
        height: 100%;
    }
    
    .logo-container.sticky{
        width: 70px;
        height: 60px;
        margin-top: 0px;
        box-shadow: none;
    }

    /*HERO IMAGE*/
    .header-image{
        background-image: url(images/san-marcos-texas-bathroom-renovation.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-image: center;
        height: 50vh;
    }

    .header-image h1{
        background-color: rgba(0, 0, 0, 0.3);
        padding: 10px;
        position: absolute;
        top: 20%;
        left: 40%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 22px;
        text-align: left; 
        animation: slideInFromLeft 1.5s ease-out forwards;
    }

    /*Intro section*/
    .introduction-section{
        padding: 40px;
        background-color: #fefefe;
    }

    .introduction-section h1,
    .red-h1,
    .home-service-section h1,
    .white-h1,
    .home-gallery h1,
    .contact-us-banner-header h1,
    .serving-locations-section h1,
    .pages-intro-section h1,
    .services-section h1,
    .portfolio-banner h1,
    .header-container h1,
    .thank-you-banner h1{
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
        line-height: 1.5rem;
    }

    .introduction-description-container,
    .pages-intro-description-container{
        padding: 40px 0;
        display: block;
    }

    .introduction-description,
    .pages-intro-description{
        width: auto;
    }

    .introduction-description p,
    .short-banner p,
    .pages-intro-description p,
    .portfolio-banner p{
        font-size: 14px;
        line-height: 1.5rem;
        padding-bottom: 20px;
        text-transform: capitalize;
    }

    .introduction-icon{
        height: auto;
        width: auto;
    }

    .introduction-icon img{
        width: 100%;
        height: 100%;
    }

    /*Short Banner*/
    .short-banner{
        background-color: #7D0000;
        padding: 40px;
    }

    .short-banner h1{
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
        padding-bottom: 40px;
    }

    .short-banner p{
        width: 80%;
        font-weight: 500;
    }

    /*Home Services Section*/
    .home-service-section{
        background-color: white;
        padding: 40px;
    }

    .home-service-section h1{
        text-align: center;
    }

    .home-services-icon-section,
    .home-services-icon-section2,
    .services-icon-section{
        padding: 80px 0px;
    }

    .home-services-icon-section2{
        padding: 80px 40px;
    }

    .home-services-icon-section h1,
    .home-services-icon-section2 h1,
    .services-icon-section h1{
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
        text-align: left;
    }

    .services-icons,
    .services-page-icons{
        padding: 60px 0 0 0;
        display: block;
        justify-content: space-evenly;
    }

    .icon{
        display: flex;
        justify-content: left;
        align-items: left;
        padding-bottom: 20px;
    }

    .icon svg,
    .services-icon svg{
        width: 80px;
        height: 80px;
    }

    .icon-wrapper,
    .icon-wrapper2,
    .icon-wrapper3 {
        width: 120px; 
        height: 120px; 
        border-radius: 50%;
        background-color: #F8F8F8; 
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px; 
        margin-right: 10px;
    }

    /*Home gallery*/
    .home-gallery{
        background-color: #F8F8F8;
        padding: 60px 20px;
        text-align: center;
    }

    /*Serving Locations*/
    .serving-locations-section{
        background-color: #F8F8F8;
        text-align: center;
        padding: 40px;
    }

    .serving-location-container{
        display: block;
        padding-top: 50px;
    }

    .right-container p,
    .left-container p{
        font-size: 14px;
        color: black;
        line-height: 3rem;
    }

    .right-container,
    .left-container{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .location-icon-container{
        width: auto;
        height: 250px;
        flex-shrink: 0;
    }
    
    .location-icon-container img{
        width: 100%;
        height: 100%;
    }
    
    .location{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .location p{
        padding-left: 5px;
        line-height: 3rem;
        font-weight: 500;
    }
    
    /*Footer*/
    footer{
        background-color: #7D0000;
        display: block;
        justify-content: space-evenly;
        padding: 40px;
    }
    
    footer p,
    footer a{
        text-decoration: none;
        color: white;
        font-size: 12px;
        margin: 20px 0;
    }
    
    footer p{
        text-transform: uppercase;
    }
    
    footer a{
        display: block;
    }
    
    .footer-nav h3,
    .footer-contact h3,
    .footer-hours h3{
        font-size: 16px;
        text-transform: uppercase;
    }
    
    .Copyright{
        background-color: white;
        text-align: center;
        padding: 10px;
    }
    
    .Copyright p{
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 1rem;
    }
    
    .Copyright a{
        text-decoration: none;
        color: #7D0000;
    }
    
    .red-p{
        color: #7D0000;
    }

    /*Services Page*/
    .pages-intro-section{
        padding: 40px;
        background-color: #fefefe;
        margin-top: 12vh;
    }

    .pages-intro-description{
        width: auto;
        margin: 0 auto;
        display: block;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pages-intro-image{
        height: auto;
        width: auto; /*Can change*/
    }

    .pages-intro-image img{
        width: 100%;
        height: 100%;
    }

    /*Services Page*/
    .services-section{
        background-color: #1C1C1C;
        padding: 80px 20px;
    }

    .services-section h1{
        text-align: left;
    }

    .services-page-icons{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        padding: 20px 0;
        text-align: center;
        align-items: center;
    }

    .services-icon{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }

    .services-icon-section{
        padding: 20px;
    }

    .services-icon h1{
        font-size: 16px;
        text-align: center;
    }

    .icon-wrapper3{
        background-color: #383838; 
    }

    /*Portfolio Pages*/
    .portfolio-section-header{
        display: flex;
        justify-content: space-evenly;
        background-color: #1C1C1C;
        padding: 60px 0;
        text-align: center;
    }

    .header-container h1{
        font-size: 16px;
    }

    .header-container svg{
        height: 25px;
        width: 25px;
    }

    .portfolio-gallery{
        background-color: #1C1C1C;
        padding: 0px;
    }

    .image-grid1{
        --gap: 15px;
        --num-cols: 3;
        --row-height: 200px;

        box-sizing: border-box;
        padding: var(--gap);

        display: grid;
        grid-template-columns: repeat(var(--num-cols), 1fr);
        grid-auto-rows: repeat(var(--row-height), 1fr);
        gap: var(--gap);
        background-color: #1C1C1C;
    }

    .image-grid1 > img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        box-shadow: 0 0 10px 0 #141414;
    }

    .portfolio-container-section {
        display: none;
    }

    .show {
        display: block;
    }

    /*Contact Page*/
    .contact-us{
        display: block;
        padding: 40px;
        background-color: #1C1C1C;
        padding-top: 15vh;
    }

    .contact-us-header{
        width: auto;
    }

    .contact-us-header p{
        text-transform: capitalize;
        font-size: 14px;
        color: white;
        padding-top: 40px;
        line-height: 1.5rem;
    }

    .contact-us-header a{
        color: white;
        text-decoration: none;
        font-size: 14px;
    }

    .thank-you-banner{
        position: relative;
        padding: 40px;
        text-align: center;
    }

    .thank-you-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(images/austin-texas.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        z-index: -1;
    }

    .thank-you-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.7;
        z-index: -1;
    }

}