/*
 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
------------------------------------------------------- */

.viewport-overflow-wrapper {
    overflow-x: hidden;
}
.top-section-wrapper,
.services-section--wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top-section-wrapper {
    background-image: url("/wp-content/uploads/top-gradient.jpg");
}
.services-section--wrapper {
    background-image: url("/wp-content/uploads/top-gradient.jpg");
}
.bottom-section-wrapper {
    background-image: url("/wp-content/uploads/top-gradient.jpg");
}

.home h1,
.home .h1,
.home h2,
.home .h2,
.home h3,
.home .h3,
.home h4,
.home .h4,
.home h5,
.home .h5,
.home h6,
.home .h6 {
    margin-bottom: 10px !important;
}

.sub-h {
    color: #111e2e;
    font-family: "Titillium Web";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.h-divider {
    width: 163px;
    height: 10px;
    background-color: #098ccc;
    border-radius: 100px;
    margin: 36px auto;
}

.accent-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* Desktop Styles */
.accent-image--1 {
  border-radius: 6px;
  max-width: 485px;
  max-height: 357px;
  margin-left: 0;
  margin-right: auto;
}

.accent-image--2 {
  border-radius: 3px;
  max-width: 409px;
  max-height: 471px;
  margin-right: auto;
}

.accent-image--3 {
  border-radius: 3px;
  max-width: 409px;
  max-height: 448px;
  margin-left: auto;
}

/* Tablet and below */
@media (max-width: 991px) {
  .accent-image {
    border-radius: 6px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .accent-image--1 {
    min-width: 465px;
    min-height: 226px;
  }

  .accent-image--2 {
    min-width: 465px;
    min-height: 246px;
  }

  .accent-image--3 {
    min-width: 465px;
    min-height: 226px;
  }
}

/* Mobile XS */
@media (max-width: 575px) {
  .accent-image {
    margin-bottom: 30px;
    min-height: 246px;
  }

  .accent-image--1 {
    min-width: 280px;
  }

  .accent-image--2 {
    min-width: 300px;
  }

  .accent-image--3 {
    min-width: 280px;
  }
}


@media (max-width: 991px) {
    .top-section-wrapper,
    .services-section--wrapper {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .top-section-wrapper {
        background: linear-gradient(180deg, #fafafa 0%, #d7f2ff 100%);
    }

    .services-section--wrapper {
        background-image: url("/wp-content/uploads/top-gradient.jpg");
    }

    .bottom-section-wrapper {
        background-image: url("/wp-content/uploads/top-gradient.jpg");
    }

    .home h1,
    .home .h1,
    .home h2,
    .home .h2,
    .home h3,
    .home .h3,
    .home h4,
    .home .h4,
    .home h5,
    .home .h5,
    .home h6,
    .home .h6 {
        margin-bottom: 10px !important;
    }

    .sub-h {
        font-family: "Titillium Web", sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 6px;
        margin-top: -5px;
    }

    .h-divider {
        width: 163px;
        height: 10px;
        background-color: #098ccc;
        border-radius: 100px;
        margin: 36px auto;
    }
}
.btn,
.gform_button,
.coupon-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 261px;
	min-height: 54px;
	padding: 0 20px;
	border-radius: 50px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color: inherit;
	background-color: transparent;
	/* Default transparent, overridden by variants */
	overflow: hidden;
	border: none;
	cursor: pointer;
	z-index: 0;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

/* === Outer layer: border only now === */
.btn::before,
.gform_button::before,
.coupon-button::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50px;
	border: 2px solid currentColor;
	z-index: -1;
	transition: border-color 0.3s ease;
}

/* === Inner layer: white border and black fill animation === */
.btn::after,
.coupon-button::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 46px;
	background: linear-gradient(to right, black 0%, black 0%) no-repeat;
	background-size: 0% 100%;
	background-position: left;
	box-shadow: 0 0 0 3px white;
	/* white inner border */
	transition: background-size 0.4s ease;
	z-index: 1;
}

/* === Text layer === */
.btn,
.btn span,
.gform_button,
.coupon-button {
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
	color: inherit;
}

/* === Hover behavior === */
.btn:hover,
.coupon-button:hover {
    color: white; 
    border-color: black; 
}

.btn:hover::before,
.coupon-button:hover::before {
    border-color: black;
}

.btn:hover::after,
.coupon-button:hover::after {
    background-size: 100% 100%; 
    z-index: -1;
}



/* === Variants === */
/* Primary Button */
.btn-primary,
.coupon-button {
	color: #fafafa;
	background-color: #098ccc;

}
.btn-primary::before,
.coupon-button::before {
	border-color: #098ccc;
}

/* Secondary Button */
.btn-secondary {
	color: #111e2e;
	background-color: #fefefe;

}
.btn-secondary::before {
	padding: 2px;
	border-color: #fefefe;
}
.btn-secondary::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 46px;
	background: linear-gradient(to right, black 0%, black 0%) no-repeat;
	background-size: 0% 100%;
	background-position: left;
	box-shadow: 0 0 0 3px #111e2e;
	transition: background-size 0.4s ease;
	z-index: 1;
}

@media (min-width: 992px) {


	.btn-primary:hover {
		color: #fefefe;
		background-color: #098ccc;
		border-color: #111e2e;
	}

	.btn-secondary:hover {
		color: #fefefe;
		background-color: #fefefe;
		border-color: #111e2e;
	}

	.btn-secondary:hover::before {
		border-color: #111e2e;
	}

	.btn-secondary:hover::after {
		box-shadow: 0 0 0 4px #fefefe;
		z-index: -1;
	}
}

/* Tertiary Button */
.btn-tertiary {
	color: #111e2e;
	background-color: #d7f2ff;
	border: 2px solid #d7f2ff;
}
.btn-tertiary::before {
	border-color: #d7f2ff;
}
@media (max-width: 991px) {
    .button-wrapper {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        align-self: center;
    }
    .accent-image {
        box-shadow: none;
        margin: 0 auto 30px;
    }
}


/* --------------------------- */
/* TOP BAR------------------ */
/* --------------------------- */
.top-bar {
    padding-top: 3px;
    padding-bottom: 3px;
    height: 25px;
    background-color: #111e2e;
    position: relative;
    z-index: 1;
    color: #fff;
}

.top-bar .emergency-service {
    max-width: 1134px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: end;
    align-items: center;
}

/*-------------------------------------------------------------------------------------------------*/
/* HEADER --------------------------------------------------------------- */
/*-------------------------------------------------------------------------------------------------*/
@media (min-width: 992px) {
    .header-two {
        padding-top: 3px;
        padding-bottom: 7px;
        position: relative;
        z-index: 0;
    }

    /* Logo */
    .header-two__center a {
        position: relative;
        min-width: 238px;
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        z-index: 1;
    }
.header-logo img{
	max-width: 238px!important;
}
    .header-button-wrapper {
        margin-top: 9px;
    }

    .header-two__right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 6px !important;
    }

    .header-two__left .btn-secondary {
        margin-left: -6px;
    }

    .header-two__right .btn-primary {
        margin-right: -6px;
    }

    .location-wrapper {
        display: flex;
        flex-direction: row;
        column-gap: 10px;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .map-marker {
        width: 23.33px;
    }

    .location-wrapper .serving-text {
        display: flex;
        flex-direction: row;
        column-gap: 1em;
        font-family: "Russo One", sans-serif;
        text-transform: uppercase;
        color: #111e2e;
    }

    .header-phone--wrapper {
        display: flex;
        flex-direction: row;
        column-gap: 10px;
    }
    .header-phone {
        font-family: "Russo One", sans-serif;
        color: #111e2e;
        font-size: 24px;
        text-wrap: nowrap;
    }

    .header-two__right .header-button-wrapper {
        display: flex;
        align-items: flex-end !important;
    }

    /* --------------------------- */
    /* NAVIGATION MENU */
    /* --------------------------- */
    .main-navigation > li > a {
        padding: 0;
    }
    .nav-bar {
        padding-bottom: 0;
    }

    .main-navigation > li {
        margin-bottom: 0;
        height: 100%;
        height: 34px;
    }

    .main-navigation > li.has-dropdown::after {
        top: -2px;
    }
}

@media (max-width: 991px) {
    .main-navigation > li.has-dropdown::after {
        max-height: 55px !important;
    }
}

/*-------------------------------------------*/
/*-- [ HERO SECTION ] ------------*/
/*-------------------------------------------*/

.hero {
	background-image: url('/wp-content/uploads/hero-bg-mobile.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 2px 12px 4px rgba(0,0,0, 0.40);

	@media only screen and (min-width: 576px) {
		background-image: url('/wp-content/uploads/hero-bg-tablet.jpg');
	}

	@media only screen and (min-width: 992px) {
		background-image: url('/wp-content/uploads/hero-bg-desktop.jpg');
	}

	.hero-transition {
		background-image: url('/wp-content/uploads/hero-mountain-transition-mobile.png');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		bottom: 0;
		height: 93px;
		left: 0;
		position: absolute;
		width: 100%;

		@media only screen and (min-width: 576px) {
			background-image: url('/wp-content/uploads/hero-mountain-transition-tablet.png');
		}

		@media only screen and (min-width: 992px) {
			background-image: url('/wp-content/uploads/hero-mountain-transition-desktop.png');
			height: 321px;
		}
	}
}






/* --------------------- */
/* HERO CONTAINER */
/* --------------------- */
.hero .container {
	position: relative;
	z-index: 2;
	padding: 17px 0 66px;


	@media only screen and (min-width: 576px) {
		padding: 17px 0 77px;
	}

	@media only screen and (min-width: 992px) {
		padding: 31px 0 467px;
	}
}

.hero .hero-text {
	padding-top: 85px;

	@media only screen and (min-width: 992px) {
		padding-top: 0;
	}


}

.hero .hero-unit {
    position: absolute;
    bottom: -71px;
    left: 0;

    /* TABLET */
    @media only screen and (min-width: 576px) {
        bottom: -105px;
    }

    @media only screen and (min-width: 992px) {
        bottom: -62px;
    }

    img {
        max-width: 202px;

        @media only screen and (min-width: 576px) {
            max-width: 270px;
        }

        @media only screen and (min-width: 992px) {
            max-width: 100%;
        }
    }
}




/*-------------------------------------------*/
/*-- [ HVAC SERVICES SECTION ] ------------*/
/*-------------------------------------------*/
.homepage-section--section-1 {
	padding-top: 140px;
    padding-bottom: 120px;

}

.homepage-section--section-1 .section-content {
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}
.since-2011--content-wrapper {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    column-gap: 2em;
}

.since-2011--logo {
    width: 235px;
}

.since-2011--text-wrapper {
    max-width: 843px;
    width: 100%;
    text-align: left;
}

.homepage-section--section-1 .button-wrapper {
    margin-top: 35.5px;
}

/*-------------------------------------------*/
/*-- [ HVAC SERVICES SECTION (MOBILE) ] ------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-1 {
        padding-top: 136px;
        padding-bottom: 78px;
    }

    .homepage-section--section-1 .section-content {
        max-width: 486px;
        width: 100%;
        margin: 0 auto;
        text-align: left;
        line-height: 24px;
    }

    .since-2011--content-wrapper {
        margin-top: 81px;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: flex-start;
        max-width: 486px;
        width: 100%;
        row-gap: 20px;
    }

    .since-2011--logo {
        width: 235px;
        display: block;
        margin-left: 0;
    }

    .since-2011--text-wrapper {
        max-width: 843px;
        width: 100%;
        text-align: left;
    }

    .homepage-section--section-1 .button-wrapper {
        margin-top: 35.5px;
        display: flex;
        justify-content: start;
    }
}

@media (max-width: 575px) {
	.homepage-section--section-1 {
		padding-top: 104px;
	}
}
/*-------------------------------------------*/
/*-- [ SELECT THE BEST HVAC CONTRACTOR SECTION ] ----------*/
/*-------------------------------------------*/
.homepage-section--section-2 {
    padding-bottom: 120px;
}

.homepage-section--section-2 .accent-image {
    margin-bottom: 40px;
}



.homepage-section--section-2 .checklist--group-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px 30px;
    margin-bottom: 0;
}

.homepage-section--section-2 .checklist--group-wrapper .checklist--item {
    max-width: 304.5px;
    width: 100%;
    height: 66px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    column-gap: 20px;
    background: #111e2e;
    border-radius: 3px;
    padding: 5px 10px;
}

.homepage-section--section-2 .checklist--item .checklist-check {
    background-image: url("/wp-content/uploads/check.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 34px;
    height: 32px;
}

.homepage-section--section-2 .checklist--item .checklist-text {
    width: 230.5px;
    height: 56px;
    color: #fafafa;
}

/*-------------------------------------------*/
/*-- [ SELECT THE BEST HVAC CONTRACTOR SECTION {MOBILE) ] ----------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-2 {
        padding-top: 20px;
        padding-bottom: 120px;
    }

    .homepage-section--section-2 .accent-image {
        margin-bottom: 40px;
    }

    .homepage-section--section-2 .checklist--group-wrapper {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
        max-width: 485px;
    }
    .homepage-section--section-2 .checklist--group-wrapper .checklist--item {
        max-width: 485px !important;
        height: 66px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        align-self: center;
        column-gap: 20px;
        background: #111e2e;
        border-radius: 3px;
        padding: 0px 10px;
        margin-right: auto;
    }

    .checklist--item .checklist-check {
        background-image: url("/wp-content/uploads/check.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 34px;
        height: 32px;
    }

    .checklist--item .checklist-text {
        width: 100% !important;
        height: 24px;
        color: #fafafa;
        display: flex;
        align-content: center;
        align-items: center;
    }
.homepage-section--section-2 p {
	max-width: 440px;
	width: 100%;
}

}
/*-------------------------------------------*/
/*-- [ 24/7 EMERGENCY SERVICE SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-3 .emergency-service--wrapper {
    position: relative;
    z-index: 1;
    background: #fafafa !important;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 59px;
    padding: 40px !important;
    overflow: visible !important;
}
@media (min-width: 992px) {
    .homepage-section--section-3 .emergency-service--wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 9999px;
        height: 100%;
        background-color: #fafafa;
        z-index: 0;
    }
}

.homepage-section--section-3
    .emergency-service--wrapper
    .emergency-service--text-wrapper {
    max-width: 822px;
    width: 100%;
}

.emergency-service--wrapper .emergency-service--logo {
    width: 213px;
    height: 132px;
}
.homepage-section--section-3 .button-wrapper {
    margin-top: 20px;
}
.homepage-section--section-3 .emergency-service--wrapper {
    overflow: hidden;
    padding: 40px 0;
    z-index: 1;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .homepage-section--section-3 .emergency-service--wrapper {
        max-width: 960px;
        background-color: initial;
    }
}
@media only screen and (min-width: 1200px) {
    .homepage-section--section-3 .emergency-service--wrapper {
        max-width: 1140px;
    }
}

/*-------------------------------------------*/
/*-- [ 24/7 EMERGENCY SERVICE SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-3 {
        background: #fafafa;
    }

    .homepage-section--section-3 .emergency-service--wrapper {
        background-color: #fafafa;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
        row-gap: 33px;
        padding: 40px;
    }

    .emergency-service--wrapper .emergency-service--text-wrapper {
        max-width: 822px;
        width: 100%;
    }

    .homepage-section--section-3 .button-wrapper {
        margin-top: 20px;
    }
}
/*-------------------------------------------*/
/*-- [ MOUNTAINS SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-4 {
    padding-bottom: 396px;
    background-image: url("/wp-content/uploads/mountains.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}
/*-------------------------------------------*/
/*-- [ MOUNTAINS SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-4 {
        padding-bottom: 175px;
        background-image: url("/wp-content/uploads/mountains.png");
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: 100% auto;
    }
}
/*-------------------------------------------*/
/*-- [ ABOUT US SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-5 {
    padding-top: 92px;
    padding-bottom: 130px;
    background-image: url("/wp-content/uploads/action-background.jpg");
    background-position: center;
    background-size: 100% auto;
    box-shadow: 0px 10px 20px 0px rgba(16, 82, 124, 0.5);
    position: relative;
    z-index: 0;
}

.homepage-section--section-5 .text-block {
    padding: 40px;
    max-width: 745px;
    width: 100%;
    margin: 24px auto;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
}

.homepage-section--section-5 h2 {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* space between h2 and lines */
}

.homepage-section--section-5 h2::before,
.homepage-section--section-5 h2::after {
    content: "";
    display: block;
    width: 135px;
    height: 10px;
    background-color: #111e2e;
}
.homepage-section--section-5 p{
	margin-bottom: 0;
}
/*-------------------------------------------*/
/*-- [ ABOUT US SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-5 {
        padding-top: 52px;
        padding-bottom: 77px;
        background: #bbbbbc;
    }

    .homepage-section--section-5 h2 {
        font-size: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        row-gap: 10px;
        margin-bottom: 0 !important;
    }

    .homepage-section--section-5 h2::before,
    .homepage-section--section-5 h2::after {
        display: none;
    }

    .sub-h {
        font-family: "Titillium Web", sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 3px;
        color: #111e2e;
    }

    .homepage-section--section-5 .text-block {
        padding: 40px;
        max-width: 486px;
        width: 100%;
        margin: 24px auto;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 3px;
        line-height: 24px;
        text-align: left;
    }
}

.cards-section--wrapper {
    background: linear-gradient(0deg, #fff 0%, #d7f2ff 100%);
    padding-bottom: 4em;
}

/*-------------------------------------------*/
/*-- [ AIR CONDITIONING SERVICES SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-6 {
    padding-top: 4em;
    padding-bottom: 4em;
    position: relative;
    z-index: 1;
}

.homepage-section--section-6 .checklist--group-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.homepage-section--section-6 .checklist--group-wrapper .checklist--item {
    width: 304.5px;
    height: 66px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    column-gap: 20px;
    background: #111e2e;
    border-radius: 3px;
    padding: 5px 10px;
}

.homepage-section--section-6 .checklist--item .checklist-check {
    background-image: url("/wp-content/uploads/check.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 34px;
    height: 32px;
}

.homepage-section--section-6 .checklist--item .checklist-text {
    width: 230.5px;
    height: 56px;
    color: #fafafa;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
}
/*-------------------------------------------*/
/*-- [ AIR CONDITIONING SERVICES SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-6 {
        padding-top: 79px;
        padding-bottom: 75px;
        background: linear-gradient(
            180deg,
            #d7f2ff 0%,
            rgba(215, 230, 255, 0) 100%
        );
    }

    .homepage-section--section-6 .checklist--group-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: center;
        justify-content: start;
        align-items: center;
        gap: 20px 20px;
        margin-bottom: 25px;
    }

    .homepage-section--section-6 .checklist--group-wrapper .checklist--item {
        max-width: 485px;
        width: 100%;
        height: 66px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        background: #111e2e;
        border-radius: 3px;
        padding: 5px 10px;
    }

    .homepage-section--section-6 .checklist--item .checklist-check {
        background-image: url("/wp-content/uploads/check.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 34px;
        height: 32px;
    }

    .homepage-section--section-6 .checklist--item .checklist-text {
        width: 230.5px;
        height: 56px;
        color: #fafafa;
    }
.homepage-section--section-6 .checklist-text br{
	display: none;
}

}
/*-------------------------------------------*/
/*-- [ HEATING SERVICES SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-7 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.homepage-section--section-7 .checklist--group-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.homepage-section--section-7 .checklist--group-wrapper .checklist--item {
    max-width: 304.5px;
    width: 100%;
    height: 66px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    column-gap: 20px;
    background: #111e2e;
    border-radius: 3px;
    padding: 5px 10px;
}

.homepage-section--section-7 .checklist--item .checklist-check {
    background-image: url("/wp-content/uploads/check.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 34px;
    height: 32px;
}

.homepage-section--section-7 .checklist--item .checklist-text {
    width: 230.5px;
    height: 56px;
    color: #fafafa;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
}
/*-------------------------------------------*/
/*-- [ HEATING SERVICES SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-7 {
        padding-top: 0px;
        padding-bottom: 75px;
        background: linear-gradient(180deg, #fff 0%, #d7f2ff 100%);
    }

    .homepage-section--section-7 .checklist--group-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: center;
        justify-content: start;
        align-items: center;
        gap: 20px 20px;
        margin-bottom: 25px;
    }

    .homepage-section--section-7 .checklist--group-wrapper .checklist--item {
        width: 485px;
        height: 66px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        background: #111e2e;
        border-radius: 3px;
        padding: 5px 10px;
    }

    .homepage-section--section-7 .checklist--item .checklist-check {
        background-image: url("/wp-content/uploads/check.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 34px;
        height: 32px;
    }

    .homepage-section--section-7 .checklist--item .checklist-text {
        width: 230.5px;
        height: 56px;
        color: #fafafa;
    }

	.homepage-section--section-7 .checklist-text br{
	display: none;
}
}
/*-------------------------------------------*/
/*-- [ 25 YEARS OF EXPERIENCE SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-8 {
    padding-top: 45px;
    padding-bottom: 50px;
    background-color: #111e2e;
    color: #fafafa;
}

.homepage-section--section-8 .border-bar {
    max-width: 928px;
    width: 100%;
    height: 10px;
    background: #fafafa;
    margin: 0 auto;
    border-radius: 100px;
}

.homepage-section--section-8 .border-heading {
    font-size: 70px;
    font-family: "Russo One", sans-serif;
    line-height: 82px;
}

.homepage-section--section-8 .text-block {
    max-width: 540px;
    width: 100%;
    margin: 35px auto 30px auto;
}
/*-------------------------------------------*/
/*-- [ 25 YEARS OF EXPERIENCE SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-8 {
        padding-top: 45px;
        padding-bottom: 50px;
        background-color: #111e2e;
        color: #fafafa;
    }

    .homepage-section--section-8 .border-bar {
        max-width: 260px;
        width: 100%;
        height: 10px;
        background: #fafafa;
        margin: 0 auto;
        border-radius: 100px;
    }

    .homepage-section--section-8 .border-heading {
        font-size: 40px;
        font-family: "Russo One", sans-serif;
        line-height: 40px;
        margin: 0.5em 0;
    }

    .homepage-section--section-8 .text-block {
        max-width: 486px;
        width: 100%;
        margin: 35px auto 30px auto;
    }
}
/*-------------------------------------------*/
/*-- [ HOW OUR HVAC SERVICES CAN SAVE YOU MONEY SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-9 {
    padding-top: 114px;
    padding-bottom: 120px;
    background-image: url("/wp-content/uploads/image_name.jpg");
    color: #111e2e;
}
.homepage-section--section-9 .h-divider {
    background: #111e2e;
}

.homepage-section--section-9 p {
	margin-bottom: 36px;
}
/*-------------------------------------------*/
/*-- [ HOW OUR HVAC SERVICES CAN SAVE YOU MONEY SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-9 {
        padding-top: 114px;
        padding-bottom: 120px;
        color: #111e2e;
    }

    .homepage-section--section-9 h2,
    .homepage-section--section-9 .sub-h,
    .homepage-section--section-9 p {
        text-align: left;
    }

    .homepage-section--section-9 .h-divider {
        background: #111e2e;
    }

}

/*-------------------------------------------*/
/*-- [ EPA CERTIFIED AND A+ RATING SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-10 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.homepage-section--section-10 .certified--wrapper {
    position: relative;
    z-index: 1;
    background: #fafafa !important;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    column-gap: 2em;
    padding: 40px 40px 40px 0;
    overflow: visible;
}

.homepage-section--section-10 .certified--wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 9999px;
    height: 100%;
    background: #fafafa;
    z-index: 0;
}

.homepage-section--section-10 .certified--text-wrapper {
    max-width: 856px;
    width: 100%;
}
.homepage-section--section-10 .button-wrapper {
    margin-top: 20px;
}

.homepage-section--section-10 .certified--logo {
    margin-right: 0;
    margin-left: auto;
    width: 206px;
    height: 206px;
}
/*-------------------------------------------*/
/*-- [ EPA CERTIFIED AND A+ RATING SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-10 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .homepage-section--section-10 .certified--wrapper {
        background-color: #fafafa;
        display: flex;
        flex-direction: column-reverse;
        align-content: center;
        justify-content: center;
        align-items: center;
        row-gap: 32px;
        padding: 40px;
    }

    .homepage-section--section-10 .certified--text-wrapper {
        max-width: 486px;
        width: 100%;
        z-index: 0;
    }

    .homepage-section--section-10 .certified--wrapper::before {
        content: "";
        height: 560px;
        width: 100vw;
        background: #fafafa;
        bottom: 0;
        position: absolute;
        z-index: -1;
    }

    .homepage-section--section-10 .button-wrapper {
        margin-top: 20px;
        display: flex;
        align-content: center;
        justify-content: start;
        align-items: center;
    }
}
/*-------------------------------------------*/
/*-- [ #1 COOLING AND HEATING COMPANY SECTION ]------------*/
/*-------------------------------------------*/
.homepage-section--section-11 {
    padding-top: 123px;
    padding-bottom: 138px;
    color: #111e2e;
}

.homepage-section--section-11 .section-header,
.homepage-section--section-11 .text-block {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
}

.homepage-section--section-11 .h-divider {
    margin-left: 0;
    background: #111e2e;
}
/*-------------------------------------------*/
/*-- [ #1 COOLING AND HEATING COMPANY SECTION {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .homepage-section--section-11 {
        padding-top: 123px;
        padding-bottom: 138px;
        color: #111e2e;
    }

    .homepage-section--section-11 .section-header,
    .homepage-section--section-11 .text-block {
        max-width: 940px;
        width: 100%;
        margin: 0 auto;
    }

    .homepage-section--section-11 .h-divider {
        margin-left: 0;
        background: #111e2e;
    }
}

/*-------------------------------------------*/
/*-- [ CONTACT FORM ]------------*/
/*-------------------------------------------*/
.postscript-contact {
    padding-top: 100px;
    padding-bottom: 118px;
}

.postscript-contact .super-h {
    display: block;
    display: flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    background: #d7f2ff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5em;
    color: #111e2e;
    font-family: "Titillium Web";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 6px;
    text-transform: uppercase;
}
/*-------------------------------------------*/
/*-- [ CONTACT FORM {MOBILE) ]------------*/
/*-------------------------------------------*/
@media (max-width: 991px) {
    .postscript-contact {
        padding-top: 90px;
        padding-bottom: 83px;
    }

    .postscript-contact .super-h {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

    .postscript-contact .h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .postscript-contact .h-divider {
        width: 198px;
        height: 10px;
        border-radius: 100px;
        margin: 24px auto;
    }

    .postscript-contact p {
        margin-bottom: 36px;
    }
}

/*-------------------------------------------------------------------------------------------------*/
/* --------------------------------------- */
/* -- [ FOOTER ]  ------------------ */
/* --------------------------------------- */
.footer {
    padding-top: 77.88px;
    padding-bottom: 70px;
    background: #fafafa;
}
@media (min-width: 992px) {
    .center-bottom--wrapper {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
}
/* --------------------- */
/*  LOGO COLUMN */
/* --------------------- */
.footer .logo-column-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

.footer-company-logo {
    max-width: 238px;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
}
/* Social Icons------ */
.footer .social-icons {
    max-width: 150px;
    width: 100%;
    margin-left: 2.5em;
    margin-right: auto;
    margin-top: 38px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 16px;
}

.footer .social-icons__icon {
    transition: all 0.3s ease;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 10px !important;
    background: #098ccc;
    position: relative;
    z-index: 0;
}

.footer .social-icons__icon a {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
    width: inherit;
    height: inherit;
    color: #fff;
    border-radius: 10px !important;
}

@media (min-width: 992px) {
    .footer .social-icons__icon:hover a {
        background: #000;
        border-radius: 10px;
    }
}

/* --------------------- */
/* BUSINESS INFO COLUMN */
/* --------------------- */
.footer-column .office-address {
    margin-top: 5px;
    text-align: left;
}

.footer-divider {
    width: 288px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    opacity: 0.5;
    background: #0d0d0d;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer .emergency-service {
    color: #098ccc;
    font-weight: 700;
    line-height: 28px;
}

.footer .company-phone {
    margin-top: 10px;
    max-width: 359px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.footer .company-phone span {
    color: #111e2e;
    font-family: "Russo One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    margin-left: 0.5em;
}

/* --------------------- */
/* QUICK LINKS COLUMN */
/* --------------------- */
.footer-button-wrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 219px;
    row-gap: 21px;
}

/*-------------------------------------------------------------------------------------------------*/
/* --------------------------------------- */
/* -- [ FOOTER (MOBILE) ]  ------------------ */
/* --------------------------------------- */
@media (max-width: 991px) {
    .footer {
        padding-top: 40.96px;
        padding-bottom: 42.79px;
        background: #fafafa;
    }

    /* --------------------- */
    /*  LOGO COLUMN */
    /* --------------------- */
    .footer .logo-column-wrapper {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .footer-company-logo {
        max-width: 238px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Social Icons------ */
    .footer .social-icons {
        margin-top: 38px;
        margin-bottom: 38px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        align-self: center;
        gap: 16px;
        max-width: 314px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* --------------------- */
    /* BUSINESS INFO COLUMN */
    /* --------------------- */
.footer-column .office-address {
	max-width: 256px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	line-height: 24px;
	margin-bottom: 0;
}

.footer-divider {
	width: 196px;
	height: 1px;
	opacity: 0.5;
	background: #0d0d0d;
	margin: 30px auto;
	display: block;
}
    .footer .company-phone {
        margin-top: 1em;
        max-width: 359px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer .company-phone span {
        color: #111e2e;
        font-family: "Russo One";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        text-transform: uppercase;
        margin-left: 0.5em;
    }

    /* --------------------- */
    /* QUICK LINKS COLUMN */
    /* --------------------- */
    .footer--quick-links {
        margin-top: 2em;
    }

    .footer .emergency-service {
        color: #098ccc;
        text-align: center;
        font-family: Heebo;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .quick-links--wrapper .button-wrapper {
        margin-top: 40.12px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 219px;
        row-gap: 31px;
    }
}
/* --------------------------------------- */
/* -- [ COPYRIGHT ]  ------------------ */
/* --------------------------------------- */
.copyright {
    background: #fafafa;
}

.copyright,
.copyright a {
    color: #070b17;
    font-size: 14px;
}

.copyright-info {
    display: flex;
    max-width: fit-content;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    column-gap: 10px;
}

.copyright-info a {
    text-decoration: underline;
    font-weight: 700;
}

.copyright-divider {
    width: 1px;
    height: 18px;
    background: #070b17;
}

.copyright-marketing-wrapper {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: #000;
}

/* --------------------------------------- */
/* -- [ COPYRIGHT {MOBILE) ]  ------------------ */
/* --------------------------------------- */
@media (max-width: 991px) {
    .copyright {
        background: #fafafa;
    }

    .copyright,
    .copyright a {
        color: #111e2e;
        font-size: 14px;
    }

    .copyright-info {
        display: flex;
        max-width: fit-content;
        width: 100%;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        column-gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 420px;
        width: 100%;
    }

    .copyright-info a {
        text-decoration: underline;
    }

    .copyright-divider {
        width: 1px;
        height: 18px;
        background: #111e2e;
    }

    .copyright-marketing-wrapper {
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        text-align: left;
        color: #000;
    }
}

/* SLIDERS */
/* CARDS SLIDER */
.cards-slider {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    column-gap: 49px;
}

@media (min-width: 992px) {
	.cards-slider .slick-track {
		display: flex !important;
		column-gap: 30px;
		width: 1199px !important;
	}
}

.cards-slider .slick-list {
    overflow: visible;
}

.cards-slider .container,
.cards-slider .row,
.cards-slider .col-12 {
    padding-left: 0;
    padding-right: 0;
}

.cards-slider .cards-slide {
    width: 358px !important;
    height: 432px !important;
    padding: 40px;
    border-radius: 3px;
    background: #bbbbbc;
    margin: 0 0 0 -0.8em;
    box-sizing: border-box;
}

.cards-slide .cards-slide--inner-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.cards-slide--icon {
    width: 134px;
    height: 134px;
    margin: 0 auto;
    margin-bottom: 29px;
}

.cards-slide--text {
    font-size: 24px;
    font-family: "Russo One";
}

.cards-slide--subtext {
    margin-top: 1em;
    font-family: "Heebo";
    font-weight: 400;
    font-size: 18px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cards-slider .cards-slide {
        width: 300px !important;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .cards-slider {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        column-gap: 1em;
    }

    .cards-slide {
        width: 300px !important;
        height: 404px !important;
        background: #bbbbbc;
        margin-right: 0.5em;
    }

    .cards-slide .cards-slide--inner-wrapper {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

    .cards-slide--icon {
        width: 98px;
        height: 98px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .cards-slide--text {
        font-size: 18px;
        font-family: "Russo One";
    }

    .cards-slide--subtext {
        margin-top: 1em;
        font-family: "Heebo";
        font-weight: 400;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
#logo-slider {
	margin-top: 127px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	column-gap: 35.6px;
}
}
/* --------------------------------------- */
/* LOGO SLIDER {MOBILE) */
/* --------------------------------------- */

@media (max-width: 991px) {
    .logo-slider .slick-track {
        margin-top: 30px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        column-gap: 18px;
    }

    .logo-slider .logo-slide {
        display: flex;
        align-self: center;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    .logo-slider .logo-slide .logo {
        max-height: 70px;
        height: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        align-self: center;
    }
}

@media (min-width: 992px) {
    .conversion-content-three a:hover {
        color: #fff !important;
    }
}

.social-icons a {
    text-decoration: none !important;
}

.page-template-page-conversion .h5 {
    color: #fff !important;
}

.financing .text-shadow-box blockquote p {
    color: #000 !important;
}

.postscript-contact .h-divider {
    background-color: #fff;
}

.gform_button {
    margin-left: auto;
    margin-right: auto;
}
.mobile-footer-divider {
    width: 246px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    opacity: 0.5;
    background: #0d0d0d;
    margin: 40px auto;
}

/* Mobile-only styles */
@media (max-width: 991px) {
    .cards-slider .cards-slide {
        width: 287px !important;
        height: 404px;
        padding: 40px;
        border-radius: 3px;
        background: #bbbbbc;
        margin: 0 0.25em;
    }

    .cards-slide--text {
        font-size: 16px;
        font-family: "Russo One";
        text-align: left;
    }

    .cards-slider .slick-slider {
        position: relative;
    }

    /* Common arrow styles */
    .cards-slider .slick-prev,
    .cards-slider .slick-next {
        position: absolute;
        bottom: 0;
        top: 110%;
        width: 41px;
        height: 30px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        opacity: 1;
    }

    /* Custom image for previous arrow */
    .cards-slider .slick-prev {
        background-image: url("/wp-content/uploads/arrow-left.svg");
        left: 45%;
        transform: translateX(-30px); /* Adjust to shift left from center */
    }

    /* Custom image for next arrow */
    .cards-slider .slick-next {
        background-image: url("/wp-content/uploads/arrow-right.svg");
        left: 45%;
        transform: translateX(30px); /* Adjust to shift right from center */
    }

    /* Remove default arrow icons */
    .cards-slider .slick-prev::before,
    .cards-slider .slick-next::before {
        content: none;
    }
}

@media (max-width: 575px) {
    .cards-slider {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .cards-slider .slick-list {
        padding: 0 !important;
    }
}
.text-sm-center {
    text-align: left !important;
}

/* ----------------------------- */
/* CTA GROUP */
/* ----------------------------- */
.cta-group--wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
	justify-content: center;
	align-content: center;
	align-items: center;
	max-width: 1140px;
	width: 100%;
	margin: 30px auto 133px;
	padding: 0;
}

.cta-item {
	display: flex;
	width: 357px;
	height: 101px;
	overflow: hidden;
	position: relative;
	transition: transform 0.4s ease;
	box-shadow: 0px 4px 4px 0px #807c7c;
	flex: 0 0 357px;
	background: #bbbbbc;
}


/* Background that expands from left to right */
.cta-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 81px;
	height: 100%;
	background: radial-gradient(50% 50% at 50% 50%, #3f3f3f 0%, #111e2e 100%);
	z-index: 0;
	transition: width 0.4s ease;
}


/* LEFT SIDE ---------------*/
.cta-left {
	width: 81px;
	height: 101px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}


.main-image {
	width: 53px;
	height: 59px;
	object-fit: contain;
	z-index: 2;
}


.bottom-image {
	position: absolute;
	right: 6px;
	bottom: -16px;
	width: 19px;
	height: 38px;
	z-index: 2;
	opacity: 1;
	pointer-events: none;
	transition: 0.3s ease all;
}

.cta-item--cooling-install .bottom-image,
.cta-item--heating-install .bottom-image {
	width: 81px;
	height: 40px;
	position: absolute;
	right: 0px;
	bottom: 0;
	z-index: 2;
	opacity: 1;
	transition: 0.3s ease all;
}


/* RIGHT SIDE ---------------*/
.cta-right {
	flex: 1;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	transition: background 0.4s ease;
	padding-left: 40px;
}

.cta-text {
	text-align: left;
	color: #111E2E;
	transition: transform 0.4s ease, color 0.4s ease;
	position: relative;
	z-index: 2;
	line-height: 28px;
	text-transform: uppercase;
}

.cta-title {
	font-family: 'Russo One', sans-serif;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 4px;
}

.cta-subtext {
	font-family: 'Titillium Web', sans-serif;
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 3px;
	gap: 8px;
}

.arrow {
	margin-left: 45px;
	width: 42px;
	height: 19.5px;
	transition: transform 0.4s ease, opacity 0.4s ease;
	opacity: 1;
	position: relative;
	z-index: 2;
	will-change: transform, opacity;
}

.cta-item--maintenance .arrow {
	margin-left: 10px;
}

/* CTA GROUP (HOVER) */
/* ----------------------------- */
@media (min-width: 992px) {
	.cta-item:hover {
		transform: translateY(-20px);
	}

	/* Expand background on hover */
	.cta-item:hover::before {
		width: 100%;
	}
	.cta-item:hover .cta-text {
		color: white;
		transform: translateX(20px);
	}

	.cta-item:hover .arrow {
		transform: translateX(50px);
		/* Moves arrow ~20px past item edge */
		opacity: 0;
	}

	.cta-item:hover .bottom-image {
		bottom: -40px;
	}

	.cta-item--cooling-install:hover .bottom-image,
	.cta-item--cooling-repeair:hover .bottom-image {
		bottom: -40px;
	}
}



/* ----------------------------- */
/* CTA GROUP ( M O B I L E )     */
/* ----------------------------- */
@media (max-width: 991px) {
	.cta-group--wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 30px 20px;
		justify-content: center;
		align-content: center;
		align-items: center;
		max-width: 386px;
		width: 100%;
		margin: 26px auto 81px;
		padding: 0;
	}

	.cta-item {
		display: flex;
		flex-direction: column;
		/* Stack vertically */
		width: 144px;
		height: 101px;
		overflow: visible;
		/* Needed for bottom-image visibility */
		position: relative;
		transition: transform 0.4s ease;
		flex: 0 0 auto;
		background: transparent;
		/* Backgrounds handled per section */
		border-radius: 3px;
		box-shadow: none;
	}

	/* No longer using ::before for background gradient */
	.cta-item::before {
		display: none;
	}


	.cta-item--maintenance {
		order: 5;
	}

	/* TOP SECTION (TEXT) */
	.cta-right {
		order: 1;
		width: 100%;
		height: 54px;
		background: #bbbbbc;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 1;
		padding-left: 0;
	}

	.cta-text {
		text-align: center;
		color: #111E2E;
		position: relative;
		z-index: 2;
		line-height: 15px;
		text-transform: uppercase;
	}

	.cta-title {
		font-family: 'Russo One', sans-serif;
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 2px;
		text-align: center;
	}

	.cta-subtext {
		font-family: 'Titillium Web', sans-serif;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		gap: 6px;
	}

	.arrow {
		display: none;
	}

	/* BOTTOM SECTION (IMAGE) */
	.cta-left {
		order: 2;
		width: 100%;
		height: 54px;
		background: radial-gradient(50% 50% at 50% 50%, #3f3f3f 0%, #111e2e 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 2;
		overflow: visible;
	}

	.main-image {
		width: 46px;
		height: 46px;
		object-fit: contain;
		z-index: 2;
	}

	.bottom-image {
		position: absolute;
		right: 20px;
		bottom: -10px;
		width: 19px;
		height: 38px;
		z-index: 2;
		opacity: 1;
		pointer-events: none;
		transition: 0.3s ease all;
	}

	.cta-item--cooling-install .bottom-image,
	.cta-item--heating-install .bottom-image {
		width: 81px;
		height: 40px;
		right: 0;
		bottom: 0;
		top: auto;
	}
}

.page-template-page-ryno-contact .postscript-contact {
    display: none;
}

.postscript-contact #select2-input_1_5-container,
.postscript-contact #select2-input_1_6-container {
    line-height: 2.5em !important;
}

.postscript-contact p {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
#gform_wrapper_1 {
    max-width: 964px;
    width: 100%;
    margin: 0 auto;
}
.charge-reviews-button {
    color: #fff !important;
    line-height: 2em;
}

.page-template-page-conversion
    .conversion-header
    .conversion-coupon
    .charge-coupon-button {
    line-height: 1.5em;
}




/* DAVID'S STYLESHEET CHANGES */
.slick-dots .slick-active button::before {
    border-color: #0D0D0D;
    background-color: #0D0D0D;
}
.slick-dots li.slick-active button::before {
    opacity: 1;
}
.slick-dots li button:hover::before {
    border-color: #0D0D0D;
}
.slick-dots li button::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #D9D9D9;
    background-color: #D9D9D9;
    border-radius: 100%;
    opacity: 1;
}
.slick-dots li button {
    width: 16px;
    height: 16px;
}
@media (max-width: 992px) {
    .homepage-section--section-7 .checklist--group-wrapper,
    .homepage-section--section-2 .checklist--group-wrapper {
        max-width: 100%;
        max-width: unset;
        justify-content: unset;
    }
    .homepage-section--section-6 .checklist--group-wrapper .checklist--item,
    .homepage-section--section-2 .checklist--group-wrapper .checklist--item,
    .homepage-section--section-7 .checklist--group-wrapper .checklist--item {
        width: 100%;
        max-width: 100% !important;
        margin-right: unset;
        margin-left: unset;
    }
    .homepage-section--section-10 .certified--heading {
        text-align: center;
    }
    .homepage-section--section-10 .certified--logo {
        width: 206px;
        height: 206px;
        margin-right: auto;
    }
    .homepage-section--section-10 .certified--wrapper {
        flex-direction: column;
        padding: 40px 0px;
    }
    .homepage-section--section-11 {
        padding-bottom: 60px;
    }
    .bottom-section-wrapper {
        background: linear-gradient(to bottom, white, #D7F2FF);
    }
    #logo-slider {
        margin-top: 0px;
    }
    .homepage-section--section-10 .certified--wrapper::before {
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
    }
    .homepage-section--section-2 .accent-image {
        margin-top: 40px;
    }
    .homepage-section--section-7 .col-lg-5,
    .homepage-section--section-6 .col-lg-5 {
        margin-bottom: 40px;
    }
    .homepage-section--section-7 {
        background: linear-gradient(to top, #d7f2ff 0%, rgba(215, 230, 255, 0) 100% );
    }
    .cards-section--wrapper {
        padding-bottom: 0px;
    }
    .footer-hours.h6,
    .footer--business-address.h6 {
        text-align: center;
    }
    .homepage-section--section-11 {
        padding-top: 80px;
    }

    .postscript-contact .super-h {
        margin-bottom: 20px;
    }
    .postscript-contact .gform_wrapper.gravity-theme .gform_fields {
        grid-row-gap: 16px;
    }
    .sub-h {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 6px;
    }
    .logo-slider .logo-slide .logo {
        height: 40px;
        object-fit: contain;
    }
    .logo-slider .slick-track {
        margin-top: 10px;
        margin-bottom: 16px;
    }
    .cards-slide .cards-slide--inner-wrapper {
        width: 100%;
        max-width: 300px;
        height: 100%;
        margin: auto;
        border-radius: 3px;
        padding: 40px;
        background: #BBBBBC;
    }
    .cards-slider .cards-slide {
        height: unset !important;
        width: 100% !important;
        padding: 0px;
        margin: unset;
        background: unset;
        border-radius: unset;
    }
    .cards-slider .slick-list {
        overflow: hidden
    }
    .cards-slider {
        width: 100vw !important;
        left: 50%;
        transform: translateX(-50%);
    }
    .cards-slider .slick-track {
        display: flex;
    }
}

@media (max-width: 471px) {
    .homepage-section--section-5 .sub-h {
        max-width: 300px;
        margin: auto;
    }
}


=

