.products__cover-section{
    width:100%;
    height:auto;
    background-color:#efeee9;
}
.products__cover--inner-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:400px;
    padding:25px 15px 25px 15px;
    margin-left:auto;
    margin-right:auto;
    color:#000;
    text-align:center;
}
.products__cover--inner-container h1{
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:2rem;
    margin-bottom:25px;
}
.products__cover--inner-container p{
    font-family:"Lato-Regular", "Arial", "Helvetica", sans-serif;
    font-size:1.25rem;
    margin:0;
}
.products__services-section{
    width:100%;
    height:auto;
    background-color:#fafaf8;
}
.products__services--inner-container{
    width:100%;
    height:auto;
    padding:100px 15px 100px 15px;
    margin-left:auto;
    margin-right:auto;
}
.products__services--flex-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:50px;
    width:100%;
    height:auto;
    margin-bottom:50px;
}
.services-card{
    width:100%;
    height:auto;
    padding:25px;
    color:#000;
    background-color:#fff;
    border:solid 1px rgba(112, 112, 112, 0.5);
    border-radius:10px;
}
.services-card-header{
    display:flex;
    align-items:center;
    width:100%;
    height:auto;
    margin-bottom:25px;
}
.services-card-icon{
    flex-shrink:0;
    width:70px;
    height:70px;
    margin-right:25px;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
}
.services-card-header h4{
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:1.25rem;
    line-height:2rem;
}
#draining-card{
    background-image:url(../res/empty-tank-icon-green.png);
}
#disposal-card{
    background-image:url(../res/dispose-icon-green.png);
}
#recycling-card{
    background-image:url(../res/recycle-icon-green.png);
}
#sales-card{
    background-image:url(../res/sale-rags-icon-green.png);
}
.services-card p{
    font-family:"Lato-Regular", "Arial", "Helvetica", sans-serif;
    font-size:1.125rem;
    line-height:1.875rem;
    margin:0;
}
.products-contact-link{
    display:block;
    width:fit-content;
    height:auto;
    padding:15px 25px 15px 25px;
    margin-left:auto;
    margin-right:auto;
    color:#fff;
    background-color:#81c12d;
    text-decoration:none;
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:1.125rem;
    text-align:center;
    border-radius:7px;
}
.products-contact-link:hover{
    opacity:0.7;
}
.products__training-section{
    width:100%;
    height:auto;
    background-color:#fff;
}
.products__training--inner-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    height:auto;
    padding:100px 15px 100px 15px;
    margin-left:auto;
    margin-right:auto;
}
.products-training-left{
    width:100%;
    height:auto;
}
.products-training-right{
    width:100%;
    height:auto;
}
.products-training-img-div{
    width:100%;
    height:100%;
    margin-left:auto;
    margin-right:auto;
    overflow-x:hidden;
}
.products-training-img-div img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}
.products-training-right-heading-div{
    margin-bottom:25px;
}
.products-training-right h1{
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:2rem;
    line-height:3rem;
    margin:0;
}
.products-training-right p{
    font-family:"Lato-Regular", "Arial", "Helvetica", sans-serif;
    font-size:1.125rem;
    margin-bottom:25px;
}
.products-training-list{
    list-style:none;
    padding:0;
    margin:0;
}
.products-training-list-item{
    position:relative;
    padding-left:35px;
    color:#000;
}
.products-training-list-item:not(:last-child){
    margin-bottom:35px;
}
.products-training-list-item::before{
    content: '';
    position:absolute;
    left:0;
    top:3px;
    width:25px;
    height:25px;
    background-image:url(../res/check-icon-green.png);
    background-size:contain;
    background-position:center bottom;
    background-repeat:no-repeat;
}
.products-training-list-heading{
    display:block;
    margin-bottom:10px;
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:1.25rem;
}
.products-training-list-item p{
    margin:0;
}
.products__images-section{
    width:100%;
    height:auto;
    background-color:#81c12d;
}
.products__images--inner-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    width:100%;
    height:auto;
    padding:100px 15px 100px 15px;
    margin-left:auto;
    margin-right:auto;
}
.products-images-card{
    width:100%;
    height:50vw;
}
.products-images-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}
@media(min-width:1441px){
    .products__cover--inner-container,
    .products__services--inner-container,
    .products__training--inner-container,
    .products__images--inner-container{
        max-width:1440px;
    }
}
@media(min-width:1281px) and (max-width:1440px){
    .products__cover--inner-container,
    .products__services--inner-container,
    .products__training--inner-container,
    .products__images--inner-container{
        max-width:1280px;
    }
}
@media(min-width:1281px){
    .products-training-img-div{
        height:350px;
    }
    .products-images-card{
        height:250px;
    }
}
@media(min-width:992px) and (max-width:1280px){
    .products__cover--inner-container,
    .products__services--inner-container,
    .products__training--inner-container,
    .products__images--inner-container{
        max-width:991px;
    }
}
@media(min-width:992px){
    .services-card-icon{
        width:80px;
        height:80px;
    }
    .services-card-header h4{
        font-size:1.5625rem;
        line-height:2.25rem;
    }
}
@media(min-width:768px) and (max-width:1280px){
    .products-training-img-div{
        height:250px;
    }
    .products-images-card{
        height:150px;
    }
}
@media(min-width:768px) and (max-width:991px){
    .services-card-icon{
        width:70px;
        height:70px;
    }
    .services-card-header h4{
        font-size:1.25rem;
        line-height:2rem;
    }
}
@media(min-width:768px){
    .products__cover--inner-container h1{
        font-size:3.125rem;
    }
    .products__cover--inner-container p{
        font-size:1.5625rem;
    }
    .services-card{
        width:calc(50% - 25px);
    }
    .products-training-left{
        width:50%;
        height:auto;
        padding-right:12.5px;
    }
    .products-training-right{
        width:50%;
        height:auto;
        padding-left:12.5px;
    }
    .products-images-card{
        width:calc(33.33% - 18px);
    }
}
@media(max-width:767px){
    .products-training-left{
        margin-bottom:50px;
    }
    .products-training-right-heading-div{
        text-align:center;
    }
}
@media(min-width:576px) and (max-width:767px){
    .products-training-img-div{
        width:500px;
        height:300px;
    }
    .products-images-card{
        width:500px;
        height:250px;
    }
}
@media(min-width:451px) and (max-width:767px){
    .products__cover--inner-container h1{
        font-size:2.5rem;
    }
    .services-card-icon{
        width:80px;
        height:80px;
    }
    .services-card-header h4{
        font-size:1.5625rem;
        line-height:2.25rem;
    }
}
@media(min-width:451px){
    .products__cover--inner-container{
        min-height:500px;
    }
    .products__cover--inner-container{
        padding:25px;
    }
    .products__services--inner-container,
    .products__training--inner-container,
    .products__images--inner-container{
        padding:100px 25px 100px 25px;
    }
}
@media(max-width:350px){
    .products__cover--inner-container{
        min-height:100vw;
    }
    .products__cover--inner-container h1{
        font-size:9vw;
        line-height:12vw;
    }
    .products__cover--inner-container p{
        font-size:5.5vw;
        line-height:8vw;
    }
    .services-card{
        padding:15px;
    }
    .services-card-icon{
        width:20vw;
        height:20vw;
        margin-right:8vw;
    }
    .services-card-header h4{
        font-size:5.5vw;
        line-height:8vw;
    }
    .services-card p{
        font-size:5vw;
        line-height:8vw;
    }
    .products-contact-link{
        padding:10px 15px 10px 15px;
        font-size:5vw;
        line-height:8vw;
    }
    .products-training-right h1{
        font-size:9vw;
        line-height:12vw;
    }
    .products-training-right p{
        font-size:5.5vw;
        line-height:9vw;
    }
    .products-training-list-item{
        padding-left:10vw;
    }
    .products-training-list-item::before{
        width:7vw;
        height:7vw;
    }
    .products-training-list-heading{
        font-size:5.75vw;
    }
}