:root {
    --primary-color: #252267;
    --primary-contrast: #f9f9ff;
    --secondary-color: #b21821;
    --body-text-color: #000000;
    --body-font: "Tajawal", sans-serif;
    --sec-font: "Old Standard TT", serif;
    --thi-font: "Poppins", sans-serif;
    --white: #fff;
    --black: #000;
    --lblue-100:#eff4f7;
    --lblue-200:#e8eef1;
    --lblue-300:#e8f4fb;
    --gray-100:#787878;
}

/* 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(--secondary-color);
    text-decoration: none;
}

a:link, a:visited {
    transition: all 0.4s ease 0s;
    text-decoration: none;
}

:focus {
    outline: 0 !important;
}

p {
    margin: 0 0 25px;
    position: relative;
}

ol, ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

li {
    list-style-type: disc;
}

hr {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 30px 0;
}

b, strong {
    font-weight: 700;
}

blockquote {
    margin: 0 0 30px;
    padding: 20px;
    background-color: #f3f3f3;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 400;
    font-family: var(--sec-font);
}

h1 {
    font-size: 40px;
    margin: 0 0 25px;
    position: relative;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 12px;
}

/* Forms */
form {
    position: relative;
}

input, select, textarea {
    border: 1px solid #e1e1e1;
    color: #636363;
    font-size: 16px;
    padding: 10px;
    overflow: hidden;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    -webkit-appearance: none;
}

input[type="checkbox"], input[type="image"], input[type="radio"] {
    width: auto;
}

select::-ms-expand {
    display: none;
}

::-ms-input-placeholder {
    color: #636363;
}

:-ms-input-placeholder {
    color: #636363;
}

::placeholder {
    color: #636363;
}

button, input[type="button"], input[type="reset"], input[type="submit"], .button {
    background-color: var(--secondary-color);
    border-radius: 0 !important;
    padding: 15px 25px;
    width: initial;
    font-family: var(--body-font);
    transition: all .5s;
    overflow: hidden;
    z-index: 1;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
}

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(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

/* Site Container */
.site-container {
    width: 100%;
    clear: both;
}

.site-inner {
    background-color: #f9faff;
    clear: both;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    padding: 0;
}

.home .site-inner {
    background: var(--white) url(/wp-content/uploads/2026/05/hp-content-background.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.content-sidebar-wrap {
    width: 100%;
    max-width: 1400px;
    padding: 100px 15px 100px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 5;
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }

}

/* Common Classes */
.sec-font {
    font-family: var(--sec-font);
}

.thi-font {
    font-family: var(--thi-font);
}

.c-white, .c-white a {
    color: var(--white);
}

.c-black, .c-black a {
    color: var(--black);
}

.c-gray, .c-gray a {
    color: var(--gray-100);
}

.c-dgray, .c-dgray a {
    color: var(--secondary-color);
}

.c-blue, .c-blue a {
    color: var(--primary-color);
}

.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;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}

.gap40 {
    gap: 40px;
}

a.site-btn {
    border-radius: 0;
    color: var(--white);
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
    transition: all .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 16px;
    min-width: 150px;
    text-transform: uppercase;
}

a.btn-hvr:hover {
    color: var(--primary-color);
}

a.btn-hvr:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -2;
}

a.btn-hvr:before {
    background-color: var(--lblue-300);
    position: absolute;
    z-index: -1;
    height: 100%;
    width: calc(100% + 1px);
    content: "";
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    top: 0;
    left: -1px;
    -webkit-transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
    -o-transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
    transition: all 0.4s cubic-bezier(.19, .79, 1, .97);
}

a.btn-hvr:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

a.btn-one {
    background: var(--primary-color);
}

a.btn-two {
    background-color: var(--secondary-color);
    color: var(--white);
}

a.btn-three {
    background-color: transparent;
    color: 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: 35px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--sec-font);
}

.divider:after {
    background-color: var(--secondary-color);
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    width: 60px;
}

.divider.centered:after {
    margin: 0 auto;
}

.section-title.divider {
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 16px;
    font-family: var(--thi-font);
}

.section-subtitle span {
    color: var(--primary-color);
}

.section-desc {
    font-size: 18px;
    margin-bottom: 18px;
}

.section-alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

.section-alignwide {
    padding: 60px 0;
    max-width: 100vw;
    margin-left: calc(-100vw / 10 + 100% / 10);
    margin-right: calc(-100vw / 10 + 100% / 10);
}

.full-width {
    width: 100%;
}

.inner-width {
    display: block;
    max-width: 1430px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    z-index: 2;
}

a.link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.show-item-mobile {
    display: block;
}

.hide-item-mobile {
    display: none;
}

.full-padding {
    padding: 100px 15px;
}

.vertical-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vertical-padding-med {
    padding-top: 60px;
    padding-bottom: 60px;
}

.side-padding {
    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-blue {
    background-color: var(--primary-color);
}

.bg-gray {
    background-color: #222222;
}

.clr {
    clear: both;
    padding: 20px 0;
}

.o-hidden {
    overflow: hidden;
}

.d-hidden {
    display: none;
}

span.br {
    display: block;
}

.remove-br br {
    display: none;
}

/* Slick */
.slide-control .left, .slide-control .right {
    background-color: var(--white);
    border-radius: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    text-align: right;
    color: var(--black);
    cursor: pointer;
    z-index: 2;
    font-size: 18px;
    transition: all 0.6s ease;
    padding: 8px 17px;
}

.slide-control .left {
    left: 0px;
}

.slide-control .right {
    right: 0px;
}

/* Breadcrumbs  */
.breadcrumbs .inner-with {
    z-index: 4;
}

.breadcrumbs .breadcrumb {
    border: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-size: 12px;
    text-transform: uppercase;
}

.breadcrumbs .bc-wrap {
    color: var(--white);
    font-weight: 600;
}

span.home-icon {
    font-weight: 400;
}

.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 .separator {
    color: var(--white);
    display: inline-block;
    font-size: 11px;
    padding: 0px 10px;
    position: relative;
}

.breadcrumbs .home-icon i {
    font-size: 11px;
    top: -1px;
    position: relative;
}

.archive-description p:last-child, .author-box p:last-child {
    margin-bottom: 0;
}

.archive-description .entry-title, .archive-title, .author-box-title {
    font-size: 39px;
    font-weight: 400;
}

/* Titles */
.archive-description .entry-title, .entry-title, .archive-title, .author-box-title {
    margin-bottom: 50px;
    text-align: center;
}

.entry-title {
    font-size: 30px;
    color: var(--black);
}

.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: 400;
    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 */
.wpcf7-form-control-wrap[data-name="acceptance"] {
    display: inline-block !important;
}

span.wpcf7-list-item-label {
    text-transform: initial;
    font-family: var(--white);
}

.wpcf7-acceptance span {
    margin: 0;
}

.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: 15px !important;
}

.form-container .wpcf7-acceptance label {
    display: block;
}

.form-container .form-field .form-field-item input {
    padding: 12px 20px 12px 20px;
}

.form-container .form-field .form-field-item select {
    padding: 12px 35px 12px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%), linear-gradient(to right, var(--primary-color), var(--primary-color));
    background-position: calc(100% - 29px) calc(1.1em + 4px), calc(100% - 24px) calc(1.1em + 4px), calc(100% - 2.5em) .5em;
    background-size: 5px 5px, 5px 5px, 0px 0em;
    background-repeat: no-repeat;
}

.form-container textarea {
    height: 100px;
    font-family: inherit;
}

.form-container .form-field-message {
    min-height: 41px;
}

.page-id-1885 .form-container .form-field-message {
    margin-bottom: 10px !important;
}

.form-container .form-field-message textarea {
    height: 100px;
    padding: 20px;
}

.form-container input, .form-container select, .form-container textarea {
    font-size: 14px;
    background-color: var(--white);
    border: 0;
    border: 1px solid var(--lblue-100);
    color: #636363;
    border-radius: 0;
}

.form-container .wpcf7-form-control-wrap {
    display: grid;
}

.form-recaptcha, .form-field-disclaimer {
    text-align: center;
}

.recaptcha-note, .recaptcha-note a {
    line-height: 1.4;
    margin: 20px 0 0;
}

.form-field-disclaimer {
    line-height: 1.4;
    padding: 5px 0;
    margin: 0 !important;
}

.recaptcha-note, .form-field-disclaimer {
    font-size: 12px;
}

.recaptcha-note, .form-field-disclaimer, .recaptcha-note a, .recaptcha-note a:hover, .form-field-disclaimer a, .form-field-disclaimer a:hover {
    color: var(--white);
}

.form-container .form-field-item.form-leads, .form-container .form-field-item.form-field-submit, .form-container .form-field-item.form-field-message, .form-container .form-field-item.form-recaptcha, .form-container .form-submit p {
    margin: 0;
}

.form-container .form-field-item {
    margin: 0 0 10px;
}

.wpcf7-spinner {
    position: absolute !important;
    bottom: 13px;
    right: 5%;
    margin: 0 auto !important;
    z-index: 2;
}

.fields-container select {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--secondary-color) 50%), linear-gradient(135deg, var(--secondary-color) 50%, transparent 50%), linear-gradient(to right, var(--secondary-color), var(--secondary-color));
    background-position: calc(100% - 20px) calc(1em + 0px), calc(100% - 15px) calc(1em + 0px), calc(100% - 2.5em) .5em;
    background-size: 5px 5px, 5px 5px, 0px 0em;
    background-repeat: no-repeat;
}

.grecaptcha-badge {
    visibility: hidden;
}

span.ajax-loader {
    position: absolute !important;
    display: block !important;
    margin: 0 auto !important;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

form.use-floating-validation-tip span.wpcf7-not-valid-tip {
    padding: 2px 5px;
    right: 11px;
    top: 50%;
    left: auto;
    width: auto;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #dc3232 !important;
    background-color: #dc3232;
    color: var(--white) !important;
    font-size: 12px !important;
    width: max-content;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:before {
    content: '';
    position: absolute;
    top: 100%;
    border-width: 5px;
    border-color: #dc3232 transparent transparent;
    border-style: solid;
    left: 10px;
}

div.wpcf7-response-output {
    padding: 10px !important;
    text-align: center;
    font-size: 12px;
    color: var(--white);
    border: 2px solid #e50000 !important;
    background: #ff0000;
    margin: 0 !important;
    position: absolute !important;
    bottom: -55px;
    left: 0;
    right: 0;
    z-index: 2;
}

.form-wrap div.wpcf7-response-output {
    bottom: -65px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
    background-color: #46b450 !important;
}

.frm-fields.col-md-8.cc span.wpcf7-not-valid-tip {
    top: 80%;
}

.site-form {
    width: auto;
    height: 100%;
    text-align: left;
}

.form-wrap {
    background: #f5f5f5;
    padding: 20px;
}

.form-wrap .recaptcha-note, .form-wrap .recaptcha-note a {
    color: var(--body-text-color);
}

.wpcf7-submit {
    border: 0 !important;
    min-width: 150px;
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
}

.wpcf7-submit:hover, .wpcf7-submit:focus {
    border: 0 !important;
    color: var(--white);
}

.show-text-label {
    font-size: 12px;
    color: var(--white);
}

.show-text-label span {
    color: var(--white);
}

.hide-text-label {
    display: none;
}

/* SFS Gallery */
.slmp-gallery h2, h2.slmp-video {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.slmp-popup-close:before, .item-popup-count, .popup-image-title {
    color: var(--white) !important;
}

.popup-image-title {
    padding: 2px 0px !important;
    font-size: 14px;
    display: none;
}

.slmp-popup-image-listing {
    background-color: transparent !important;
}

.slmp-popup-image-wrap {
    overflow: auto;
}

.slmp-image-item {
    border-radius: 0;
    height: 285px;
    margin-bottom: 20px;
    overflow: hidden;
}

.slmp-image-item, .slmp-grid-image.slmp-text-center.slmp-relative {
    overflow: hidden;
    height: 300px;
}

.slmp-display-image.slmp-grid-display-image.slmp-site-flex.slmp-justify-content-left.slmp-relative {
    justify-content: center;
}

.slmp-category-navigation {
    margin-top: 20px;
    margin-bottom: 50px !important;
    padding-bottom: 0 !important
}

.slmp-category-navigation .slmp-cat-title {
    background-color: var(--white) !important;
    border: 1px solid #e7f6ff !important;
    border-radius: 0;
    color: var(--black) !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0 5px 10px;
    min-width: initial !important;
    padding: 12px 15px !important;
    position: relative !important;
}

.slmp-category-navigation .slmp-cat-title:hover, .slmp-category-navigation .slmp-cat-title:focus, .slmp-category-navigation .slmp-cat-title.active {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: -0.418px 3.978px 40px 0px rgba(12, 156, 235, .52);
}

.slmp-gallery .slmp-image-item .slmp-image {
    width: 100%;
    overflow: hidden;
}

.slmp-image-item img {
    min-height: auto;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    overflow: hidden;
}

.slmp-image-item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.slmp-popup-slide-right {
    border-left: 15px solid var(--white) !important;
}

.slmp-popup-slide-left {
    border-right: 15px solid var(--white) !important;
}

.slmp-popup-image-count, .slmp-popup-image-item.active {
    background-color: transparent !important;
}

.slmp-gallery .slmp-gallery-load-more button {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    min-width: 180px !important;
    padding: 15px 20px !important;
    position: relative;
}

.slmp-gallery .slmp-image-label {
    left: 30px;
    right: 30px;
    bottom: 50px;
    padding: 15px 10px;
    background-color: rgba(7, 16, 19, .90);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-label {
    bottom: auto;
    left: auto;
    right: 0;
    border-radius: 0px;
    position: relative;
    background-color: var(--primary-color);
    padding: 20px;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-item {
    overflow: initial;
    padding: 0 30px;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-item img {
    height: 450px;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-item, .slmp-gallery.slmp-slide-gallery .slmp-grid-image.slmp-text-center.slmp-relative {
    height: 480px;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-item img {
    border-radius: 10px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-image {
    overflow: hidden;
}

.slmp-gallery.slmp-slide-gallery .slmp-image-item .slmp-image {
    background-color: var(--primary-color);
    padding: 0;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow, .slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    background-image: none;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f053";
    border-radius: 5px;
    font-size: 18px;
    left: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow {
    left: -130px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:before {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    border-radius: 5px;
    font-size: 18px;
    right: -130px;
    padding: 15px 19px;
    border: 1px solid #acafb0;
    color: var(--primary-color);
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow {
    right: -130px;
}

.slmp-gallery.slmp-slide-gallery .slmp-slide-right-arrow:hover:before, .slmp-gallery.slmp-slide-gallery .slmp-slide-left-arrow:hover:before {
    background-color: rgba(180, 45, 51, .70);
    color: var(--white);
    border: 1px solid transparent;
}

/* Header Menu */
.main-header {
    box-shadow: 0px 5px 5px 0px rgba(2, 2, 2, .15);
}

.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;
}

/* Site Navigation */
.genesis-nav-menu {
    padding: 0;
}

.genesis-nav-menu a {
    color: var(--white);
    padding: 11px 30px 11px 10px;
    border-bottom: 1px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
}

.genesis-nav-menu a, .genesis-nav-menu .sub-menu a {
    font-size: 16px;
}

.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-bottom: 0;
    max-width: 100%;
    width: auto;
    padding: 0;
    position: fixed;
    z-index: 1000;
    right: 20px;
    top: 18px;
    transition: all 0.6s ease;
    margin-top: 0;
}

.menu-toggle, .sub-menu-toggle {
    color: var(--white);
}

.menu-toggle:focus, .menu-toggle:hover, .sub-menu-toggle:focus, .sub-menu-toggle:hover {
    color: var(--white);
}

button.menu-toggle:before {
    content: "\f0c9";
    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";
    width: auto;
    height: auto;
}

.site-header .menu-toggle::before {
    margin-right: 0;
    border: 1px solid var(--white);
    float: left;
    margin-right: 0px;
    position: relative;
    text-rendering: auto;
    top: 0;
}

button.menu-toggle:before, button.menu-toggle.activated:before {
    font-weight: 900;
    padding: 9px 11px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--white);
}

.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: #bfbbbb !important;
}

.sub-menu-toggle.activated::before {
    transform: rotate(270deg) !important;
}

ul.sub-menu.show-submenu {
    display: block !important;
}

.mob-email a {
    border: 1px solid var(--white);
    margin-bottom: 0;
    max-width: 100%;
    position: fixed;
    z-index: 1000;
    right: 75px;
    top: 18px;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 999;
    padding: 80px 30px 60px;
    transition: all 0.6s ease;
    color: var(--white);
    max-width: 400px;
    overflow-y: auto;
}

.side-social .social-media {
    gap: 5px;
}

.side-social .social-media a.sprite {
    width: 40px;
    height: 40px;
}

div#mySidenav a {
    display: block;
    height: auto;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    padding: 5px;
}

.side-menu ul.sub-menu {
    margin: 0;
}

ul#menu-side-menu .current-menu-item a, ul#menu-side-menu a:hover {
    color: var(--white);
}

ul#menu-side-menu a:hover {
    padding-left: 10px;
}

ul#menu-side-menu a {
    padding: 5px;
}

ul#menu-side-menu ul.sub-menu {
    margin: 0;
}

ul#menu-side-menu li {
    color: var(--white);
    display: block;
    position: relative;
}

ul#menu-side-menu li:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f0da";
    margin-left: 5px;
    font-size: 13px;
    color: var(--primary-color);
    position: absolute;
    top: 9px;
    left: -20px;
    transition: all 0.4s ease 0s;
}

ul#menu-side-menu li:hover:before {
    padding-left: 5px;
}

.side-menu.slide-menu {
    left: 0;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.side-menu a.close {
    padding: 10px;
    position: absolute;
    top: 30px;
    right: 5px;
    font-size: 24px !important;
    cursor: pointer;
    color: var(--tertiary-color);
}

.menu-side-menu a {
    padding: 10px;
}

/* Entry Content */
.entry {
    position: relative;
    margin-bottom: 0px;
}

.entry-content h4 {
    margin-top: 0;
}

.entry-content h3, .entry-content h4 {
    font-weight: 700;
}

p.entry-meta i {
    color: var(--primary-color);
}

.entry-content ol {
    padding: 0 0 0 30px;
}

.entry-content ul {
    padding: 0;
}

.entry-content ul li, .entry-content ul li li {
    list-style: none;
    padding: 0 0 5px 30px;
    position: relative;
    overflow: auto;
}

.entry-content ul.children li {
    padding: 0 0 5px 25px;
}

.entry-content ul ul {
    margin-top: 10px;
}

.entry-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background-color: var(--body-text-color);
    border-radius: 50%;
}

.entry-content ol > li {
    list-style-type: decimal;
}

.full-width-content .content {
    width: 100%;
}

.entry-content figure.wp-block-image figcaption {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 15px 15px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.30);
    font-style: inherit;
}

.entry-content .wp-block-image {
    margin-bottom: 30px;
    padding-bottom: 0;
}

.entry-content .featured-image .image-wrap img {
    width: 100%;
}

.wp-block-buttons.is-content-justification-right {
    justify-content: center;
}

/* Pagination */
.pagination {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0 0;
}

.pagination ul {
    padding: 0;
    margin: 0;
    font-size: 0;
    text-align: center;
}

li.pagination-omission {
    position: relative;
}

li.pagination-omission:after {
    content: '...';
    font-size: 19px;
    color: #343434;
    bottom: -12px;
    position: relative;
}

.archive-pagination li {
    margin: 0 2px;
}

.entry-content .archive-pagination li {
    padding: 0 2px;
}

.archive-pagination li a {
    background-color: #fafbff;
    border: 1px solid #e6ebff;
    color: var(--black);
    font-weight: 700;
    padding: 10px 17px;
}

.archive-pagination li a:focus, .archive-pagination li a:hover, .archive-pagination li.active a {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.pagination ul li:before {
    display: none;
}

/* Back to Top */
.move-to-top {
    cursor: pointer;
    position: fixed;
    right: 0;
    bottom: 150px;
    width: 32px;
    height: 32px;
    z-index: 199;
}

.to-top {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid var(--white);
    font-size: 13px;
}

.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: 1200px;
    width: 100%;
    border-radius: 0;
    position: relative;
    padding: 20px 10px 60px 10px;
    transition: all 0.6s ease;
    visibility: hidden;
    bottom: -125%;
}

.popup-form .form-fields.slide-form {
    visibility: visible;
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
    bottom: 0;
}

.popup-form .form-fields a.close {
    background: var(--secondary-color);
    color: var(--white) !important;
    line-height: 30px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 4px;
    width: 30px;
    height: 30px;
    text-decoration: none;
    z-index: 1;
    outline: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
}

.popup-form .form-title, .popup-form .form-field, .contact-page-form .form-field {
    background: var(--primary-color);
}

.popup-form .form-title {
    font-size: 25px;
    margin: 0;
    padding: 30px 40px;
    text-align: center;
}

.popup-form .form-field, .contact-page-form .form-field {
    padding: 2px 0 0 0;
}

.popup-form .form-field-wrap, .contact-page-form .form-field-wrap {
    padding: 30px 20px;
}

.popup-form .form-field-item {
    width: 100%;
}

.popup-form div.wpcf7-response-output {
    bottom: -44px;
}

.popup-form .form-title-desc-wrap {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    z-index: 199;
    width: auto;
    margin: 0 auto;
    padding: 0;
    display: block;
    background-color: var(--secondary-color);
}

.floating-cta a {
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    position: relative;
    line-height: 1;
    color: var(--white);
    width: 100%;
    transition: none;
    font-weight: 700;
}

.floating-cta .floating-cta-wrap {
    display: flex;
}

.floating-cta .floating-cta-wrap:after {
    content: '';
    position: absolute;
    right: 0;
    height: 23px;
    width: 2px;
    background: #c1464d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Column */
.col-1-12, .col-2-12, .col-3-12, .col-4-12, .col-5-12, .col-6-12, .col-7-12, .col-8-12, .col-9-12, .col-10-12, .col-11-12, .col-12-12, .col-1-5, .col-2-5, .col-3-5, .col-4-5, .col-5-5, .col-1, .col-2, .col-3, .col-4, .col-5 {
    width: 100%;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-media a.sprite {
    display: flex;
    margin-right: 12px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.social-media a.sprite:last-child {
    margin-right: 0;
}

.social-media a.sprite span {
    background-repeat: no-repeat;
    height: 40px;
    display: block;
    margin: 0 auto;
    background-position-y: 7px;
    width: 30px;
}

.ftr-item .social-media img {
    top: 3px;
    position: relative;
}

.social-media .social-item a:hover {
    transform: translateY(-5px);
}

/* Header Section */
.site-header {
    position: fixed;
    height: auto;
    display: block;
    width: 100%;
    max-width: 100%;
    z-index: 200;
    top: auto;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
}

.window_scrolled .site-header {
    position: fixed;
}

.site-header .desk-item-btn {
    border: 1px solid var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.site-header .desk-email a {
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .desk-toggle {
    cursor: pointer;
    font-size: 20px;
}

.site-header .main-logo img {
    max-height: 70px;
}

.window_scrolled  .site-header .main-logo img {
    max-height: 40px;
}

.site-header .header-btn a {
    background-color: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    min-width: 236px;
    padding: 15px 20px;
}

.site-header .header-info-phone a {
    color: var(--white);
    font-size: 20px;
}

.site-top-news {
    background-color: var(--secondary-color);
    font-size: 16px;
    padding: 5px 0;
}

.site-top-news i {
    font-size: 15px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slider .inner-with, .hero-slider-wrap, .hero-item-wrap .hero-caption {
    height: 100vh;
    min-height: 768px;
    max-height: 1000px;
}

.hero-slider .hero-item {
    width: 100%;
    height: 100vh;
    min-height: 768px;
    max-height: 1000px;
}

.hero-slider .hero-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, .50);
}

.hero-slider .hero-caption-wrap {
    padding: 20px 0;
}

.hero-slider .hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .hero-item-wrap {
    height: 0;
    opacity: 0;
}

.hero-slider .hero-caption-row {
    z-index: 2;
    margin-top: 141px;
    margin-bottom: 30px;
    max-width: 100%;
}

.hero-slider .hero-slider-wrap.slick-initialized .hero-item-wrap {
    height: auto;
    opacity: 1;
}

.hero-slider .hero-slide-title {
    font-size: 35px;
    line-height: 1.1;
    position: relative;
    font-family: var(--sec-font);
}

.hero-slider .hero-slide-desc {
    line-height: 1.2;
    font-size: 16px;
}

.hero-slider .hero-slide-title, .hero-slider .hero-slide-desc, .hero-slider .hero-slide-btn {
    opacity: 0;
}

.hero-slider .hero-slide-title.animated.activate, .hero-slider .hero-slide-desc.animated.activate, .hero-slider .hero-slide-btn.animated.activate {
    opacity: 1;
}

.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 0s;
}

.hero-slider .hero-slide-title.animated.activate {
    animation-delay: 0.5s;
}

.hero-slider .hero-slide-desc.animated.activate {
    animation-delay: 1s;
}

.hero-slider .hero-slide-btn.animated.activate {
    animation-delay: 2s;
    margin-bottom: 10px;
}

.hero-slider .hero-slide-btn {
    margin-top: 50px;
}

.hero-slider .hero-slide-btn a {
    min-width: 148px;
    font-size: 14px;
    padding: 20px;
}

/* Slick Dots */
.hero-slider ul.slick-dots {
    position: absolute;
    bottom: 70px;
    padding: 0;
    display: block;
    left: 0;
    right: 0;
    text-align: center;
}

.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: rgba(255, 255, 255, .30);
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0;
    width: 20px;
    height: 5px;
}

.hero-slider ul.slick-dots li.slick-active button, .hero-slider ul.slick-dots li button:hover {
    background-color: var(--white) !important;
    position: relative;
    width: 50px;
}

.hero-slider ul.slick-dots li:before, .hero-slider ul.slick-dots li:only-child {
    display: none;
}

/* Page Banner */
.inner-page-banner {
    background-color: #f9faff;
}

.inner-page-banner:after {
    height: 650px;
}

.inner-page-banner .page-banner {
    height: 100vh;
    min-height: 514px;
    max-height: 514px;
}

.inner-page-banner .page-title-container {
    z-index: 2;
}

.inner-page-banner .inner-page-banner {
    position: relative;
}

.inner-page-banner .page-banner-wrap {
    height: 100%;
}

.inner-page-banner .page-tagline {
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 10px;
}

.inner-page-banner .page-title {
    font-size: 40px;
    line-height: 1;
    padding: 0 0 10px;
}

.inner-page-banner .page-banner-cols {
    margin: 100px 0 0;
}

.inner-page-banner .page-banner-container:before {
    content: '';
    background-color: rgba(0, 0, 0, .40);
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    z-index: 2;
}

/* Page */
.entry-content .form-container {
    background: var(--primary-color);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, .15);
}

.entry-content .form-container .form-field {
    padding: 40px 20px 40px;
}

.entry-content .form-container input, .entry-content .form-container select, .entry-content .form-container textarea {
    font-size: 14px;
    background-color: var(--white);
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 1em !important;
}

.wp-block-columns h1 {
    margin: 0 0 25px;
}

/* About Us Page */
.service-tile-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.service-tile-items a {
    min-height: 270px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 19%;
    flex-direction: column;
}

.service-tile-items a span {
    display: block;
    line-height: 1;
}

/* Services Page */
.page-id-242 .inner-page-banner, .page-id-242 .site-inner, .parent-pageid-242 .inner-page-banner, .parent-pageid-242 .site-inner {
    background-color: var(--white);
}

/* Gallery Page */
.page-id-232 .inner-page-banner, .page-id-232 .site-inner {
    background-color: var(--white);
}

.page-id-232 .slmp-gallery {
    margin-bottom: 50px;
}

.page-id-232 .slmp-image-item img {
    min-height: 400px;
}

.page-id-232 .slmp-image-item, .page-id-232 .slmp-grid-image.slmp-text-center.slmp-relative {
    height: 365px;
}

/* Contact Us Page */
.map-wrap iframe {
    min-height: 497px;
    width: 100%;
}

/* Reviews Page */
.navigation.pagination .nav-links .page-numbers {
    background-color: var(--lblue-100) !important;
    border: 1px solid var(--lblue-200);
    color: var(--black);
    line-height: 1;
    padding: 10px 15px !important;
}

.navigation.pagination .nav-links .page-numbers:hover, .navigation.pagination .nav-links span.page-numbers.current {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.navigation.pagination .dashicons-arrow-right-alt2:before, .navigation.pagination .dashicons-arrow-left-alt2:before {
    position: relative;
    top: 4px;
}

.navigation.pagination span.page-numbers.dots {
    color: var(--primary-color);
}

ul.yext-reviews-page li.review:before {
    display: none;
}

.view-review-form {
    margin: 30px 0 0;
}

.sfs-review-submit-btn button {
    border-radius: 0px !important;
    margin-bottom: 10px;
}

.sfs-review.reviewpostbox-form button.sfcr-submit-review, .view-review-form button.sfcr-create-review {
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 5px !important;
    color: var(--white) !important;
    font-size: 16px !important;
}

.sfs-review.reviewpostbox-form button.sfcr-cancel-review {
    color: var(--primary-color) !important;
}

.sfs-review.reviewpostbox-form button.sfcr-submit-review, .view-review-form button.sfcr-create-review, .sfs-review.reviewpostbox-form button.sfcr-cancel-review {
    font-weight: 700 !important;
    padding: 14px 25px !important;
    border-radius: 5px !important;
}

.list-of-reviews .review-content p {
    margin: 0 0 10px;
}

/* Search Result Page */
.search-result-title a {
    font-size: 40px;
    font-weight: 400;
    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 */
.page-id-209 .inner-page-banner, .page-id-209 .site-inner, .archive .inner-page-banner, .archive .site-inner {
    background-color: var(--white);
}

.archive-page h4 {
    font-size: 22px;
}

.category-list, .recent-post {
    position: relative;
}

.category-list:after, .recent-post:after {
    color: var(--black);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 10px;
    content: "\f0dd";
    pointer-events: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}

.archive-items select {
    background-color: #fafbff;
    border: 1px solid #e6ebff;
    color: var(--black) !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    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;
    text-transform: uppercase;
    font-family: var(--thi-font);
}

.category-list:hover:after, .recent-post:hover:after, .post-archives-list .col-3 select:hover, .category-list:focus:after, .recent-post:focus:after, .post-archives-list .col-3 select:focus {
    color: var(--black);
}

.archive-items select option {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}

.archive-items select option:first-child {
    display: none;
}

.blog-items {
    padding: 0 0 40px;
}

.blog-items .blog-item {
    margin-bottom: 20px;
}

.blog-items .blog-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.blog-items .post-btn a {
    display: block;
    font-size: 14px;
}

.blog-items .blog-image {
    min-height: 247px;
    height: 247px;
}

.blog-items .blog-content {
    font-size: 16px;
    padding-top: 15px;
}

.blog-items .blog-content, .blog-items .blog-title a {
    color: var(--black);
    font-size: 22px;
    font-family: var(--thi-font);
    font-weight: 600;
}

.blog-items .blog-content p {
    margin: 0;
    color: var(--body-text-color);
}

.blog-items .blog-wrapper {
    padding: 20px;
}

.blog-items .blog-link {
    color: #1b328d;
    font-size: 18px;
}

.blog-items .blog-link i {
    font-size: 14px;
}

.blog-items .date {
    color: var(--white);
    display: block;
    line-height: 1;
    position: relative;
    font-size: 25px;
}

.blog-items .month {
    font-size: 14px;
}

.blog-items .month, .blog-items .date {
    color: var(--white);
}

.blog-items a.ellips {
    text-decoration: none;
    color: #333;
}

.blog-items .blog-entry-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-family: var(--thi-font);
    margin-bottom: 20px;
}

.blog-items .blog-entry-meta, .blog-items .blog-entry-meta a {
    color: #4d4d4d;
}

.blog-items .blog-entry-meta i {
    color: #a3a3a3;
    font-size: 12px;
}

.blog-items .blog-date:after {
    position: absolute;
    content: "|";
    padding: 0 12px;
    color: #e9e9e9;
}

.blog-items .blog-description {
    color: #333333;
    margin-bottom: 10px;
}

/* Section Order */
section.full-width-section {
    max-width: 1920px;
    width: 100%;
    overflow-x: clip;
    margin: 0 auto;
}

.section ul {
    padding: 0;
}

.section ul li {
    list-style: none;
    padding: 0 0 0 30px;
    position: relative;
}

/* Homepage */
.home-btn a {
    min-width: 180px;
}

.hp-column-wrapper {
    display: flex;
    float: left;
    max-width: 590px;
    width: 100%;
    padding-right: 30px;
    gap: 20px;
    padding-bottom: 30px;
}

.hp-column-wrapper .home-card-info {
    background: #191b4c;
    color: var(--white);
    text-align: center;
}

.hp-column-wrapper div#home-card-one .home-card-info {
    padding: 40px 30px;
}

.hp-column-wrapper div#home-card-two .home-card-info {
    padding: 30px;
}

.hp-column-wrapper .home-card-one-info {
    text-align: center;
}

.hp-column-wrapper .title {
    font-size: 30px;
    font-family: var(--sec-font);
    line-height: 1;
    font-weight: 400;
    margin: 30px 0;
}

.hp-column-wrapper .subtitle {
    font-size: 14px;
}

.hp-column-wrapper i {
    font-size: 50px;
}

div#home-card-one, div#home-card-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Load More Block */
.load-more-content {
    display: none;
}

/* Contact Us Page */
#wpcf7-f1900-p1913-o1 .form-field-item.form-field-message {
    margin-bottom: 10px;
}

iframe.cb-online-booking {
    border: 1px solid #e6ebff;
}

/* Services Section */
.services-section {
    background-color: var(--primary-contrast);
}

.services-section .service-row {
    margin: 30px 0 0;
}

.services-section .f-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.services-section .service-item-wrap, .services-section .service-item-wrapper {
    height: 340px;
}

.services-section .service-item-wrapper {
    z-index: 2;
}

.services-section .service-wrapper {
    padding: 30px;
    width: 100%;
    background-color: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    opacity: 0;
}

.services-section .slick-active .service-wrapper {
    opacity: 1;
}

.services-section .service-title {
    font-size: 25px;
}

.services-section .service-desc {
    font-size: 18px;
}

.services-section .service-link a {
    z-index: 1;
}

/* Inner Page -  Services Section */
.inner-services-section {
    padding-bottom: 40px;
}

.inner-services-section .service-items {
    padding-top: 20px;
}

.inner-services-section .service-item {
    background-color: var(--white);
    margin-block-end: 40px;
}

.inner-services-section .service-content-wrapper {
    align-content: center;
    background-color: #f7f7ff;
    padding: 20px;
}

.inner-services-section .service-title {
    font-size: 25px;
    margin: 10px 0 5px;
}

.inner-services-section .service-desc {
    font-size: 14px;
}

.inner-services-section .service-btn {
    margin-top: 30px;
}

.inner-services-section .service-bg {
    height: 350px;
    object-fit: cover;
}

.inner-services-section .service-content {
    display: flex;
}

/* Gallery Section */
.gallery-section .slmp-image-item {
    padding: 0 10px;
    margin-bottom: 0;
    position: relative;
}

/* Counter Section */
.counter-section {
    margin: 0 0 100px;
}

.counter-section .counter-number {
    font-size: 40px;
    margin-top: 40px;
}

.counter-section .counter-title {
    font-size: 16px;
}

.counter-section.odometer.odometer-auto-theme {
    display: none;
}

/* Choose Section */
.choose-section .choose-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.choose-section .choose-item {
    border: 1px solid #dedede;
    padding: 30px;
}

.choose-section .choose-icon {
    width: 46px;
    margin-bottom: 40px;
}

.choose-section .choose-title {
    font-size: 30px;
    line-height: 1.2;
}

.choose-section .choose-desc {
    font-size: 18px;
    margin-top: 15px;
}

/* Meet the Owner Section */
.owner-section .video {
    width: 100%;
    height: 307px;
    max-width: 466px;
    position: absolute;
    top: 0;
    right: 240px;
}

.owner-section .owner-profile-image {
    position: absolute;
    top: 0;
    z-index: 1;
    right: 0;
}

/* Footer Section */
.footer-section {
    background-color: var(--black);
    text-align: left;
}

.footer-row.main-footer {
    padding: 100px 0;
}

footer .footer-row.main-footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .80);
}

footer .column-item {
    margin-bottom: 20px;
}

footer span.info-item-label {
    display: block;
    font-size: 12px;
}

footer .column-label {
    font-size: 25px;
    margin: 0 0 20px;
    text-align: left;
    font-weight: 400;
}

footer span.info-item {
    color: var(--white);
}

footer .footer-menu ul {
    margin: 0;
    padding: 0;
}

footer .footer-menu ul li {
    list-style: none;
    padding: 0;
}

footer .footer-menu ul li a {
    color: var(--white);
    font-weight: 400;
    position: relative;
    padding: 2px 0;
    transition: all 0.5s ease-out;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
}

footer .footer-menu ul li a:hover {
    color: var(--white);
}

footer .footer-col-item {
    padding-left: 30px;
    color: var(--white);
}

footer .footer-item-rows:last-child .footer-col-item:not(:last-child) {
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
}

footer .site-address {
    margin: 0 0 60px !important;
}

footer .footer-col-item, footer .footer-col-item a, footer .custom-footer-content {
    color: var(--white);
    font-size: 16px;
}

footer .menu-disabled > a {
    pointer-events: none;
}

footer .footer-item-rows .footer-col-item.footer-menu {
    padding: 0;
}

footer .footer-col-item.site-social {
    padding-left: 0;
    padding-top: 10px;
}

footer .footer-col-item.site-name span {
    display: block;
    font-weight: 600;
}

footer .footer-col-item.site-name span.ftr-item span {
    font-weight: 400;
}

footer .footer-item-rows .footer-col-item:not(:last-child) {
    margin-bottom: 10px;
}

footer .footer-item-rows .footer-col-item.site-address:before, footer .footer-item-rows .footer-col-item.site-number:before, footer .footer-item-rows .footer-col-item.site-email:before, footer .footer-item-rows .footer-col-item.site-license:before, footer .footer-column .footer-col-item.site-fax:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -3px;
    color: var(--white);
    font-size: 20px;
}

footer .footer-item-rows .footer-col-item.site-name:before {
    content: "\f015";
}

footer .footer-column .footer-col-item.site-address:before {
    content: "\f3c5";
    left: -1px;
}

footer .footer-column .footer-col-item.site-number:before {
    content: "\f3ce";
}

footer .footer-column .footer-col-item.site-email:before {
    content: "\f0e0";
    font-weight: 900;
    top: 2px;
}

footer .footer-item-rows .footer-col-item.site-license:before {
    content: "\f2c1";
    left: 2px;
}

footer .footer-column .footer-col-item.site-fax:before {
    content: "\f1ac";
    font-weight: 900;
    top: 2px;
}

footer .ftr-menu ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

footer .copyright-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0 70px;
    font-size: 16px;
}

footer .copyright-section  a {
    color: var(--white);
}

footer .footer-col-item.site-social {
    padding-bottom: 20px;
}

footer .ftr-social {
    margin-top: 50px;
}

footer .footer-col-item.site-operation {
    padding-left: 0;
}

/* XAPP */
div#xapp-widget .cta-bubble__content {
    color: #000 !important;
}

/* Video */
.play-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    margin: 0 auto;
}

.play-icon .play-btn {
    width: 60px;
    height: 40px;
    background: radial-gradient(rgb(227 37 41) 100%, rgba(255, 255, 255, 0.3) 57%);
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.play-icon .play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 10px;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -25%;
    -webkit-transform: translateY(-25%);
    -o-transform: translateY(-25%);
    transform: translateY(-25%);
    background: rgba(198, 16, 0, 0);
}

.play-icon .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--white);
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Popup Video Player */
.popup-video-section {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999999;
    overflow: hidden;
}

.popup-video-section .popup-video-row {
    height: 100%;
}

.popup-video-section .popup-video-row-wrap {
    width: 100%;
    max-width: 800px;
    padding: 10px 10px;
}

.popup-video-section .popup-video-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border: 0
    background-color:var(--black);
    border-radius: 5px;
}

.popup-video-section button.pop-close {
    max-width: 30px;
    font-size: 20px;
    padding: 5px 5px;
    border-radius: 0;
    position: absolute;
    top: -31px;
    right: 0;
    border: 0;
    color: var(--white);
    font-weight: bold;
    background-color: transparent;
}

.popup-video-section .video-item-popup {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.popup-video-section .video-item-popup iframe {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    max-height: 435px;
}

.video-holder-base {
    height: 0;
    width: 190px;
    margin: 0 auto;
}

/* Media Queries */
@media only screen and (min-width:768px) {

    /* Common Classes */
    ul.list-col-2, ol.list-col-2, ul.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%;
    }

    /* Page Banner */
    .inner-page-banner .page-tagline {
        font-size: 16px;
    }

}

@media only screen and (min-width:1024px) {

    /* Common Classes */
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 12px;
    }

    a.site-btn {
        font-size: 18px;
    }

    .section-subtitle {
        margin: 0;
    }

    span.home-text {
        display: none;
    }

    .vertical-padding {
        padding-top: 130px;
        padding-bottom: 130px;
    }

    .vertical-bottom-padding {
        padding-bottom: 130px;
    }

    .vertical-top-padding {
        padding-top: 130px;
    }

    .full-padding {
        padding: 100px 30px;
    }

    .archive-description .entry-title, .archive-title, .author-box-title {
        font-size: 55px;
    }

    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        -moz-animation-name: fadeInDown;
        -o-animation-name: fadeInDown;
        animation-name: fadeInDown;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        -o-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        -o-animation-duration: 1s;
        animation-delay: 1s;
    }

    /* Forms */
    .form-container .col-2.form-field-item {
        width: 48%;
    }

    .popup-form .form-title {
        font-size: 34px;
    }

    /* Header Section */
    .window_scrolled .main-header {
        background: var(--white);
    }

    .site-header {
        padding: 0;
        box-shadow: 0 0 0 transparent;
    }

    .window_scrolled .site-header {
        padding: 0;
    }

    .mobile-phone-number > div {
        width: 32.5%;
        padding: 10px;
    }

    .site-header a.mobile-logo {
        display: none;
    }

    a.main-logo {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 200px;
        top: -20px;
    }

    .site-header .main-header-wrapper {
        padding: 30px 20px 10px 20px;
    }

    .site-header .main-logo img, .window_scrolled .site-header .main-logo img {
        max-height: 78px;
    }

    .site-header .header-info-phone i {
        font-size: 20px;
        top: 2px;
        position: relative;
    }

    .site-top-news {
        z-index: 1;
    }

    .site-header .header-btn a {
        min-width: 146px;
    }

    /* Genesis Menu */
    .header-menu {
        margin-bottom: 0;
    }

    ul.genesis-nav-menu > li:last-child {
        margin-right: 0;
    }

    .genesis-nav-menu > .menu-item {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
    }

    .genesis-nav-menu > .menu-highlight > a:focus, .genesis-nav-menu > .menu-highlight > a:hover {
        background-color: var(--primary-color);
    }

    .nav-primary .genesis-nav-menu a {
        background-color: transparent;
        border-bottom: 0;
        color: var(--white);
        font-size: 16px;
        padding: 10px 10px 20px;
    }

    .window_scrolled .nav-primary .genesis-nav-menu a {
        color: var(--white);
    }

    .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(--white);
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children > a:after, .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
        content: "\f107";
        margin-left: 5px;
        font-size: 12px;
        color: var(--white);
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after, .genesis-nav-menu .current-menu-item > a:after {
        color: var(--white) !important;
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children.sfHover > a:after {
        content: "\f106";
    }

    .genesis-nav-menu .sub-menu .menu-item-has-children.sfHover > a:after {
        content: "\f105";
        color: var(--secondary-color);
    }

    .nav-primary .genesis-nav-menu li li > a span::before, .nav-primary .genesis-nav-menu li li > a span::after {
        display: none;
    }

    .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        right: 15px;
        position: absolute;
    }

    .window_scrolled .genesis-nav-menu .sub-menu a, .genesis-nav-menu .sub-menu .menu-item-has-children > a:hover:after {
        color: var(--black);
    }

    .genesis-nav-menu .sub-menu, .genesis-nav-menu .sub-menu a {
        width: 225px;
    }

    .genesis-nav-menu .sub-menu {
        opacity: 0;
        padding-left: 0;
        position: absolute;
        transition: opacity 0.4s ease-in-out;
        border: 0;
        background-color: var(--white);
        box-shadow: 0px 20px 15px rgba(0, 0, 0, .3);
    }

    .genesis-nav-menu .sub-menu a {
        background-color: var(--white);
        border-bottom: 0;
        color: var(--black);
        padding-bottom: 15px;
        padding-top: 15px;
        text-align: left;
        border-radius: 0px;
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        border: 0;
    }

    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -44px 0 0 225px;
    }

    .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(--white);
        text-decoration: none;
    }

    .genesis-nav-menu .sub-menu a:focus, .genesis-nav-menu .sub-menu a:hover, .genesis-nav-menu .sub-menu .current-menu-item > a, .genesis-nav-menu .sub-menu .current-menu-item > a:focus, .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
        text-decoration: none;
        color: var(--white);
        background-color: var(--primary-color);
    }

    .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;
    }

    .genesis-nav-menu .sub-menu a, .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 15px;
    }

    /* 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;
    }

    .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;
        width: 100%;
    }

    .nav-primary > .wrap {
        text-align: right;
    }

    .genesis-nav-menu {
        font-size: 0;
        padding: 0;
        margin: 0;
        text-align: center;
        background: var(--primary-color);
    }

    .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);
    }

    /* Common Classes */
    .entry-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 35px;
    }

    .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: 130px 20px 100px;
    }

    .full-width-content .content {
        position: relative;
    }

    .alignright, img.alignright, iframe.alignright {
        float: right !important;
        margin: 0 0 0 15px !important;
    }

    .alignleft, img.alignleft, iframe.alignleft {
        float: left !important;
        margin: 0 15px 0 0 !important;
    }

    figure.wp-caption.alignleft {
        margin: 15px 30px 15px 0;
        float: left;
    }

    figure.wp-caption.alignright {
        margin: 15px 0 15px 30px;
        float: right;
    }

    .entry-content .form-container .form-field {
        padding: 40px 20px 40px;
    }

    /* Column By 5 */
    .col-1-5 {
        width: 100%;
    }

    .col-2-5 {
        width: 50%;
    }

    .col-3-5 {
        width: 33.33%;
    }

    .col-4-5 {
        width: 25%;
    }

    .col-5-5 {
        width: 20%;
    }

    /* Column Edge to Edge with Space */
    .col-2 {
        width: 49%;
    }

    .col-3 {
        width: 32%;
    }

    .col-4 {
        width: 23.5%;
    }

    .col-5 {
        width: 18.4%;
    }

    /* Column By 12 */
    .col-1-12 {
        width: 8.333%;
    }

    .col-2-12 {
        width: 16.667%;
    }

    .col-3-12, .col-1-4 {
        width: 25%;
    }

    .col-4-12 {
        width: 33.333%;
    }

    .col-5-12 {
        width: 41.667%;
    }

    .col-6-12, .col-2-4 {
        width: 50%;
    }

    .col-7-12 {
        width: 58.333%;
    }

    .col-8-12 {
        width: 66.667%;
    }

    .col-9-12 {
        width: 75%;
    }

    .col-10-12 {
        width: 83.333%;
    }

    .col-11-12 {
        width: 91.667%;
    }

    /* Hero Slider */
    .section.hero-slider:after {
        display: none;
    }

    .hero-slider .inner-with, .hero-slider-wrap, .hero-slider-wrap .hero-item, .hero-item-wrap .hero-caption {
        height: 100vh;
        min-height: 840px;
        max-height: 1000px;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider .hero-caption-row {
        max-width: 768px;
    }

    .hero-slider .hero-slide-title {
        margin: 0 0 20px;
        font-size: 50px;
    }

    .hero-slider .hero-slide-desc {
        font-size: 16px;
    }

    .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 .slide-control .left, .hero-slider .slide-control .right {
        top: 60%;
    }

    .hero-slider .slide-control .left {
        left: 15px;
    }

    .hero-slider .slide-control .right {
        right: 15px;
    }

    /* Page Banner */
    .inner-page-banner {
        padding: 0 20px;
    }

    .inner-page-banner .page-banner {
        height: 514px;
        min-height: 514px;
        max-height: initial;
        margin: 0 auto;
    }

    .inner-page-banner .page-banner-container {
        background-color: var(--primary-color);
    }

    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 20px;
        padding-left: 20px;
    }

    .inner-page-banner .page-title-container {
        padding: 20px 0;
    }

    .inner-page-banner .page-title {
        font-size: 55px;
    }

    .breadcrumbs .breadcrumb {
        font-size: 14px;
    }

    /* Services Section */
    .services-section .service-item {
        margin-bottom: 60px;
        margin-left: 20px
    }

    .services-section .service-wrapper {
        width: 85%;
        margin: 0 auto;
    }

    .services-section .service-title {
        font-size: 30px;
    }

    .services-section .service-wrapper {
        padding: 50px;
    }

    /* Block: Services Page Lists */
    .inner-services-section .service-content-wrapper {
        padding: 70px 40px;
    }

    .inner-services-section .service-title {
        font-size: 30px;
    }

    .inner-services-section .service-desc {
        font-size: 18px;
    }

    /* Areas We Serve Section */
    .aws-lists-wrap .aws-list {
        padding: 2%;
    }

    .wp-block-group.align-map {
        max-width: 470px;
        padding: 0 0 60px 100px;
    }

    /* Page Content */
    .entry-content .home-btn-wrap {
        display: flex;
        gap: 20px;
    }

    /*Blog Post, Archive*/
    .archive-items {
        margin: 0 0 30px;
    }

    .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%;
    }

    /* Gallery Page */
    .page-id-232 .slmp-image-item, .page-id-232 .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 334px;
    }

    .slmp-image-item {
        margin-bottom: 30px;
    }

    /* Owner Section */
    .owner-section .section-info-wrap {
        width: 35%;
    }

    .owner-section .owner-profile-image {
        right: -260px;
    }

    .owner-section .video {
        width: 100%;
        height: 217px;
        max-width: 336px;
        position: absolute;
        top: 0;
        right: 240px;
    }

    /* Footer Section */
    .footer-row.main-footer {
        padding: 100px 0;
    }

    footer .footer-section {
        font-size: 16px;
    }

    footer .footer-col-item {
        padding-left: 24px;
    }

    footer .footer-col-item, footer .footer-col-item a, footer .custom-footer-content {
        font-size: 12px;
    }

    footer .copyright-section {
        padding: 30px 0;
    }

    .floating-cta {
        width: auto;
        text-align: center;
        transition: right ease-in .3s;
        position: fixed;
        transform-origin: top right;
        right: 10px;
        left: auto;
        bottom: auto;
        top: 0;
        transform: rotate(-90deg) translateY(-100%);
        margin-top: 35vh;
        padding: 0 0;
        max-width: max-content;
        display: none;
    }

    .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%;
    }

    /* Back to Top */
    .move-to-top {
        bottom: 109px;
    }

    .move-to-top, .to-top {
        height: 32px;
        width: 32px;
        right: 20px;
    }

}

@media only screen and (min-width:1201px) {

    /* Common Classes */
    a.site-btn {
        min-width: 157px;
    }

    /* Header Section */
    a.main-logo {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 300px;
        top: -20px;
    }

    .entry-content .form-container .form-field {
        padding: 40px 60px 40px;
    }

    /* Hero Slider */
    .hero-slider .hero-slide-desc {
        font-size: 20px;
    }

    /* Page Banner */
    .inner-page-banner {
        padding: 0 120px;
    }

    /* Choose Section */
    .section-order-choose {
        padding: 0 30px;
    }

    .choose-section .choose-icon {
        width: 63px;
    }

    /* Footer Section */
    footer .footer-col-item {
        font-size: 12px;
    }

    footer .footer-col-item {
        padding-left: 30px;
    }

}

@media only screen and (min-width:1367px) {

    /* Common Classes */
    body {
        font-size: 18px;
    }

    h1 {
        font-size: 55px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 35px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 14px;
    }

    .archive-description .entry-title, .entry-title, .archive-title, .author-box-title {
        font-size: 55px;
    }

    .section-title {
        font-size: 50px;
    }

    .section-desc {
        font-size: 18px;
    }

    a.site-btn {
        font-size: 16px;
    }

    .side-padding {
        padding-right: 150px;
        padding-left: 150px;
    }

    .full-padding {
        padding: 120px;
    }

    .slide-control .left {
        left: 160px;
    }

    .slide-control .right {
        right: 160px;
    }

    /* Header Section */
    .site-header .main-logo img, .window_scrolled .site-header .main-logo img {
        max-height: 178px;
    }

    .site-header .header-btn a {
        min-width: 236px;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu a {
        font-size: 18px;
    }

    .genesis-nav-menu > .menu-item.menu-item-has-children > a:after, .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-size: 14px;
    }

    .genesis-nav-menu a, .genesis-nav-menu > span {
        padding: 50px 0;
    }

    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -48px 0 0 225px;
    }

    .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;
    }

    .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 20px;
    }

    .nav-primary .genesis-nav-menu a i {
        font-size: 16px;
    }

    /* Hero Slider */
    .hero-slider .hero-caption-row {
        max-width: 1200px;
    }

    .hero-slider .hero-slide-title {
        font-size: 60px;
    }

    .hero-slider .hero-slide-control {
        left: 145px;
    }

    .hero-slider .slide-control .left {
        left: 85px;
    }

    .hero-slider .slide-control .right {
        right: 85px;
    }

    .hero-slider .hero-slide-btn a {
        font-size: 18px;
        padding: 14px 20px;
        min-width: 236px;
    }

    /* Page Banner */
    .inner-page-banner .page-banner-wrap.side-padding {
        padding-right: 60px;
        padding-left: 60px;
    }

    .inner-page-banner .page-title {
        font-size: 75px;
    }

    /* Choose Section */
    .section-order-choose {
        padding: 0 90px;
    }

    /* Page Content */
    .content-sidebar .content-sidebar-wrap {
        padding: 20px 125px 200px 100px;
    }

    /* Services Section */
    .services-section .service-title {
        font-size: 40px;
    }

    /* Inner Page - Services Section */
    .inner-services-section .service-bg {
        height: 400px;
    }

    /* Gallery Section */
    .slmp-image-item, .slmp-grid-image.slmp-text-center.slmp-relative {
        overflow: hidden;
        height: 439px;
    }

    /* Meet the Owner Section */
    .owner-section .section-info-wrap {
        width: 45%;
    }

    .owner-section .video {
        width: 100%;
        height: 267px;
        max-width: 426px;
        position: absolute;
        top: 0;
        right: 300px;
    }

    .owner-section .owner-profile-image {
        right: -14%;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    /* Footer Section */
    footer .column-label {
        font-size: 30px;
    }

    footer .footer-col-item a, footer .custom-footer-content, footer .footer-col-item {
        font-size: 16px;
    }

}

@media only screen and (min-width:1601px) {

    /* Header Section */
    .site-header .main-header-wrapper {
        padding: 30px 30px 10px 30px;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu > a {
        padding: 35px 0px;
    }

    .genesis-nav-menu > .menu-item {
        margin: 0 6px;
    }

    .genesis-nav-menu>.menu-item.menu-item-has-children>a:after, .genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
        font-size: 12px;
    }

    .genesis-nav-menu .sub-menu a, .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 20px;
    }

    /* Owner Section */
    .owner-section .owner-profile-image {
        right: -180px;
    }

    .owner-section .video {
        width: 100%;
        height: 307px;
        max-width: 466px;
        position: absolute;
        top: 0;
        right: 240px;
    }

}

@media only screen and (min-width:1801px) {

    /* Header Section */
    .site-header .main-header-wrapper {
        padding: 30px 90px 10px 90px;
    }

    .genesis-nav-menu .sub-menu a, .window_scrolled .genesis-nav-menu .sub-menu a {
        padding: 15px 20px;
    }

    .owner-section .owner-profile-image {
        right: -30px;
    }

}

/* Max Width CSS */
@media only screen and (max-width:1023px) {

    /* Common Classes  */
    .site-top-news {
        border-bottom: 1px solid var(--secondary-color);
    }

    .wp-block-image {
        text-align: center;
        padding-bottom: 20px;
    }

    .gap30 {
        gap: 15px;
    }

    a.site-btn {
        padding: 10px 15px;
    }

    .side-menu.slide-menu {
        display: none;
    }

    /* Form */
    .wpcf7-submit {
        font-size: 16px;
        padding: 15px 35px;
    }

    /* Header Section */
    .main-header {
        background-color: var(--primary-color);
    }

    .main-header .inner-width {
        padding: 0;
    }

    .site-header .header-phone {
        background-color: var(--primary-color);
        text-align: center;
        width: 100%;
    }

    .site-header .header-phone a {
        color: var(--white);
        display: inline-block;
        padding: 5px 0 5px 40px;
        text-align: center;
        font-size: 20px;
        margin: 0 auto;
    }

    .site-header .main-header-items {
        background-color: var(--primary-color);
        display: block;
        height: 75px;
    }

    .site-top-news, .site-header .header-right, .site-header .desk-item-btn {
        display: none;
    }

    .site-header .main-logo img, .window_scrolled .site-header .main-logo img {
        position: absolute;
        left: 20px;
        z-index: 301;
        margin: 0 auto;
        top: 26px;
        max-height: 32px;
    }

    /* Header Menu */
    .nav-primary .genesis-nav-menu a {
        font-size: 18px;
    }

    .nav-primary .genesis-nav-menu a i {
        display: none;
        color: var(--primary-color);
    }

    .nav-primary {
        background-color: var(--primary-color);
        margin-top: 75px;
        padding: 15px 10px 150px;
    }

    .window_scrolled .nav-primary {
        margin-top: 74px;
    }

    /* 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-top: 150px;
        margin-bottom: 100px;
        text-align: center;
    }

    .hero-slider .hero-caption-row, .hero-slider .hero-slide-title, .hero-slider .hero-slide-desc {
        text-align: center;
    }

    .hero-slider .hero-slide-title {
        margin-bottom: 20px;
    }

    .hero-slider .hero-slide-btn {
        display: block;
    }

    .hero-slider .hero-slide-btn > a {
        display: inline-block;
        margin: 0 5px 10px;
    }

    .hero-slider ul.slick-dots, .hero-slide-control.slide-control {
        display: none !important;
    }

    /* Page Banner */
    .inner-page-banner .page-banner-cols {
        text-align: center;
        display: block;
    }

    /* Page Content */
    .entry-content .home-btn {
        margin: 0 0 15px;
    }

    .site-inner .content a.site-btn {
        min-width: 150px;
    }

    .content-sidebar .content-sidebar-wrap, .content-sidebar .breadcrumbs .inner-width {
        margin: 0 auto;
        padding: 0px 15px;
    }

    .wp-block-group.map-wrap {
        margin-top: 60px;
    }

    /* Homepage */
    .hp-column-wrapper {
        float: none;
        margin: 0 auto;
        padding-right: 0;
    }

    /* Areas We Serve Pages */
    .wp-block-group.align-map {
        float: none;
        text-align: center;
    }

    /* Owner Section */
    .owner-section .section-info-wrap {
        margin-top: 404px;
    }

    .owner-section .video {
        width: 100%;
        height: 217px;
        max-width: 335px;
        position: absolute;
        right: 0;
        margin: 0 auto;
        left: 0;
        top: -300px;
    }

    .owner-section .owner-profile-image {
        position: absolute;
        top: 0;
        z-index: 1;
        right: 0;
        max-width: 375px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    /* Choose Section */
    .section.choose-section.vertical-top-padding {
        padding-top: 20px;
    }

    .choose-section .choose-items {
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .choose-section .item-box {
        align-items: flex-start;
    }

    .choose-section .choose-icon {
        width: 76px;
    }

    /* Services Section */
    .services-section .service-items {
        gap: 20px;
    }

    .services-section .service-item {
        margin-bottom: 140px;
    }

    .services-section .service-wrapper {
        width: 95%;
        margin: 0 auto;
        top: 270px;
        bottom: auto;
    }

    .services-section .slide-control .left {
        left: 20px;
    }

    .services-section .slide-control .right {
        right: 20px;
    }

    .services-section .slide-control .left, .services-section .slide-control .right {
        top: 199px;
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .services-section .f-image, .services-section .service-item-wrap, .services-section .service-item-wrapper {
        height: 500px;
    }

    /* Block: Services Page Lists */
    .inner-services-section .service-items {
        max-width: 600px;
        margin: 0 auto 0;
    }

    /* Gallery Section */
    .gallery-section {
        padding-bottom: 60px;
        max-width: 600px;
        margin: 0 auto;
    }

    .gallery-section .slmp-gallery {
        margin-bottom: 0;
    }

    .gallery-section .slmp-image-item {
        width: 47%;
        margin: 0;
        padding: 0;
    }

    /* Counter Section */
    .counter-section .full-padding {
        padding: 60px 15px;
        max-width: 600px;
        margin: 0 auto;
    }

    .counter-section .counter-item:not(:last-child) {
        margin-bottom: 50px;
    }

    .counter-section .counter-number {
        margin-top: 15px;
    }

    /* 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;
    }

    /* About Page: Service Tiles */
    .service-tile-items a {
        width: 100%;
        max-width: 300px;
    }

    /* Footer Section */
    .footer-row.main-footer {
        background: url(/wp-content/uploads/2026/06/mobile-footer-background.jpg) top center no-repeat;
    }

    footer .footer-column {
        max-width: 480px;
        margin: 0 auto 0;
    }

    footer .footer-item-rows {
        margin-bottom: 35px;
    }

    footer .footer-logo {
        text-align: center;
        padding: 0;
        max-width: 140px;
        margin: 0 auto;
    }

    footer .copy-wrapper {
        display: block;
        text-align: center;
    }

    footer .ftr-social {
        max-width: 480px;
        margin: 60px auto -1px;
    }

    /* XAPP */
    #xapp-widget .xapp-chat-button {
        z-index: 100;
        bottom: 22px !important;
    }

}

@media only screen and (max-width:768px) {

    /* Homepage */
    .hp-column-wrapper {
        flex-direction: column;
        max-width: 335px;
        text-align: center;
        margin: 0 auto;
    }

    .hp-image-one, .hp-image-two {
        overflow: hidden;
        height: 320px;
    }

    .hp-image-one img, .hp-image-two img {
        width: 400px;
    }

}

@media only screen and (max-width:480px) {

    /* Gallery Section */
    .gallery-section .slmp-image-item, .gallery-section .slmp-grid-image.slmp-text-center.slmp-relative {
        height: 300px;
    }

}

/* Genesis */
@media (max-width:781px) {

    /* Contact Us Page */
    .map-wrap iframe {
        width: 100%;
    }

}
