/* Global Styles */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

::selection {
    background: #ed1c24;
    color: #fff;
}

body {
    color: #020202;
    font-size: 100%;
    font-family: "Lato", sans-serif;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    margin: 0;
}

html {
    color: #111;
    font-family: "Lato", sans-serif;
}

.text--center {
    text-align: center;
}

.text--right {
    text-align: right;
}

img {
    max-width: 100%;
}

a:hover,
a,
a:active {
    text-decoration: none;
    outline: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 130%;
    font-family: "Lato", sans-serif;
    margin: 0;
}

.p-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1270px;
    padding: 0;
}

@media (max-width: 1200px) {
    .p-container {
        padding: 0 20px;
    }
}

.p-container-small {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h5 a:hover,
h4 a:hover,
h6 a:hover {
    color: #ed1c24;
    margin-bottom: 0;
    --transition: 0.48s;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-inline {
    display: inline-flex;
}

.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
    display: none;
}

.flex-left {
    justify-content: flex-start;
}

.flex-center {
    justify-content: center;
}

.flex-right {
    justify-content: flex-end;
}

.flex-between {
    justify-content: space-between;
}

.flex-around {
    justify-content: space-around;
}

.flex-middle {
    align-items: center;
}

.flex-bottom {
    align-items: flex-end;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.p-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 25px;
}

.p-grid.p-grid-small {
    grid-gap: 15px;
}

.three__col--grid {
    grid-template-columns: repeat(3, 1fr);
}

.seven__col--grid {
    grid-template-columns: repeat(7, 1fr);
}

.section {
    margin-top: 50px;
}

.white .news-title {
    color: #fff;
}

.news--wrap {
    flex: 2;
}

.aside {
    flex: 1;
    max-width: 300px;
    margin-left: 30px;
}

.sticky {
    position: sticky;
    top: 100px;
}

/* Global Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
}

.top-header {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e4e4e4;
}

.top-header .p-container .header-contact-info {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 15px;
}

.top-header .p-container .header-contact-info > li {
    list-style-type: none;
    font-size: 0.775rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #303030;
    display: inline-flex;
    align-items: center;
}

.top-header .p-container .header-contact-info > li > a {
    color: #303030;
    display: flex;
    align-items: center;
}

.top-header .p-container .header-contact-info > li > a:hover {
    color: #ed1c24;
}

.top-header .p-container .header-contact-info > li > svg {
    margin-right: 5px;
    width: 18px;
    height: 19px;
}

.top-header .p-container .header-contact-info > li > svg path {
    stroke: #6E4445;
}

.top-header .p-container .header-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-header .p-container .header-social a:not(:last-child) {
    color: #303030;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.0509803922);
    height: 28px;
    width: 28px;
    border-radius: 100%;
    justify-content: center;
}

.top-header .p-container .header-social a:not(:last-child):hover {
    color: #6E4445;
}

.top-header .p-container .header-social a:last-child {
    display: none;
}

.header-wrap {
    background: #fff;
    position: relative;
    z-index: 999;
}

.site-header {
    left: 0;
    position: relative;
    top: 0;
    background: #fff;
    width: 100%;
    transition: 0.3s;
    box-shadow: 3px 9px 18px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

.site-header .p-container .site-logo {
    display: inline-block;
    padding: 5px 0;
}

.site-header .p-container .site-logo img {
    width: 135px;
    padding: 2px 0;
}

.site-header .p-container .site-menu {
    display: flex;
    align-self: stretch;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 0 50px;
}

.site-header .p-container .site-menu > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header .p-container .site-menu > ul > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.site-header .p-container .site-menu > ul > li span {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 0px 0 7px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease transform;
}

.site-header .p-container .site-menu > ul > li > ul {
    position: absolute;
    top: 150%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    left: 0;
    min-width: 220px;
    border-top: 3px solid #6E4445;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.1294117647);
    border-radius: 0 0 3px 3px;
}

.site-header .p-container .site-menu > ul > li > ul li a {
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1098039216);
    font-weight: 600;
    display: flex;
    padding: 6px 15px;
    letter-spacing: -0.4px;
    color: #333;
    opacity: 0;
    visibility: hidden;
}

.site-header .p-container .site-menu > ul > li > ul li:hover > a {
    color: #fff;
    background: #6E4445;
}

.site-header .p-container .site-menu > ul > li:not(:first-child) {
    margin-left: 25px;
}

.site-header .p-container .site-menu > ul > li:before {
    width: 0%;
    content: "";
    position: absolute;
    top: 0%;
    height: 2px;
    transition: all 0.3s ease-in-out;
    left: 0;
    background: #6E4445;
}

.site-header .p-container .site-menu > ul > li > a {
    text-transform: capitalize;
    display: flex;
    font-size: 16.2px;
    height: 100%;
    font-weight: 600;
    letter-spacing: -0.2px;
    display: flex;
    font-family: "Lato", sans-serif;
    color: #000;
    align-items: center;
}

.site-header .p-container .site-menu > ul > li:hover:before {
    width: 100%;
}

.site-header .p-container .site-menu > ul > li:hover > span {
    transform: rotate(180deg);
}

.site-header .p-container .site-menu > ul > li:hover > a,
.site-header .p-container .site-menu > ul > li:hover span {
    color: #6E4445;
}

.site-header .p-container .site-menu > ul > li:hover > ul {
    visibility: visible;
    top: 100%;
    opacity: 1;
    transition: top 0.3s linear, opacity 0.3s linear;
}

.site-header .p-container .site-menu > ul > li:hover > ul li > a {
    opacity: 1;
    visibility: visible;
}

.site-header .p-container .site-menu > ul > li.active:before {
    width: 100%;
}

.site-header .p-container .site-menu > ul > li.active > a, .site-header .p-container .site-menu > ul > li.active span {
    color: #6E4445;
}

.site-header.sticky {
    position: fixed;
    width: 100%;
    transition: 0.3s;
}

.header-right {
    gap: 8px;
}

.header-right .c-btn {
    font-size: 13px;
}

.chat-button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    color: #000;
    font-weight: 800;
    font-family: "Lato", sans-serif;
}

.chat-button i {
    font-size: 14px;
    display: block;
    position: relative;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #6E4445;
}

.chat-button:hover {
    color: #6E4445;
}

.hamburger {
    width: 28px;
    cursor: pointer;
    background: 0 0;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    padding: 0;
    display: none;
}

.hamburger span {
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -ms-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(17, 17, 17, 0.7019607843);
    margin-bottom: 8px;
}

.hamburger span:nth-child(2n) {
    width: 60%;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger:hover span {
    width: 100%;
    background: #6E4445;
}

.mobile-navigation {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0%;
    transform: translateX(110%);
    will-change: transform;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -ms-transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    z-index: 1000;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px;
}

.mobile-navigation .header-logo {
    background-color: #fff;
    padding: 11px;
    text-align: center;
}

.mobile-navigation .header-logo a img {
    width: 103px;
    border-radius: 0 0 5px 5px;
}

.mobile-navigation > .nav__inner {
    padding: 6px 0px 0px 0px;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-navigation > .nav__inner > nav {
    height: calc(100vh - 55px);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-navigation > .nav__inner > nav > div > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
}

.mobile-navigation > .nav__inner > nav > div > ul > li {
    position: relative;
}

.mobile-navigation > .nav__inner > nav > div > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(18, 10, 10, 0.11);
}

.mobile-navigation > .nav__inner > nav > div > ul > li > span {
    position: absolute;
    right: -15px;
    top: 17px;
    transition: all 0.35s ease-in-out;
    cursor: pointer;
    width: 35px;
    font-weight: 600;
    height: 35px;
    display: inline-block;
    font-size: 14px;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div {
    position: fixed;
    height: 100vh;
    background: #fff;
    width: 100%;
    top: 0;
    z-index: 999;
    overflow: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    left: 100%;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul {
    position: relative;
    margin: 0;
    padding: 0px 0 12px 0;
    background: #fff;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li:first-child {
    padding-top: 0;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li:hover > a {
    color: #6E4445;
    transition: all 0.1s ease-in-out;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li:last-child {
    padding-bottom: 0;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > a {
    color: #000;
    padding: 12px 0px 12px 15px;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.4px;
    width: 100%;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li span {
    transition: all 0.35s ease-in-out;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > div {
    position: fixed;
    height: 100vh;
    background: #fff;
    width: 100%;
    top: 0;
    z-index: 99999;
    overflow: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    left: 100%;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > div > ul {
    position: relative;
    margin: 0;
    padding: 0 0 12px 0;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > div > ul > li {
    padding: 9px 18px;
    display: block;
    position: relative;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > div > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
}

.mobile-navigation > .nav__inner > nav > div > ul > li > div > ul > li > div > ul > li:hover > a {
    color: #ed1c24;
}

.mobile-navigation > .nav__inner > nav > div > ul > li > a {
    color: #000;
    padding: 12px 0px 12px 15px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
    width: 100%;
}

.mobile-navigation > .nav__inner > nav > div > ul > li:hover > a,
.mobile-navigation > .nav__inner > nav > div > ul > li:hover > span {
    color: #6E4445;
}

.mobile-navigation > .nav__inner > nav > div > ul > li.dropdown-mobile > .mobile-menu-wrap {
    left: 0;
}

.mobile-navigation > .nav__inner > nav > div > ul > li.dropdown-mobile > .mobile-menu-wrap ul > li.dropdown-mobile > .mobile-menu-wrap {
    left: 0;
}

.mobile-navigation > .nav__inner .mbl-sticky {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 13px;
    color: #fff;
}

.mobile-navigation > .nav__inner .mbl-sticky .c-btn {
    width: 100%;
    text-align: center;
}

.mobile-navigation .nav__inner nav div .backButton {
    padding: 16px 15px 11px 15px;
    background: none;
}

.mobile-navigation .nav__inner nav div .backButton a.backclose {
    margin-left: auto;
}

.black-overlay {
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.83);
    z-index: 999;
    display: none;
}

.blur {
    filter: blur(5px);
}

body.mobile-menu-active .mobile-navigation {
    transform: translate(0);
}

.backButton {
    padding: 15px 15px 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.backButton a {
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.backButton svg {
    width: 13px;
    height: 13px;
}

.site-footer {
    background: #6E4445;
    color: #cbd5e1;
    padding: 38px 0 0;
    position: relative;
}

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-brand {
    max-width: 360px;
}

.site-footer .footer-logo-wrap {
    display: inline-block;
    margin-bottom: 8px;
}

.site-footer .footer-logo {
    max-width: 150px;
    display: block;
}

.site-footer .footer-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
}

.site-footer .footer-contact-list {
    display: grid;
    gap: 14px;
}

.site-footer .footer-contact-list a,
.site-footer .footer-contact-list .footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-contact-list a:hover {
    color: #fff;
}

.site-footer .footer-contact-list i {
    width: 16px;
    min-width: 16px;
    margin-top: 4px;
    color: #fff;
    font-size: 14px;
}

.site-footer .footer-title {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.site-footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li:not(:last-child) {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.site-footer .footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.site-footer .footer-cta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
}

.site-footer .footer-cta .footer-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.site-footer .footer-cta h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
}

.site-footer .footer-cta p {
    margin: 0 0 25px;
    font-size: 15px;
    line-height: 1.62;
    color: #fff;
}

.site-footer .footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.site-footer .btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.site-footer .btn-footer-primary {
    background: #ed1c24;
    color: #fff;
}

.site-footer .btn-footer-primary:hover {
    transform: translateY(-2px);
}

.site-footer .btn-footer-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer .btn-footer-secondary:hover {
    border-color: #ed1c24;
    color: #fff;
    background: #ed1c24;
    transform: translateY(-2px);
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
    background: #ed1c24;
    transform: translateY(-3px);
}

.site-footer .footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.site-footer .footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer .footer-bottom-links a {
    color: #fff;
    opacity: 0.7;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-bottom-links a:hover {
    opacity: 1;
    color: #fff;
}

#simple-chat-button--container {
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 3;
}

#simple-chat-button--container #simple-chat-button--button {
    display: block;
    position: relative;
    text-decoration: none;
    width: 60px;
    height: 60px;
    animation: pulse 2s infinite;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.15);
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjU2IiB3aWR0aD0iMjU2IiB2aWV3Qm94PSItMjMgLTIxIDY4MiA2ODIuNjY3IiBmaWxsPSIjZmZmIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik01NDQuMzg3IDkzLjAwOEM0ODQuNTEyIDMzLjA2MyA0MDQuODgzLjAzNSAzMjAuMDUxIDAgMTQ1LjI0NiAwIDIuOTggMTQyLjI2MiAyLjkxIDMxNy4xMTNjLS4wMjMgNTUuODk1IDE0LjU3OCAxMTAuNDU3IDQyLjMzMiAxNTguNTUxTC4yNSA2NDBsMTY4LjEyMS00NC4xMDJjNDYuMzI0IDI1LjI3IDk4LjQ3NyAzOC41ODYgMTUxLjU1MSAzOC42MDJoLjEzM2MxNzQuNzg1IDAgMzE3LjA2Ni0xNDIuMjczIDMxNy4xMzMtMzE3LjEzMy4wMzUtODQuNzQyLTMyLjkyMi0xNjQuNDE4LTkyLjgwMS0yMjQuMzU5ek0zMjAuMDUxIDU4MC45NDFoLS4xMDljLTQ3LjI5Ny0uMDItOTMuNjg0LTEyLjczLTEzNC4xNi0zNi43NDJsLTkuNjIxLTUuNzE1LTk5Ljc2NiAyNi4xNzIgMjYuNjI5LTk3LjI3LTYuMjctOS45NzNjLTI2LjM4Ny00MS45NjktNDAuMzItOTAuNDc3LTQwLjI5Ny0xNDAuMjgxLjA1NS0xNDUuMzMyIDExOC4zMDUtMjYzLjU3IDI2My42OTktMjYzLjU3IDcwLjQwNi4wMjMgMTM2LjU5IDI3LjQ3NyAxODYuMzU1IDc3LjMwMXM3Ny4xNTYgMTE2LjA1MSA3Ny4xMzMgMTg2LjQ4NGMtLjA2MiAxNDUuMzQ0LTExOC4zMDUgMjYzLjU5NC0yNjMuNTk0IDI2My41OTR6bTE0NC41ODYtMTk3LjQxOGMtNy45MjItMy45NjktNDYuODgzLTIzLjEzMy01NC4xNDgtMjUuNzgxLTcuMjU4LTIuNjQ1LTEyLjU0Ny0zLjk2MS0xNy44MjQgMy45NjktNS4yODUgNy45My0yMC40NjkgMjUuNzgxLTI1LjA5NCAzMS4wNjZzLTkuMjQyIDUuOTUzLTE3LjE2OCAxLjk4NC0zMy40NTctMTIuMzM2LTYzLjcyNy0zOS4zMzJjLTIzLjU1NS0yMS4wMTItMzkuNDU3LTQ2Ljk2MS00NC4wODItNTQuODkxLTQuNjE3LTcuOTM3LS4wMzktMTEuODEyIDMuNDc3LTE2LjE3MiA4LjU3OC0xMC42NTIgMTcuMTY4LTIxLjgyIDE5LjgwOS0yNy4xMDVzMS4zMi05LjkxOC0uNjY0LTEzLjg4M2MtMS45NzctMy45NjUtMTcuODI0LTQyLjk2OS0yNC40MjYtNTguODQtNi40MzctMTUuNDQ1LTEyLjk2NS0xMy4zNTktMTcuODMyLTEzLjYwMi00LjYxNy0uMjMtOS45MDItLjI3Ny0xNS4xODctLjI3N3MtMTMuODY3IDEuOTgtMjEuMTMzIDkuOTE4LTI3LjczIDI3LjEwMi0yNy43MyA2Ni4xMDUgMjguMzk1IDc2LjY4NCAzMi4zNTUgODEuOTczIDU1Ljg3OSA4NS4zMjggMTM1LjM2NyAxMTkuNjQ4YzE4LjkwNiA4LjE3MiAzMy42NjQgMTMuMDQzIDQ1LjE3NiAxNi42OTUgMTguOTg0IDYuMDMxIDM2LjI1NCA1LjE4IDQ5LjkxIDMuMTQxIDE1LjIyNy0yLjI3NyA0Ni44NzktMTkuMTcyIDUzLjQ4OC0zNy42OCA2LjYwMi0xOC41MTIgNi42MDItMzQuMzc1IDQuNjE3LTM3LjY4NC0xLjk3Ny0zLjMwNS03LjI2Mi01LjI4NS0xNS4xODQtOS4yNTR6bTAgMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+") center/44px 44px no-repeat #25d366;
}

#simple-chat-button--container #simple-chat-button--text {
    display: block;
    position: absolute;
    width: max-content;
    background-color: #fff;
    bottom: 15px;
    right: 70px;
    border-radius: 5px;
    padding: 6px 10px 7px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.03em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    word-break: keep-all;
    line-height: 1em;
    text-overflow: ellipsis;
    vertical-align: middle;
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.15);
}

.breadcrumb-wrap {
    padding: 0px 0 10px 0;
}

.breadcrumb-wrap nav {
    white-space: normal;
    overflow-x: auto;
}

.breadcrumb-wrap nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: inherit;
    margin: 0;
}

.breadcrumb-wrap nav ul li {
    font-size: 13px;
    font-weight: 500;
}

.breadcrumb-wrap nav ul li a {
    color: #111;
    font-size: 13px;
}

.breadcrumb-wrap nav ul li.active > a {
    color: #6E4445;
}

.breadcrumb-wrap nav ul li:not(:last-child):after {
    content: "";
    display: inline-block;
    margin: 0 8px;
    width: 4px;
    height: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuMTM3MzI0IDYuODYyOTFDMC4zMTk3OTggNy4wNDU3IDAuNjEzOTkxIDcuMDQ1NyAwLjc5NjQ2NSA2Ljg2MjkxTDMuODkxMDcgMy43NjI5OUM0LjAzNjMxIDMuNjE3NTEgNC4wMzYzMSAzLjM4MjQ5IDMuODkxMDcgMy4yMzcwMUwwLjc5NjQ2NSAwLjEzNzA5QzAuNjEzOTkxIC0wLjA0NTY5NjYgMC4zMTk3OTkgLTAuMDQ1Njk2NiAwLjEzNzMyNCAwLjEzNzA5Qy0wLjA0NTE0OTMgMC4zMTk4NzcgLTAuMDQ1MTQ5MyAwLjYxNDU3NSAwLjEzNzMyNCAwLjc5NzM2MkwyLjgzMzQ3IDMuNTAxODdMMC4xMzM2MDEgNi4yMDYzN0MtMC4wNDUxNDkzIDYuMzg1NDIgLTAuMDQ1MTQ5OCA2LjY4Mzg1IDAuMTM3MzI0IDYuODYyOTFaIiBmaWxsPSIjOTA5MDkxIi8+Cjwvc3ZnPgo=");
}

.breadcrumb-wrap nav ul li:hover a {
    color: #6E4445;
}

.c-btn {
    padding: 16px 40px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    display: inline-block;
    color: #fff;
    overflow: hidden;
    position: relative;
    background: #ed1c24;
    z-index: 1;
    border-radius: 40px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.c-btn.w-full {
    width: 100%;
}

.c-btn::before {
    background-color: #6E4445;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 0;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 0;
    z-index: -1;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.c-btn:hover {
    color: #fff;
    transform: translateY(-5px);
}

.c-btn:hover:before {
    height: 562.5px;
    width: 225%;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.c-btn.c-btn-white {
    background: #fff;
    color: #6E4445;
    display: inline-flex;
    align-items: center;
}

.c-btn.c-btn-white:hover {
    color: #fff;
}

.c-btn.c-btn-white:before {
    background: #ed1c24;
}

.c-btn.c-btn-white i {
    background: #6E4445;
    color: #fff;
}

.c-btn.c-btn-primary {
    background: #ed1c24;
    color: #fff;
}

.c-btn.c-btn-primary:hover {
    color: #fff;
}

.c-btn.c-btn-primary:before {
    background: #6E4445;
}

.c-btn.c-btn-full {
    width: 100%;
}

.icon-title-box {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    color: #5c5e5e;
}

.head-flex {
    margin: 0 0 30px 0;
    gap: 15px;
}

.head-flex.ml-auto {
    margin-left: auto;
}

.headline-wrap .headline {
    font-size: 40px;
    color: #6E4445;
    font-family: "Yeseva One", serif;
    line-height: 1.18;
    margin: 0;
    font-weight: 700;
}

.headline-wrap p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    opacity: 1;
    color: #000;
    padding-top: 12px;
}

.headline-wrap.is-white {
    color: #fff;
}

.headline-wrap.is-white .headline,
.headline-wrap.is-white p,
.headline-wrap.is-white .icon-title-box {
    color: #fff;
}

.headline-wrap.is-white p {
    opacity: 0.8;
}

.headline-wrap.mx-md {
    max-width: 770px;
}

.about-stats-wrap {
    grid-gap: 23px;
    margin: 0 0 75px 0;
}

.about-box-caption-wrapper {
    position: relative;
    overflow: visible;
    background-color: transparent;
    padding: 0;
    border-radius: 24px;
    display: inline-block;
    filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.031372549));
    height: 100%;
}

.about-box-caption-wrapper .about-box-caption {
    background-color: #ffffff;
    padding: 30px 22px;
    color: #000;
    mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkwMCIgaGVpZ2h0PSIxNTIyIiB2aWV3Qm94PSIwIDAgMTkwMCAxNTIyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMjQgMC41SDE4NzZDMTg4OC45OCAwLjUwMDAxNyAxODk5LjUgMTEuMDIxMyAxODk5LjUgMjRWMTQzOEMxODk5LjUgMTQ1MC45OCAxODg4Ljk4IDE0NjEuNSAxODc2IDE0NjEuNUgxODc1QzE4NTUuMzkgMTQ2MS41IDE4MzkuNSAxNDc3LjM5IDE4MzkuNSAxNDk3VjE0OThDMTgzOS41IDE1MTAuOTggMTgyOC45OCAxNTIxLjUgMTgxNiAxNTIxLjVIMjRDMTEuMDIxMyAxNTIxLjUgMC41IDE1MTAuOTggMC41IDE0OThWMjRDMC41IDExLjAyMTMgMTEuMDIxMyAwLjUgMjQgMC41WiIgZmlsbD0id2hpdGUiIHN0cm9rZT0id2hpdGUiLz4KPC9zdmc+Cg==") bottom right no-repeat;
    background-size: cover;
    -webkit-mask-repeat: no-repeat;
    border-radius: 24px;
    height: 100%;
}

.about-box-caption-wrapper .about-box-caption .title-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-box-caption-wrapper .about-box-caption .title-icon .about-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: capitalize;
    flex: 1;
    letter-spacing: -0.5px;
}

.about-box-caption-wrapper .about-box-caption .title-icon .icon {
    display: flex;
    flex-shrink: 0;
    padding: 12px;
    background-color: #6E4445;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    justify-content: center;
    align-items: center;
}

.about-box-caption-wrapper .about-box-caption .title-icon .icon img {
    width: 40px;
    height: 25px;
    text-align: center;
}

.about-box-caption-wrapper .about-box-caption .about-content {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 15px;
    padding: 15px 20px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.0588235294);
    color: rgba(0, 0, 0, 0.8509803922);
}

.mt-auto {
    margin-top: auto;
}

.feature-box-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: 20px;
    gap: 25px;
    margin: auto 0;
}

.feature-box-wrap .feature {
    gap: 20px;
}

.feature-box-wrap .feature .img {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-wrap .feature .img img {
    width: 35px;
    height: 35px;
}

.feature-box-wrap .feature .content {
    font-size: 14px;
    line-height: 1.62;
    color: rgba(252, 250, 250, 0.69);
    font-weight: 500;
    flex: 3;
}

.feature-box-wrap .feature .content .title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.slider-arrows {
    display: inline-flex;
    gap: 8px;
}

.slider-arrows button {
    height: 40px;
    border-radius: 4px;
    width: 40px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.32);
    cursor: pointer;
    font-size: 17px;
    color: rgba(51, 51, 51, 0.7607843137);
    transition: 0.3s ease-in-out;
}

.slider-arrows button:hover {
    background: #6E4445;
    color: #fff;
}

.testimonial-card {
    position: relative;
    background: #fff;
    padding: 25px 25px 25px;
    border-radius: 14px;
    border: 1px solid #ccc;
}

.testimonial-card .testimonial-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}

.testimonial-card .testimonial-icon img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.testimonial-card .review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #212e3b;
    font-style: italic;
    padding-top: 15px;
    margin-bottom: auto;
}

.testimonial-card .author {
    color: rgba(0, 0, 0, 0.8392156863);
    font-size: 13px;
    display: inline-flex;
    gap: 14px;
    align-items: center;
}

.testimonial-card .author .rating {
    display: block;
}

.testimonial-card .author .rating p {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.2px;
    margin-bottom: 5px;
}

.testimonial-card .author .rating i {
    color: #ffd023;
    font-size: 17px;
    margin-right: 2px;
}

.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border: 1px solid #f1f1f1;
    border-radius: 100%;
    object-fit: cover;
}

.btn-flex {
    margin-top: 35px;
    gap: 15px;
    flex-wrap: wrap;
}

.overlay-card {
    border-radius: 10px;
}

.overlay-card > a {
    height: 360px;
    position: relative;
    border-radius: 10px;
    display: block;
    width: 100%;
}

.overlay-card > a:hover img {
    transform: scale(1.1);
}

.overlay-card .c-card__media {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.overlay-card .c-card__media img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease-out;
}

.overlay-card .c-card__text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 71%;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: flex-end;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to top, #000, transparent 80%);
}

.overlay-card .c-card__text .c-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.overlay-card .c-card__text .c-card__title:hover {
    opacity: 0.8;
}

.overlay-card .c-card__text span {
    font-size: 10px;
    display: block;
}

.overlay-card .c-card__text span i {
    margin-right: 5px;
    display: inline-block;
    font-size: 13px;
}

.overlay-card .c-card__text span.duration {
    opacity: 0.75;
}

.overlay-card .c-card__text span.duration i {
    font-size: 12px;
    font-weight: 400;
}

.blog-posts .flexbox {
    display: flex;
    align-items: center;
}

.accordion-list {
    margin-bottom: 13px;
    padding: 12px 15px 12px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1098039216);
}

.accordion-list:last-child {
    margin-bottom: 0;
}

.accordion-list .accordion-title-wrap {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-list .accordion-title-wrap div.flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: space-between;
}

.accordion-list .accordion-title-wrap div.flex .accordion-title {
    font-size: 18px;
    flex: 1;
    font-weight: 600;
    color: #000;
    vertical-align: middle;
    margin: 0;
    display: inline-block;
    padding-right: 20px;
    letter-spacing: -0.2px;
}

.accordion-list .accordion-title-wrap div.flex i {
    transition: 0.3s ease-in-out;
    font-size: 9px;
    cursor: pointer;
    margin-bottom: auto;
    background: rgba(110, 68, 69, 0.09);
    margin-top: auto;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
}

.accordion-list .accordion-title-wrap.active div.flex .accordion-title,
.accordion-list .accordion-title-wrap.active div.flex i, .accordion-list .accordion-title-wrap:hover div.flex .accordion-title,
.accordion-list .accordion-title-wrap:hover div.flex i {
    color: #6E4445;
    opacity: 1;
}

.accordion-list .accordion-title-wrap.active div.flex i {
    transform: rotate(0deg);
    color: #fff;
    background: #6E4445;
}

.accordion-list .accordion-slide {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    display: none;
    color: rgba(17, 17, 17, 0.82);
}

.banner-promo {
    position: fixed;
    margin: auto;
    align-items: center;
    background: rgba(0, 0, 0, 0.68);
    transition: 0.3s linear;
    width: 100%;
    display: grid;
    place-content: center;
    height: 100vh;
    left: 0;
    top: 0;
    text-align: right;
    z-index: 9999;
}

.banner-promo > div {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 0px 0px;
    position: relative;
    margin: 0 25px;
    border-radius: 8px;
}

.banner-promo > div .promo-area-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.banner-promo > div .promo-area {
    padding: 30px;
}

.banner-promo > div .popup-logo {
    margin-bottom: 6px;
}

.banner-promo > div .popup-logo img {
    width: 85px;
}

.banner-promo > div .popup-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #6E4445;
}

.banner-promo > div .btn-flex {
    margin-top: 12px;
    gap: 9px;
    flex-direction: column;
}

.banner-promo > div .btn-flex a {
    font-size: 16px;
    color: #212e3b;
    font-weight: 500;
}

.banner-promo > div .btn-flex a i {
    margin-right: 4px;
    font-size: 18px;
}

.banner-promo > div .c-btn {
    width: 100%;
    margin-top: 15px;
}

.banner-promo > div .cross {
    font-size: 14px;
    background: #ed1c24;
    height: 25px;
    margin-left: auto;
    width: 25px;
    color: #fff;
    cursor: pointer;
    border-radius: 100%;
    justify-content: center;
    display: block;
    align-items: center;
    line-height: 25px;
    text-align: center;
    position: absolute;
    top: -10px;
    right: -12px;
}

.banner-promo.skip-fade {
    opacity: 0;
    visibility: hidden;
}

.invalid-feedback {
    margin-top: 6px;
    font-size: 11px;
    color: #ca0000;
    font-weight: 600;
}

.service-item {
    background: #fff;
    border-radius: 14px;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .service-item-image > a {
    height: 250px;
    border-radius: 14px 14px 0 0;
    display: block;
}

.service-item .service-item-image > a img {
    height: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    width: 100%;
}

.service-item .title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    font-weight: 700;
}

.service-item .title a {
    color: inherit;
}

.service-item p {
    font-size: 14px;
    line-height: 1.75;
    color: #212e3b;
    margin-bottom: 18px;
}

.service-item .c-btn {
    padding: 10px 20px;
    font-size: 15px;
}

.service-item .service-item-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.service-item .btn-flex {
    margin-top: auto;
}

.industry-card {
    border-radius: 4px;
    border: 1px solid rgba(7, 8, 7, 0.13);
    text-align: center;
    background-color: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-card a {
    position: relative;
    display: block;
    color: #23252d;
    font-size: 17px;
}

.industry-card:hover {
    border-color: #ed1c24;
    background: #ed1c24;
}

.industry-card:hover h3 a {
    color: #fff;
}

.post-date {
    gap: 8px;
    font-size: 11px;
    margin-bottom: 8px;
    color: #212e3b;
    font-weight: 600;
}

.card-col {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 20px;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.82);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.0705882353);
}

.card-col .blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
    display: block;
}

.card-col .blog-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card-col h3 {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
    color: #000;
    margin-bottom: 12px;
}

.card-col h3 a {
    color: inherit;
}

.card-col h3:hover {
    color: #6E4445;
    opacity: 1;
}

.card-col .post-date, .card-col p, .card-col h3 {
    padding: 0 20px;
}

.card-col p {
    padding-right: 14px;
}

.text-anchor {
    margin-top: 15px;
    display: inline-flex;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.2px;
    align-items: center;
    color: rgba(34, 34, 34, 0.8901960784);
    transition: 0.3s ease;
    padding-left: 20px;
}

.text-anchor i {
    font-size: 18px;
}

.text-anchor:hover {
    gap: 10px;
    color: #6E4445;
}

.pagination {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 25px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.pagination li .page-link {
    color: #111;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    line-height: 35px;
    text-decoration: none;
    display: inline-block;
}

.pagination li.active a,
.pagination li.active span,
.pagination li:hover a,
.pagination li:hover span {
    color: #fff;
    background: #6E4445;
    border-color: #6E4445;
    font-weight: 600;
}

.col1 {
    grid-column: span 1;
}

.row1 {
    grid-row: span 1;
}

.col2 {
    grid-column: span 2;
}

.row2 {
    grid-row: span 2;
}

.col3 {
    grid-column: span 3;
}

.row3 {
    grid-row: span 3;
}

.col4 {
    grid-column: span 4;
}

.row4 {
    grid-row: span 4;
}

.col5 {
    grid-column: span 5;
}

.row5 {
    grid-row: span 5;
}

.col6 {
    grid-column: span 6;
}

.row6 {
    grid-row: span 6;
}

.col7 {
    grid-column: span 7;
}

.row7 {
    grid-row: span 7;
}

.col8 {
    grid-column: span 8;
}

.row8 {
    grid-row: span 8;
}

.col9 {
    grid-column: span 9;
}

.row9 {
    grid-row: span 9;
}

.col10 {
    grid-column: span 10;
}

.row10 {
    grid-row: span 10;
}

.col11 {
    grid-column: span 11;
}

.row11 {
    grid-row: span 11;
}

.col12 {
    grid-column: span 12;
}

.row12 {
    grid-row: span 12;
}

.banner__section {
    height: 760px;
    position: relative;
}

.banner__section.banner-md {
    height: 650px;
}

.banner__section.banner-md .breadcrumb-wrap {
    padding-top: 18px;
    position: absolute;
    z-index: 4;
    top: 0;
    width: 100%;
}

.banner__section.banner-md .breadcrumb-wrap ul li {
    color: #fff;
}

.banner__section.banner-md .breadcrumb-wrap ul li a {
    color: #fff;
}

.banner__section.banner-md .breadcrumb-wrap ul li.active a, .banner__section.banner-md .breadcrumb-wrap ul li:hover a {
    color: #ed1c24;
}

.banner__section .slick-slider {
    height: 100%;
}

.banner__section .slick-slider .slick-list,
.banner__section .slick-slider .slick-track,
.banner__section .slick-slider .slick-slide,
.banner__section .slick-slider .slick-slide > div {
    height: 100%;
}

.banner__section .slick-slide {
    margin: 0 !important;
}

.banner__section .item {
    height: 100%;
    position: relative;
}

.banner__section .banner__image {
    height: 100%;
    margin: 0;
    position: relative;
}

.banner__section .banner__image:before {
    content: "";
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.banner__section .banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__section .banner__wrapper {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f2f3f4;
}

.banner__section .banner__wrapper .banner__content {
    grid-column: span 7;
    margin: auto 0;
}

.banner__section .banner__wrapper .banner__content .banner-title {
    font-family: "Yeseva One", serif;
    font-size: 50px;
    line-height: 1.2;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.banner__section .banner__wrapper .banner__content p {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: -0.6px;
    padding-right: 80px;
}

.banner__section .banner__wrapper .banner__content .review-rating {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 38px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.18);
}

.banner__section .banner__wrapper .banner__content .btn-flex {
    display: inline-flex;
    gap: 12px;
    margin-top: 38px;
    align-items: center;
}

.banner__section .banner__wrapper .banner__content .btn-flex .c-btn {
    display: inline-flex;
    padding: 13px 40px;
    font-weight: 700;
    align-items: center;
    font-size: 22px;
    gap: 8px;
    border: 1px solid #fff;
    background: none;
}

.banner__section .banner__wrapper .banner__content .btn-flex .c-btn i {
    margin-right: 3px;
    font-size: 25px;
}

.banner__section .banner__wrapper .banner__content .btn-flex .c-btn:hover {
    border: 1px solid transparent;
}

.banner__section .banner__wrapper .service-form {
    grid-column: span 5;
}

.about-cleaning-agency {
    padding: 50px 0 0 0;
}

.about-cleaning-agency .head-flex .headline-wrap {
    max-width: inherit;
    margin-bottom: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.expertise-card {
    text-align: center;
    position: relative;
    background: #6E4445;
    padding: 18px 20px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-radius: 8px;
    color: #fff;
}

.expertise-card:hover {
    transform: translateY(-8px);
}

.expertise-card .expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #6E4445;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(110, 68, 69, 0.22);
}

.expertise-card h3 {
    margin: 0;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.3;
    font-weight: 700;
}

.expertise-card p {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.55;
    padding: 0 3px;
    opacity: 0.7;
    font-weight: 400;
}

.two-column-section {
    padding: 50px 0 0 0;
}

.two-column-section .p-container {
    background-color: rgba(3, 63, 45, 0.0392156863);
    padding: 40px;
    border-radius: 14px;
}

.two-column-section .p-container img {
    border-radius: 14px;
}

.two-column-section .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    gap: 14px;
    font-weight: 400;
}

.two-column-section .content-box .headline-wrap {
    margin-bottom: 0px;
}

.two-column-section .content-box .headline-wrap .headline {
    line-height: 1.23;
}

.two-column-section .content-box .headline-wrap p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}

.service-form {
    text-align: left;
    border-radius: 10px;
    padding: 30px;
    border-top: 4px solid #ed1c24;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #000;
    justify-content: space-between;
}

.service-form h3 {
    font-weight: bold;
    color: #000;
    margin-bottom: 18px;
    font-size: clamp(16px, 2vw, 24px);
}

.service-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
}

.service-form fieldset .form-col .c-btn {
    display: block;
    width: 100%;
}

.service-form fieldset .form-col label {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.service-form fieldset .form-col label strong {
    font-weight: 600;
    color: #ed1c24;
}

.service-form fieldset .form-col textarea {
    height: 120px !important;
}

.service-form fieldset .form-col select {
    height: 45px;
    padding: 10px 15px;
    background-color: rgba(241, 242, 242, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.0901960784);
    font-size: 16px;
}

.service-form fieldset .form-col .input-text {
    font-size: 15px;
    background-color: rgba(241, 242, 242, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.0901960784);
    height: 45px;
}

.service-form fieldset .form-col > div {
    display: flex;
    gap: 6px;
    justify-content: space-between;
}

.service-form fieldset .form-col > div > div {
    padding: 5px;
    flex: 1;
}

.service-form fieldset .form-col > div > div input {
    display: none;
    width: 0;
    height: 0;
}

.service-form fieldset .form-col > div > div .radio-select {
    cursor: pointer;
    margin: 0;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.0901960784);
    border-radius: 5px;
    background-color: rgba(241, 242, 242, 0.4);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 15px;
    justify-content: center;
}

.service-form fieldset .form-col > div > div .radio-select span {
    font-size: 38px;
    color: rgba(17, 17, 17, 0.3019607843);
    padding: 20px 0 5px 0;
}

.service-form fieldset .form-col > div > div .radio-select:hover {
    background: #ed1c24;
    color: #fff;
    opacity: 1;
}

.service-form fieldset .form-col > div > div .radio-select:hover span {
    color: #fff;
}

.service-form fieldset .form-col > div input:checked + .radio-select {
    background: #ed1c24;
    border: 1px solid #ed1c24;
    opacity: 1;
    color: #fff;
}

.service-form fieldset .form-col > div input:checked + .radio-select span {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.service-col {
    text-align: center;
}

.service-col a {
    text-align: center;
    position: relative;
    background: #fff;
    padding: 18px 20px;
    gap: 5px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-radius: 8px;
    color: #000;
    font-size: clamp(16px, 3vw, 16px);
    line-height: 1.3;
    font-weight: 600;
}

.service-col a:hover {
    background: #6E4445;
    color: #fff;
    transform: translateY(-8px) scale(1.1);
}

.service-col a:hover img {
    filter: brightness(0) invert(1);
}

.service-col img {
    width: 58px;
    margin: 0 auto;
}

.section-process {
    padding: 50px 0;
}

.section-process .p-container {
    position: relative;
}

.steps-col {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    position: relative;
    color: rgba(51, 51, 51, 0.96);
}

.steps-col .counter {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    margin: 0 auto 8px auto;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: #fff;
    color: #6e4445;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(110, 68, 69, 0.22);
}

.steps-col h3 {
    font-weight: 700;
    color: #212e3b;
    margin-bottom: 5px;
    font-size: 18px;
}

.steps-col p {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.55;
    padding: 0 5px;
    opacity: 0.8;
    font-weight: 500;
}

.section-faq .p-grid {
    grid-gap: 40px;
}

.section-faq .headline-wrap .headline {
    font-size: 38px;
}

.section-faq .headline-wrap p {
    padding: 15px 30px 30px 0;
    font-size: 16px;
}

.testimonial-slider .slick-list {
    margin: 0 -10px;
}

.testimonial-slider .slick-slide {
    margin: 0 10px;
}

.testimonial-slider .overlay-service {
    min-height: 330px;
}

.testimonial-slider .slick-track {
    display: flex !important;
}

.testimonial-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.testimonial-slider .testimonial-card {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.m-auto {
    margin: 0 auto;
}

.section-review {
    background: rgba(239, 242, 243, 0.5294117647);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.0784313725);
}

.section-review .testimonial-arrows {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 8px;
}

.section-review .testimonial-arrows button {
    position: static;
    border: 1px solid rgba(0, 0, 0, 0.5882352941) !important;
    border-radius: 100%;
    line-height: 30px !important;
    background: none;
    font-size: 25px !important;
    height: 30px;
    width: 30px;
    display: inline-flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    transition: 0.35s ease-in-out;
}

.section-review .testimonial-arrows button i {
    font-size: 12px;
}

.section-review .testimonial-arrows button:hover {
    background: #6E4445;
    color: #fff;
}

.section-review .p-container {
    position: relative;
    z-index: 1;
}

.section-enquiry {
    padding: 50px 0;
    background: #6E4445;
    position: relative;
}

.section-enquiry .p-container {
    position: relative;
    z-index: 1;
}

.section-enquiry::after {
    content: "";
    position: absolute;
    left: 0;
    background: url("../img/topo-river-alt.svg") 0 0/cover;
    top: 0;
    width: 100%;
    opacity: 0.11;
    height: 100%;
}

.section-enquiry .p-container {
    max-width: 770px;
}

.section-enquiry .p-container .headline-wrap .headline {
    line-height: 1.2;
}

.section-enquiry .service-form {
    background: #fff;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0);
    border-left: 3px solid rgba(0, 0, 0, 0.0705882353);
    border-bottom: 3px solid rgba(0, 0, 0, 0.0705882353);
    border-right: 3px solid rgba(0, 0, 0, 0.0705882353);
    max-width: 760px;
    margin: 0 auto;
}

.section-enquiry .service-form fieldset {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.section-faq {
    padding-block: 50px;
}

.breadcrumb-wrap {
    padding: 15px 0 10px 0;
}

.breadcrumb-wrap nav {
    white-space: normal;
    overflow-x: auto;
}

.breadcrumb-wrap nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: inherit;
    margin: 0;
}

.breadcrumb-wrap nav ul li > a {
    color: #222;
}

.breadcrumb-wrap nav ul li.active a, .breadcrumb-wrap nav ul li:hover a {
    color: #ed1c24;
}

.main-banner {
    position: relative;
    width: 100%;
}

.main-banner .banner-caption {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-banner .banner-caption img {
    height: calc(100vh - 250px);
    width: 100%;
    object-fit: cover;
}

.main-banner .banner-caption .banner-centered {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: flex;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    align-items: flex-end;
    padding-bottom: 50px;
    color: #fff;
}

.main-banner .banner-caption .banner-centered::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.main-banner .banner-caption .banner-centered .p-container {
    position: relative;
    z-index: 2;
}

.main-banner .banner-caption .banner-centered .p-container h1 {
    font-family: "Yeseva One", serif;
    font-size: clamp(30px, 5.5vw, 48px);
    line-height: 1.1;
}

.main-banner .breadcrumb-wrap,
.main-banner h1 {
    position: relative;
    z-index: 1;
}

.main-banner .breadcrumb-wrap {
    padding-bottom: 15px;
}

.main-banner .breadcrumb-wrap ul li {
    color: #fff;
}

.main-banner .breadcrumb-wrap ul li a {
    color: #fff;
}

.content-area {
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #111;
    margin: 0 auto;
    max-width: 800px;
    text-align: justify;
}

.content-area a {
    text-decoration: underline;
    font-weight: 500;
}

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
    margin-bottom: 12px;
}

.content-area h2 {
    font-size: 30px;
}

.content-area h4 {
    font-size: 22px;
}

.content-area h3 {
    font-size: 24px;
}

.content-area h5 {
    font-size: 20px;
}

.content-area h6 {
    font-size: 16px;
}

.content-area p {
    margin-bottom: 15px;
}

.content-area p:last-child {
    margin-bottom: 0;
}

.content-area ul,
.content-area ol {
    padding: 0 0 0 28px;
}

.content-area blockquote {
    font-weight: 600;
    margin: 15px 0;
}

.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 15px;
    overflow: hidden;
}

.content-area table th,
.content-area table tr:first-child {
    background: #6E4445;
    color: #fff !important;
    padding: 8px 15px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(0, 0, 0, 0.3215686275);
}

.content-area table th td,
.content-area table tr:first-child td {
    color: #fff;
}

.content-area table th:hover td,
.content-area table tr:first-child:hover td {
    color: #fff;
    opacity: 1;
    background: #6E4445;
}

.content-area table td {
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.3215686275);
    text-align: left;
    font-weight: 500;
    color: #374151;
}

.content-area table tr:hover td {
    background: rgba(204, 204, 204, 0.1411764706);
}

.content-area table tr:nth-child(even) td {
    background: rgba(204, 204, 204, 0.1411764706);
}

.section-procedure {
    background: rgba(229, 229, 229, 0.1882352941);
    border-top: 1px solid rgba(110, 68, 69, 0.2784313725);
}

.section-procedure .p-grid {
    grid-gap: 18px;
}

.steps-col.bg-white {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding: 25px 10px;
    border-radius: 8px;
    transition: 0.4s linear;
    border-bottom: 5px solid #ed1c24;
}

.steps-col.bg-white h3 {
    font-size: 20px;
}

.steps-col.bg-white p {
    font-size: 16px;
    opacity: 1;
    line-height: 1.57;
    margin-top: 8px;
}

.steps-col.bg-white:hover {
    transform: translateY(-5px);
}

.steps-col.bg-white ul {
    text-align: left;
    padding: 15px 0px 0 0px;
    margin: 15px 30px 0 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1098039216);
}

.steps-col.bg-white ul li {
    font-size: 16px;
    line-height: 1.52;
    opacity: 1;
    font-weight: 500;
}

.blogpost__body {
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    margin-top: 15px;
    display: grid;
}

.blogpost__body .blogpost__toc {
    grid-column: span 3;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner {
    background: rgba(21, 60, 175, 0.0901960784);
    grid-column: span 3;
    align-self: start;
    position: sticky;
    top: 120px;
    border-radius: 8px;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner .blogpost__toc-title {
    color: #fff;
    text-transform: uppercase;
    background: #6E4445;
    border-radius: 8px 8px 0 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 800;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul li {
    border-bottom: 1px solid rgba(21, 60, 175, 0.1490196078);
    padding: 10px 18px 10px 0;
    position: relative;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul li:last-child {
    border-bottom: none;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul li a {
    color: #000;
    padding-left: 18px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    position: relative;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul li a.is-active {
    color: #6E4445;
}

.blogpost__body .blogpost__toc .blogpost__toc-inner ul li:hover a {
    color: #6E4445;
}

.blogpost__body .blogpost__content {
    grid-column: span 9;
    max-width: 750px;
}

.blogpost__heading {
    max-width: 610px;
    margin: auto;
    padding: 30px 0;
}

.blogpost__heading h1 {
    color: #0d0d0d;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.featured-image {
    margin: 0 0 30px 0;
}

.blogpost__leade p {
    margin-top: 15px;
    line-height: 1.3;
}

.blogpost__byline {
    border-top: 1px solid rgba(0, 0, 0, 0.0901960784);
    margin: 15px 0 0 0;
    font-size: 16px;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
}

.blogpost__byline .post-date {
    font-size: 13px;
    color: #212e3b;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
}

.blogpost__key-takeaways {
    background: rgba(21, 60, 175, 0.0588235294);
    border: 1px solid rgba(21, 60, 175, 0.1803921569);
    border-radius: 12px;
    margin-bottom: 24px;
    padding: 18px 20px;
}

.blogpost__key-takeaways .blogpost__key-takeaways-title {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6E4445;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
}

.blogpost__key-takeaways .blogpost__key-takeaways-body ul {
    margin: 0;
    padding-left: 18px;
}

.reading-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.reading-progress .reading-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    background: #6E4445;
    transition: width 0.1s linear;
}

.page-banner {
    padding: 20px 0 48px 0;
    background-color: rgba(110, 68, 69, 0.05);
    border-bottom: 1px solid #6e4445;
    text-align: center;
}

.page-banner .head-flex {
    margin: 0;
}

.page-banner .p-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section-all-faq .heading {
    font-size: 30px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.contact-section {
    margin: 3rem 0;
    text-align: center;
}

.contact-section .contact-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.section-latest-insights {
    margin-bottom: 40px;
}

.section-latest-insights .headline-wrap {
    margin-bottom: 30px;
}

.section-related-insights {
    background: rgba(0, 0, 0, 0.0196078431);
    padding: 50px 0;
}

.section-related-insights .head-flex .headline-wrap .headline {
    font-size: 30px;
    margin: 0px 0 0 0;
    line-height: 1.5;
}

.about-widget-image {
    position: relative;
}

.about-widget-image:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 21px;
    right: 22px;
    content: "";
    background-color: #6E4445;
    border-radius: 10px;
    z-index: -1;
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
}

.about-widget-image img {
    border-radius: 5px;
}

.about-widget-content {
    padding-left: 20px;
}

.about-widget-content h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 0;
}

.about-widget-content p {
    margin: 12px 0 0px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    opacity: 0.85;
}

.image-col {
    position: relative;
}

.image-col:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 21px;
    right: 22px;
    content: "";
    border-radius: 10px;
    z-index: -1;
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
    background-color: rgba(78, 126, 191, 0.4);
}

.image-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 13px 14px rgba(0, 0, 0, 0.2117647059);
    max-height: 630px;
    object-fit: cover;
}

.section-story .contentblock {
    grid-gap: 50px;
}

.section-story .contentblock .col7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-story .contentblock .heading {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.section-story .contentblock .content-area p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.section-story .contentblock .content-area p:not(:last-child) {
    margin-bottom: 15px;
}

.section-story .contentblock:nth-child(even) {
    padding: 40px 0;
}

.section-story .contentblock:nth-child(even) .col7 {
    order: 1;
}

.map-frame {
    background: #fff;
    height: 550px;
}

.map-frame iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.block-hero-contact__content-col.col5 {
    padding: 25px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.0705882353);
}

.block-hero-contact__content-col .social-links a {
    background-color: rgba(11, 0, 0, 0.22);
}

.block-hero-contact__content-col .social-links a:hover {
    background: #6E4445;
}

.block-hero-contact__content-col .contact-detail {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.block-hero-contact__content-col .contact-detail li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 22px;
    font-size: 17px;
}

.block-hero-contact__content-col .contact-detail li > i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    background: #6E4445;
    height: 34px;
    width: 34px;
    border-radius: 100%;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.block-hero-contact__content-col .contact-detail li h4 {
    color: #6E4445;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 3px;
    font-size: 14px;
    font-family: "Lato", sans-serif;
}

.block-hero-contact__content-col .contact-detail li p {
    font-weight: 500;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.block-hero-contact__content-col .contact-detail li p a {
    font-weight: 500;
    display: block;
    color: #000;
}

.block-hero-contact__content-col .contact-detail li p a:hover {
    color: #6E4445;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-form div input,
.contact-form div textarea {
    margin-bottom: 19px;
}

.contact-form div input {
    font-family: "Lato", sans-serif;
    height: 45px;
    padding: 10px 15px;
    font-size: 14px;
    background: rgba(13, 16, 20, 0.031372549);
    border: 1px solid rgba(17, 17, 17, 0.03);
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
}

.contact-form div textarea {
    width: 100%;
    font-family: "Lato", sans-serif;
    height: 235px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(13, 16, 20, 0.031372549);
    border: 1px solid rgba(17, 17, 17, 0.03);
    resize: none;
}

.contact-form div button {
    width: 100%;
    padding: 15px 0;
    font-size: 14px;
}

.contact-form div textarea:focus,
.contact-form div input:focus {
    background: #fff;
    outline: none;
    border: 1px solid #6E4445;
}

.section-booking {
    margin-bottom: 50px;
}

.section-booking button {
    text-align: right;
}

.booking-summary-panel {
    position: sticky;
    top: 150px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
    border: 1px solid rgba(21, 60, 175, 0.1882352941);
    background: rgba(21, 60, 175, 0.031372549);
    padding-bottom: 0;
}

.booking-summary-panel .summary-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 15px;
    color: #153caf;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784);
}

.booking-summary-panel .card-footer {
    background: #fff;
    border-top: 2px solid #6E4445;
    padding: 15px 20px;
    border-radius: 0 0 12px 12px;
}

.booking-summary-panel .card-footer .row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.booking-summary-panel .card-footer .row .right {
    font-size: 18px;
}

.booking-summary-panel .card-footer .row.total {
    margin-bottom: 0;
}

.booking-summary-panel .card-footer .row.total .value {
    font-size: 20px;
    font-weight: 800;
    color: #ed1c24;
    font-family: "Lato", sans-serif;
}

.discount-item {
    background: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.0901960784);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6392156863);
}

.discount-item:hover, .discount-item.active {
    background: #6E4445;
    color: #fff;
}

.form-col label {
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.form-col label span {
    color: #ed1c24;
    font-weight: 800;
}

.form-col input {
    font-family: "Lato", sans-serif;
    height: 45px;
    padding: 10px 15px;
    font-size: 13px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1607843137);
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
}

.form-col textarea {
    padding: 10px 15px;
    width: 100%;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    border-radius: 5px;
    line-height: 1.4;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1607843137);
}

.form-col select {
    font-family: "Lato", sans-serif;
    appearance: none;
    background-position: calc(100% - 14px) 50%;
    background-repeat: no-repeat;
    height: 45px;
    padding: 10px 15px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEyIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDZMMC44MDM4NDcgMC43NUwxMS4xOTYyIDAuNzUwMDAxTDYgNloiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    font-size: 14px;
    background-color: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1607843137);
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
}

.summary-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.summary-list li {
    display: flex;
    align-items: center;
    font-family: "Lato", sans-serif;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 3, 3, 0.1215686275);
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list li .icon {
    font-size: 22px;
    width: 26px;
    color: #444;
    opacity: 0.6;
    text-align: center;
}

.summary-list li strong {
    margin-left: auto;
}

.summary-text {
    font-size: 15px;
    color: rgba(51, 51, 51, 0.7882352941);
    font-weight: 600;
    margin: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    border-top: 1px solid #eaeaea;
    padding-bottom: 0;
    align-items: center;
}

.error-page {
    align-items: center;
    padding: 40px 0;
}

.error-page .content h2.header {
    font-size: 175px;
    line-height: 1em;
    font-weight: 900;
    color: #6E4445;
}

.error-page .content h4 {
    color: #2f4c58;
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.error-page .content p {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.booking-feature {
    background: rgba(21, 60, 175, 0.0509803922);
    padding: 40px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.0392156863);
}

.book-item {
    cursor: pointer;
    transition: 0.3s ease;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.0705882353);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
    position: relative;
}

.book-item .number-input {
    position: absolute;
    background: rgba(21, 60, 175, 0.8588235294);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    border-radius: 7px;
}

.book-item.active .number-input {
    display: flex;
}

.book-item .book-icon {
    align-items: center;
    border: 1px solid rgba(128, 128, 128, 0.2901960784);
    display: flex;
    height: 55px;
    justify-content: center;
    padding: 0;
    width: 70px;
    border-radius: 4px;
    margin: 0 auto;
}

.book-item .book-icon svg {
    opacity: 0.7;
}

.book-item .book-icon img {
    padding: 10px;
}

.book-item span {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    line-height: 1.65;
    display: block;
    font-weight: 600;
}

.book-item:hover {
    transform: translateY(-4px);
}

.book-item:hover .book-icon {
    background: #fff;
}

.form-tab {
    display: flex;
    gap: 10px;
    margin: 30px 0 25px 0;
    flex-wrap: wrap;
    align-items: center;
}

.form-tab .form-btn {
    border: 1px solid rgba(21, 60, 175, 0.12);
    background: #f8f9fc;
    color: #000;
    padding: 10px 18px 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.1px;
}

.form-tab .form-btn:hover, .form-tab .form-btn.active {
    background: #ed1c24;
    color: #fff;
    border-color: #ed1c24;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.form-container fieldset {
    margin: 0px 0 25px 0;
    padding: 25px 25px;
    border: 1px solid rgba(21, 60, 175, 0.12);
    border-radius: 10px;
    background: #f8f9fc;
}

.form-container fieldset .terms-checkbox {
    margin-top: 20px;
}

.form-container fieldset .terms-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.form-container fieldset .fieldset-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.form-container fieldset p {
    font-weight: 500;
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.67;
    padding-top: 2px;
}

.form-container .form-group {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-container .form-group.extra-info {
    grid-template-columns: repeat(1, 1fr);
}

.form-container .form-group > div {
    flex: 25%;
}

.form-container .form-group.extra-info > div {
    flex: 100%;
}

.booking-intro .booking-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: #6E4445;
}

.booking-intro p {
    line-height: 1.52;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6588235294);
    font-weight: 600;
}

.booking-intro p u {
    font-weight: 700;
    color: #6E4445;
}

.domestic-cleaning-form {
    padding: 25px 25px;
    border: 1px solid rgba(21, 60, 175, 0.12);
    background: #f8f9fc;
    border-radius: 8px;
}

.section-other-services .head-flex {
    margin: 0 0 25px 0;
}

.section-other-services .form-tab {
    margin: 0 0 28px 0;
    gap: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1490196078);
    justify-content: center;
}

.section-other-services .form-tab .form-btn {
    color: #000;
    background: none;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 25px 0;
    border-radius: 0;
    border: none;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    position: relative;
}

.section-other-services .form-tab .form-btn:before {
    height: 2px;
    width: 0%;
    transition: 0.3s ease;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    background: #ed1c24;
}

.section-other-services .form-tab .form-btn.active, .section-other-services .form-tab .form-btn:hover {
    color: #ed1c24;
}

.section-other-services .form-tab .form-btn.active:before, .section-other-services .form-tab .form-btn:hover:before {
    width: 100%;
}

.section-other-services .p-grid {
    grid-gap: 18px;
}

.sitemap-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: 15px;
}

.sitemap-list li a {
    background: rgba(241, 241, 241, 0.031372549);
    border: 1px solid rgba(0, 0, 0, 0.1019607843);
    color: #000;
    line-height: 1.2;
    display: inline-block;
    padding: 14px 15px;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s ease;
    position: relative;
}

.sitemap-list li a i {
    position: absolute;
    right: 20px;
    top: 17px;
    font-size: 15px;
}

.sitemap-list li:hover a {
    transform: scale(1.08);
    border: 1px solid #6E4445;
    color: #fff;
    background: #6E4445;
}

.content-section.section-padding {
    padding: 45px 0;
}

.content-section .head-flex {
    margin: 0 0 35px 0;
}

.content-section .head-flex .headline-wrap .headline {
    font-size: 30px;
    line-height: 1.72;
}

.content-section .head-flex .headline-wrap p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 15px;
}

.content-section .about-stats-wrap {
    margin: 45px 0 0px 0;
}

.contact-panel {
    display: flex;
    gap: 22px;
    position: relative;
    padding: 20px 25px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-panel__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-panel__icon svg {
    width: 50px;
    height: 50px;
    stroke: #6E4445;
    fill: none;
    stroke-width: 2;
}

.contact-panel__content {
    flex: 1;
}

.contact-panel__content .contact-panel__title {
    font-size: 28px;
    font-weight: 600;
    color: #6E4445;
}

.contact-panel__content .contact-panel__hours {
    font-size: 17px;
    color: #666666;
    margin: 8px 0 25px 0;
}

.contact-panel__content .contact-panel__actions {
    display: flex;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.contact-item .contact-label {
    font-size: 15px;
    color: #666666;
    margin-bottom: 3px;
}

.contact-item .contact-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #111111;
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
}

.contact-item .contact-btn:hover {
    background-color: #6E4445;
    color: #ffffff;
}

.contact-cta-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
    grid-gap: 35px;
    /* card */
}

.contact-cta-wrap .left-aside {
    position: sticky;
    top: 100px;
}

.contact-cta-wrap .contact-grid {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.contact-cta-wrap .contact-card {
    padding-left: 65px;
    position: relative;
    padding-right: 0;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* icon */
    /* title */
    /* description */
    /* links */
}

.contact-cta-wrap .contact-card .contact-icon {
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6E4445;
    border-radius: 50%;
}

.contact-cta-wrap .contact-card .contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.contact-cta-wrap .contact-card .contact-title {
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
    font-weight: 600;
    color: #000;
    font-size: 15px;
    font-family: "Lato", sans-serif;
    margin-bottom: 5px;
}

.contact-cta-wrap .contact-card .contact-desc {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-cta-wrap .contact-card .contact-link {
    display: block;
    font-size: 18px;
    font-weight: 700;
    opacity: 0.8;
    color: #111111;
    text-decoration: none;
    margin-bottom: 4px;
}

.contact-cta-wrap .contact-card .contact-link:hover {
    text-decoration: underline;
}

.right-aside .service-form {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 959px) {
    .contact-cta-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
        grid-gap: 31px;
    }

    .contact-cta-wrap .left-aside {
        position: static;
        top: 100px;
    }

    .contact-cta-wrap .left-aside .contact-panel__content .contact-panel__title {
        font-size: 25px;
    }

    .site-header .p-container {
        padding: 0 18px;
        padding-right: 0;
    }

    .site-header .p-container .site-menu {
        display: none;
    }

    .site-header .p-container .chat-button {
        font-size: 0;
    }

    .site-header .p-container .hamburger {
        cursor: pointer;
        vertical-align: middle;
        background: 0 0;
        border: none;
        width: 28px;
        padding: 0;
        display: inline-block;
        overflow: hidden;
    }

    .site-header .p-container .hamburger span {
        -o-transition: 0.35s ease-in-out;
        background-color: rgba(17, 17, 17, 0.7019607843);
        width: 100%;
        height: 2px;
        margin-bottom: 8px;
        transition: all 0.35s ease-in-out;
        display: block;
    }

    .site-header .p-container .hamburger span:nth-child(2n) {
        width: 60%;
    }

    .site-header .p-container .hamburger:hover span {
        width: 100%;
        background: #6E4445;
    }

    .site-header .p-container .site-logo img {
        width: 125px;
    }

    .about-cleaning-agency {
        padding: 40px 0 0 0;
    }

    .head-flex {
        margin: 0 0 25px 0;
    }

    .headline-wrap .headline {
        font-size: 35px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 12px;
    }

    .two-column-section {
        padding-top: 40px;
    }

    .two-column-section .p-container {
        padding: 25px;
        padding-inline: 0;
        padding-top: 0;
    }

    .two-column-section .p-container .image-box {
        grid-column: span 12;
    }

    .two-column-section .p-container .content-box {
        grid-column: span 12;
    }

    .section-process {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .section-related-insights {
        padding: 30px 0;
    }

    .section-related-insights .p-grid {
        grid-gap: 20px;
    }

    .section-related-insights .card-col {
        grid-column: span 6;
    }

    .section-services .service-col {
        text-align: center;
        grid-column: span 6;
    }

    .section-services .service-col a {
        font-size: clamp(13px, 5vw, 14px);
        padding: 14px;
    }

    .section-services .service-col img {
        width: 38px;
    }

    .section-services .p-grid.p-grid-small {
        grid-gap: 11px;
    }

    .section-process {
        padding: 40px 0;
    }

    .steps-col {
        grid-column: span 6;
    }

    .steps-col.bg-white {
        grid-column: span 12;
    }

    .section-latest-insights .p-grid {
        grid-gap: 20px;
    }

    .section-latest-insights .p-grid .card-col {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .blogpost__heading h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .section-related-insights {
        padding: 30px 0;
    }

    .section-related-insights .p-grid {
        grid-gap: 18px;
    }

    .section-related-insights .card-col {
        grid-column: span 12;
    }

    .blogpost__body .blogpost__toc {
        grid-column: span 12;
        display: none;
    }

    .blogpost__body .blogpost__content {
        grid-column: span 12;
    }

    .contact-panel__actions {
        justify-content: center;
        text-align: center;
    }

    .contact-panel {
        display: block;
        gap: 18px;
        padding: 20px 22px;
    }

    .contact-cta-wrap {
        display: block;
        margin-top: 30px;
    }

    .contact-cta-wrap .left-aside {
        position: static;
        top: 100px;
        margin-bottom: 25px;
    }

    .section-faq .headline-wrap .headline {
        font-size: 30px;
    }

    .site-footer {
        padding: 30px 0 0;
    }

    .site-footer .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding-bottom: 25px;
    }

    .site-footer .footer-main .footer-brand {
        max-width: inherit;
        grid-column: span 2;
    }

    .site-footer .footer-main .footer-brand .footer-desc {
        margin: 0 0 11px;
        color: #fff;
    }

    .site-footer .footer-main .footer-cta {
        padding: 22px;
        grid-column: span 2;
    }

    .site-footer .footer-main .footer-cta .footer-badge {
        display: inline-block;
        margin-bottom: 6px;
    }

    .site-footer .footer-main .footer-cta h3 {
        margin: 0 0 8px;
        font-size: 18px;
        line-height: 1.3;
    }

    .site-footer .footer-main .footer-cta .footer-buttons {
        margin-bottom: 0;
    }

    .section-faq {
        padding-block: 40px;
    }

    .section-faq .p-grid {
        grid-gap: 25px;
    }

    .section-faq .accordion-wrapper, .section-faq .sticky {
        grid-column: span 12;
        position: static;
    }

    .section-enquiry {
        padding: 40px 0;
    }

    .headline-wrap p {
        font-size: 16px;
        padding-top: 10px;
        line-height: 1.5;
    }

    .headline-wrap .headline {
        font-size: 30px;
    }

    .section {
        margin-top: 40px;
    }

    .banner__section {
        height: 830px;
    }

    .banner__section .banner__wrapper .banner__content {
        grid-column: span 12;
    }

    .banner__section .banner__wrapper .banner__content .banner-title {
        font-size: 35px;
        line-height: 1.2;
        text-align: center;
    }

    .banner__section .banner__wrapper .banner__content p {
        font-size: 20px;
        letter-spacing: 0;
        padding: 0 24px;
        text-align: center;
    }

    .banner__section .banner__wrapper .banner__content .btn-flex {
        display: flex;
        gap: 12px;
        margin-top: 28px;
        align-items: center;
        justify-content: center;
    }

    .banner__section .banner__wrapper .service-form {
        grid-column: span 12;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .section-review {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .blogpost__heading {
        max-width: 610px;
        margin: auto;
        padding: 15px 0;
    }

    .blogpost__heading h1 {
        font-size: 30px;
        font-weight: 600;
        line-height: 35px;
    }

    .section-latest-insights .headline-wrap {
        margin-bottom: 25px;
    }

    .section-latest-insights .p-grid {
        grid-gap: 20px;
    }

    .section-latest-insights .p-grid .card-col {
        grid-column: span 12;
    }

    .contact-panel__icon {
        display: none;
    }

    .contact-cta-wrap .left-aside .contact-panel__content .contact-panel__title {
        font-size: 20px;
    }

    .contact-panel__actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-panel__actions .contact-btn {
        padding: 15px 40px;
        font-size: 17px;
    }

    .contact-cta-wrap .right-aside .service-form {
        padding: 18px;
    }

    .map-frame {
        height: 300px;
    }

    .banner__section.banner-md {
        height: 535px;
    }

    .section-faq {
        padding-block: 30px;
    }

    .about-cleaning-agency {
        padding: 30px 0 0 0;
    }

    .banner__wrapper .service-form {
        padding: 25px;
    }

    .section-enquiry .service-form {
        padding: 22px;
    }

    .section-enquiry .service-form fieldset {
        display: grid;
    }

    .section-enquiry .service-form fieldset .form-col {
        grid-column: span 12;
    }

    .headline-wrap .headline {
        font-size: 28px !important;
    }

    .section-review {
        padding: 30px 0;
    }

    .section-process {
        padding: 30px 0;
    }

    .top-header .p-container .header-contact-info {
        gap: 10px;
    }

    .banner__section {
        height: 800px;
    }

    .banner__section .banner__wrapper .banner__content {
        grid-column: span 12;
    }

    .banner__section .banner__wrapper .banner__content .banner-title {
        font-size: 28px;
        line-height: 1.14;
    }

    .banner__section .banner__wrapper .banner__content p {
        font-size: 16px;
        padding: 0 20px;
        margin-top: 12px;
    }

    .banner__section .banner__wrapper .banner__content .btn-flex {
        margin-top: 10px;
    }

    .banner__section .banner__wrapper .banner__content .btn-flex .c-btn {
        font-size: 17px;
        padding: 10px 22px;
    }

    .banner__section .banner__wrapper .service-form {
        grid-column: span 12;
    }
}

@media (max-width: 420px) {
    .expertise-card {
        grid-column: span 12;
    }

    .steps-col {
        grid-column: span 12;
    }
}
