@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #046bd2;
    --darkBlue: #045cb4;
    --red: #ff0404;
    --textRed: #fa0000;
    --footerBody: #26245B;
    --Poppins: "Poppins", sans-serif;
    --Montserrat: "Montserrat", sans-serif;
    --Roboto: "Roboto", sans-serif;
    --Inter: "Inter", sans-serif;
    --Hheebo: "Heebo", sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Hheebo);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h1,
.h1-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25em;
    color: var(--white);
}

h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1666em;
    color: var(--black);
    text-transform: capitalize;
}

p {
    font-weight: 400;
    padding: 0;
    line-height: 1em;
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none !important;
    color: inherit;
    transition: all .3s ease-in-out;
}

.p-70 {
    padding: 70px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.btn {
    transition: 0.5s;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 50px;
}

.btn-primary {
    background: var(--orange);
    border: none;
    padding: 14px 25px;
    font-size: 17px;
    line-height: 1em;
    font-weight: 600;
    border-radius: 14px;
    color: var(--white);
    border: 1px solid #E2E2E2;
    box-shadow: 0px 4px 44px 0px #0000001A;
    transition: all .3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--white);
    color: var(--grey);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-primary span i {
    transform: rotate(330deg);
    margin-left: 5px;
}


.btn-white {
    background-color: var(--white);
    color: var(--grey);
}

.btn-white:hover,
.btn-white:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-view {
    border: 1px solid #D9AF7F;
    color: #ffffff;
    position: relative;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
    z-index: 1;
}

.btn-view:hover {
    background-color: #D9AF7F;
}

.btn-view::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid #D9AF7F;
    z-index: -1;
    transition: 0.5s;
}

.btn-view:hover::after {
    opacity: 0;
}

.text-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.container,
.container-fluid {
    max-width: 100%;
    padding: 0 20px;
    position: relative;
}

/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu {
    margin: 0 auto;
    padding: 5px 0px;
}

.menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    position: relative;
    vertical-align: middle;
}

.menu ul li.active {
    position: relative;
}

.menu ul li.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    max-width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* background-image: url(../images/menu-active-shape.svg); */
}

.menu ul li span {
    position: absolute;
    top: 14px;
    right: 0;
    display: none;
}

.menu ul li span::after {
    content: '\f107';
    color: #000000;
    font-family: FontAwesome;
    font-size: 10px;
}

.menu ul li:hover span::after {
    color: #f7c624;
}

.headarea.innerheader .menu ul li a {
    color: #000;
}

.menu ul li a {
    color: var(--white);
    font-size: 25px;
    line-height: 1em;
    text-transform: capitalize;
    font-weight: 600;
    display: block;
    padding: 4px 0px;
    margin: 0 25px;
    position: relative;

    &:hover {
        color: var(--blue);
    }
}

.menu ul li.active a {
    color: var(--blue);
}

.menu ul li a.menu-trigger i {
    font-weight: 400;
    font-size: 20px;
}

.menu ul li.active a::after,
.menu ul li:hover a::after {
    width: 100%;
}

.menu ul li.active a::after {
    width: 100%;
}

.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}

.menu ul li a .arrow-icon {
    display: inline-block;
    font-size: 10px;
    margin-left: 5px;
}

.menu ul li ul {
    width: max-content;
    min-width: 200px;
    position: absolute;
    top: calc(100% + 30px);
    left: -1em;
    z-index: 2;
    background-color: var(--white);
    padding: 8px 16px;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.menu ul ul li:first-child:before {
    display: none;
}

.menu ul ul li:after {
    display: none;
}

.menu ul li:last-child ul {
    width: 270px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 5px 14px rgb(0 0 0 / 2%);
    text-align: left;
    padding-bottom: 25px;
}

.menu ul li ul li a {
    font-size: 16px;
    text-transform: none;
    padding: 7px 0;
    color: var(--black);
    line-height: 1.3em;
    font-weight: 600;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
    border-radius: 0;
}

.menu ul li ul li ul {
    top: 10px;
    left: 149px;
}

.menu ul li ul li span {
    right: 7px;
    top: 12px;
}

.menu ul li a:hover.menu ul li ul {
    display: block;
}

.menu ul li ul li {
    display: block;
    padding: 0;
    border-bottom: solid 1px rgb(255 255 255 / 7%);
    border-right: none;
}

.menu ul li ul li:last-child {
    border: none;
}

.sub-menu li a::after {
    height: 0 !important;
}

.menuButton {
    width: 37px;
    height: 30px;
    padding: 5px;
    float: right;
    display: none;
}

.menuButton span {
    width: 100%;
    height: 2px;
    background: var(--blue);
    margin-bottom: 6px;
    float: left;
    transition: all 0.3s ease-in-out 0s;
}

.page-header.fixed .menuButton span {
    background: var(--black);
}

.menuButton span:last-child {
    margin-bottom: 0;
}

@media (min-width:991.98px) {
    .menu ul {
        display: block !important;
    }

    .menu ul li:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width:991.98px) {
    .menuButton {
        display: block;
        margin-left: 15px;
        cursor: pointer;
    }

    .menu ul li span {
        background: url(../images/menu_arrow.png) center center no-repeat;
        cursor: pointer;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 99;
    }

    .menu ul li:hover span {
        background: url(../images/menu_arrow_hover.png) center center no-repeat;
    }

    .arrow_change span:nth-child(2) {
        display: none;
    }

    .arrow_change span:first-child {
        position: relative;
        top: 9px;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .arrow_change span:last-child {
        position: relative;
        top: 1px;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .menuBar {
        padding: 15px 0;
    }

    .menu {
        padding: 5px 0;
    }

    .menu ul {
        display: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .menu ul li a {
        color: #071731;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .menu ul li ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
        padding: 0;
        visibility: initial;
        opacity: 1;
    }

    .menu ul li:last-child ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu ul li {
        display: block;
        padding: 10px 15px 10px 15px;
        border-bottom: 1px solid #cccccc54;
        text-align: left;
        position: relative;
    }

    .menu ul li:first-child {
        border-top: 1px solid #cccccc54;
    }

    .menu ul li span {
        position: absolute;
        right: 30px;
        z-index: 99;
        cursor: pointer;
        top: 12px;
        text-align: center;
    }

    .menu ul li ul li ul {
        top: 0;
        left: 0;
    }

    .menu ul li ul li a {
        font-size: 12px;
        text-transform: none;
        background-color: #e1e1e1;
        padding: 8px 12px;
        color: #000;
    }
}

/*-- menu stop --*/

/*-- header area start --*/
.page-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}

.header-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 91;
    padding: 10px 0px;
}

.header-body {
    padding: 5px 0;
}

.header-body .logo {
    width: 100%;
    max-width: fit-content;
}

.header-body .logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-body .logo img {
    width: 100%;
    object-fit: cover;
}

.header-menu {
    width: 100%;
    justify-content: end;
    margin-left: auto;
}

.contact-btn-wrap a,
.contact-btn-wrap button {
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    padding: 15px 30px;
    color: var(--white);
    background-color: var(--blue);

    &:hover {
        background-color: var(--darkBlue);
    }
}

.contact-btn-wrap button {
    border: 0;
}

.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

/*-- header area stop --*/

/* fixed-header-start */
.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999999999999;
    width: 100%;
}

.page-header.fixed {
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px #0000001F;
}

.page-header.fixed .menu ul li a {
    color: var(--black);
}

.page-header.fixed .menu ul li.active a {
    color: var(--blue);
}

/* fixed-header-start */

/* banner start */
.banner {
    width: 100%;
    height: 100%;
    position: relative;
    color: var(--white);
}

.banner-bg-video {
    width: 100%;
    height: 604px;
    overflow: hidden;
    position: relative;
}

.banner-bg-video>video {
    width: 100%;
    position: absolute;
    bottom: -40%;
}

.banner-content {
    padding-top: 120px;
}

.banner-content-outer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.54);
}

.banner-content h2 {
    font-size: 40px;
    color: var(--white);
    margin: 15px 0 30px;
}

.banner-content p {
    line-height: 1.5rem;
}

.banner-btn {
    margin: 45px 0 0;
}

.primary-button {
    padding: 10px 55px;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--Inter);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.42857143em;
    color: var(--white);

    &:hover {
        background-color: #db0000;
    }
}

/* banner end */


/* footer start */
.footer {
    background-color: var(--footerBody);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-img-box {
    margin-bottom: 22px;
}

.footer-text p {
    color: var(--white);
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.footer-social ul {
    display: flex;
    gap: 13px;
    padding: 14px 0 29px;
}

.footer-social ul li a {
    font-size: 15px;
    color: #fff;
}

.footer-social ul li a:hover,
.footer-list li a:hover {
    color: #ff0000;
}

.footer-bottom p a:hover {
    color: var(--footerBody);
}

.footer-heading {
    color: var(--white);
    font-family: var(--Inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}

.footer-list p,
.footer-list a {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.footer-list a {
    font-weight: 400;
    padding: 0 0 20px 0px;
    position: relative;
}

.footer-top-inner-row {
    --bs-gutter-y: 30px;
}

.get-in-touch li {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    padding-top: 25px;
    color: var(--white);
}

.get-in-touch li:first-child {
    padding: 0;
}

.footer-contact-cont {
    max-width: calc(100% - 14px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 15px;
}

.get-in-touch li i {
    font-size: 18px;
    padding-top: 5px;
    color: var(--white);
}

.footer-contact-cont a {
    font-size: 19px;
    line-height: 1.375rem;

    &:hover {
        color: #ff0000;
    }
}

.footer-text p {
    padding-bottom: 10px;
}

.get-in-touch li:nth-child(2) a {
    text-decoration: underline;
}

.footer-row {
    --bs-gutter-x: 60px;
}

.footer-bottom {
    border-top: 1px solid #EEEEEE1F;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    align-items: center;
    padding: 17px 0;
    color: var(--white);
}

.footer-box-gap {
    padding-left: 30px;
}

.footer-bottom {
    background-color: #C02428;
}

/* footer end */

/* Our Dirt Processing Services start */
.our-dirt-services {
    padding-top: 80px;
}

.title-text h2 {
    margin-bottom: 10px;
    text-align: center;
}

.title-text p {
    max-width: 1150px;
    line-height: 25px;
    letter-spacing: 0.15px;
    color: #1e293b;
    text-align: center;
    margin: 0 auto 30px;
}

.our-dirt-services-box p {
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #1e293b;
    text-align: center;
}

.our-dirt-services-box h3 {
    max-width: 332px;
    min-height: 65px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3em;
    color: #1e293b;
    margin: 20px auto;
    text-align: center;
}

.our-dirt-inner {
    text-align: center;
}

.our-dirt-inner img {
    width: 77px;
    height: 77px;
    object-fit: contain;
}

.our-dirt-services-box {
    height: 100%;
    padding: 20px 15px;
}

.our-dirt-services-box:hover {
    background-color: var(--white);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    border-right: 4px solid #1e293b;
}

/* Our Dirt Processing Services end */


/* 11-2-26 */
/* Contact Us start */
.title-bottom-img {
    text-align: center;
    padding: 0px 0 25px;
}

.get-form-sec h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 19px;
}

.get-form-box-wrapper label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.get-form-box-wrapper label span {
    color: var(--red);
}

.get-input-box input {
    width: 100%;
    height: 51px;
    background: #FFFFFF;
    color: var(--black);
    border-radius: 5px;
    padding: 10px 20px;
    padding-right: 46px;
    border: 1px solid #e1e1e1;
}

.get-input-box {
    margin-bottom: 14px;
}

.get-form-box {
    padding: 30px 20px 0;
}

.get-mesage-box textarea {
    width: 100%;
    height: 98px;
    background: var(--white);
    color: var(--black);
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    resize: none;
    padding: 20px;
}

.get-form-sec {
    padding: 25px 0;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box input {
    width: 20px;
    height: 20px;
}

.contact-box label {
    margin: 0;
    font-weight: 400;
}

.map,
.map iframe {
    width: 100%;
    height: 100%;
}

.get-btn-box {
    margin-top: 30px;
}

.message-section {
    padding: 80px 0;
}

/* Contact Us end */
.contact-us {
    padding: 50px 0 80px;
}

.contact-title p {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-title h2 {
    text-transform: capitalize;
}

.contact-box-inner {
    width: 33.33%;
    padding: 35px 15px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    background: #FAFAFA;
    box-shadow: 0px 4px 11px 0px #00000008;
    transition: all .4s ease-in-out;
}

.contact-box-inner i {
    color: #046BD2;
    font-size: 50px;
    padding-bottom: 15px;
    transition: all .4s ease-in-out;
}

.contact-box-inner a,
.Phone-box p {
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 15px;
}

.contact-box-inner p {
    font-size: 17px;
}

.Phone-box a {
    font-size: 17px;
    font-weight: 400;
    padding: 0;
}

.contact-box-inner-box {
    padding: 30px 0 0;
    display: flex;
    gap: 30px;
}

.contact-box-inner:hover {
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px #00000017;
}

.contact-box-inner:hover i {
    color: var(--red);
}

.work-title p {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 18px;
}

.work-gallery {
    padding: 80px 0;
}

.help-companies-tab-body-box a {
    width: 100%;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.help-companies-tab-body-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.work-title {
    margin-bottom: 30px;
}

.client-satisfaction {
    background-image: url(../images/white-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.client-box {
    height: 100%;
    background-color: var(--white);
    padding: 40px 30px 50px;
    border-bottom: 8px solid var(--white);
    transition: all .4s ease-in-out;
    justify-content: space-between;
}

.client-box:hover {
    border-bottom: 8px solid #046BD2;
}

.client-box>p {
    max-width: 268px;
    color: #7A7A7A;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
    padding-bottom: 23px;
}

.client-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #2e396f;
    padding-bottom: 10px;
}

.client-info p {
    color: #7A7A7A;
    font-size: 15px;
}

.client-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.client-info {
    text-align: start;
}

.client-box-inner .row {
    --bs-gutter-y: 24px;
}

/* header */
.menu ul li a {
    font-size: 20px;
    color: var(--black);
}

.page-header.fixed .menu ul li a:hover {
    color: var(--blue);
}

.page-header {
    position: relative;
}

.menu ul li a.menu-trigger i {
    font-size: 18px;
}

/* header */
/* why-choose-us start */
.why-choose-us-sec {
    margin: 100px 0 50px;
}

.why-choose-us-row,
.home-about-row {
    align-items: center;
    justify-content: center;
}

.why-choose-us-text-box,
.why-choose-us-img-box {
    height: 100%;
}

.why-choose-us-text-box h2 {
    margin-bottom: 20px;
}

.why-choose-us-text-box>p {
    font-size: 18px;
    line-height: 1.4em;
}

.why-choose-us-text-box .arrow-list-ul {
    margin: 30px 0 25px;
}

.arrow-list-ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arrow-list-ul li {
    display: flex;
    align-items: center;
}

.arrow-icon-box {
    width: 20px;
    height: 20px;
    background-color: var(--red);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.arrow-list-ul li p {
    max-width: calc(100% - 20px);
    padding-left: 10px;
    line-height: 1.5em;
}

.why-choose-us-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-choose-us-list-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.why-choose-us-list-img-box {
    width: 66px;
    height: 66px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

/* why-choose-us-end */
/* what-we-offer-start */
.what-we-offer-sec {
    padding: 50px 0;
}

.what-we-offer-left-box,
.what-we-offer-right-box {
    height: 100%;
}

.what-we-offer-img-box>img {
    width: 100%;
}

.what-we-offer-img-box {
    margin-bottom: 25px;
}

.count-box {
    height: 100%;
    background: var(--red);
    padding: 18px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counter-row>div:nth-child(even) .count-box {
    background: linear-gradient(180deg, #091441 0%, #2E396F 100%);
}

.count-box-inner {
    display: flex;
    font-size: 69px;
    font-weight: 600;
    color: var(--white);
}

.count-box p {
    font-size: 19px;
}

.sub-heading {
    font-size: 20px;
    margin-bottom: 12px;
}

.progress-section {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 29px;
}

.progress-item h4 {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: var(--red);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 1.5s ease;
}

.progress-fill span {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.secondary-button {
    font-size: 19px;
    font-weight: 500;
    line-height: 1em;
    padding: 15px 52px;
    color: var(--white);
    background-color: var(--blue);

    &:hover {
        background-color: var(--red);
    }
}

.secondary-button i {
    padding-left: 15px;
    font-weight: 500;
}

/* what-we-offer-end */
/* Hydrovac Waste Solutions start */
.waste-solution-sec {
    background: linear-gradient(180deg, #091441 0%, #2E396F 97%);
    color: var(--white);
}

.waste-solution-sec h2 {
    color: var(--white);
}

.arrow-list-ul-white .arrow-icon-box {
    background-color: var(--white);
    color: #2E396F;
}

/* Hydrovac Waste Solutions end */
/* home-about-us start */
.home-about-us-sec {
    background-image: url(../images/grey-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.home-about-video-box video {
    width: 100%;
    height: 100%;
}

.home-about-text-box h2 {
    line-height: 1em;
}

.home-about-text-box p {
    font-size: 19px;
    line-height: 1.5em;
    padding-top: 18px;
}

/* home-about-us end */

.page-back {
    /* display:inline-block; */
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #046BD2;
    color: var(--white);
    display: none;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
    z-index: 9;
}

.page-back.show {
    display: flex;
}

.page-back:hover {
    color: #091441;
}

.page-back i {
    padding: 0;
}

/* 12-02-26 */
.about-banner {
    overflow: hidden;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner-bg-img>img {
    height: 100%;
    object-fit: cover;
}

.about-banner-content-outer {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-banner-content {
    padding: 254px 0;
}

.about-max-width {
    max-width: 974px;
    margin: 0 auto;
}

.about-banner-content h2 {
    font-weight: 900;
    font-size: 52px;
}

.about-banner-content p {
    max-width: 950px;
    margin: 0 auto;
}

.banner-subtitle {
    font-weight: 600;
    font-size: 30px;
    line-height: 1em;
    text-align: center;
}

.our-mission-sec {
    padding: 115px 0;
}

.margin-top-minus {
    margin-top: -50px;
}

/* See How We Can Help start */
.help-start {
    background-color: #26245B;
    padding: 100px 0;
    margin-bottom: 80px;
}

.help-box h2 {
    color: var(--white);
    padding-bottom: 40px;
}

.help-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--white);
}

.help-start-row {
    align-items: center;
}

.view-btn {
    text-align: end;
}

/* See How We Can Help end */

/* testimonials sec */

.testimonials-sec {
    width: 100%;
    padding: 60px 0;
}

.testimonials-bottom {
    max-width: 1010px;
    margin: 0 auto;
    padding-top: 38px;
}

.testimonials-box {
    background: #F8F8F8;
    position: relative;
    padding: 61px 44px;
    display: flex;
}

.testimonials-box img {
    width: 64px !important;
    height: 119px;
}

.testimonials-box-inner {
    padding: 0 38px;
}

.testimonials-img2 {
    position: relative;
    top: 87px;
}

.testimonials-box-inner-top {
    padding-bottom: 32px;
    border-bottom: 1px solid #E7E7E7;
}

.testimonials-box-inner-top p {
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
    font-style: italic;
    font-family: var(--Inter);
}

.testimonials-box-inner-bottom {
    padding-top: 21px;
}

.testimonials-box-inner-bottom p {
    font-size: 18px;
    line-height: 32px;
    font-family: var(--Inter);
}

.testimonials-box-inner-bottom span {
    font-size: 17px;
    color: #C02428;
}

.testimonials-header {
    max-width: 567px;
    text-align: center;
    margin: 0 auto;
}

.testimonials-header h2 {
    margin-bottom: 21px;
}

/* Our History start */
.our-history {
    background-image: url(../images/our-history-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 175px 0;
}

.our-history-box {
    max-width: 657px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1px);
    padding: 55px 78px 55px 51px;
}

.our-history-box h2 {
    padding-bottom: 28px;
}

.our-history-box p {
    line-height: 25px;
    padding-bottom: 35px;
}

/* Our History end */
/* video section start */
.video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.video-wrapper img {
    width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section {
    padding-top: 70px;
}

.video-text {
    max-width: 1082px;
    margin: auto;
    text-align: center;
    line-height: 25px;
}

/* video section end */

/* our-community start */
.our-community {
    padding: 100px 0 0;
}

.our-community-text {
    width: 115%;
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
    padding: 54px 65px 60px 45px;
    position: relative;
    left: -74px;
}

.our-community-bottom-img {
    text-align: start;
}

.our-community .row {
    align-items: center;
}

/* our-community start */

/* swarnali */

/* What Makes Us Different start */
.title-text p {
    font-weight: 800;
    margin-bottom: 20px;
}

.make-us-different-sec {
    margin: 10px 0;
}

.make-us-different-box {
    height: 100%;
    padding: 55px 38px 50px;
    background-color: #FAFAFA;
    box-shadow: 0px 4px 11px 0px #00000008;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    transition: all .3s ease-in-out;

    &:hover {
        background-color: var(--white);
        box-shadow: 0px 4px 44px 0px #00000017;
    }
}

.make-us-different-text-box h5 {
    font-weight: 800;
    font-size: 22px;
    line-height: 1em;
    padding-bottom: 18px;
}

.make-us-different-text-box p {
    font-size: 17px;
    line-height: 1.375rem;
}

/* What Makes Us Different end */
/* How We Work start */
.grey-bg {
    background-color: #F9F9F9;
}

.how-we-work-sec {
    padding: 60px 0 70px;
}

.how-we-work-box {
    height: 100%;
    padding: 38px 35px 45px 22px;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px #00000017;
    display: flex;
    gap: 25px;
    transition: all .3s ease-in-out;
}

.how-we-work-box .make-us-different-text-box {
    max-width: calc(100% - 93px);
}

/* How We Work end */
/* contact-us-page-start */
.banner-bg-img>img {
    width: 100%;
}

.contact-banner-text-box,
.contact-banner-text-box .banner-subtitle,
.contact-banner-text-box .title-bottom-img {
    text-align: left;
}

.contact-banner-form {
    background-color: #FFFFFF4A;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(4px);
    border-radius: 14px;
    text-align: left;
    padding: 37px 25px 35px;
}

.contact-banner-form .get-form-box-wrapper label {
    color: var(--white);
    font-size: 18px;
}

.contact-banner-form .get-input-box {
    margin-bottom: 20px;
}

.contact-banner-form .get-input-box input,
.contact-banner-form .get-mesage-box textarea {
    border-radius: 2px;
    height: 45px;
    border: 1px solid #BFBFBF;
}

.contact-banner-form .get-mesage-box textarea {
    height: 175px;
}

.contact-banner-content {
    padding: 120px 0;
}

.contact-banner-row {
    align-items: center;
}

/* contact-us-page-end */
/* location start */
.contact-map {
    height: 500px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-text {
    background-color: var(--white);
    max-width: 521px;
    position: absolute;
    top: 0;
    left: 315px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    box-shadow: 0px 4px 44px 0px #00000017;
}

.contact-text h2 {
    padding-bottom: 25px;
}

.contact-text p {
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    padding-bottom: 25px;
}

.contact-text i {
    font-size: 50px;
    color: var(--blue);
    padding-bottom: 15px;
}

/* location start */


/* 13-02-26 */
/* service-page-start */
.services-banner-content {
    max-width: 775px;
    margin: 0 auto;
    padding: 200px 0;
}

.service-offering-sec h2 {
    max-width: 1070px;
    padding: 0 20px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.construction-text-box .sub-heading {
    font-weight: 800;
}

.construction-text-box>p,
.construction-text-box ul li p {
    font-size: 17px;
    line-height: 2rem;
}

.construction-text-box ul {
    padding: 30px 0;
}

.list-disc-ul li {
    list-style: disc;
}

.list-disc-ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 25px;
}

.shadow-btn a {
    box-shadow: 0px 4px 44px 0px #0000001F;
}

.construction-inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.construction-row .make-us-different-box {
    padding: 40px 60px 35px 30px;
    text-align: left;
}

.p-90 {
    padding: 90px 0;
}

.learn-btn {
    text-align: center;
}

.your-project {
    padding: 80px 0;
}

.work-title-row {
    --bs-gutter-y: 20px;
}

.project-supported-inner {
    padding-top: 30px;
}

.make-us-different-row {
    --bs-gutter-y: 24px;
}

.make-different-title h2,
.make-different-title p {
    text-align: start;
}

.make-different-title p {
    max-width: 600px;
    margin: 15px 0;
}

.make-different-title {
    padding-bottom: 30px;
}

.make-different-title span {
    font-weight: 400;
    font-size: 30px;
    line-height: 29px;
}

.testimonials-inner .title-text p,
.your-project .title-text p,
.project-supported .title-text p:not(:first-child),
.make-different-title p:not(:first-child) {
    font-weight: 400;
}

/* service-page-end */
/* service-unsuitable-dirt-dumping-star */
.banner-bg-img>img {
    object-position: top;
}

.services-inner-banner-content {
    max-width: 810px;
    margin: 0 auto;
    padding: 110px 0;
}

.eco-responsible-title {
    max-width: 770px;
    margin: 0 auto;
}

.eco-responsible-title h4 {
    font-weight: 800;
    font-size: 37px;
    line-height: 2rem;
    text-align: center;
}

.make-us-different-text-box h4 {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.875rem;
}

.what-we-accept-row .make-us-different-box {
    padding: 45px 50px 30px;
    gap: 38px;
}

.how-we-work-box {
    transition: all .3s ease-in-out;
}

.how-it-helps-row .how-we-work-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 35px 15px 40px;
}

.how-it-helps-row .how-we-work-box .make-us-different-text-box {
    max-width: 100%;
}

.how-it-helps-icon-box {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 2px solid #2575FC;
    color: #2575FC;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    transition: all .3s ease-in-out;
}

.how-it-helps-row .how-we-work-box:hover .how-it-helps-icon-box {
    background-color: #2575FC;
    color: var(--white);
}

.blue-bg {
    background-color: #26245B;
    color: var(--white);
}

.blue-bg h2 {
    color: var(--white);
}

.bold-para-ul {
    gap: 10px;
}

.star-list-ul.arrow-list-ul .arrow-icon-box {
    width: 17px;
    height: 17px;
    font-size: 11px;
}

.bold-para-ul li p {
    font-size: 20px;
    font-weight: 800;
}

/* service-unsuitable-dirt-dumping-end */

.Services-material h2 {
    max-width: 970px;
}

/* What You Get start */
.you-get {
    margin-top: 80px;
}

.you-got-inner {
    max-width: 1110px;
    margin: 0 auto;
}

.you-got-title {
    padding: 50px 30px;
    height: 100%;
}

.you-got-title h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 29px;
    color: var(--white);
    padding-bottom: 30px;
}

.thin-para-ul li p {
    color: var(--white);
}

.arrow-list-ul-white .arrow-icon-red {
    background-color: var(--white);
    color: #C02428;
}

.you-got-inner-row {
    --bs-gutter-x: 0;
}

.we-process {
    margin: 80px 0;
}

/* What You Get end */

.blue-box {
    max-width: 1130px;
    background-color: #26245B;
    margin: 0 auto;
    padding: 65px;
}

.blue-box h2 {
    text-align: center;
    color: var(--white);
}

.services-inner-banner-content h2 {
    font-size: 42px;
}

.states-section-row .make-us-different-box {
    padding: 70px 20px;
}

.states-section-row .count-box-inner {
    font-weight: 800;
    font-size: 52px;
    line-height: 1.5rem;
    color: var(--blue);
    gap: 10px;
}

.count::after {
    content: attr(data-symbol);
}

/* faq-start */
.accordion-box-left {
    display: flex;
    align-items: center;
    padding: 26px 22px;
    transition: all .3s ease-in-out;
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion .accordion-item {
    margin-top: 16px;
}

.accordion .accordion-item:first-child {
    margin-top: 0;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #E8E8E8;
}

.accordion-box-right {
    padding-right: 34px;
}

.accordion-item-body-content {
    padding: 14px 22px 26px;
}

.accordion-box-left h3 {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.5em;
}

.accordion-item-header.active .accordion-box-left {
    padding-bottom: 0px;
}

.max-thousand {
    max-width: 1000px;
    margin: 0 auto;
}

/* faq-end */

/* Get a Fast Quote start */
.fast-quote {
    padding-top: 80px;
}

.fast-quote-box {
    position: relative;
}

.fast-quote-box img {
    width: 100%;
    height: 100%;
}

.fast-border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 28px;
}

.fast-border-inner {
    width: 100%;
    height: 100%;
    border: 6px solid var(--white);
}

.fast-border-inner p {
    max-width: 775px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: var(--white);
}

.quote-btns {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.quote-btns a {
    width: 50%;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    padding: 20px 40px 20px 40px;
    background-color: #2575fc;
}

.quote-btns-outer {
    width: 820px;
    margin: 30px auto 0;
}

.quote-btns span {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .2);
    background: #fafaf8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
}

/* Get a Fast Quote end */

.call-bg {
    padding: 20px 25px;
    background-color: #046BD2;
    color: var(--white);
    text-align: center;
}

.call-bg i {
    margin-right: 10px;
}

.red-bg {
    background-color: var(--red);
}

.ready-box {
    padding-top: 40px;
    width: 100%;
}


/* 14-2-26 */
.roots-list-row-box {
    max-width: 490px;
    margin: 0 auto;
}

.roots-list-row {
    --bs-gutter-y: 45px;
}

.benefit-box {
    text-align: start;
    align-items: start;
}

.roots-list-box {
    display: flex;
    align-items: baseline;
    gap: 11px;
}

.roots-list-box p {
    text-align: left;
    margin: 0 !important;
    transition: all .3s ease-in-out;

    &:hover {
        color: var(--red);
    }
}

.roots-list-box i {
    color: var(--red);
    font-size: 16px;
}

.blue-bg .make-us-different-box {
    color: var(--black);
}

.quick-delivery-icon-box {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1px solid var(--black);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    transition: all .3s ease-in-out;
}

.quick-delivery-row .make-us-different-box {
    padding: 35px 45px 65px;
}

.max-100 {
    max-width: 100% !important;
}

.env-impact {
    max-width: 938px;
}

.fast-border-inner {
    color: var(--white);
}

.fast-border-inner h3 {
    max-width: 754px;
    font-weight: 600;
    font-size: 28px;
    line-height: 2.313rem;
    text-align: center;
    padding: 0 10px;
}

.arrow-list-ul li {
    align-items: baseline;
}

.call-bg i.fa-phone {
    --fa: "\f2a0";
}