/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/services.css ***!
  \***************************************************************************/
/* services.css */
@font-face {
    font-family: 'Alegreya SC';
    src: url(0f220b52f43e80d3c03f.ttf);
    font-weight: medium;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(b1d0ab70303caea663db.ttf);
    font-display: swap;
}

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
}

html, body {
    margin: 0;
    padding: 0;
    /* background: rgba(245, 224, 224, 1); */
    background: rgba(185, 165, 175, .3);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* MAIN/WRAP */
#about-main-body {
    display: flex;
    flex-direction: column;
}

/* ABOUT TOP LANDING */
.landing-wrap {    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;

    height: 80vh;
    width: 100%;
}

#landing-wrap-winwash {
    background-image: url(top_background.jpeg);
    background-size: cover;
    -webkit-background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.about-top-sub-cont {
    max-width: max-content;
    height: 65%;
    text-align: center;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
}

.about-top-sub-cont > h1 {
    color: rgba(3, 6, 51, 1);
    font-family: 'Alegreya SC', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4.5rem;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0;
}

.about-top-sub-cont > h3 {
    color: rgba(219, 153, 36, 1);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}


/* HEADER */
.top-main {
    position: absolute;
    width: 100vw;
    height: auto;
    padding-top: 10px;

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.header-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    gap: 5px;

    list-style-type: none;
    margin: 0;
    padding: 0;
}

.head-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
   
    padding: 8px 8px;
    margin: 0;
    height: min-content;
    cursor: pointer;
};

.head-logo {
    text-decoration: none;
    color: inherit;
}

.head-link-item > a,
#nav-srvc-menu a {
    box-sizing: border-box;
    text-decoration: none;
 }

.head-link-item > .unselected,
.head-link-item.unselected {
    color: rgba(1, 36, 86, 1);
    font-size: 22px;
    font-weight: 800;
}

.head-link-item > .unselected:hover,
.head-link-item > .unselected:active {
    color: rgba(219, 153, 36, 1);
}

.head-logo {
    position: relative;
    width: 180px;
    height: 120px;
}

.head-logo a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.head-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* DROPDOWN MENU */
#dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    box-sizing: border-box;
    width: 200px;
    height: auto;
    background: rgba(1, 36, 86, .9);
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    /* transition: opacity 0.4s ease, transform 0.4s ease; /* Transition effects */
    /* transform: translateY(-10px); Initial transform state */
    z-index: 3;
}

#dropdown-menu > a {
    box-sizing: border-box;
    text-decoration: none;
    padding: 7px;
    color: white;
    z-index: 10;
}

#dropdown-menu > a:hover {
    box-sizing: border-box;
    text-decoration: none;
    color: rgba(219, 153, 36, 1);
}

#dropdown-menu span {
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* MOBILE MENU */
.mobile-header {
    display: none;
    flex-direction: row;
}

.mobile-btn-wrap {
    position: fixed;
    top: 15px;
    left: 15px;

    box-sizing: border-box;
    padding: 0;
    margin: 0;
    z-index: 20;
}

#mobile-nav-btn {
    display: inline-flex;
    align-items: center;  
    justify-content: center;
    padding: 0; 
    width: 35px; 
    height: 35px; 
    border: 1px solid black;
    border-radius: 5px;
    background: rgba(14, 165, 233, .9);
    fill: rgba(234, 179, 8, 1);
    cursor: pointer;
}

/* nav overlay dialog menu */
#mobile-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1, 36, 86, 0.4);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    z-index: 1000;
    border: none;
    outline: none;
}

#mobile-dialog > nav {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.nav-cls-btn-wrp {
    position: absolute;
    box-sizing: border-box;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: end;
    width: 100%;
}

.dialog-lnks-wrap {
    min-height: 300px;
}

.dialog-lnks-wrap > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-close-btn {
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    padding: 0;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 5px;
    fill: white;
    background: rgba(1, 1, 1, .4);
    cursor: pointer;
}

.dialog-lnks-wrap .head-link-item > .unselected,
.dialog-lnks-wrap .head-link-item.unselected {
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.dialog-lnks-wrap .head-link-item > .unselected:hover,
.dialog-lnks-wrap .head-link-item > .unselected:active,
#nav-srvc-menu .unselected:active {
    color: rgba(219, 153, 36, 1);
    font-size: 28px;
}

.dialog-lnks-wrap .head-link-item > .selected-link {
    color: rgba(219, 153, 36, 1);
    font-size: 28px;
    background: inherit;
}

#nav-srvc-menu {
    display: none;
    width: 70%;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 7px;
    padding-bottom: 7px;
}

#nav-srvc-menu a {
    color: rgba(219, 153, 36, 1);
    background: rgba(14, 165, 233, .5);
    border-radius: 5px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 1.1rem;
}


/* HEADER: SELECTED PAGE LINK */
.selected-link {
    color: rgba(219, 153, 36, 1);
    font-size: 22px;
    border-radius: 3px;
    font-weight: 800;
}

/* ABOUT INFO */
#service-mid-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
}

.upper-descp {
    box-sizing: border-box;
    max-width: 750px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    margin: 0;
    font-weight: 600;
    color: rgba(16, 28, 86, .9);
    font-size: 1.1rem;
}

.about-cont-wrap {
    /* border: 1px solid red; */
}

section > .about-cont-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: 400px;
    max-height: max-content;
    max-width: 100%;
    gap: 8px;
    padding-top: 10px;
    padding-right: 5px;
    padding-left: 5px;
}

.content-left-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 375px;
    padding-right: 5px;
    padding-left: 5px;
}

.content-left-wrap > h4,
.intro-hwd-wrap > h4 {
    color: rgba(16, 28, 86, 1);
    margin: 0;
    font-size: 1.1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.content-left-wrap > p {
    padding-top: 0;
    margin: 0;
    border-left: 3px solid green;
    padding-left: 8px;
}

.content-left-wrap > p,
.intro-hwd-wrap > p {
    font-weight: 500;
    color: rgba(16, 28, 86, .8);
}


/* BETA */
/* IMG / slider section */
.but-img-mast-wrap {
    box-sizing: border-box;
    height: max-content;  
    width: 350px;
    height: 380px;
    position: relative;
} 

.img-slider-wrap {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

#img-content {
    box-sizing: border-box;
    height: 100%;
    
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* img spec props */
.img-cont {
    box-sizing: border-box;
    width: 350px;
    height: 380px;
    z-index: 0;
}

.img-cont > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* services: window washing images */
#srvc-ww-img-1 > img {
    object-fit: contain;
}

#srvc-ww-img-4 > img {
    object-position: left;
}

/* roof and gutter cleaning */
#srvc-rg-img-2 > img,
#srvc-rg-img-4 > img {
    object-position: right;
}

/* solar penel imgs */
#srvc-spc-img-1 > img,
#srvc-spc-img-2 > img {
    object-position: right;
}

/* img slider buttons */
.scroll-slider {
    box-sizing: border-box;
    position: absolute;
    height: 50px;
    width: 40px;
    border: none;
    padding: 2px;
    background: none;
    z-index: 5;
    top: 43%;
}

.scroll-l {
    left: 0;
}

.scroll-r {
    right: 0;
}

#Capa_r {
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
    fill: rgba(234, 179, 8, 1);
}

#Capa_l {
    width: 100%;
    height: 100%;
    transform: rotate(270deg);
    fill: rgba(234, 179, 8, 1);
}

/* how we do it sub-section */
.intro-hwd-wrap {
    box-sizing: border-box;
    max-width: 755px;
    padding: 10px;
    padding-top: 18px;
}

.intro-hwd-wrap > h4 {
    margin: 0;
    text-align: center;
    padding-top: 5px;
}

.intro-hwd-wrap > p {
    margin: 0;
}


/* established */
.serv-lower-title {
    text-align: center;
    padding: 7px;
    margin: 0;
    font-size: 1.4rem;
    color: rgba(33, 80, 173, 1);
    letter-spacing: .1rem;
}

.contact-button {
    all: unset;
    border: 1px solid black;
    border-radius: 3px;
    padding: 7px 30px;
    color: rgba(232, 123, 11, 1);
    background: rgba(33, 80, 173, .4);
}

.contact-button:hover {
    background: rgba(33, 80, 173, 1);
}

/* benefits section */
.benefits-title {
    text-align: center;
    letter-spacing: .1rem;
    margin: 0;
    padding-bottom: 17px;
    padding-top: 30px;
}

.points-desc-wrap {
    box-sizing: border-box;
    min-width: 80%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    padding-right: 5px;
}

.serv-point-wrap {
    box-sizing: border-box;
    min-width: 200px;
    max-width: 250px;
    padding-left: 10px;
}

.serv-point-wrap > h4 {
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    color: rgba(16, 28, 86, 1);
}

.serv-point-wrap > p {
    margin: 0;
    padding: 0;
    font-size: 15px;
}

/* links */
.srvc-descp-links {
    color:rgba(234, 179, 8, 1);
}

/* divider upper */
.divider-wrap-top {
    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    min-height: 40px;
    width: 60%;
}

.divider-spn-top {
    width: 100%;
    height: 2.5px;
    background: rgba(1, 36, 86, 0.94);
}

/* dividers lower*/
.divider-wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    min-width: 45px;
}

.divider-spn {
    width: 2.5px;
    height: 60%;
    background: rgba(1, 36, 86, 0.94);
}

/* preFooter */
#preFooter {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: inherit;
    -webkit-font-smoothing: antialiased;
}

.svg-icon--list {
    display: flex;
    gap: 8px;
    width: max-content;
    height: max-content;
    padding: 25px;
}

.svg-icon--wrapper {
    color: rgb(16, 44, 100);
    text-decoration: none;
    background: transparent;
    border-radius: 50%;
    box-sizing: border-box;

    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 2px inset;
    border: none;
}

.svg-icon--social {
    background-color: inherit;
    color: #c9c9c9;
    border-radius: 50%;
}

.svg-icon--wrapper.instagram,
.svg-icon--wrapper.nextdoor,
.svg-icon--wrapper.youtube {
    border: none;
    color: transparent;
}

.svg-icon--wrapper.nextdoor {
    color: transparent;
    text-decoration: none;
    background: transparent;
    box-sizing: border-box;
    width: 40px;
    height: 45px;
    box-shadow: 0 0 0 2px inset;
    border: none;
}

.svg-icon--wrapper.youtube {
    width: 36px;
    height: 45px;
}

.svg-icon--wrapper.twitter {
    border: none;
}

.yelp > .use--icon {
    fill: red;
}

.instagram > .use--icon {
    fill: red;
}

.svg-icon--social.facebook > .use--mask {
    fill: rgba(14, 165, 233, .1);
}

.svg-icon--social.facebook > .use--icon {
    fill: rgba(14, 165, 233, 1);
}

.svg-icon--social.nextdoor {
    color: green;
    fill: white;
    background: transparent;
}

.yelp > .use--mask {
    fill: transparent;
}

.svg-icon--social.youtube {
    fill: red;
}




/* FOOTER SECTION */
.index-footer {
    min-height: 430px;
    display: flex;
    justify-content: center;
    background: rgba(14, 165, 233, 1);
    position: relative;
}

#siteInfo {
    display: none;
    position: absolute;
    top: 5;
}

#siteInfo > span {
    color: rgba(255, 255, 255, .8);
}
 
.logo-foot-wrap {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
}

.foot-contact-left {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 430px;
}

.foot-contact-left > h2 {
    margin: 0;
    font-size: 1.7rem;
}

.foot-contact-left > h3 {
    color: rgba(234, 179, 8, 1);
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Noto Sans';
}

.foot-contact-left > span {
    font-size: .6rem;
}
 
.footer-logo {
    box-sizing: border-box;
    background-color: rgba(234, 179, 8, .9);
    display: block;
    aspect-ratio: 1.53 / 1;
    width: 90%;
    max-width: 400px;
    height: auto;
    border: 1px solid rgba(234, 179, 8, .9);
    border-radius: 5px;
}

.footer-logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-foot-wrap > div > h2 {
    color: rgba(240, 233, 221, 1);
}

.foot-links {
    display: flex;
    gap: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 25px;
    padding-bottom: 5px;
}

#phone-number {
    margin: 0;
    padding: 0;
    width: max-content;
    font-size: 2.5rem;
    color: rgba(240, 233, 221, 1);
    border-bottom: .1px solid rgba(240, 233, 221, .4);
    padding-bottom: 3px;
    font-family: 'Noto Sans';
}

#phone-number > a {
    color: inherit;
}

#phone-number > a:hover {
    color: rgba(219, 153, 36, .8);
}

.foot-link {
    border-bottom: .1px solid rgba(240, 233, 221, .4);
}

.foot-link > a {
    color: rgba(240, 233, 221, 1);
    font-size: .9rem;
    font-weight: 500;
}

.footer-left-locations a {
    color: rgba(240, 233, 221, 1);
    font-size: .9rem;
    font-weight: 500;
}


@media screen and (width < 900px) {
    .about-top-sub-cont > h1 { 
        font-size: 4rem;
    }

    .about-top-sub-cont > h3 {
        font-size: 1.3rem;
    }
 }

@media screen and (width < 741px) { 
    /* non-mobile-header */
    .top-main {
        display: none;
    }

    .points-desc-wrap {
        flex-direction: column;
        gap: 10px;
        max-width: 75%;
    }

    .serv-point-wrap {
        min-width: 100%;
        border-left: 3px solid green;
    }

    /* MOBILE NAV MENU */
    .mobile-header {
        position: absolute;
        top: 0;
        padding-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        z-index: 4;
    }

    .head-logo {
        width: 200px;
        height: 130px;
    }

    /* footer */
    .logo-foot-wrap {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .foot-contact-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 30px;
    }

    .foot-contact-left > h2 {
        text-align: center;
    }

    #phone-number > a:active {
        color: rgba(219, 153, 36, 1);
    }

    .foot-links {
        padding-top: 35px;
        padding-bottom: 5px;
    }

    .footer-logo {
        display: block;
        aspect-ratio: 1.53 / 1;
        width: 90%;
        max-width: 400px;
        height: auto;
        border: 1px solid rgba(234, 179, 8, .9);
        border-radius: 5px;
        object-fit: contain;
    }
}

@media screen and (width < 651px) { 
    .about-top-sub-cont {
        height: 60%;
    }

    .about-top-sub-cont > h1 {
        font-size: 3.5rem;
    }

    section > .about-cont-wrap  {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        gap: 20px;
    }

    .intro-hwd-wrap {
        max-width: 400px;
    }
}

@media screen and (width < 401px) {
    .about-top-sub-cont > h1 {
        font-size: 3rem;
    }

    .about-top-sub-cont > h3 {
        font-size: 1.2rem;
    }

    /* img slider */
    .but-img-mast-wrap {
        width: 300px;
        height: 325.7px;
    }

    .img-cont {
        width: 300px;
        height: 325.7px;
    }

    /* footer  */
    .foot-link > a {
        font-size: .8rem;
    }

    #phone-number {
        font-size: 2.1rem;
    }

    .foot-links {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 9px;
    }
}


/*# sourceMappingURL=services.698994d0abf86aeb7292.css.map*/