@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
html{
      scroll-behavior: smooth;
}
/* GLOBAL */
html {
    margin-top: 0 !important;
}
body {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: #1a1a1a;
    background: #F5F5F5;
}

img {
    max-width: 100%;
}
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.btn {
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    font-size: 17px;
    gap: 7px;
}

.btn-green {
    background: #33AA26;
    color: #fff;
}

.btn-blue {
    background: #0a5cff;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
}


.d-flex {
    display: flex;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

.position-relative {
    position: relative;
}

.flex-direction-column {
    flex-direction: column;
}

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

/* HEADER */

.top-left-wrap {
    gap: 30px;
}

header.header {
    padding: 10px 0;
    background-color: #fff;
}

.logo-image {
    border-right: 1.5px solid rgba(0, 0, 0, 0.2);
    padding-right: 2rem;
}

.tagline {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
}


/* HERO */
.large-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.banner-wrapper {
    background: linear-gradient(to right, #001a70, #0038c0);
    color: #fff;
    border-radius: 10px;
}


.banner-wrapper>div {
    width: 100%;
}

.hero-left h1 {
    font-size: 66px;
    line-height: 70px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-left {
    padding: 50px;
}

p.rating {
    margin: 4rem 0 0 0;
}

p.rating img {
    width: 320px;
}

.pattren {
    position: absolute;
    left: 0;
    right: 77px;
    margin: 0 auto;
    text-align: center;
    width: 130px;
    top: 50%;
}



/* SERVICES */
.bg-F6F6F4 {
    background: #F6F6F4;
}

.services {
    padding: 60px 0;
    background: #F6F6F4 url(../images/bg-pattren.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
}

p.sub-heading {
    border-radius: 30px;
    background: #FFFFFF;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
}

.section-title {
    font-size: 48px;
    color: #042C49;
    text-align: center;
    line-height: 55px;
}



.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 4rem;
}

.service-box {
    border: 1px solid #1C2698;
    padding: 50px;
    border-radius: 12px;
    background: #f8faff;
}

.blue-bg {
    background: #1C2698;
    color: #fff;
}

.service-box h3 {
    font-size: 36px;
    margin: 0;
    line-height: 55px;
    border-bottom: 1px solid #ffffff2e;
    padding: 15px 0;
}

.service-box ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.service-box ul li {
    background: url(../images/icon-white.svg);
    background-repeat: no-repeat;
    background-size: 29px;
    padding: 11px 0 13px 47px;
    background-position: left center;
}

.service-box.white-bg h3 {
    color: #1C2698;
}

.service-box.white-bg ul li {
    background: url(../images/icon-black.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    padding: 11px 0 13px 47px;
    line-height: 18px;
    background-position: left center;
}

.service-box.white-bg h3 {
    border-color: #000000;
}

.service-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 50px;
}

/* PROCESS */
.process {
    padding: 60px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem;
}
.process-grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 3rem;
}
.process-box {
    border: 1px solid #1C2698;
    padding: 30px 40px;
    border-radius: 12px;
    background: #F6F6F4;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.process-box-thank {
    border: 1px solid #1C2698;
    padding: 30px 40px;
    border-radius: 12px;
    background: #F6F6F4;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.process-box h4 {
    font-size: 24px;
    color: #1C2698;
    font-weight: bold;
}

.process-box p {
    margin: 9px 0 0px 0;
    color: #333333;
    font-weight: 200;
    line-height: 22px;
}

.process-box span {
    font-size: 28px;
    font-weight: 700;
    background: #33AA26;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-box.blue-bg {
    background: #1C2698;
    color: #fff;
}

.process-box.blue-bg h4,
.process-box.blue-bg p {
    color: #fff;
}


/* WHY */
section.hero.makes {
    background: #fff;
}

.hero-left h2 {
    font-size: 56px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 20px;
}

.paragraph p {
    margin: 3rem 0;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 23px;
}

.makes .pattren {
    top: 20%;
}

section.hero.makes .banner-wrapper {
   padding: 10px;
    background: url(../images/make-bg.png) no-repeat;
    background-size: cover;
}
.background-none {
    background: #ffffff !important;
}
/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.left-title p {
    background: #F6F6F4;
    display: inline-block;
}

.right-area a {
    background: #33AA26;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding: 12px 19px;
    border-radius: 10px;
}

.testimonials .title-wrap {
    align-items: end;
    margin-bottom: 4rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.slide {
    min-width: 400px;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #c7c7c7;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #1626d4;
}


.card {
    border: 1px solid #1C2698;
    padding: 35px 25px;
    border-radius: 10px;
    background: #fff;
}

.user span {
    color: #042C49;
    font-size: 18px;
}

.stars {
    color: #1bb72b;
    font-size: 24px;
    margin-bottom: 15px;
}

.text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #042C49;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: #1626d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1626d4;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.drop-btn {
    background: #33AA26;
    color: #fff;
    padding: 17px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.drop-btn:hover {
  background: #222;
}

.arrow {
  font-size: 12px;
}

.dropdown-content {
  position: absolute;
  background: white;
  min-width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;

}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pt-0 {
    padding-top: 0 !important;
}

/* Mobile responsive */
@media(max-width: 767px) {
    .slide {
        min-width: 90%;
    }
}


/* STATS */
.achievements-section {
    padding: 80px 0;
    background: #F6F6F4 url(../images/bg-pattren.svg);
    background-repeat: no-repeat;
    background-position: top center;
}

.achievements-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

/* LEFT SIDE */
.achievements-left .tag {
    display: inline-block;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.achievements-title {
    font-size: 48px;
    font-weight: 700;
    color: #0c1c46;
    line-height: 1.2;
}

/* GRID */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.achievement-card {
    padding: 35px;
    border: 2px solid #d8ddff;
    border-radius: 12px;
    background: #fff;
    transition: 0.25s ease;
}

.achievement-card.highlight {
    background: #1C2698;
    color: #fff;
}

.achievement-card .icon img {
    width: 52px;
    margin-bottom: 18px;
}

.achievement-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}

.achievement-card p {
    font-size: 16px;
    line-height: 1.5;
    color: inherit;
}

/* RESPONSIVE */
@media (max-width: 990px) {
    .achievements-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Before Footer */
.hero-content {
    background: url(../images/deal.png);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-left-col h2 {
    font-size: 44px;
    margin-bottom: 2rem;
}

section.hero-banner {
    background: #F6F6F4;
}



/* FOOTER */
/* MAIN FOOTER */
.main-footer {
    padding: 60px 60px 20px;
    color: #0b1f36;
    background: #fff;
}

/* TOP SECTION GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-logo {
    width: 180px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.5;
    margin-bottom: 8px;
    color: #042C49;
    font-size: 16px;
    margin-top: 0px;
}

.footer-phone {
    margin-top: 10px;
    font-weight: 600;
}

.footer-email {
    color: #1C2698;
    text-decoration: underline;
}

/* Closed text in red */
.closed {
    color: #d20000;
}

/* SOCIAL */
.social-icons img {
    width: 26px;
    margin-right: 12px;
    height: 26px;
}

/* DESCRIPTION TEXT */
.footer-desc {
    max-width: 1100px;
    line-height: 1.55;
    font-size: 14px;
    margin-bottom: 30px;
    margin-left: 19rem;
}

.footer-desc a {
    color: #042C49;
    text-decoration: underline;
    display: inline-block;
}

/* COPYRIGHT */
.footer-bottom {
    background: #f6f6f6;
    padding: 18px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    color: #042C49;
    margin-top: 4rem;
}

/***Review slider css***/
.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-top:0px;
}
.review-slide {
    scroll-snap-align: start;
    padding: 8px 0;
}
.review-slide-data {
    border: 1px solid #23304a;
    border-radius: 16px;
    padding: 0 30px;
    height: 100%;
    margin: 0 8px;
    box-shadow: 0 4px 10px #0000001a;
}
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
 .reviews-dot.active {
    background: #1626d4;
}
.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c7c7c7;
    cursor: pointer;
    transition: background .3s;
}
.review-slide .card {
    margin: 10px;
}
.review-slide .card .text {
    min-height: 170px;
}
/***Review Slider css End**/

.thanku-data-wrap {
    margin: 20px auto 0;
    max-width: 600px;
}
.thanku-sec-wrap .section-title{
    font-size: 40px;
}
.thaku-info-data {
    margin: 0 0 22px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
}
.thanku-contact-info p {
    font-weight: 400;
}
.thanku-contact-info {
    margin-top: 15px;
}
.thanku-sec-wrap {
    border-bottom: 1px solid #e8e8e3;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}



.no-bg-inner {
    padding: 0;
    background: no-repeat;
    border: none;
}

.inner-hero-left {
    position: relative;
}

.pattren.pattren-inner {
    top: 33%;
    right: 18%;
    left: auto;
}

.inner-form-section {
    padding-right: 4rem;
}

.banner-wrapper.banner-inner-wrap {
    background: url(../images/banner-inner.png) no-repeat;
    background-size: cover;
}
.home-banner .hero-right{
        padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}
.home-banner .hero-right img{
        border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.banner-wrapper.banner-inner-wrap.energy-lender {
    background: url(../images/banner-inner-1.png) no-repeat;
    background-size: cover;
}
.logo-section {
    padding: 25px 0;
}
.radius-10 {
    border-radius: 10px;
}

.logo-section p {
    margin: 0;
    color: rgb(51 51 51 / 56%);
    border-bottom: 1px solid #00000033;
    padding-bottom: 4px;
}
.logos-img-wrap {
    gap: 4px;
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.energy-logos {
    grid-template-columns: repeat(6, 1fr);
}
.logo-wrapper {
    width: 45%;
}

.form-inner-wrap {
    padding:0px 30px;
}

.form-title {
    background: #22349c;
    color: #fff;
    text-align: center;
    font-size: 30px;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 17px;
    color: #1f2a7a;
    margin-bottom: 13px;
}

select {
    background: url(../images/select-arrow.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 96% center !important;
    appearance: none;
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #042C49;
    border-radius: 7px;
    font-size: 16px;
    background: #fff;
}

.double input {
    width: 75%;
    background: #fff;
}

input {
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #042C49;
    border-radius: 7px;
    font-size: 16px;
    background: #F6F6F4;
}

.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.continue-btn {
    width: 100%;
    padding: 20px;
    background: #45b034;
    color: #fff;
    border: none;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.back-btn {
    margin: 0 auto;
    border: none;
    background: none;
    color: #042C49;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    text-decoration: underline;
}

.btn-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.privacy p {
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 20px;
    margin-bottom: 0;
}

.continue-btn:hover {
    background: #3a9a2c;
}

.waste-step {
    display: none;
}

.waste-step.active {
    display: block;
}

.waste-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 17px;
    position: relative;
    top: 20px;
    border: 1px solid #1C2698;
    min-height: 714px;
}

.waste-step {
    display: none;
}

.waste-step.active {
    display: block;
}

.step-question {
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #1C2698;
    font-size: 24px;
    margin-top: 20px;
    display: block;
}
.bin-options-first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 2rem;
}
.bin-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 2rem;
}

.bin-card {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60px;
    justify-content: center;
}

.bin-card img {
    width: 60px;
    margin-bottom: 0px;
}


.bin-card input {
    display: none;
}

.form-group.full-input input[type="text"], .form-group.full-input input[type="email"] {
       width: 100%;
    box-sizing: border-box;
}

/* When radio selected → highlight card */
.bin-card input:checked+img,
.bin-card input:checked+p,
.bin-card input:checked~p {
    color: #fff;
}

.bin-card input:checked {
    /* No direct visual here */
}

/* Real highlight using :has (modern browsers) */
.bin-card:has(input:checked) {
    border-color: #1C2698;
    background: #1C2698;
}
.suplier-logos-options .bin-card:has(input:checked) img{
    filter: brightness(0) invert(1);
}
.bin-card p {
    margin: 0;
    font-size: 17px;
    line-height: 22px;
    color: #042C49;
}

.progress-info {
    color: #042C49;
    display: flex;
    justify-content: space-between;
}

.progress-bar {
    background: #D9D9D9;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    background: #1C2698;
    height: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .double {
        grid-template-columns: 1fr;
    }
}

.half-width {
    width: 50%;
}

p.pera {
    margin: 20px 0 0px 0;
    color: #333333;
    font-weight: 200;
    line-height: 25px;
}

.services-section {
    background: #F6F6F4 url(../images/bg-pattren.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.services-image-wrap {
    margin-top: 2rem;
}

.services-image-wrap img {
    width: 100%;
}

.waste-right {
    position: relative;
}

.process-pattren {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 58px;
}

.hero-left.paragraph {
    padding-top: 25px;
    padding-bottom: 25px;
}

section.hero.makes .banner-wrapper.reduce-space {
    padding-right: 10px;
}

.waste-stat-wrap {
    background: #1c2aa6;
    /* deep blue */
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    margin-top: 3rem;
}

.waste-stat-icon img {
    width: 100px;
    height: auto;
}

.waste-stat-info h2 {
    font-size: 52px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.waste-stat-info p {
    margin: 5px 0 0;
    font-size: 18px;
    opacity: 0.9;
}

.process-pattren img {
    width: 80px;
}

h2.h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0c1c46;
    line-height: 1.2;
}

.process-step-wrap span {
    background: #33AA26;
    width: 90px;
    color: #fff;
    font-size: 33px;
    font-weight: bold;
    border-radius: 9px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 0;
}

.process-steps {
    background: #fff;
    border: 1px solid #1C2698;
    border-radius: 10px;
    margin-top: 3rem;
    overflow: hidden;
}

.step-content h3 {
    margin: 0;
    color: #1C2698;
    font-size: 24px;
}

.process-step-wrap {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 2rem 3rem;
    border-bottom: 1px solid #1C2698;
    background: #F6F6F4;
}

.waste-container {
    gap: 6rem;
    padding: 3rem 0 5rem 0;
}

.step-content {
    width: 100%;
}

.process-step-wrap:last-child {
    border: none;
}

.white-bg {
    background: #fff;
}

.waste-feature-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* spacing between rows */
    padding: 10px 0;
}

.waste-feature-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.waste-feature-icon img {
    width: 58px;
    height: auto;
}

.waste-feature-text {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 20px;
    line-height: 1.4 !important;
}

.inner-bottom {
    background: url(../images/bottom-bg.png) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.service-left-img img {
    width: 100%;
}
.service-section {
    gap: 4rem;
    padding: 70px 0;
}
.service-inner-content {
    width: 100%;
    gap: 60px;
    align-items: center;
}
.service-left-img, .service-right-content {
    width: 100%;
}
.service-right-content {
    text-align: left;
}
.service-right-content h2.section-title {
    text-align: left;
}
.service-right-content p.sub-heading {
    display: inline-block;
}
.service-right-content > p.inner-p {
    margin: 15px 0 0px 0;
    color: #333333;
    font-weight: 200;
    line-height: 22px;
}
section.process.process-section {
    background: url(../images/bg-pattren.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
}
section.hero.makes.switching-wrap .hero-left strong {
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
}
section.hero.makes.switching-wrap.bg-F6F6F4 {
    background: #F6F6F4;
}
.waste-feature-wrap.feature-listing {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.waste-feature-wrap.feature-listing .waste-feature-item {
    width: 31%;
}
.waste-feature-wrap.feature-listing .waste-feature-item p.waste-feature-text {
    color: #000 !important;
}
.bin-options.full-width-row {
    grid-template-columns: auto;
}
.bin-options.full-width-row label.bin-card {
    padding: 0 20px;
    text-align: left;
    align-items: baseline;
}
.bin-options.full-width-row label.bin-card {
    padding: 0 20px;
    text-align: left;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.bin-options.full-width-row label.bin-card span {
    background: #F5F4F4;
    border-radius: 50px;
    height: 46px;
    width: 46px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bin-options.full-width-row label.bin-card span img {
    width: 78%;
    margin: 0;
}
.step-2 .bin-card img {
    width: auto;
    max-width: 60px;
}
.selectbox {
    gap: 20px;
}

.slide .card .text {
    min-height: 170px;
}
.button-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-menu-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.blog-link {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.waste-form-wrapper.energey-form-wrapper {
    min-height: 711px;
}
.suplier-logo-hold{
    width: 100%;
}
.supplier-logo {
    padding: 10px;
    background: #fff;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.supplier-logo img{
    max-height:100%;
}

/***Blog page css****/
.blog-list-wrap-grid {
    display: flex;
   align-items: self-start;
    max-width: 1320px;
    margin: 50px auto;
    width: 100%;
    padding: 0px 15px;
    gap: 30px;
    justify-content: space-between;
    box-sizing: border-box;
}
.blog-list-wrap-grid .cm-secondary {
    min-width: 230px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    position: sticky;
    top: 10px;
}

.cm-secondary ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 23px;
}
.cm-secondary ul li a:hover{
 text-decoration: underline;
}
.cm-secondary h2 {
    text-transform: uppercase;
    font-size: 17px;
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 10px;
}
.cm-secondary ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cm-posts.cm-post-hold {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 0;
}
.cm-featured-image img {
    height: 200px;
    object-fit: cover;
}
.cm-posts.cm-post-hold article {
    background: #eaeaea !important;
    padding: 0;
    /* margin: 0 0 20px !important; */
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}
.cm-posts.cm-post-hold article:hover {
    margin-top: -10px;
}
.cm-below-entry-meta {
    display: none;
}
.cm-post-content {
    padding: 25px;
}
.cm-post-categories a {
    background: #33AA26;
    display: inline-flex;
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
}
.cm-entry-title a {
    font-size: 19px;
    color: #000;
    text-decoration: none;
    line-height: 25px;
    display: block;
}
h2.cm-entry-title {
    margin-top: 20px;
}
.cm-entry-summary p {
    line-height: 25px;
    color: #555;
}
.cm-entry-button {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
ul.default-wp-page {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 40px;
   justify-content: space-between;
}
ul.default-wp-page li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.cm-post-categories {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;
}
header.cm-page-header {
    margin-bottom: 30px;
}
.blog-single-data .cm-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.blog-single-data  header.cm-entry-header h1 {
    font-size: 25px;
    margin: 20px 0;
}
.cm-entry-summary ul, .cm-entry-summary ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0 15px;
    font-size: 16px;
    line-height: 25px;
    line-height: 25px;
    color: #555;
}
.blog-single-data ul.default-wp-page li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-single-data span.meta-nav {
    min-width: 30px;
}
.blog-single-data .cm-post-content {
    padding: 25px 0;
}
a {
    color: #000;
}
@media (max-width:1199px){
   .cm-posts.cm-post-hold {
  
    grid-template-columns: repeat(2, 1fr);
   
}
}
@media (max-width:767px) {

        .mobule-menu-wrap {
        position: absolute;
        z-index: 2;
        width: 100%;
        background: #fff;
        left: 0;
        padding: 5px 0px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 99;
    }
    .mobule-menu-wrap ul li {
        list-style: none;
    }
        .mobule-menu-wrap ul li a {
        color: #000;
        margin: 17px 0;
        display: block;
        text-decoration: none;
    }
        .mobule-menu-wrap.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .blog-list-wrap-grid{
        display: block;
        box-sizing: border-box;
    }
    .cm-posts.cm-post-hold {
        grid-template-columns: repeat(1, 1fr);
    }
    .blog-list-wrap-grid .cm-secondary {
    min-width: 100%;
   
    position: static;
   
    box-sizing: border-box;
    margin-top: 40px;
}


    .none-for-mobile {
    display: none !important;
}
.suplier-logo-hold {
    box-sizing: border-box;
    padding: 0px 15px 20px;
}
.supplier-logo {
    width: 25%;
}
.none-for-desktop {
    display: block !important;
}
    .logo-image img {
        width: 100px;
    }
    .logo-image{
        padding-right: 10px;
    }
    .button-right{
        gap: 10px;
    }
.blog-link{
    font-size: 14px;
}
.drop-btn {
    padding: 7px 8px;
    font-size: 12px;
    gap: 10px;
}
.bin-options{
        grid-template-columns: repeat(2, 1fr);
    gap: 10px
}
.selectbox {
    gap: 20px;
    flex-wrap: wrap;
}
    .tagline {
        display: none;
    }

    .top-left-wrap {
        flex-direction: column;
        width: 40%;
    }

    a.btn {
        padding: 11px 10px;
        font-size: 13px;
    }

    .banner-wrapper {
        flex-direction: column;
    }

    .hero-left h1 {
               font-size: 24px;
        line-height: normal;
        margin: 15px 0 18px !important;
        line-height: 34px;
    
    }
    .step-question{
        font-size: 20px;
    }

    .hero-left h1 br {
        display: none;
    }
.waste-form-wrapper.energey-form-wrapper {
    min-height: auto;
}
.service-box ul li{
    font-size: 14px;
}
    .service-grid,
    .process-grid {
        grid-template-columns: auto;
    }

    .hero-right>img {
        width: 100%;
    }

    .footer-desc {
        margin-left: 0;
    }

    .hero-content {
        padding: 2rem;
        flex-direction: column;
    }

    .title-wrap {
        flex-direction: column;
        align-items: center !important;
        gap: 30px;
    }

    .section-title {
        line-height: normal;
        font-size: 26px;
    }

    section.hero .banner-wrapper .hero-left {
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
    }

    section.hero .banner-wrapper .hero-left img,
    section.hero .banner-wrapper .hero-left h1,
    section.hero .banner-wrapper .hero-left>div {
        padding-left: 20px;
    }

    p.rating img {
        width: 250px;
    }

    .pattren {
        display: none;
    }

    p.rating {
        margin: 2rem 0 0 0;
    }

    .services,
    .process,
    .testimonials {
        padding: 30px 0;
    }

    .service-box h3 {
        font-size: 30px;
    }

    .service-box {
        padding: 15px;
        box-sizing: border-box;
    }

    section.hero.makes .banner-wrapper {
        padding: 20px 20px;
        flex-direction: column-reverse;
    }

    .hero-left h2 {
        font-size: 24px;
        line-height: normal;
        margin: 0 0 20px;
    }
section.hero.makes.switching-wrap .hero-left strong{
    font-size: 16px;
    margin-bottom: 0px;
}
.paragraph p{
        margin: 20px 0;
}
.hero-left.paragraph div.d-flex {
    padding-left: 0 !important;
}
    .achievements-title,
    .hero-left-col h2 {
        font-size: 32px;
    }

    .hero-right-col {
        margin-top: 20px;
    }

    .main-footer {
        padding: 40px 0px;
    }
.process-box{
    flex-direction: row;
    padding: 15px;
    gap: 10px;
}
.process-box span{
    font-size: 18px;
    min-width: 40px;
    width: 40px;
    height: 40px;
}
.dots{
    margin-top: 30px;
}
.hero-banner .hero-left-col {
    text-align: center;
}

.hero-banner .hero-left-col .d-flex{
    justify-content: center;
}
    .services-section .waste-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0px;
    }
    .wast-why-choose-us img {
    padding-left: 0px !important;
}
section.hero.makes .banner-wrapper.reduce-space {
    padding-right: 20px;
}
h2.h2{
    font-size: 32px;
}
.process-pattren img{
    display: none;
}
.process-steps{
    margin-top: 30px;
}
    .half-width {
        width: 100%;
    }

    .reduce-space .waste-feature-wrap {
        padding-left: 0 !important;
        margin-top: 20px;
    }

    .waste-form-wrapper {
        top: auto;
        margin: 0 15px 0px 20px;
        padding: 7px;
        
    }
    .service-section{
        padding: 30px 0px;
    }

    .inner-form-section {
        padding: 0;
    }

    .service-box ul {
        margin-bottom: 0;
        margin-top: 0;
    }

    h2.form-title {
        font-size: 15px;
        margin-bottom: 0;
    }
.form-progress {
    font-size: 12px;
}
.form-group label{
    font-size: 14px;
}
    .form-inner-wrap {
        padding: 15px;
    }

    .logos-img-wrap {
             flex-wrap: wrap;
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        gap: 10px;

    }

    .logo-wrapper {
        width: 100%;
    }

    .process-step-wrap {
        padding: 1.5rem 1rem;
        gap: 20px;
    }

    .process-step-wrap span {
        width: 66px;
        font-size: 23px;
        padding: 11px 0;
    }

    .inner-bottom {
        background: #1c2aa6 !important;
    }

    .hero-left.inner-hero-left h1 {
        margin-bottom: 0;
    }

    .hero-left.inner-hero-left {
        padding-bottom: 0;
    }

    .waste-stat-info h2 {
        font-size: 40px;
    }
    .service-inner-content {
    flex-direction: column;
    gap: 20px;
}
.waste-feature-wrap.feature-listing {
    flex-direction: column;
    padding: 30px 0px;
}
.waste-feature-text{
    font-size: 16px;
}
.waste-feature-wrap.feature-listing .waste-feature-item {
    width: 100%;
}
.process-grid{
    margin-top: 30px;
}
.process-box h4{
    font-size: 18px;
}
.testimonials .title-wrap{
    margin-bottom: 0px;
}
.slide .card .text {
    min-height: 110px;
}
.slide .card .text{
    font-size: 14px;
}
.service-box h3{
    border: 0px;
}
.service-grid ul {
    margin-bottom: 15px;
}
.service-grid, .service-img{
    margin-top: 30px;
}
.hero-left {
    padding: 50px 0 30px;
}
.achievements-section{
    padding: 30px 0;
}
.waste-form-wrapper{
    min-height: auto;
}
.bin-options-first{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
}

@media(min-width:768px) and (max-width:1100px) {
    .logos-img-wrap{
        display: flex;
        flex-wrap: wrap;
    }
    .supplier-logo{
        width: 102px;
    }
    .hero-left h1 {
        font-size: 32px;
        line-height: 43px;
    }
    .bin-options-first{
        grid-template-columns: repeat(2, 1fr);
    }

    .pattren {
        display: none;
    }

    .banner-wrapper>div {
        width: 50%;
    }

    .banner-wrapper>div.hero-right img {
        width: 100%;
    }

    .services {
        padding: 50px 0;
    }

    .service-box {
        padding: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 2fr);
    }

    .service-box h3 {
        font-size: 27px;
    }

    .hero-left h2 {
        font-size: 31px;
        line-height: normal;
        margin-bottom: 0;
    }

    .hero-left.inner-hero-left {
        padding: 10px;
    }

    .form-inner-wrap {
        padding: 10px;
    }

    .waste-form-wrapper {
        top: 30px;
    }

    h2.form-title {
        font-size: 17px;
    }

    .hero-right.inner-form-section {
        padding-right: 20px;
    }

    .waste-container {
        gap: 1.3rem;
    }

    .process-step-wrap {
        padding: 16px;
        gap: 20px;
    }

    .process-step-wrap span {
        width: 70px;
        font-size: 21px;
    }

    .waste-stat-wrap {
        padding: 20px;
    }

    .waste-stat-icon img {
        width: 70px;
    }

    .waste-stat-info h2 {
        font-size: 40px;
    }
     .inner-bottom {
        padding: 3rem;
        background: #1c2aa6 !important;
    }
    .hero-left-col h2 br {
        display: none;
    }
.tagline {
    display: none;
}
.bin-options{
        grid-template-columns: repeat(2, 1fr);
}
.hero-right.inner-form-section {
        padding-right: 20px;
        width: calc(100% - 300px);
    }
        .hero-left.inner-hero-left {
        padding: 10px;
        width: 300px;
    }
    .achievements-title{
        font-size: 38px;
    }
    h2.h2{
        font-size: 38px;
    }
}