:root {
    /* Primary text & backgrounds */
    --color-text-base: #000000;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Brand / accents */
    --color-primary: #FFC300;
    --color-secondary: #000000;
    --color-tertiary: #132A4A;

    /* Links & buttons */
    --color-link: #434343;
    --color-link-hover: #434343;

    /* Alerts & highlights */
    --color-error: #FF0000;
    --color-warning: #FFC21F;

    /* Grays & borders */
    --color-gray-light: #D6D6D6;
    --color-gray-top-border: #E3E3E3;

    /* Background tints */
    --color-bg-light-blue: #F3F4FF;

    /* Specialty text */
    --color-info-text: #223755;
    --color-service-info-text: #5c5c5c;

}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    color: var(--color-text-base);
    line-height: 20px;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 14px;
}

/* Global Variables */

/* Text colors Global Color  */

.calltext,
.callnumber,
.callnumber a {
    color: var(--color-white);
}

h1 {
    color: var(--color-white);
}

h3 {
    color: var(--color-secondary);
}

/*  Service Section */
h5 {
    color: var(--color-text-base);
}

/* Header Background color  */
.landing_page_header.sticky {
    background-color: var(--color-secondary);
    border-bottom: 4px solid var(--color-primary);
}

/* ------------------------------------------------------------ */
/* Banner Color Properties */
.herobanner-wrapper .toplabel {
    color: var(--color-white);
}

.herobanner-wrapper .topcontent_bar,
.midcontentbar,
.bottomcontent {
    color: var(--color-white);
}

/* Banner Button */
.submitbtn .btn {
    color: var(--color-white);
    background: var(--color-primary);
}

/* ------------------------------------------------------------ */
/* Whu Choose Section Color Properties */
.why-choose-section .contentbox h4 {
    color: var(--color-text-base);
}

.why-choose-section .contentbox h4 span {
    color: var(--color-primary);
}

.why-choose-section .contentbox ul li {
    color: var(--color-text-base);
}

.why-choose-section .contentbox ul li::before {
    font-family: "Font Awesome 6 Pro";
    color: var(--color-primary);
}

/* Why Chooose Secion. Services Section Button Color properties */
.call-btn {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.call-btn:hover {
    color: var(--color-secondary);
}

/* ------------------------------------------------------------ */
/* Our Services , About Us , Testimonail Section , Work Gallery Color Properties  */

.top-mid-title .toplabel {
    color: var(--color-tertiary);
}

.top-mid-title h4 {
    color: var(--color-secondary);
}

.top-mid-title p {
    color: var(--color-tertiary);
}

/* ------------------------------------------------------------ */

/* Testimonial / Review Section  Color Properties */
.client-review-wrapper {
    background-color: var(--color-bg-light-blue);
}

.review-slide-wrapper .inner-slide .userinfo {
    border-top: 1px solid var(--color-gray-top-border);
}

.review-slide-wrapper .inner-slide .userinfo h4 {
    color: var(--color-tertiary);
}

/* ------------------------------------------------------------ */
/* Start Rating Icon */
.review-slide-wrapper .inner-slide .ratingbar ul li {
    color: var(--color-warning);
}

.review-slide-wrapper .inner-slide .reviews p {
    color: var(--color-tertiary);
}

/* ------------------------------------------------------------ */
/* Gallery Section Color Properties  */
.gallery-list-wrapper .gallery-images a .hover-content span.hover-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-list-wrapper .gallery-images a .hover-content span.hover-icon::before {
    font-family: "Font Awesome 6 Free";
    color: var(--color-white);
}

/* ------------------------------------------------------------ */
/* Bottom Form Color Properties */
.bottom-section-wrapper {
    background-color: var(--color-secondary);
    border-top: 10px solid var(--color-primary);
}

.bottom-section-wrapper .contentbox .toplabel {
    color: var(--color-white);

}

.bottom-section-wrapper .contentbox h4 {
    color: var(--color-white);
}

.bottom-section-wrapper .contentbox p {
    color: var(--color-white);
}

.bottom-section-wrapper .form-wrapper .formbox form label {
    color: var(--color-white);
}

.bottom-section-wrapper .form-wrapper .formbox form label span {
    color: var(--color-error);
}

.bottom-section-wrapper .form-wrapper .formbox form .form-control {
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
}

/* Submit button */
.bottom-section-wrapper .form-wrapper .formbox form .submitbtn .btn {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ------------------------------------------------------------ */
/* FOOTER SECTION COLOR PROPERTIES */
.landing-copyright {
    background-color: var(--color-text-base);
}

.landing-copyright h4 {
    color: var(--color-white);
    font-family: "Rubik";
}

.landing-copyright p,
.landing-copyright a {
    color: var(--color-white);
}

/* ------------------------------------------------------------ */
/* END OF GLOBAL PROPERTIES */



/*reusable classes*/
.hide-scroll,
.animatedParent {
    overflow: hidden;
}

a {
    color: var(--color-link);
    text-decoration: none;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--color-link-hover);
}

img {
    max-width: 100%;
}

/*-- scroll to top --*/
.scrollToTop {
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9999;
    right: 10px;
    bottom: 40px;
    color: var(--color-white);
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 100%;
    border: 2px solid var(--color-primary);
    padding: 3px;
    display: none;
}

.scrollToTop:hover {
    text-decoration: none;
}

.scrollToTop i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 100%;
    line-height: 170%;
    font-size: 18px;
    color: var(--color-white);
}

/*-- scroll to top end --*/


/*-- Header Start --*/
.landing_page_header {
    position: fixed;
    background-color: transparent;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.landing_page_header.sticky {
    /* background-color: var(--color-secondary); */
    position: fixed;
    z-index: 11;
    /* border-bottom: 4px solid var(--color-primary); */
}

.landing_page_header .logo {
    padding: 10px 0px;
}

.landing_page_header .logo img {
    max-height: 75px;
    width: auto;
}

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

.landing_page_header .topcallbtn .btn-content {
    display: inline-block;
    position: relative;
}

.landing_page_header .topcallbtn .calltext {
    font-size: 18px;
    color: var(--color-white);
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--color-primary);
    font-weight: 600;
    padding: 5px 10px;
    display: inline-block;
}

.landing_page_header .topcallbtn .callnumber {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    display: inline-block;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: normal;
}

.landing_page_header .topcallbtn .callnumber a {
    color: var(--color-white);
    text-decoration: none;
}

.herobanner-wrapper {
    position: relative;
    padding-top: 150px;
    padding-bottom: 40px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.herobanner-wrapper .imagebox-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
}

.herobanner-wrapper .imagebox-wrapper img {
    height: 100%;
    object-fit: cover;
    object-position: top left;
    width: 100%;
    opacity: 0.3;
}

.herobanner-wrapper .inner-section .banner-content {
    margin-top: 30px;
}

.herobanner-wrapper .inner-section .banner-content .toplabel {
    font-size: 28px;
    /* color: var(--color-white); */
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.herobanner-wrapper .inner-section .banner-content h1 {
    font-size: 50px;
    /* color: var(--color-white); */
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.herobanner-wrapper .inner-section .banner-content p {
    font-size: 40px;
    /* color:var(--color-white); */
    margin-bottom: 30px;
    line-height: 1.3em;
    font-weight: 600;
}

.btn-box {
    background-color: transparent;
    display: inline-block;
    position: relative;
    border: 4px solid var(--color-white);
    border-radius: 8px;
}

.btn-box .calltext {
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--color-secondary);
    padding: 6px 10px;
    line-height: 1.2em;
    font-weight: 800;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.btn-box .callnumber {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    display: block;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2em;
    background-color: var(--color-primary);
    padding: 10px 15px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-box .callnumber a {
    color: var(--color-white);
    text-decoration: none;
}

.btn-box .callnumber a:hover {
    color: var(--color-secondary);
}

.btn-box:hover {
    background-color: var(--color-black);
}

.herobanner-wrapper .inner-section .form-wrapper {
    background-color: var(--color-white);
    box-shadow: -107px 164px 55px 0px rgba(0, 0, 0, 0.00), -68px 105px 50px 0px rgba(0, 0, 0, 0.01), -38px 59px 42px 0px rgba(0, 0, 0, 0.05), -17px 26px 31px 0px rgba(0, 0, 0, 0.09), -4px 7px 17px 0px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.herobanner-wrapper .inner-section .form-wrapper .form-head {
    position: relative;
    padding: 10px 15px;
    background-color: var(--color-secondary);
    border-top: 5px solid var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}

.herobanner-wrapper .inner-section .form-wrapper .bottomcontent {
    /* color:var(--color-white); */
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    line-height: 1.2em;
    padding-bottom: 20px;
}

.herobanner-wrapper .inner-section .form-wrapper .topcontent_bar {
    /* color: var(--color-white); */
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
}

.herobanner-wrapper .inner-section .form-wrapper .midcontentbar {
    color: var(--color-white);
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 5px 0px;
}

.herobanner-wrapper .inner-section .form-wrapper .midcontentbar span {
    color: var(--color-white);
}

.herobanner-wrapper .inner-section .form-wrapper .formbox {
    padding: 25px 20px;
}

.herobanner-wrapper .inner-section .form-wrapper .formbox form label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-tertiary);
    text-transform: uppercase;
}

.herobanner-wrapper .inner-section .form-wrapper .formbox form label span {
    color: var(--color-error);
}

.herobanner-wrapper .inner-section .form-wrapper .formbox form .form-control,
.herobanner-wrapper .inner-section .form-wrapper .formbox form .form-select {
    font-size: 16px;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 5px;
    box-shadow: none;
    padding: 10px 15px;
}

.herobanner-wrapper .inner-section .form-wrapper .formbox form .submitbtn {
    margin-bottom: 10px;
}

.herobanner-wrapper .inner-section .form-wrapper .formbox form .submitbtn .btn {
    /* background-color: var(--color-link);
    color: var(--color-white); */
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: 10px 20px;
    border-radius: 100px;
    /* background: var(--color-primary); */
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -3px 0px 0px rgba(10, 13, 18, 0.15) inset, 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.herobanner-wrapper .inner-section .form-wrapper .formbox .form-text {
    font-size: 12px;
    color: var(--color-info-text);
    font-weight: 500;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.2em;
}

.herobanner-wrapper .inner-section .truckimage-desktop {
    height: 250px;
    margin-top: 30px;
    margin-bottom: -50px;
}

.herobanner-wrapper .inner-section .truckimage-desktop img {
    width: 100%;
    height: auto;
}

.herobanner-wrapper .inner-section {
    position: relative;
}

.why-choose-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--color-bg-light-blue);
}

.why-choose-section .imgbox img {
    width: 100%;
}

.why-choose-section .contentbox {
    margin: 15px 10px;
}

.why-choose-section .contentbox .toplabel {
    font-size: 20px;
    color: var(--color-tertiary);
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.why-choose-section .contentbox h3 {
    font-size: 54px;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.why-choose-section .contentbox h4 {
    font-size: 34px;
    /* color: var(--color-text-base); */
    line-height: 1.3em;
    margin-bottom: 25px;
    font-weight: 600;
}

.why-choose-section .contentbox h4 span {
    /* color: var(--color-primary); */
    font-weight: 700;
}

.why-choose-section .contentbox ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 30px;
}

.why-choose-section .contentbox ul li {
    font-size: 24px;
    line-height: 1.2em;
    /* color: var(--color-text-base); */
    position: relative;
    margin-left: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-section .contentbox ul li::before {
    position: absolute;
    content: "\f336";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    /* color: var(--color-primary); */
    font-size: 20px;
    top: 0;
    left: -30px;
}

.call-btn {
    font-size: 20px;
    /* color: var(--color-white); */
    font-weight: 700;
    /* background-color: var(--color-primary); */
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -3px 0px 0px rgba(10, 13, 18, 0.15) inset, 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    padding: 15px 25px;
    border-radius: 100px;
    text-transform: uppercase;
    line-height: 1.2em;
    display: inline-block;
    text-align: center;
}

.call-btn:hover {
    color: var(--color-secondary);
}

.why-choose-section.advantages-section .contentbox h3 {
    font-size: 54px;
    margin-bottom: 20px;
}

.why-choose-section.advantages-section .contentbox h4 {
    font-size: 24px;
    font-weight: 600;
    /* color: var(--color-tertiary); */
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* .why-choose-section.advantages-section {
    background-color: var(--color-white);
} */

.our-service-wrapper {
    position: relative;
    padding-top: 60px;
    padding-bottom: 10px;
}

.top-mid-title {
    text-align: center;
    margin-bottom: 40px;
}

.top-mid-title .toplabel {
    font-size: 18px;
    /* color: var(--color-tertiary); */
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.top-mid-title h4 {
    font-size: 44px;
    /* color: var(--color-secondary); */
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 5px;
}

.top-mid-title p {
    font-size: 18px;
    /* color: var(--color-tertiary); */
    line-height: 1.3em;
    margin-bottom: 0px;
    font-weight: 500;
}

.service-section .col-lg-5 {
    margin: 15px 0px;
}

.service-section .innerbox {
    position: relative;
    height: 100%;
    text-align: left;
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid var(--color-secondary);
}

.service-section .innerbox img {
    width: 70px;
    margin-bottom: 10px;
}

.service-section .innerbox h5 {
    font-size: 24px;
    /* color:  var(--color-text-base); */
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 10px;
}

.service-section .innerbox p {
    font-size: 18px;
    /* color:  var(--color-service-info-text); */
    line-height: 1.3em;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-section .innerbox .call-btn {
    font-size: 16px;
    /* color:  var(--color-white);
    background-color:  var(--color-primary); */
    display: inline-block;
    padding: 15px 35px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: auto;
}

.service-section .innerbox .call-btn:hover {
    color: var(--color-secondary);
}

/*-- Gallery --*/
.gallery-list-wrapper {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.gallery-list-wrapper .mtb15 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.gallery-list-wrapper .gallery-images {
    height: 280px;
}

.gallery-list-wrapper .gallery-images a {
    display: block;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-list-wrapper .gallery-images a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.gallery-list-wrapper .gallery-images a .hover-content {
    position: absolute;
    text-align: center;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gallery-list-wrapper .gallery-images a .hover-content span.hover-icon {
    text-align: center;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 45px;
    border-radius: 50%;
    opacity: 0;
}

.gallery-list-wrapper .gallery-images a .hover-content span.hover-icon::before {
    content: "\f067";
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.gallery-list-wrapper .gallery-images a:hover .hover-content span.hover-icon {
    opacity: 1;
}

.gallery-list-wrapper .gallery-images a:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.client-review-wrapper {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    /* background-color:  var(--color-bg-light-blue); */
}

.client-review-wrapper .top-mid-title .toplabel {
    text-align: left;
}

.client-review-wrapper .top-mid-title h4 {
    text-align: left;
}

.client-review-wrapper .rating-main {
    text-align: right;
    height: 75px;
    overflow: hidden;
}

.client-review-wrapper .rating-main img {
    height: 100%;
}

.review-slide-wrapper .col-lg-4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.review-slide-wrapper .inner-slide {
    position: relative;
    height: 100%;
}

.review-slide-wrapper .inner-slide .userinfo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    /* border-top: 1px solid var(--color-gray-top-border); */
    padding-top: 15px;
}

.review-slide-wrapper .inner-slide .userinfo img {
    width: 35px;
}

.review-slide-wrapper .inner-slide .userinfo h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.review-slide-wrapper .inner-slide .ratingbar {
    margin-bottom: 15px;
    margin-top: 15px;
}

.review-slide-wrapper .inner-slide .ratingbar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-slide-wrapper .inner-slide .ratingbar ul li {
    font-size: 18px;
}

.review-slide-wrapper .inner-slide .reviews p {
    font-size: 18px;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.review-slide-wrapper .inner-slide img.quote {
    position: absolute;
    right: 1px;
    top: -20px;
    max-width: 35px;
}

.bottom-section-wrapper {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.bottom-section-wrapper .contentbox {
    max-width: 600px;
}

.bottom-section-wrapper .contentbox .toplabel {
    font-size: 24px;
    /* color: var(--color-white); */
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.bottom-section-wrapper .contentbox h4 {
    font-size: 44px;
    /* color: var(--color-white); */
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.bottom-section-wrapper .contentbox p {
    font-size: 18px;
    /* color: var(--color-white); */
    line-height: 1.3em;
    margin-bottom: 20px;
    font-weight: 500;
}

.bottom-section-wrapper .contentbox .btn-box {
    margin-top: 20px;
}

.bottom-section-wrapper .form-wrapper .formbox form label {
    font-size: 16px;
    font-weight: 500;
    /* color: var(--color-white); */
    text-transform: uppercase;
}

.bottom-section-wrapper .form-wrapper .formbox form .form-control {
    font-size: 16px;
    /* background-color: var(--color-white); */
    /* border: 2px solid var(--color-white); */
    border-radius: 5px;
    box-shadow: none;
    padding: 10px 15px;
}

.bottom-section-wrapper .form-wrapper .formbox form .submitbtn .btn {
    /* background-color: var(--color-primary); */
    /* color: var(--color-white); */
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: 10px 20px;
    border-radius: 100px;
}

.landing-copyright {
    padding: 30px 0px;
}

.landing-copyright .row {
    align-items: end;
}

.landing-copyright .footerlogo {
    height: 75px;
    margin-bottom: 10px;
    overflow: hidden;
}

.landing-copyright .footerlogo img {
    height: 100%;
}

.landing-copyright h4 {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.landing-copyright p,
.landing-copyright a {
    font-size: 17px;
    margin: 0px;
}

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

/*-- Offer Section --*/
.offer-section-wrapper {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.offer-section-wrapper .inner-box {
    position: relative;
    height: 100%;
    background-color: #f3f4ff;
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px dashed #000000;
    text-align: center;
}
.offer-section-wrapper .inner-box h5 {
    font-size: 34px;
    color: #000000;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.offer-section-wrapper .inner-box p {
    font-size: 24px;
    color: #000000;
    line-height: 1.3em;
    margin-bottom: 20px;
    font-weight: 500;
}

/*-- swiper slider --*/
#tb-img-slider {display: block;position: relative;margin-top: 50px;}
.img-fluid {max-width: 100%;height: auto;}
.tb-img-slider .swiper{width: 100%;overflow: hidden;}
.tb-img-slider .swiper .swiper-slide {width: auto;}
.tb-img-slider .swiper-wrapper {height: auto;}
.tb-img-slider .swiper-pagination {margin-top: 20px;position: relative;}
.tb-img-slider .swiper-pagination .swiper-pagination-bullet {width: 12px;height: 12px;background-color: color-mix(in srgb, var(--default-color), transparent 85%);opacity: 1;}
.tb-img-slider .swiper-pagination .swiper-pagination-bullet-active {background-color: var(--accent-color);}

.herobanner-wrapper .inner-section {position: static;}
.herobanner-wrapper .inner-section .col-lg-6 {position: static;}
.herobanner-wrapper .inner-section #tb-img-slider {position: static;}
.herobanner-wrapper .inner-section #tb-img-slider .container-fluid {position: absolute;left: 0;right: 0;padding: 0px;}
.tb-img-slider .swiper .swiper-button-prev::after, .tb-img-slider .swiper .swiper-button-next::after {color: #ffc300;}
/*.tb-img-slider .swiper .swiper-slide {border: 10px solid #ffffff;border-radius: 10px;overflow: hidden;}*/

@media (min-width: 768px) {
    .landing_page_header .topcallbtn .btn-content.mobile {
        display: none;
    }
}

@media (min-width: 991px) {
    .herobanner-wrapper.thankyou-banner {
        height: 100vh;
    }

    .herobanner-wrapper.thankyou-banner .inner-section .banner-content {
        text-align: center;
        padding-top: 100px;
    }

    .herobanner-wrapper .inner-section .truckimage-mobile {
        display: none;
    }

    .landing_page_header .topcallbtn {
        padding: 20px 0px;
    }
}

@media (max-width: 1200px) {
    .gallery-list-wrapper .gallery-images {
        height: 200px;
    }

    .landing_page_header .topcallbtn .callnumber {
        font-size: 40px;
    }

    .btn-box .callnumber {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .herobanner-wrapper .inner-section .banner-content {
        margin-bottom: 40px;
        text-align: center;
    }

    .bottom-section-wrapper .contentbox {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .why-choose-section .contentbox {
        margin-bottom: 30px;
    }

    .herobanner-wrapper .inner-section .truckimage-desktop {
        display: none;
    }

    .btn-box .callnumber {
        font-size: 44px;
    }

    .herobanner-wrapper .inner-section .tb-img-slider {
        display: block !important;
        margin-top: 0px !important;
        margin-bottom: 20px;
    }
    .herobanner-wrapper .inner-section {position: static;}
    .herobanner-wrapper .inner-section .col-lg-6 {position: static;}
    .herobanner-wrapper .inner-section #tb-img-slider {position: static;}
    .herobanner-wrapper .inner-section #tb-img-slider .container-fluid {position: absolute;left: 0;right: 0;padding: 0px;}
}

@media (max-width: 767px) {
    .landing_page_header.sticky {
        border-bottom: 0px;
    }

    .landing_page_header .container {
        max-width: 100%;
        padding: 0px;
    }

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

    .landing_page_header .topcallbtn {
        text-align: center;
        background-color: var(--color-primary);
        padding: 5px 15px;
    }

    .landing_page_header .topcallbtn .btn-content.desktop {
        display: none;
    }

    .landing_page_header .topcallbtn .calltext {
        display: none;
    }

    .landing_page_header .topcallbtn .btn-content {
        display: block;
        width: 100%;
    }

    .herobanner-wrapper {
        padding-top: 180px;
        padding-bottom: 10px;
    }

    .herobanner-wrapper .inner-section .banner-content h1 {
        font-size: 44px;
    }

    .landing-copyright p,
    .landing-copyright p.text-right {
        text-align: center;
    }

    .landing-copyright p {
        margin-bottom: 5px;
    }

    .landing-copyright .footerlogo {
        text-align: center;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext {
        font-size: 30px;
        line-height: 30px;
        font-weight: 700;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext span {
        display: block;
        font-size: 34px;
        line-height: 34px;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 50px;
    }

    .landing_page_header {
        background-color: var(--color-secondary);
    }

    .btn-box .callnumber {
        font-size: 30px;
    }

    .client-review-wrapper .col-md-2 {
        display: none;
    }
}

@media(max-width: 576px) {
    .landing_page_header .topcallbtn .calltext {
        font-size: 16px;
    }

    .landing_page_header .topcallbtn .callnumber {
        font-size: 22px;
    }

    .herobanner-wrapper .inner-section .banner-content h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .herobanner-wrapper .inner-section .banner-content p {
        font-size: 18px;
    }

    .btn-box .calltext {
        font-size: 18px;
    }

    .btn-box .callnumber {
        font-size: 30px;
    }

    .herobanner-wrapper .inner-section .form-wrapper .formbox form .submitbtn .btn {
        font-size: 16px;
    }

    .why-choose-section .contentbox h3,
    .top-mid-title h4,
    .why-choose-section.advantages-section .contentbox h3 {
        font-size: 44px;
        line-height: 1.2em;
        margin-bottom: 10px;
    }

    .background-wrapper-section .content-wrap h4 {
        font-size: 34px;
    }

    .background-wrapper-section .content-wrap p {
        font-size: 18px;
    }

    .landing_page_header .logo img {
        max-height: 70px;
    }

    .herobanner-wrapper {
        padding-top: 170px;
    }

    .herobanner-wrapper .inner-section .banner-content .toplabel {
        font-size: 24px;
    }

    .herobanner-wrapper .inner-section .form-wrapper .topcontent_bar {
        font-size: 20px;
    }

    .herobanner-wrapper .inner-section .form-wrapper .midcontentbar {
        font-size: 34px;
    }

    .service-section .innerbox .call-btn {
        width: 100%;
    }

    .bottom-section-wrapper .contentbox .toplabel {
        font-size: 20px;
    }

    .bottom-section-wrapper .contentbox h4 {
        font-size: 44px;
    }

    .bottom-section-wrapper {
        background-position: top right;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext {
        font-size: 24px;
        line-height: 24px;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext span {
        font-size: 30px;
        line-height: 30px;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 42px;
        line-height: 42px;
    }

}

@media(max-width: 480px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext {
        font-size: 16px;
        line-height: 16px;
    }

    .landing_page_header .topcallbtn .btn-content.mobile .callnumber .mobiletext span {
        font-size: 20px;
        line-height: 20px;
    }

    .landing_page_header .logo img {
        max-height: 60px;
    }

    .herobanner-wrapper {
        padding-top: 120px;
    }

    .herobanner-wrapper .inner-section .banner-content .toplabel {
        font-size: 22px;
    }

    .herobanner-wrapper .inner-section .banner-content h1 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 30px;
    }

    .btn-box .calltext {
        font-size: 16px;
    }

    .btn-box .callnumber {
        font-size: 23px;
    }

    .herobanner-wrapper .inner-section .form-wrapper .midcontentbar {
        font-size: 26px;
    }

    .herobanner-wrapper .inner-section .form-wrapper .topcontent_bar {
        font-size: 18px;
    }

    .why-choose-section .contentbox h3,
    .top-mid-title h4,
    .why-choose-section.advantages-section .contentbox h3 {
        font-size: 40px;
    }

    .why-choose-section .contentbox h4 {
        font-size: 28px;
    }

    .our-service-wrapper .top-mid-title h4 {
        font-size: 30px;
    }

    .our-service-wrapper .top-mid-title {
        margin-bottom: 15px;
    }

    .why-choose-section.advantages-section {
        padding-top: 30px;
    }

    .client-review-wrapper .top-mid-title .toplabel {
        font-size: 14px;
    }

    .client-review-wrapper .top-mid-title h4 {
        font-size: 32px;
    }

    .bottom-section-wrapper .contentbox .toplabel {
        font-size: 18px;
    }

    .bottom-section-wrapper .contentbox h4 {
        font-size: 34px;
    }
}

@media (max-width: 435px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 40px;
        line-height: normal;
    }
}

@media (max-width: 420px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 36px;
        line-height: normal;
    }
}

@media (max-width: 390px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 35px;
        line-height: normal;
    }

    .landing_page_header .topcallbtn {
        padding: 5px 10px;
    }
}

@media (max-width: 370px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 32px;
        line-height: normal;
    }
}

@media (max-width: 350px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 30px;
        line-height: normal;
    }
}

@media (max-width: 335px) {
    .landing_page_header .topcallbtn .btn-content.mobile .callnumber a {
        font-size: 28px;
        line-height: normal;
    }
}