/* Variable */
:root {
    --primary-color: #ee0000;
    --secondary-color: #212323;
    --tertiary-color: #222422;
    --color-body-text: #000000;
    --body-font: "Rubik", sans-serif;
    --white: #fff;
    --black: #000;
    --gray-100:#807e7e;
    --gray-200:#929292;
    --gray-300:#999999;
    --gray-400:#ececec;
}

/* Typographical Elements */
body {
    color: var(--color-body-text);
    font-family: var(--body-font);
    font-size: 18px;
    margin: 0 auto;
    display: block;
    line-height: 1.5;
    font-weight: 400;
}

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 {
    font-family: var(--body-font);
    color: var(--black);
    font-weight: 600;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 12px;
}

/* 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(--primary-color);
    border-radius: 0;
    padding: 15px 25px;
    width: initial;
    font-family: var(--body-font);
    transition: all .5s;
    overflow: hidden;
    z-index: 1;
}

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(--body-font);
}

.wpcf7-acceptance span {
    margin: 0;
}

/* Site Container */
.site-inner {
    background-color: var(--white);
    clear: both;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    padding: 0;
}

.home .site-inner {
    background-color: #f7f7f7;
}

body:not(.home) .site-inner:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(/wp-content/uploads/2025/03/content-img.jpg) no-repeat;
    width: 438px;
    height: 192px;
}

.content-sidebar-wrap {
    width: 100%;
    max-width: 1200px;
    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 */
.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(--gray-200);
}

.b-white {
    background-color: var(--white);
}

.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 {
    color: var(--white);
    display: inline-block;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 18px;
    min-width: 150px;
}

a.site-btn i {
    font-size: 16px;
}

a.btn-hvr:hover {
    color: var(--white);
}

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(--secondary-color);
    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 {
    background: var(--primary-color);
    color: var(--white);
}

a.btn-two {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--white);
}

a.btn-three {
    background-color: var(--white);
    color: var(--primary-color);
}

a.btn-four {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--primary-color);
}

a.btn-five {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.regular {
    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;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.section-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title.divider {
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 10px;
    position: relative;
    padding: 5px 10px;
}

.section-desc {
    font-size: 18px;
    margin-bottom: 18px;
}

.section-alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    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: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
    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;
}

.bg-white {
    background-color: var(--white);
}

.bg-lgray {
    background-color: var(--gray-100);
}

.bg-dark {
    background-color: var(--secondary-color);
}

.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 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    text-align: right;
    color: var(--black);
    cursor: pointer;
    z-index: 2;
    font-size: 22px;
    transition: all 0.6s ease;
    background-color: var(--white);
    padding: 5px 15px;
}

.slide-control .left {
    left: 0px;
}

.slide-control .right {
    right: 0px;
}

.slide-control > div:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hide-text-label {
    display: none;
}

.divider:after {
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 4px;
    width: 87px;
}

/* 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: 14px;
}

.breadcrumbs .bc-wrap {
    color: var(--white);
}

.breadcrumbs .breadcrumb-link-wrap a {
    display: inline-block;
}

.breadcrumbs .breadcrumb-link-wrap a, .breadcrumbs .breadcrumb-link-wrap a .home-icon, .breadcrumbs .breadcrumb-link-wrap a:hover, .breadcrumbs .breadcrumb-link-wrap a:hover .home-icon:after {
    color: var(--white);
}

.breadcrumbs .home-icon:after {
    color: var(--white);
    content: "\f015";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
}

.breadcrumbs .separator {
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    padding: 0px 10px;
    position: relative;
}

.archive-description p:last-child, .author-box p:last-child {
    margin-bottom: 0;
}

.archive-description .entry-title, .archive-title, .author-box-title {
    font-size: 40px;
    font-weight: 600;
    text-align: left;
}

/* Titles */
.archive-description .entry-title, .entry-title, .archive-title, .author-box-title {
    margin-bottom: 50px;
}

.entry-title {
    font-size: 40px;
    color: var(--black);
    text-align: center;
}

.entry-title a {
    color: var(--black);
    text-decoration: none;
}

.entry-title a:focus, .entry-title a:hover {
    color: var(--black);
}

.single .entry-title, .archive .archive-title {
    font-weight: 600;
    text-align: center;
}

.entry-comments {
    padding: 60px 0 0;
}

.entry-footer .entry-meta {
    border-top: 1px solid var(--primary-color) !important;
}

/* 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;
}

.form-container .wpcf7-acceptance label {
    display: block;
}

.form-container .form-field .form-field-item input {
    padding: 10px 20px 10px 20px;
}

.form-container .form-field .form-field-item select {
    padding: 10px 35px 10px 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: #636363;
}

.form-container .wpcf7-form-control-wrap {
    display: grid;
}

.recaptcha-note, .recaptcha-note a {
    line-height: 1.2;
    font-size: 14px;
    margin: 20px 0;
}

.form-field-disclaimer {
    font-size: 14px;
    line-height: 1.4;
    padding: 15px 0 20px;
    margin: 0 !important;
}

.recaptcha-note, .form-field-disclaimer {
    color: #737373;
}

.recaptcha-note a, .recaptcha-note a:hover {
    color: var(--secondary-color);
}

.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;
}

.popup-form div.wpcf7-response-output {
    bottom: -44px;
}

.popup-form .form-title-desc-wrap {
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
}

.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(--color-body-text);
}

.wpcf7-submit {
    background-color: var(--primary-color);
    border: 0 !important;
    min-width: 150px;
}

.wpcf7-submit:hover, .wpcf7-submit:focus {
    border: 0 !important;
    background: var(--secondary-color) !important;
    color: var(--white);
}

.show-text-label {
    font-size: 12px;
}

.show-text-label span {
    color: var(--black);
}

/* SFS Gallery */
.slmp-gallery h2, h2.slmp-video {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.slmp-gallery h2:after, h2.slmp-video:after {
    content: "";
    height: 7px;
    position: absolute;
    overflow: hidden;
    width: 86px;
    background-color: var(--primary-color);
    bottom: -17px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.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;
}

.site-sec-gallery .gallery-section-wrap {
    padding: 30px 40px 0;
}

.slmp-image-item {
    border-radius: 0;
    height: 285px;
    margin-bottom: 30px;
    overflow: hidden;
}

.slmp-image-item, .slmp-grid-image.slmp-text-center.slmp-relative {
    overflow: hidden;
    height: 285px;
}

.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: var(--white) !important;
    border: 1px solid var(--tertiary-color) !important;
    border-radius: 0;
    color: var(--tertiary-color) !important;
    font-size: 18px;
    font-weight: 600;
    margin: 0 5px 10px;
    min-width: initial !important;
    padding: 15px !important;
    position: relative !important;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.slmp-category-navigation .slmp-cat-title:hover, .slmp-category-navigation .slmp-cat-title:focus, .slmp-category-navigation .slmp-cat-title.active {
    background-color: var(--tertiary-color) !important;
    border: 1px solid var(--tertiary-color) !important;
    color: var(--white) !important;
}

.slmp-gallery .slmp-image-item .slmp-image {
    width: 100%;
}

.slmp-image-item img {
    min-height: 300px;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
}

.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;
}

.slmp-image-item .slmp-text-center:before {
    font-size: 18px;
    font-weight: 600;
    right: 0;
    top: 140px;
    left: 0;
    position: absolute;
    z-index: 4;
    text-align: center;
    color: var(--white);
    content: 'View Image';
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.slmp-image-item:hover .slmp-text-center:before {
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}

.slmp-image-item .slmp-text-center:after {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    content: '';
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.slmp-image-item:hover .slmp-text-center:after {
    opacity: 1;
    background-color: var(--primary-color);
    background-color: rgba(238, 0, 0, .7);
}

.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-gallery .slmp-gallery-load-more button {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    min-width: 100px !important;
    padding: 15px 20px !important;
    border-radius: 0;
}

/* Video Slider */
.slide-video-listing {
    max-width: 800px;
    margin: 0 auto 100px;
}

.slide-video-listing .slide-video-list {
    padding: 70px 60px;
}

.slide-video-list iframe {
    background: var(--white);
    padding: 10px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.22);
}

/* 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: 48px;
}

.window_scrolled .mob-dot-toggle {
    top: 48px;
}

.mobile-dots-items {
    background-color: var(--primary-color);
    font-size: 15px;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 109px;
    height: 100%;
    overflow-y: scroll;
    padding: 15px 15px 150px 15px;
    z-index: 2;
}

.window_scrolled .mobile-dots-items {
    top: 79px;
    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";
}

.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: 400;
}

.genesis-nav-menu a, .genesis-nav-menu .sub-menu a {
    font-size: 15px;
}

.genesis-nav-menu a:focus, .genesis-nav-menu a:hover, .genesis-nav-menu .current-menu-item > a, .genesis-nav-menu .sub-menu .current-menu-item > a:focus, .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
    text-decoration: none;
    background-color: var(--white);
    color: var(--color-body-text);
}

.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 .sub-menu a {
    background-color: var(--primary-color);
}

.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: 0px 0;
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 31px;
    transition: all 0.6s ease;
}

body.window_scrolled .menu-toggle {
    top: 0;
}

.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;
}

button.menu-toggle:before, .menu-toggle.activated::before {
    color: var(--white);
}

.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(--white) !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: 400;
}

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 {
    content: "\f14a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--black);
    font-size: 18px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
}

.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: 30px;
    padding-bottom: 0;
}

.entry-content .featured-image figure {
    padding-right: 20px;
}

.featured-column .featured-image figure:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 85%;
    height: 85%;
    top: -20px;
    right: 0;
    z-index: -1;
}

.featured-column .featured-image .image-wrap {
    text-align: right;
}

/* About Page */
.wp-block-columns.column-wrapper > div {
    padding: 40px;
    background-color: var(--white);
}

.wp-block-columns.column-wrapper h2 {
    position: relative;
    margin: 0 0 40px;
    font-size: 22px;
}

.wp-block-columns.column-wrapper h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -20px;
    left: 0;
}

/* Pagination */
.pagination {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 60px 0 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;
}

.archive-pagination li a {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--black);
    font-weight: 600;
    padding: 10px 17px;
}

.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(--white);
}

.pagination ul li:before {
    display: none;
}

/* Back to Top */
.move-to-top {
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 150px;
    width: 40px;
    height: 40px;
    z-index: 199;
}

.to-top {
    position: relative;
    text-align: center;
    line-height: 1.2em;
}

/* 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-title-desc-wrap {
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
}

.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(--primary-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(--white);
}

.popup-form .form-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 30px 40px 0;
    text-align: center;
}

.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 .recaptcha-note, .popup-form .form-field-disclaimer, .popup-form .form-field-submit {
    text-align: center;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    z-index: 199;
    width: auto;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
    display: block;
}

.floating-cta a {
    cursor: pointer;
    padding: 8px 15px;
    font-size: 15px;
    position: relative;
    line-height: 1;
    color: var(--white);
    width: 100%;
    transition: none;
    background-color: var(--primary-color);
}

/* 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 {
    width: 100%;
}

/* Social Media */
.social-media a.sprite {
    background-color: transparent;
    display: inline-block;
    margin-right: 8px;
    width: 28px;
}

.social-media a.sprite:last-child {
    margin-right: 0;
}

.social-media a.sprite span {
    background-repeat: no-repeat;
    height: 22px;
    display: block;
    margin: 0 auto;
    background-position-y: 0;
    filter: brightness(0) invert(1);
}

#sprite-icon-facebook span {
    background-position-x: -39px;
}

#sprite-icon-googlebiz span {
    width: 27px;
    background-position-x: 0px;
}

#sprite-icon-instagram span {
    background-position-x: -79px;
}

#sprite-icon-linkedin span {
    background-position-x: -117px;
}

#sprite-icon-youtube span {
    background-position-x: -156px;
}

.social-media .social-item {
    display: inline-block;
    margin: 0;
}

.social-media .social-item a {
    display: inline-block;
    vertical-align: middle;
}

.header-social .social-media .social-item {
    display: inline-block;
    margin: 0;
}

.header-social .social-media a.media-label {
    display: none;
}

.mob-item .social-media a.sprite {
    margin-right: 0;
}

.mob-item .social-media a.sprite span {
    filter: brightness(0) invert(1);
}

.ftr-item .social-media .social-item:first-child {
    margin-left: 0;
}

/* 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;
}

.window_scrolled .site-header {
    position: fixed;
}

.site-header .header-info {
    font-size: 14px;
    gap: 20px;
}

.site-header .header-info, .site-header .header-info a {
    color: var(--white);
    font-weight: 400;
}

.site-header .header-info-phone a {
    font-size: 18px;
}

.site-header .header-info-phone i {
    font-size: 16px;
}

.site-header .main-logo img {
    max-height: 80px;
}

.site-header .header-logo, .site-header .main-logo img {
    transition: all 0.5s ease-in-out;
}

.site-top-news {
    background-color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
}

.site-top-news i {
    font-size: 15px;
}

/* 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-color: rgba(0, 0, 0, .60);
}

.hero-slider .hero-caption-wrap {
    text-align: center;
    padding: 20px 18%;
}

.section.inner-page-banner:after {
    height: 650px;
}

.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;
}

.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;
}

.hero-slider .hero-slide-desc {
    line-height: 1.2;
    font-size: 16px;
}

.hero-slider .hero-slide-title, .hero-slider .hero-slide-desc, .hero-slider .hero-slide-btn, .hero-slide-sub-title {
    opacity: 0;
}

.hero-slider .hero-slide-title.animated.activate, .hero-slider .hero-slide-desc.animated.activate, .hero-slider .hero-slide-btn.animated.activate, .hero-slide-sub-title.animated.activate {
    opacity: 1;
}

.hero-slide-sub-title.animated.activate {
    animation-delay: 0s;
}

.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: 1.5s;
    margin-bottom: 10px;
}

.hero-slider .hero-slide-btn {
    margin-top: 30px;
}

/* Hero Slick Dots */
.hero-slider ul.slick-dots {
    text-align: center;
    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 {
    padding: 0;
    font-size: 0;
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.hero-slider ul.slick-dots li button:hover {
    background: var(--white) !important;
    border: 0;
}

.hero-slider ul.slick-dots li:before {
    display: none;
}

/* Page Banner */
.inner-page-banner .page-banner {
    height: 100vh;
    min-height: 560px;
    max-height: 560px;
    background-color: var(--secondary-color);
}

.inner-page-banner .page-title-container {
    z-index: 2;
    padding: 15px;
}

.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;
}

.inner-page-banner .page-title {
    font-size: 35px;
    line-height: 1.3;
    padding: 10px 0 10px;
}

.inner-page-banner .page-banner-cols {
    padding: 0 15px;
    margin: 65px 0 0;
}

.inner-page-banner .page-banner-container:before {
    content: '';
    background-color: rgba(0, 0, 0, .60);
    width: 100%;
    height: 570px;
    position: absolute;
    top: 0;
    z-index: 2;
}

/* Page */
.entry-content .form-container {
    background: var(--white);
    box-shadow: 0px 0px 60px 0px rgb(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: 1em !important;
}

/* Gallery Page */
.page-id-232 .slmp-gallery {
    margin-bottom: 30px;
}

/* Contact Us Page */
.map-wrap iframe {
    min-height: 580px;
    width: 100%;
}

/* Reviews Page */
.page-id-502 .latest-news {
    border-top: 1px solid #e7e7e7;
}

.navigation.pagination .nav-links .page-numbers {
    background-color: transparent !important;
    border: 1px solid var(--primary-color);
    color: var(--black);
    line-height: 1;
    padding: 10px 15px !important;
    border-radius: 0px;
}

.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: 0px !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;
}

.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(--black);
    position: absolute;
    right: 10px;
    top: 6px;
    width: 20px;
    height: 10px;
    content: "\f0dd";
    pointer-events: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 21px;
}

.archive-items select {
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 0;
    color: var(--black) !important;
    cursor: pointer;
    font-size: 16px;
    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;
}

.archive-items select:hover, .archive-items select:focus {
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    color: var(--black) !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(--black);
}

.archive-items select option {
    background-color: #f0f0f0;
    color: var(--black);
    font-weight: 600;
}

.archive-items select option:first-child {
    display: none;
}

.blog-items {
    padding: 20px 0 40px;
}

.blog-items .blog-item {
    margin: 0 0 27px;
    border: 1px solid var(--gray-400);
}

.blog-items .blog-entry {
    background: var(--primary-color);
    color: var(--white);
    position: absolute;
    z-index: 3;
    right: 27px;
    top: 18px;
    width: 60px;
    height: 60px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.blog-items .date {
    font-size: 24px;
}

.blog-items .month {
    font-size: 10px;
}

.blog-items .date-wrapper span {
    display: block;
    line-height: 1;
}

.blog-items .blog-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.blog-items .post-btn a {
    display: block;
    font-size: 14px;
}

.blog-items .blog-image {
    min-height: 210px;
    height: 210px;
}

.blog-items .blog-content {
    font-size: 14px;
    margin: 0 0 30px;
}

.blog-items .blog-content, .blog-items .blog-title a {
    color: var(--black);
}

.blog-items .blog-content p {
    margin: 0;
    color: var(--color-body-text);
    font-size: 14px;
}

.blog-items .blog-entry, .blog-items .blog-entry a {
    color: var(--white);
}

.blog-items .blog-date {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.blog-items .blog-date span {
    display: block;
    line-height: 1;
    position: relative;
}

.blog-items .blog-wrapper {
    background-color: var(--white);
    padding: 40px 30px 0;
}

.blog-items .link-wrapper {
    padding: 0 30px 0 30px;
}

.blog-items .hvr:hover .link-wrapper {
    padding: 0;
}

.blog-items .blog-link {
    background-color: var(--tertiary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 20px;
    text-align: center;
    width: 170px;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-items .hvr:hover .blog-link {
    display: block;
    background-color: var(--primary-color);
    width: 100%;
    transition: all 0.3s ease;
}

.blog-items .ellips {
    color: var(--black);
}

/* Section Order */
section.full-width-section {
    width: 100%;
    overflow-x: clip;
}

/* Services Section */
.services-section:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .76);
}

.services-section .service-item {
    background-color: var(--white);
    padding: 30px;
    min-height: 382px;
    margin-bottom: 20px;
}

.services-section .f-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.services-section .f-image {
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.services-section .hvr:hover .f-image {
    transform: scale(1.3);
}

.services-section .service-title {
    font-size: 30px;
    margin: 0 0 20px;
}

.services-section .service-title a {
    color: var(--white);
}

.services-section .service-desc {
    margin: 0 0 20px;
}

.services-section .service-desc, .services-section .service-link {
    font-size: 16px;
}

.services-section .service-link:hover {
    transform: translateY(-8px);
}

.services-section .service-link a {
    color: var(--primary-color);
}

.services-section .service-link i {
    font-size: 15px;
}

.services-section .service-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    background-color: rgba(0, 0, 0, .40);
}

.services-section .service-item.hvr:hover:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    background-color: rgba(238, 0, 0, .80);
}

.services-section .service-wrapper {
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.service-item.hvr.service-3 {
    background-position: center right;
}

/* Inner Services Section */
.inner-services-section {
    padding-bottom: 40px;
}

.inner-services-section .service-item {
    background-color: var(--white);
    margin-block-end: 20px;
    border: 1px solid #e9e9e9;
}

.inner-services-section .service-content {
    padding: 70px 40px;
    align-content: center;
}

.inner-services-section .service-title {
    font-size: 30px;
    margin: 10px 0 5px;
}

.inner-services-section .service-btn {
    margin-top: 30px;
}

.inner-services-section .service-btn i {
    font-size: 14px;
}

.inner-services-section .service-bg {
    height: 300px;
    object-fit: cover;
}

.inner-services-section .service-icon {
    width: 60px;
    height: 60px;
    transition: 0.9s;
    transform: rotateY(0deg);
}

.inner-services-section .hvr:hover .service-icon {
    transform: rotateY(360deg);
}

.inner-services-section .service-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Call to Action Section */
.cta-section .cta-pos {
    background: var(--white);
    margin-bottom: -180px;
}

.cta-section .cta-pos:before, .cta-section .cta-pos:after {
    content: '';
    position: absolute;
    height: 159px;
    width: 364px;
}

.cta-section .cta-pos:after {
    background: url(/wp-content/uploads/2025/03/shape-2.png) no-repeat;
    bottom: -47px;
    right: -190px;
}

.cta-section .cta-btn a {
    min-width: 170px;
}

/* Inner CTA Section */
.icta-section:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(33, 33, 33, .7);
}

.icta-section .cta-btn a {
    min-width: 170px;
}

/* Why Choose Us Section */
.home .choose-section {
    padding-top: 280px;
}

.choose-section .choose-item {
    background-color: var(--white);
    padding: 63px 30px;
    border: 1px solid var(--white);
    box-shadow: 22.803px 22.829px 120px 0px rgb(0 0 0 / 9%);
}

.choose-section .choose-item:nth-child(even) {
    background-color: #fdfdfd;
    border: 1px solid #eaeaea;
    box-shadow: 0 0 0 0 transparent;
}

.choose-section .choose-icon {
    width: 98px;
    margin: 0 auto;
}

.choose-section .choose-content {
    margin-top: 20px;
}

.choose-section .choose-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.choose-section .choose-desc {
    font-size: 14px;
}

.choose-section .divider:after {
    bottom: -8px;
}

/* Areas We Serve Section */
.aws-section {
    margin-bottom: 100px;
}

.aws-section .f-image:before {
    content: '';
    position: absolute;
    background: transparent url(/wp-content/uploads/2025/03/map-overlay-bg.jpg) no-repeat;
    width: 390px;
    height: 408px;
    bottom: -75px;
    right: 0;
}

.aws-section .f-image img {
    box-shadow: 3.534px 28.784px 49px 0px rgb(0 0 0 / 14%);
    margin-right: 67px;
}

.aws-section ul.aws-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    justify-items: start;
    margin-top: 30px;
    padding: 0;
    justify-content: center;
    gap: 15px 20px;
}

.aws-section ul.aws-lists li {
    font-weight: 500;
    list-style: none;
    padding: 12px 10px 12px 45px;
    position: relative;
    border: 1px solid #cbcbcb;
    margin: 0 0 10px;
    height: 100%;
    width: 100%;
    align-content: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.aws-section ul.aws-lists li:before {
    color: var(--black);
    content: "\f3c5";
    font-family: 'Font Awesome\ 5 Free';
    font-size: 19px;
    font-weight: 900;
    margin-right: 10px;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.aws-section ul.aws-lists li:hover {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.aws-section ul.aws-lists li:hover, .aws-section ul.aws-lists li:hover:before {
    color: var(--white);
}

/* Gallery Section */
body:not(.home) .gallery-section {
    padding-top: 50px;
}

.gallery-section .slmp-image-item {
    width: 16%;
    padding: 0 13px;
    margin-bottom: 0;
    position: relative;
}

.gallery-section .gallery-content {
    padding: 20px 20px 0;
}

/* Reviews Section */
.section-reviews .review-info {
    font-size: 25px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 35px;
}

.section-reviews .review-info-right {
    padding-left: 70px;
}

.section-reviews .icon-quote {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    left: 0;
    position: absolute;
}

.section-reviews .icon-quote img {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-reviews .review-listing {
    margin: 0 20px;
}

.section-reviews .review-item-wrapper {
    margin: 10px 0 20px 0;
}

.section-reviews .review-item-wrap {
    background-color: var(--white);
    padding: 45px;
}

.section-reviews .review-content {
    color: var(--color-body-text);
    font-size: 16px;
}

.section-reviews .review-author {
    font-size: 20px;
}

.section-reviews .review-author {
    line-height: 1;
}

.section-reviews .review-rating {
    line-height: 17px;
}

.section-reviews .review-rating span {
    margin: 0 1px;
}

.section-reviews .review-rating span:first-child {
    margin-left: 0;
}

.section-reviews .review-rating span i {
    color: var(--black);
    font-size: 16px;
}

.section-reviews .reviews-read-more {
    font-style: normal;
}

.section-reviews .reviews-read-more a {
    color: var(--primary-color);
}

.section-reviews .review-btn {
    margin-top: 50px;
}

.section-reviews .review-btn a {
    min-width: 190px;
}

.section-reviews .slide-control .left {
    left: 160px;
}

.section-reviews .slide-control .right {
    right: 160px;
}

/* Badges Section */
.badges-section .badges-item {
    padding: 0 10px;
}

.badges-section .slick-slide img {
    margin: 0 auto;
}

/* Contact Us Section */
.contact-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, .80);
}

.contact-section .cta-btn {
    margin: 30px 0 0;
}

.contact-section .cta-btn a {
    min-width: 173px;
}

/* Latest News Section */
.latest-news .news-wrapper {
    padding: 40px 30px 0;
}

.latest-news .news-item {
    margin: 0 0 50px;
    border: 1px solid var(--gray-400);
}

.latest-news .latest-post {
    margin: 30px 0;
}

.latest-news .news-image {
    min-height: 210px;
}

.latest-news .news-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.latest-news .news-title a {
    font-size: 20px;
}

.latest-news .news-title a {
    color: var(--black);
}

.latest-news .news-content {
    font-size: 14px;
}

.latest-news .link-wrapper {
    padding: 0 30px 0 30px;
    margin-top: 30px;
}

.latest-news .news-link {
    background-color: var(--tertiary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 20px;
    text-align: center;
    width: 160px;
    display: inline-block;
    transition: all 0.3s ease;
}

.latest-news .hvr:hover .news-link {
    display: block;
    background-color: var(--primary-color);
    width: 100%;
    transition: all 0.3s ease;
}

.latest-news .hvr:hover .link-wrapper {
    padding: 0;
}

.latest-news .news-post-btn a {
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}

.latest-news .section-news-btn {
    margin: 20px 0 0;
}

.latest-news .news-date-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.latest-news .news-date {
    background: var(--primary-color);
    color: var(--white);
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.latest-news .news-date span {
    display: block;
    line-height: 1;
    position: relative;
}

.latest-news .month {
    font-size: 10px;
}

.latest-news .date {
    font-size: 24px;
}

.latest-news .ellips {
    color: var(--black);
}

.latest-news .section-news-btn a {
    min-width: 193px;
}

/* 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: 50px 0 100px;
}

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 15px;
    text-align: left;
}

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(--white);
    font-weight: 400;
    position: relative;
    padding: 5px 10px 5px 0;
    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:hover {
    color: var(--primary-color);
}

footer .footer-col-item {
    padding-left: 30px;
    font-size: 14px;
}

footer .footer-col-item, footer .footer-col-item a {
    color: var(--white);
}

footer .footer-col-item a:hover {
    color: var(--primary-color);
}

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(--white);
    font-size: 13px;
}

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 .copy-logo {
    margin: 0 auto;
    max-width: 158px;
    margin-top: -90px;
}

footer .copyright-section {
    background-color: var(--white);
    color: var(--gray-200);
    padding: 15px 0;
}

/* XAPP */
div#xapp-widget .cta-bubble__content {
    color: #000 !important;
}

/* Accordion Block */
.page-accordion {
    margin: 0 0 40px;
}

.page-accordion .accordion-item {
    margin-bottom: 10px;
}

.page-accordion .accordion-title {
    background-color: var(--white);
    font-weight: 700;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    padding: 12px 60px 12px 25px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 8%);
}

.page-accordion .accordion-title:after {
    content: "\2b";
    font-size: 20px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: 5px;
    padding: 12px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
}

.page-accordion .accordion-title.active:after {
    content: "\f068";
    background-color: var(--white);
    color: var(--primary-color);
}

.page-accordion .accordion-content {
    background-color: var(--white);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 8%);
    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);
}

/* Counter Section */
.counter-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgb(46 46 46 / 79%);
}

.counter-section .counter-icon {
    margin: 0 0 10px;
}

.counter-section .counter-number {
    font-size: 60px;
    line-height: 1;
}

.counter-section .counter-title {
    font-size: 18px;
}

.counter-section .counter-list {
    padding: 45px 30px;
}

.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;
}

/* Homepage Content */
.load-more-content {
    display: none;
}

/* 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;
    }

    /* Page Banner */
    .inner-page-banner .page-title {
        font-size: 35px;
    }

    .inner-page-banner .page-tagline, .breadcrumbs .breadcrumb {
        font-size: 16px;
    }

    /* Reviews Section */
    .section-reviews .review-item-wrapper {
        margin: 0 15px 20px 15px;
    }

    /* Footer */
    footer .copyright-text {
        font-size: 14px;
        margin-top: 15px;
    }

}

@media only screen and (min-width:1024px) {

    /* Common Classes */
    .mobile-view {
        display: none !important;
    }

    .full-padding {
        padding: 120px 30px;
    }

    .side-padding-med {
        padding-right: 20px;
        padding-left: 20px;
    }

    .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;
    }

    .archive-description .entry-title, .archive-title, .author-box-title {
        font-size: 50px;
    }

    .popup-form .form-title {
        font-size: 34px;
    }

    .ftr-item .social-media .social-item {
        margin: 0 5px 10px;
    }

    /* Header Section */
    .window_scrolled .main-header {
        background: var(--black);
        box-shadow: 0px 2px 2px rgba(0, 0, 0, .10);
    }

    .site-header {
        padding: 0;
        box-shadow: 0 0 0 transparent;
    }

    body.window_scrolled .site-header {
        padding: 0;
    }

    .mobile-phone-number > div {
        width: 32.5%;
        padding: 10px;
    }

    .site-header .header-topbar {
        background: var(--secondary-color);
        padding: 10px 40px 10px 20px;
        font-size: 16px;
    }

    .site-header .header-left {
        width: auto;
    }

    .site-header .logo-nav {
        background-color: transparent;
        padding: 0 20px;
    }

    .site-header .main-logo img {
        max-height: 120px;
    }

    .site-header .header-cta {
        font-size: 12px;
        background-color: var(--primary-color);
        cursor: pointer;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 15px 25px;
        margin-left: 25px;
    }

    .site-header .header-cta:hover {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
    }

    .site-header .header-right {
        margin: 21px 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 15px;
    }

    .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: 12px;
        padding: 12px 0px;
    }

    .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: var(--white);
    }

    .genesis-nav-menu>.menu-item.menu-item-has-children.sfHover>a:after, .genesis-nav-menu .current-menu-item>a:after {
        color: var(--white) !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(--white);
    }

    .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(--white);
    }

    .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(--secondary-color);
        border-bottom: 0;
        color: var(--white);
        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-menu-item > a, .genesis-nav-menu > .menu-item.sfHover > a {
        background-color: transparent;
        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-menu-item > a, .genesis-nav-menu .sub-menu .current-menu-item > a:focus, .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
        text-decoration: none;
        color: var(--primary-color);
        background-color: var(--black);
        padding-left: 20px;
    }

    .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.current_page_item > a span::before, .nav-primary .genesis-nav-menu li.current_page_item > span::before, .nav-primary .genesis-nav-menu li.current-cat > a span::before, .nav-primary .genesis-nav-menu li.current-menu-item > a span::before, .nav-primary .genesis-nav-menu li > a:hover span::before, .nav-primary .genesis-nav-menu li > a span::before {
        content: '';
        position: absolute;
        height: 5px;
        bottom: 0;
        background: var(--primary-color);
    }

    .nav-primary.genesis-nav-menu li.current_page_item > a span::before, .nav-primary .genesis-nav-menu li.current_page_item > span::before, .nav-primary .genesis-nav-menu li.current-cat > a span::before, .nav-primary .genesis-nav-menu li.current-menu-item > a span::before, .nav-primary .genesis-nav-menu li > a:hover span::before {
        transform: scale3d(1, 1, 1);
        transform-origin: 0% 50%;
        transition-timing-function: ease;
    }

    .nav-primary .genesis-nav-menu li > a span::before {
        left: 0;
        right: 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        transform: scale3d(0, 1, 1);
        transform-origin: 100% 50%;
        transition: transform .5s ease-in-out;
        transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    }

    .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 {
        display: none;
    }

    .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;
    }

    /* Common Classes */
    .entry-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 40px;
    }

    .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: 100px 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;
    }

    /* 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%;
    }

    /* 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%;
    }

    .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-menu-item > a, .window_scrolled .genesis-nav-menu .sub-menu .current-menu-item > a:focus, .window_scrolled .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
        color: var(--primary-color);
        padding-left: 20px;
    }

    /* 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: 890px;
        max-height: 1080px;
        width: 100%;
    }

    .hero-slider .col-2.hero-caption-row {
        width: 80%;
    }

    .hero-slider .hero-caption-wrap {
        padding: 20px;
    }

    .hero-slider .hero-slide-title {
        margin: 0 0 5px;
    }

    .hero-slider .hero-slide-desc {
        font-size: 18px;
    }

    .hero-slider .col-6-12.hero-caption {
        width: 70%;
    }

    .hero-slider ul.slick-dots {
        position: absolute;
        bottom: 65px;
        padding: 0;
        margin: 0;
        display: block;
        text-align: center;
        left: 0;
        right: 0;
        display: none !important;
    }

    .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 5px 0 0;
    }

    .hero-slider ul.slick-dots li button {
        padding: 0;
        font-size: 0;
        width: 10px;
        height: 10px;
        background: transparent;
        border-radius: 50%;
        border: 1px solid var(--white);
    }

    .hero-slider ul.slick-dots li.slick-active button {
        background: var(--white);
    }

    .hero-slider .hero-slide-control {
        display: none;
    }

    .hero-slider .slide-control .left, .hero-slider .slide-control .right {
        top: 50%;
        border-radius: 50%;
    }

    .hero-slider .slide-control .left {
        left: 15px;
    }

    .hero-slider .slide-control .right {
        right: 15px;
    }

    /* Page Banner */
    .inner-page-banner .page-banner {
        height: 450px;
        min-height: 450px;
        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 {
        width: 100%;
        padding: 115px 75px;
    }

    /* CTA Section */
    .cta-section .cta-pos:before {
        background: url(/wp-content/uploads/2025/03/shape-1.png) no-repeat;
        top: -17px;
        left: -90px;
    }

    /* About Section */
    .about-section .f-image {
        transform: scale(0.6);
        left: -105px;
    }

    .about-section .f-image-2 {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 220px;
        box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, .19);
    }

    .about-section .about-btn {
        margin: 30px 0 0;
    }

    .choose-section .choose-title {
        font-size: 16px;
    }

    /* Counter Section */
    .counter-section .counter-title {
        font-size: 16px;
    }

    /* Video Slider Block */
    .video-slide-control.slide-control .left {
        left: 110px !important;
    }

    .video-slide-control.slide-control .right {
        right: 110px !important;
    }

    /* Reviews Section */
    .section-reviews .review-listing {
        margin: 0 120px;
    }

    .section-reviews .slide-control .left {
        left: 15px;
    }

    .section-reviews .slide-control .right {
        right: 15px;
    }

    .section-reviews .section-heading {
        padding: 0 90px;
    }

    .section-reviews .review-content {
        font-size: 18px;
    }

    /* Latest News Section */
    .latest-news .slide-control .right {
        right: 10px;
    }

    .latest-news .slide-control .left {
        left: 10px;
    }

    /*Blog Post, Archive*/
    .archive-items {
        margin: 20px 0;
    }

    .blog-items .blog-item:not(:nth-child(2n + 1)), .archive-items .archive-item:not(:nth-child(2n + 1)) {
        margin-left: 0;
    }

    .blog-items .blog-item:not(:nth-child(3n + 1)), .archive-items .archive-item:not(:nth-child(3n + 1)) {
        margin-left: 2%;
    }

    /* Badges Section */
    .badges-section .row-badge {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Footer Section */
    .footer-row.main-footer {
        padding: 50px 0 100px;
    }

    footer .footer-section {
        font-size: 16px;
    }

    footer .footer-col-item {
        font-size: 13px;
    }

    .floating-cta {
        width: auto;
        text-align: center;
        transition: right ease-in .3s;
        position: fixed;
        transform-origin: top right;
        right: 6px;
        left: auto;
        bottom: auto;
        top: 0;
        transform: rotate(-90deg) translateY(-100%);
        margin-top: 35vh;
        padding: 0 0;
        max-width: max-content;
    }

    .floating-cta a {
        width: 100%;
        padding: 11px 20px;
        font-size: 16px;
        background-color: var(--primary-color);
        display: none;
    }

    body.window_scrolled .floating-cta a {
        width: 100%;
    }

    /* Back to Top */
    .move-to-top {
        bottom: 130px;
    }

}

@media only screen and (min-width:1201px) {

    /* Common Classes */
    a.site-btn {
        min-width: 140px;
    }

    .side-padding-med {
        padding-right: 90px;
        padding-left: 90px;
    }

    .entry-content .form-container .form-field {
        padding: 40px 60px 40px;
    }

    /* About Section */
    .about-section .about-section-wrapper {
        width: 62%;
    }

    /* Choose Section */
    .choose-section .choose-title {
        font-size: 18px;
    }

    /* Footer Section */
    .floating-cta a {
        display: none;
    }

}

@media only screen and (min-width:1367px) {

    /* Common Classes */
    .side-padding {
        padding-right: 100px;
        padding-left: 100px;
    }

    .full-padding {
        padding: 120px;
    }

    .slide-control .left {
        left: 160px;
    }

    .slide-control .right {
        right: 160px;
    }

    /* Header Section */
    .site-header .header-cta {
        margin-left: 55px;
    }

    .site-header .header-right {
        margin: 20px 0;
    }

    .site-header .logo-nav {
        padding: 0 90px;
    }

    .site-header .main-logo img {
        max-height: 158px;
    }

    .window_scrolled .site-header .main-logo img {
        max-height: 98px;
    }

    .site-header .header-topbar {
        padding: 5px 90px;
    }

    .site-header .header-cta {
        font-size: 18px;
        margin-left: 90px;
    }

    .header-menu {
        margin-bottom: 0px;
    }

    /* Header Menu */
    .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: 16px;
    }

    .nav-primary .genesis-nav-menu a {
        font-size: 16px;
    }

    .genesis-nav-menu .sub-menu a, .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }

    .genesis-nav-menu > .menu-item {
        margin: 0 20px;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-wrap {
        padding: 20px;
    }

    .hero-slider .hero-slide-title {
        font-size: 70px;
    }

    .hero-slider .col-6-12.hero-caption {
        width: 50%;
    }

    .hero-slider .hero-slide-control {
        left: 145px;
    }

    .hero-slider .slide-control .left {
        left: 40px;
    }

    .hero-slider .slide-control .right {
        right: 40px;
    }

    .hero-slider .col-2.hero-caption-row {
        width: 60%;
    }

    /* Page Banner */
    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 60px;
        padding-left: 60px;
    }

    .inner-page-banner .page-title {
        font-size: 50px;
    }

    /* Page Content */
    .content-sidebar .content-sidebar-wrap {
        padding: 20px 125px 200px 100px;
    }

    /* Services Section */
    .services-section .col-3.service-item {
        width: 32%;
    }

    /* Inner Services Section */
    .inner-services-section .service-bg {
        height: 400px;
    }

    /* About Section */
    .about-section {
        padding: 50px 90px;
    }

    /* Latest News Section */
    .latest-news .slide-control .right {
        right: 120px;
    }

    .latest-news .slide-control .left {
        left: 120px;
    }

    /* Why Choose Us */
    .choose-section .col-3 {
        width: 32%;
    }

    /* Counter Section */
    .counter-section .counter-title {
        font-size: 18px;
    }

    /* Reviews Section */
    .section-reviews .review-listing {
        margin: 0 20px;
    }

    .section-reviews .section-heading {
        padding: 0;
    }

    .section-reviews .slide-control .left {
        left: -60px;
    }

    .section-reviews .slide-control .right {
        right: -60px;
    }

    /* Badges Section */
    .badges-section .slide-control .left {
        left: 60px;
    }

    .badges-section .slide-control .right {
        right: 60px;
    }

    /* Foote Section */
    footer .footer-col-item {
        font-size: 14px;
    }

}

@media only screen and (min-width:1601px) {

    /* Header Menu */
    .nav-primary .genesis-nav-menu > a {
        padding: 35px 0px;
    }

    .nav-primary .genesis-nav-menu a {
        font-size: 18px;
    }

    /* Reviews Section */
    .section-reviews .slide-control .left {
        left: -160px;
    }

    .section-reviews .slide-control .right {
        right: -160px;
    }

}

@media only screen and (min-width:1801px) {

    /* About Section */
    .about-section .f-image {
        transform: scale(1);
        left: 0;
    }

    /* About Section */
    .about-section {
        padding: 120px 90px;
    }

}

/* 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: 14px 15px;
    }

    .site-inner .content a.site-btn {
        min-width: 190px;
    }

    .block-content {
        display: block;
    }

    .section-title span {
        display: block;
    }

    /* Header Section */
    .site-header .header-cta {
        display: none;
    }

    .mob-item .social-media .social-item {
        display: inline-block;
        margin: 0;
    }

    .mob-item .social-media a.media-label {
        display: none !important;
    }

    .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 a {
        background-color: var(--secondary-color);
        color: var(--white);
        display: block;
        font-size: 16px;
        padding: 5px;
        position: relative;
    }

    body.window_scrolled .site-header .header-mobile-phone {
        margin-top: -35px;
        overflow: hidden;
    }

    .site-header .logo-nav {
        background-color: transparent;
        display: block;
        height: 80px;
    }

    body.window_scrolled .site-header .logo-nav {
        height: 80px;
        background-color: var(--black);
    }

    body.window_scrolled .header-left {
        height: 80px;
        overflow: hidden;
    }

    .site-header .main-logo img {
        position: absolute;
        left: 0;
        z-index: 301;
        right: 0;
        margin: 0 auto;
        top: 0;
    }

    body.window_scrolled .site-header .main-logo img {
        top: 0;
        max-height: 80;
    }

    .site-top-news {
        display: none;
    }

    /* Header Menu */
    .nav-primary {
        background-color: var(--primary-color);
        margin-top: 80px;
        padding: 15px 10px 150px;
    }

    .window_scrolled .nav-primary {
        margin-top: 0;
        padding: 35px 10px 150px;
    }

    .nav-primary .genesis-nav-menu a i {
        display: none;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-row {
        margin-top: 180px;
        padding: 0 15px;
        margin-bottom: 110px;
    }

    .hero-slider .hero-caption-wrap {
        padding: 0;
        text-align: center;
    }

    .hero-slider .hero-slide-title {
        margin-bottom: 20px;
    }

    .hero-slider .hero-item .inner-with {
        padding: 0;
    }

    .hero-slider .hero-slide-btn {
        display: block;
    }

    .hero-slider .hero-slide-btn > a {
        display: inline-block;
        margin: 0 5px 10px;
        min-width: 160px;
    }

    .hero-slider .hero-slide-btn a.header-popup {
        display: inline-block;
    }

    .hero-slider ul.slick-dots, .hero-slide-control.slide-control {
        display: none !important;
    }

    /* 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;
    }

    /* Services Section */
    .services-section {
        padding-top: 60px;
    }

    .services-section .inner-width {
        padding: 0;
    }

    .services-section .service-row {
        padding: 0 15px 60px;
    }

    .services-section .services-btn-wrap {
        padding-top: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-section .service-items {
        max-width: 600px;
        margin: 0 auto;
    }

    .services-section .service-item {
        margin: 0 0 20px;
    }

    /* CTA Section */
    .services-section .cta-container {
        padding: 20px;
    }

    /* Counter Section */
    .counter-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .counter-section .counter-list {
        padding: 20px 30px;
    }

    /* Latest News Section */
    .latest-news {
        padding: 60px 0;
    }

    .latest-news .news-items {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    .latest-news .slide-control > div {
        display: inline-block !important;
        position: relative;
        margin: 0;
        display: none;
    }

    .latest-news .slide-control .right {
        right: auto;
    }

    .latest-news .slide-control .left {
        left: auto;
    }

    .latest-news .slide-control {
        text-align: center;
        padding-top: 40px !important;
    }

    .latest-news .latest-wrapper {
        max-width: 991px;
        margin: 0 auto;
    }

    .latest-news .news-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Why Choose Us Section */
    .choose-section .choose-items {
        padding: 20px 20px 0;
    }

    .choose-section .item-box {
        text-align: center;
    }

    .choose-section .choose-item ul {
        padding: 0;
    }

    .choose-section .choose-item ul li {
        list-style: inside;
    }

    .choose-section .choose-icon {
        margin: 0 auto 20px;
    }

    .choose-section .section-heading {
        text-align: center;
    }

    /* Areas We Serve Section */
    .aws-section {
        background: transparent !important;
    }

    .aws-section ul.col-cnt-3 {
        column-count: 2;
        grid-template-columns: 1fr 1fr;
    }

    .aws-section ul.aws-lists li {
        font-size: 14px;
    }

    .aws-section ul.aws-lists li:before {
        font-size: 16px;
        padding: 1px 8px;
        left: 10px;
    }

    .aws-section .aws-btn a {
        max-width: 180px;
        margin: 0 auto 80px;
        display: block;
    }

    .aws-section .f-image:before {
        width: 290px;
        height: 338px;
        bottom: -25px;
    }

    .aws-section .f-image {
        max-width: 340px;
        margin: 0 auto;
    }

    /* Gallery Section */
    .gallery-section {
        padding-bottom: 60px;
    }

    .gallery-section .section-heading {
        margin-top: 60px;
    }

    .gallery-section .gallery-content {
        padding: 20px 8px;
    }

    .gallery-section .slmp-image-item {
        padding: 0 10px;
    }

    .gallery-section .slmp-image-item img {
        min-height: 120px;
    }

    .gallery-section .slmp-image-item .slmp-image:after {
        top: 46%;
    }

    .gallery-section .slmp-gallery {
        margin-bottom: 0;
    }

    .gallery-section .f-image {
        display: none;
    }

    /* About Section */
    .about-section .f-image {
        display: none;
    }

    .about-section .about-section-wrapper {
        text-align: center;
    }

    /* Reviews Section */
    .section-reviews {
        padding-top: 70px;
    }

    .section-reviews .inner-with {
        padding: 0;
    }

    .section-reviews .review-item {
        padding: 0 20px;
    }

    .section-reviews .slide-control > div {
        display: inline-block;
        position: relative;
        margin: 0 5px;
    }

    .section-reviews .slide-control {
        text-align: center;
        padding: 30px 0 0;
    }

    .section-reviews .slide-control .right {
        right: auto;
    }

    .section-reviews .slide-control .left {
        left: auto;
    }

    .section-reviews .review-listing {
        margin: 0;
    }

    .section-reviews .section-title span {
        display: block;
    }

    .section-reviews .review-btn {
        gap: 10px;
    }

    .section-reviews .reviews-read-more {
        font-style: italic;
    }

    /* CTA Section */
    .cta-section .cta-btn {
        display: block;
        width: 100%;
    }

    .cta-section .cta-btn a {
        display: block;
        max-width: 210px;
        margin: 0 auto 10px;
    }

    /* Areas We Serve Section */
    .aws-section {
        margin-bottom: 40px;
    }

    .aws-section .f-image {
        text-align: center;
        left: -10px;
    }

    .aws-section .f-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Why Choose Us Section */
    .choose-section .choose-item {
        margin-block-end: 20px;
    }

    /* 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;
    }

    /* Blog Page */
    .blog-post-wrap {
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-items {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Badges Section */
    .badges-section {
        padding: 55px 0;
    }

    .badges-section .slide-control {
        display: none;
    }

    /* Footer Section */
    footer .footer-column {
        max-width: 480px;
        margin: 0 auto 0;
        padding: 0 5px;
    }

    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 .copyright-section {
        padding: 15px 0 40px;
    }

    footer .copyright-text {
        margin: 20px 0 0;
        text-align: center;
        font-size: 14px;
    }

    /* Sticky CTA */
    .floating-cta a {
        width: auto;
        max-width: fit-content;
        padding: 13px 20px;
        color: var(--white);
        font-weight: 600;
        font-size: 16px;
        align-items: center;
        display: block;
        margin: 0 auto;
    }

    /* 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;
    }

    .blog-items .blog-item {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Services Section */
    .services-section .service-item {
        min-height: 230px;
    }

    /* Counter Section */
    .counter-section {
        background-image: url(/wp-content/uploads/2025/03/mobile-counter-bg.jpg) !important;
    }

}

@media only screen and (max-width:480px) {

    /* Gallery Section */
    .gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 115px;
    }

    .gallery-section .slmp-image-item .slmp-text-center:before {
        top: 50%;
    }

}

/* Genesis */
@media (max-width:781px) {

    /* Contact Us Page */
    .map-wrap iframe {
        width: 100%;
    }

    .entry-content .featured-image figure {
        max-width: 600px;
        margin: 0 auto;
    }

    .featured-column .featured-info {
        padding-right: 0;
    }

    .entry-content .wp-block-column.featured-image {
        max-width: 400px;
        margin: 0 auto;
    }

}
