:root {
    --primary-color: #E00F0F;
    --secondary-color: #000;
    --tertiary-color: #6FCB75;
    --body-text-color: #4a4a4a;
    --body-font: "Golos Text", sans-serif;
    --sec-font: "IBM Plex Sans", sans-serif;
    --white: #fff;
    --black: #000;
    --gray-100:#ccc;
    --gray-200:#acacac;
    --gray-300:#fff9;
}

/* Typographical Elements */
body {
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 16px;
    margin: 0 auto;
    display: block;
    line-height: 1.5;
}

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) !important;
    margin: 30px 0;
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0 0 30px;
    padding: 20px;
    background-color: #f3f3f3;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
    font-family: var(--sec-font);
}

h1 {
    font-size: 35px;
    position: relative;
}

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;
    font-family: inherit;
    overflow: hidden;
    padding: 10px;
}

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: #9da6b5;
}

:-ms-input-placeholder {
    color: #9da6b5;
}

::placeholder {
    color: #9da6b5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 15px 25px;
    width: initial;
    font-family: var(--body-font);
    transition: all .5s;
    overflow: hidden;
    z-index: 1;
    font-weight: 400;
}

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,
span.wpcf7-list-item-label a {
    text-transform: initial;
    color: #2c3345;
}

.wpcf7-acceptance span {
    margin: 0;
}

/* Site Container */
.site-container {
    background-color: var(--white);
    width: 100%;
    clear: both;
    overflow-x: clip;
}

.site-inner {
    background: var(--white);
    clear: both;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    padding: 0;
    overflow-x: clip;
}

.home .site-inner {
    background: var(--white) url(/wp-content/uploads/2026/01/background-content.png) no-repeat center left;
    background-size: initial;
    clear: both;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    padding: 0;
}

.content-sidebar-wrap {
    width: 100%;
    max-width: 1300px;
    padding: 100px 15px 100px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 5;
}

section#custom_html-2 {
    background-color: var(--black);
    border-radius: 16px;
    padding: 5px;
}

section#custom_html-2 .widget-title {
    color: var(--white);
    font-size: 25px;
    font-weight: 500;
    font-family: var(--sec-font);
    text-align: center;
}

section#custom_html-2 form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
}

section#custom_html-2 .form-container {
    background-color: var(--white);
    box-shadow: 0px 4px 0px 0px rgba(45, 51, 62, .55);
    border-radius: 3px;
    padding: 20px;
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

}

/* Common Classes */
.sec-font {
    font-family: var(--sec-font);
}

.c-white,
.c-white a {
    color: var(--white);
}

.c-black,
.c-black a {
    color: var(--black);
}

.c-gray,
.c-gray a {
    color: var(--gray-100);
}

.c-lgray,
.c-lgray a {
    color: var(--gray-200);
}

.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;
}

.items-center {
    align-items: center;
}

.gap10 {
    gap: 10px;
}

.gap15 {
    gap: 15px;
}

.gap20 {
    gap: 20px;
}

.gap25 {
    gap: 25px;
}

.gap30 {
    gap: 30px;
}

.gap35 {
    gap: 35px;
}

.gap40 {
    gap: 40px;
}

a.site-btn {
    border-radius: 0;
    color: var(--white);
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 15px;
    min-width: 110px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

a.btn-hvr:hover {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

a.btn-one {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: underline;
    border: 1px solid var(--primary-color);
}

a.site-btn.btn-one.btn-hvr:hover {
    color: var(--primary-color);
}

a.site-btn.btn-two:hover {
    background-color: var(--primary-color);
    border: 1px solid  var(--primary-color);
    color: var(--white);
}

a.btn-two {
    background: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

a.btn-three {
    background: transparent;
    color: var(--white);
    text-decoration: underline;
    border: 1px solid var(--white);
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.normal {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.bolder {
    font-weight: 800;
}

.italic {
    font-style: italic;
}

.relative {
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.section-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 14px;
    font-family: var(--body-font);
    line-height: 1.3;
    position: relative;
    margin: 0 0 10px;
    color: var(--tertiary-color);
}

.section-desc {
    font-size: 16px;
    margin-bottom: 30px;
}

.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: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    z-index: 2;
}

a.link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.show-item-mobile {
    display: block;
}

.hide-item-mobile {
    display: none;
}

.mobile-center {
    text-align: center;
}

.full-padding {
    padding: 100px 15px;
}

.vertical-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vertical-padding-med {
    padding-top: 60px;
    padding-bottom: 60px;
}

.side-padding,
.side-padding-med {
    padding-right: 15px;
    padding-left: 15px;
}

.vertical-bottom-padding {
    padding-bottom: 100px;
}

.vertical-top-padding {
    padding-top: 100px;
}

.bg-white {
    background-color: var(--white);
}

.bg-lgray {
    background-color: var(--gray-100);
}

.bg-black {
    background-color: var(--black);
}

.clr {
    clear: both;
    padding: 20px 0;
}

.o-hidden {
    overflow: hidden;
}

.o-clip {
    overflow: clip;
}

.d-hidden {
    display: none;
}

.dark-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .50);
    z-index: 1;
}

span.br {
    display: block;
}

.slide-control .left,
.slide-control .right {
    background-color: var(--secondary-color);
    border-radius: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    text-align: right;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    transition: all 0.6s ease;
    padding: 6px 13px;
}

.slide-control .left {
    left: 0px;
}

.slide-control .right {
    right: 0px;
}

/* Breadcrumbs  */
.breadcrumbs {
    position: relative;
    z-index: 3;
}

.breadcrumbs .inner-with {
    z-index: 4;
}

.breadcrumbs .breadcrumb {
    border: 0;
    margin-bottom: 12px;
}

.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;
}

.breadcrumbs .separator {
    color: var(--white);
    display: inline-block;
    font-size: 12px;
    padding: 0px 10px;
    position: relative;
}

/* Titles */
.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: center;
    margin-bottom: 50px;
}

.entry-title {
    font-size: 30px;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

.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;
}

.single .entry-title:after,
.archive .archive-title:after {
    margin: 0 auto;
}

.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 !important;
}

.form-container .wpcf7-acceptance label {
    display: block;
}

.form-container .form-field .form-field-item input {
    padding: 12px 15px 12px 20px;
}

.form-container .form-field .form-field-item select {
    padding: 12px 35px 12px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%), linear-gradient(to right, var(--primary-color), var(--primary-color));
    background-position: calc(100% - 29px) calc(1.1em + 4px), calc(100% - 24px) calc(1.1em + 4px), calc(100% - 2.5em) .5em;
    background-size: 5px 5px, 5px 5px, 0px 0em;
    background-repeat: no-repeat;
}

.form-container textarea {
    height: 100px;
    font-family: inherit;
}

.form-container .form-field-message {
    min-height: 41px;
}

.form-container .form-field-message textarea {
    height: 100px;
    padding: 20px;
}

.form-container input,
.form-container select,
.form-container textarea {
    background-color: var(--white);
    border: 1px solid #acacac;
    border-radius: 5px;
    color: #2c3345;
    font-size: 13px;
}

.form-container .wpcf7-form-control-wrap {
    display: grid;
}

.recaptcha-note,
.recaptcha-note a {
    line-height: 1.4;
    margin: 20px 0;
}

.form-field-disclaimer {
    line-height: 1.4;
    padding: 5px 0;
    margin: 0 !important;
}

.recaptcha-note,
.form-field-disclaimer {
    font-size: 14px;
}

.recaptcha-note,
.form-field-disclaimer,
.recaptcha-note a,
.recaptcha-note a:hover,
.form-field-disclaimer a,
.form-field-disclaimer a:hover {
    color: #2c3345 !important;
}

.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 20px;
}

.form-container .col-1.form-field-item.form-field-message.relative {
    margin-bottom: 20px;
}

.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;
}

.site-form {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.form-field-disclaimer input[type="checkbox"] {
    position: absolute;
}

.form-field-disclaimer span.wpcf7-list-item-label {
    padding-left: 25px;
    display: block;
}

.form-wrap {
    background: #f5f5f5;
    padding: 20px;
}

.form-wrap .recaptcha-note,
.form-wrap .recaptcha-note a {
    color: var(--body-text-color);
}

.wpcf7-submit {
    border: 0 !important;
    color: var(--white);
    width: 100%;
    border-radius: 5px;
}

.wpcf7-submit,
.wpcf7-submit:hover,
.wpcf7-submit:focus {
    background-color: var(--primary-color);
    border: 5px !important;
    border-radius: 5px;
    color: var(--white);
}

.show-text-label {
    font-size: 14px;
    color: #2c3345;
    margin: 0 0 5px;
    display: block;
    font-weight: 500;
}

.hide-text-label {
    display: none;
}

section#custom_html-2 .form-field-link {
    font-size: 14px;
    padding-top: 30px;
}

section#custom_html-2 .form-field-link a {
    color: #0d6efd;
}

section#custom_html-2 .form-container {
    box-shadow: 0px 4px 0px 0px rgba(45, 51, 62, .55);
    padding: 20px;
}

/* SFS Gallery */
.slmp-gallery h2,
h2.slmp-video {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.popup-image-title {
    display: none;
}

.slmp-popup-close:before,
.item-popup-count,
.popup-image-title {
    color: var(--white) !important;
}

.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(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    min-width: 180px !important;
    padding: 15px 20px !important;
    border-radius: 5px;
    position: relative;
}

body:not(.home) .slmp-gallery .slmp-image-label {
    left: 30px;
    right: 30px;
    bottom: 50px;
    padding: 15px 10px;
    background-color: rgba(7, 16, 19, .90);
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

body:not(.home) .slmp-gallery.slmp-slide-gallery .slmp-image-item {
    overflow: initial;
    padding: 0 7px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow,
.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    background-image: none;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:before {
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    content: "\f053";
    border-radius: 5px;
    font-size: 18px;
    left: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow {
    left: -130px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:before {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    border-radius: 5px;
    font-size: 18px;
    right: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    right: -130px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:hover:before,
.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:hover:before {
    background-color: rgba(180, 45, 51, .70);
    color: var(--white);
    border: 1px solid transparent;
}

.slmp-gallery .slmp-masonry-display-image .slmp-image-item {
    margin-bottom: 20px;
}

.slmp-popup-image-listing {
    background-color: transparent;
}

/* Header Menu */
.site-header {
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.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: 64px;
    z-index: 2;
    display: none;
}

.window_scrolled .mob-dot-toggle {
    top: 56px;
}

.mobile-dots-items {
    background-color: var(--primary-color);
    font-size: 15px;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 129px;
    height: 100%;
    overflow-y: scroll;
    padding: 15px 15px 150px 15px;
    z-index: 2;
}

.window_scrolled .mobile-dots-items {
    top: 43px;
    padding: 15px;
}

.mobile-dots-items .mob-item {
    padding-left: 25px;
    margin-top: 5px;
}

.mob-item.site-name:before,
.mob-item.site-location:before,
.mob-item.site-number:before,
.mob-item.site-email:before,
.mob-item.site-time:before,
.mob-item.site-social-media:before,
.mob-item.site-license:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
}

.mob-item.site-name:before {
    content: "\f015";
}

.mob-item.site-location:before {
    content: "\f3c5";
    left: 3px;
}

.mob-item.site-number:before {
    content: "\f095";
}

.mob-item.site-email:before {
    content: "\f0e0";
}

.mob-item.site-time:before {
    content: "\f017";
}

.mob-item.site-social-media:before {
    content: "\f1e0";
    top: 10px;
}

.mob-item.site-license:before {
    content: "\f2c1";
    left: 2px;
}

/* Site Navigation */
.genesis-nav-menu {
    padding: 0;
}

.genesis-nav-menu a {
    color: var(--white);
    padding: 11px 30px 11px 10px;
    border-bottom: 1px solid var(--white);
    font-weight: 500;
}

.genesis-nav-menu a,
.genesis-nav-menu .sub-menu a {
    font-size: 15px;
}

.genesis-nav-menu .sub-menu a {
    background-color: var(--primary-color);
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-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(--primary-color);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
    width: 100%;
}

.genesis-nav-menu .sub-menu {
    clear: both;
    display: none;
    left: -9999px;
    margin: 0;
    opacity: 1;
    padding-left: 15px;
    position: static;
    z-index: 99;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
    position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
    display: block;
    left: auto;
    opacity: 1;
}

/* Responsive Menu */
.genesis-responsive-menu {
    display: none;
    position: relative;
}

.menu-toggle {
    background: transparent;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    right: 0;
    max-width: 100%;
    transition: all 0.6s ease;
    width: auto;
    z-index: 1000;
}

.window_scrolled .menu-toggle {
    color: var(--primary-color);
}

.menu-toggle,
.sub-menu-toggle,
.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
    color: var(--white);
}

.site-header .menu-toggle::before {
    top: 0;
}

button.menu-toggle:before {
    content: "\f0c9";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    width: auto;
    height: auto;
    padding: 10px 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 6 Free';
    font-weight: 900;
    font-size: 24px;
    width: auto;
    height: auto;
    padding: 10px 15px;
}

button.menu-toggle:before,
.menu-toggle.activated::before {
    color: var(--primary-color);
}

.menu-toggle.activated::before {
    content: "\f335";
}

.menu-toggle::before {
    float: left;
    margin-right: 0px;
    position: relative;
    text-rendering: auto;
}

.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(--black) !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: 600;
}

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 20px;
    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: "";
    width: 8px;
    height: 8px;
    background-color: var(--body-text-color);
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 10px;
}

.entry-content ul.white-list-dots li:before {
    background-color: var(--white);
}

.entry-content ol > li {
    list-style-type: decimal;
}

.full-width-content .content {
    width: 100%;
}

.entry-content figure.wp-block-image figcaption {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 15px 15px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.30);
    font-style: inherit;
}

.entry-content .wp-block-image {
    margin-bottom: 60px;
    padding-bottom: 0;
}

/* Pagination */
.pagination {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.pagination ul {
    padding: 0;
    margin: 0;
    font-size: 0;
    text-align: center;
}

li.pagination-omission {
    position: relative;
}

li.pagination-omission:after {
    content: '...';
    font-size: 19px;
    color: var(--white);
    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(--primary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    padding: 10px 17px;
    border-radius: 5px;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
}

.pagination ul li:before {
    display: none;
}

/* Back to Top */
.move-to-top {
    cursor: pointer;
    position: fixed;
    right: 10px;
    bottom: 133px;
    width: 40px;
    height: 40px;
    z-index: 199;
}

.to-top {
    background: rgba(255, 255, 255, .25);
    color: var(--primary-color);
    border-radius: 3px;
    border: 1px solid #ccc;
    position: relative;
    height: 40px;
    width: 40px;
}

.to-top:hover {
    background: rgba(0, 0, 0, 0.45);
}

.to-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* POPUP Form */
.popup-form {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.91);
    visibility: hidden;
    z-index: 999999;
    overflow: auto;
    left: 0;
}

.popup-form div.wpcf7-response-output {
    bottom: -44px;
}

.popup-form .form-fields {
    max-width: 700px;
    width: 100%;
    border-radius: 0;
    position: relative;
    transition: all 0.6s ease;
    visibility: hidden;
    bottom: -125%;
    border: 1px solid var(--secondary-color);
}

.popup-form .form-fields.slide-form {
    visibility: visible;
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
    bottom: 0;
}

.popup-form a.close {
    color: var(--white) !important;
    line-height: 30px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 4px;
    width: 30px;
    height: 30px;
    text-decoration: none;
    z-index: 1;
    outline: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
}

.popup-form .form-title,
.popup-form .form-field,
.contact-page-form .form-field {
    background: var(--primary-color);
}

.popup-form .form-title {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.popup-form .form-field,
.contact-page-form .form-field {
    padding: 2px 0 0 0;
}

.contact-page-form .form-field-wrap {
    padding: 30px 30px;
}

.popup-form .form-field-wrap {
    padding: 30px 0  30px 60px;
}

.popup-form .form-field-item {
    width: 100%;
}

.popup-form div.wpcf7-response-output {
    bottom: -44px;
}

.popup-form .form-title-desc-wrap {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
}

.popup-form .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
    color: var(--primary-color);
    font-size: 15px;
}

.popup-form .form-container .wpcf7-form-control-wrap[data-name="services"] {
    background: var(--white);
    padding: 25px;
}

.popup-form  input.wpcf7-date {
    color: #9da6b5;
}

.popup-form .scroll-wrapper {
    min-height: 400px;
    height: 400px;
    overflow-y: scroll;
    padding-right: 60px;
}

.popup-form .btm-dis {
    padding-right: 60px;
}

.popup-form .form-desc {
    padding: 20px;
}

.popup-form .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.popup-form:before {
    content: '';
    background: rgba(0, 0, 0, .75);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    font-weight: bold;
    z-index: 199;
    width: auto;
    display: block;
    width: auto;
    text-align: center;
    transition: right ease-in .3s;
    transition-timing-function: cubic-bezier(0, 0, .2, 1);
    position: fixed;
    transform-origin: top right;
    right: -100%;
    left: auto;
    bottom: 40px;
    top: auto;
    padding: 0;
    max-width: max-content;
}

.floating-cta a {
    cursor: pointer;
    padding: 10px 15px;
    font-size: 16px;
    position: relative;
    line-height: 1;
    color: var(--white);
    width: 100%;
    transition: none;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
}

.window_scrolled .floating-cta {
    right: 30px;
}

.floating-cta a:hover {
    background: 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,
.col-5 {
    width: 100%;
}

/* Social Media */
.social-item a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-item a.media-label {
    display: none;
}

.social-media a.sprite {
    background-color: transparent;
    margin-right: 0;
    width: 40px;
    height: 40px;
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.social-media a.sprite:last-child {
    margin-right: 0;
}

.social-media a.sprite img {
    display: block;
    margin: 0 auto;
    zoom: 0.8;
}

.social-media .social-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 -2px;
}

.header-info-right .social-media a.sprite:hover img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(44%) saturate(6167%) hue-rotate(356deg) brightness(103%) contrast(98%);
}

.ftr-item .social-media a.sprite:hover {
    transform: translateY(-8px);
}

.ftr-item .social-media a.sprite {
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 3px;
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    margin-right: 0;
    border: 0;
}

.ftr-item .social-media a.sprite img {
    zoom: 1;
}

.ftr-item .social-media .social-item:first-child {
    margin-left: 0;
}

.ftr-item .social-media {
    margin-top: 20px;
}

.ftr-item .social-item {
    margin: 0 1px;
}

/* Header Section */
.site-header {
    position: relative;
    height: auto;
    display: block;
    width: 100%;
    max-width: 100%;
    z-index: 200;
    top: auto;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    box-shadow: initial;
}

.site-header .main-logo img {
    max-height: 94px;
}

.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: 10px 20px;
    text-align: center;
}

.site-header .section-closed {
    position: absolute;
    right: 10px;
    line-height: 1;
    cursor: pointer;
    color: var(--white);
    width: 30px;
    height: 30px;
    top: 7px;
    z-index: 2;
}

.site-header .section-closed i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.site-header .header-topbar {
    background: var(--secondary-color);
    font-size: 14px;
}

.site-header .header-info {
    border-left: 1px solid rgba(255, 255, 255, .17);
    border-right: 1px solid rgba(255, 255, 255, .17);
    padding: 0 0 0 10px;
}

.site-header .header-topbar a,
.site-header .header-topbar a:hover {
    color: var(--white);
}

.site-header .header-topbar i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slider .inner-with,
.hero-slider-wrap,
.hero-item-wrap .hero-caption,
.hero-slider .hero-item {
    height: 100vh;
    min-height: 800px;
    max-height: 1000px;
}

.hero-slider .hero-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, rgba(0, 0, 0, .56) 0%, rgba(0, 0, 0, .17) 100%);
}

.hero-slider .hero-caption-wrap {
    padding: 20px 0;
}

.hero-slider .hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .hero-item-wrap {
    height: 0;
    opacity: 0;
}

.hero-slider .hero-caption-row {
    z-index: 2;
    margin-bottom: 30px;
    max-width: 100%;
}

.hero-slider .hero-slider-wrap.slick-initialized .hero-item-wrap {
    height: auto;
    opacity: 1;
}

.hero-slider .hero-slide-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, .20);
    padding: 10px 60px;
    border-radius: 40px;
    line-height: 18px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 30px;
}

.hero-slider .hero-slide-subtitle span {
    display: block;
    color: #02FF28;
    font-size: 15px;
}

.hero-slider .hero-slide-title {
    font-size: 40px;
    line-height: 1.1;
    position: relative;
}

.hero-slider .hero-slide-desc {
    line-height: 1.4;
    font-size: 16px;
}

.hero-slider .hero-slide-title,
.hero-slider .hero-slide-desc,
.hero-slider .hero-slide-btn,
.hero-slide-subtitle {
    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-subtitle.animated.activate {
    opacity: 1;
}

.hero-slide-subtitle.animated.activate {
    animation-delay: 0.3s;
}

.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 0.5s;
}

.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 1s;
}

.hero-slider .hero-slide-desc.animated.activate {
    animation-delay: 1.5s;
}

.hero-slider .hero-slide-btn.animated.activate {
    animation-delay: 2s;
    margin-bottom: 10px;
}

.hero-slider .hero-slide-btn {
    margin-top: 50px;
}

.hero-slider .hero-slide-btn a {
    padding: 10px 20px;
}

.hero-slider .hero-slide-control {
    display: none;
}

/* Slick Dots */
.hero-slider ul.slick-dots {
    margin: 0;
    padding: 0;
}

.hero-slider ul.slick-dots li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 !important;
}

.hero-slider ul.slick-dots li:not(:last-child) {
    margin: 0 4px 0 0;
    padding: 0 !important;
}

.hero-slider ul.slick-dots li button {
    background-color: var(--white);
    border: 0;
    border-radius: 2px;
    padding: 0;
    font-size: 0;
    width: 60px;
    height: 4px;
}

.hero-slider ul.slick-dots li.slick-active button {
    background: var(--primary-color) !important;
    border: 0;
    position: relative;
}

.hero-slider ul.slick-dots li button:hover {
    background: var(--primary-color) !important;
    border: 0;
}

.hero-slider ul.slick-dots li:before {
    display: none;
}

/* Page Banner */
.section.inner-page-banner {
    overflow: hidden;
}

.inner-page-banner:after {
    height: 650px;
}

.inner-page-banner .page-banner {
    height: 100vh;
    min-height: 700px;
    max-height: 700px;
}

.inner-page-banner .page-title-container {
    z-index: 2;
}

.inner-page-banner .inner-page-banner {
    position: relative;
}

.inner-page-banner .page-banner-wrap {
    height: 100%;
    z-index: 3;
}

.inner-page-banner .page-tagline {
    background: var(--tertiary-color);
    color: var(--white);
    display: none;
    font-size: 14px;
    line-height: 1.3;
    padding: 7px 15px;
}

.inner-page-banner .page-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.inner-page-banner .page-title {
    font-size: 40px;
    line-height: 1.3;
}

.inner-page-banner .page-text a {
    text-decoration: underline;
}

.inner-page-banner .page-banner-cols {
    padding: 0;
    margin: 0;
}

.inner-page-banner .page-banner-container:before {
    content: '';
    background-color: rgba(0, 0, 0, .55);
    width: 100%;
    height: 1000px;
    position: absolute;
    top: 0;
    z-index: 2;
}

/* Inner Services Page - Banner Section */
.inner-services-page .page-banner-cols {
    bottom: -90px;
}

.inner-services-page .page-title-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .10);
    display: block;
    max-width: 740px;
    padding: 30px 15px;
    text-align: left;
}

.inner-services-page .page-title {
    color: var(--black);
    font-size: 30px;
}

.inner-services-page .page-text,
.inner-services-page .page-text a {
    color: var(--body-text-color);
}

.inner-services-page .page-text a {
    text-decoration: underline;
}

.inner-services-page .breadcrumbs {
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 15px;
}

.inner-services-page .breadcrumbs *,
.inner-services-page .breadcrumbs .home-icon:after {
    color: var(--black) !important;
}

.inner-services-page .google-section {
    padding-bottom: 100px;
}

.inner-services-page .gallery-section .inner-width {
    max-width: 100%;
    padding: 0;
}

.inner-services-page .slmp-grid-image img {
    object-fit: cover;
    height: 510px;
}

.inner-services-page .inner-page-banner {
    overflow: initial;
}

.inner-services-page .banner-btn-num span {
    display: block;
}

.inner-services-page .banner-btn-num a {
    font-size: 20px;
}

.inner-services-page .section-heading {
    padding: 0 20px;
}

.inner-services-page .page-banner-wrap {
    justify-content: end;
    align-items: end;
}

/* Page */
.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: 13px;
    background-color: var(--white);
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 1em !important;
}

/* Contact Us Page */
.map-wrap iframe {
    min-height: 570px;
    width: 100%;
}

.contact-us-page main#genesis-content {
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / .1);
    padding: 100px 0;
}

.contact-us-page .map-section .inner-width {
    max-width: 100%;
}

.contact-us-page .map-section .inner-width,
.contact-us-page .map-section {
    padding: 0;
}

.contact-us-page .map-section iframe {
    display: block;
}

/* Reviews Page */
.slmp-reviews .review-item {
    background: var(--white) !important;
    padding: 20px !important;
}

.slmp-reviews .review-prev-content .rev-trim-cont p {
    color: var(--primary-color) !important;
}

.slmp-reviews .rev-cont-btn {
    color: var(--secondary-color) !important;
}

.slmp-reviews .rev-author-name {
    text-transform: uppercase;
}

.slmp-reviews .rev-author-icon {
    box-shadow: none !important;
    border: 1px solid #9fa8b7;
}

.navigation.pagination .nav-links .page-numbers {
    background-color: var(--white) !important;
    border: 1px solid var(--white);
    color: var(--primary-color);
    line-height: 1;
    padding: 10px 15px !important;
    border-radius: 5px;
}

.navigation.pagination .nav-links .page-numbers:hover,
.navigation.pagination .nav-links span.page-numbers.current {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.navigation.pagination .dashicons-arrow-right-alt2:before,
.navigation.pagination .dashicons-arrow-left-alt2:before {
    position: relative;
    top: 4px;
}

.navigation.pagination span.page-numbers.dots {
    color: var(--primary-color);
}

ul.yext-reviews-page li.review:before {
    display: none;
}

.view-review-form {
    margin: 30px 0 0;
}

.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(--white);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 10px;
    content: "\f0dd";
    pointer-events: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}

.archive-items {
    margin: 0 0 60px;
}

.archive-items select {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    color: var(--white) !important;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 5px;
}

.archive-items select option {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.archive-items select option:first-child {
    display: none;
}

.blog-items {
    padding: 0 0 40px;
}

.blog-items .blog-item {
    margin-bottom: 25px;
}

.blog-items .blog-content-wrap {
    background-color: var(--white);
    box-shadow: -1px 8px 6px rgba(0, 0, 0, .25);
    border-radius: 5px;
    border: 1px solid #e3e2e2
}

.blog-items .blog-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.blog-items .post-btn a {
    display: block;
    font-size: 14px;
}

.blog-items .blog-image {
    min-height: 300px;
    height: 300px;
    border-radius: 10px;
}

.blog-items .blog-content {
    font-size: 16px;
    padding-top: 15px;
}

.blog-items .blog-content,
.blog-items .blog-title a {
    color: var(--black);
}

.blog-items .blog-content p {
    margin: 0;
    color: var(--body-text-color);
}

.blog-items .blog-entry {
    margin: 0 0 10px;
}

.blog-items .blog-entry,
.blog-items .blog-entry a {
    color: #737373;
    font-size: 14px;
}

.blog-items .blog-wrapper {
    padding: 10px 30px 30px;
}

.blog-items .blog-link {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 20px 0 0;
}

.blog-items .blog-link i {
    font-size: 16px;
}

.blog-items .blog-image-wrap {
    padding: 20px 30px 0;
}

.blog-items .ellips.more-info,
.blog-items .month,
.blog-items .date {
    color: var(--primary-color);
}

.blog-items .date-wrap {
    font-size: 14px;
    color: #6b7281;
}

/* Full Width Section */
section.full-width-section {
    max-width: 1920px;
    width: 100%;
    overflow-x: clip;
    margin: 0 auto;
}

/* Sections */
.section ul {
    padding: 0;
}

.section ul li {
    list-style: none;
    padding: 0 0 0 30px;
    position: relative;
}

.section ul li:before {
    border-radius: 5px;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Page, Posts */
.single .site-inner {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Lists Section */
.lists-section {
    width: 86%;
    margin-top: -60px;
    background-image: linear-gradient(180deg, #E00F0F 0%, #6B1919 100%);
    border-radius: 16px 0px 0px 16px;
}

.section-order-lists {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.lists-section .list-column {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.lists-section .lists-wrap {
    padding: 30px 20px;
}

.lists-section .lists-wrap > div {
    border-right: 2px dashed rgba(255, 255, 255, .20);
    width: 48%;
}

.lists-section .list-label {
    text-decoration: underline;
    text-transform: uppercase;
    color: rgb(255 255 255 / 30%);
    font-size: 14px;
    font-weight: 500;
}

.lists-section .list-text {
    font-size: 20px;
}

.lists-section .list-text a {
    color: var(--white);
}

/* Services Section */
.home .services-section .section-heading {
    max-width: 640px;
    margin: 0 auto;
}

.services-section {
    background-color: #F8F8F8;
}

.services-section .service-item {
    width: 31.3%;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

.services-section .service-items {
    gap: 20px;
    padding-top: 20px;
}

.services-section .services-image-wrap {
    background-color: var(--black);
    border-radius: 5px;
}

.services-section .f-image {
    height: 250px;
    border-radius: 8px;
}

.services-section .f-image:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .15);
}

.services-section .service-item:hover .f-image:before {
    background: rgba(0, 0, 0, .0);
}

.services-section .service-content {
    background-color: var(--white);
    font-size: 14px;
    padding: 30px 0;
}

.services-section .service-title {
    font-size: 25px;
}

.services-section .service-desc {
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
    margin-top: 20px;
}

.services-section .service-desc p {
    margin: 0;
}

.services-section .service-btn a {
    border: 1px solid var(--black);
    display: block;
    text-align: center;
    text-decoration: underline;
    color: var(--black);
    padding: 10px;
    border-radius: 5px;
}

.services-section .service-btn a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Inner Services Page Section */
.services-page .content-sidebar-wrap {
    padding: 100px 20px 0px;
}

.inner-services-section {
    padding-bottom: 40px;
}

.inner-services-section .service-col-item-wrap {
    margin-top: 40px;
}

.inner-services-section .service-item {
    background-color: var(--white);
    margin-block-end: 20px;
}

.inner-services-section .service-content {
    padding: 70px 40px;
    align-content: center;
    background-color: #fafafa;
}

.inner-services-section .hvr:hover .service-content {
    background-color: var(--primary-color);
}

.inner-services-section .service-title {
    font-size: 25px;
    margin: 10px 0 5px;
}

.inner-services-section .hvr:hover .service-title,
.inner-services-section .hvr:hover .service-desc {
    color: var(--white);
}

.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 .section-cont {
    padding: 30px 0 0;
}

/* Choose Section */
.section-order-choose:before {
    content: '';
    background: url(/wp-content/uploads/2026/01/dot-map-2.jpg) no-repeat top right;
    background-size: 960px auto;
    opacity: 0.2;
    position: absolute;
    width: 100%;
    height: 100%;
}

.choose-section .choose-right {
    width: 55%;
}

.choose-section .choose-left {
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / .1);
    box-sizing: border-box;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
}

.choose-section .choose-left-img {
    height: 100%;
    width: 100%;
    min-width: 377px;
    border-radius: 8px;
    object-fit: cover;
}

.choose-section .choose-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.choose-section .choose-items {
    border-top: 1px solid #D6D6D6;
    gap: 20px;
    padding-top: 20px;
}

.choose-section .choose-item {
    width: 48%;
}

.choose-section .choose-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.choose-section .item-box {
    display: flex;
    align-items: normal;
}

.choose-section .choose-content {
    padding: 0 0 0 15px;
}

.choose-section .choose-desc {
    font-size: 14px;
}

.choose-section .choose-contact {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
}

.choose-section .choose-contact-num span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.choose-section .choose-contact-icon i {
    color: var(--white);
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 50%;
    position: relative;
}

.choose-section .choose-contact-icon i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.choose-section .choose-contact-num a {
    font-weight: 600;
    font-size: 20px;
}

/* CTA Section */
.cta-section:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.cta-section .section-heading {
    background: rgba(0, 0, 0, .70);
    border-radius: 15px;
    max-width: 522px;
    padding: 20px;
}

.cta-section .cta-btn {
    margin: 30px 0 0;
}

/* FAQs Section */
.slmp-faq-category-items {
    display: none;
}

.slmp-faqs.faqs-layout-1 .slmp-faq-listing {
    padding: 0;
}

.slmp-faqs.faqs-layout-1 .slmp-faq-listing,
.slmp-faqs .slmp-faq-item .slmp-faq-question,
.slmp-faqs .slmp-faq-item .slmp-faq-question.active .faq-question,
.slmp-faqs .slmp-faq-item .slmp-faq-answer {
    background-color: transparent;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question:hover .faq-question {
    background-color: transparent;
    color: var(--black);
}

.slmp-faqs .slmp-faq-item .slmp-faq-question:hover .faq-count {
    color: var(--black);
}

.slmp-faqs .slmp-faq-item .slmp-faq-answer {
    color: var(--body-text-color);
    border: 0;
    padding: 20px;
    font-size: 16px;
    background: var(--white);
    border-radius: 0px 0px 14px 14px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .10);
}

.slmp-faqs .slmp-faq-item .slmp-faq-answer a {
    color: var(--body-text-color);
    text-decoration: underline;
}

.slmp-faqs .faq-heading {
    color: var(--white);
    font-size: 30px;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question .faq-count {
    display: none;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question {
    display: block;
    border-radius: 7px 7px 0 0;
}

.slmp-faqs .slmp-faq-item:last-child {
    border-bottom: 1px solid var(--white);
    padding-bottom: 20px;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question {
    font-size: 16px;
    width: 100%;
    padding: 25px 40px;
    font-weight: 600;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question.active .faq-question:before {
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--white);
}

.slmp-faqs .slmp-faq-item .slmp-faq-question .faq-question:before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    padding: 6px 8px;
    border-radius: 50%;
    font-size: 15px;
    top: 35px;
    right: auto;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%) rotate(0deg);
}

.faq-section .faq-featured-img img {
    min-height: 532px;
    object-fit: cover;
}

.slmp-faqs .slmp-faq-item .slmp-faq-question.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.slmp-faqs .slmp-faq-item .slmp-faq-question {
    border-bottom: 1px solid #D6D6D6;
}

.slmp-faqs .slmp-faq-item:not(:last-child) {
    margin-bottom: 0;
}

.slmp-faqs .faq-cat-info .faq-info:not(:last-child) {
    margin-bottom: 0;
}

/* Service Areas Section */
.areas-section .areas-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
}

.areas-section .areas-item {
    box-shadow: -1px 0 10px 0 rgba(0, 0, 0, 0.07);
    border-radius: 12px 12px 12px 12px;
    min-height: 200px;
    align-items: center;
    border-bottom: 5px solid #000;
    display: flex;
    justify-content: center;
}

.areas-section .areas-title {
    font-size: 20px;
}

/* Process Section */
.process-section .process-items {
    margin-top: 30px;
}

.process-section .section-heading {
    display: flex;
}

.process-section .process-item {
    width: 24%;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .10);
    min-height: 305px;
}

.process-section .process-title {
    font-size: 20px;
    margin: 0 0 10px;
}

.process-section .process-icon {
    margin: 0 0 15px;
}

.process-section .process-no {
    position: absolute;
    background: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    left: 10px;
    top: -36px;
}

.process-section .process-item:nth-child(2) {
    background-color: var(--black);
}

.process-section .process-item:nth-child(2),
.process-section .process-item:nth-child(2) .process-title {
    color: var(--white);
}

.process-section .process-desc {
    font-size: 14px;
}

.process-section .process-btn a {
    text-decoration: underline;
}

/* Services Page - CTA Section */
.page-id-242 .google-section {
    padding-bottom: 100px !important;
}

.page-id-242 .cta-section .section-heading {
    background-color: transparent;
    margin: 0 auto;
    text-align: center;
    max-width: 712px;
}

.page-id-242 .cta-section .section-subtitle,
.page-id-242 .cta-section .section-desc {
    color: var(--white);
}

.page-id-242 .cta-section .cta-btn a:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

/* Service Areas Page - CTA Section */
.page-id-206 .google-section {
    padding-bottom: 100px !important;
}

.page-id-206 .cta-section .section-heading {
    background-color: transparent;
    margin: 0 auto;
    text-align: center;
    max-width: 712px;
}

.page-id-206 .cta-section .section-subtitle,
.page-id-206 .cta-section .section-desc {
    color: var(--white);
}

/* Service Areas Page */
.wp-block-columns.service-area-column i {
    color: black;
    font-size: 50px;
    margin-bottom: 20px;
}

.wp-block-columns.service-area-column .wp-block-column {
    border-bottom: 5px solid #000;
    box-shadow: 0 0 19px -4px rgba(0, 0, 0, .15);
    border-radius: 12px 12px 12px 12px;
    padding: 30px;
}

/* Gallery Page */
.page-id-232 .map-section {
    padding-top: 0;
}

/* Page Content */
.wp-block-group.container-1 {
    max-width: 900px;
    margin: 0 auto;
}

/* Footer Section */
.site-footer {
    background-color: var(--white);
    font-size: 14px;
    text-align: left;
    padding: 0;
    border-top: 0 !important;
}

footer .main-footer {
    background-color: var(--secondary-color);
    padding: 60px 0 0;
}

footer .footer-column {
    margin: 0 0 60px;
}

footer .column-item {
    margin-bottom: 20px;
}

footer span.info-item-label {
    display: block;
    font-size: 12px;
}

footer .custom-footer-content {
    color: var(--gray-300);
    font-size: 16px;
}

footer .column-label {
    font-size: 25px;
    margin: 0 0 15px;
    text-align: left;
    font-weight: 500;
}

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 {
    font-weight: 400;
    position: relative;
    padding: 7px 10px 7px 20px;
    transition: all 0.5s ease-out;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
}

footer .footer-menu ul li a:before {
    content: "\f054";
    font-family: 'Font Awesome\ 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transition: all 0.5s ease-out;
    color: var(--primary-color);
    font-size: 12px;
    top: 10px;
}

footer .footer-menu ul li a:hover,
footer .footer-col-item a:hover {
    color: var(--white);
}

footer .footer-col-item,
footer .footer-col-item a {
    color: var(--gray-300);
}

footer .footer-logo {
    margin-bottom: 20px;
}

footer .footer-logo a {
    display: inline-block;
}

footer .footer-item-rows .footer-col-item.footer-menu {
    padding: 0;
}

footer .footer-col-item.site-social {
    padding-top: 10px;
}

footer .ftr-menu ul {
    margin: 0;
    padding: 0;
    text-align: right;
}

footer .copyright-section {
    padding: 0 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    font-size: 13px;
}

footer .copyright-text {
    font-size: 13px;
}

footer .copyright-text,
footer .copyright-text a {
    color: var(--gray-300);
}

footer .copyright-text a:hover {
    color: var(--white);
}

.footer-column .footer-item-rows:not(:first-child) {
    width: 50%;
}

div#footer-count1 {
    width: 28%;
}

div#footer-count1 .ftr-info-wrap {
    background: var(--white);
    padding: 30px 15px;
}

div#footer-count1 .ftr-info-wrap,
div#footer-count1 .column-label,
div#footer-count1 .ftr-email a {
    color: var(--primary-color);
}

footer .copyright-section .ftr-menu li a:hover {
    color: var(--white);
}

footer .ftr-menu li {
    display: inline-block;
    margin: 0px 15px;
    position: relative;
    font-size: 13px;
}

footer .ftr-menu li a {
    color: var(--gray-300);
}

footer .ftr-menu li a:hover {
    color: var(--white);
}

footer .ftr-menu ul>li::after {
    border-radius: 50%;
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background: var(--primary-color);
    margin: 0 auto;
    right: -19px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .ftr-menu ul>li:last-child::after {
    display: none;
}

footer .footer-col-item.site-address,
footer .footer-col-item.site-number,
footer .footer-col-item.site-email,
footer .footer-col-item.site-license,
footer .footer-col-item.site-operation {
    padding: 7px 10px 7px 20px;
}

footer .footer-col-item.site-address:after,
footer .footer-col-item.site-number:after,
footer .footer-col-item.site-email:after,
footer .footer-col-item.site-license:after,
footer .footer-col-item.site-operation:after {
    content: "\f054";
    font-family: 'Font Awesome\ 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transition: all 0.5s ease-out;
    color: var(--primary-color);
    font-size: 12px;
    top: 10px;
}

.wp-block-columns.hp-col-1 {
    justify-content: space-between;
}

.hp-col-1 .hbox-text strong {
    font-size: 20px;
    font-weight: 600;
}

.hp-col-1 .hbox-left {
    width: 40%;
    background-image: linear-gradient(135deg, #E00F0F 0%, #8C1010 100%);
    padding: 25px;
    border-radius: 8px;
}

.hp-col-1 .hbox-right {
    width: 55%;
}

.hp-col-1 .hbox-item {
    align-items: normal;
}

.hp-col-1 .hbox-left-title {
    font-size: 20px;
    margin: 0 0 10px;
    font-family: var(--sec-font);
}

.hp-col-1 .hbox-left-title strong {
    font-weight: 600;
}

.hp-col-1 .hbox-left-desc {
    color: rgba(255, 255, 255, .60);
    font-size: 18px;
}

.hp-col-1 .hbox-left-icon {
    height: 60px;
    width: 60px;
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, .20);
    border-radius: 7px;
    position: relative;
}

.hp-col-1 .hbox-left-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home .hp-col-1 .hbox-text {
    width: 80%;
}

.hp-col-1 .hbox-text {
    width: 88%;
}

.hp-col-1 .hbox-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.hp-col-1 .hbox-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hp-col-1 .hbox-right-title {
    font-size: 20px;
    margin: 0 0 10px
}

.hp-col-2 {
    background-color: var(--black);
    padding: 40px 30px;
    border-radius: 8px;
}

.hp-col-2 .hbox-right-title {
    color: var(--white);
    font-size: 20px;
    margin: 0 0 10px;
}

.hp-col-2 .hbox-right-desc {
    color: rgba(255, 255, 255, .60);
}

.hp-col-2  .hbox-icon {
    width: 49px;
}

.hp-col-2 .hbox-text {
    width: 80%;
}

/* Google Maps Section */
.map-section .section-desc a {
    color: var(--black);
    text-decoration: underline;
}

/* About Page */
.page-id-196 .gallery-section {
    padding-top: 0;
}

.page-id-196 .hbox-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.page-id-196 .map-section {
    padding-top: 0;
}

/* Contact Us Page */
.cbox-wrapper .cbox-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cbox-wrapper .cbox-icon {
    background: var(--primary-color);
    padding: 10px;
    height: 50px;
    width: 50px;
    border-radius: 5px;
}

.cbox-wrapper .cbox-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cbox-wrapper .cbox-right-title {
    font-size: 20px;
}

.cbox-wrapper a {
    color: var(--black);
}

.page-id-194 .content {
    background: url(/wp-content/uploads/2026/01/contact-bg.jpg) no-repeat;
    background-size: contain;
}

.page-id-194 .content-sidebar-wrap {
    padding: 50px 20px 100px;
}

/* Media Queries */
@media only screen and (min-width:768px) {

    /* Common Classes */
    ul.list-col-2,
    ol.list-col-3,
    ol.list-col-3 {
        list-style: inside;
    }

    ul.list-col-2,
    ol.list-col-2 {
        -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.list-col-3,
    ol.list-col-3 {
        -webkit-column-count: 3;
        -webkit-column-gap: 40px;
        -moz-column-count: 3;
        -moz-column-gap: 40px;
        column-count: 3;
        column-gap: 40px;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    ul.grid-list,
    ol.grid-list {
        -webkit-column-gap: 10px;
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: auto auto;
        grid-template-columns: 50% 50%;
    }

    .gallery-section .slmp-col-4:not(:nth-child(4n+1)) {
        margin-left: 1%;
    }

    .gallery-section .slmp-col-4 {
        width: 23.9%;
    }

    /* Form */
    .popup-form .wpcf7-checkbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Page Banner */
    .inner-page-banner .page-tagline {
        font-size: 16px;
    }

    /* Gallery Page */
    .slmp-col-4:not(:nth-child(4n+1)) {
        margin-left: 1.2%;
    }

    /* Process Section */
    .section-title {
        font-size: 30px;
    }

    /* Footer Section */
    footer .footer-col-item {
        font-size: 14px;
    }

}

@media only screen and (min-width:1024px) {

    /* Common Classes */
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 39px;
    }

    h3 {
        font-size: 31px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .mobile-view {
        display: none !important;
    }

    span.home-text {
        display: none;
    }

    .vertical-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .vertical-bottom-padding {
        padding-bottom: 100px;
    }

    .vertical-top-padding {
        padding-top: 100px;
    }

    .full-padding {
        padding: 100px 30px;
    }

    .side-padding-med {
        padding-right: 20px;
        padding-left: 20px;
    }

    .archive-description .entry-title,
    .archive-title,
    .author-box-title {
        font-size: 50px;
    }

    a.site-btn {
        min-width: 150px;
    }

    /* Forms */
    .form-container .col-2.form-field-item {
        width: 48%;
    }

    .popup-form .form-title {
        font-size: 34px;
    }

    /* Header Section */
    .window_scrolled .main-header {
        background: var(--white);
    }

    .site-header {
        padding: 0;
        box-shadow: 0 0 0 transparent;
    }

    .window_scrolled .site-header {
        padding: 0;
    }

    .mobile-phone-number > div {
        width: 32.5%;
        padding: 10px;
    }

    .header-btns a {
        display: inline-block;
    }

    .site-header .header-left {
        width: auto;
    }

    .site-header .logo-nav-wrapper {
        background-color: var(--white);
        padding: 20px 0;
    }

    .site-header .logo-nav {
        display: flex;
    }

    .site-header .main-logo img {
        max-height: 158px;
    }

    .site-header .header-right,
    .window_scrolled .site-header .header-right {
        padding: 10px 0;
    }

    .site-header .header-text-label {
        font-size: 10px;
    }

    .site-top-news {
        z-index: 1;
        padding: 10px 20px 10px 20px;
    }

    .site-header .header-right-wrap {
        display: flex;
        justify-content: space-between;
    }

    .site-header .header-menu {
        max-width: 100%;
    }

    .genesis-nav-menu > .menu-item:first-child {
        margin-left: 0;
    }

    /* Genesis Menu */
    .header-menu {
        margin-bottom: 0;
        padding-right: 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(--black);
        font-size: 14px;
        padding: 10px 0;
    }

    .window_scrolled .nav-primary .genesis-nav-menu a,
    .home .nav-primary .genesis-nav-menu a {
        color: var(--black);
    }

    .window_scrolled .genesis-nav-menu a:focus,
    .window_scrolled .genesis-nav-menu a:hover,
    .window_scrolled .genesis-nav-menu .current-menu-item > a,
    .window_scrolled .genesis-nav-menu > .menu-item.sfHover > a {
        color: var(--black);
    }

    .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\ 6 Free';
        font-weight: 900;
        content: "\f107";
        margin-left: 5px;
        font-size: 13px;
        color: var(--black);
    }

    .home .genesis-nav-menu > .menu-item.menu-item-has-children > a:after,
    .home .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        color: var(--black);
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after,
    .genesis-nav-menu .current-menu-item > a:after {
        color: var(--primary-color) !important;
    }

    .home .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after,
    .home .genesis-nav-menu .current-menu-item > a:after {
        color: var(--primary-color) !important;
    }

    .window_scrolled .genesis-nav-menu > .menu-item.menu-item-has-children > a:after,
    .window_scrolled.genesis-nav-menu .sub-menu .menu-item-has-children > a:after,
    .window_scrolled .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after,
    .window_scrolled .genesis-nav-menu .current-menu-item > a:after {
        color: var(--black) !important;
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after {
        content: "\f106";
    }

    .genesis-nav-menu .sub-menu .menu-item-has-children.sfHover > a:after {
        content: "\f0da";
        color: var(--secondary-color);
    }

    .nav-primary .genesis-nav-menu li li > a span::before,
    .nav-primary .genesis-nav-menu li li > a span::after {
        display: none;
    }

    .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        right: 15px;
        position: absolute;
    }

    .window_scrolled .genesis-nav-menu .sub-menu a,
    .genesis-nav-menu .sub-menu .menu-item-has-children > a:hover:after {
        color: var(--primary-color);
    }

    .genesis-nav-menu .sub-menu,
    .genesis-nav-menu .sub-menu a {
        width: 245px;
    }

    .genesis-nav-menu .sub-menu {
        opacity: 0;
        padding-left: 0;
        position: absolute;
        transition: opacity 0.4s ease-in-out;
        border: 0;
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .1);
        border-radius: 8px 8px 8px 8px;
        overflow: hidden;
    }

    .genesis-nav-menu .sub-menu a {
        background-color: var(--white);
        border-bottom: 0;
        color: var(--black);
        padding-bottom: 15px;
        padding-top: 15px;
        text-align: left;
        border-radius: 0px;
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        border: 0;
    }

    .home .genesis-nav-menu .sub-menu a {
        color: var(--black);
    }

    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -42px 0 0 199px;
    }

    .nav-primary .genesis-nav-menu a i {
        color: var(--primary-color);
    }

    .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;
        border-radius: 0;
        color: var(--primary-color);
        text-decoration: none;
    }

    .home .genesis-nav-menu a:focus,
    .home .genesis-nav-menu a:hover,
    .home .genesis-nav-menu .current-menu-item > a,
    .home .genesis-nav-menu > .menu-item.sfHover > a {
        color: var(--primary-color);
    }

    .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(--white);
        background-color: var(--primary-color);
        padding-left: 20px;
    }

    .genesis-nav-menu a:focus i,
    .genesis-nav-menu a:hover i,
    .genesis-nav-menu .current-menu-item > a i,
    .genesis-nav-menu > .menu-item.sfHover > a i {
        color: var(--white);
    }

    .nav-primary.show {
        margin-top: 0;
        background-color: transparent;
    }

    .nav-primary .genesis-nav-menu li li > a span::before {
        display: none;
    }

    /* Responsive Menu */
    .genesis-responsive-menu {
        display: block;
        padding-top: 15px;
    }

    .genesis-nav-menu .menu-item a:before,
    .genesis-nav-menu .sub-menu a:before {
        display: none;
    }

    .genesis-nav-menu .sub-menu a,
    .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }

    /* Header Menu */
    .nav-primary {
        clear: left;
        top: auto;
        right: auto;
        overflow: inherit;
        position: relative;
        left: auto;
        height: auto;
        padding: 0;
        transition: none;
        display: inline-block !important;
        vertical-align: middle;
    }

    .nav-primary > .wrap {
        text-align: right;
    }

    .genesis-nav-menu {
        font-size: 0;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .window_scrolled .genesis-nav-menu .sub-menu a:focus,
    .window_scrolled .genesis-nav-menu .sub-menu a:hover,
    .window_scrolled .genesis-nav-menu .sub-menu .current-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(--white);
        padding-left: 20px;
    }

    /* Common Classes */
    .entry-title {
        font-size: 50px;
    }

    .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;
    }

    .entry-content .wp-block-column.column-content {
        margin: 0;
    }

    .sidebar {
        width: 35%;
    }

    .content {
        width: 55%;
    }

    /* Column By 5 */
    .col-1-5 {
        width: 100%;
    }

    .col-2-5 {
        width: 50%;
    }

    .col-3-5 {
        width: 33.33%;
    }

    .col-4-5 {
        width: 25%;
    }

    .col-5-5 {
        width: 20%;
    }

    /* Column Edge to Edge with Space */
    .col-2 {
        width: 49%;
    }

    .col-3 {
        width: 32%;
    }

    .col-4 {
        width: 23.5%;
    }

    .col-5 {
        width: 18.4%;
    }

    /* Column By 12 */
    .col-1-12 {
        width: 8.333%;
    }

    .col-2-12 {
        width: 16.667%;
    }

    .col-3-12,
    .col-1-4 {
        width: 25%;
    }

    .col-4-12 {
        width: 33.333%;
    }

    .col-5-12 {
        width: 41.667%;
    }

    .col-6-12,
    .col-2-4 {
        width: 50%;
    }

    .col-7-12 {
        width: 58.333%;
    }

    .col-8-12 {
        width: 66.667%;
    }

    .col-9-12 {
        width: 75%;
    }

    .col-10-12 {
        width: 83.333%;
    }

    .col-11-12 {
        width: 91.667%;
    }

    /* Hero Slider */
    .section.hero-slider:after {
        display: none;
    }

    .hero-slider .inner-with,
    .hero-slider-wrap,
    .hero-slider-wrap .hero-item,
    .hero-item-wrap .hero-caption {
        height: calc(100vh - 188px);
        min-height: 740px;
        max-height: 1000px;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider .hero-caption-row {
        max-width: 760px;
    }

    .hero-slider .hero-slide-title {
        margin: 0 0 20px;
    }

    .hero-slider ul.slick-dots {
        position: absolute;
        bottom: 70px;
        padding: 0;
        margin: 0 auto;
        display: block;
        left: 260px;
    }

    .hero-slider ul.slick-dots li {
        list-style: none;
        display: inline-block;
        vertical-align: middle;
    }

    .hero-slider ul.slick-dots li:not(:last-child) {
        margin: 0 15px 0 0;
    }

    .hero-slider ul.slick-dots {
        left: 120px;
    }

    .hero-slider .slide-control .left,
    .hero-slider .slide-control .right {
        top: 50%;
        border-radius: 2px;
    }

    .hero-slider .slide-control .left {
        left: 15px;
    }

    .hero-slider .slide-control .right {
        right: 15px;
    }

    /* Page Banner */
    .inner-page-banner .page-banner {
        height: 440px;
        min-height: 440px;
        max-height: initial;
        margin: 0 auto;
    }

    body.banner-height .inner-page-banner .page-banner {
        height: 820px;
        min-height: 820px;
        max-height: initial;
        margin: 0 auto;
    }

    .inner-page-banner .page-banner-container {
        background-color: #CCC;
    }

    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 20px;
        padding-left: 20px;
    }

    .inner-page-banner .page-title-container {
        padding: 20px 0;
    }

    .inner-page-banner .page-banner-cols {
        padding: 0;
    }

    .inner-page-banner .page-text {
        font-size: 16px;
    }

    /* Inner Services Pages - Banner Section */
    .inner-services-page .inner-page-banner .page-banner {
        height: 760px;
        min-height: 760px;
    }

    .inner-services-page .inner-page-banner .page-title {
        font-size: 48px;
    }

    .inner-services-page .banner-btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
    }

    .inner-services-page .banner-btn-wrap:after {
        content: '';
        position: absolute;
        height: 100%;
        width: 1px;
        background: var(--gray-100);
        right: -22px;
    }

    .inner-services-page .inner-page-banner .page-title-container {
        padding: 30px;
    }

    /* CTA Section */
    .cta-section .section-heading {
        padding: 40px;
    }

    /* Page Content */
    .entry-content .home-btn-wrap {
        display: flex;
        gap: 20px;
    }

    .entry-content .wp-block-column.column-content {
        margin: 0 0 40px;
    }

    .home .wp-block-image.featured-img {
        margin-top: 70px;
    }

    .hfeatured-image figure.wp-block-image.size-full {
        margin-top: 27px;
    }

    .wp-block-column.f-content {
        padding-right: 80px;
    }

    .wp-block-column.featured-image img {
        border-radius: 9px;
    }

    .inner-services-page .content-sidebar-wrap {
        padding: 180px 20px 100px;
    }

    /* Sidebar */
    section#custom_html-2 {
        padding: 20px;
    }

    /* Contact Page */
    .contact-us-page main#genesis-content {
        padding: 100px 60px;
    }

    /* Services Section */
    .services-section .service-desc {
        font-size: 16px;
    }

    /* Inner Services Pages - Gallery Section */
    .inner-services-page .gallery-section .slmp-col-4 {
        width: 24.25%;
    }

    .inner-services-page .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 300px;
        overflow: hidden;
    }

    .inner-services-page .slmp-grid-image.slmp-text-center.slmp-relative img {
        object-fit: cover;
        height: 620px;
    }

    /* Process Section */
    .process-section .process-desc {
        font-size: 16px;
    }

    /* Service Areas Section */
    .areas-section .areas-title {
        font-size: 25px;
    }

    /*Blog Post, Archive*/
    .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%;
    }

    /* Footer Section */
    .floating-cta {
        width: auto;
        text-align: center;
        transition: right ease-in .3s;
        transition-timing-function: cubic-bezier(0, 0, .2, 1);
        position: fixed;
        transform-origin: top right;
        right: -100%;
        left: auto;
        bottom: 40px;
        top: auto;
        padding: 0 0;
        max-width: max-content;
    }

    .window_scrolled .floating-cta {
        right: 30px;
    }

    .floating-cta a {
        background-color: var(--primary-color);
        border-radius: 5px;
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
    }

    .window_scrolled .floating-cta a {
        width: 100%;
    }

    footer .copyright-section {
        padding: 60px 0;
    }

    .footer-column .footer-item-rows:not(:first-child) {
        width: 23%;
    }

    footer .ftr-menu li:last-child {
        margin-right: 0;
    }

    /* Back to Top */
    .move-to-top {
        bottom: 130px;
        right: 10px;
    }

}

@media only screen and (min-width:1201px) {

    /* Common Classes */
    .side-padding-med {
        padding-right: 30px;
        padding-left: 30px;
    }

    /* Header Section */
    .entry-content .form-container .form-field {
        padding: 40px 60px 40px;
    }

    /* Lists Section */
    .lists-section {
        width: 67%;
        margin-top: -69px;
    }

    .lists-section .lists-wrap {
        padding: 40px 20px 40px 60px;
    }

    .lists-section .list-text {
        font-size: 20px;
    }

    /* Choose Section */
    .choose-section .choose-left-img {
        min-width: 480px;
    }

    .choose-section .choose-desc {
        font-size: 16px;
    }

    /* Footer Section */
    .footer-column .footer-item-rows:not(:first-child) {
        width: 20%;
    }

}

@media only screen and (min-width:1367px) {

    /* Common Classes */
    .side-padding {
        padding-right: 90px;
        padding-left: 90px;
    }

    .full-padding {
        padding: 120px;
    }

    .slide-control .left {
        left: 160px;
    }

    .slide-control .right {
        right: 160px;
    }

    /* Header Section */
    .site-top-news {
        padding: 10px 20px 10px 30px;
    }

    .site-header .main-logo img {
        max-height: 178px;
    }

    .site-header .header-right {
        padding: 30px 0;
    }

    .site-header .header-menu {
        max-width: initial;
    }

    /* Header Menu */
    .header-menu {
        margin-bottom: 0px;
        padding-right: 60px;
    }

    .genesis-nav-menu a,
    .genesis-nav-menu > span {
        padding: 50px 0;
    }

    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -47px 0 0 199px;
    }

    .genesis-nav-menu>.menu-item.menu-item-has-children>a:after,
    .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-size: 15px;
    }

    .nav-primary .genesis-nav-menu a {
        font-size: 14px;
        padding: 10px 0;
    }

    .nav-primary .genesis-nav-menu .sub-menu a,
    .window_scrolled .nav-primary .genesis-nav-menu .sub-menu a {
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 0;
    }

    .genesis-nav-menu .sub-menu a,
    .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }

    .nav-primary .genesis-nav-menu a i {
        font-size: 15px;
    }

    /* Hero Slider */
    .hero-slider .hero-slide-title {
        font-size: 58px;
    }

    .hero-slider .hero-slide-control {
        left: 145px;
    }

    .hero-slider .slide-control .left {
        left: 85px;
    }

    .hero-slider .slide-control .right {
        right: 85px;
    }

    .hero-slider ul.slick-dots {
        left: 255px;
    }

    .hero-slider .hero-slide-btn a {
        font-size: 16px;
        padding: 14px 20px;
    }

    /* Page Banner */
    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 60px;
        padding-left: 60px;
    }

    .inner-page-banner .page-title {
        font-size: 60px;
    }

    /* List Section */
    .lists-section .list-text {
        font-size: 25px;
    }

    .lists-section {
        width: 60%;
    }

    /* Footer Section */
    div#footer-count1 .ftr-info-wrap {
        padding: 30px 20px;
    }

}

@media only screen and (min-width:1401px) {

    /* Header Section */
    .site-header .header-logo {
        padding: 0;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu a {
        font-size: 14px;
    }

    .genesis-nav-menu>.menu-item.menu-item-has-children>a:after,
    .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-size: 13px;
    }

}

@media only screen and (min-width:1601px) {

    /* Header Section */
    .site-top-news {
        padding: 10px 20px 10px 90px;
    }

    .site-header .logo-nav {
        display: flex;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu > a {
        padding: 35px 0px;
    }

    .nav-primary .genesis-nav-menu a {
        padding: 10px 0;
    }

    .genesis-nav-menu .sub-menu a,
    .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }

    .nav-primary .genesis-nav-menu a {
        font-size: 14px;
    }

    /* Lists Section */
    .lists-section {
        width: 46%;
        margin-top: -69px;
    }

}

@media only screen and (min-width:1801px) {

    /* Header Menu */
    .genesis-nav-menu > .menu-item {
        margin: 0 20px;
    }

    .nav-primary .genesis-nav-menu a {
        font-size: 16px;
    }

}

/* 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: 15px;
    }

    /* Header Section */
    .main-header .header-info-left {
        padding: 5px;
        justify-content: center;
        display: flex;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .main-header .inner-width {
        padding: 0;
    }

    .site-top-news {
        background-color: var(--tertiary-color);
        font-size: 14px;
        padding: 5px 20px;
    }

    .site-top-news .top-news.bold {
        font-weight: 400;
    }

    .site-header .section-closed {
        top: 0;
        right: 0px;
    }

    .site-header .section-closed i {
        font-size: 14px;
    }

    .site-header .logo-nav {
        height: 117px;
    }

    .window_scrolled .header-left {
        overflow: hidden;
    }

    .site-header .header-logo {
        padding: 11px 20px;
    }

    .site-header .logo-nav {
        background-color: var(--white);
    }

    .site-header .header-btns {
        display: none;
    }

    .mob-item .social-media .social-item {
        display: inline-block;
        margin: 0 0 6px 0;
    }

    .mob-item .social-media a.media-label {
        display: none !important;
    }

    .site-header .header-right {
        display: none;
    }

    /* Header Menu */
    .nav-primary {
        background-color: var(--primary-color);
        margin-top: 0;
        padding: 15px 10px 50px;
        position: absolute;
        height: 100vh;
    }

    .nav-primary .genesis-nav-menu a i {
        display: none;
        color: var(--primary-color);
    }

    .site-header .header-center {
        width: 100%;
    }

    .menu-toggle {
        top: -79px;
    }

    .site-header .menu-toggle::before {
        margin-right: 0;
    }

    /* Hero Slider */
    .hero-item-wrap .hero-caption.justify-content-left {
        justify-content: center;
    }

    .hero-slider .hero-item .inner-with {
        padding: 0;
    }

    .hero-slider .hero-caption-row {
        margin-bottom: 110px;
        max-width: 590px;
        text-align: center;
    }

    .hero-slider .hero-slide-title {
        margin-bottom: 20px;
    }

    .hero-slider .hero-slide-btn,
    .hero-slider .hero-slide-btn > a {
        display: block;
    }

    .hero-slider .hero-slide-btn > a {
        max-width: 600px;
        margin: 0 auto 10px;
    }

    .hero-slider .hero-slide-btn a.header-popup {
        display: inline-block;
    }

    .hero-slider ul.slick-dots,
    .hero-slide-control.slide-control {
        display: none !important;
    }

    .hero-slider .hero-caption-wrap {
        padding: 80px 0;
    }

    /* Page Banner */
    .inner-page-banner .page-title,
    .breadcrumbs {
        text-align: center;
    }

    /* 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;
    }

    .home .content-sidebar-wrap {
        padding: 100px 0 40px;
    }

    .inner-services-page .content-sidebar-wrap {
        padding: 180px 20px 100px;
    }

    /* Homepage Content */
    .wp-block-group.hp-group-1 {
        padding: 20px;
    }

    .home .wp-block-image img {
        max-width: 390px !important;
        width: 100% !important;
    }

    .home .entry-content .wp-block-image {
        margin-bottom: 0;
    }

    .wp-block-column.hfeatured-image {
        order: 2;
    }

    .hbox-wrapper-container {
        display: block;
    }

    .hp-col-1 .hbox-item {
        margin-bottom: 40px;
    }

    .hp-col-1 .hbox-left {
        width: 100%;
        max-width: 250px;
        margin: 60px auto;
    }

    .hp-col-1 .hbox-text {
        width: 100%;
        text-align: center;
    }

    .hp-col-1 .hbox-right {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .hp-col-1 .hbox-item {
        display: block;
    }

    .home .hp-col-1 .hbox-text {
        max-width: 300px;
        margin: 0 auto;
    }

    .hp-col-1 .hbox-icon {
        margin: 0 auto 10px;
    }

    .hp-col-2 {
        margin: 0 20px;
    }

    .hp-col-2 .hbox-item {
        align-items: normal;
    }

    .wp-block-column.column-content {
        padding: 0 20px;
    }

    .wp-block-columns.hp-col-1,
    .wp-block-columns.hp-col-2 {
        flex-direction: column;
    }

    .wp-block-columns.hp-col-2 {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact Page */
    .contact-us-page .wp-block-columns.are-vertically-aligned-center.contact-column {
        flex-direction: column !important;
    }

    .wp-block-column.is-vertically-aligned-center.contact-info-col,
    .contact-us-page .section-subtitle,
    .contact-us-page h1.wp-block-heading {
        padding: 0 20px;
    }

    .wp-block-column.is-vertically-aligned-center.contact-info-col {
        max-width: 480px;
    }

    /* Services Section */
    .services-section .service-item {
        width: 100%;
        max-width: 480px;
    }

    .services-section .inner-width {
        padding: 0
    }

    .services-section .section-heading {
        padding: 0 15px;
    }

    .services-section .service-content {
        max-width: 90%;
    }

    /* Services Page - Inner Services Section */
    .page-id-242 .service-row {
        padding: 0 20px;
    }

    /* Gallery Section*/
    .slmp-gallery .slmp-image-item .slmp-image,
    .slmp-gallery .slmp-image-item .slmp-image img {
        height: 270px;
        overflow: hidden;
        object-fit: cover;
    }

    /* Choose Section */
    .choose-section .choose-left {
        margin-bottom: 60px;
    }

    .choose-section .choose-left-img {
        min-width: 295px;
        height: 250px;
    }

    .choose-section .choose-right {
        width: 100%;
    }

    .choose-section .choose-items {
        display: block;
    }

    .choose-section .choose-item {
        width: 100%;
    }

    .choose-section .choose-wrapper {
        max-width: 600px;
        margin: 0 auto;
        display: block;
    }

    /* Process Section */
    .process-section .process-items {
        display: block;
    }

    .process-section .process-item {
        width: 330px;
        margin: 0 auto 20px;
        min-height: 320px;
        display: grid;
        align-items: center;
    }

    .process-section .process-no {
        top: -66px;
    }

    /* Gallery Section */
    .gallery-section.vertical-padding {
        padding-bottom: 10px;
    }

    .gallery-section .inner-width {
        padding: 0;
    }

    .gallery-section .section-heading {
        padding: 0 20px;
    }

    /* Service Areas Section */
    .areas-section .areas-items {
        display: block;
    }

    .areas-section .areas-item {
        margin: 0 auto 20px;
        max-width: 480px;
    }

    /* 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;
    }

    /* Gallery Page */
    .slmp-gallery .slmp-image-label {
        font-size: 13px;
        left: 10px;
        right: 10px;
    }

    /* FAQs Section */
    .faq-section.vertical-padding {
        padding-top: 0;
    }

    /* Google Map Section */
    .map-section {
        padding-bottom: 0;
    }

    .map-section .inner-width {
        padding: 0;
    }

    .map-section .section-heading {
        padding: 0 20px;
    }

    .map-section iframe {
        display: block;
    }

    /* FAQ Section */
    .slmp-faqs .faq-cat-item .faq-cat-info .faq-info {
        padding: 15px 0;
    }

    /* Footer Section */
    footer .footer-column {
        max-width: 480px;
        margin: 0 auto 0;
    }

    footer .footer-logo {
        text-align: center;
        padding: 0;
        max-width: 217px;
        margin: 0 auto 40px;
    }

    footer .social-media {
        -webkit-justify-content: center;
        justify-content: center;
    }

    footer .copy-wrapper {
        display: block;
        text-align: center;
    }

    footer .copyright-text {
        margin: 30px 0 20px;
        text-align: center;
        font-size: 12px;
    }

    div#footer-count1,
    div#footer-count2 {
        width: 100% !important;
        margin-bottom: 50px;
    }

    div#footer-count1 {
        text-align: center;
    }

    div#footer-count2 {
        font-size: 14px;
    }

    div#footer-count3,
    div#footer-count4 {
        font-size: 12px;
    }

    footer .social-item {
        margin: 0 2px;
    }

    .footer-column .footer-item-rows:not(:first-child) {
        margin-bottom: 30px;
    }

    footer .ftr-menu ul {
        text-align: center;
    }

    footer .ftr-menu li:first-child {
        margin-left: 0;
    }

}

@media only screen and (max-width:980px) {

    /* Lists Section */
    .section-order-lists {
        display: none;
    }

    /* Hero Slider */
    .hero-slider .hero-slide-btn > a {
        max-width: 210px;
    }

}

@media only screen and (max-width:480px) {

    /* Footer Section */
    div#footer-count3 {
        width: 40%;
    }

    div#footer-count4 {
        width: 60%;
    }

}

/* Genesis */
@media (max-width:781px) {

    /* Contact Us Page */
    .map-wrap iframe {
        width: 100%;
    }

}
