/*
 Theme Name:     RYNO Child Theme
 Theme URI:      http://rynoss.com/
 Description:    RYNO Child Theme
 Author:         Ryno SS - Jerad Shepherd
 Author URI:     http://www.rynoss.com
 Template:       theme-3
 Text Domain:    ryno-theme-three-child
 Version:        1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */


.wpcf7 p {
    margin: 0 !important;
}
.text-links {
    text-decoration: underline;
    color: inherit;
}

/* ================== */
/* GLOBAL */
/* ================== */
/* colors */
:root {
    --color-lime: #5CED00;
    --color-blue-silver: #D9E2EB;
    --color-header-color: #CCC;
    --color-slate: #2E2E2E;
    --color-light-gray: #939393;
    --color-gray: rgba(255, 255, 255, 0.40);
    
    --color-white: #fff;
    --color-black: #000;
}
/* fonts */
:root {
    --desktop-rem-size: 18;
    --mobile-rem-size: 16;
    
    --heading-font: var(--font-heading);
    --body-font: var(--font-body);
    
    --margin-bottom-default: 30px;
}
/* screen size */
:root {
    --desktop-screen-size: 1600;
    --mobile-screen-size: 576;
}
/* common styles */
.viewport-overflow-wrapper {
    overflow: hidden;
}


/* ================== */
/* TYPOGRAPHY */
/* ================== */
.h1,.h2,.h3,.h4,.h5,.h6,
h1,h2,h3,h4,h5,h6 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: var(--margin-bottom-default);
}
html {
    font-size: calc(1px * var(--desktop-rem-size));    
}
@media screen and (max-width: 767px){
    html {
        font-size: calc(1px * var(--mobile-rem-size));
    }
}
body {
    font-family: var(--body-font);
    font-size: inherit;
}
div, ul, ol, p {
    font-family: inherit;
    font-size:   inherit;
    font-weight: inherit;
    line-height: inherit;
}
p, ul, ol {
    margin-bottom: var(--margin-bottom-default);
}


/*HEADER*/
.header .header-col--center .header-box {
    justify-content: center;
}
.header .header-col--right .header-box {
    align-items: flex-end;
}
.header .header-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.header .phone-link a {
    color: var(--color-lime);
    font-size: calc(1em * (36 / var(--local-rem-size)));
    font-weight: 700;
}
.header .serving-text .header-text {
    font-size: calc(1em * (20 / var(--local-rem-size)));
    text-transform: uppercase;
    font-weight: 800;
}
.header .serving-text a {
    color: white;
    text-decoration: underline;
}
.header-col {
    height: calc(1em * (125 / var(--local-rem-size)));
}
.header-wrapper::after {
    left: unset !important;
    right: 0px;
    scale: -1;
}
.header-wrapper::after,
.header-wrapper::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 828px;
    height: 100%;
    background-image: url('/wp-content/uploads/header-bg-texture.svg');
}
.header-wrapper {
    --local-rem-size: 18;
    color: white;
    font-size: calc(1em * (var(--local-rem-size) / var(--desktop-rem-size)));
    background-color: black;
    padding-top: calc(1em * (10 / var(--local-rem-size)));
    box-shadow: 0px 5px 20px rgba(92, 237, 0, 0.30);
}
@media (min-width: 992px) {    
    .main-navigation > li.has-dropdown:hover::after {
        rotate: 180deg;
    }
    .main-navigation > li.has-dropdown:after {
        transition: .125s ease-out;
    }
}


/*SOCIAL ICONS*/
@media (min-width: 992px) {
    .social-icons__icon:hover {
        box-shadow: 2px -2px 4px 0px rgba(0, 0, 0, 0.63) inset !important;
    }
}
.social-icons__icon:hover a {
    color: black;
}
.social-icons__icon a {
    padding: 5px 11px;
}
.social-icons__icon a {
    color: black;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.63);
    font-size: 24px;
}
.social-icons__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-lime);
    box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, 0.63) inset; 
}
.social-icons {
    display: flex;
    gap: 20px;
}


/* ================== */
/* BUTTONS */
/* ================== */
@media (min-width: 992px) {
    .btn.btn-primary:hover {
        padding-right: calc(1em * (62 / var(--button-rem-size)));
        padding-left: calc(1em * (23 / var(--button-rem-size)));
    }
    .btn.btn-primary:hover::before {
        margin-left: calc(100% - (var(--button-icon-size) + 5px));
    }
}
.btn.btn-primary {
    color: var(--color-slate);
    background-color: var(--color-light-gray);
    transition: var(--button-fx-speed);
}
.btn::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: var(--button-icon-size);
    height: var(--button-icon-size);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/button-logo-icon.svg');
    transition: var(--button-fx-speed);
}
.btn {
    position: relative;
    --button-icon-size: 48px;
    --button-rem-size: 17;
    --button-fx-speed: 0.325s ease-out;
    
    display: inline-block;
    
    font-family: var(--font-heading);
    font-size: calc(1em * (var(--button-rem-size) / var(--desktop-rem-size)));
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    

    border-radius: calc(1em * (50 / var(--button-rem-size)));
    border-style: solid;
    border-color: transparent;
    border-width: calc(1em * (0 / var(--button-rem-size)));
    
    
    padding-top: calc(1em * (17 / var(--button-rem-size)));
    padding-left: calc(1em * (62 / var(--button-rem-size)));
    padding-right: calc(1em * (23 / var(--button-rem-size)));
    padding-bottom: calc(1em * (14 / var(--button-rem-size)));
    
	background-size: 100% 100%;
    background-image: url('/wp-content/uploads/btn-bg-texture.png');
    box-shadow: -2px 2px 2px 0px rgba(255, 255, 255, 0.40) inset, 2px -2px 4px 0px rgba(0, 0, 0, 0.63) inset; 
    
    --btn-fx-speed: 0.235s;
    
    transition: 
        all 0s,
        background-position var(--btn-fx-speed) ease-out,
        background-color var(--btn-fx-speed) ease-out,
        border-color var(--btn-fx-speed) ease-out,
        color var(--btn-fx-speed) ease-out,
        top var(--btn-fx-speed) ease-out,
        left var(--btn-fx-speed) ease-out,
        right var(--btn-fx-speed) ease-out,
        bottom var(--btn-fx-speed) ease-out,
        box-shadow var(--btn-fx-speed) ease-out,
        transform var(--btn-fx-speed) ease-out
    ;
}


.postscript-contact .wpcf7-submit,
.main-contact-form .wpcf7-submit,
.page-section .btn,
.header .btn,
.footer .btn,
.home .btn {
    min-width: calc(1em * (261 / var(--button-rem-size)));
}


/*HERO*/
.hero {
    position: absolute;
    bottom: calc(100vw * (87 / 1600));
    left: 50%;
    transform: translatex(-50%);
}
.hero-wrapper {
    position: relative;
    height: calc(100vw * (709 / 1600));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/hero-bg.png');
}
@media (max-width: 991.98px) {
    .hero {
        bottom: calc(100vw * (87 / 576));
    }
    .hero-wrapper {
        height: calc(100vw * (543 / 576));
        background-image: url('/wp-content/uploads/mobile-hero.png');
    }
}
/* ================== */
/* PAGE SECTIONS */
/* ================== */
.mobile-only {
    display: none;
}
@media (max-width: 991.98px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}



.page-section--main h1 {
    font-size: 42px;
}
.page-section--main .callout-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.page-section--main .image {
    position: absolute;
    top: 50px;
    right: 0px;
}
.page-section--main::before {
    display: block;
    content: '';
    position: relative;
    width: 100vw;
    height: calc(100vw * (48 / 1600));
    margin-bottom: 84px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
    background-image: url('/wp-content/uploads/excellence-tagline.svg')
}
.page-section--main {
    position: relative;
    padding-bottom: calc(1em * (162 / var(--desktop-rem-size)));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/section-one-bg.png')
    ;
}
@media (max-width: 991.98px) {
    .page-section--main .text-block:last-child {
        font-weight: 700;
    }
    .page-section--main .image img {
        width: 100%;
        position: relative;
    }
    .page-section--main .image {
        position: relative;
    }
}




.page-section--cta .section-header {
    display: flex;
    justify-content: center;
}
.page-section--cta .widget-block {
    margin-top: 40px;
}
.page-section--cta {
    padding-bottom: 51px;
}



.page-section--trusted-plumbing img {
    width: 517px;
    height: 442px;
    box-shadow: 10px 10px 30px 3px rgba(255, 255, 255, 0.20);
}
.page-section--trusted-plumbing .section-footer-text p {
    font-size: 26px !important;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 3.38px;
}
.page-section--trusted-plumbing .section-footer-text h5 {
    font-size: calc(100vw * (60 / 1600));
    letter-spacing: calc(100vw * (15 / 1600));
    line-height: normal;
}
.page-section--trusted-plumbing .button-wrapper {
    margin-top: 40px;
    margin-bottom: 108px;
}
.page-section--trusted-plumbing p:not(.callout-text) {
    font-size: 17.5px;
}
.page-section--trusted-plumbing .callout-text {
    font-weight: 700;
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.page-section--trusted-plumbing .row.align-items-center {
    margin: 70px 0px;
}
.page-section--trusted-plumbing {
    text-align: center;
    padding-top: 137px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/trusted-plumbing-bg.jpg')
    ;
}
@media (max-width: 991.98px) {
    .page-section--trusted-plumbing .row.align-items-center {
        display: flex;
        flex-direction: column;
    }
    .page-section--trusted-plumbing {
        background-image: url('/wp-content/uploads/trusted-plumbing-bg-mobile.png');
    }    
}
@media (min-width: 320px) and (max-width: 420px) {
    .page-section--trusted-plumbing .section-footer-text p {
        font-size: calc(1em * (18 / var(--mobile-rem-size))) !important;
    }
}




.page-section--why-us p {
    font-weight: 700;
}
.page-section--why-us .section-footer-text {
    width: 100%;
    max-width: 751px;
    margin: auto;
    margin-top: 70px;
}
.page-section--why-us {
    text-align: center;
    padding-top: calc(1em * (145 / var(--desktop-rem-size)));
    padding-bottom: calc(1em * (127 / var(--desktop-rem-size)));
	background-size: 100% 100%;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/why-us-bg.png')
    ;
}
@media (max-width: 991.98px) {
    .page-section--why-us {
        background-image: url('/wp-content/uploads/why-us-bg-mobile.png');
    }
}




.page-section--tigards-best .section-footer-text {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin: auto;
}
.page-section--tigards-best .section-header {
    width: 100%;
    max-width: 947px;
    margin: auto;
}
.page-section--tigards-best {
    background-size: cover;
    background-position: center;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/tigards-best-bg.png')
    ;
}




.page-section--about-us .section-footer .col--right {
    display: flex;
    align-items: end;
}
.page-section--about-us .section-footer .col--left p:first-child {
    margin-bottom: 20px;
}
.page-section--about-us .section-footer .col--left p {
    margin-bottom: 0px;
}
.page-section--about-us .section-footer p {
    font-weight: 700;
}
.page-section--about-us .section-footer {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 944px;
    margin: auto;
}
.page-section--about-us .widget-block .row {
    align-items: center;
    margin-bottom: 90px;
}
.page-section--about-us .section-header h2 {
    font-size: 80px;
    text-align: center;
    margin-bottom: 75px;
}
.page-section--about-us {
    padding-top: 163px;
    padding-bottom: 132px;
    background-size: cover;
    background-position: center;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/about-bg.png')
    ;
}
@media (max-width: 991.98px) {
    .page-section--about-us .section-footer {
        flex-direction: column;
        align-items: center;
    }
    .page-section--about-us .widget-block .row img {
        position: relative;
        width: 100%;
        max-width: 300px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-section--about-us .section-header h2 {
        font-size: 42px;
        margin-bottom: 50px;
    }
    .page-section--about-us .widget-block .row {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .page-section--about-us {
        background-image: url('/wp-content/uploads/trusted-plumbing-bg-mobile.png');
    }
}




.page-section--contact-us .outline-box {
    border: 1px solid var(--color-lime);
    padding: 45px 35px;
    background-color: #090909;
    width: 100%;
    max-width: 457px;
}
.page-section--contact-us .content-block {
    line-height: 28px;
}
.page-section--contact-us .outline-box-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 104px;
}
.page-section--contact-us .section-header p {
    margin-bottom: 0px;
}
.page-section--contact-us .section-header h2 {
    font-size: 42px;
}
.page-section--contact-us .section-header {
    text-align: center;
    width: 100%;
    max-width: 933px;
    margin: auto;
}
.page-section--contact-us {
    padding-bottom: 143px;
    background-image: 
        linear-gradient(to bottom, black 0%, transparent 40%, transparent 70%, black 100%),
        url('/wp-content/uploads/contact-us-bg.png')
    ;
    background-size: cover;
    background-position: center;
}
@media (max-width: 991.98px) {
    .page-section--contact-us .outline-box-wrapper {
        flex-direction: column;
        align-items: center;
    }    
    .page-section--contact-us .section-header p {
        text-align: left;
    }
    .page-section--contact-us .section-header h2 {
        font-size: 30px;
    }
    .page-section--contact-us .section-header {
        max-width: unset;
    }
    .page-section--contact-us {
        padding-bottom: 0px;
    }
}







.page-section {
    color: #ccc;
    background-color: black;
}




.postscript-contact .wpcf7-form .row .input-fields-column:nth-child(2) {
    margin: 30px 0px;
}
.postscript-contact .button-wrapper {
    display: flex;
    justify-content: flex-end;
}
.postscript-contact {
    padding-top: calc(1em * (136 / var(--desktop-rem-size)));
    padding-bottom: calc(1em * (81 / var(--desktop-rem-size)));
	background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/postscript-metal-texure.png');
}
@media (max-width: 991.98px) {
    .postscript-contact .button-wrapper {
        justify-content: center;
    }
}




/*FOOTER*/
.footer-col--left .attn-text {
    display: block;
    margin: 10px 0px;
}
.footer-col--left .company-phone--link span {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-lime);
}
.footer .col-header::after {
    display: block;
    content: '';
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #ccc;
    margin-bottom: 17px;
}
.footer .col-header {
    position: relative;
    margin-bottom: 0px;
}
.footer ul li {
    margin-top: 2px;
}
.footer ul {
    list-style: none;
    padding: 0px;
}
.footer h5, .footer strong, .footer ul li {
    color: #ccc;
}
.footer .row:first-child {
    margin-bottom: 30px;
}
@media (max-width: 991.98px) {
    .footer img {
        position: relative;
        left: 50%;
        transform: translatex(-50%);
        width: 100%;
        max-width: 300px;
    }
    .footer-col--center .footer-box {
        margin: 30px 0px;
    }    
    .footer .footer-col--center {
        display: flex;
        flex: 100%;
        justify-content: start;
        text-align: center;
    }
}


/*WIDGETS*/
.service-guarantee img {
    height: 60px;
}
.service-guarantee {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 231px;
}
.service-guarantees {
    display: flex;
    justify-content: space-between;
}
.service-guarantees-wrapper {
    margin-bottom: calc(1em * (30 / var(--desktop-rem-size)));
}
@media (max-width: 991.98px) {
    .service-guarantee {
        max-width: 100%;
        align-items: center;
    }
    .service-guarantees {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
}




@media (min-width: 992px) {
    .cta:hover .cta-label {
        color: var(--color-lime);
        text-shadow: 0px 0px 10px var(--color-lime);
        border-color: var(--color-lime);
        box-shadow: 0px 0px 10px var(--color-lime);
    }
    .cta:hover::after {
        height: 43px;
        background-image: url('/wp-content/uploads/edited-neon-hover.png');
    }    
}
.cta.toilets::before {
    background-image: url('/wp-content/uploads/toilets-fixtures-icon.svg');
}
.cta.leaks::before {
    background-image: url('/wp-content/uploads/leak-detection-icon.svg');
}
.cta.waterlines::before {
    background-image: url('/wp-content/uploads/waterlines-drains-icon.svg');
}
.cta.water-heaters::before {
    background-image: url('/wp-content/uploads/water-heaters-icon.svg');
}
.cta::before {
    display: block;
    content: '';
    position: relative;
    left: 50%;
    transform: translatex(-50%);
    width: 115px;
    height: 98px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/repair-service-icon.svg');
}
.cta::after {
    display: block;
    content: '';
    position: relative;
    bottom: 2px;
    left: 50%;
    transform: translatex(-50%);
    width: 126px;
    height: 36px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/neon-rectangle-sign-noglow@2x.png');
}
.cta .cta-label {
    position: relative;
    color: var(--color-gray);
    border-radius: 5px;
    border: 2px solid var(--color-gray);
    padding: 10px 0px;
    text-shadow: 0px 0px 10px var(--color-gray);
    box-shadow: 0px 0px 10px var(--color-gray);
}
.cta {
    position: relative;
    display: block;
    text-align: center;
    text-transform: uppercase;
    width: calc(1em * (150 / var(--local-rem-size)));
}
.cta-slider {
    display: flex;
    justify-content: space-between;
}
.cta-slider-wrapper {
    --local-rem-size: 16;
    font-size: calc(1em * (var(--local-rem-size) / var(--desktop-rem-size)));
    font-family: var(--font-heading);
}




.trusted-list .list-item::before {
    display: inline-block;
    content: '';
    position: absolute;
    width: calc(1em * (39 / var(--local-rem-size)));
    height: calc(1em * (39 / var(--local-rem-size)));
    left: calc(1em * ((-39 - 32) / var(--local-rem-size)));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/button-logo-icon.svg');
}
.trusted-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(1em * (42 / var(--local-rem-size)));
    text-align: left;
    margin-left: calc(1em * ((39 + 32) / var(--local-rem-size)));
}
.trusted-list-wrapper {
    --local-rem-size: 18;
    font-size: calc(1em * (var(--local-rem-size) / var(--desktop-rem-size)));
}




.why-us-cards-item {
    border: 3px solid var(--color-lime);
    padding: 
        calc(1em * (25 / var(--desktop-rem-size))) 
        calc(1em * (10 / var(--desktop-rem-size)))
    ;
    width: 100%;
    max-width: calc(1em * (350 / var(--local-rem-size)));
    background-color: #090909;
}
.why-us-cards .card-body,
.why-us-cards .card-header {
    padding: 0px;
}
.why-us-cards .card-header h5 {
    font-size: calc(1em * (18 / var(--local-rem-size)));
    margin-bottom: calc(1em * (10 / 18));
    color: var(--color-lime);
}
.why-us-cards {
    display: flex;
    justify-content: space-between;
	gap: 20px;
}
.why-us-card-wrapper {
    --local-rem-size: 18;
    font-size: calc(1em * (var(--local-rem-size) / var(--desktop-rem-size)));
}
@media (min-width: 992px) and (max-width: 1199px) {
    .why-us-card-wrapper {
        font-size: calc(1em * (var(--local-rem-size) / var(--desktop-rem-size)) * 933/1113);
    }
}
@media (max-width: 991.98px) {
    .why-us-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}




.skilled-team .footer-text h5 {
    color: var(--color-lime);
    margin-bottom: 10px;
    font-size: 20px;
}
.skilled-team .footer-text {
    text-align: center;
    width: 100%;
    max-width: 751px;
    margin: auto;
    margin-top: 40px;
}
.skill::before {
    display: inline-block;
    content: '';
    position: relative;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/button-logo-icon.svg');
    border-radius: 100%;
    margin-right: 15px;
}
.skill {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    font-weight: 700;
}
.skills-list {
    display: flex;
    justify-content: space-between;
}
.skilled-team h2 {
    font-size: 20px;
    text-align: center;
}
.skilled-team-wrapper {
    border: 2px solid var(--color-lime);
    padding: 50px;
    margin-top: 50px;
    margin-bottom: 80px;
    background-color: #090909;
	background-position: center;
    background-image: url('/wp-content/uploads/box-bg-texture.png');	
}
@media (max-width: 991.98px) {
    .skill br {
        display: none;
    }
    .skill {
        max-width: unset;
        justify-content: start;
        font-weight: 400;
    }
    .skills-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}




.about-us-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    line-height: 28px;
    margin-bottom: 0px;
    margin-top: 51px;
}
.about-us-list .list-header {
    color: var(--color-lime);
    font-weight: 700;
    text-align: center;
}
.about-us-list {
    width: 100%;
    max-width: 359px;
    margin: auto;
}
.about-us-list-wrapper {
    border: 1px solid var(--color-lime);
    padding: 46px;
    background-color: #090909;
}





/*SLICK*/
@media (max-width: 991.98px) {    
    .cta-slide {
        margin-right: 80px;
    }
    .cta-slider-wrapper {
        position: relative;
        left: 50%;
        transform: translatex(-50%);
        width: 100vw;
    }
}
.slick-dots {
    top: auto;
    bottom: -70px;
}

/* slick dots -------------------------- */
.slick-dots .slick-active button::before {
    background-color: var(--color-lime);
    border: var(--color-lime);
    opacity: 1 !important;
}
.slick-dots li button:hover::before {
    background-color: var(--color-lime);
    border: var(--color-lime);
}
.slick-dots li button::before {
    content: '';
    border: 2px solid var(--color-white);
    border-radius: 100%;
    background-color: white;
    opacity: 1;
}





/* CHARGE PAGES */
@media (max-width: 992px) {    
    .conversion-coupon__button .charge-coupon-button {
        display: block;
    }
    .conversion-coupon__button {
        display: flex;
        justify-content: center;
    }
    .post-2611 .shadowbox img {
        display: block;
        margin: auto;
    }
}
@media (max-width: 991.98px) {
    .page-section--hero .hero-wrapper {
        position: relative;
        background-position: 0% 20%;
        background-image:
            linear-gradient(to top, black 0%, transparent 10%),
            url('/wp-content/uploads/mobile-hero-bgx2.png');
    }
}
@media (max-width: 500px) {
    .page-section--hero .hero-wrapper {
        background-image: 
        linear-gradient(to top, black 0%, transparent 10%),
        url('/wp-content/uploads/mobile-hero-bgx2.png');
    }
}
.sidebar-form .wpcf7-submit {
    bottom: -10px;
}
.accordion-item .accordion-header button:hover:not(.collapsed),
.accordion-item .accordion-header button:not(.collapsed) {
    background-color: var(--color-light-gray);
}
.conversion-content-four a:hover,
.conversion-content-one a:hover,
.conversion-content-two a:hover {
    text-decoration: underline !important;
}
.plumbing_repair--content-three a:hover {
    color: black !important;
    text-decoration: none !important;
}
@media only screen and (min-width: 768px) {
    .page-template-page-conversion .conversion-content-three.plumbing_repair--content-three {
        padding: 0px;
        background-color: black;
        background-image: none;
    }
}


.btn::before {
    top: 0;
    left: 2px;
    width: 50px;
    height: 100%;
}
.wpcf7-form {
    font-family: "Josefin Sans";
}
@media (min-width: 992px) {
    .postscript-contact .wpcf7-form .row .input-fields-column:nth-child(2) {
        margin: unset;
    }
}


/* FORMS */
.main-contact-form .select2-container--default .select2-selection--single,
input.wpcf7-form-control.wpcf7-text.cf-text,
.wpcf7-textarea,
.main-contact-form .cf-textarea,
input.wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-tel.cf-text,
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email.cf-text,
.select2-container--default .select2-selection--single {
    background-color: #cccccc;
}


/* SERVICE AREAS */
.post-2420 .text-shadow-box {
    border: 3px solid var(--Green, #5CED00);
    box-shadow: 10px 10px 30px 3px rgba(92, 237, 0, 0.10)
    margin-right: 0px;
}

/* FRONTPAGE BOXES */
.col.outline-box,
.about-us-list-wrapper,
.skilled-team-wrapper,
.why-us-cards-item {
    box-shadow: 10px 10px 30px 3px rgba(92, 237, 0, 0.10)
}

/* INTERNAL IMAGES BOXSHADOW */
.conversion-content-one__sticky-image img,
.conversion-content-two__sticky-image img {
    box-shadow: 10px 10px 30px 3px rgba(92, 237, 0, 0.10)
}

/* INTERNAL PAGES BG FIX / CONTRAST FIX */
#photo-box {
    background-size: 100% 100%;
}
.panel {
    background-size: 100% 100%;
    background-image: url('/wp-content/uploads/metal-texture-2x.png');
}
.text-shadow-box a:hover {
    color: black;
}
.single .blog-categories .category-pill:hover {
    text-decoration: underline;
}
.single .blog-categories .category-pill {
    color: black;
}

/* VARIOUS CHANGES - UNCATEGORIZED */
.conversion-content-one__sticky-image img,
.conversion-content-two__sticky-image img {
    box-shadow: 10px 10px 30px 3px rgba(255, 255, 255, 0.10);
}
.ryno-star-solid::before {
    display: inline-flex;
    --icon-size: 30px;
    position: relative;
    content: '';
    width: var(--icon-size);
    height: var(--icon-size);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/uploads/pointed-star.svg');
}

.page-section--about-us {
    background-image: url('/wp-content/uploads/section-6-bg-updated.png');
}
.about-us-list-wrapper {
    border: 3px solid #5CED00;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.22) 100%), #FFF;
    background-color: unset;
    box-shadow: 10px 10px 30px 3px rgba(92, 237, 0, 0.10);    
}

.outline-box,
.why-us-cards-item {
    background-size: cover;
    background-position: 100% 100%;
    background-image: url('/wp-content/uploads/metal-texture-2x.png');
}

/* INTERNAL PAGES */
#photo-box {
    background-size: 100% 100%;
}
.panel {
    background-size: 100% 100%;
    background-image: url('/wp-content/uploads/metal-texture-2x.png');
}
.text-shadow-box a:hover {
    color: black;
}
.single .blog-categories .category-pill:hover {
    text-decoration: underline;
}
.single .blog-categories .category-pill {
    color: black;
}

.page-section--trusted-plumbing img {
  box-shadow: 10px 10px 30px 3px rgba(92, 237, 0, 0.10);
}