:root {
    --primary-color: #0047ab;
    --secondary-color: #000;
    --body-text-color: #4c4c4c;
    --body-font: "Montserrat", sans-serif;
    --sec-font: "Rajdhani", sans-serif;
    --white: #fff;
    --black: #000;
    --blue-100:#e6edf7;
    --gray-100:#ccc;
    --gray-200:#888888;
    --gray-300:#e6edf7;
    --gray-400:#e6e6e6;
    --gray-500:#333132;
    --gray-600:#0a1318;
    --gray-700:#999999;
}

/* Typographical Elements */
body {
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 16px;
    margin: 0 auto;
    display: block;
}
a, a:focus, a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
a:link, a:visited {
    transition: all 0.4s ease 0s;
    text-decoration: none;
}
p {
    margin: 0 0 25px;
    position: relative;
}
ol, ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}
li {
    list-style-type: disc;
}
hr {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 30px 0;
}
b, strong {
    font-weight: 700;
}
blockquote {
    margin: 0 0 30px;
    padding: 20px;
    background-color: #f3f3f3;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 700;
    font-family: var(--sec-font);
}
h1 {
    font-size: 35px;
    margin: 0 0 50px;
    position: relative;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 12px;
}
h1:after {
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 2px;
    width: 60px;
}
h1.has-text-align-center:after, h1.wp-block-heading.has-text-align-center:before {
    margin: 0 auto;
}
h1.wp-block-heading:before {
    font-size: 16px;
    color: var(--primary-color);
    content: 'Serving the Greater Tampa Bay Area';
    text-transform: uppercase;
    display: block;
    font-family: var(--body-font);
    font-weight: 700;
}

/* Forms */
form {
    position: relative;
}
input, select, textarea {
    border: 1px solid #e1e1e1;
    color: #636363;
    font-size: 16px;
    padding: 10px;
    overflow: hidden;
    font-family: inherit;
}
textarea {
    resize: vertical;
}
input[type="submit"] {
    -webkit-appearance: none;
}
input[type="checkbox"], input[type="image"], input[type="radio"] {
    width: auto;
}
select::-ms-expand {
    display: none;
}
::-ms-input-placeholder {
    color: #636363;
}
:-ms-input-placeholder {
    color: #636363;
}
::placeholder {
    color: #636363;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .button {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 15px 25px;
    width: initial;
    font-family: var(--body-font);
    transition: all .5s;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    font-weight: 700;
}
button:focus, button:hover, input[type="button"]:focus, input[type="button"]:hover, input[type="reset"]:focus, input[type="reset"]:hover, input[type="submit"]:focus, input[type="submit"]:hover, .button:focus, .button:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}
.wpcf7-form-control-wrap[data-name="acceptance"] {
    display: inline-block !important;
}
span.wpcf7-list-item-label {
    text-transform: initial;
    font-family: var(--white);
}
.wpcf7-acceptance span {
    margin: 0;
}

/* Site Container */
.site-container {
    background: url(/wp-content/uploads/2026/03/bg-pattern.jpg) repeat;
    padding: 0;
    width: 100%;
    clear: both;
}
.site-inner {
    background: url(/wp-content/uploads/2026/03/service-background.png) no-repeat right bottom;
    clear: both;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    padding: 0;
}

/* Why Ductless Page */
.page-id-242 .site-inner {
    background: none;
}
.page-id-242 .content-sidebar-wrap {
    padding-bottom: 0;
}
.content-sidebar-wrap {
    width: 100%;
    max-width: 1430px;
    padding: 100px 15px 100px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 5;
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Common Classes */
.sec-font {
    font-family: var(--sec-font);
}
.c-white, .c-white a {
    color: var(--white);
}
.c-black, .c-black a {
    color: var(--black);
}
.c-gray, .c-gray a {
    color: var(--gray-100);
}
.c-dgray, .c-dgray a {
    color: var(--secondary-color);
}
.c-blue, .c-blue a {
    color: var(--primary-color);
}
.c-lblue, .c-lblue a {
    color: var(--gray-300);
}
.subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}
.section-container {
    padding: 30px 15px;
}
.site-wrap .inner-with {
    padding: 0;
    width: 100%;
    position: relative;
    clear: both;
}
.background-element {
    background-repeat: no-repeat;
}
.background-fixed {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-top-center {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-left-cover {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-right-cover {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-bottom-cover {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-left-contain {
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}
.background-image-bottom-contain {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.background-image-right-bottom-inherit {
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: inherit;
}
.background-image-right-center-inherit {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: inherit;
}
.background-image-top-center-contain {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.site-flex-nowrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
}
.site-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: center;
}
.justify-content-center {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: center;
    align-items: inherit;
    flex-wrap: wrap;
}
.justify-content-center-center {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-center-left {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-left {
    -webkit-justify-content: left;
    -ms-flex-pack: inherit;
    justify-content: left;
    align-items: inherit;
    flex-wrap: wrap;
}
.justify-content-right {
    -webkit-justify-content: right;
    -ms-flex-pack: inherit;
    justify-content: right;
    flex-wrap: wrap;
}
.justify-content-center-right {
    -webkit-justify-content: right;
    -ms-flex-pack: inherit;
    justify-content: right;
    flex-wrap: wrap;
    align-items: center;
}
.justify-content-top {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: inherit;
}
.justify-content-bottom {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: flex-end;
}
.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}
.gap20 {
    gap: 20px;
}
.gap30 {
    gap: 30px;
}
.gap40 {
    gap: 40px;
}
a.site-btn {
    border-radius: 5px;
    color: var(--white);
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    transition: all .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 16px;
    min-width: 150px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    font-family: var(--sec-font);
}
a.site-btn.lowercase {
    text-transform: initial;
}
a.site-btn i {
    font-size: 13px;
}
a.btn-hvr:hover {
    color: var(--secondary-color);
    border: 2px solid var(--gray-400);
}
a.btn-hvr:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -2;
}
a.btn-hvr:before {
    background-color: var(--white);
    position: absolute;
    z-index: -1;
    height: 100%;
    width: calc(100% + 1px);
    content: "";
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    top: 0;
    left: -1px;
    -webkit-transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
    -o-transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
    transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
}
a.btn-hvr:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
a.btn-one {
    color: var(--white);
    border-radius: 5px;
    background-image: -moz-linear-gradient(90deg, rgb(33, 54, 113) 0%, rgb(56, 83, 157) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(33, 54, 113) 0%, rgb(56, 83, 157) 100%);
    border: 0;
    box-shadow: 0px 20px 20px 0px rgba(0, 71, 171, .14);
}
a.btn-one.btn-hvr:hover {
    border: 0;
}
a.btn-two {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
a.btn-three {
    background-color: var(--white);
    border: 0;
    color: var(--primary-color);
}
a.btn-four {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}
a.btn-five {
    background-color: transparent;
    border: 2px solid rgba(65, 65, 65, .15);
    color: var(--secondary-color);
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.underline {
    text-decoration: underline;
}
.normal {
    font-weight: 400;
}
.medium {
    font-weight: 500;
}
.semibold {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.bolder {
    font-weight: 800;
}
.italic {
    font-style: italic;
}
.relative {
    position: relative;
}
.section-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.divider:after {
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    width: 60px;
}
.divider.centered:after {
    margin: 0 auto;
}
.section-title.divider {
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.section-subtitle {
    font-size: 16px;
    font-family: var(--body-font);
    line-height: 1.3;
    margin: 0 0 10px;
}
.section-desc {
    font-size: 18px;
    margin-bottom: 25px;
}
.section-desc p:only-child {
    margin: 0;
}
.section-alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    1
    max-width: 100vw;
}
.section-alignwide {
    padding: 60px 0;
    max-width: 100vw;
    margin-left: calc(-100vw / 10 + 100% / 10);
    margin-right: calc(-100vw / 10 + 100% / 10);
}
.full-width {
    width: 100%;
}
.inner-width {
    display: block;
    max-width: 1430px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    z-index: 2;
}
a.link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.show-item-mobile {
    display: block;
}
.hide-item-mobile {
    display: none;
}
.mobile-center {
    text-align: center;
}
.full-padding {
    padding: 100px 15px;
}
.vertical-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.vertical-padding-med {
    padding-top: 60px;
    padding-bottom: 60px;
}
.side-padding, .side-padding-med {
    padding-right: 15px;
    padding-left: 15px;
}
.vertical-bottom-padding {
    padding-bottom: 100px;
}
.vertical-top-padding {
    padding-top: 100px;
}
.padding-60 {
    padding: 60px;
}
.bg-white {
    background-color: var(--white);
}
.bg-lgray {
    background-color: var(--gray-100);
}
.bg-black {
    background-color: var(--black);
}
.clr {
    clear: both;
    padding: 20px 0;
}
.o-hidden {
    overflow: hidden;
}
.d-hidden {
    display: none;
}
.dark-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .50);
    z-index: 1;
}
span.br {
    display: block;
}
.slide-control .left, .slide-control .right {
    background-color: rgba(10, 19, 24, .30);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    text-align: right;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    transition: all 0.6s ease;
    padding: 6px 13px;
}
.slide-control > div {
    padding: 12px 20px !important;
    border-radius: 5px;
}
.slide-control .left {
    left: 0px;
}
.slide-control .right {
    right: 0px;
}
.slide-control > div:hover {
    background-color: rgba(0, 71, 171, .60);
    color: var(--white);
}

/* Breadcrumbs  */
.breadcrumbs {
    position: relative;
    z-index: 3;
}
.breadcrumbs .inner-with {
    z-index: 4;
}
.breadcrumbs .breadcrumb {
    border: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
}
.breadcrumbs .bc-wrap {
    color: var(--white);
    background: rgb(0 0 0 / 50%);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--sec-font);
    text-transform: uppercase;
    font-size: 20px;
}
.breadcrumbs .breadcrumb-link-wrap a {
    display: inline-block;
}
.breadcrumbs .breadcrumb-link-wrap a, .breadcrumbs .breadcrumb-link-wrap a:hover {
    color: var(--white);
    font-weight: 700;
}
.breadcrumbs .separator {
    color: var(--white);
    display: inline-block;
    font-size: 20px;
    padding: 0px 10px;
    position: relative;
    margin-bottom: 20px;
}
.archive-description p:last-child, .author-box p:last-child {
    margin-bottom: 0;
}
.archive-description .entry-title, .archive-title, .author-box-title {
    font-size: 39px;
    font-weight: 700;
    text-align: center;
}

/* Titles */
.archive-description .entry-title, .entry-title, .archive-title, .author-box-title {
    margin-bottom: 50px;
}
.entry-title {
    font-size: 30px;
    color: var(--secondary-color);
}
.entry-title a:focus, .entry-title a:hover, .entry-title a {
    color: var(--primary-color);
    text-decoration: none;
}
.single .entry-title, .archive .archive-title {
    font-weight: 700;
    text-align: center;
}
.single .entry-title:after, .archive .archive-title:after {
    margin: 0 auto;
}
.entry-comments {
    padding: 60px 0 0;
}
.entry-header .entry-meta, .entry-content .entry-meta {
    font-family: var(--sec-font);
    font-weight: 700;
}
.entry-content .entry-meta {
    margin-bottom: 20px;
    padding: 0 10px;
}
.entry-footer .entry-meta {
    border-top: 1px solid var(--primary-color) !important;
    margin-top: 60px;
    font-family: var(--sec-font);
    font-weight: 700;
}

/* WordPress */
.alignleft, .alignright, iframe.alignleft {
    float: none !important;
    text-align: center;
    margin: 0 auto 20px !important;
}
img.centered, .aligncenter {
    margin: 0 auto !important;
    text-align: center;
}
.wp-block-columns .aligncenter {
    margin: 0px auto 0px !important;
}
a.alignleft, img.alignleft, .wp-caption.alignleft, a.alignright, img.alignright, .wp-caption.alignright {
    margin: 15px auto;
    display: block;
}

/* Display outline on focus */
:focus {
    color: initial;
    outline: transparent solid 0px;
}

/* CF7 */
.form-container .form-field br {
    display: none;
}
.form-container .form-title {
    padding: 20px 15px;
    font-size: 35px;
    line-height: 1;
}
.form-container .form-field-item.form-field-submit {
    margin-top: 20px !important;
}
.form-container .wpcf7-acceptance label {
    display: block;
}
.form-container .form-field .form-field-item input {
    padding: 12px 20px 12px 20px;
}
.form-container .form-field .form-field-item select {
    padding: 12px 35px 12px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%), linear-gradient(to right, var(--primary-color), var(--primary-color));
    background-position: calc(100% - 29px) calc(1.1em + 4px), calc(100% - 24px) calc(1.1em + 4px), calc(100% - 2.5em) .5em;
    background-size: 5px 5px, 5px 5px, 0px 0em;
    background-repeat: no-repeat;
}
.form-container textarea {
    height: 100px;
    font-family: inherit;
}
.form-container .form-field-message {
    min-height: 41px;
}
.form-container .form-field-message textarea {
    height: 100px;
    padding: 20px;
}
.form-container input, .form-container select, .form-container textarea {
    font-size: 14px;
    background-color: var(--white);
    border: 0;
    border: 1px solid #ddd;
    color: var(--body-text-color);
    border-radius: 5px;
}
.form-container .wpcf7-form-control-wrap {
    display: grid;
}
.form-recaptcha, .form-field-disclaimer {
    text-align: center;
}
.recaptcha-note, .recaptcha-note a {
    line-height: 1.4;
    margin: 20px 0 0;
}
.form-field-disclaimer {
    line-height: 1.4;
    padding: 5px 0;
    margin: 0 !important;
}
.recaptcha-note, .form-field-disclaimer {
    font-size: 12px;
}
.recaptcha-note, .form-field-disclaimer, .recaptcha-note a, .recaptcha-note a:hover, .form-field-disclaimer a, .form-field-disclaimer a:hover {
    color: var(--gray-300);
}
.form-container .form-field-item.form-leads, .form-container .form-field-item.form-field-submit, .form-container .form-field-item.form-field-message, .form-container .form-field-item.form-recaptcha, .form-container .form-submit p {
    margin: 0;
}
.form-container .form-field-item {
    margin: 0 0 10px;
}
.wpcf7-spinner {
    position: absolute !important;
    bottom: 13px;
    right: 5%;
    margin: 0 auto !important;
    z-index: 2;
}
.fields-container select {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--secondary-color) 50%), linear-gradient(135deg, var(--secondary-color) 50%, transparent 50%), linear-gradient(to right, var(--secondary-color), var(--secondary-color));
    background-position: calc(100% - 20px) calc(1em + 0px), calc(100% - 15px) calc(1em + 0px), calc(100% - 2.5em) .5em;
    background-size: 5px 5px, 5px 5px, 0px 0em;
    background-repeat: no-repeat;
}
.grecaptcha-badge {
    visibility: hidden;
}
span.ajax-loader {
    position: absolute !important;
    display: block !important;
    margin: 0 auto !important;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
form.use-floating-validation-tip span.wpcf7-not-valid-tip {
    padding: 2px 5px;
    right: 11px;
    top: 50%;
    left: auto;
    width: auto;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #dc3232 !important;
    background-color: #dc3232;
    color: var(--white) !important;
    font-size: 12px !important;
    width: max-content;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip:before {
    content: '';
    position: absolute;
    top: 100%;
    border-width: 5px;
    border-color: #dc3232 transparent transparent;
    border-style: solid;
    left: 10px;
}
div.wpcf7-response-output {
    padding: 10px !important;
    text-align: center;
    font-size: 12px;
    color: var(--white);
    border: 2px solid #e50000 !important;
    background: #ff0000;
    margin: 0 !important;
    position: absolute !important;
    bottom: -55px;
    left: 0;
    right: 0;
    z-index: 2;
}
.form-wrap div.wpcf7-response-output {
    bottom: -65px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
    background-color: #46b450 !important;
}
.frm-fields.col-md-8.cc span.wpcf7-not-valid-tip {
    top: 80%;
}
.site-form {
    width: auto;
    height: 100%;
    text-align: left;
}
.form-wrap {
    background: #f5f5f5;
    padding: 20px;
}
.form-wrap .recaptcha-note, .form-wrap .recaptcha-note a {
    color: var(--body-text-color);
}
.wpcf7-submit {
    background-color: var(--gray-300);
    border: 0 !important;
    color: var(--black);
    min-width: 150px;
    width: 100%;
    border-radius: 5px;
    font-family: var(--sec-font);
}
.wpcf7-submit i {
    font-size: 14px;
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
    border: 0 !important;
    background: var(--white) !important;
    color: var(--primary-color);
}
.show-text-label {
    font-size: 14px;
    color: var(--white);
}
.show-text-label span {
    color: var(--primary-color);
}
.hide-text-label {
    display: none;
}

/* SFS Gallery */
.slmp-gallery h2, h2.slmp-video {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.popup-image-title {
    display: none;
}
.slmp-popup-close:before, .item-popup-count, .popup-image-title {
    color: var(--white) !important;
}
.slmp-popup-image-wrap {
    overflow: auto;
}
.slmp-image-item {
    border-radius: 5px;
    height: 285px;
    margin-bottom: 20px;
    overflow: hidden;
}
.gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
    overflow: hidden;
    height: 300px;
}
.slmp-display-image.slmp-grid-display-image.slmp-site-flex.slmp-justify-content-left.slmp-relative {
    justify-content: center;
}
.slmp-category-navigation {
    margin-top: 20px;
    margin-bottom: 50px !important;
    padding-bottom: 0 !important
}
.slmp-category-navigation .slmp-cat-title {
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 5px;
    color: var(--primary-color) !important;
    font-size: 18px;
    font-weight: 700;
    margin: 0 15px 10px;
    min-width: initial !important;
    padding: 15px !important;
    position: relative !important;
    text-transform: uppercase !important;
}
.slmp-category-navigation .slmp-cat-title:hover, .slmp-category-navigation .slmp-cat-title:focus, .slmp-category-navigation .slmp-cat-title.active {
    background-color: var(--primary-color) !important;
    border: 0 !important;
    color: var(--white) !important;
}
.slmp-category-navigation .slmp-cat-title:after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #a6a6a6;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: -20px;
}
.slmp-category-navigation .slmp-cat-title:last-child:after {
    display: none;
}
.slmp-gallery .slmp-image-item .slmp-image {
    width: 100%;
    overflow: hidden;
}
.slmp-image-item img {
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    overflow: hidden;
}
.slmp-image-item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.popup-image-title {
    padding: 2px 0px !important;
}
.slmp-popup-slide-right {
    border-left: 15px solid var(--white) !important;
}
.slmp-popup-slide-left {
    border-right: 15px solid var(--white) !important;
}
.slmp-popup-image-count, .slmp-popup-image-item.active {
    background-color: transparent !important;
}
.slmp-popup-image-listing {
    background-color: transparent !important;
}
.slmp-gallery .slmp-gallery-load-more button {
    background-color: var(--white) !important;
    border: 2px solid var(--secondary-color) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    min-width: 180px !important;
    padding: 15px 20px !important;
    border-radius: 5px;
    position: relative;
    font-family: var(--sec-font);
    font-size: 16px;
}
.slmp-gallery .slmp-image-label {
    left: 30px;
    right: 30px;
    bottom: 50px;
    padding: 15px 10px;
    background-color: rgba(7, 16, 19, .90);
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-label {
    bottom: auto;
    left: auto;
    right: 0;
    border-radius: 0px;
    position: relative;
    background-color: var(--primary-color);
    padding: 20px;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-item {
    overflow: initial;
    padding: 0 30px;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-item img {
    height: 450px;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-item, .slmp-gallery.slmp-slide-gallery .slmp-grid-image.slmp-text-center.slmp-relative {
    height: 480px;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-item img {
    border-radius: 10px;
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-image {
    overflow: hidden;
}
.slmp-gallery.slmp-slide-gallery .slmp-image-item .slmp-image {
    background-color: var(--primary-color);
    padding: 0;
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow, .slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    background-image: none;
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f053";
    border-radius: 5px;
    font-size: 18px;
    left: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow {
    left: -130px;
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:before {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    border-radius: 5px;
    font-size: 18px;
    right: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    right: -130px;
}
.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:hover:before, .slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:hover:before {
    background-color: rgba(180, 45, 51, .70);
    color: var(--white);
    border: 1px solid transparent;
}

/* Video Slider Page */
.slide-video-listing {
    max-width: 800px;
    margin: 0 auto 100px;
}
.slide-video-listing .slide-video-list {
    padding: 70px 60px;
}
.slide-video-list iframe {
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.22);
    border-radius: 10px;
}

/* Header Menu */
.site-header .title-area img {
    height: auto;
}
.site-title a, .site-title a:focus, .site-title a:hover {
    color: #333333;
    text-decoration: none;
}
.site-description, .wp-custom-logo .site-title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.mob-dot-toggle {
    color: var(--white);
    cursor: pointer;
    font-size: 22px;
    padding: 9px 15px;
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 2;
}
.window_scrolled .mob-dot-toggle {
    top: 47px;
    color: var(--black);
}
.mobile-dots-items {
    background-color: var(--primary-color);
    font-size: 15px;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 112px;
    height: 100%;
    overflow-y: scroll;
    padding: 15px 15px 150px 15px;
    z-index: 2;
}
.window_scrolled .mobile-dots-items {
    top: 43px;
    padding: 15px;
}
.mobile-dots-items .mob-item {
    padding-left: 25px;
    margin-top: 5px;
}
.mob-item.site-name:before, .mob-item.site-location:before, .mob-item.site-number:before, .mob-item.site-email:before, .mob-item.site-time:before, .mob-item.site-social-media:before, .mob-item.site-license:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
}
.mob-item.site-name:before {
    content: "\f015";
}
.mob-item.site-location:before {
    content: "\f3c5";
    left: 3px;
}
.mob-item.site-number:before {
    content: "\f095";
}
.mob-item.site-email:before {
    content: "\f0e0";
}
.mob-item.site-time:before {
    content: "\f017";
}
.mob-item.site-social-media:before {
    content: "\f1e0";
    top: 10px;
}
.mob-item.site-license:before {
    content: "\f2c1";
    left: 2px;
}

/* Site Navigation */
.genesis-nav-menu {
    padding: 0;
}
.genesis-nav-menu a {
    color: var(--white);
    padding: 11px 30px 11px 10px;
    border-bottom: 1px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--sec-font);
}
.genesis-nav-menu a, .genesis-nav-menu .sub-menu a {
    font-size: 15px;
}
.genesis-nav-menu .sub-menu a {
    background-color: var(--primary-color);
}
.genesis-nav-menu a:focus, .genesis-nav-menu a:hover, .genesis-nav-menu .current_page_item > a, .genesis-nav-menu .sub-menu .current_page_item > a:focus, .genesis-nav-menu .sub-menu .current_page_item > a:hover {
    text-decoration: none;
    background-color: var(--white);
    color: var(--primary-color);
}
.genesis-nav-menu .sub-menu, .genesis-nav-menu .sub-menu a {
    width: 100%;
}
.genesis-nav-menu .sub-menu {
    clear: both;
    display: none;
    left: -9999px;
    margin: 0;
    opacity: 1;
    padding-left: 15px;
    position: static;
    z-index: 99;
}
.genesis-nav-menu .menu-item:focus, .genesis-nav-menu .menu-item:hover {
    position: relative;
}
.genesis-nav-menu .menu-item:hover > .sub-menu {
    display: block;
    left: auto;
    opacity: 1;
}

/* Responsive Menu */
.genesis-responsive-menu {
    display: none;
    position: relative;
}
.menu-toggle {
    background: transparent;
    margin-bottom: 0;
    max-width: 100%;
    width: auto;
    padding: 0;
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 50px;
    transition: none;
}
.window_scrolled .menu-toggle {
    top: -9px;
    color: var(--primary-color);
}
.menu-toggle, .sub-menu-toggle {
    color: var(--white);
}
.menu-toggle:focus, .menu-toggle:hover, .sub-menu-toggle:focus, .sub-menu-toggle:hover {
    color: var(--white);
}
button.menu-toggle:before {
    content: "\f0c9";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    width: auto;
    height: auto;
    padding: 17px 15px;
    line-height: 1;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    transition: color .1s ease-in;
    display: inline-block;
    top: 0px;
}
button.menu-toggle.activated:before {
    content: "\f00d";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 24px;
    width: auto;
    height: auto;
    padding: 17px 15px;
}
.site-header .menu-toggle::before {
    margin-right: 0;
    top: -12px;
}
button.menu-toggle:before, .menu-toggle.activated::before {
    color: var(--white);
}
.window_scrolled button.menu-toggle:before, .window_scrolled .menu-toggle.activated::before {
    top: -2px;
    padding: 10px 15px;
    color: var(--primary-color);
}
.menu-toggle.activated::before {
    content: "\f335";
}
.menu-toggle::before {
    float: left;
    margin-right: 0px;
    position: relative;
    text-rendering: auto;
    top: 8px;
}
.sub-menu-toggle {
    position: absolute;
    max-width: 100%;
    width: auto;
}
.sub-menu-toggle:before {
    content: "\f0da" !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    color: var(--white) !important;
}
.sub-menu-toggle::before {
    display: inline-block !important;
    text-rendering: auto !important;
    transform: rotate(0) !important;
    transition: transform 0.3s ease-in-out !important;
    color: var(--gray-700) !important;
}
.sub-menu-toggle.activated::before {
    transform: rotate(270deg) !important;
}
ul.sub-menu.show-submenu {
    display: block !important;
}

/* Header Menu */
.nav-primary {
    padding: 15px 10px 150px;
    max-width: 100%;
    position: fixed;
    right: -100%;
    top: auto;
    z-index: 300;
    overflow-y: auto;
    height: 100%;
    display: block !important;
    transition: all 0.6s ease;
}
.nav-primary > .wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
.nav-primary.show {
    right: 0;
}

/* Entry Content */
.entry {
    position: relative;
    margin-bottom: 0px;
}
.entry-content h4 {
    margin-top: 0;
}
.entry-content h3, .entry-content h4 {
    font-weight: 700;
}
p.entry-meta i {
    color: var(--primary-color);
}
.entry-content ol {
    padding: 0 0 0 30px;
}
.entry-content ul {
    padding: 0;
}
.entry-content ul li, .entry-content ul li li {
    list-style: none;
    padding: 0 0 5px 30px;
    position: relative;
}
.entry-content ul.children li {
    padding: 0 0 5px 25px;
}
.entry-content ul ul {
    margin-top: 10px;
}
.entry-content ul li:before {
    border-radius: 5px;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0px;
}
.entry-content ol > li {
    list-style-type: decimal;
}
.full-width-content .content {
    width: 100%;
}
.entry-content figure.wp-block-image figcaption {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 15px 15px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.30);
    font-style: inherit;
}
.entry-content .wp-block-image {
    margin-bottom: 60px;
    padding-bottom: 0;
}
.wp-block-image.featured-img img {
    border-radius: 10px;
    box-shadow: -21.213px 21.213px 30px 0px rgba(0, 0, 0, .15);
}
.single-post .entry-content {
    padding: 40px;
    background-color: var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, .14);
    border-radius: 5px;
}

/* Pagination */
.pagination {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}
.pagination ul {
    padding: 0;
    margin: 0;
    font-size: 0;
    text-align: center;
}
li.pagination-omission {
    position: relative;
}
li.pagination-omission:after {
    content: '...';
    font-size: 19px;
    color: #343434;
    bottom: -12px;
    position: relative;
}
.archive-pagination li {
    margin: 0 2px;
}
.entry-content .archive-pagination li {
    padding: 0 2px;
    font-family: var(--sec-font);
    font-size: 16px;
}
.archive-pagination li a {
    background-color: var(--gray-300);
    border: 1px solid var(--gray-300);
    color: var(--black);
    font-weight: 700;
    padding: 10px 17px;
    border-radius: 5px;
}
.archive-pagination li a:focus, .archive-pagination li a:hover, .archive-pagination li.active a {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--gray-300);
}
.archive-pagination li i {
    font-size: 14px;
}
.pagination ul li:before {
    display: none;
}

/* Back to Top */
.move-to-top {
    cursor: pointer;
    position: fixed;
    right: 10px;
    bottom: 133px;
    width: 40px;
    height: 40px;
    z-index: 199;
}
.to-top {
    border-radius: 5px;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(64, 64, 64) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(64, 64, 64) 100%);
    color: var(--white);
    border: 1px solid rgba(230, 237, 247, .20);
    position: relative;
    height: 40px;
    width: 40px;
    font-size: 16px;
}
.to-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* POPUP Form */
.popup-form {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.91);
    visibility: hidden;
    z-index: 999999;
    overflow: auto;
    left: 0;
}
.popup-form div.wpcf7-response-output {
    bottom: -44px;
}
.popup-form .form-fields {
    max-width: 600px;
    width: 100%;
    border-radius: 0;
    position: relative;
    padding: 20px 10px 60px 10px;
    transition: all 0.6s ease;
    visibility: hidden;
    bottom: -125%;
}
.popup-form .form-fields.slide-form {
    visibility: visible;
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
    bottom: 0;
}
.popup-form .form-fields a.close {
    background: var(--secondary-color);
    color: var(--white) !important;
    line-height: 30px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 4px;
    width: 30px;
    height: 30px;
    text-decoration: none;
    z-index: 1;
    outline: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
}
.popup-form .form-title, .popup-form .form-field, .contact-page-form .form-field {
    background: var(--primary-color);
}
.popup-form .form-title {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    padding: 30px 40px 0;
    text-align: center;
}
.popup-form .form-field, .popup-form .form-title-desc-wrap {
    border-radius: 0 0 10px 10px;
}
.popup-form .form-field, .contact-page-form .form-field {
    padding: 2px 0 0 0;
}
.popup-form .form-field-wrap, .contact-page-form .form-field-wrap {
    padding: 30px 20px;
}
.popup-form .form-field-item {
    width: 100%;
}
.popup-form div.wpcf7-response-output {
    bottom: -44px;
}
.popup-form .form-title-desc-wrap {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    z-index: 199;
    width: auto;
    max-width: max-content;
    margin: 0 auto;
    padding: 0;
    display: block;
}
.floating-cta a {
    cursor: pointer;
    padding: 10px 15px;
    font-size: 16px;
    position: relative;
    line-height: 1;
    color: var(--white);
    width: 100%;
    transition: none;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
}
.floating-cta i {
    font-size: 17px;
}
.floating-cta .floating-cta-wrap {
    display: flex;
}
.floating-cta .sticky-no {
    display: none;
}
.window_scrolled .floating-cta .sticky-no {
    border-radius: 5px 0 0 5px;
}
.window_scrolled .floating-cta .form-popup {
    border-radius: 0 5px 5px 0;
}
.floating-cta .sticky-form {
    background-image: -moz-linear-gradient(90deg, rgb(33, 54, 113) 0%, rgb(56, 83, 157) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(33, 54, 113) 0%, rgb(56, 83, 157) 100%);
    color: var(--white);
}

/* Column */
.col-1-12, .col-2-12, .col-3-12, .col-4-12, .col-5-12, .col-6-12, .col-7-12, .col-8-12, .col-9-12, .col-10-12, .col-11-12, .col-12-12, .col-1-5, .col-2-5, .col-3-5, .col-4-5, .col-5-5, .col-1, .col-2, .col-3, .col-4, .col-5 {
    width: 100%;
}

/* Social Media */
.social-media a.sprite {
    background-color: transparent;
    margin-right: 0;
    width: 65px;
    min-width: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    height: 35px;
}
.social-media a.sprite:last-child {
    margin-right: 0;
}
.social-media a.sprite span {
    background-repeat: no-repeat;
    height: 40px;
    display: block;
    margin: 0 auto;
    background-position-y: 7px;
    width: 40px;
}
#sprite-icon-facebook span {
    background-position-x: -185px;
    width: 20px;
}
#sprite-icon-porch span {
    background-position-x: -497px;
    width: 20px;
}
#sprite-icon-nextdoor span {
    background-position-x: -732px;
    width: 22px;
}
#sprite-icon-angi span {
    background-position-x: -5px;
    width: 16px;
}
#sprite-icon-instagram span {
    background-position-x: -419px;
    width: 20px;
}
#sprite-icon-yelp span {
    background-position-x: -655px;
    width: 16px;
}
#sprite-icon-googlebiz span {
    background-position-x: -263px;
    width: 20px;
}
#sprite-icon-youtube span {
    background-position-x: -679px;
    width: 20px;
}
#sprite-icon-thumbtack span {
    background-position-x: -63px;
}
#sprite-icon-angi span {
    background-position-x: -5px;
    width: 16px;
}
#sprite-icon-linkedin span {
    background-position-x: -445px;
    width: 20px;
}
#sprite-icon-porch span {
    background-position-x: -497px;
    width: 20px;
}
.social-media .social-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 -2px;
}
.social-media a.sprite img {
    display: block;
    margin: 0 auto;
    zoom: 0.8;
}
.header-info-social .social-item {
    display: inline-block;
    margin: 0;
}
.header-info-social .social-media a.sprite span {
    height: 30px;
    background-position-y: 3px;
}
.header-info-social a.media-label {
    display: none;
}
.mob-item .social-media a.sprite {
    margin-right: 0;
}
.ftr-item .social-media a.sprite {
    margin-right: 10px;
}
.ftr-item .social-media .social-item:first-child {
    margin-left: 0;
}
.ftr-item .social-media .social-item {
    margin: 0 0 10px;
    display: flex;
    width: calc(100% - -9px);
    align-items: center;
}
.social-media .social-item a:hover {
    color: var(--white);
}
.social-media #sprite-icon-facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}
.social-media #sprite-icon-googlebiz:hover {
    background-color: #4a81e8;
    border-color: #4a81e8;
}
.social-media #sprite-icon-instagram:hover {
    background-color: #cb3f75;
    border-color: #cb3f75;
}
.social-media #sprite-icon-linkedin:hover {
    background-color: #007bb6;
    border-color: #007bb6;
}
.social-media #sprite-icon-youtube:hover {
    background-color: #bb0000;
    border-color: #bb0000;
}
.social-media #sprite-icon-angi:hover {
    background-color: #ff3726;
    border-color: #ff3726;
}
.social-media #sprite-icon-porch:hover {
    background-color: #f1ad00;
    border-color: #f1ad00;
}
.social-media #sprite-icon-yelp:hover {
    background-color: #d71616;
    border-color: #d71616;
}

/* Header Section */
.site-header {
    position: fixed;
    height: auto;
    display: block;
    width: 100%;
    max-width: 100%;
    z-index: 200;
    top: auto;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    box-shadow: 0 0 0 transparent;
}
.window_scrolled .site-header {
    position: fixed;
}
.site-header .logo-nav-wrapper {
    background-color: rgba(0, 0, 0, .50);
}
body.window_scrolled .site-header .logo-nav-wrapper {
    background-color: var(--white);
}
.site-header .header-info {
    font-size: 12px;
    gap: 45px;
}
.site-header .header-info > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.site-header .header-info-phone .header-icon-wrap {
    background-color: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 5px;
    display: inline-block;
}
.site-header .header-icon-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.site-header .header-info, .site-header .header-info a {
    color: #a6a6a6;
    font-weight: 400;
    font-size: 14px;
}
.site-header .header-info-phone i {
    font-size: 16px;
    color: var(--white) !important;
}
.site-header .header-info-phone a {
    font-weight: 700 !important;
    color: var(--white) !important;
    font-size: 22px;
}
.site-header .main-logo img {
    max-height: 64px;
    filter: brightness(0) invert(1);
}
.window_scrolled  .site-header .main-logo img {
    max-height: 64px;
    filter: brightness(1) invert(0);
}
.site-top-news {
    background-color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
}
.site-top-news i {
    font-size: 15px;
}
.header-info-email br {
    display: none;
}
.site-header .header-info > div i {
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
}
.hero-slider .inner-with, .hero-slider-wrap, .hero-item-wrap .hero-caption {
    height: 100vh;
    min-height: 740px;
    max-height: 1000px;
}
.hero-slider .hero-item {
    width: 100%;
    height: 100vh;
    min-height: 740px;
    max-height: 1000px;
}
.hero-slider .hero-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(13, 13, 13, 0.7) 5%, rgba(64, 64, 64, 0.59) 30%, rgba(172, 172, 172, 0.21) 64%, rgba(233, 233, 233, 0.04) 83%, rgba(252, 252, 252, 0) 89%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
}
.hero-slider .hero-caption-wrap {
    padding: 20px 0;
}
.hero-slider .hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.hero-slider .hero-item-wrap {
    height: 0;
    opacity: 0;
}
.hero-slider .hero-caption-row {
    z-index: 2;
    margin-top: 141px;
    margin-bottom: 30px;
    max-width: 100%;
}
.hero-slider .hero-slider-wrap.slick-initialized .hero-item-wrap {
    height: auto;
    opacity: 1;
}
.hero-slider .hero-slide-title {
    font-size: 40px;
    line-height: 1.1;
    position: relative;
    text-shadow: 0px 0px 20px rgba(3, 3, 3, .20);
}
.hero-slider .hero-slide-desc {
    line-height: 1.2;
    font-size: 16px;
    text-shadow: 0px 0px 20px rgba(3, 3, 3, .20);
}
.hero-slider .hero-slide-title, .hero-slider .hero-slide-desc, .hero-slider .hero-slide-btn {
    opacity: 0;
}
.hero-slider .hero-slide-title.animated.activate, .hero-slider .hero-slide-desc.animated.activate, .hero-slider .hero-slide-btn.animated.activate {
    opacity: 1;
}
.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 0s;
}
.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 0.5s;
}
.hero-slider .hero-slide-desc.animated.activate {
    animation-delay: 1s;
}
.hero-slider .hero-slide-btn.animated.activate {
    animation-delay: 2s;
    margin-bottom: 10px;
}
.hero-slider .hero-slide-btn {
    margin-top: 50px;
}
.hero-slider .hero-slide-btn a {
    min-width: 177px;
    font-size: 18px;
    padding: 10px 20px;
}

/* Slick Dots */
.hero-slider ul.slick-dots {
    margin: 0;
    padding: 0;
}
.hero-slider ul.slick-dots li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 !important;
}
.hero-slider ul.slick-dots li:not(:last-child) {
    margin: 0 4px 0 0;
    padding: 0 !important;
}
.hero-slider ul.slick-dots li button {
    background-color: var(--white);
    border: 0;
    border-radius: 2px;
    padding: 0;
    font-size: 0;
    width: 60px;
    height: 4px;
}
.hero-slider ul.slick-dots li.slick-active button {
    background: var(--primary-color) !important;
    border: 0;
    position: relative;
}
.hero-slider ul.slick-dots li button:hover {
    background: var(--primary-color) !important;
    border: 0;
}
.hero-slider ul.slick-dots li:before {
    display: none;
}
.hero-slider ul.slick-dots li:only-child {
    display: none;
}

/* Page Banner */
.inner-page-banner:after {
    height: 650px;
}
.inner-page-banner:before {
    content: '';
    background: linear-gradient(to bottom, rgba(7, 16, 19, 0.75) 0%, rgba(7, 16, 19, 0.75) 12%, rgba(7, 16, 19, 0.72) 15%, rgba(7, 16, 19, 0.61) 26%, rgba(7, 16, 19, 0.28) 53%, rgba(7, 16, 19, 0.11) 70%, rgba(7, 16, 19, 0.02) 86%, rgba(7, 16, 19, 0) 100%);
    height: 617px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
}
.inner-page-banner .page-banner {
    height: 100vh;
    min-height: 560px;
    max-height: 560px;
}
.inner-page-banner .page-title-container {
    z-index: 2;
}
.inner-page-banner .inner-page-banner {
    position: relative;
}
.inner-page-banner .page-banner-wrap {
    height: 100%;
}
.inner-page-banner .page-tagline {
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
}
.inner-page-banner .page-title {
    font-size: 40px;
    line-height: 1.3;
    padding: 0 0 10px;
}
.inner-page-banner .page-banner-cols {
    padding: 0;
    margin: 95px 0 0;
}
.inner-page-banner .page-banner-container:before {
    content: '';
    background-color: rgba(0, 0, 0, .50);
    width: 100%;
    height: 710px;
    position: absolute;
    top: 0;
    z-index: 2;
}

/* Page */
body:not(.home) .content-sidebar-wrap:after {
    content: '';
    position: absolute;
    background: url(/wp-content/uploads/2026/03/badge-service.png) no-repeat;
    width: 160px;
    height: 188px;
    right: 0;
    top: -100px;
    z-index: 2;
}
.entry-content .wp-block-group.content-block {
    background-color: var(--white);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, .15);
    border-radius: 5px;
    overflow: hidden;
}
.entry-content .wp-block-group.content-block .block-primary {
    background-color: var(--white);
    padding: 60px;
}
.entry-content .wp-block-group.content-block .block-secondary {
    background-color: var(--gray-300);
    padding: 60px;
}
.entry-content .form-container {
    background: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, .15);
}
.entry-content .form-container .form-field {
    padding: 40px 20px 40px;
}
.entry-content .form-container input, .entry-content .form-container select, .entry-content .form-container textarea {
    font-size: 14px;
    background-color: var(--white);
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 2em !important;
}

/* Why Go Ductless Page */
.services-column {
    margin-top: 90px;
}
.services-column > div {
    background: var(--white);
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .15);
}
.services-column > div:hover {
    background-color: var(--primary-color);
}
.services-column > div:hover, .services-column > div:hover h3 {
    color: var(--white);
}
.services-column .ductless-icon {
    background: #064aa5;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin: -60px auto 30px;
}
.services-column .ductless-icon img {
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Gallery Page */
.page-id-920 .slmp-gallery .slmp-image-item.zoom-icon-hover .slmp-image:hover .slmp-image-hover-icon {
    background: none;
    width: 100%;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

/* Contact Us Page */
.map-wrap iframe {
    border-radius: 10px;
    min-height: 585px;
    width: 100%;
}

/* Reviews Page */
.navigation.pagination .nav-links .page-numbers {
    background-color: var(--white) !important;
    border: 1px solid var(--white);
    color: var(--primary-color);
    line-height: 1;
    padding: 10px 15px !important;
    border-radius: 5px;
}
.navigation.pagination .nav-links .page-numbers:hover, .navigation.pagination .nav-links span.page-numbers.current {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    color: var(--white);
}
.navigation.pagination .dashicons-arrow-right-alt2:before, .navigation.pagination .dashicons-arrow-left-alt2:before {
    position: relative;
    top: 4px;
}
.navigation.pagination span.page-numbers.dots {
    color: var(--primary-color);
}
ul.yext-reviews-page li.review:before {
    display: none;
}
.view-review-form {
    margin: 30px 0 0;
}
.sfs-review-submit-btn button {
    border-radius: 0px !important;
    margin-bottom: 10px;
}
.sfs-review.reviewpostbox-form button.sfcr-submit-review, .view-review-form button.sfcr-create-review {
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 5px !important;
    color: var(--white) !important;
    font-size: 16px !important;
}
.sfs-review.reviewpostbox-form button.sfcr-cancel-review {
    color: var(--primary-color) !important;
}
.sfs-review.reviewpostbox-form button.sfcr-submit-review, .view-review-form button.sfcr-create-review, .sfs-review.reviewpostbox-form button.sfcr-cancel-review {
    font-weight: 700 !important;
    padding: 14px 25px !important;
    border-radius: 5px !important;
}
.list-of-reviews .review-content p {
    margin: 0 0 10px;
}

/* Search Result Page */
.search-result-title a {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
}
.search .more-link {
    margin-bottom: 10px;
}
.search .pagination {
    margin: 60px 0 20px;
}

/* 404 Page */
.entry-content form.search-form {
    width: 100%;
}

/* Blog Page, Archive */
.archive-page h4 {
    font-size: 22px;
}
.category-list, .recent-post {
    position: relative;
}
.category-list:after, .recent-post:after {
    color: var(--primary-color);
    position: absolute;
    right: 10px;
    top: 17px;
    width: 20px;
    height: 10px;
    content: "\f107";
    pointer-events: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}
.archive-items select {
    background-color: var(--gray-300);
    border: 1px solid var(--gray-300);
    border-radius: 0;
    color: var(--black) !important;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: var(--sec-font);
}
.archive-items select:hover, .archive-items select:focus {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white) !important;
}
.category-list:hover:after, .recent-post:hover:after, .post-archives-list .col-3 select:hover, .category-list:focus:after, .recent-post:focus:after, .post-archives-list .col-3 select:focus {
    color: var(--white);
}
.archive-items select option {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}
.archive-items select option:first-child {
    display: none;
}
.blog-container, .blog-archive-container {
    padding: 40px;
    background: var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, .14);
}
.blog-items {
    padding: 0 0 40px;
}
.blog-items .blog-content-wrap {
    box-shadow: 0 0 30px rgba(0, 0, 0, .14);
    border-radius: 5px;
}
.blog-items .blog-post-wrap {
    margin-bottom: 70px;
}
.blog-items .blog-item {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--gray-300);
}
.blog-items .hvr:hover .blog-content-wrap {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.blog-items .blog-date {
    position: absolute;
    bottom: 0;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 0 5px 0 0;
    font-size: 12px;
}
.blog-items .blog-title {
    padding: 0 20px;
    font-size: 25px;
    line-height: 1.2;
    margin: 0 0 10px;
}
.blog-items .blog-author {
    padding: 0 20px 10px;
    font-size: 14px;
}
.blog-items .blog-author i {
    font-size: 12px;
    color: var(--primary-color);
}
.blog-items .hvr:hover .blog-title a, .blog-items .hvr:hover .blog-content p, .blog-items .hvr:hover .blog-author, .blog-items .hvr:hover .blog-author i {
    color: var(--white);
}
.blog-items .post-btn a {
    display: block;
    font-size: 14px;
}
.blog-items .blog-image {
    min-height: 247px;
    height: 247px;
    border-radius: 5px 5px 0 0;
}
.blog-items .blog-content {
    border-top: 2px solid var(--gray-300);
    font-size: 16px;
    padding: 10px 20px;
}
.blog-items .hvr:hover .blog-content {
    border-top: 1px solid var(--white);
}
.blog-items .blog-content, .blog-items .blog-title a {
    color: var(--secondary-color);
}
.blog-items .blog-content p {
    margin: 0;
    color: var(--body-text-color);
}
.blog-items .blog-entry {
    margin: 0 0 10px;
}
.blog-items .blog-entry, .blog-items .blog-entry a {
    color: var(--gray-300);
    font-size: 14px;
}
.blog-items .blog-entry a:hover {
    color: var(--black);
}
.blog-items .blog-wrapper {
    padding: 10px 0 30px;
}
.blog-items .blog-link {
    display: block;
    font-size: 14px;
    background-color: var(--black);
    max-width: 210px;
    text-align: center;
    padding: 9px 20px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-family: var(--sec-font);
}
.blog-items .blog-link i {
    font-size: 12px;
}
.blog-items .date {
    color: var(--white);
    display: block;
    line-height: 1;
    position: relative;
    font-size: 25px;
}
.blog-items .month {
    font-size: 14px;
}
.blog-items .ellips.more-info, .blog-items .month, .blog-items .date {
    color: var(--primary-color);
}
.blog-items .hvr:hover .ellips.more-info, .blog-items .date, .blog-items .month {
    color: var(--white);
}

/* Section Order */
section.full-width-section {
    max-width: 1920px;
    width: 100%;
    overflow-x: clip;
    margin: 0 auto;
}
.section ul {
    padding: 0;
}
.section ul li {
    list-style: none;
    padding: 0 0 0 30px;
    position: relative;
}
.section ul li:before {
    border-radius: 5px;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Homepage Content Section */
.home .site-inner:after {
    content: '';
    position: absolute;
    background: url(/wp-content/uploads/2026/03/badge-service.png) no-repeat;
    width: 160px;
    height: 188px;
    right: 60px;
    bottom: 223px;
}
.entry-content .home-btn-wrap {
    display: block;
    gap: 20px;
}
.entry-content .home-btn-wrap a {
    min-width: 180px;
}
.entry-content .hp-content {
    background-color: var(--white);
    box-shadow: 0px 0px 60px 0px rgb(2 2 2 / 14%);
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    margin-left: -150px;
    max-width: fit-content;
    width: 100%;
}
.entry-content .column-homepage .wp-block-image {
    margin-bottom: 0;
    position: relative;
}
.entry-content .column-homepage .wp-block-image img, .entry-content .page-image figure img {
    border-radius: 10px;
}
.entry-content .page-image figure {
    position: relative;
}
.entry-content .column-homepage figure:before, .entry-content .page-image figure:before {
    content: '';
    background: transparent;
    border: 7px solid var(--primary-color);
    box-shadow: 0 0 70px inset rgba(0, 0, 0, .35);
    width: 90%;
    height: 90%;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.entry-content .wp-block-columns.column-homepage {
    gap: 3em !important;
    margin-top: 75px;
}
.load-more-btn:after {
    content: "\f063";
    font-family: "Font Awesome\ 6 Free";
    font-weight: 900;
    line-height: 1;
    margin-left: 5px;
}
.load-more-btn.more:after {
    display: inline-block;
    transform: rotate(179deg);
}
.entry-content .column-homepage figure:after {
    zoom: 0.6;
    content: '';
    background: url(/wp-content/uploads/2026/03/rectangle.png) no-repeat;
    width: 150px;
    height: 859px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    left: -71px;
}

/* Load More Block */
.load-more-content {
    display: none;
}

/* Why Go Ductless Section */
.ductless-section:before {
    content: '';
    background-image: -moz-linear-gradient(90deg, rgb(3 23 54 / 60%) 0%, rgb(0 71 171 / 60%) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(3 23 54 / 60%) 0%, rgb(0 71 171 / 60%) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.ductless-section .ductless-info {
    padding: 30px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .75);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, .30);
}
.ductless-section .ductless-title {
    font-size: 25px;
}
.ductless-section .ductless-desc {
    font-size: 14px;
}
.ductless-section .ductless-image {
    height: 564px;
    border-radius: 5px;
}
.ductless-section .ductless-featured {
    background: url(/wp-content/uploads/2026/03/bg-pattern.jpg) repeat;
    padding: 30px;
    border-radius: 5px;
}
.ductless-section:after {
    content: '';
    height: 185px;
    width: 100%;
    background: url(/wp-content/uploads/2026/03/bg-pattern.jpg) repeat;
    bottom: 0;
    position: absolute;
}
.ductless-section .ductless-item:not(:last-child) {
    margin: 0 0 15px;
}
.ductless-section .item-box {
    display: flex;
    align-items: normal;
}
.ductless-section .ductless-content {
    padding: 0 0 10px 20px;
}
.ductless-section .ductless-icon {
    background: var(--gray-300);
    border-radius: 5px;
    margin-top: 7px;
    width: 80px;
    height: 80px;
    min-width: 80px;
}
.ductless-section .ductless-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Services Section */
.section-order-services {
    background: url(/wp-content/uploads/2026/03/service-background.png) no-repeat bottom right;
}
.services-section .service-item {
    width: 31.3%;
    border-radius: 5px;
}
.services-section .service-items {
    gap: 20px;
    padding-top: 20px;
}
.services-section .services-image-wrap {
    background-color: var(--black);
    border-radius: 5px;
}
.services-section .f-image {
    background-color: var(--white);
    height: 250px;
    overflow: hidden;
}
.services-section .f-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.services-section .service-content {
    padding: 30px;
}
.services-section .service-title {
    color: var(--black);
    font-size: 25px;
}
.services-section .service-desc {
    font-size: 16px;
    margin: 20px 0;
}
.services-section .service-btn a {
    display: block;
    text-align: center;
    color: var(--black);
    padding: 10px;
    border-radius: 5px;
}
.services-section .service-btn i {
    font-size: 15px;
}
.services-section .hvr:hover .service-content {
    background-color: var(--black);
}
.services-section .hvr:hover .service-title, .services-section .hvr:hover .service-desc {
    color: var(--gray-300);
}
.services-section .hvr:hover .service-btn a {
    background-color: var(--gray-300);
}
.services-section.section ul li {
    padding: 0;
}
.services-section.section ul li:before {
    position: relative;
}

/* Section 3  */
.section-4:before {
    content: '';
    background: url(/wp-content/uploads/2026/03/faq-background.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 1219px;
    top: auto;
    bottom: 0;
}
.home .section-4:before {
    top: 680px;
}
.home .section-4:after {
    content: '';
    background: url(/wp-content/uploads/2026/03/local-rev-background.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 966px;
    bottom: 0;
}

/* FAQ Section */
.faq-section .slmp-faq-category-items.relative {
    display: none;
}
.faq-section .slmp-faqs .faq-cat-item .faq-cat-info .faq-info {
    background-color: transparent !important;
    padding: 15px 0;
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--sec-font);
    width: 100%;
    padding: 13px 50px 13px 20px;
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question span {
    font-size: 20px;
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question:before {
    background: var(--black);
    padding: 12px;
    border-radius: 5px;
    color: var(--white);
    right: 5px;
    height: 40px;
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question .faq-count {
    display: none;
}
.faq-section .slmp-faqs .faq-cat-info .faq-info:not(:last-child) {
    margin-bottom: 0;
}
.faq-section .slmp-faqs .slmp-faq-item .slmp-faq-answer {
    background-color: rgba(255, 255, 255, .50);
}

/* Local Reviews Section */
#slmp_geojuice #slmp_right .slmp_btn {
    background: transparent !important;
    color: var(--black) !important;
    border: 2px solid var(--black);
    font-family: var(--sec-font) !important;
    font-size: 16px !important;
}
#slmp_geojuice #slmp_right .slmp_btn#slmp_more_checkins::after {
    filter: brightness(0) !important;
}

/* Homepage Synchrony  */
.synchrony-content {
    padding-top: 60px;
}
.synchrony-content .section-heading {
    padding: 30px 15px;
    background: #ffffff;
    border-radius: 5px;
}

/* Homepage CTA Shortcode  */
.cta-shortcode {
    padding-top: 60px;
}
.cta-shortcode .button-label {
    display: block;
    font-size: 16px;
    margin: 0 0 10px;
    text-align: center;
}
.cta-shortcode a.site-btn {
    min-width: 260px;
    width: 100%;
    font-size: 20px;
}
.cta-shortcode .cta-btn i {
    font-size: 17px;
}

/* CTA - Why Choose Us Section */
.icta-section .icta-btn a {
    font-size: 20px;
}
.icta-section .icta-btn i {
    font-size: 17px;
}

/*  CTA - Footer Section */
.fcta-section {
    background-image: -moz-linear-gradient(90deg, rgb(0, 47, 112) 0%, rgb(0, 71, 171) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 47, 112) 0%, rgb(0, 71, 171) 100%);
}
.fcta-section .fcta-btn a {
    font-size: 20px;
    min-width: 300px;
}
.fcta-section .fcta-btn i {
    font-size: 17px;
}
.fcta-section .section-desc {
    margin: 0;
}

/* Why Choose Us Section */
.section-3 {
    background: url("/wp-content/uploads/2026/03/choose-background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-3:before {
    content: '';
    background-image: -moz-linear-gradient(90deg, rgb(13 13 13 / 80%) 0%, rgb(51 51 51 / 80%) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(13 13 13 / 80%) 0%, rgb(51 51 51 / 80%) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.choose-section .choose-content {
    padding: 0 0 0 30px;
}
.choose-section .choose-title {
    font-size: 30px;
}
.choose-section .choose-desc {
    font-size: 16px;
}
.choose-section .item-box {
    margin: 0 0 15px;
    display: flex;
    align-items: normal;
}
.choose-section .choose-icon {
    background: var(--gray-300);
    border-radius: 5px;
    margin-top: 7px;
    width: 130px;
    height: 130px;
    min-width: 130px;
}
.choose-section .choose-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.choose-section .choose-item:hover .choose-icon {
    background-color: var(--primary-color);
}
.choose-section .choose-item:hover .choose-icon img {
    filter: brightness(0) invert(1);
}

/* Counter Section */
.counter-section .counter-icon {
    margin: 0 0 10px;
}
.counter-section .counter-number {
    font-size: 80px;
    line-height: 1;
}
.counter-section .counter-title {
    font-size: 25px;
}
.counter-section .counter-icon img {
    transition: 0.9s;
    transform: rotateY(0deg);
}
.counter-section .counter-list.hvr:hover .counter-icon img {
    transition: 0.9s;
    transform: rotateY(360deg);
}
.counter-section.odometer.odometer-auto-theme {
    display: none;
}
.counter-section .counter-number {
    border: 1px solid rgba(230, 237, 247, .10);
    padding: 20px;
    height: 200px;
    border-radius: 50%;
    width: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-section .hvr:hover .counter-number {
    background-color: var(--gray-300);
    color: var(--primary-color);
}

/* Gallery Section */
.shortcode-gallery {
    z-index: 1;
    position: relative;
}
.gallery-section .slmp-gallery.slmp-grid-gallery .slmp-image-item:not(:first-child) {
    margin-left: 25px;
}
.gallery-section .slide-control > div {
    display: inline-block;
    position: relative;
    margin: 0 3px;
    top: auto;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.gallery-section .slide-control .left {
    left: auto;
}
.gallery-section .slide-control .right {
    right: auto;
}
.gallery-section .gallery-btn a {
    min-width: 300px;
}

/* Reviews Section */
.section-reviews .review-listing {
    margin: 0 20px;
}
.section-reviews .review-item-wrapper {
    margin: 10px 0 20px 0;
}
.section-reviews .review-item-wrapper:before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 66px;
    height: 43px;
    background: url(/wp-content/uploads/2026/03/review-quote.png) no-repeat;
    z-index: 1;
}
.section-reviews .hvr:hover .review-item-wrapper:before {
    opacity: 0.10;
}
.section-reviews .review-item-wrap:after {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 68%;
    background-color: var(--primary-color);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.section-reviews .review-item-wrap {
    background-color: var(--white);
    background-color: rgba(255, 255, 255, .60);
    border-radius: 5px 0 0 5px;
    padding: 20px 25px 30px;
}
.section-reviews .hvr:hover .review-item-wrap {
    background-color: var(--primary-color);
}
.section-reviews .review-content {
    color: var(--body-text-color);
    font-size: 18px;
    position: relative;
    z-index: 2;
}
.section-reviews .hvr:hover .review-content {
    color: var(--white);
}
.section-reviews .review-author {
    font-size: 16px;
}
.section-reviews .review-author {
    line-height: 1;
}
.section-reviews .review-author-wrap {
    margin-top: 10px;
}
.section-reviews .review-rating span {
    margin: 0;
}
.section-reviews .review-rating span i {
    color: var(--primary-color);
    font-size: 14px;
}
.section-reviews .review-btn {
    margin-top: 50px;
}
.section-reviews .review-btn a {
    min-width: 200px;
}
.section-reviews .slide-control .left {
    left: 160px;
}
.section-reviews .slide-control .right {
    right: 160px;
}
.section-reviews .review-info {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 5fr;
    align-items: center;
    padding-left: 25px;
}
.section-reviews .slide-control .right {
    right: auto;
}
.section-reviews .slide-control .left {
    left: auto;
}
.section-reviews .review-author-rating {
    padding-left: 10px;
}

/* Footer Section */
.site-footer {
    background-color: var(--white);
    font-size: 16px;
    text-align: left;
    padding: 0;
    border-top: 0 !important;
}
.footer-section {
    background-color: var(--primary-color);
    text-align: left;
}
.footer-row.main-footer {
    padding: 100px 0;
    background-size: cover;
}
footer .footer-row.main-footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .50);
}
.footer-row.main-footer:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 80%;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 77%) 54%, rgba(0, 0, 0, 0) 100%);
}
footer .column-item {
    margin-bottom: 20px;
}
footer span.info-item-label {
    display: block;
    font-size: 12px;
}
footer .column-label {
    font-size: 20px;
    margin: 0 0 20px;
    text-align: left;
    font-weight: 700;
    padding-left: 20px;
    color: var(--gray-300);
}
footer .column-label:after {
    background: var(--primary-color);
    content: '';
    left: 0;
    right: 0;
    height: 14px;
    position: absolute;
    width: 5px;
    top: 7px;
}
footer span.info-item {
    color: var(--gray-100);
}
footer .footer-menu ul {
    margin: 0;
    padding: 0;
}
footer .footer-menu ul li {
    list-style: none;
}
footer .footer-menu ul li a {
    color: var(--gray-300);
    font-weight: 400;
    position: relative;
    padding: 7px 10px 7px 20px;
    transition: all 0.5s ease-out;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
}
footer .footer-menu ul li a:before {
    content: "\f0da";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transition: all 0.5s ease-out;
    color: var(--primary-color);
}
footer .footer-menu ul li a:hover:before {
    color: var(--primary-color);
    left: 20px;
}
footer .footer-menu ul li a:hover {
    background-color: var(--white);
    border-radius: 5px;
    color: var(--primary-color);
    padding-left: 40px;
    font-weight: 700;
}
footer .footer-col-item {
    padding-left: 30px;
    font-size: 14px;
}
footer .footer-col-item, footer .footer-col-item a {
    color: var(--gray-300);
}
footer .menu-disabled > a {
    pointer-events: none;
}
footer .footer-item-rows .footer-col-item.footer-menu {
    padding: 0;
}
footer .footer-col-item.site-social {
    padding-left: 0;
    padding-top: 10px;
}
footer .footer-item-rows .footer-col-item:not(:last-child) {
    margin-bottom: 10px;
}
footer .footer-item-rows .footer-col-item.site-name:before, footer .footer-item-rows .footer-col-item.site-address:before, footer .footer-item-rows .footer-col-item.site-number:before, footer .footer-item-rows .footer-col-item.site-email:before, footer .footer-item-rows .footer-col-item.site-operation:before, footer .footer-item-rows .footer-col-item.site-license:before, footer .footer-column .footer-col-item.site-fax:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary-color);
    font-size: 14px;
}
footer .footer-item-rows .footer-col-item.site-name:before {
    content: "\f015";
}
footer .footer-column .footer-col-item.site-address:before {
    content: "\f3c5";
    left: 3px;
}
footer .footer-column .footer-col-item.site-number:before {
    content: "\f095";
}
footer .footer-column .footer-col-item.site-email:before {
    content: "\f0e0";
    font-weight: 900;
    top: 2px;
}
footer .footer-column .footer-col-item.site-operation:before {
    content: "\f017";
    font-weight: 900;
    top: 2px;
}
footer .footer-item-rows .footer-col-item.site-license:before {
    content: "\f2c1";
    left: 2px;
}
footer .footer-column .footer-col-item.site-fax:before {
    content: "\f1ac";
    font-weight: 900;
    top: 2px;
}
footer .ftr-menu ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
footer .copyright-section {
    color: var(--body-text-color);
    padding: 75px 0 0;
}
footer .copy-wrapper {
    background-color: var(--white);
    background-color: rgba(255, 255, 255, .90);
    box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, .30);
    border-radius: 5px;
    padding: 60px 20px;
}
footer .copyright-section .inner-width {
    max-width: 1600px;
}
footer .copyright-text {
    font-size: 14px;
}
footer .copy-logo img {
    max-width: 287px;
}

/* XAPP */
div#xapp-widget .cta-bubble__content {
    color: #000 !important;
}

/* Accordion Block */
.page-accordion {
    margin: 0 0 40px;
}
.page-accordion .accordion-item {
    margin-bottom: 30px;
}
.page-accordion .accordion-title {
    background-color: var(--secondary-color);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 60px 12px 25px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
}
.page-accordion .accordion-title:after {
    content: "\f0dd";
    font-size: 14px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 15px 17px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
}
.page-accordion .accordion-title.active:after {
    background-color: #edf2f5;
    color: var(--primary-color);
    content: "\f0d8";
}
.page-accordion .accordion-content {
    background-color: var(--gray-400);
    border-radius: 0 0 10px 10px;
    display: none;
    margin-top: -40px;
    padding: 60px 30px 30px;
    position: relative;
    z-index: 1;
}
.accordion-item:last-child .accordion-content {
    border-bottom: 1px solid #e9e9e9;
}
.page-accordion .accordion-title.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Media Queries */
@media only screen and (min-width:768px) {

    /* Common Classes */
    ul.page-list, ol.page-list, ul.page-list-3, ol.page-list-3 {
        list-style: inside;
    }
    ul.page-list, ol.page-list {
        -webkit-column-count: 2;
        -webkit-column-gap: 40px;
        -moz-column-count: 2;
        -moz-column-gap: 40px;
        column-count: 2;
        column-gap: 40px;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
    ul.page-list-3, ol.page-list-3 {
        -webkit-column-count: 3;
        -webkit-column-gap: 40px;
        -moz-column-count: 3;
        -moz-column-gap: 40px;
        column-count: 3;
        column-gap: 40px;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
    ul.grid-list, ol.grid-list {
        -webkit-column-gap: 10px;
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: auto auto;
        grid-template-columns: 50% 50%;
    }

    /* Page Banner */
    .inner-page-banner .page-tagline {
        font-size: 16px;
    }

    /* Reviews Section */
    .section-reviews .review-item {
        margin-right: 20px;
    }
}
@media only screen and (min-width:1024px) {

    /* Common Classes */
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 35px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 14px;
    }
    .section-subtitle {
        margin: 0;
    }
    .mobile-view {
        display: none !important;
    }
    span.home-text {
        display: none;
    }
    .vertical-padding {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .vertical-bottom-padding {
        padding-bottom: 150px;
    }
    .vertical-top-padding {
        padding-top: 150px;
    }
    .full-padding {
        padding: 150px 30px;
    }
    .side-padding-med {
        padding-right: 20px;
        padding-left: 20px;
    }
    .archive-description .entry-title, .archive-title, .author-box-title {
        font-size: 50px;
    }
    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        -moz-animation-name: fadeInDown;
        -o-animation-name: fadeInDown;
        animation-name: fadeInDown;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        -o-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        -o-animation-duration: 1s;
        animation-delay: 1s;
    }

    /* Forms */
    .form-container .col-2.form-field-item {
        width: 48%;
    }
    .popup-form .form-title {
        font-size: 34px;
    }

    /* Header Section */
    .window_scrolled .main-header {
        background: var(--white);
    }
    .site-header {
        padding: 0;
        box-shadow: 0 0 0 transparent;
    }
    .window_scrolled .site-header {
        padding: 0;
    }
    .mobile-phone-number > div {
        width: 32.5%;
        padding: 10px;
    }
    .site-header .header-topbar {
        background: var(--secondary-color);
        font-size: 16px;
        padding: 10px 0;
    }
    .site-header .header-left {
        width: auto;
    }
    .site-header .main-logo img {
        padding: 20px 0;
        max-height: 54px;
    }
    .window_scrolled .site-header .main-logo img {
        max-height: 54px;
    }
    .site-header .header-right {
        margin: 20px 0;
    }
    .window_scrolled .site-header .header-right {
        margin: 10px 0;
    }
    .site-top-news {
        z-index: 1;
    }

    /* Genesis Menu */
    .header-menu {
        margin-bottom: 0;
    }
    ul.genesis-nav-menu > li:last-child {
        margin-right: 0;
    }
    .genesis-nav-menu > .menu-item {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }
    .genesis-nav-menu > .menu-highlight > a:focus, .genesis-nav-menu > .menu-highlight > a:hover {
        background-color: var(--primary-color);
    }
    .nav-primary .genesis-nav-menu a {
        background-color: transparent;
        border-bottom: 0;
        color: var(--white);
        font-size: 14px;
        padding: 10px 8px;
    }
    .window_scrolled .nav-primary .genesis-nav-menu a {
        color: var(--black);
    }
    .window_scrolled .genesis-nav-menu a:focus, .window_scrolled .genesis-nav-menu a:hover, .window_scrolled .genesis-nav-menu .current_page_item > a, .window_scrolled .genesis-nav-menu > .menu-item.sfHover > a {
        color: var(--white);
    }
    .genesis-nav-menu > .menu-item.menu-item-has-children > a:after, .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
        content: "\f107";
        margin-left: 5px;
        font-size: 11px;
        color: #838383;
    }
    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after, .genesis-nav-menu .current_page_item > a:after {
        color: #838383 !important;
    }
    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after {
        content: "\f106";
    }
    .genesis-nav-menu .sub-menu .menu-item-has-children.sfHover > a:after {
        content: "\f0da";
        color: var(--secondary-color);
    }
    .nav-primary .genesis-nav-menu li li > a span::before, .nav-primary .genesis-nav-menu li li > a span::after {
        display: none;
    }
    .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        right: 15px;
        position: absolute;
    }
    .window_scrolled .genesis-nav-menu .sub-menu a, .genesis-nav-menu .sub-menu .menu-item-has-children > a:hover:after {
        color: var(--black);
    }
    .genesis-nav-menu .sub-menu, .genesis-nav-menu .sub-menu a {
        width: 200px;
    }
    .genesis-nav-menu .sub-menu {
        opacity: 0;
        padding-left: 0;
        position: absolute;
        transition: opacity 0.4s ease-in-out;
        border: 0;
    }
    .genesis-nav-menu .sub-menu a {
        background-color: var(--white);
        border-bottom: 0;
        color: var(--black);
        padding-bottom: 15px;
        padding-top: 15px;
        text-align: left;
        border-radius: 0px;
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        border: 0;
    }
    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -42px 0 0 199px;
    }
    .genesis-nav-menu a:focus, .genesis-nav-menu a:hover, .genesis-nav-menu .current_page_item > a, .genesis-nav-menu > .menu-item.sfHover > a {
        background-color: var(--primary-color);
        border-radius: 5px;
        color: var(--white);
        text-decoration: none;
    }
    .genesis-nav-menu .sub-menu a:focus, .genesis-nav-menu .sub-menu a:hover, .genesis-nav-menu .sub-menu .current_page_item > a, .genesis-nav-menu .sub-menu .current_page_item > a:focus, .genesis-nav-menu .sub-menu .current_page_item > a:hover {
        text-decoration: none;
        color: var(--white);
        background-color: var(--primary-color);
        padding-left: 20px;
    }
    .genesis-nav-menu a:focus i, .genesis-nav-menu a:hover i, .genesis-nav-menu .current_page_item > a i, .genesis-nav-menu > .menu-item.sfHover > a i {
        color: var(--white);
    }
    .nav-primary.show {
        margin-top: 0;
        background-color: transparent;
    }
    .genesis-nav-menu .sub-menu a, .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }
    .nav-primary .genesis-nav-menu li li > a span::before {
        display: none;
    }

    /* Responsive Menu */
    .genesis-responsive-menu {
        display: block;
        padding-top: 15px;
    }
    .genesis-nav-menu .menu-item a:before, .genesis-nav-menu .sub-menu a:before {
        display: none;
    }

    /* Header Menu */
    .nav-primary {
        clear: left;
        top: auto;
        right: auto;
        overflow: inherit;
        position: relative;
        left: auto;
        height: auto;
        padding: 0;
        transition: none;
        display: inline-block !important;
        vertical-align: middle;
    }
    .nav-primary > .wrap {
        text-align: right;
    }
    .genesis-nav-menu {
        font-size: 0;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    .window_scrolled .genesis-nav-menu .sub-menu a:focus, .window_scrolled .genesis-nav-menu .sub-menu a:hover, .window_scrolled .genesis-nav-menu .sub-menu .current_page_item > a, .window_scrolled .genesis-nav-menu .sub-menu .current_page_item > a:focus, .window_scrolled .genesis-nav-menu .sub-menu .current_page_item > a:hover {
        color: var(--white);
        padding-left: 20px;
    }

    /* Common Classes */
    .entry-title {
        font-size: 50px;
    }
    .section-title {
        font-size: 45px;
    }
    .show-item-mobile {
        display: none;
    }
    .hide-item-mobile {
        display: block;
    }
    .mobile-center {
        text-align: left;
    }
    .slide-control .left {
        left: 15px;
    }
    .slide-control .right {
        right: 15px;
    }
    .inline-block div {
        display: inline-block;
    }

    /* Content */
    .content-sidebar-wrap {
        padding: 150px 20px 100px;
    }
    .full-width-content .content {
        position: relative;
    }
    .alignright, img.alignright, iframe.alignright {
        float: right !important;
        margin: 0 0 0 15px !important;
    }
    .alignleft, img.alignleft, iframe.alignleft {
        float: left !important;
        margin: 0 15px 0 0 !important;
    }
    figure.wp-caption.alignleft {
        margin: 15px 30px 15px 0;
        float: left;
    }
    figure.wp-caption.alignright {
        margin: 15px 0 15px 30px;
        float: right;
    }
    .entry-content .form-container .form-field {
        padding: 40px 20px 40px;
    }
    .entry-content .wp-block-column.column-content {
        padding: 30px;
        margin: 0;
    }
    .entry-content .column-homepage figure:after {
        zoom: 1;
    }

    /* Column By 5 */
    .col-1-5 {
        width: 100%;
    }
    .col-2-5 {
        width: 50%;
    }
    .col-3-5 {
        width: 33.33%;
    }
    .col-4-5 {
        width: 25%;
    }
    .col-5-5 {
        width: 20%;
    }

    /* Column Edge to Edge with Space */
    .col-2 {
        width: 49%;
    }
    .col-3 {
        width: 32%;
    }
    .col-4 {
        width: 23.5%;
    }
    .col-5 {
        width: 18.4%;
    }

    /* Column By 12 */
    .col-1-12 {
        width: 8.333%;
    }
    .col-2-12 {
        width: 16.667%;
    }
    .col-3-12, .col-1-4 {
        width: 25%;
    }
    .col-4-12 {
        width: 33.333%;
    }
    .col-5-12 {
        width: 41.667%;
    }
    .col-6-12, .col-2-4 {
        width: 50%;
    }
    .col-7-12 {
        width: 58.333%;
    }
    .col-8-12 {
        width: 66.667%;
    }
    .col-9-12 {
        width: 75%;
    }
    .col-10-12 {
        width: 83.333%;
    }
    .col-11-12 {
        width: 91.667%;
    }

    /* Hero Slider */
    .section.hero-slider:after {
        display: none;
    }
    .hero-slider .inner-with, .hero-slider-wrap, .hero-slider-wrap .hero-item, .hero-item-wrap .hero-caption {
        height: 100vh;
        min-height: 640px;
        max-height: 1000px;
        width: 100%;
        overflow: hidden;
    }
    .hero-slider .hero-caption-row {
        max-width: 600px;
        padding-left: 20px;
    }
    .hero-slider .hero-slide-title {
        margin: 0 0 20px;
    }
    .hero-slider .hero-slide-desc {
        font-size: 14px;
    }
    .hero-slider ul.slick-dots {
        position: absolute;
        bottom: 70px;
        padding: 0;
        margin: 0 auto;
        display: block;
        left: 260px;
    }
    .hero-slider ul.slick-dots li {
        list-style: none;
        display: inline-block;
        vertical-align: middle;
    }
    .hero-slider ul.slick-dots li:not(:last-child) {
        margin: 0 15px 0 0;
    }
    .hero-slider ul.slick-dots {
        left: 120px;
    }
    .hero-slider .slide-control .left, .hero-slider .slide-control .right {
        top: auto;
        bottom: 0;
        -webkit-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
    .hero-slider .slide-control .left {
        left: 0;
    }
    .hero-slider .slide-control .right {
        right: 0;
    }

    /* Page Banner */
    .inner-page-banner .page-banner {
        height: 710px;
        min-height: 710px;
        max-height: initial;
        margin: 0 auto;
    }
    .inner-page-banner .page-banner-container {
        background-color: var(--primary-color);
    }
    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 20px;
        padding-left: 20px;
    }
    .inner-page-banner .page-title-container {
        padding: 20px 0;
    }
    .inner-page-banner .page-banner-cols {
        padding: 0 15px;
    }

    /* Content */
    .entry-content .home-btn-wrap {
        display: flex;
        gap: 20px;
    }
    .entry-content .wp-block-column.column-content {
        margin: 0 0 40px;
    }
    .entry-content .column-homepage figure:before, .entry-content .page-image figure:before {
        border: 16px solid var(--primary-color);
    }

    /* Homepage Synchrony  */
    .synchrony-content {
        padding-top: 100px;
    }

    /* Homepage CTA Shortcode  */
    .cta-shortcode {
        padding-top: 100px;
    }

    /* Video Slider Block */
    .video-slide-control.slide-control .left {
        left: 110px !important;
    }
    .video-slide-control.slide-control .right {
        right: 110px !important;
    }

    /*Blog Post, Archive*/
    .archive-items {
        margin: 0 0 60px;
        gap: 20px;
    }
    .blog-items {
        gap: 20px;
    }

    /* Ductless Section */
    .ductless-section .col-2 {
        width: 48%;
    }

    /* Gallery Section */
    .gallery-section .slmp-gallery {
        margin-bottom: 40px;
    }
    .gallery-section .gallery-content {
        overflow: hidden;
    }
    .gallery-section .slmp-gallery.slmp-grid-gallery.slmp-relative {
        left: 90px;
    }

    /* Gallery Page */
    .page-id-232 .slmp-image-item, .page-id-232 .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 447px;
    }
    .slmp-image-item {
        margin-bottom: 30px;
    }

    /* Reviews Section */
    .section-reviews .review-listing {
        margin: 0;
    }
    .section-reviews .section-heading {
        padding: 0 90px;
    }
    .section-reviews .slide-control .left {
        left: 0;
    }
    .section-reviews .slide-control > div {
        position: relative;
        display: inline-block;
        margin: 0px 5px;
    }
    .section-reviews .slide-control {
        text-align: right;
    }
    .section-reviews .slide-control .right {
        right: 5px;
    }
    .section-reviews .slide-control .left, .section-reviews .slide-control .right {
        top: auto;
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
    }
    .section-reviews .review-author {
        font-size: 13px;
    }

    /* Choose Section */
    .icta-section .section-heading {
        width: 65%;
    }

    /* CTA */
    .icta-section .section-heading, .fcta-section .section-heading {
        width: 65%;
    }

    /* Footer Section */
    .footer-row.main-footer {
        padding: 150px 0;
    }
    footer .footer-section {
        font-size: 16px;
    }
    footer .copy-wrapper {
        padding: 60px 80px;
    }
    footer .copy-wrapper > div {
        width: 50%;
    }
    footer .copy-logo img {
        max-width: 317px;
    }
    .floating-cta {
        width: auto;
        text-align: center;
        transition: right ease-in .3s;
        position: fixed;
        transform-origin: top right;
        right: 10px;
        left: auto;
        bottom: auto;
        top: 0;
        transform: rotate(-90deg) translateY(-100%);
        margin-top: 35vh;
        padding: 0 0;
        max-width: max-content;
    }
    .floating-cta a {
        background: linear-gradient(to right, rgba(33, 54, 113, 1) 0%, rgba(56, 83, 157, 1) 100%);
        border-radius: 5px;
        font-size: 22px;
        padding: 12px 20px;
        width: 100%;
    }
    .window_scrolled .floating-cta a {
        width: 100%;
    }

    /* Back to Top */
    .move-to-top {
        bottom: 130px;
        right: 10px;
    }
}
@media only screen and (min-width:1201px) {

    /* Common Classes */
    a.site-btn {
        min-width: 140px;
    }
    .side-padding-med {
        padding-right: 90px;
        padding-left: 90px;
    }

    /* Header Section */
    .entry-content .form-container .form-field {
        padding: 40px 60px 40px;
    }
    .site-header .main-logo img {
        max-height: 60px;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-row {
        padding-left: 100px;
    }
    .hero-slider .hero-slide-desc {
        font-size: 22px;
    }

    /* Homepage Content */
    .entry-content .hp-content {
        padding: 50px;
    }

    /* Ductless Section */
    .ductless-section .ductless-desc {
        font-size: 18px;
    }
    .ductless-section .ductless-info {
        padding: 60px;
    }

    /* Counter Section */
    .counter-section .counter-title {
        font-size: 30px;
    }

    /* Choose Section */
    .choose-section .choose-desc {
        font-size: 18px;
    }

    /* Gallery Section */
    .gallery-section .slmp-gallery.slmp-grid-gallery.slmp-relative {
        left: 260px;
    }
    .gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 414px;
    }

    /* Footer Section */
    footer .copy-logo img {
        max-width: 447px;
    }
}
@media only screen and (min-width:1367px) {

    /* Common Classes */
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 35px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 16px;
    }
    .side-padding {
        padding-right: 150px;
        padding-left: 150px;
    }
    .full-padding {
        padding: 120px;
    }
    .slide-control .left {
        left: 160px;
    }
    .slide-control .right {
        right: 160px;
    }

    /* Header Section */
    .site-header .header-info {
        font-size: 16px;
    }
    .site-header .header-icon-wrap {
        width: 40px;
        height: 40px;
    }
    .site-header .main-logo img {
        max-height: 70px;
    }
    .window_scrolled .site-header .main-logo img {
        max-height: 62px;
    }
    .site-header ul.header-info-items li {
        font-size: 18px;
    }
    .site-header ul.header-info-items li:before {
        top: 18px;
        width: 12px;
        height: 12px;
    }

    /* Header Menu */
    .header-menu {
        margin-bottom: 0px;
    }
    .nav-primary .genesis-nav-menu a i {
        font-size: 15px;
    }
    .genesis-nav-menu a, .genesis-nav-menu > span {
        padding: 50px 0;
    }
    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -47px 0 0 199px;
    }
    .genesis-nav-menu>.menu-item.menu-item-has-children>a:after, .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-size: 15px;
    }
    .nav-primary .genesis-nav-menu a {
        font-size: 16px;
        padding: 10px;
    }
    .nav-primary .genesis-nav-menu .sub-menu a, .window_scrolled .nav-primary .genesis-nav-menu .sub-menu a {
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 0;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-row {
        max-width: 880px;
        padding-left: 10%;
    }
    .hero-slider .hero-slide-title {
        font-size: 90px;
    }
    .hero-slider .hero-slide-control {
        left: 145px;
    }
    .hero-slider ul.slick-dots {
        left: 255px;
    }
    .hero-slider .hero-slide-btn a {
        min-width: 215px;
        font-size: 16px;
        padding: 14px 20px;
    }

    /* Page Banner */
    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 60px;
        padding-left: 60px;
    }
    .inner-page-banner .page-title {
        font-size: 90px;
    }

    /* Page Content */
    .content-sidebar .content-sidebar-wrap {
        padding: 20px 125px 200px 100px;
    }

    /* Homepage */
    .entry-content .hp-content {
        width: 47%;
    }

    /* Reviews Section */
    .section-reviews .section-heading {
        padding: 0;
    }
    .section-reviews .review-author {
        font-size: 16px;
    }
}
@media only screen and (min-width:1601px) {

    /* Header Menu */
    .nav-primary .genesis-nav-menu > a {
        padding: 35px 0px;
    }
    .nav-primary .genesis-nav-menu a {
        padding: 10px 13px;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-row {
        padding-left: 0;
    }

    /* Homepage */
    .entry-content .hp-content {
        width: 50%;
    }
}

/* Max Width CSS */
@media only screen and (max-width:1023px) {

    /* Common Classes  */
    .site-top-news {
        border-bottom: 1px solid var(--secondary-color);
    }
    .wp-block-image {
        text-align: center;
        padding-bottom: 20px;
    }
    .gap30 {
        gap: 15px;
    }
    a.site-btn {
        padding: 10px 15px;
    }
    span.block-content {
        display: block;
    }

    /* Header Section */
    .main-header .inner-width {
        padding: 0;
    }
    .mob-item .social-media .social-item {
        display: inline-block;
        margin: 0 0 6px 0;
    }
    .mob-item .social-media a.media-label {
        display: none !important;
    }
    .site-header .header-info-lists {
        position: fixed;
        top: 127px;
    }
    .site-header ul.header-info-items li {
        padding: 0 20px;
    }
    .site-header ul.header-info-items li:before {
        top: 6px;
        width: 12px;
        height: 12px;
    }
    .window_scrolled .site-header .header-info-lists {
        display: none;
    }
    .site-header .header-phone {
        background-color: var(--primary-color);
        text-align: center;
        width: 100%;
    }
    .site-header .header-phone a {
        color: var(--white);
        display: inline-block;
        padding: 5px 0 5px 40px;
        text-align: center;
        font-size: 20px;
        margin: 0 auto;
    }
    .site-header .header-mobile-phone {
        background-color: var(--secondary-color);
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 18px;
        padding: 5px 20px;
        gap: 30px;
    }
    .site-header .header-mobile-phone a {
        color: var(--white);
        display: block;
        font-size: 14px;
        position: relative;
        line-height: 1;
    }
    .site-header .mobile-no {
        font-weight: 700;
        font-size: 22px;
    }
    .site-header .mobile-email i {
        padding-right: 5px;
    }
    .window_scrolled .site-header .header-mobile-phone {
        margin-top: -50px;
        overflow: hidden;
    }
    .site-header .header-mobile-phone > div, .site-header .mobile-no {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .site-header .header-icon-mob-wrap {
        color: var(--primary-color);
    }
    .site-header .mobile-email .header-icon-mob-wrap {
        font-weight: 400;
    }
    .site-header .mobile-no .header-icon-mob-wrap {
        background-color: var(--primary-color);
        color: var(--white);
        width: 30px;
        height: 30px;
        position: relative;
        border-radius: 5px;
        display: inline-block;
        margin-right: 5px;
    }
    .site-header .mobile-no .header-icon-mob-wrap i {
        color: var(--white);
        font-size: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .site-header .logo-nav {
        display: block;
        height: 70px;
    }
    .window_scrolled .site-header .logo-nav {
        height: 50px;
        background-color: var(--white);
    }
    .window_scrolled .header-left {
        height: 50px;
        overflow: hidden;
    }
    .site-header .main-logo img {
        position: absolute;
        left: 0;
        z-index: 301;
        right: 0;
        margin: 0 auto;
        top: 23px;
        padding: 0;
        max-height: 19px;
    }
    .window_scrolled .site-header .main-logo img {
        max-height: 18px;
        top: 19px;
    }
    .site-top-news {
        display: none;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu a i {
        display: none;
        color: var(--primary-color);
    }
    .nav-primary {
        background-color: var(--primary-color);
        margin-top: 70px;
        padding: 15px 10px 150px;
    }
    .window_scrolled .nav-primary {
        margin-top: 0;
    }

    /* Hero Slider */
    .hero-slider .hero-item:after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(13, 13, 13, 0.68) 5%, rgba(64, 64, 64, 0.59) 30%, rgba(255, 255, 255, 0.08) 90%, rgba(255, 255, 255, 0) 100%);
    }
    .hero-item-wrap .hero-caption.justify-content-left {
        justify-content: center;
    }
    .hero-slider .hero-item .inner-with {
        padding: 0;
    }
    .hero-slider .hero-caption-row {
        margin-top: 230px;
        margin-bottom: 110px;
        text-align: center;
    }
    .hero-slider .hero-caption-row, .hero-slider .hero-slide-title, .hero-slider .hero-slide-desc {
        text-align: center;
    }
    .hero-slider .hero-slide-title {
        margin-bottom: 20px;
    }
    .hero-slider .hero-slide-btn {
        display: block;
    }
    .hero-slider .hero-slide-btn > a {
        display: inline-block;
        margin: 0 5px 10px;
    }
    .hero-slider .hero-slide-btn a.header-popup {
        display: inline-block;
    }
    .hero-slider ul.slick-dots, .hero-slide-control.slide-control {
        display: none !important;
    }
    .hero-slider .form-field {
        background-color: rgba(7, 16, 19, .92);
        box-shadow: 0px 0px 40px 0px rgba(7, 16, 19, .32);
    }

    /* Page Banner */
    .inner-page-banner .page-title, .breadcrumbs {
        text-align: center;
    }
    body:not(.home) .content-sidebar-wrap:after {
        right: 20px;
    }

    /* Content */
    .entry-content .wp-block-columns.column-homepage {
        display: flex;
        flex-direction: column-reverse;
        max-width: 400px;
        margin: 0 auto;
    }
    .entry-content .home-btn {
        margin: 0 0 15px;
    }
    .site-inner .content a.site-btn {
        font-size: 16px;
        min-width: 160px;
    }
    .home .content-sidebar-wrap {
        padding: 100px 15px 320px;
    }
    .entry-content .wp-block-group.content-block .block-primary, .entry-content .wp-block-group.content-block .block-secondary {
        padding: 30px;
    }
    .services-column > div {
        margin: 30px 0 0 !important;
    }
    .padding-60 {
        padding: 20px;
    }

    /* Page Content */
    .wp-block-group.map-wrap {
        margin-top: 60px;
    }
    .content-sidebar .content-sidebar-wrap, .content-sidebar .breadcrumbs .inner-width {
        margin: 0 auto;
        padding: 0px 15px;
    }
    .wpcf7-submit {
        font-size: 16px;
        padding: 15px 35px;
    }

    /* Homepage Content */
    .entry-content .hp-content {
        position: relative;
        margin: 0;
    }
    .home .site-inner:after {
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto 100px;
    }

    /* Services Section */
    .services-section .service-item {
        width: 100%;
        max-width: 480px;
    }
    .services-section .inner-width {
        padding: 0
    }
    .services-section .section-heading {
        padding: 0 15px;
    }
    .services-section .service-title {
        font-size: 22px;
    }
    .services-section .service-desc {
        font-size: 14px;
    }
    .ductless-section .ductless-image {
        height: 274px;
    }

    /* CTA Section */
    .cta-section .cta-btn a {
        min-width: 280px;
    }
    .cta-section .section-title {
        text-align: center;
    }
    .cta-section .section-title.divider:after {
        margin: 0 auto;
    }

    /* Pages */
    .wp-container-2.wp-block-column {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .wp-container-2.wp-block-column {
        padding: 40px 15px 10px;
    }
    .full-width-table {
        display: grid;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* Choose Section */
    .choose-section .choose-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }
    .choose-section .choose-content {
        padding: 0 0 0 20px;
    }
    .choose-section .choose-icon img {
        zoom: .8;
    }
    .choose-section .choose-title {
        font-size: 22px;
    }
    .choose-section .choose-desc {
        font-size: 14px;
    }

    /* Gallery Section */
    .gallery-section .slmp-image-item img, .gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 520px;
    }
    .gallery-section .slmp-gallery.slmp-grid-gallery .slmp-image-item:not(:first-child) {
        margin-left: 20px;
    }
    .gallery-section .gal-slide-control.slide-control {
        width: 100%;
        margin: 10px 0;
    }
    .gallery-section .gallery-btn {
        margin-top: 40px;
    }

    /* Reviews Section */
    .section-reviews {
        padding-top: 70px;
    }
    .section-reviews .inner-with {
        padding: 0;
    }
    .section-reviews  .slide-control > div {
        display: inline-block;
        position: relative;
        margin: 0;
    }
    .section-reviews .slide-control {
        text-align: center;
        padding: 30px 0 0;
    }
    .section-reviews .review-listing {
        margin: 0;
    }
    .section-reviews .section-title span {
        display: block;
    }
    .section-reviews .review-btn {
        gap: 10px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .section-reviews .section-heading {
        text-align: center;
    }
    .section-reviews .divider:after {
        margin: 0 auto;
    }

    /* FAQ Section */
    .faq-section .slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question:before {
        right: 8px;
        height: 60px;
        padding: 22px;
    }

    /* Gallery Page */
    .slmp-gallery .slmp-image-label {
        font-size: 13px;
        left: 10px;
        right: 10px;
    }

    /* Gallery Section */
    .gallery-section .slmp-gallery.slmp-grid-gallery.slmp-relative {
        margin-left: 20px;
    }

    /* Counter Section */
    .counter-section .col-4 {
        width: 49%;
        margin-bottom: 30px;
    }
    .counter-section .counter-number {
        height: 145px;
        width: 145px;
        font-size: 55px;
    }
    .counter-section .counter-title {
        font-size: 20px;
    }
    .icta-section .section-heading {
        text-align: center;
    }

    /* Ductless Section */
    .ductless-section .ductless-info {
        max-width: 600px;
        margin: 0px auto;
    }
    .ductless-section .ductless-featured {
        max-width: 600px;
        margin: 50px auto 0;
        padding: 20px;
    }

    /* CTA Section */
    .icta-section .icta-btn {
        margin: 0 auto;
        max-width: 500px;
    }

    /* Blog Page */
    .blog-post-wrap {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Footer CTA */
    .fcta-section .fcta-btn {
        margin: 30px auto;
        max-width: 500px;
    }
    .fcta-section .section-heading {
        text-align: center;
    }

    /* Footer Section */
    footer .footer-column {
        max-width: 480px;
        margin: 0 auto 0;
    }
    footer .footer-item-rows {
        margin-bottom: 35px;
    }
    footer .footer-logo {
        text-align: center;
        padding: 0;
        max-width: 140px;
        margin: 0 auto;
    }
    footer .social-media {
        -webkit-justify-content: center;
        justify-content: center;
    }
    footer .copy-wrapper {
        display: block;
        text-align: center;
    }
    footer .copyright-text {
        margin: 20px 0;
        text-align: center;
        font-size: 14px;
    }
    footer .view-more-links {
        display: block;
        margin: 0px auto 60px;
        text-transform: uppercase;
        width: 100%;
    }
    footer.footer-section .view-more-links .more-links {
        background-color: var(--primary-contrast);
        border-radius: 5px;
        color: var(--white);
        display: block;
        cursor: pointer;
        padding: 12px 15px;
        font-size: 14px;
    }
    footer .view-more-links .more-links:after {
        font-style: normal;
        content: "\f063";
        display: inline-block;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 5px;
        position: relative;
    }
    footer .view-more-links .more-links.active:after {
        transform: rotate(180deg);
    }
    div#footer-count2, div#footer-count3, div#footer-count4 {
        display: none;
    }
    footer .more-links {
        padding: 10px 0;
        border: 2px solid rgba(230, 237, 247, .20);
        color: var(--gray-300);
        border-radius: 5px;
        font-size: 16px;
    }
    footer .copyright-section {
        padding: 0;
    }

    /* Sticky CTA */
    .window_scrolled .floating-cta-wrap > a {
        width: 50%;
    }
    .floating-cta a {
        font-size: 18px;
        margin: 0 auto;
        display: grid;
        min-width: 114px;
        align-items: center;
    }
    .window_scrolled .floating-cta a {
        font-size: 18px;
        display: flex;
        justify-content: center;
    }
    .floating-cta .floating-cta-wrap {
        padding: 0 10px;
    }
    .floating-cta a.sticky-form {
        border-radius: 5px;
        min-width: 300px;
        background-color: var(--primary-color);
    }
    .window_scrolled a.sticky-form {
        min-width: 114px;
    }
    .window_scrolled .sticky-no {
        display: inline-block;
    }
    .floating-cta br {
        display: none;
    }
    .window_scrolled .floating-cta br {
        display: block;
    }
    .floating-cta i {
        margin: 0 3px 3px 0;
        font-size: 14px;
    }
    .window_scrolled .floating-cta i {
        margin: 0 0 3px;
    }

    /* XAPP */
    #xapp-widget .xapp-chat-button {
        z-index: 100;
        bottom: 22px !important;
    }
}
@media only screen and (max-width:768px) {

    /* Reviews Section */
    .section-reviews .review-item {
        padding: 0;
    }
}
@media only screen and (max-width:480px) {
    .gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 294px;
    }
    .slmp-gallery {
        margin-bottom: 0;
        margin-left: 20px;
        width: 580px;
    }
}

/* Genesis */
@media (max-width:781px) {

    /* Contact Us Page */
    .map-wrap iframe {
        width: 100%;
    }
}
