h1,
h2,
h3,
h4,
h5,
h6 {
    padding-bottom: 10px;
}

body {
    background: #FFE588 !important;
}




.header-lp {
    position: absolute;
    top: 0;
    width: 100%;
}


.lp-header-cta {
    font-size: 18px;
    color: #fff;
    background-color: #6AC456;
    padding: 6px 12px;
    border-radius: 4px;
}

.lp-header-cta:hover {
    background-color: #307620;
    color: white;
    text-decoration: none;
}


.lp-header-cta .phone-icon {
    filter: brightness(0) invert(1);
}

.lp-hero {
    padding-top: 125px;
    padding-bottom: 150PX;
}

.lp-hero__heading {
    font-size: clamp(54px, 4vw, 64px);
    font-family: "badgrudge";
    color: white;
    font-weight: 400;
    line-height: 0.8;
    padding-bottom: 8px;
}


.lp-hero__text {
    color: white;
    font-weight: 400;
    font-size: 18px;
    max-width: 600px;
    padding-bottom: 5% !important;
}





.carousel-wrap {
    max-width: 450px;
    margin-top: 50px;
    border-radius: 10px;
    
    /* Rounded corners for a smooth look */
}


section.lp-hero .carousel-item {
  height: 300px; /* Fixed height for all items */
}

.carousel-item img {
  width: 100%; /* Ensure the image takes up the full width of the container */
  height: 100%; /* Ensure the image takes up the full height of the container */
  object-fit: cover; /* Cover the container without distorting the image */
  border-radius: 10px;
}

.carousel-inner img {
    width: 100%;
    /* Ensures images fill the carousel */
    height: auto;
    /* Keeps image proportions intact */
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid black;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    background-color: #353535;
    opacity: 1;
    margin-top: 15px;

}

.carousel-control-prev {
    left: 40%;
}

.carousel-control-next {
    left: 55%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    font-size: 18px;
}

.carousel-control-prev-icon::after {
    content: '❮';
}

.carousel-control-prev-icon:hover {
    color: #FAB928;
}

.carousel-control-next-icon::after {
    content: '❯';
}

.carousel-control-next-icon:hover {
    color: #FAB928;
}

.lp-hero__input-wrapper {
    display: flex;
    /* Aligns the input and button inline */
    border-radius: 25px;
    /* Rounded corners for the group */
    overflow: hidden;
    /* Ensures the content respects the border radius */
    background: #FFF;
    /* White background for the input area */
    padding: 2px;
    max-width: 525px;
}

.form-input {
    flex-grow: 1;
    /* Takes up available space */
    border: none;
    /* No border for the input */
    outline: none;
    /* Removes the outline */
    padding: 5px 12px;
    /* Comfortable padding around text */
    font-size: 16px;
    /* Sufficiently large text for easy reading */
    border-radius: 22px;
    /* Slightly less than the container to fit well inside */
    background: #FFF;
    /* Ensures the background matches the container */
}

.input-button {
    background-color: #FAB928;
    /* Orange background, can be adjusted */
    color: white;
    /* White text */
    border: none;
    /* No border */
    padding: 4px 12px;
    /* Matching padding with the input */
    font-size: 16px;
    /* Consistent font size with input */
    cursor: pointer;
    /* Pointer to indicate clickability */
    border-radius: 22px;
    /* Rounded right corners to maintain the style */
}

.input-button:hover {
    background-color: #cc8400;
    /* Darker orange on hover for visual feedback */

}


.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



/* Media query for mobile devices (devices with widths up to 767px) */
@media (max-width: 767px) {
    .carousel-wrap {
        margin: 50px auto;
    }

    section.lp-hero .carousel-item {
        height: 200px; 
      }


    #table-whats-the-cost thead tr th:nth-of-type(2),
    #table-whats-the-cost thead tr th:nth-of-type(4),
    #table-whats-the-cost thead tr th:nth-of-type(5) {
        display: none;
    }

    #table-whats-the-cost tr td:nth-of-type(2),
    #table-whats-the-cost tr td:nth-of-type(4),
    #table-whats-the-cost tr td:nth-of-type(5) {
        display: none;
    }


    .table-why-choose-us__table thead tr th:nth-of-type(3) {
        display: none;
    }

    .table-why-choose-us__table tr td:nth-of-type(3),
    .table-why-choose-us__table tr td:nth-of-type(4) {
        display: none;
    }

    .lp-hero__input-wrapper {
        background-color: transparent;
        flex-direction: column;
    }

    .input-button {
        margin-top: 5px;
        padding: 8px 12px;
        display: block;
    }

    .form-input {
        padding: 8px 12px;
    }

    .lp-mobile-cta {
        display: block;
        position: fixed;
        bottom: 75px;
        /* Distance from the bottom of the viewport */
        right: 50%;
        /* Set right to 50% to center it horizontally */
        transform: translateX(50%);
        /* Adjust translation to center from the middle */

        box-shadow: 0px 0px 150px 70px rgba(0, 0, 0, 0.6);
        /* Enhances and slightly softens the shadow */
        background-color: #6AC456;
        color: white;
        text-decoration: none;
        z-index: 9999;
        font-size: 18px;
        padding: 6px 12px;
        border: solid 1px #6AC456;
        border-radius: 4px;
    }

    .lp-mobile-cta:hover {
        cursor: pointer;
        text-decoration: none;
        color: white;
        box-shadow: 0px 0px 121px 56px rgba(0, 0, 0, 2);
    }

    .lp-mobile-cta svg {
        filter: brightness(0) invert(1);
    }
}

.why-choose-us {
    padding-top: 40px;
    padding-bottom: 20px;
}

.why-choose-us svg {
    vertical-align: top;
}

.why-choose-us-intro {
    font-size: 20px;
    font-weight: 400;
    color: #1F1F1F;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
    max-width: 800px;
}

.why-choose-us h2 {
    font-size: clamp(56px, 4vw, 80px);
    font-family: "badgrudge";
    font-weight: 400;
    line-height: 64px;
}


.why-choose-us-points {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 25px;
    display: inline-block;
}





.who-we-are {
    padding-top: 40px;
    padding-bottom: 80px;
}

.steps-heading {
    font-size: clamp(48px, 4vw, 64px);
    font-family: "badgrudge";
    font-weight: 400;
    line-height: .8;
}


.quote-steps {
    padding-top: 20px;
    padding-bottom: 40px;
}

.quote-steps p {
    font-size: clamp(22px, 3vw, 24px);
    margin-bottom: 40px;
    color: #1F1F1F;
}


.youtube-frame {
    border-radius: 20px;
    /* Adjust as needed */
    margin: auto;
    text-align: center;
}

#reviews-block {
    padding-bottom: 80px !important;
}

#lbic {
    padding-top: 40px;
    padding-bottom: 40px;
}

#table-why-choose-us {
    padding-top: 40px;
    padding-bottom: 40px;
}

.lp-footer {
    padding: 80px 0;
}

.footer-cta-wrap {
    max-width: 600px;
    margin: auto;
    background-color: #0A7081;
    color: white !important;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.footer-cta-wrap h3 {
    font-size: clamp(42px, 3.5vw, 56px);
    font-family: "badgrudge";
}

.lp-footer-cta {
    font-size: 16px;
    background-color: #6AC456;
    padding: 6px 12px;
    color: white !important;
    border-radius: 4px;
}

.lp-footer-cta:hover {
    text-decoration: none;
    background-color: #307620;;
}

.lp-footer-cta svg {
    filter: brightness(0) invert(1);
}

.lp-footer h3 {
    font-size: clamp(54px, 4vw, 64px);
    font-family: "badgrudge";
    color: white;
    text-align: center;
    margin-bottom: 15px;
    line-height: 0.8;
}

.footer-cta-wrap h4 {
    font-size: 64px;
    font-family: "badgrudge";
    color: white;
    text-align: center;
    margin-bottom: 15px;
    line-height: 0.8;
}

.lp-footer h3 span {
    color: #FCC825;
}

.lp-footer p {
    margin: 20px 0;
}

.lp-footer div.text-center img.img-fluid {
    border-radius: 8px;
}