/* css variables */
:root{
    --fontFamliy: 'Poppins', sans-serif;
    --primaryCol: #007797;
}

* {
    font-family: var(--fontFamliy);
    text-decoration: none!important;
    list-style: none;
}
/* solve the problem of responsive design */
html,body {
    position: relative;
    overflow-x: hidden!important;
}
body{
    overflow-x: hidden!important;
}

/* remove utilization from bootstrap */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol{
    padding: 0;
    margin: 0;
}

/* responsive fonts */
@media(max-width: 992px){
    html {
        font-size: 95%;
    }
}
@media(max-width: 768px){
    html {
        font-size: 90%;
    }
}
@media(max-width: 576px){
    html {
        font-size: 80%;
    }
}


/* header */

.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 15px;
    /*background: #f1fef4;*/
    background: #ffffff;
}
.header .item-left{
    flex:0 0 17%;
}
.header .logo a{
    font-size: 30px;
    color:#000000;
    font-weight: 700;
    text-decoration: none;
}
.header .item-center {
    flex: 0 0 80%;
}
.header .item-right{
    flex:0 0 17%;
    display: flex;
    justify-content: flex-end;
}
.header .item-right a{
    text-decoration: none;
    font-size: 16px;
    color:#555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}
.header .menu > ul > li {
    display: inline-block;
    line-height: 50px;
    margin-left: 1.5rem;
    position: relative;
}
.header .menu > ul > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    border-radius: 6px;
}


.header .menu > ul > li > a:hover{
    color: var(--primaryCol)
}
.header .menu > ul > li .sub-menu{
    position: absolute;
    z-index: 500;
    background-color:#ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top:25px;
    opacity:0;
    visibility: hidden;
}
@media(min-width: 992px){
    .header .menu > ul > li.menu-item-has-children:hover .sub-menu{
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}
.header .menu > ul > li .sub-menu > ul > li{
    line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
    min-width: 280px;
    max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 1;
    display: block;
    text-align: left;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 10px 0;
    display: inline-block;
    font-size: .9rem;
    color: #555555;
    transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{
    left: 50%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    /* max-width: 1200px; */
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    position: absolute;
    left: 5rem;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 1rem;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
    font-size: 1rem;
    color:#000;
    font-weight: 500;
    line-height: 1;
    padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
    text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
    color: var(--primaryCol)
}
/* banner section */
.banner-section{
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
    display: none;
}

.list-container {
    text-align: center;
    width: 150px;
}

/*responsive*/
@media(max-width: 991px){

    .header .item-center{
        order:3;
        flex:0 0 100%;
    }
    .header .item-left,
    .header .item-right{
        flex:0 0 auto;
    }
    .v-center{
        justify-content: space-between;
    }
    .header .mobile-menu-trigger{
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .header .mobile-menu-trigger span{
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }
    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after{
        content: '';
        position: absolute;
        left:0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }
    .header .mobile-menu-trigger span:before{
        top:-6px;
    }
    .header .mobile-menu-trigger span:after{
        top:6px;
    }
    .header .item-right{
        align-items: center;
    }

    .header .menu{
        position: fixed;
        width: 320px;
        background-color:#ffffff;
        left:0;
        top:0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }
    .header .menu.active{
        transform: translate(0%);
    }
    .header .menu > ul > li{
        line-height: 1;
        margin:0;
        display: block;
    }
    .header .menu > ul > li > a{
        line-height: 50px;
        height: 50px;
        padding:0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .header .menu > ul > li > a i{
        position: absolute;
        height: 50px;
        width: 50px;
        top:0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }
    .header .menu .mobile-menu-head{
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top:0;
    }
    .header .menu .mobile-menu-head .go-back{
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0,0,0,0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color:#000000;
        font-size: 16px;
        display: none;
    }
    .header .menu .mobile-menu-head.active .go-back{
        display: block;
    }
    .header .menu .mobile-menu-head .current-menu-title{
        font-size: 15px;
        font-weight: 500;
        color:#000000;
    }
    .header .menu .mobile-menu-head .mobile-menu-close{
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0,0,0,0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color:#000000;
        font-size: 25px;
    }
    .header .menu .menu-main{
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu{
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin:0;
        padding:15px;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.active{
        display: block;
    }
    @keyframes slideLeft{
        0%{
            opacity:0;
            transform: translateX(100%);
        }
        100%{
            opacity:1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight{
        0%{
            opacity:1;
            transform: translateX(0%);
        }
        100%{
            opacity:0;
            transform: translateX(100%);
        }
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
        margin-top:0;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
        margin-bottom: 20px;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
        margin-bottom:0px;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
        flex: 0 0 100%;
        padding: 0px;
    }
    .header .menu > ul > li .sub-menu > ul > li > a,
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
        display: block;
    }
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }
    .menu-overlay{
        position: fixed;
        background-color: rgba(0,0,0,0.5);
        left:0;
        top:0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity:0;
        transition: all 0.5s ease;
    }
    .menu-overlay.active{
        visibility: visible;
        opacity:1;
    }
}





/* start owl carousel */
.main-carousel-comp .owl-carousel .item {
    height: 40rem;
    padding: 1rem;
    cursor: pointer;
    position: relative;
}


.carousel-caption-container.row.align-items-center {
    position: absolute;
    top: 0;
    left: 0;
    /*background: #0000009c;*/
    width: 100%;
    height: 100%;
    padding-left: 10rem;
}


.hero-slide-img {
    height: 640px;
    object-fit: cover;
}
.main-carousel-comp .btns{
    display: table;
    margin: 30px auto;
}
.main-carousel-comp .customNextBtn, .customPreviousBtn{
    float: right;
    background: #2d9070;
    color: #fff;
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

.carousel-item-one {
    /*background-image: url("../img/sliderBg.png");*/
}
.main-carousel-comp .owl-carousel .item{
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 0px;
}

.carousel-content h1{
    font-size: 2.5rem;
    color: #fff;
}
.high-light-primary {
    /*color: var(--primaryCol);*/
    color: #fff;
}

.reusable-btn {
    padding: .5rem 1rem;
    display: inline-block;
    background: var(--primaryCol);
    border-radius: 4px;
    color: #fff!important;
}

/* end owl carousel */

/* start good bag */
.good-bag-comp .icon-img-container{
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background-color: var(--primaryCol);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.good-bag-comp {
    position: relative;

}
.good-bag {
    text-align: center;
    position: relative;
}
.good-bag h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-top: -3rem;
    font-weight: 300;
}
.goode-bag-main-container {
    background-color: #4AA0B6;
    position: absolute;
    top: -6rem;
    z-index: 10;
    padding-bottom: 2rem;
    left: 10%;
}
.good-bag-comp .icon-img-container {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background-color: var(--primaryCol);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transform: translateY(-66px);
}

.butter-fly-comp {
    /* margin-top: 5rem; */
    /*    background-color: #F6FEF8;*/
    background-color: #FFFFFF;
}

.butterr-effect h4{
    font-size: 1rem;
    color: #007797;
}

.line {
    width: 188px;
    height: 2px;
    background-color: #FE9B19;
    display: inline-block;
    margin-left: .5rem;
}

.butterr-effect h5 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.main-text {
    font-weight: 600;
    color: #000!important;
}




@media(max-width: 768px){
    .good-bag-comp .icon-img-container {
        transform: initial!important;
    }

    .main-carousel-comp .owl-carousel .item {
        height: 15rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .goode-bag-main-container {
        position: initial!important;
        ;

    }

    .good-bag h4 {
        margin-top: 0;
    }

    .good-bag-comp {
        position: relative;
        background: #4aa0b6;
        margin-top: 1rem;
    }

    .main-carousel-comp .owl-carousel .item {
        height: 15rem;

    }
    .carousel-content h1 {
        font-size: 1.2rem;
    }

}

@media(max-width: 576px){
    .responsive-pad {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important;
    }
}







/* end good bag */

/* start butter fly services */
.butter-service .icon-img-container-main{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primaryCol);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.container-service h4 {
    font-size: 1.75rem;
    color: var(--primaryCol)
}
.container-service h5 {
    font-size: 0.875rem;
    color: #000;
}

.butter-service{
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    position: relative;
}
/*.butter-services-comp {
    background-color: #F6FEF8;
    margin-bottom: -153px;
}*/

g
.butter-services-comp {
    background-color: #ffffff!important;
    margin-bottom: -153px;
}
.icon-img-container-main {
    transform: translateY(-3rem);
}

.container-service {
    margin-top: -2rem;
}

.icon-img-container-main {
    transform: translateY(-2.5rem);
}

.imag-container-inside {
    text-align: center;
}

.imag-container-inside .line {
    background: #fff;
    width: 19%;
}

.small-inner-text {
    font-size: 0.8rem;
}
.calGmail li a {
    color: #fff!important;
    font-weight: 600;
}

.waster-management-comp  .reusable-container {
    margin-top: 4rem;
}
/* end butter fly services */

/* start waster service comp */
.waster-content h4 {
    font-size: 1.5rem;
    color: #FE9B19;
}
.waster-management-comp {
    background-image: linear-gradient(rgba(3, 105, 131, .7),rgba(3, 105, 131, .7)),url("../img/waste-mangement-services.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 23rem;
}
.reusable-container h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #C6C6C6;
    justify-content: center;
}
.reusable-container h2{
    font-size: 2rem;
    color: #fff;
}
.resubale-line {
    display: inline-block;
    width: 5%;
    height: 2px;
    background-color: orange;
    margin-left: .2rem;
}
.shadow-add {
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    padding: 1rem;
}
.waster-image-container {
    text-align: center;
    height: 200px;
}
.waster-image-container img{
    height: 100%;
}
.waster-content h4 {
    margin: 1rem 0;
}
.waster-management-comp {
    position: relative;
    margin-top: 10rem;
}
.align-position {
    transform: translateY(-34%);
}
.pickup .goode-bag-main-container {
    background-color: #FE9B19;
    position: absolute;
    top: 92px;
    z-index: 10;
    padding-bottom: 2rem;
    left: 10%;
}
.move-bottm-pad {
    padding-bottom: 2rem;
}

@media(min-width: 992px){
    section.progress-comp {
        margin-top: -8%;
        /*background-color: #F6FEF8;*/
        background-color: #FFFFFF;
    }
}

@media(max-width: 768px){
    .align-position{
        transform: initial;
    }
    .waster-image-container img {
        height: 100%;
        width: 100%;
    }
    .waster-management-comp {
        height: 10rem;
    }
}
/* end waster service comp */

/* start progress */
.progress {
    margin: 1rem 1rem 1rem 0;
    height: 1.375rem;
    border-radius: 0
}


.progress-bar {
    background-color: #fe9b19;

}
.progress-holder h4{
    font-size: 1.125rem;
}
.progress-holder{
    position: relative;
}

.percentage {
    position: absolute;
    right: 0;
    color: #3A3A3A;
    font-size: 1.25rem;
}
/* end progress */


/* start download */
.appstorecomp {
    background-image: url("../img/download-bg.png");
    background-size: cover;
    color: #FFFFFF;
}
.dowload-comp h4{
    font-size: 2.5rem;
}
.dowload-comp p{
    font-size: 1.25rem;
}

.flex {
    display: flex;
    align-items: center;
}

.app-btn {
    width: 45%;
    max-width: 160px;
    color: #fff!important;
    margin: 20px 10px;
    text-align: left;
    border-radius: 7px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    padding: .1rem 0;
}
.app-btn.blu {
    background-color: transparent;
    transition: background-color 0.25s linear;
    text-align: center;
    display: flex;
    justify-content: center;
}
.app-btn.blu:hover {
    background-color: var(--primaryCol);
}
.app-btn i {
    width: 20%;
    text-align: center;
    font-size: 28px;
    margin-right: 7px;
}
.app-btn .big-txt {
    font-size: 17px;
    text-transform: capitalize;
}

.apple-play-btn {
    background-color: #000!important;
}

.google-play-btn {
    border: 1px solid #fff;
}

.social-icon-containers li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #007797;
    color: #fff!important;
}
.social-icon-containers li {
    margin-right: .5rem;
}
/* end download */

/* start footer */
footer {
    background-color: #d2e7ed;
}
.footer-categories li a{
    color: #000!important;
    font-size: 1rem;
}

.categories-list li {
    margin-bottom: 1rem;
}
.categories-list i {
    margin-right: .5rem;
}

.footer-categories h4 {
    color: var(--primaryCol);
    font-size: 1.25rem;
}
/* end footer */

/* start copy-right-comp */
.copy-right-comp {
    background-color: var(--primaryCol);
    color: #fff;
}

.copy-right-comp p {
    font-size: 0.75rem;
}


.moon-link {
    color: #fff!important;
}
@media(max-width: 576px){
    .copy-right-comp p{
        text-align: left;
    }


}


/* start copy-right-comp */

/* start responsive menu changes */
.sub-menu.mega-menu h4 {
    text-align: left;
    color: var(--primaryCol)!important;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.login-container-btn {
    color: #fff!important;
    padding: .5rem 3rem!important;
    background-color: var(--primaryCol);
    color: #fff!important;
}
/* end responsive menu changes */

/* start owl carousel  blogs*/
.contain {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.blogs-comp .item {
    align-items: center;
    background-color: #fff;
    color: white;
    justify-content: center;
}

.img-main-item-container-content {
    /* background: #d3d3d32b; */
}


.img-main-item-container-content{
    padding: 1rem;
}

.img-main-item-container-content h4 {
    color: var(--primaryCol);
    margin-bottom: .5rem;
}
.read-more-container {
    color: #000!important;
}
.img-main-item-container {
    position: relative;
}
.date-container {
    background-color: #FEA835;
    width: fit-content;
    padding: .5rem 1rem;
    position: absolute;
    bottom: 0;
    margin-left: 1rem;
}

.owl-theme .owl-dots .owl-dot span {
    width: .9rem;
    height: .9rem;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primaryCol);
}
.blogs-reusable-container h3{
    color: var(--primaryCol)
}
.blogs-reusable-container h2{
    color: #000!important;
}

.mini-image-container img {
    width: 75px!important;
    height: 75px!important;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 3px;
}
.quote img {
    width: 40px!important;
    margin-left: auto;
}
.image-flex {
    display: flex;
    align-items: center;
}
.name-container {
    color: var(--primaryCol);
}
.mini-image-container img {
    border: 2px solid var(--primaryCol);
}

.image-flex h5 {
    padding-left: 1rem;
}

.img-main-item-container-content h5{
    font-size: 1.25rem;
}

.img-main-item-container-content > h5 {
    border-bottom: 1px solid #BFBFBF;
    padding: 1rem 0;
}

.img-main-item-container-content p {
    margin-top: 1rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.feed-back-comp {
    background-color: #FFFFFF;
    /*    background-image: url("../img/back-img.jpeg");
        background-repeat: no-repeat;
        background-size: 98%;*/

}

.great-communicate {
    background-color: #fff!important;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    padding: 1rem;
}


#owl-carousel-feed-back  .owl-dots.disabled {
    display: block;
}
/* end owl carousel blogs */


/* start team  */
.our-tem-comp  {
    /*background: #F6FEF8;*/
    background: #FFFFFF;
}
.our-tem-comp .team-img-container {
    height: 300px
}
.our-tem-comp .team-img-container img{
    height: 323.06px;
    width: 252px;
}
.team-content-container {
    width: 252px;

}
.holder-img-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
}

.add-main-shadow {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.team-content-container {
    position: absolute;
    bottom: -13rem;
    color: #fff;
    text-align: center;
    transition: all .2s ease;
    padding: 1rem;
    background: url("../img/content-bg.png");
    background-size: contain;
}
.team-content-container h4 {
    margin-bottom: 1rem;
}

.holder-img-container:hover .team-content-container {
    cursor: pointer;
    bottom: 0;
}

.reusbale-team-container h3{
    font-size: 1rem;
    color: var(--primaryCol);
}


.owl-item.active.center .add-main-shadow{
    border-bottom: 10px solid #007797;
}
.owl-item.active.center .add-main-shadow .read-more-container{
    color: #FEA835!important;
}

/* end team  */

/* start how we work */
.main-timeline:before,
.main-timeline:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.main-timeline .timeline{
    padding: 0;
}
.main-timeline .timeline-inner{
    text-align: center;
    margin: 20px 20px 35px 35px;
    position: relative;
}
.main-timeline .timeline-inner:after{
    content: "";
    width: 120%;
    height: 3px;
    background: #555;
    position: absolute;
    bottom: 0;
    left: 10%;
}
.main-timeline .timeline:last-child .timeline-inner:after{
    width: 0;
}
.main-timeline .year{
    background: #007797;
    padding: 5px 0;
    border-radius: 30px 0 30px 0;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
    position: relative;
}
.main-timeline .year:before {
    content: "";
    position: absolute;
    top: -19px;
    right: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #007797;
    border-right: 10px solid #007797;
}
.main-timeline .year:after{
    content: "";
    width: 25px;
    height: 19px;
    border-radius: 0 0 20px 0;
    background: #fff;
    position: absolute;
    right: 1px;
    top: -19px;
}
.main-timeline .timeline-content {
    padding: 10px 10px 30px 10px;
    border-left: 3px solid #007797;
    position: relative;
}
.main-timeline .timeline-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    border: 10px solid transparent;
    border-top: 10px solid #007797;
    border-left: 10px solid #007797;
}
.main-timeline .timeline-content:after{
    content: "";
    width: 25px;
    height: 19px;
    border-radius: 20px 0 0 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.main-timeline .post{
    font-size: 26px;
    color: #333;
}
.main-timeline .description{
    font-size: 14px;
    color: #333;
}
.main-timeline .timeline-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    border: 5px solid #007797;
    background: #fff;
    font-size: 30px;
    color: #555;
    z-index: 1;
    position: absolute;
    bottom: -35px;
    left: -35px;
}
.timeline-icon img {
    width: 50px!important;
}
.main-txt-timeline {
    color: #007797;
    font-weight: 600;
}
.timeline-content {
    height: 248px;
}

.main-timeline .timeline-inner:after {
    content: "";
    width: 120%;
    height: 3px;
    background: #c2bebe;
    position: absolute;
    bottom: 0;
    left: 10%;
}

.main-timeline .timeline:last-child .timeline-inner:after {
    width: 120%!important;
}
.four-timeline .timeline:last-child .timeline-inner:after {
    display: none!important;
}
.description {
    font-size: 1rem!important;
    margin-top: 1rem;
    text-align: left;
}
.main-timeline .timeline:nth-child(2n) .year{
    background: #9f84c4;
}
.main-timeline .timeline:nth-child(2n) .year:before{
    border-bottom-color: #9f84c4;
    border-right-color: #9f84c4;
}
.main-timeline .timeline:nth-child(2n) .timeline-content{
    border-left-color: #9f84c4;
}
.main-timeline .timeline:nth-child(2n) .timeline-content:before{
    border-top-color: #9f84c4;
    border-left-color: #9f84c4;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon{
    border-color: #9f84c4;
}
.main-timeline .timeline:nth-child(3n) .year{
    background: #f35958;
}
.main-timeline .timeline:nth-child(3n) .year:before{
    border-bottom-color: #f35958;
    border-right-color: #f35958;
}
.main-timeline .timeline:nth-child(3n) .timeline-content{
    border-left-color: #f35958;
}
.main-timeline .timeline:nth-child(3n) .timeline-content:before{
    border-top-color: #f35958;
    border-left-color: #f35958;
}
.main-timeline .timeline:nth-child(3n) .timeline-icon{
    border-color: #f35958;
}
.main-timeline .timeline:nth-child(4n) .year{
    background: #e67e49;
}
.main-timeline .timeline:nth-child(4n) .year:before{
    border-bottom-color: #e67e49;
    border-right-color: #e67e49;
}
.main-timeline .timeline:nth-child(4n) .timeline-content{
    border-left-color: #e67e49;
}
.main-timeline .timeline:nth-child(4n) .timeline-content:before{
    border-top-color: #e67e49;
    border-left-color: #e67e49;
}
.main-timeline .timeline:nth-child(4n) .timeline-icon{
    border-color: #e67e49;
}
@media only screen and (max-width: 990px){
    .main-timeline .timeline-inner:after{
        width: 110%;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-inner:after{
        width: 0;
    }
}
@media only screen and (max-width: 767px){
    .main-timeline .timeline{
        margin-bottom: 50px;
    }
    .main-timeline .timeline-inner:after,
    .main-timeline .timeline:nth-child(2n) .timeline-inner:after{
        width: 100%;
        height: 3px;
        left: 0;
    }
}

.howComp {
    margin-top: 7rem;
}

.reusbale-wework h2 {
    color: var(--primaryCol);
    font-size: 2rem;
}
.reusbale-wework h5 {
    font-size: 1rem;
    color: #454747;
}

/* second */
.second-timeline .year {
    background: #383574;

}

.main-txt-timeline-second {
    color: #383574!important;
    font-weight: 600;
}
.second-timeline .year:before {
    content: "";
    position: absolute;
    top: -19px;
    right: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #383574;
    border-right: 10px solid #383574;
}

.second-timeline .timeline-content {
    border-left: 3px solid #383574;
}

.second-timeline .timeline-content:before {
    border-top: 10px solid #383574;
    border-left: 10px solid #383574;
}

.second-timeline .timeline-icon {
    border: 5px solid #383574;

}

/* third  */
.third-timeline .year {
    background: #F3A9B3;

}

.main-txt-timeline-third {
    color: #F3A9B3!important;
    font-weight: 600;
}
.third-timeline .year:before {
    content: "";
    position: absolute;
    top: -19px;
    right: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #F3A9B3;
    border-right: 10px solid #F3A9B3;
}

.third-timeline .timeline-content {
    border-left: 3px solid #F3A9B3;
}

.third-timeline .timeline-content:before {
    border-top: 10px solid  #F3A9B3;
    border-left: 10px solid #F3A9B3;
}

.second-timeline .timeline-content {
    border-left: 3px solid #383574;
}

.third-timeline .timeline-icon {
    border: 5px solid  #F3A9B3;

}


/* fourth  */
.four-timeline .year {
    background: #0097C2;

}

.main-txt-timeline-fopurth {
    color: #0097C2!important;
    font-weight: 600;
}

.effect-mover {
    transform: translateX(-30px);
}

.four-timeline .year:before {
    content: "";
    position: absolute;
    top: -19px;
    right: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #0097C2;
    border-right: 10px solid  #0097C2;
}

.four-timeline .timeline-content {
    border-left: 3px solid  #0097C2;
}

.four-timeline .timeline-content:before {
    border-top: 10px solid  #0097C2;
    border-left: 10px solid #0097C2;
}

.four-timeline .timeline-content {
    border-left: 3px solid #0097C2;
}

.four-timeline .timeline-icon {
    border: 5px solid  #0097C2;

}

.add-fixed-top {
    position: fixed!important;
    top: 0!important;
    right: 0!important;
    left: 0!important;
    z-index: 1030!important;
}
.menu {
    text-align: end;
}
section.main-carousel-comp {
    /*padding-top: 5rem;*/
    padding-top: 8rem;

    position: relative;
}
.asign-color {
    color: var(--primaryCol)
}

.main-carousel-comp .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 11rem;
}

.sub-menu {
    width: fit-content;
}

.categories-list li a:hover {
    color: var(--primaryCol);
}

header.header.add-fixed-top.scrolled{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* end how we work */





@media(max-width: 992px){
    .logo img{
        width: 150px;
    }
    .good-bag h4 {
        font-size: 1rem;
    }

    section.good-bag-comp.pickup .goode-bag-main-container{
        display: none;
    }
    .description {
        font-size: .9rem!important;
        margin-top: 1rem;
        text-align: left;
    }

}


@media(min-width: 780px) and (max-width: 992px){
    .waster-management-comp  .reusable-container {
        margin-top: 2rem;
    }

    .our-tem-comp .team-img-container {
        text-align: center;
        width: 227px;

    }
    .team-content-container {
        display: none;
    }

}

@media(min-width: 600px) and (max-width: 768px){
    .main-timeline .timeline:last-child .timeline-inner:after {
        display: none;
    }

    .butterr-effect h5 {
        font-size: 1.5rem;
    }

    .container-service h4 {
        font-size: 1rem;
    }

    .waster-management-comp  .reusable-container {
        margin-top: 0;
    }

    .waster-image-container {
        text-align: center;
        height: 150px;
    }

    .our-tem-comp .team-img-container img {
        height: 323.06px;
        width: 100%;
    }

    .feed-back-comp {
        background-color: #F6FEF8!important;
        background-image: url("")!important;
        background-repeat: no-repeat;
        background-size: 98%;
    }
    .footer-logo img{
        width: 150px!important;
    }

    .timeline-content {
        height: auto;
    }
    .main-timeline .timeline-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .our-tem-comp {
        padding-top: 1rem;
    }

    .timeline-icon img {
        width: 35px !important;
    }

    .howComp {
        margin-top: 2rem;
    }

    .main-carousel-comp .owl-carousel .item {
        height: 18rem;
    }

    .move-bottm-pad {
        padding-bottom: 0!important;
    }

    .good-bag-comp {
        margin-top: 0;
    }

    .align-position {
        transform: initial;
        padding-top: 2rem;
    }
}
@media(max-width: 768px){
    .header .mobile-menu-trigger {
        margin-left: auto;
    }
    .v-center > div{
        width: 50%;
    }
    .team-content-container {
        display: block;
    }

    .header .menu .menu-main {
        text-align: left;
    }

    a.login-container-btn {
        width: fit-content;
    }
    /* .goode-bag-main-container {
        display: block;
    } */




}


/* start responsive design */
@media(max-width: 576px){
    html {
        font-size: 70%;
    }

    .main-carousel-comp .owl-carousel .item {
        height: 15rem;
        text-align: center;
    }

    .main-timeline .timeline:last-child .timeline-inner:after {
        display: none;
    }

    .timeline-content {
        height: 212px;
    }

    .main-timeline .timeline-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 0;
    }
    .howComp {
        margin-top: 0;
        padding-top: 1rem;
    }
    .timeline-icon img {
        width: 34px!important;
    }
    .effect-mover {
        transform: initial;
    }

    .butter-services-comp {
        margin-bottom: 0;
    }

    .good-bag-comp {
        background: #fe9b19;
        margin-top: 0;
    }

    .imag-container-inside .line {
        display: none;
    }
    .imag-container-inside img {
        width: 30px;
    }
    .third-goode-bag-comp {
        text-align: center;
    }

    .third-goode-bag-comp .small-inner-text {
        font-size: 1rem;
    }

    .waster-management-comp {
        height: 15rem!important;
        margin: 0;
    }

    .waster-image-container {
        text-align: center;
        height: 100px;
    }

    .waster-content h4 {
        font-size: 1.3rem;
        color: #FE9B19;
    }

    .align-position {
        transform: initial;
        margin-top: 1rem;
    }

    .percentage {
        right: 1rem;
        font-size: 1rem;
    }

    .responsive-pad {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .holder-img-container {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        width: fit-content;
        margin: auto;
    }
    .footer-logo img {
        width: 100px;
    }

    .dowload-comp h4 {
        font-size: 1.5rem;
    }

    .copy-right-comp p {
        font-size: 1rem;
    }

    .appstorecomp {

        text-align: center;
    }

    .feed-back-comp {
        background-color: #F6FEF8!important;
        background-image: url("")!important;
        background-repeat: no-repeat;
        background-size: 98%;
    }
    .mini-image-container img {
        width: 60px!important;
        height: 60px!important;
    }
    .good-bag .icon-img-container img {
        width: 35px;
    }

    .good-bag-comp {
        background: rgb(74 160 182);
        margin-top: 0px;
    }

    .good-bag h4 {
        margin-top: 1rem;
    }

    .butter-services-comp {
        margin-bottom: 0px;
        padding: 3rem;
    }
    .effect-mover > div{
        margin-bottom: 1rem;
    }
    .icon-img-container-main img {
        width: 25px;
    }
    .effect-mover {
        padding: 0px;
        margin: 0px;
        margin-bottom: 0!important;
    }
    .five-box-container {
        margin-bottom: 0;
    }

    .good-bag-comp {
        background: rgb(254 155 25);
        margin-top: 0px;
    }
    .waste-goode {
        background: rgb(74 160 182);
    }

    .flex {
        justify-content: center;
    }

    .app-btn .big-txt {
        font-size: 1rem;
    }
    .v-center > div{
        width: 50%;
    }

    .timeline-content {
        height: auto;
    }
    .description {
        margin-bottom: 2rem;
    }

    .butter-fly-comp {
        padding-top: 2rem;
    }

}

.footer-categories .categories-list li a:hover{
    color: var(--primaryCol)!important;
}


.scope-container h5 {
    color: var(--primaryCol);
    margin-bottom: 1rem;
}

@media(max-width: 768px){


    .reusbale-btn-container-all a {
        width: 100%;
        display: block;
        text-align: center;
        border-top: 1px solid #fff;
        text-align: center;
        text-transform: uppercase;

    }

    .reusbale-btn-container-all {
        position: fixed;
        width: 100%;
        bottom: 0;
        display: block;
        z-index: 20;
    }
    .reusbale-btn-container-all a{
        width: 100%;
        display: block;
    }

    .about-carousel-comp  .item img {
        height: 200px!important;

    }

}

/* end responsive design */

/* start our blog */
section.blog-page-comp {
    margin-top: 6rem;
    text-align: center;
}
.reusbale-comp  h4 {
    text-transform: capitalize;
}
.blog-iner-page li a {
    color: #000;
}

.blog-page-comp h4{
    color: var(--primaryCol);
    margin-bottom: 1rem;
}
.environment-comp h4 {
    color: var(--primaryCol);
    margin-bottom: 1rem;
    text-align: center;
}
.main-blog li a {
    color: #787676;
    font-size: .9rem;
}
.about-carousel-comp  .item img {
    height: 350px;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    object-fit: contain;
}
.main-blog-container p {
    font-size: 1.2rem;
    color: var(--primaryCol);
    font-weight: 600;
}

.main-blog-container {
    border-bottom: 1px solid #807b7b7a;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 1rem;
    border-radius: 4px;
}
.related-new-comp {
    color: var(--primaryCol);
    margin-bottom: 2rem;
}
.environment-comp p {
    text-align: center;
}

.blog-page-comp {
    background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),url("../img/reusable-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-page-comp h4 {
    color: #fff;
    margin-bottom: 1rem;
}
.blog-iner-page li a {
    color: #fff!important;
}
.blog-iner-page li {
    margin-right: 1rem;
}
/* end our blog */


/*add  recently for mobile devices*/

@media(max-width: 576px){
    .carousel-content {
        display: none!important;
    }
}
