:root {
    --color1: #ffffff;
    --color2: #000000;
    --color3: #237c39;
    --color4: #2c2e35;
    --color5: #ffc62c;
    --Polymath: "Polymath";
    --Barlow_Condensed: "Barlow Condensed", sans-serif;
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 300;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Light.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 400;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Regular.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 500;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Medium.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 600;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Semibold.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 700;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Bold.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 800;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Black.otf");
}

@font-face {
    font-family: "Polymath";
    font-style: normal;
    font-weight: 900;
    src: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/font/PolymathDisp-Super.otf");
}

.html,
body,
div,
span,
applet,
object,
iframe,
img,
select,
input,
option {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: "Polymath", sans-serif !important;
}



p,
span,
a {
    font-family: "Polymath", sans-serif !important;
    letter-spacing: 1px;
    margin: 0;
}

.landing-main {
    width: 100%;
    overflow-x: hidden;
}

.mid-container-main {
    width: 100%;
    margin: 112px 0 0;
}

/* Header Navbar CSS  */

.header-main {
    width: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--color5);
    border-top: 20px solid var(--color3);
    padding: 20px 0px;
    align-items: center;
}

.slider-main-div {
    height: 710px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
    margin: 0 60px;
}

.logo img {
    max-width: 200px;
}

.top-nav {
    display: flex;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.top-nav ul li {
    padding: 0 15px;
}

.activee {
    color: var(--color3) !important;
    font-weight: 800;
}

.top-nav ul li a {
    text-decoration: none;
    color: var(--color2);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.top-nav ul li {

    color: var(--color2);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.top-nav ul li a:hover {
    color: var(--color3);
}

.toggle-menu {
    display: none;
    cursor: pointer;
}

.toggle-menu .menu-icon,
.toggle-menu .close-icon {
    font-size: 1.5rem;
    color: var(--color3);
    padding-right: 10px;
    display: none;
}

.toggle-menu .close-icon {
    color: var(--color3);
    padding-right: 10px;
}

.seprator {
    display: flex;
    align-items: center;
}

.fLno {
    font-size: 10pt;
    color: white;
}

@media (max-width: 600px) {
    .header-content {
        margin: 0 10px 0px 10px;
    }
}

@media (max-width: 991px) {
    .top-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--color5);
        width: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .top-nav.active {
        display: flex;
    }

    .toggle-menu {
        display: block;
    }

    .toggle-menu .menu-icon {
        display: inline;
    }

    .toggle-menu.active .menu-icon {
        display: none;
    }

    .toggle-menu.active .close-icon {
        display: inline;
    }

    .top-nav ul li {
        width: 100%;
        text-align: left;
        padding: 7px 20px !important;
    }

    .top-nav ul {
        width: 100%;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
        padding: 14px 0;
        flex-direction: column;
    }

    .seprator {
        display: none;
    }
}

/* Header Navbar End  */

/* Slider CSS */
.slider-mox {
    position: relative;
    width: 100%;
    height: 725px;
    overflow: hidden;
}

.slide-mox {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
}

.slide-mox.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-mox.previous {
    transform: translateX(-100%);
}

.slider-content-submain h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.slider-content-submain p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color1);
    font-weight: 500;
}

.section-1-right-side-para2 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--color5);
}

.quote-button {
    background-color: var(--color5);
    border: none;
    color: var(--color2);
    padding: 12px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quote-button:hover {
    background-color: var(--color5);
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--color5);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--color5);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color3);
    color: var(--color1);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 1px;
}

.arrow.right {
    right: 1px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-content-main {
    color: var(--color1);
}

.slider-content-submain {
    color: var(--color1);
}

/* Slider CSS END  */

/* SECTION-1 CSS  */
.section-1-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* background-color: black; */
}

.section-1-right-side-h1 {
    font-size: 3.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 1;
    margin: 20px 0px !important;
    margin-top: 0px !important;
}

.section-1-right-side-h1-number a {
    font-size: 3.3rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color5);
    word-spacing: 5px;
    margin: 40px 0px !important;
}

.call-text {
    margin: 0px;
    letter-spacing: 1.6px;
    text-transform: none;
    font-weight: 600;
    font-size: 40px;
}



.unique-divider {
    color: #ffc62c;
    border: 1px solid #ffc62c;
    width: 320px;
    margin: 0;
}

.section-1-right-side-para1 {
    font-size: 2rem;
    margin-bottom: 20px;
    word-spacing: 5px;
    letter-spacing: 2px !important;
    color: var(--color1);
    font-weight: 400;
    margin-top: 20px;
}

.section-1-right-side-para1 p {
    letter-spacing: 1.1px !important;
}

.section-1-right-side-para2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 4px;
    word-spacing: 5px;
    margin: 31px 0px !important;
}

.section-1-main-content {
    position: relative;
    z-index: 1;
    color: var(--color1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.desed-text-mange {
    display: none;
}

@media (max-width: 500px) {
    .desed-text-mange {
        display: block !important;
    }
}

@media (max-width: 520px) {
    .desed-text-mange {
        display: block !important;
    }
}


@media (max-width: 471px) {
    .desed-text-mange {
        display: none !important;
    }
}

@media (max-width: 434px) {
    .desed-text-mange {
        display: block !important;
    }
}

@media (max-width: 430px) {
    .desed-text-mange {
        display: none !important;
    }
}

/* SECTION-1 CSS END  */


.learn-about-main {
    background-color: #03793e;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.learn-about-main a {
    text-decoration: none;
    color: #ffc62c;
}



/* section-2 desgin */
.section-2-container {
    position: relative;
    width: 100%;
    /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Firefly_sunset over a nice backyard with flowers.jpg") no-repeat center center/cover; */
    background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Background1.png") no-repeat center center/cover;
}

.section-2-background-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    /* Gradient from black to transparent */
    /* background-color: black; */
}

.section-2-main-content {
    position: relative;
    z-index: 1;
    color: var(--color1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 70px;
    height: 100%;
}

.section-2-left-side {
    width: 50%;
}

.section-2-right-side {
    width: 44%;
    text-align: left;
}

.section-2-right-side-para {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 15px 0px !important;
}

.section-2-right-side-h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    font-weight: 700;
    margin: 10px 0px !important;
}

.section-2-feature {
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (max-width: 775px) {
    .section-1-right-side-h1 {
        font-size: 3.1rem !important;
        line-height: 0.9;
    }

    .section-1-right-side-para1 {
        margin-right: 6%;
        font-size: 1.6rem;
    }

    .section-2-content {
        flex-direction: column;
        padding: 20px;
    }

    .section-2-left-side {
        display: none;
    }

    .section-2-right-side {
        width: 100%;
        text-align: center;
    }

    .section-2-right-side br {
        display: none;
    }

    .section-2-right-side-h1 {
        font-size: 1.5rem;
    }

    .section-2-right-side-h1 br {
        display: none;
    }

    .section-2-right-side-para {
        font-size: 1rem;
        font-weight: 200;
    }

    /* .section-1-right-side-para1 br {
        display: none;
    } */

    .section-2-background-overlay {
        background: none;
    }

    .section-4-background-overlay {
        background: none;
    }

    .quote-button {
        padding: 15px 15px;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 1.5px;
    }

    .learn-about-main {
        display: none;
    }
}

@media (max-width: 650px) {
    .section-1-right-side-h1 {
        font-size: 3.1rem !important;
        line-height: 0.9;
    }

    .section-1-right-side-para1 {
        margin-right: 0%;

    }
}

@media (max-width: 520px) {
    .slider-main-div {
        width: 80% !important;
        margin: 0px 50px !important;
    }

    .section-1-right-side-h1 {
        margin-bottom: 10px !important;
    }



    /* .section-1-right-side-h1 br {
        display: none;
    } */
}

@media (max-width: 390px) {
    .slider-main-div {
        width: 74% !important;
        margin: 0px 50px !important;
    }
}

@media (max-width: 465px) {
    .section-1-right-side-h1 {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 438px) {
    /* .slider-main-div {
            height: 100vh !important;
        } */

    .unique-divider {
        width: 250px;
    }

    .section-1-right-side-h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 410px) {
    .section-1-right-side-para1 {
        font-size: 15px;
        line-height: 14.925pt;
    }
}

@media (max-width: 480px) {
    .section-2-right-side-h1 {
        font-size: 1.5rem;
    }

    .section-2-right-side-para,
    .section-2-feature .section-2-right-side-para {
        font-size: 0.9rem;
    }
}

/* section-3 desgin */
.section-3-container {
    position: relative;
    width: 100%;
    background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Background2.png") no-repeat center center/cover;

}

.section-3-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-3-main-content {
    position: relative;
    z-index: 1;
    color: var(--color1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0px 100px 70px;
    height: 100%;
}

.section-3-left-side {
    width: 48%;
    margin-left: 2%;
}

.section-3-right-side {
    width: 50%;
    text-align: left;
}

.section-3-right-side-para {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color2);
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 15px 0px !important;
}

.section-3-right-side-h1 {
    font-size: 2rem;
    color: black;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    margin: 10px 0px !important;
}

.section-3-feature {
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-3-content {
        flex-direction: column;
        padding: 20px !important;
    }

    .section-3-left-side {
        width: 100%;
        text-align: center;
        margin-left: 0px;
    }

    .section-3-left-side br {
        display: none;
    }

    .section-3-right-side {
        display: none;
    }

    .section-3-right-side-h1 {
        font-size: 1.5rem;
    }

    .section-3-right-side-h1 br {
        display: none;
    }

    .section-3-main-content {
        padding: 100px 50px !important;
    }

    .section-3-right-side-para {
        font-size: 1rem;
        font-weight: 200;
    }
}

@media (max-width: 480px) {
    .section-3-right-side-h1 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .section-3-right-side-para,
    .section-3-feature .section-3-right-side-para {
        font-size: 0.9rem;
    }
}

/* section-4 design */

.section-4-container {
    /* margin-top: 20px; */
    position: relative;
    width: 100%;
    /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/bg-3.png") no-repeat center center/cover; */
    background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Background3.png") no-repeat center center/cover;
}

.section-4-background-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.section-4-main-content {
    position: relative;
    z-index: 1;
    color: var(--color1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 70px;
    height: 100%;
}

.section-4-left-side {
    width: 50%;
}

.section-4-right-side {
    width: 44%;
    text-align: left;
}

.section-4-right-side-para {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 15px 0px !important;
}

.section-4-right-side-h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    font-weight: 700;
    margin: 10px 0px !important;
}

.section-4-feature {
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-4-content {
        flex-direction: column;
        padding: 20px;
    }

    .section-4-left-side {
        display: none;
    }

    .section-4-right-side {
        width: 100%;
        text-align: center;
    }

    .section-4-right-side br {
        display: none;
    }

    .section-4-right-side-h1 {
        font-size: 1.5rem;
    }

    .section-4-right-side-h1 br {
        display: none;
    }

    .section-4-right-side-para {
        font-size: 1rem;
        font-weight: 200;
    }

    .section-4-background-overlay {
        background: none;
    }

    .overlay-pest-section {
        background: none !important;
    }
}

@media (max-width: 480px) {
    .section-4-right-side-h1 {
        font-size: 1.5rem;
    }

    .section-4-right-side-para,
    .section-4-feature .section-4-right-side-para {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .section-2-main-content {
        padding: 50px 30px;
    }

    .section-3-main-content {
        padding: 50px 30px;
    }

    .section-4-main-content {
        padding: 50px 30px;
    }
}

/* Slide in from the right */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide in from the left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation classes */
.slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.hidden1 {
    opacity: 0;
}

/* SECTION-2,3, 4 CSS END  */

@media (max-width: 1439px) {
    .header-content {
        justify-content: space-between;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Black with 50% opacity */
    z-index: 1;
}

.overlaywithimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/MistPNGTransparentImage-vi.png") no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.overlay-pest-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Black with 50% opacity */
    z-index: 1;
}

.overlay-pest-section-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Black with 50% opacity */
    z-index: 1;
}




/* SECTION-7 CSS */
.section7-subsection-main {
    position: relative !important;
}

.section7-subsection-1-main {
    padding: 50px 0px;
    background-color: #3c3c3c !important;
}

.section7-subsection-1 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1700px;
    margin: auto;
    padding: 20px;
    z-index: 1;
    /* border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.center-icon {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.cenrter-icon-main {
    border: 7px dashed #ffa500;
    border-radius: 50%;
    width: 30%;
}

.cenrter-icon-inner-div {
    border: 7px dashed #ffa500;
    border-radius: 50%;
    margin: 20px;
}

.cenrter-icon-inner-div img {
    margin: 40px 20px;
    width: 77%;
    height: auto;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    width: 250px;
    text-align: center;
    gap: 10px;
    text-transform: uppercase !important;
}

.feature p {
    font-size: 1.2rem;
    color: #f1f2f4;
    font-weight: 700;
    margin: 0;
}

.section-7-hr {
    color: #ffc62c;
    border: 1px solid;
    width: 400px;
    width: 55%;
    margin-right: auto;
    margin-left: 0;
}

.feature img {
    width: 100%;
    height: auto;
}

.feature-left-icon {
    justify-content: right;
}

.feature-left-icon .feature-p {
    text-align: right !important;
}

.feature-right-icon {
    justify-content: left;
}

.feature-right-icon .feature-p {
    text-align: left !important;
}

.feature-left-icon1 {
    position: absolute;
    top: 7%;
    left: 18%;
}

.feature-left-icon2 {
    position: absolute;
    top: 40%;
    left: 15.5%;
}

.feature-left-icon3 {
    position: absolute;
    top: 73%;
    left: 18.5%;
}

.feature-right-icon1 {
    position: absolute;
    top: 7%;
    right: 18%;
}

.feature-right-icon2 {
    position: absolute;
    top: 40%;
    right: 15.5%;
}

.feature-right-icon3 {
    position: absolute;
    top: 73%;
    right: 18.5%;
}

@media (max-width: 1350px) {
    .feature-left-icon1 {
        left: 16%;
    }

    .feature-left-icon2 {
        left: 13.5%;
    }

    .feature-left-icon3 {
        left: 16.5%;
    }

    .feature-right-icon1 {
        right: 16%;
    }

    .feature-right-icon2 {
        right: 13.5%;
    }

    .feature-right-icon3 {
        right: 16.5%;
    }
}

@media (max-width: 1230px) {
    .feature-left-icon1 {
        left: 14%;
    }

    .feature-left-icon2 {
        left: 11.5%;
    }

    .feature-left-icon3 {
        left: 14.5%;
    }

    .feature-right-icon1 {
        right: 14%;
    }

    .feature-right-icon2 {
        right: 11.5%;
    }

    .feature-right-icon3 {
        right: 14.5%;
    }
}

@media (max-width: 1100px) {
    .section-7-hr {
        color: #ffc62c;
        border: 1px solid;
        width: 300px;
        margin-right: auto;
        margin-left: 0;
    }

    .center-icon {
        height: 300px !important;
    }

    .cenrter-icon-main {
        width: 300px;
        display: none;
    }

    .feature-img {
        width: 30%;
    }

    .feature-left-icon1 {
        left: 13%;
    }

    .feature-left-icon2 {
        left: 10.5%;
    }

    .feature-left-icon3 {
        left: 13.5%;
    }

    .feature-right-icon1 {
        right: 13%;
    }

    .feature-right-icon2 {
        right: 10.5%;
    }

    .feature-right-icon3 {
        right: 13.5%;
    }
}

@media (max-width: 1070px) {
    .feature {
        width: 245px;
    }

    .feature-img {
        width: 44% !important;
    }

    .feature-left-icon1 {
        left: 13%;
    }

    .feature-left-icon2 {
        left: 10.5%;
    }

    .feature-left-icon3 {
        left: 14.5%;
    }

    .feature-right-icon1 {
        right: 13%;
    }

    .feature-right-icon2 {
        right: 10.5%;
    }

    .feature-right-icon3 {
        right: 13.5%;
    }
}

@media (max-width: 1000px) {
    .feature {
        width: 240px;
    }

    .feature p {
        font-size: 1.1rem;
    }

    .feature-img {
        width: 40% !important;
    }

    .feature-left-icon1 {
        left: 9%;
    }

    .feature-left-icon2 {
        left: 6.5%;
    }

    .feature-left-icon3 {
        left: 10.5%;
    }

    .feature-right-icon1 {
        right: 9%;
    }

    .feature-right-icon2 {
        right: 6.5%;
    }

    .feature-right-icon3 {
        right: 9.5%;
    }
}

@media (max-width: 870px) {
    .feature {
        width: 245px;
    }
}

@media (max-width: 820px) {
    .feature {
        width: 240px;
    }

    .feature-img {
        width: 37% !important;
    }

    .feature-left-icon1 {
        left: 8%;
    }

    .feature-left-icon2 {
        left: 5.5%;
    }

    .feature-left-icon3 {
        left: 9.5%;
    }

    .feature-right-icon1 {
        right: 9%;
    }

    .feature-right-icon2 {
        right: 6.5%;
    }

    .feature-right-icon3 {
        right: 9.5%;
    }
}

@media (max-width: 600px) {
    .feature-left-icon1 {
        left: 8%;
    }

    .feature-left-icon2 {
        left: 8%;
    }

    .feature-left-icon3 {
        left: 8%;
    }

    .feature-right-icon1 {
        right: 9%;
    }

    .feature-right-icon2 {
        right: 9%;
    }

    .feature-right-icon3 {
        right: 9%;
    }

    .center-icon {
        height: 500px !important;
    }

    .feature {
        display: flex;
        width: 36%;
        flex-direction: column-reverse;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature-right-icon1,
    .feature-right-icon2,
    .feature-right-icon3 {
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .feature-p {
        width: 100% !important;
    }

    .feature-left-icon2,
    .feature-right-icon2 {
        top: 40%;
    }

    .feature-left-icon3 {
        left: 7.5%;
    }
}

@media (max-width: 480px) {
    .feature-img {
        width: 52% !important;
    }

    .feature h3 {
        font-size: 1rem !important;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateX(0);
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-left-icon.visible[data-animate="slideInRight"] {
    animation-name: slideInRight;
}

.feature-right-icon.visible[data-animate="slideInLeft"] {
    animation-name: slideInLeft;
}

.section7-subsection-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: #00aeef;
    /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/footerbgnew.png") no-repeat center/cover; */
    color: white;
}

.info {
    flex: 1;
    max-width: 530px;
    margin-bottom: 20px;
}

.info .h1-section7 {
    font-size: 3.2rem;
    margin: 0 0 29px;
    line-height: 1;
    font-weight: 700;
}

.info p {
    font-size: 1.6rem;
    margin: 10px 0;
    font-weight: 600;
    letter-spacing: 2px;
    word-spacing: 5px;
}

.info .contact a {
    font-size: 3.5rem;
    text-decoration: none;
    -webkit-text-decoration: none;
    font-weight: 400;
    color: var(--color5, #fff);
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image img {
    max-width: 90%;
    border-radius: 50%;
}

.Subsection-2-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Subsection-2-footer-left,
.Subsection-2-footer-right {
    min-width: 300px;
    margin-bottom: 20px;
}

.Subsection-2-footer-right .parahead {
    color: var(--color5, #fff);
    font-size: 33px;
    font-weight: 700;
    line-height: 38px;
    margin: 0 0 15px;
}

.divider {
    border-left: 2px solid var(--color5, #fff);
    height: 230px;
    margin-top: 10px;
}

.fade-in,
.zoom-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 2s ease;
}

.zoom-in {
    transform: scale(0.8);
}

.fade-in.active,
.zoom-in.active {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in.active {
    transform: scale(1);
}

.Subsection-2-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 50px;
}

.divider {
    border-left: 2px solid var(--color5);
    height: 230px;
    margin-top: 10px;
}

.Subsection-2-footer-right h2 {
    color: var(--color5);
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 15px;
    margin-top: 0px;
}

.Subsection-2-footer-left h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.Subsection-2-footer-left p,
.Subsection-2-footer-right p {
    margin: 5px 0;
    font-size: 15pt;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 1.3px;
    color: var(--color1);
}

.mobile-view-btn {
    display: none;
}

.section7-subsection-2 .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48%;
    /* height: 32%; */
    position: absolute;
    top: 44%;
    right: 10%;
    z-index: 2;
}

.section-7-line-br {
    display: none;
}

@media screen and (min-width: 1450px) {
    .image img {
        max-width: 575px;
        max-height: 575px;
    }
}

@media screen and (max-width: 1450px) {
    .section7-subsection-2 .image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48%;
        /* height: 32%; */
        position: absolute;
        top: 44%;
        right: 6%;
        z-index: 1;
    }
}

@media screen and (max-width: 1450px) {
    .Subsection-2-footer {
        padding-top: 40px !important;
    }

    /* .section7-subsection-2 .image img {
            width: 300px;
        } */
}


@media screen and (max-width: 1450px) {
    .section7-subsection-2 .image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48%;
        /* height: 32%; */
        position: absolute;
        top: 45%;
        right: 6%;
        z-index: 1;
    }
}

@media screen and (max-width: 1360px) {
    .section7-subsection-2 .image {
        top: 44%;
        right: 5%;
        height: 30%;
    }
}

@media screen and (max-width: 1215px) {
    .section7-subsection-2 .image {
        top: 45%;

        right: 5%;
        height: 26%;
    }
}

@media screen and (max-width: 1100px) {
    .info {
        width: 35%;
    }

    .section7-subsection-2 .image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 65%;
        /* height: 40%; */
        position: static;
    }

    .image img {
        max-width: 420px;
        height: 420px;
    }
}

@media screen and (max-width: 1100px) {
    .section7-subsection-2 .image {
        top: 26%;
        right: 0%;
    }
}

@media screen and (max-width: 960px) {
    .info h1 {
        font-size: 2.7rem;
        margin-bottom: 29px;
        line-height: 52px;
        margin-top: 0px;
    }

    .divider {
        display: none;
    }

    .image img {
        max-width: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 860px) {
    .display-view-btn {
        display: none !important;
    }

    .mobile-view-btn {
        display: block !important;
    }

    .info {
        width: 100%;
        margin-bottom: 0px;
    }

    .section7-subsection-2 .image {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .section7-subsection-2 .image img {
        max-width: 500px;
        height: 500px;
    }

    .section7-subsection-2 {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .info h1 {
        font-size: 2.5rem;
        margin-bottom: 29px;
        line-height: 52px;
        margin-top: 0px;
    }

    .Subsection-2-footer-left {
        margin-bottom: 20px;
        width: 100% !important;
    }

    .Subsection-2-footer-right {
        padding-top: 20px !important;
        border-top: 2px solid var(--color5);
        width: 100% !important;
    }

    .info p {
        font-size: 2.1rem;
        margin: 16px 0;
        font-weight: 600;
        letter-spacing: 2px;
        word-spacing: 5px;
    }

    .section-7-hr {
        color: #ffc62c;
        border: 1px solid;
        width: 400px;
        margin: auto;
    }

    .Subsection-2-footer-left p,
    .Subsection-2-footer-right p {
        font-size: 16.5pt;
        line-height: 25pt;
    }

    .Subsection-2-footer-right {
        padding-top: 40px !important;
        border-top: none;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .display-view-btn {
        display: none !important;
    }

    .section7-subsection-2 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .info {
        margin-bottom: 20px;
        width: 100% !important;
    }

    .info h1 {
        font-size: 2.8rem;
    }

    .Subsection-2-footer {
        flex-direction: column;
        text-align: center;
    }

    .Subsection-2-footer-right p br {
        display: none;
    }

    .Subsection-2-footer-left p br {
        display: none;
    }

    .info hr {
        text-align: center;
        margin: revert !important;
    }
}

@media (max-width: 680px) {
    .section7-subsection-2 .image img {

        height: 380px !important;
        width: 380px !important;
    }
}

@media (max-width: 600px) {
    .section7-subsection-2 .image img {

        height: 350px !important;
        width: 350px !important;
    }

    .info .contact a {
        font-size: 3rem;
    }
}

@media (max-width: 550px) {
    .section-7-hr {
        color: #ffc62c;
        border: 1px solid;
        width: 100%;
        margin: auto;
    }

    .section7-subsection-2 .image img {
        height: 320px !important;
        width: 320px !important;
    }
}

@media (max-width: 500px) {
    .section-7-hr {
        color: #ffc62c;
        border: 1px solid;
        width: 100%;
        margin: auto;
    }

    .section7-subsection-2 .image img {
        height: 280px !important;
        width: 280px !important;
    }

    .info .contact a {
        font-size: 2.5rem;
    }
}

@media (max-width: 450px) {
    .section7-subsection-2 {
        padding: 30px !important;
    }
}

@media (max-width: 420px) {
    .info .h1-section7 {
        font-size: 2.8rem;
    }

    .section7-subsection-2 .image img {
        height: 250px !important;
        width: 250px !important;
    }
}

@media (max-width: 768px) {
    .display-view-btn {
        display: none !important;
    }

    .section7-subsection-2 {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }

    .button-main-container {
        display: flex;
        justify-content: center;
    }

    .info {
        width: 100%;
    }

    .Subsection-2-footer {
        flex-direction: column;
        text-align: center;
    }

    .image {
        display: none;
    }
}

/* SECTION-7 CSS ENDS*/

/* FOOTER CSS  */
footer {
    width: 100%;
    display: block;
    background: var(--color3) !important;
    position: relative;
    z-index: 1;
    padding: 15px 0;
}

.footerBottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0;
    width: 100%;
}

footer .footerBottom p {
    color: var(--color1);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1.7px;
    margin: 5px;
    /* margin-top: 15px; */
}

footer .footerBottom p a {
    color: var(--color1);
    font-size: 18px;
    font-weight: 500;

}

.footer-main {
    padding: 0 20px;
    margin: 0 60px;
}

footer .footerBottom .fLogo {
    max-width: 253px;
}

footer a {
    color: var(--color1);
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: underline;
}

footer .footerBottom .fLogo img {
    width: 100%;
}

@media (max-width: 1280px) {
    footer {
        padding: 20px 0;
    }
}

@media (max-width: 900px) {
    .footer-main {
        padding: 0 0px;
        margin: 0 30px;
    }

    footer .footerBottom p {
        font-size: 15px;
    }

  
}

/* FOOTER CSS ENDS  */

/* MODAL CSS  */


.modal::before,
.modal::after {
    box-sizing: border-box;
}

.modal-content::before,
.modal-content::after {
    box-sizing: border-box;
}

.modal-form::before,
.modal-form::after {
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    margin: 20px 0;
    font-family: "Polymath", sans-serif !important;
}

.modal-content {
    box-sizing: border-box;
    background-image: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/gh.png");
    background-size: cover;
    background-position: center;
    margin: auto;
    padding: 20px;
    width: 50%;
    max-height: 85vh;
    border-radius: 10px;
    position: fixed;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    /* Allows scrolling */
    scrollbar-width: none;
    /* Hides scrollbar in Firefox */
}

.modal-content::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in Chrome & Edge */
}


.modal-content h2 {
    text-align: center;
    color: var(--color3);
    font-size: 40px;
    letter-spacing: 2px;
}

.close {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: var(--color3);
}

select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1.2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: black !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 5px;
}

input {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-group-two {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* .form-group input {
      width: 48%;
    } */

.input-container {
    display: flex;
    flex-direction: column;
    width: 48%;
}

#StateRegion {
    text-transform: uppercase !important;
}

.input-state input::placeholder {
    text-transform: none !important;
}

.modal-form .error {
    color: #d92727fa;
    font-size: 13px;
}

.modal-form {
    margin: 20px 80px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--color3);
    font-size: 13px;
    letter-spacing: 1px;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background: var(--color3);
    font-family: "Polymath", sans-serif !important;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    letter-spacing: 1.5px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #0a3d1e;
}

.policy-text {
    font-size: 13px;
    margin-top: 10px;
    color: var(--color3);
    line-height: 1.1;
}

.policy-text a {
    color: var(--color3);
    text-decoration: none;
}

input::placeholder {
    color: black;
}

select::placeholder {
    color: black;
    padding-right: 40px;
    /* Space for custom arrow */
}

.open-modal-btn {
    padding: 10px 20px;
    font-size: 18px;
    background: #12592c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.open-modal-btn:hover {
    background: var(--color3);
}

/* MODAL CSS ENDS */
@media screen and (max-width: 1100px) {
    .modal-content h2 {
        font-size: 30px;
    }

    .modal-form {
        margin: 20px 20px;
    }
}

@media (max-width: 1045px) {
    .slider-main-div {
        height: 530px !important;
    }

    .slider-mox {
        height: 600px;

    }

    .slide-mox:nth-child(1) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Banner3.png") no-repeat center right / cover !important;
    }

    .slide-mox:nth-child(2) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Banner2.png") no-repeat center right / cover !important;
    }

    .slide-mox:nth-child(3) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Banner1.png") no-repeat center right / cover !important;
    }
}

@media (max-width: 768px) {
    .slider-main-div {
        height: 580px !important;
        margin: 0px 70px !important;
    }

    .slider-mox {
        height: 650px;
    }
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 80%;
        padding: 15px;
    }

    .modal-content h2 {
        font-size: 30px;
    }

    .form-group,
    .form-group-two {
        /* flex-direction: column; */
        gap: 0px;
    }

    .form-group input {
        width: 100%;
    }

    .modal-form {
        margin: 20px;
        box-sizing: border-box;
    }

    .checkbox-container {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 10px;
    }

    .policy-text {
        font-size: 12px;
        width: 100%;
    }

    .open-modal-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .feature-left-icon {
        justify-content: center;
    }

    .feature-left-icon .feature-p {
        text-align: center !important;
    }

    .feature-right-icon {
        justify-content: center;
    }

    .feature-right-icon .feature-p {
        text-align: center !important;
    }

    .feature-right-icon .feature-p p br {
        display: block !important;
    }

    .feature-left-icon .feature-p p br {
        display: block !important;
    }

    br {
        display: none !important;
    }

    .model-msg br {
        display: block !important;
    }

    .section-7-subsection-2-dates br {
        display: block !important;
    }

    .slide-mox:nth-child(1) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Banner3.jpg") no-repeat center center / cover !important;
    }

    .slide-mox:nth-child(2) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Banner2.jpg") no-repeat center center / cover !important;
    }

    .slide-mox:nth-child(3) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Banner1.jpg") no-repeat center center / cover !important;
    }

    .section-2-container {
        /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/MobileResize/Misters.jpg") no-repeat center center/cover; */
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Background.png") no-repeat center center/cover;
    }

    .section-3-container {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Background2.png") no-repeat center center/cover;

    }

    .section-4-container {
        /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Background3.png") no-repeat center center/cover; */
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/Background3.png") no-repeat center center/cover;
    }

    .pest-control-left-section {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/MobileResize/Backyard.jpg") no-repeat center/cover;
    }

    .overlaywithi {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/MobileResize/Mist.jpg") no-repeat center/cover;
    }

    .slider-main-div {
        height: 630px !important;
        width: 90% !important;
    }

    .slider-mox {
        height: 675px;
    }

    .section-1-right-side-h1-number a {
        font-size: 3rem;
    }

    .quote-button {
        padding: 15px 15px;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .section-7-line-br {
        display: block !important;
        padding-top: 15px;
    }

    .footerBottom {
        flex-direction: column !important;
    }

    .fbLeft {
        text-align: center;
        width: 100% !important;
    }
}

@media (max-width: 500px) {

    .section-1-btn-main {
        margin-top: 0px !important;
    }

    .section-1-right-side-h1-number a {
        margin: 22px 0px !important;
        font-size: 2.5rem;
    }

    .slider-main-div {
        height: 530px !important;
        width: 92% !important;
    }

    .slider-mox {
        height: 600px;
    }

    .section-1-right-side-h1-number a {
        margin: 22px 0px !important;
    }

    .section-1-right-side-para1 {
        font-size: 1.3rem;
    }

    .form-group,
    .form-group-two {
        flex-direction: column;
        gap: 0px;

    }

    .input-container {
        width: 100%;
    }

    .quote-button {
        padding: 10px 18px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .call-text {
        font-size: 35px;
    }

    .section-1-right-side-para2 {
        margin: 20px 0px !important;
    }


}

@media (max-width: 430px) {

    .slide-mox:nth-child(3) {
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Banner1.jpg") no-repeat center right / cover !important;
    }

    .section-2-container {
        /* background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/lp/Links/MobileResize/Misters.jpg") no-repeat center center/cover; */
        background: url("https://bllv.s3.us-west-1.amazonaws.com/Assets/mqx/quicknix/promo/mobile/Background.png") no-repeat center left/cover;
    }

    .thank-you-message {
        margin-bottom: 45px;
    }

    .model-msg strong {
        color: var(--color3);
        font-size: 16px;
        letter-spacing: 1px;
    }

    .model-msg {
        color: var(--color3);
        font-size: 14px;
        line-height: 15px;
        letter-spacing: 1px;
    }

    .section-1-right-side-h1-number a {
        margin: 22px 0px !important;
    }

    .slider-main-div {
        height: 425px !important;
        width: 88% !important;
    }


    .slider-mox {
        height: 440px;
    }

    .section-1-right-side-para1 {
        font-size: 1.2rem;
    }

    .section-1-right-side-h1-number a {
        margin: 22px 0px !important;
        font-size: 50px;
    }

    .section-7-hr {
        width: 85%;
    }

    .section-2-right-side-para {
        font-size: 1.1rem;
    }

    .section-3-right-side-para {
        font-size: 1.1rem;
        letter-spacing: 1.1px;
    }

    .section-4-right-side-para {
        font-size: 1.1rem;
        letter-spacing: 1.4px;
    }

    .section-1-right-side-para2 {
        line-height: 0.9;
    }

    .section-1-right-side-h1-number a {
        font-size: 30px;
    }

    .call-text {
        font-size: 30px;
    }

    .quote-button {

        font-size: 0.7rem;
        letter-spacing: 0px;
    }
}

@media (max-width: 400px) {
    .section-1-btn-main {
        margin-right: 15%;
    }

    .slider-main-div {
        width: 85% !important;
    }

    .section-1-right-side-h1 {
        font-size: 1.78rem !important;
    }

    .call-text {
        font-size: 30px;
    }

    .section-1-right-side-h1-number a {
        margin: 15px 0px !important;
        font-size: 30px;
    }

    .section-3-right-side-h1 {
        font-size: 1.3rem !important;
        letter-spacing: 0.7px !important;
    }

    .section-1-right-side-para1 {
        font-size: 1.1rem;
    }
}

@media (max-width: 1300px) {
    .Subsection-2-footer-left p br {
        display: none !important;
    }
}

@media (max-width: 1350px) {

    .section-2-container br,
    .section-3-container br,
    .section-4-container br {
        display: none !important;
    }
}

@media (max-width: 1300px) {
    .location-list br {
        display: none !important;
    }
}

@media (max-width: 370px) {


    .info .contact a {
        font-size: 2.3rem;
    }

    .call-text {
        font-size: 26px;
    }

    .section-1-right-side-h1-number a {
        margin: 15px 0px !important;
        font-size: 25px;
    }

    .section-3-right-side-h1 {
        font-size: 1.2rem !important;
        letter-spacing: 0.7px !important;
    }

    .slider-main-div {
        height: 420px !important;
    }

    .slider-mox {
        height: 470px;
    }

    .section-1-right-side-h1-number a {
        margin: 22px 0px !important;
    }


    .section-1-btn-main {
        margin-right: 17%;
    }

    .section-1-right-side-para1 {
        font-size: 1rem;
        line-height: 15.5pt;
    }
}

.section-1-right-side-h1-number a {
    -webkit-text-decoration: none;
    text-decoration: none;
}

.thank-you-message {
    padding-top: 60px !important;
    height: 100% !important;
}

.thank-you-message p {
    padding: 29px !important;
    padding-top: 0px;
}

.model-msg strong {
    color: var(--color3);
    font-size: 30px;
    letter-spacing: 1px;
}

.model-msg {
    color: var(--color3);
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 2.4px;
    margin-top: -35px;
}

.error-popup-message {
    text-align: center;
    font-size: 13px !important;
    color: #cc0c0c;
}

.error-checkboxs-message {
    text-align: center;
    font-size: 13px !important;
    color: #cc0c0c !important;
}

/* section-7-subsection2 css  */

.location-list {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 5px;
}

.separator {
    white-space: nowrap;
}

.hidden {
    display: none;
}

.locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: left;
    padding: 10px 0px;
    width: 100%;
    /* max-width: 788px; */
    /* margin: auto; */
    align-content: flex-start;
}

.location {

    font-size: 22px;
}



@media (max-width: 991px) {
    .divider {
        display: none !important;
    }

    .location-list,
    .Subsection-2-footer-left {
        width: 100% !important;
    }
}

/* -webkit-text-decoration: none; */