/*
    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
------------------------------------------------------- */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* GLOBAL */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* COLORS */
:root {
    --color-primary-blue: #0156A7;
    --color-primary-red: #D30000;
    --color-primary-white: #F4F4F4;
}
/* FONTS */
:root {
    --home-heading-font: 'Open Sans', sans-serif;
    --home-body-font: 'Roboto', sans-serif;
    --current-screen-size: 1600;
}
@media (max-width: 991.98px) {
    :root {
        --current-screen-size: 576;
    }
}
@media (max-width: 991.98px) {
    :root {
        --current-screen-size: 320;
    }
}
:root {
    --h1-font-size: 48px;
    --h1-line-height: 108%;

    --h2-font-size: 42px;
    --h2-line-height: 114%;

    --h3-font-size: 36px;
    --h3-line-height: 116%;

    --h4-font-size: 30px;
    --h4-line-height: 120%;

    --h5-font-size: 24px;
    --h5-line-height: 116%;

    --h6-font-size: 20px;
    --h6-line-height: 140%;

    --body-font-size: 18px;
    --body-line-height: 155%;
    
    /*--- MOBILE FONT SIZE ---*/
    
    --h1-font-size-mobile: 30px;
    --h1-line-height-mobile: 120%;

    --h2-font-size-mobile: 24px;
    --h2-line-height-mobile: 133%;

    --h3-font-size-mobile: 20px;
    --h3-line-height-mobile: 150%;

    --h4-font-size-mobile: 20px;
    --h4-line-height-mobile: 150%;

    --h5-font-size-mobile: 18px;
    --h5-line-height-mobile: 155%;

    --h6-font-size-mobile: 16px;
    --h6-line-height-mobile: 150%;
    
    --body-font-size-mobile: 16px;
    --body-line-height-mobile: 150%;
}
.home h1,.home h2,.home h3,
.home h4,.home h5,.home h6 {
    font-family: var(--home-heading-font);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.home h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}
.home h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}
.home h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
}
.home h4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
}
.home h5 {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
}
.home h6 {
    font-size: var(--h6-font-size);
    line-height: var(--h6-line-height);
}
.home p {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    margin-bottom: 0px;
}
body {
    font-family: var(--home-body-font);
}
@media (max-width: 991.98px) {
    .home h1 {
        font-size: var(--h1-font-size-mobile);
        line-height: var(--h1-line-height-mobile);
    }
    .home h2 {
        font-size: var(--h2-font-size-mobile);
        line-height: var(--h2-line-height-mobile);
    }
    .home h3 {
        font-size: var(--h3-font-size-mobile);
        line-height: var(--h3-line-height-mobile);
    }
    .home h4 {
        font-size: var(--h4-font-size-mobile);
        line-height: var(--h4-line-height-mobile);
    }
    .home h5 {
        font-size: var(--h5-font-size-mobile);
        line-height: var(--h5-line-height-mobile);
    }
    .home h6 {
        font-size: var(--h6-font-size-mobile);
        line-height: var(--h6-line-height-mobile);
    }
    .home p {
        font-size: var(--body-font-size-mobile);
        line-height: var(--body-line-height-mobile);
    }
}
/* COMMON STYLES */
.company-phone--link::before {
    display: block;
    content: '';
    position: relative;
    --icon-size: 20px;
    width: var(--icon-size);
    height: var(--icon-size);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/uploads/phone-icon-white.svg');
}
.company-phone--link {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 4px;
}
.viewport-overflow-wrapper {
    overflow: hidden;
}
.wpcf7 p {
    margin: 0 !important;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.button-wrapper {
    display: flex;
    gap: 10px;
}
.section-transition {
    --transition-height: 160;
    position: absolute;
    bottom: calc(100vw * (0 / 1600));
    width: 100vw;
    height: calc(100vw * (var(--transition-height) / var(--current-screen-size)));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.01);
}
.mobile-only {
    display: none;
}
.mobile-xs-only {
    display: none;
}
@media (max-width: 991.98px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}
@media (max-width: 500px) {
    .mobile-only {
        display: none;
    }
    .mobile-xs-only {
        display: block;
    }
}
/* SLICK STYLES */
.slick-dots .slick-active button::before {
    border-color: dodgerblue;
    background-color: dodgerblue;
}
.slick-dots li.slick-active button::before {
    opacity: 1;
}
.slick-dots li button:hover::before {
    border-color: orange;
}
.slick-dots li button::before {
    content: '';
    border: 2px solid dodgerblue;
    background-color: transparent;
    border-radius: 100%;
    opacity: 1;
}
/* BUTTONS */
.btn.btn-tertiary span::after {
    background-image: url('/wp-content/uploads/btn-arrow-blue.svg');
}
.btn.btn-secondary span::after,
.btn.btn-primary span::after {
    background-image: url('/wp-content/uploads/btn-arrow.svg');
}
.btn span::after {
    display: inline-block;
    content: '';
    position: relative;
    top: 0;
    left: 0;
    width: 13px;
    height: 14px;
    background-size: 13px 14px;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--btn-fx-speed);
}
.btn span {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    justify-content: center;
}
.btn.btn-tertiary {
    border-radius: 2px;
    color: var(--color-primary-blue);
    border: 3px solid var(--color-primary-blue);
    background: var(--color-primary-white);
}
.btn.btn-secondary {
    color: white;
    background-color: var(--color-primary-red);
}
.btn.btn-primary {
    color: white;
    background: var(--color-primary-blue);
}
.btn {
    position: relative;
    
    display: inline-block;
    max-width: 100%;
    
    
    font-family: var(--home-body-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    

    border-radius: 2px;
    border-style: solid;
    border-color: transparent;
    border-width: 0;
    
    
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    
    --btn-fx-speed: 0.235s;
    transition: var(--btn-fx-speed);
}
.postscript-contact .wpcf7-submit,
.main-contact-form .wpcf7-submit,
.page-section .btn,
.header .btn,
.footer .btn,
.home .btn {
    min-width: 260px;
    max-width: 100%;
}
@media (min-width: 992px) {
    .btn:hover.btn-tertiary span::after {
        background-image: url('/wp-content/uploads/btn-arrow-black.svg');
    }
    .btn:hover span::after {
        transform: translateX(5px);
    }
    
    .btn:hover.btn-tertiary {
        color: black;
        border-color: black;
    }
    .btn:hover.btn-secondary {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Color-Brand-Color-1, #D30000);
    }
    .btn:hover.btn-primary {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Color-Brand-Color-2, #0156A7);
    }
}
/* DEFAULT PAGE STYLES */
.page-section .section-transition {
    background-size: cover;
}
.page-section .section-subheader.thin {
    display: block;
    font-family: var(--home-heading-font);
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 16px;
}
.page-section .section-header-wrapper {
    margin-bottom: 30px;
}
.page-section.dark {
    color: white;
    background-color: var(--color-primary-blue);
}




/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* PAGE SECTIONS ALL SCREENS */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
.page-section--hero .hero-service-tag::after {
    position: relative;
    content: '';
    width: 2px;
    height: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    margin: 0 30px;
    background-color: var(--color-primary-blue);
}
.page-section--hero .hero-service-tag {
    position: relative;
    display: flex;
    align-items: center;
}
.page-section--hero .hero-service-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    font-weight: 700;
    border-radius: 2px;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-primary-blue);    
    font-family: var(--home-heading-font);
    background: rgba(91, 93, 94, 0.10);
}
.page-section--hero .hero-header-wrapper {
    color: var(--color-primary-blue);
}
.page-section--hero .section-transition {
    --transition-height: 170;
    bottom: 0;
    background-image: url('/wp-content/uploads/transition-blue-white.png');
}
.page-section--hero .hero-subheader::after {
    right: calc(-145px - 20px);
}
.page-section--hero .hero-subheader::before {
    left: calc(-148px - 20px);
}
.page-section--hero .hero-subheader::after,
.page-section--hero .hero-subheader::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 145px;
    height: 5px;
    opacity: 0.4;
    background: #989B9C;
}
@media only screen and (max-width: 991.98px) {
	.page-section--hero .hero-subheader::after {
		right: calc(-50px - 20px);
	}
	.page-section--hero .hero-subheader::before {
		left: calc(-53px - 20px);
	}
	.page-section--hero .hero-subheader::after,
	.page-section--hero .hero-subheader::before {
		width: 53px;
		height: 3px;
	}
}
.page-section--hero .hero-subheader {
    position: relative;
    line-height: 80%;
    font-family: 'Poppins';
}
.page-section--hero::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 940px;
    height: 100%;
    opacity: 0.9;
    filter: blur(4.699999809265137px);
    background: linear-gradient(0deg, rgba(244, 244, 244, 0.00) 1.37%, var(--color-primary-white) 26.84%);
    z-index: -1;
}
.page-section--hero {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 147px;
    padding-bottom: 262px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/uploads/hero-bg-desktop.png');
    z-index: 1;
}


.page-section--one .half-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--color-primary-blue);
}


.page-section--two .section-transition {
    --transition-height: 85;
    bottom: 0;
    background-image: url('/wp-content/uploads/transition-solid-blue.png');
}
.page-section--two {
    position: relative;
    padding-bottom: calc(100vw * ((85 + 116) / 1600));
}


.page-section--three {
    background-image: url('/wp-content/uploads/section-three-bg-desktop.png');
}


.page-section--four .check-list-items {
    font-weight: 700;
}
.page-section--four .section-header-wrapper {
    color: var(--color-primary-blue);
}

.page-section--four .section-transition--bottom {
    --transition-height: 73;
    transform: scale(1.05);
    background-image: url('/wp-content/uploads/blue-lightblue-transition.png');
}
.page-section--four .section-transition--top {
    --transition-height: 85;
    top: 0;
    transform: scale(-1.05);
    background-image: url('/wp-content/uploads/transition-solid-blue.png');
}
.page-section--four {
    position: relative;
    padding-top: calc(100vw * ((85 + 116) / 1600));
    padding-bottom: calc(100vw * ((73 + 158) / 1600));
    background-size: 100% 100%;
    background-position: center;
    background-image: url('/wp-content/uploads/section-four-bg-desktop.png');
}


.page-section--five .image-wrapper img:last-child {
    width: 176px;
    height: 130px;
}
.page-section--five .image-wrapper img:first-child {
    width: 101px;
    height: 138px;
}
.page-section--five .image-wrapper {
    display: flex;
    gap: 40px;
}
.page-section--five .attribution-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.page-section--five h4 {
    font-weight: 400;
}
.page-section--five {
    background-size: 100% 100%;
    background-position: center;
    background-image: url('/wp-content/uploads/section-five-bg-desktop.png');
}


.page-section--testimonials .section-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D9D9D9;
    width: 100%;
    font-family: var(--home-heading-font);
    font-weight: 700;
}
.page-section--testimonials .section-transition--top {
    --transition-height: 73;
    top: 0;
    transform: scale(-1.05);
    background-image: url('/wp-content/uploads/blue-lightblue-transition.png');
}
.page-section--testimonials {
    position: relative;
    padding-top: calc(100vw * ((73 + 116) / 1600));
    padding-bottom: 107px;
    background-size: 100% 100%;
    background-position: center;
    background-image: url('/wp-content/uploads/reviews-section-bg-desktop.png');
}


.page-section--why-us .section-decoration {
    position: absolute;
    width: 1582px;
    height: 348px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
}
.page-section--why-us .check-list-item::before {
    top: 4px;
}
.page-section--why-us .check-list-item {
    color: black;
    align-items: flex-start;
}
.page-section--why-us .check-list-items {
    margin: 20px 0 35px;
    gap: 20px;
}
.page-section--why-us h5 {
    color: var(--color-primary-blue);
    text-transform: capitalize;
}
.page-section--why-us .section-content-wrapper img {
    margin: 31px 0 36px;
}
.page-section--why-us .section-header {
    color: var(--color-primary-blue);
}
.page-section--why-us .section-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-section--why-us .row-wrapper {
    position: relative;
    z-index: 1;
    margin: auto;
    border-radius: 2px;
    border: 3px solid white;
    background-color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(5.5px);
}
.page-section--why-us {
    position: relative;
    padding-bottom: 100px;
    background-image: linear-gradient(to bottom, #F4F4F4 0%, var(--color-primary-blue) 100%);
}




/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* FOOTER, COPYRIGHT, POSTSCRIPT ALL SCREENS */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
.postscript-contact .postscript-header img {
    z-index: 2;
}
.postscript-contact a {
    color: white;
    text-decoration: underline;
}
.postscript-contact .section-transition {
    background-image: url('/wp-content/uploads/transition-white-lightblue.png');
}
.postscript-contact {
    position: relative;
    padding-bottom: calc(100vw * ((169 + 103) / 1600));
    background-size: 100% 100%;
    background-image: url('/wp-content/uploads/postscript-bg-desktop.png');
}


.footer .vertical-divider {
    width: 1px;
    height: 176px;
    opacity: 0.5;
    background: var(--color-primary-blue);
}
.footer .top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.footer .bottom-row .footer-col:last-child {
    max-width: 200px;
}
.footer .bottom-row .footer-col {
    max-width: 252px;
}
.footer .bottom-row {
    display: flex;
    justify-content: space-between;
}

.footer .company-hours .weekdays::after {
    display: block;
    content: '';
    position: relative;
    width: 2px;
    height: 20px;
    margin: 0 16px;
    top: 1px;
    background-color: black;
}
.footer .company-hours .weekdays {
    position: relative;
    display: flex;
    align-items: center;
}
.footer .company-hours {
    display: flex;
    align-items: center;
}

.footer .company-location .company-location--phone {
    display: block;
    margin-top: 10px;
}
.footer .company-location .company-location--address {
    font-weight: 700;
    text-decoration: underline;
}
.footer .company-location {
    font-size: 18px;
    line-height: 28px;
}

.footer .button-wrapper {
    margin-bottom: 10px;
}
.footer .quick-links {
    display: grid;
    gap: 10px;
    text-decoration: underline;
    font-weight: 700;
}
.footer h5 {
    text-transform: capitalize;
    margin-bottom: 16px;
}
.footer .btn.btn-primary span {
    color: white;
}
.footer .social-icons__icon a {
    color: var(--color-primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
.footer .social-icons {
    gap: 0px;
}
.footer .company-logo img {
    width: 298px;
    height: 96px;
    margin-bottom: 20px;
}
.footer .company-logo-wrapper {
    display: flex;
    justify-content: center;
}
.footer .container::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary-blue);
    opacity: 0.5;
}
.footer .container {
    padding-bottom: 70px;
    position: relative;
}
.copyright,
.footer {
    background-color: var(--color-primary-white);
}
.footer {
    padding-top: 40px;
}


/* COPYRIGHT */
.copyright .privacy-policy::after,
.copyright .all-rights::after,
.copyright .all-rights::before {
    display: inline-block;
    content: '';
    position: relative;
    top: 0;
    left: 0;
    margin: 0 10px;
    width: 1px;
    height: 100%;
    background-color: black;
}
.copyright .privacy-policy,
.copyright .all-rights {
    position: relative;
    display: flex;
    align-items: center;
}
.copyright--bottom,
.copyright--top {
    display: flex;
    justify-content: center;
}
.copyright {
    font-size: 14px;
}
@media (max-width: 991.98px) {
    .copyright .company-name::after {
        display: inline-block;
        content: '';
        position: relative;
        top: 0;
        left: 0;
        margin: 0 10px;
        width: 1px;
        height: 100%;
        background-color: black;
    }
    .copyright .company-name {
        position: relative;
        display: flex;
        align-items: center;
    }
    .copyright .privacy-policy::after,
    .copyright .all-rights::before {
        display: none;
    }
    .copyright--middle {
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .copyright-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .copyright--middle {
        justify-content: flex-start;
    }
}




/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* WIDGETS/OTHER ALL SCREENS */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
.check-list-item::before {
    display: inline-flex;
    content: '';
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/wp-content/uploads/check-icon.svg');
}
.check-list-item {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--color-primary-blue);
}
.check-list-items {
    display: grid;
    gap: 10px;
}


.cta-subheader {
    color: black;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
h6.cta-header {
    text-transform: capitalize;
}
.cta-header {
    color: black;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}
.cta {
    --fx-speed: 0.25s ease-out;
    transition: var(--fx-speed);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 228px;
    padding: 18px 12.368px 12.368px 12.368px;
    border-radius: 21.826px;
    border: 3px solid white;
    background: radial-gradient(71.79% 50% at 50% 50%, white 40.87%, #D4D4D4 100%);
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.1);
}
.cta-item {
    display: flex;
    height: 258px;
}
.ctas {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}
@media (min-width: 992px) {
    .cta-item:hover .cta {
        border-color: var(--color-primary-blue);
        transform: translateY(-10px);
    }
}


.home #postscript-home {
    display: block;
}
.home .postscript-contact {
    display: none;
}

.postscript-contact .btn {
    margin-left: auto;
    margin-right: auto;
}




/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* CHARGE STYLES ALL SCREENS */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
.gfield_label.gform-field-label.gfield_label_before_complex {
    display: none !important;
}
.gform_wrapper.gravity-theme .field_description_below .gfield_consent_description, .gform_wrapper.gravity-theme .gfield_consent_description {
    border: none !important;
    margin-top: 12.8px;
    overflow: visible !important;
    padding: 0px;
    color: var(--color-primary-white);
    font-size: 14px;
    line-height: 16px;
    margin-left: 25px;
}
.postscript-contact .ginput_container_consent input {
    position: relative;
    width: 14px;
    height: 14px;
    top: 5px;
}
.gfield_consent_description,
.postscript-contact .ginput_container_consent {
    display: flex;
    color: white;
    font-size: 16px;
    gap: 10px;
    max-width: 725px;
}
.gfield--type-consent {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.accordion-body p:last-child {
    margin-bottom: 0px;
}
.accordion-item h2 {
    margin-bottom: 0px;
}

.air-duct-cleaning-dishman-wa .conversion-content-four.city_page--content-four table {
    color: white;
}
blockquote > p > strong {
    font-size: 1.3rem;
    line-height: 1.5rem;
}
.page-template-page-conversion .conversion-content-four .content-area .accordion-body {
    color: black;
}




/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* SCREEN SPECIFIC STYLES */
/* ====================== *//* ====================== */
/* ====================== *//* ====================== */
/* DESKTOP XL */
@media (min-width: 1600px) {
    .page-section--one .half-banner.top::after {
        width: 526px;
        height: 230px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center 28px;
    }
}
@media (min-width: 1400px) {
    .page-section--one .image-wrapper img {
        min-width: 547px;
        height: 410px;
    }
}
@media (min-width: 992px) and (max-width: 1400px) {
    .page-section--one .image-wrapper img {
        width: 100%;
        height: 410px;
    }
}
@media (min-width: 992px) and (max-width: 1600px) /* DESKTOP NO MOBILE */ {
    .page-section--one .half-banner.bottom {
        width: max-content;
    }
    .page-section--one .half-banner.top::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(100vw * (500 / 1600));
        height: calc(100vw * (200 / 1600));
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center calc(100vw * (23 / 1600));
        background-image: url('/wp-content/uploads/trusted-since-2001.svg');
    }
	.page-section--why-us .section-decoration {
        width: calc(100vw * (1582 / 1600));
        height: calc(100vw * (348 / 1600));
    }
}


/* DESKTOP ONLY */
@media (min-width: 992px) /* HEADER */ {
    .header-col--center .header-box .phone-location-tag--phonenumber a {
        color: var(--color-primary-red);
    }
    .header-col--center .header-box .phone-location-tag--location svg {
        position: absolute;
        left: -26px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header-col--center .header-box .phone-location-tag--location {
        position: relative;
    }
    .header-col--center .header-box .phone-location-tag--phonenumber {
        text-decoration: underline;
        align-self: end;
    }
    .header-col--center .header-box .phone-location-tag-item {
        display: flex;
        flex-direction: column;
    }
    .header-col--center .header-box .phone-location-tags {
        display: flex;
        color: var(--color-primary-red);
        text-transform: uppercase;
        font-family: var(--home-heading-font);
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
        justify-content: space-between;
        max-width: 310px;
        margin-top: 10px;
    }
    .header-col--center {
        color: var(--color-primary-red);
    }
    .header-one {
        padding-top: 22px;
        padding-bottom: 10px;
    }
    .header-wrapper {
        background-color: var(--color-primary-white);
    }
    .nav-bar {
        max-width: 860px;
        margin: auto;
    }

    .header-overbar-wrapper .col:last-child::after {
        display: block;
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        width: calc(100vw - (100vw * (800 / 1600)));
        height: 38px;
        background-color: var(--color-primary-red);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 3% 100%);
        z-index: -1;
    }
    .header-overbar-wrapper .col:last-child {
        position: relative;
        z-index: 9;
    }
    .page-section--why-us .section-decoration {
        z-index: 1;
    }
    .header-overbar-wrapper .header-overbar--left a {
        color: white;
    }
    .header-overbar-wrapper .header-overbar--left strong {
        text-decoration: underline;
    }
    .header-overbar-wrapper .header-overbar--right,
    .header-overbar-wrapper .header-overbar--left {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .header-overbar-wrapper {
        font-size: 16px;
        padding: 5px 0;
        color: white;
        background-color: var(--color-primary-blue);
    }
}
@media (min-width: 992px) /* SECTION HERO */ {    
    .page-section--hero .section-transition::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary-blue);
    }
    .page-section--hero .section-transition {
        --transition-height: 170;
        bottom: 0;
        background-image: url('/wp-content/uploads/transition-blue-white.png');
    }
    .page-section--hero .hero-service-tag:last-child::after {
        display: none;
    }
    .page-section--hero .hero-service-tags {
        max-width: 731px;
        padding: 10px 40px;
        font-size: 16px;
        letter-spacing: 1.28px;
        margin: 30px 0px 40px;
    }
    .page-section--hero .hero .hero-subheader {
        font-size: 60px;
        font-weight: 500;
        letter-spacing: 8.4px;
    }
    .page-section--hero .hero .hero-header {
        font-style: italic;
        font-size: 94px;
        font-weight: 800;
        letter-spacing: -3.76px;
    }
    .page-section--hero .hero .hero-header-wrapper {
        font-family: var(--home-heading-font);
        color: var(--color-primary-blue);
    }
    .page-section--hero .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 992px) /* SECTION ONE */ {
    .page-section--one .half-banner.bottom .banner-trapezoid {
        right: calc(-1px * var(--trapezoid-width) + 3px);
        transform: scaleX(-1);
    }
    .page-section--one .half-banner.top .banner-trapezoid {
        left: calc(-1px * var(--trapezoid-width) + 3px);
    }
    .page-section--one .half-banner .banner-trapezoid {
        --trapezoid-width: 115;
        display: block;
        position: absolute;
        width: calc(1px * var(--trapezoid-width));
        height: 100%;
        top: 0;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('/wp-content/uploads/halfbanner-decoration.png');;
    }
    .page-section--one .half-banner.bottom::before {
        right: 0;
        left: unset;
        background: linear-gradient(90deg, rgba(244, 244, 244, 0.70) 0%, var(--color-primary-white) 100%);
    }
    .page-section--one .half-banner.top::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateX(calc(-100% - 30px));
        background-image: url('/wp-content/uploads/trusted-since-2001.svg');
    }
    .page-section--one .half-banner.top::before {
        left: 0;
        background: linear-gradient(90deg, var(--color-primary-white) 0%, rgba(244, 244, 244, 0.70) 100%);
    }
    .page-section--one .half-banner.top {
        margin: 80px 0;
        margin-left: auto;
        width: max-content;
    }
    .page-section--one .half-banner::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100%;
        z-index: -1;
    }
    .page-section--one .half-banner {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 50px 0 50px 30px;
        color: var(--color-primary-blue);
        gap: var(--Heading-Spacing, 35px);
        z-index: 1;
    }
    .page-section--one .image-wrapper {
        max-width: 547px;
        height: 410px;
    }
    .page-section--one h1.section-header {
        max-width: 500px;
        margin-bottom: 20px;
    }
    .page-section--one .section-header {
        text-transform: capitalize;
    }
    .page-section--one {
        position: relative;
        padding: 47px 0 90px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-image: url('/wp-content/uploads/section-one-bg-desktop.png');
    }
}
@media (min-width: 992px) /* SECTION TWO */ {
    .page-section--two .button-wrapper {
        margin-top: 30px;
    }
    .page-section--two .check-list-item {
        font-weight: 700;
    }
    .page-section--two .check-list-items {
        grid-template-columns: 1.2fr 1fr;
        margin: 40px 0;
    }
    .page-section--two .section-header {
        font-size: 42px;
        font-weight: 700;
        line-height:48px
    }
    .page-section--two .section-header-wrapper {
        color: var(--color-primary-blue);
        font-family: var(--home-heading-font);
    }
    .page-section--two svg {
        margin-top: 112px;
    }
    .page-section--two {
        padding-top: 150px;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('/wp-content/uploads/cta-section-bg-desktop.jpg');
    }
}
@media (min-width: 992px) /* SECTION THREE */ {
    .page-section--three .check-list-item {
        color: white;
        font-weight: 700;
    }
    .page-section--three .check-list-items {
        grid-template-columns: 1.2fr 1fr;
        margin: 40px 0;
    }
    .page-section--three {
        padding: 106px 0px;
        background-size: 100% 100%;
        background-image: url('/wp-content/uploads/section-three-bg-desktop.png');
    }
}
@media (min-width: 992px) /* SECTION FOUR */ {
    .page-section--four .check-list-items {
        font-weight: 700;
        grid-template-columns: 1.1fr 1fr;
        margin: 40px 0;
    }
    .page-section--four .section-header-wrapper {
        color: var(--color-primary-blue);
    }
    .page-section--four .bottom svg {
        opacity: 0;
    }
    .page-section--four .bottom {
        margin-top: 160px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('/wp-content/uploads/blue-lightblue-transition.png');
    }
    .page-section--four .top svg {
        transform: scale(-1);
        margin-bottom: 120px;

    }
    .page-section--four {
        background-size: 100% 100%;
        background-position: center;
        background-image: url('/wp-content/uploads/section-four-bg-desktop.png');
    }
}
@media (min-width: 992px) /* SECTION FIVE */ {
    .page-section--five .attribution-items {
        display: flex;
        gap: 40px;
        margin-top: 30px;
    }
    .page-section--five h4 {
        font-size: 26px;
        line-height: 36px;
    }
    .page-section--five {
        padding: 80px 0;
    }
}
@media (min-width: 992px) /* SECTION TESTIMONIALS */ {
    .page-section--testimonials .section-content-wrapper {
        height: 732px;
        font-size: 48px;
        line-height: 52px;
    }
    .page-section--testimonials .top svg {
        opacity: 0;
    }
    .page-section--testimonials {
        padding-bottom: 107px;
        background-size: 100% 100%;
        background-position: center;
        background-image: url('/wp-content/uploads/reviews-section-bg-desktop.png');
    }
}
@media (min-width: 992px) /* SECTION WHY US */ {
    .page-section--why-us .check-list-item::before {
        top: 4px;
    }
    .page-section--why-us .check-list-item {
        align-items: flex-start;
    }
    .page-section--why-us .check-list-items {
        margin: 20px 0 35px;
        gap: 20px;
    }
    .page-section--why-us h5 {
        color: var(--color-primary-blue);
        text-transform: capitalize;
    }
    .page-section--why-us .section-header {
        text-align: center;
    }
    .page-section--why-us .row-wrapper {
        padding: 40px 80px;
        z-index: 2;
    }
    .page-section--why-us {
        padding-bottom: 100px;
    }
}
@media (min-width: 992px) /* SECTION POSTSCRIPT */ {
    .postscript-contact .postscript-header img {
        max-width: 481px;
        height: 153px;
    }
    .postscript-contact .section-transition {
        --transition-height: 160;
        background-image: url('/wp-content/uploads/transition-white-lightblue.png');
    }
    .postscript-contact .postscript-header {
        margin-bottom: 73px;
    }
    .postscript-contact {
        padding-top: 100px;
    }
}
@media (min-width: 992px) /* SECTION FOOTER */ {
    .footer .vertical-divider {
        width: 1px;
        height: 176px;
        opacity: 0.5;
        background: var(--color-primary-blue);
    }
    .footer .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 70px;
    }
    .footer .bottom-row .footer-col:last-child {
        max-width: 200px;
    }
    .footer .bottom-row .footer-col {
        max-width: 252px;
    }
    .footer .bottom-row {
        display: flex;
        justify-content: space-between;
    }

    .footer .company-hours .weekdays::after {
        display: block;
        content: '';
        position: relative;
        width: 2px;
        height: 20px;
        margin: 0 16px;
        top: 1px;
        background-color: black;
    }
    .footer .company-hours .weekdays {
        position: relative;
        display: flex;
        align-items: center;
    }
    .footer .company-hours {
        display: flex;
        align-items: center;
    }

    .footer .company-location .company-location--phone {
        display: block;
        margin-top: 10px;
    }
    .footer .company-location .company-location--address {
        font-weight: 700;
        text-decoration: underline;
    }
    .footer .company-location {
        font-size: 18px;
        line-height: 28px;
    }

    .footer .button-wrapper {
        margin-bottom: 10px;
    }
    .footer .quick-links {
        display: grid;
        gap: 10px;
        text-decoration: underline;
        font-weight: 700;
    }
    .footer h5 {
        text-transform: capitalize;
        margin-bottom: 16px;
    }
    .footer .btn.btn-primary span {
        color: white;
    }
    .footer .social-icons__icon a {
        color: var(--color-primary-blue);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
    }
    .footer .social-icons {
        gap: 0px;
    }
    .footer .company-logo img {
        width: 298px;
        height: 96px;
        margin-bottom: 20px;
    }
    .footer .container::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-primary-blue);
        opacity: 0.5;
    }
    .footer .container {
        padding-bottom: 70px;
        position: relative;
    }
    
    .social-icons__icon:hover a {
        color: var(--color-primary-red);
    }
    .social-icons__icon {
        font-size: 24px;
    }
}
@media (min-width: 992px) /* SECTION COPY */ {
    .copyright {
        padding-top: 30px;
    }
}


/* MOBILE ONLY */
@media (max-width: 991.98px) /* HEADER */ {
    .mobile-header--top span::after {
        width: 11px;
        height: 10px;
        background-image: url('/wp-content/uploads/arrow-down-white.svg');
    }
    .mobile-header--top span::before {
        width: 20px;
        height: 20px;
        background-image: url('/wp-content/uploads/phone-icon-white.svg');
    }
    .mobile-header--top span::after,
    .mobile-header--top span::before {
        display: inline-block;
        content: '';
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .mobile-header--top span {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .mobile-header--top {
        padding: 10px 0;
        color: white;
        font-size: 16px;
        font-weight: 700;
        background-color: var(--color-primary-red);
    }
    .nav-bar .nav {
        top: 144px;
    }
    .mobile-header__logo img {
        max-height: 62px;
    }
    .main-navigation > li.has-dropdown:hover::after {
        color: white;
    }
    .main-navigation > li.has-dropdown.active-child-menu::after {
        max-height: 55px;
    }
}
@media (max-width: 991.98px) /* SECTION HERO */ {
    .page-section--hero .hero-service-tag:nth-child(4)::after,
    .page-section--hero .hero-service-tag:nth-child(2)::after {
        display: none;
    }
    .page-section--hero .hero-service-tag::after {
        margin: 0px 10px;
    }
    .page-section--hero .hero-service-tags {
        padding: 10px;
        font-size: 15px;
        max-width: 280px;
        margin: 18px 0 40px;
    }
    .page-section--hero .hero-subheader {
        font-size: 26px;
        font-weight: 500;
        letter-spacing: 3.64px;
    }
    .page-section--hero .hero-header {
        font-size: 34px;
        font-style: italic;
        font-weight: 800;
        line-height: 40px;
        letter-spacing: -1.36px;
        text-transform: uppercase;
    }
    .page-section--hero .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-section--hero .section-transition {
        --transition-height: 34;
        bottom: -1px;
    }
    .page-section--hero::before {
        width: 100vw;
        background: linear-gradient(0deg, rgba(244, 244, 244, 0.00) 1.37%, var(--color-primary-white) 70.84%);
    }
    .page-section--hero {
        padding-top: 48px;
        padding-bottom: 145px;
        background-image: url('/wp-content/uploads/hero-bg-tablet.png');
    }
}
@media (max-width: 991.98px) /* SECTION ONE */ {
    .page-section--one .image-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .page-section--one .check-list-items {
        margin-top: 30px;
    }
    .page-section--one .half-banner.top {
        margin: 40px 0;
    }
    .page-section--one .half-banner h5.section-header {
        text-transform: capitalize;
    }
    .page-section--one .half-banner {
        padding: 20px;
        background: linear-gradient(to right, var(--Color-Brand-Color-3, #F4F4F4) 0%, rgba(244, 244, 244, 0.70) 100%);
    }
    .page-section--one svg {
        display: none;
    }
    .page-section--one .section-subheader {
        margin-top: 20px;
    }
    .page-section--one .section-subheader,
    .page-section--one .section-header {
        text-transform: capitalize;
    }
    .page-section--one {
        padding: 50px 0 80px;
        background-size: 100% 100%;
        background-position: center;
        background-image: url('/wp-content/uploads/Section-4-mobile-background.jpg');
    }
}
@media (max-width: 991.98px) /* SECTION TWO */ {
    .page-section--two .button-wrapper {
        margin: 30px 0;
    }
    .page-section--two .check-list-item {
        font-size: 15px;
    }
    .page-section--two .check-list-items {
        margin: 30px 0;
        font-weight: 700;
    }
    .page-section--two .section-subheader {
        color: var(--color-primary-blue);
    }
    .page-section--two .section-header {
        color: var(--color-primary-blue);
    }
    .page-section--two .col-lg-5.justify-content-end {
        justify-content: center !important;
    }
    .page-section--two .section-transition {
        --transition-height: 20;
    }
    .page-section--two {
        padding-top: 73px;
        padding-bottom: calc(100vw * ((85 + 30) / 320));
        background-position: center;
        background-size: 100%;
        background-image: url('/wp-content/uploads/Section-2-mobile-background.jpg');
    }
}
@media (max-width: 991.98px) /* SECTION THREE */ {
    .page-section--three .image-wrapper {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
    .page-section--three .check-list-item {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    .page-section--three .check-list-items {
        margin: 30px 0;
    }
    .page-section--three {
        padding: 70px 0;
    }
}
@media (max-width: 991.98px) /* SECTION FOUR */ {
    .page-section--four .image-wrapper {
        margin-top: 30px;
    }
    .page-section--four .check-list-item {
        font-size: 15px;
    }
    .page-section--four .check-list-items {
        margin: 30px 0;
    }
    .page-section--four .col-lg-5.justify-content-end {
        display: flex;
        justify-content: center !important;
    }
    .page-section--four .section-transition--bottom {
        display: none;
    }
    .page-section--four .section-transition {
        --transition-height: 20;
    }
    .page-section--four {
        padding-top: calc(100vw * ((85 + 30) / 576));
        padding-bottom: 80px;
    }
}
@media (max-width: 991.98px) /* SECTION FIVE */ {
    .page-section--five .image-wrapper img {
        height: 95px;
    }
    .page-section--five .image-wrapper {
        justify-content: center;
    }
    .page-section--five .attribution-item h4 {
        text-transform: capitalize;
    }
    .page-section--five .attribution-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 30px 0 40px;
        gap: 10px;
    }
    .page-section--five .section-header {
        text-align: center;
        max-width: 250px;
    }
    .page-section--five .col-lg-8 {
        justify-content: center;
    }
    .page-section--five {
        padding: 60px 0;
    }
}
@media (max-width: 991.98px) /* SECTION TESTIMONIALS */ {
    .page-section--testimonials .section-content-wrapper{
        text-align: center;
        height: 732px;
        font-size: 30px;
        line-height: 100%;
    }
    .page-section--testimonials .section-transition {
        display: none;
    }
    .page-section--testimonials {
        padding-top: 80px;
    }
}
@media (max-width: 991.98px) /* SECTION WHY US */ {
    .page-section--why-us .section-decoration {
        display: none;
    }
    .page-section--why-us .row-wrapper {
        padding: 50px 0px 40px;
    }
    .page-section--why-us .section-header {
        margin-right: auto;
    }
    .page-section--why-us .col {
        flex: 100%;
    }
}
@media (max-width: 991.98px) /* SECTION POSTSCRIPT */ {
    .postscript-contact .gform_button {
        margin: 38px auto 0px;
    }
    .postscript-contact .gform_wrapper.gravity-theme .gform_fields {
        --footer-form-field-margin: 16px;
    }
    .postscript-contact .section-transition {
        --transition-height: 32;
		bottom: -3px;
    }
    .postscript-contact .postscript-header {
        margin-bottom: 50px;
    }
    .postscript-contact {
        padding-bottom: calc(100vw * ((32 + 70) / 320));
    }
}
@media (max-width: 991.98px) /* SECTION FOOTER */ {
    .footer .social-icons {
        justify-content: center;
    }
    .footer .bottom-row h5 {
        margin-bottom: 0px;
    }
    .footer .bottom-row {
        gap: 24px;
    }
    .footer .top-row {
        margin-bottom: 0px;
    }
    .footer .top-row .footer-col--left {
        order: 1;
    }
    .footer .top-row .vertical-divider.two {
        order: 2;
    }
    .footer .top-row .footer-col--right {
        order: 3;
    }
    .footer .top-row .vertical-divider.one {
        order: 4;
    }
    .footer .top-row .footer-col--center {
        order: 5;
    }
    .footer .top-row .vertical-divider.three {
        order: 6;
    }
    .footer .vertical-divider {
        height: 1px;
        width: 100%;
        margin: 40px 0px;
    }
    .footer .bottom-row,
    .footer .top-row {
        flex-direction: column;
    }
    .footer .company-logo {
        display: flex;
        justify-content: center;
    }
    .footer .container {
        max-width: 260px;
    }
    .footer .company-hours .weekdays::after {
        display: none;
    }
    .footer .company-hours {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 991.98px) /* WIDGETS/MISC */ {
    .page-section .section-subheader.thin {
        font-size: 24px;
    }
    
    
    .check-list-item strong {
        margin-bottom: 10px;
    }
    .check-list-item::before {
        position: absolute;
        top: 2px;
        left: calc(-1px * var(--icon-offset) - 10px);
    }
    .check-list-item {
        --icon-offset: 20;
        margin-left: calc(1px * var(--icon-offset) + 10px);
        flex-direction: column;
        align-items: flex-start;
    }
    
    
    .cta::after {
        display: inline-block;
        content: '';
        position: relative;
        top: 0;
        right: 0;
        width: 28px;
        height: 100%;
        margin-left: auto;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('/wp-content/uploads/cta-arrow-mobile.png');
    }
    .cta-subheader {
        margin-bottom: 0px;
        text-align: left !important;
    }
    .cta-header {
        text-align: left !important;
    }
    .cta-header-wrapper {
        margin-left: 20px;
    }
    .cta {
        flex-direction: row;
        justify-content: flex-start;
        position: relative;
        padding: 0px;
        padding-left: 10px;
        min-width: 271px;
        width: 100%;
        height: 68px;
        border-radius: 2px;
        border-width: 2px;
    }
    .cta-item {
        width: 100%;
        height: 100%;
    }
    .ctas {
        flex-direction: column;
        gap: 16px;
        max-width: 274px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 74px;
    }
}
@media (max-width: 991.98px) /* CHARGE STYLES */ {
    .accordion .accordion-header .accordion-button {
        font-size: 17px;
        line-height: 24px;
    }
}
@media (min-width: 576px) and (max-width: 991.98px) /* HERO TWO FIVE */ {
    .page-section--hero::before {
        width: 492px;
        height: 322px;
        top: 15px;
        transform: translatex(-50%);
        opacity: 0.9;
        background: linear-gradient(0deg, rgba(244, 244, 244, 0.00) -7.63%, var(--Color-Brand-Color-3, #F4F4F4) 46.16%);
        filter: blur(2.460831880569458px);
    }
    .page-section--two {
        padding-bottom: calc(100vw * ((85 + 30) / 576));
    }
    .page-section--five .section-header {
        margin-left: auto;
        margin-right: auto;
    }
    .page-section--five .attribution-items {
        flex-direction: row;
    }
}


/* MOBILE XS ONLY */
@media (max-width: 576px) /* SECTION FOUR */ {
    .page-section--four {
        padding-top: calc(100vw * ((30 + 30) / 320));
    }
}


/* MIDSIZE */
@media (min-width: 992px) and (max-width: 1199px) /* HEADER */ {
    .header .row {
        justify-content: space-between;
    }
    .header .col-lg-3,
    .header .col {
        width: 100%;
        max-width: 290px;
    }
    .header h5 {
        font-size: 20px;
    }
    .header-col--center .header-box h5,
    .header-col--center .header-box .phone-location-tags {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) /* PAGE SECTIONS / WIDGETS */ {
    .page-section--one .half-banner .check-list-item {
        font-size: 16px;
    }
    .half-banner.bottom .banner-trapezoid {
        top: -1px;
    }
    .page-section--one .half-banner.top h5 {
        max-width: 600px;
    }
    
    .page-section--five .section-header h2 {
        font-size: 30px;
    }
    
    .page-section--why-us h5 {
        font-size: 18px;
    }
    
    .ctas {
        max-width: 80%;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
        gap: 20px;
    }
    
    .check-list-item {
        font-size: 14px;
    }
}


/* MOBILE - TABLET */
@media (min-width: 576px) and (max-width: 991.98px) {
    .page-section--hero::before {
        width: 492px;
        height: 322px;
        top: 15px;
        transform: translatex(-50%);
        opacity: 0.9;
        background: linear-gradient(0deg, rgba(244, 244, 244, 0.00) -7.63%, var(--Color-Brand-Color-3, #F4F4F4) 46.16%);
        filter: blur(2.460831880569458px);
    }
    .page-section--two {
        padding-bottom: calc(100vw * ((85 + 30) / 576));
    }
    .page-section--five .section-header {
        margin-left: auto;
        margin-right: auto;
    }
    .page-section--five .attribution-items {
        flex-direction: row;
    }
}