/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* 
    font-family: "Barlow Condensed", sans-serif; 
    font-family: "Jost", sans-serif;
*/

/*Font End*/

:root {
    --lm-font: "Barlow Condensed", sans-serif;
    --lm-font-alt: "Jost", sans-serif;
    --lm-color-first: #AF261F;
    --lm-color-second: #23B88D;
    --lm-color-third: #2A3135;
    --lm-color-light: #ffffff;
    --lm-color-lite-dark: #333;
    --lm-color-dark: #000000;
}

body {
    transition: all 3s ease-out;
    overflow-x: hidden;
    font-family: var(--lm-font-alt);
    font-weight: 400;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    transition: width .8s ease-in-out;
    scroll-behavior: smooth;
}


p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding: 12px 0;
    color: var(--lm-color-lite-dark);
    font-family: var(--lm-font-alt);
}

a {
    text-decoration: none;

}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    padding: 15px 0 15px 30px;
    font-family: var(--lm-font-alt);
    color: var(--lm-color-lite-dark);
}

h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--lm-font);
    color: var(--lm-color-dark);
    padding-bottom: 10px;
}

h1 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 600;
    color: var(--lm-color-dark);
    margin: 0;
    font-family: var(--lm-font);
    padding-bottom: 15px;
}

h2 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 12px;
}

h3 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
    padding-bottom: 8px;
}

h4 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    padding-bottom: 3px;
}

h5 {
    font-size: 26px;
    line-height: 30px;
    padding-bottom: 0px;
    font-weight: 500;
    color: var(--lm-color-lite-dark);
}

h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 0px;
    color: var(--lm-color-light);
}

ol,
ul,
dl {
    margin: 10px 0;
    padding: 0;
}

.text-light {
    color: var(--lm-color-light) !important;
}

.fw-bold {
    font-weight: 500 !important;
}

.img-fluid {
    width: 100%;
    max-width: 100%;
}

.lm-sec-padding {
    padding: 5% 0;
}

.lm-container-padding {
    padding: 100px 180px;
}

.lm-main-wrapper ul li a {
    color: var(--lm-color-light);
}

.btn {
    padding: 0;
    border-radius: 0px;
    font-weight: 400;
    font-size: 20px;
    background: transparent;
    transition: all 0.5s ease-out;
    position: relative;
    font-family: var(--lm-font-alt);
    color: var(--lm-color-third);
}

.btn:focus,
.btn:active {
    box-shadow: none;
}

.btn:hover {
    transform: translateX(5px);
    font-weight: 600;
    color: var(--lm-color-dark);
}

.round-30 {
    border-radius: 30px;
}

.lm-list li {
    display: inline-block;
    position: relative;
    padding: 10px 15px 10px 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    background: #FAFAFA;
    border: 2px solid #E8E8E8;
    color: var(--lm-color-lite-dark);
    margin: 8px 5px;
    border-radius: 99px;
}

.lm-list-alt li {
    position: relative;
    padding: 10px 0px 10px 45px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--lm-color-dark);
    font-family: var(--lm-font-alt);
}

.lm-list-alt li:before {
    position: absolute;
    content: url('/wp-content/lm-assets/img/lm-check.png');
    left: 6px;
    top: 11px;
    transition: all .5s ease;
}

.lm-button {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding: 16px 30px;
    color: #ffffff;
    text-transform: uppercase;
    border: 2px solid var(--lm-color-first);
    transform: translateX(0px);
    border-radius: 0px;
    background-color: var(--lm-color-first);
    cursor: pointer;
    transition: padding 450ms ease, background-color 450ms ease;
}

.lm-button:before {
    position: absolute;
    content: url('/wp-content/lm-assets/img/lm-arrow-dark.png');
    display: none;
    background-size: 1em;
    inset-block-start: 51%;
    inset-inline-start: -0.35em;
    transform: translateY(-52%);
    margin-left: 0px;
    padding-left: 30px;
    padding-right: 60px;
    line-height: 1;
    transition: inset-inline-start 450ms ease;
}

.lm-button:hover {
    color: #222;
    background-color: #f5f5f5;
    border: 2px solid var(--lm-color-second);
    transform: translateX(0px);
    padding-right: 60px;
    margin-left: 0px;
}

.lm-button:hover:before {
    display: inline;
    margin-left: 0px;
    inset-inline-start: calc(100% - 4.0em);
}

.lm-button-two {
    color: var(--lm-color-second);
    border: 1px solid var(--lm-color-second);
    background: transparent;
}

.lm-button-two:before {
    color: #252525;
}

.lm-button-two:hover {
    background-color: var(--lm-color-first);
    border: 1px solid var(--lm-color-first);
    border: 1px solid var(--lm-color-dark);
}

.btn img {
    position: relative;
}

.color-text {
    color: var(--lm-color-second);
}

.font-24 {
    font-size: 24px;
    line-height: 32px;
}

.font-20 {
    font-size: 20px;
    line-height: 30px;
}

.font-30 {
    font-size: 30px;
    line-height: 38px;
}

.font-60 {
    font-size: 60px;
    line-height: 55px;
}

.font-48 {
    font-size: 48px;
    line-height: 56px;
}

.highlight-text {
    color: var(--lm-color-first);
}

.round-35 {
    border-radius: 35px;
}

.round-25 {
    border-radius: 25px;
}

/* Hero Banner start */

.lm-banner-sec {
    position: relative;
    background: url('/wp-content/lm-assets/img/lm-hero-banner-bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

.lm-banner-left {
    padding: 0 7% 0 10%;
}

#myVideo {
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    height: 968px;
    margin-bottom: -7px;
}

.main-heading {
    font-size: 80px;
    line-height: 95px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--lm-font);
    color: var(--lm-color-light);
}

.lm-banner-left p {
    font-size: 30px;
    line-height: 1.2em;
    color: var(--lm-color-light);
}

/* Hero Banner end */

/* lm-sec-two start */

.logo-inn {
    border-radius: 30px;
    padding: 30px;
    background: #ffffff;
    margin-bottom: 20px;
}


.lm-sec-two-right {
    padding: 60px;
    background: #F6F6F6;
}

.lm-sec-two-right ul li a {
    color: #222;
    font-family: var(--lm-font);
}

.lm-sec-two-right ul li:hover {
    transform: translateX(5px);
}

.lm-sec-two-right ul li a:hover {
    color: var(--lm-color-second);
}

.lm-sec-two-right ul li {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    padding: 11px 0px 11px 40px;
    transition: all 0.5s;
    font-family: var(--lm-font);
    position: relative;
}

.lm-sec-two-right ul li:after {
    position: absolute;
    content: url('/wp-content/lm-assets/img/list-start.png');
    left: 14px;
    top: 10px;
}

.lm-sec-two-card {
    position: relative;
    margin: 0 45px;
    margin-top: -50%;
    background: #fff;
    padding: 40px 50px;
}

/* lm-sec-two end */

/* lm-sec-three start */

.lm-sec-three {
    background: #0D4233;
    border-radius: 150px;
}

.lm-sec-three-inn {
    padding: 0 100px;
}

.lm-sec-three #myVideo {
    height: auto;
    width: 100%;
    border-radius: 30px;
}

.lm-sec-card {
    background: rgba(255, 255, 255, 0.05);
    margin-top: 35px;
    padding: 40px;
}

.same-height-three {
    min-height: 527px;
}

.small-three {
    min-height: 420px;
}

/* lm-sec-three end */

/* lm-sec-four-start */

.card-bg-one {
    background: #F3EDE6 !important;
}

.card-bg-two {
    background: #E8E6F3 !important;
}

.card-bg-three {
    background: #F3E6EA !important;
}

.card-bg-four {
    background: #F2F3E6 !important;
}

/* lm-sec-four-end */

/* lm-sec-five-start */

.lm-sec-five {
    background: #f6f6f6;
    border-radius: 150px;
}

.lm-sec-five #myVideo {
    height: auto;
    width: 100%;
    border-radius: 30px;
}

.lm-sec-five .lm-sec-card {
    background: #E6F3E7;
}

.lm-sec-five .second-color {
    background: #F2F3E6;
}

.lm-sec-five .third-color {
    background: #F3EDE6;
}

/* lm-sec-five-end */

.lm-sec-six .lm-sec-card {
    background: #E6F3E7;
}

.lm-sec-six .card-bg-one img {
    background-blend-mode: darken;
}

/*lm-seven start*/

.lm-sec-seven #myVideo {
    width: 1920px;
    height: auto;
    position: relative;
}

.lm-sec-seven-inn {
    margin-top: -56.7%;
    height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    z-index: 11;
}

.lm-sec-seven .lm-button {
    text-transform: capitalize;
}

.lm-button-three {
    background: #23B88D;
    border-color: #23B88D;
}

/*lm-seven End*/

/*lm-cta start*/

.lm-review-inn {
    background: #FAFAFA;
    padding: 50px;
}

.lm-sec-cta {
    background: #f5f5f5;
}

.lm-form-area {
    background: #ffffff;
    padding: 60px;
}

.form-btn-area .btn {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    text-align: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
}

.form-btn-area {
    width: 90%;
}

.icon-area {
    text-align: right;
}

.icon-area a {
    margin: 0 2px;
}

.lm-sec-client {
    padding: 7% 0;
}

.lm-sec-news {
    background: #fff;
}

.lm-disclaimer {
    padding: 2% 0;
    background: #FFD101;
}

.lm-sec-blog {
    background: #fff;
}

.lm-sec-city {
    background: url('/wp-content/lm-assets/img/lm-sec-city-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.lm-sec-btm-right {
    padding: 50px;
    background: #ffffff;
}

.lm-sec-btm-right ul li:hover {
    transform: translateX(5px);
}

.lm-sec-btm-right ul li a {
    color: var(--lm-color-dark) !important;
}

.lm-sec-btm-right ul li a:hover {
    color: var(--lm-color-first) !important;
}

.lm-sec-btm-right ul li {
    font-size: 18px !important;
    line-height: 26px !important;
    font-weight: 500 !important;
    padding: 12px 0px 12px 40px !important;
    transition: all 0.5s;
    position: relative;
}

.lm-sec-btm-right ul li:before {
    position: absolute;
    content: url('/wp-content/lm-assets/img/list-start.png');
    left: 12px;
    top: 10px;
}

/*Service Area Location Style Start*/

.service-area-navbar select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #fff;
    background-image: none;
    transition: all 2s ease-out;
}

/* Remove IE arrow */
.service-area-navbar select::-ms-expand {
    display: none;
}

/* Custom Select */
.service-area-navbar {
    position: relative;
    display: flex;
    width: 97%;
    height: 60px;
    line-height: 3;
    overflow: hidden;
    transition: all 2s ease-out;
    margin: 0 0 20px 0;
    border-radius: 12px;
}

.service-area-navbar select {
    flex: 1;
    padding: 1.0em;
    padding-left: 25px;
    cursor: pointer;
    color: var(--lm-color-lite-dark);
    background: rgba(51, 51, 51, 0.2);
    transition: all 2s ease-out;
    font-size: 18px;
    line-height: 22px;
}

/* Arrow */
.service-area-navbar::after {
    content: '\25BC';
    position: absolute;
    top: -2px;
    right: 15px;
    font-size: 20px;
    padding: 5px 20px;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
    color: var(--lm-color-second);
    transition: all 2s ease-out;
}

/* Transition */
.service-area-navbar:hover::after {
    color: var(--lm-color-dark);
    transition: all 2s ease-out;
}

.lm-sec-btm-right .fn_lm_more_link {
    font-size: 18px !important;
    font-weight: 700 !important;
    background: radial-gradient(circle, rgba(159, 11, 26, 1) 43%, rgba(235, 54, 72, 1) 93%);
    padding: 10px 18px !important;
    border-radius: 1px !important;
    color: #fff !important;
}

.lm-sec-btm-right .fn_lm_more_link:hover {
    background: radial-gradient(circle, rgba(100, 11, 26, 1) 43%, rgba(235, 54, 72, 1) 93%) !important;
    box-shadow: 0px 0 30px rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.lm-listing-item .lm-listing-content .lm-btn {
    font-size: 18px !important;
    font-weight: 700 !important;
    background: radial-gradient(circle, rgba(159, 11, 26, 1) 43%, rgba(235, 54, 72, 1) 93%);
    padding: 10px 18px !important;
    border-radius: 1px !important;
    color: #fff !important;
    border: none !important;
}

.lm-listing-item .lm-listing-content .lm-btn:hover {
    background: radial-gradient(circle, rgba(100, 11, 26, 1) 43%, rgba(235, 54, 72, 1) 93%) !important;
    box-shadow: 0px 0 30px rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border: none !important;
}

.lm-near-me-menu ul li::before {
    background: none !important;
}

/*lm-cta End*/

@media (min-width: 1800px) {

    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1520px;
    }
}

@media only screen and (max-width: 1498px) {
    h1 {
        font-size: 50px;
        line-height: 62px;
    }

    h2 {
        font-size: 42px;
        line-height: 50px;
    }

    h3,
    .font-48 {
        font-size: 32px;
        line-height: 42px;
    }

    h4 {
        font-size: 24px;
        line-height: 28px;
    }

    h5 {
        font-size: 22px;
        line-height: 30px;
    }

    p,
    .font-18 {
        font-size: 17px;
        line-height: 24px;
        padding: 9px 0;
    }

    .fw-bold {
        font-weight: 600 !important;
    }

    .main-heading {
        font-size: 52px;
        line-height: 66px;
    }

    .lm-container-padding {
        padding: 80px 100px;
    }

    .lm-banner-sec {
        background-position: center;
    }

    #myVideo {
        height: 800px;
    }

    .btn {
        font-size: 17px;
    }

    .font-48 {
        font-size: 40px;
        line-height: 48px;
    }

    .lm-col-left-padding {
        padding-left: 0;
    }

    .logo-inn {
        padding-bottom: 25px;
    }

    .lm-sec-two-right {
        padding: 30px;
    }

    .lm-banner-left p {
        font-size: 24px;
    }

    .lm-sec-two-right ul li {
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
    }

    .lm-list-alt li {
        font-size: 18px;
        line-height: 24px;
    }

    .lm-sec-three-inn {
        padding: 0 80px;
    }

    .lm-sec-three,
    .lm-sec-five {
        border-radius: 100px;
    }

    .same-height-three {
        min-height: 495px;
    }

    .small-three {
        min-height: 365px;
    }

    .lm-sec-card {
        padding: 35px;
    }

    .lm-sec-card .col-lg-1 img {
        width: 100%;
    }

    .lm-sec-seven #myVideo {
        width: 100%;
    }

    .lm-sec-seven-inn {
        margin-top: -56.25%;
        height: 810px;
    }


    .lm-sec-btm-right {
        padding: 50px 40px;
    }

    .lm-sec-btm-right ul li {
        font-size: 18px;
        line-height: 24px;
        padding: 13px 0px 13px 37px;
    }

    .lm-sec-btm-right ul li::before {
        top: 12px;
    }

}

@media only screen and (max-width: 1280px) {

    h1 {
        font-size: 40px;
        line-height: 52px;
    }

    h2 {
        font-size: 36px;
        line-height: 42px;
    }

    h3,
    .font-48 {
        font-size: 30px;
        line-height: 36px;
    }

    p,
    .font-18 {
        font-size: 16px;
        line-height: 22px;
        padding: 8px 0;
    }

    .font-20 {
        font-size: 18px;
        line-height: 1.2em;
    }

    .lm-list li {
        font-size: 15px;
        line-height: 20px;
    }

    .lm-container-padding {
        padding: 80px;
    }

    .main-heading {
        font-size: 46px;
        line-height: 60px;
    }

    .lm-banner-left p {
        font-size: 22px;
    }

    .round-35 {
        border-radius: 25px;
    }

    .round-30 {
        border-radius: 20px;
    }

    #myVideo {
        height: 650px;
    }

    .lm-sec-two-right ul li {
        font-size: 17px;
        line-height: 23px;
        font-weight: 500;
        padding: 9px 0px 9px 35px;
    }

    .lm-sec-two-right ul li::after {
        top: 7px;
    }

    .lm-sec-three,
    .lm-sec-five {
        border-radius: 80px;
    }

    .lm-sec-three-inn {
        padding: 0 60px;
    }

    .same-height-three {
        min-height: 485px;
    }

    .small-three {
        min-height: 352px;
    }

    .lm-sec-seven-inn {
        height: 90%;
    }

    .lm-form-area {
        padding: 35px;
    }

    .lm-sec-btm-right ul li {
        font-size: 17px;
        line-height: 24px;
        padding: 10px 0 10px 30px;
    }

    .lm-sec-btm-right ul li:before {
        top: 9px;
        left: 5px;
    }

}

@media only screen and (max-width: 850px) {
    h1 {
        font-size: 40px;
        line-height: 48px;
        font-weight: 700;
    }

    h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        padding-bottom: 10px;
    }

    .font-48 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 28px;
        line-height: 34px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 17px;
        line-height: 25px;
    }

    .img-fluid {
        margin: 15px 0;
    }

    .round-30 {
        border-radius: 15px;
    }

    .btn {
        font-size: 16px;
    }


    .font-24,
    .font-30 {
        font-size: 20px;
        line-height: 30px;
    }

    .font-16 {
        font-size: 16px;
        line-height: 24px;
    }

    .round-35,
    .round-25,
    .lm-sec-two-right {
        border-radius: 12px;
    }

    .lm-banner-right #myVideo {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .main-heading {
        font-size: 42px;
        line-height: 56px;
        font-weight: 800;
        font-family: var(--lm-font);
    }

    .lm-right-padding,
    .lm-container-padding,
    .lm-left-padding,
    .lm-col-left-padding,
    .lm-col-right-padding {
        padding-right: 0px;
        padding-left: 0px;
    }

    .lm-banner-sec {
        padding: 40px 0;
        background-position: center;
    }

    .lm-banner-left {
        padding: 0;
        padding-bottom: 15px;
    }

    .lm-banner-left p {
        font-size: 20px;
    }

    .lm-container-padding {
        padding: 50px 0;
    }

    .container-fluid {
        height: auto;
        width: 95%;
    }

    .lm-sec-two-right ul li {
        padding-left: 30px;
    }

    .lm-sec-two-right {
        margin-top: 4%;
        padding: 40px;
    }

    .lm-sec-two-card {
        margin: 0;
        margin-top: 4%;
    }

    #myVideo {
        border-radius: 0 !important;
        height: auto !important;
        width: 100% !important;
        margin: 20px 0;
        margin-top: 0;
    }

    .lm-sec-two-right ul li::after {
        left: 5px;
        top: 10px;
    }

    .lm-sec-three-inn {
        padding: 0 10px;
    }

    .lm-sec-three,
    .lm-sec-five {
        border-radius: 0;
    }

    .lm-sec-seven-inn {
        position: inherit;
        margin-top: 2%;
        padding: 3% 10px;
    }

    .lm-sec-card {
        margin-top: 25px;
        min-height: auto !important;
    }

    .lm-sec-card .col-lg-1 img {
        width: auto;
    }

    .lm-form-area {
        margin-top: 35px;
        padding: 20px;
    }

    .form-btn-area {
        width: 100%;
    }

    .lm-review-inn {
        padding: 30px;
    }

    .lm-touch-area .position-absolute {
        position: inherit !important;
    }

    .lm-sec-btm-right ul li {
        padding-left: 35px;
    }

    .lm-sec-btm-right ul li::before {
        top: 9px;
        left: 10px;
    }
}

@media only screen and (max-width: 767px) {

    /*Universal Mobile Responsive Style Start*/
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: auto;
    }

    h1 {
        font-size: 34px;
        line-height: 42px;
        padding-bottom: 10px;
        font-weight: 700;
    }


    h2 {
        font-size: 26px;
        line-height: 36px;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .font-48 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 26px;
        line-height: 32px;
        font-weight: 600;
        padding-bottom: 6px;
    }

    h4 {
        font-size: 22px;
        line-height: 26px;
        padding-bottom: 6px;
    }

    h5 {
        font-size: 20px;
        line-height: 30px;
    }

    p,
    li {
        font-size: 16px;
        line-height: 22px;
        padding: 8px 0;
    }

    .font-24,
    .font-30,
    .font-20 {
        font-size: 18px;
        line-height: 22px;
    }

    li {
        padding: 5px 0 5px 24px;
    }

    .round-30 {
        border-radius: 10px;
    }

    .round-35 {
        border-radius: 15px;
    }

    .round-25 {
        border-radius: 8px;
    }

    #myVideo {
        border-radius: 0;
    }

    .lm-list-alt li {
        padding: 7px 0 7px 40px;
    }

    .btn {
        font-size: 14px;
        font-weight: 500;
    }

    .lm-button {
        width: 100%;
        padding: 13px 22px;
    }

    .logo-inn img {
        margin: 0;
    }

    .lm-sec-three .col-lg-12 .pe-xxl-5 {
        padding-right: 10px !important;
    }

    .main-heading {
        font-size: 32px;
        line-height: 40px;
        font-weight: 700;
    }

    .lm-banner-left p {
        font-size: 17px;
    }

    .lm-container-padding {
        padding: 40px 0;
    }

    .lm-banner-sec {
        padding: 40px 0;
    }

    .lm-sec-padding {
        padding: 30px 0;
    }

    .lm-sec-two-right ul li::after {
        top: 7px;
    }

    .lm-sec-cta h2,
    .lm-sec-news h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .lm-service-area,
    .lm-near-me-menu {
        padding: 30px;
    }

    .lm-sec-card .text-center {
        text-align: start !important;
        margin-bottom: 5px;
    }

    .lm-sec-two-right,
    .lm-sec-six .lm-sec-box,
    .lm-sec-six .sec-box-mid,
    .lm-form-area {
        padding: 30px 20px;
    }

    .lm-sec-card,
    .lm-sec-two-card {
        padding: 20px 15px;
    }

    .lm-review-inn {
        padding: 20px;
    }

    .lm-service-area {
        padding: 0 20px;
        padding-bottom: 0px;
    }

    .lm-sec-btm-right {
        padding: 40px 15px;
    }

    .lm-near-me-menu {
        padding: 10px;
        padding-top: 0px;
    }

    .form-btn-area .btn {
        background: #ffffff;
        padding: 10px 12px;
        border-radius: 10px;
        text-align: left;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        margin-top: 25px;
    }

    .lm-banner-left .font-24 {
        font-size: 10px;
    }

    .lm-list-alt li {
        font-family: var(--lm-font-alt);
        font-weight: 400;
    }

    .logo-inn {
        padding: 10px 0px;
    }

}

@media only screen and (max-width: 320px) {
    .main-heading {
        font-size: 34px;
        font-weight: 700;
        line-height: 40px;
    }

    h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .font-24,
    .font-30 {
        font-size: 16px;
        line-height: 22px;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }
}