* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: black;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: black;
}

h4 {
    font-size: 20px;
    color: black;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #444;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    width: 25%;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 10px;
    color: black;
    background-color: #4495f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
    float: right;
    margin-right: 35px;
}

body {
    width: 100%;
}

.logo {
    max-width: 155px;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: rgb(63, 78, 127);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: rgb(0, 153, 255);
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 25%;
    height: 2px;
    background: rgb(0, 153, 255);
    position: absolute;
    bottom: -5px;
    left: 20px;
}

#navbar ul i {
    font-size: 12px;
}

.dropdown .dropbtn {
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    color: white;
    padding: 0 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

#navbar .dropdown:hover button.dropbtn {
    color: rgb(0, 153, 255);
}

.drop-content {
    display: none;
    position: absolute;
    background-color: #172d68;
    padding: 10px 0;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.drop-content li a {
    display: block;
    float: none;
    text-align: left;
    margin: 10px 0 5px 0;
}

.dropdown:hover .drop-content {
    display: block;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

.overlay {
    background-image: linear-gradient(to right, rgba(41, 111, 224, 0.5), #172d68);
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/********************* Home Page Styles *********************/

#notice {
    color: white;
    background-color: red;
    text-align: center;
    line-height: 30px;
    padding: 10px 0;
}

#banner {
    display: flex;
    justify-content: space-evenly;
    background-image: url("../img/banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    height: 90vh;
    width: 100%;
    background-size: cover;
    padding: 0 80px;
}

#banner .col {
    width: 60%;
    margin: auto;
    z-index: 1;
}

#banner .right {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 39%;
    border-radius: 5px;
    background-color: #7AB5FC;
}

#banner .right strong {
    color: black;
}

#banner .right a {
    color: black;
}

#banner img {
    width: 50%;
    border-radius: 10px;
}

#banner h4 {
    color: white;
    padding-bottom: 15px;
}

#banner h1 {
    color: white;
}

#banner p {
    color: white;
    line-height: 35px;
}

#about {
    display: flex;
    background-image: url("../img/underwater-bubbles.jpg");
    background-size: 780px;
    background-position-x: right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#about .text-bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 49%;
    height: 75vh;
    background-color: #7AB5FC;
}

#about .float-bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 40%;
    height: 55vh;
    margin-left: 40px;
    background-image: linear-gradient(to bottom right, #b3d5ff, #509cfa);
}

#about .float-bx h4 {
    font-size: 30px;
}

#about .float-bx h4, #about .float-bx p {
    width: 75%;
    margin-left: 25px;
}

#about .float-bx p {
    line-height: 30px;
}

#about button:hover {
    color: rgb(0, 153, 255);
    background-color: rgb(63, 78, 127);
}

#feature {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    background-color: #7AB5FC;
}

#feature img {
    border-radius: 50%;
    margin: 15px;
    width: 100%;
    max-width: 300px;
    transition: 0.2s ease-in-out;
}

#feature img:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

#feature .feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}

#review {
    background: url("../img/review.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#review .section-h, #review .rev-cont {
    position: relative;
    z-index: 1;
}

#review .section-h h4, #review .section-h h1 {
    color: white;
}

#review img {
    max-width: 80px;
    border-radius: 50%;
}

.comments {
    display: flex;
    flex-wrap: wrap;
}

.comments .rev-cont {
    display: flex;
    width: 45%;
    margin: 10px;
}

.comments .rev-img {
    margin: 10px;
}

.rev-cont p {
    color: white;
}

.star {
    color: gold;
}

#slide {
    display: flex;
    background-color: #7AB5FC;
}

.slide-h {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.slide-h h4, .slide-h h1 {
    margin-left: 45px;
}

.slide-h div {
    text-align: center;
    width: 100%;
}

.slide-h button {
    margin: 0;
    float: none;
}

.slide-h button:hover {
    color: rgb(0, 153, 255);
    background-color: rgb(63, 78, 127);
}

.slide-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 75vh;
}

.swiper {
    max-width: 500px;
    height: fit-content;
}

.swiper-slide img {
    display: flex;
    width: 100%;
    max-width: 500px;
}

/***************** STORE LOCATION STYLES *****************/

#store-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    position: relative;
}

#store-banner .col {
    text-align: center;
    z-index: 1;
}

#store-banner h1 {
    color: white;
    font-size: 75px;
    margin-bottom: 25px;
}

#store-banner h4 {
    color: white;
    font-size: 20px;
}

.mauiLani {
    background-image: url("../img/haleakala-maui-hawaii-4612315.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 20% left 20%;
    background-attachment: fixed;
}

.kahului {
    background-image: url("../img/northern-maui-hawaii-beach-493756.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 70% left 20%;
    background-attachment: fixed;
}

#info {
    background-color: #7AB5FC;
    text-align: center;
    padding: 20px 0;
}

#info > * {
    padding: 0px 80px;
}

#info h4 {
    color: white;
}

#info .info-h {
    color: black;
}

#info-cont {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

#schedule, tr, td {
    border: 1px solid #444;
    border-collapse: collapse;
}

#schedule {
    margin: auto;
}

td {
    padding: 10px;
}

.frame-cont, .info-desc {
    width: 45%;
}

iframe {
    width: 100%;
    height: 100%;
}

/******************** PRODUCTS STYLES ********************/

#products-banner {
    background-image: url("../img/slide8.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 50% left 20%;
    background-attachment: fixed;
    position: relative;
    height: 50vh;
}

#products-banner .col {
    position: absolute;
    bottom: 0;
    left: 0;
}

#products-banner .col h1 {
    color: white;
    font-size: 60px;
}

#product1 {
    background-color: #7AB5FC;
}

#product1 p {
    font-size: 18px;
    color: black;
}

#product1 #disclaimer {
    font-size: 14px;
    color: #444;
}

#product1 .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #444;
    background-color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #444;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: black;
    font-size: 14px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: white
}

/********************* SERVICES STYLES ********************/

#services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #7AB5FC;
}

#service-desc {
    display: none;
    background-color: #7AB5FC;
}

#sd-close {
    display: flex;
    justify-content: center;
}

#services-banner {
    background-image: url("../img/service-h.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 20% left 20%;
    background-attachment: fixed;
    position: relative;
    height: 50vh;
}

#services-banner .col {
    position: absolute;
    bottom: 0;
    left: 0;
}

#services-banner .col h1 {
    color: white;
    font-size: 60px;
}

#services .se-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #509cfa;
    border-radius: 4px;
    margin: 15px 0;
    background-color: white;
}

#services .se-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.4);
    cursor: pointer;
}

#service-desc.active {
    display: block;
}

#sd-txt {
    border-radius: 4px;
    padding: 10px;
    background-color: white;
}

#close-btn {
    color: white;
}

#close-btn:hover {
    color: #172d68;
    cursor: pointer;
}

#services .se-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #4495f8;
    background-color: #f1d5bd;
}

#services .se-box:nth-child(2) h6 {
    background-color: #dfccf1;
}

#services .se-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#services .se-box:nth-child(4) h6 {
    background-color: #f5d2d3;
}

#services .se-box:nth-child(5) h6 {
    background-color: #cdd4f8;
}

#services .se-box:nth-child(6) h6 {
    background-color: #f6dbf6;
}

#services .se-box img {
    width: 100%;
    margin-bottom: 10px;
}

#savings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/Water_card.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 90% left 20%;
    background-attachment: fixed;
    position: relative;
    height: 70vh;
    text-align: center;
}

#savings h4 {
    color: white;
    font-size: 18px;
    z-index: 1;
}

#savings h1 {
    color: white;
    font-size: 30px;
    width: 50%;
    z-index: 1;
}

#lead {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #7AB5FC;
}

#lead p {
    width: 75%;
    margin: 80px 0;
    color: black;
    font-size: 18px;
    line-height: 40px;
}

/******************** ABOUT US STYLES ********************/

#about-banner {
    background-image: url("../img/about.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 10% left 20%;
    background-attachment: fixed;
    position: relative;
    height: 50vh;
}

#about-banner .col {
    position: absolute;
    bottom: 0;
    left: 0;
}

#about-banner .col h1 {
    color: white;
    font-size: 60px;
}

.about-desc {
    display: flex;
    justify-content: space-around;
}

.about-desc p {
    width: 100%;
    line-height: 30px;
}

.about-desc img {
    max-width: 400px;
}

#banner2 {
    display: flex;
    justify-content: center;
}

#banner2 img {
    width: 75%;
}

.about-desc-cont {
    display: flex;
    flex-wrap: wrap;
}

.desc-item {
    width: 30%;
    margin: 0 10px 40px 10px;
    position: relative;
}

.desc-item h4 {
    padding: 10px 0 5px 0;
}

.desc-item h4::after {
    display: block;
    content: '';
    width: 10%;
    margin-top: 10px;
    border: 1.5px solid rgba(0, 0, 0, 0.5);
}

.desc-item p {
    line-height: 25px;
}

/******************* CONTACT US STYLES *******************/

#contact-banner {
    background-image: url("../img/contact.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 20% left 20%;
    background-attachment: fixed;
    position: relative;
    height: 50vh;
}

#contact-banner .col {
    position: absolute;
    bottom: 0;
    left: 0;
}

#contact-banner .col h1 {
    color: white;
    font-size: 60px;
}

#contact, #contact-form {
    background-color: #7AB5FC;
}

.contact-h h1 {
    font-size: 40px;
    border-bottom: 1px solid rgba(65, 65, 65, 0.5);
}

.contact-h h4 {
    font-size: 16px;
}

.contact-info {
    display: flex;
    justify-content: space-evenly;
}

.contact-info strong, .contact-info i {
    color: black;
}

.contact-info p {
    line-height: 30px;
    color: white;
}

#contact-form-h {
    background-color: #7AB5FC;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 65%;
    padding: 60px;
    border: 1px solid #444;
    background-color: #172d68;
}

#contact-form form input, #contact-form form textarea {
    padding: 12px 15px;
    margin-top: 5px;
    outline: none;
    border: 1px solid #444;
    border-radius: 5px;
}

#contact-form p {
    width: 100%;
    color: white;
}

#contact-form form input[type=tel] {
    width: 25%;
}

#contact-form form input[type=text] {
    width: 50%;
}


#contact-form form textarea {
    width: 100%;
}

#contact-form form input[type=button] {
    width: 15%;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 10px;
    color: black;
    background-color: #4495f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

.err {
    color: orangered;
}

/********************* FOOTER STYLES *********************/

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: url("../img/footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

footer .overlay {
    background-color: #172d68;
}

.footer-h {
    display: block;
    width: 100%;
    color: white;
    z-index: 1;
}

footer .col {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    height: 150px;
}

footer .logo {
    margin-bottom: 30px;
    z-index: 1;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
    color: white;
    z-index: 1;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
    color: #bbb;
    z-index: 1;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #bbb;
    margin-bottom: 10px;
    z-index: 1;
}

footer .follow {
    margin-top: 20px;
    z-index: 1;
}

footer .follow i {
    color: #bbb;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
    color: rgb(0, 153, 255);
}

.copyright {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    background-color: rgb(63, 78, 127);
    /*background-color: #172d68;*/
}

.copyright p {
    margin: 0;
    padding: 10px 0;
    color: white;
}

/********************* Media Queries *********************/
/*Tablet*/
@media only screen and (min-width: 641px) and (max-width: 1080px) {
    .section-p1 {
        padding: 40px;
    }

    button.normal {
        float: none;
        font-size: 16px;
    }

    /****** HEADER TABLET STYLES ******/

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color:rgb(60, 69, 100);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
    }

    #navbar.active {
        right: 0;
    }

    #navbar li, #navbar .dropbtn {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: white;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: white;
        font-size: 15px;
    }

    /****** HOME PAGE TABLET STYLES ******/

    #banner {
        display: flex;
        flex-direction: column;
        height: 70vh;
        padding: 0 40px;
        background-position: top 30% right 40%;
    }

    #banner .col {
        width: 100%;
    }

    #banner .right {
        display: none;
    }

    #banner h4 {
        font-size: 30px;
    }

    #banner p {
        font-size: 16px;
        line-height: 40px;
    }

    #about {
        display: block;
        background-image: none;
        background-color: #7AB5FC;
    }
    
    #about .text-bx {
        width: 100%;
        height: fit-content;
    }

    #about .float-bx {
        width: 100%;
        justify-content: center;
        height: fit-content;
        background-image: none;
        background-color: #7AB5FC;
        margin: 0;
        padding: 0 30px;
    }

    #about .float-bx h4, #about .float-bx p {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    #about .float-bx p {
        font-size: 16px;
        line-height: 50px;
    }

    #about .btn {
        text-align: center;
    }

    #about button {
        margin: 0;
    }

    #feature {
        padding: 0 40px;
    }

    #feature .feature-box {
        width: 28%;
    }

    #feature h4 {
        font-size: 18px;
    }

    #feature p {
        line-height: 30px;
    }

    #review .section-h h4, #review .section-h h1 {
        color: white;
    }

    #review p {
        font-size: 20px;
    }

    #slide {
        display: block;
    }

    .slide-h {
        width: 100%;
        text-align: center;
    }

    .slide-h h4, .slide-h h1 {
        margin: 0;
    }

    .slide-h h4 {
        font-size: 16px;
        padding: 20px 0;
    } 
    
    .slide-h h1 {
        font-size: 18px;
        line-height: 40px;
    }

    .slide-h button {
        width: 20%;
        padding: 10px;
    }

    .slide-cont {
        width: 100%;
        height: 80vh;
    }

    .swiper img {
        width: 100%;
    }

    /***** LOCATIONS TABLET STYLES *****/

    #info-cont {
        flex-direction: column;
        align-items: center;
    }

    .info-desc {
        width: 100%;
    }

    .frame-cont {
        width: 95%;
        height: 50vh;
    }

    /***** PRODUCTS TABLET STYLES *****/

    #product1 .pro-container {
        justify-content: center;
        padding-top: 20px;
    }

    #product1 .pro {
        margin: 15px;
    }

    /***** ABOUT US TABLET STYLES *****/

    .about-desc-cont {
        justify-content: space-between;
    }

    .desc-item {
        width: 45%;
    }

    /**** CONTACT US TABLET STYLES ****/

    #contact-form form {
        width: 100%;
    }

    /****** FOOTER TABLET STYLES ******/

    footer {
        background-position-y: 350px;
    }

    footer h1 {
        font-size: 30px;
    }
}

/*Mobile Phones*/
@media only screen and (min-width: 320px) and (max-width: 640px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    .section-p1 {
        padding: 20px;
    }

    button.normal {
        float: none;
        font-size: 12px;
    }

    /****** HEADER MOBILE STYLES ******/

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color:rgb(60, 69, 100);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
    }

    #navbar.active {
        right: 0;
    }

    #navbar li, #navbar .dropbtn {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: white;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: white;
        font-size: 15px;
    }

     /****** HOME PAGE MOBILE STYLES ******/

     #banner {
        display: flex;
        flex-direction: column;
        height: 80vh;
        padding: 0 40px;
        background-position: top 30% right 40%;
    }

    #banner .col {
        width: 100%;
    }

    #banner .right {
        display: none;
    }

    #banner h4 {
        font-size: 22px;
    }

    #banner p {
        font-size: 12px;
        line-height: 40px;
    }

    #about {
        display: block;
        background-image: none;
        background-color: #7AB5FC;
    }
    
    #about .text-bx {
        width: 100%;
        height: fit-content;
    }

    #about .float-bx {
        width: 100%;
        justify-content: center;
        height: fit-content;
        background-image: none;
        background-color: #7AB5FC;
        margin: 0;
        padding: 0 30px;
    }

    #about h4 {
        font-size: 20px;
    }

    #about .float-bx h4, #about .float-bx p {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    #about .float-bx p {
        font-size: 12px;
        line-height: 50px;
    }

    #about .btn {
        text-align: center;
    }

    #about button {
        margin: 0;
    }

    #feature {
        padding: 0 40px;
    }

    #feature .feature-box {
        width: 28%;
    }

    #feature img {
        width: 60%;
    }

    #feature h4 {
        font-size: 12px;
    }

    #feature p {
        font-size: 12px;
        line-height: 20px;
    }

    .comments .rev-cont {
        width: 100%;
        line-height: 20px;
    }

    #review .section-h h4, #review .section-h h1 {
        color: white;
    }

    #review p {
        font-size: 12px;
    }

    #slide {
        display: block;
    }

    .slide-h {
        width: 100%;
        text-align: center;
    }

    .slide-h h4, .slide-h h1 {
        margin: 0;
    }

    .slide-h h4 {
        font-size: 14px;
        padding: 20px 0;
    } 
    
    .slide-h h1 {
        font-size: 16px;
        line-height: 40px;
    }

    .slide-h button {
        width: 20%;
        padding: 10px;
    }

    .slide-cont {
        width: 100%;
        height: 75vh;
    }

    .swiper img {
        width: 100%;
    }

    /***** LOCATIONS MOBLIE STYLES *****/

    #store-banner h1 {
        font-size: 50px;
    }

    #info-cont {
        flex-direction: column;
        align-items: center;
    }

    .info-desc {
        width: 100%;
    }

    .frame-cont {
        width: 95%;
        height: 50vh;
    }

    /***** PRODUCTS MOBILE STYLES *****/

    #products-banner .col h1 {
        font-size: 50px;
    }

    #product1 .pro-container {
        justify-content: center;
        padding-top: 20px;
    }

    #product1 .pro {
        margin: 15px;
    }

    /***** SERVICES MOBILE STYLES *****/

    #savings h1 {
        font-size: 22px;
    }

    #savings h4 {
        font-size: 14px;
    }

    #lead p {
        font-size: 14px;
    }

    /***** ABOUT US MOBILE STYLES *****/

    .about-desc-cont {
        justify-content: space-between;
    }

    .desc-item {
        width: 100%;
    }
    
    /**** CONTACT US MOBILE STYLES ****/

    #contact-banner .col h1 {
        font-size: 50px;
    }

    #contact-form form {
        width: 100%;
    }
}