* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    /* background-color: grey; */
    font-family: sans-serif;
    overflow-x: hidden;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #FFF;
}
.top-bar img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.top-bar .header-title {
    color: #24af0c;
}

.hero-section {
    height: 80vh;
    width: 100%;
    background: url("./assets/floor_cleaning_mop.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background-position: center;
    background-size: cover;
}

.hero-section-tagline {
    font-size: 2.2rem;
    color: #FF1700;
    font-weight: 800;
}

.hero-section .title-desc {
    color: #FFF;
    font-size: 1.2rem;
    width: 70%;
    text-align: center;
    font-weight: 700;
    margin: 4% 25%;
    background-color: gray;
    padding: 8px;
}

.site-section {
    padding: 20px;
}

.section-image {
    position: relative;
}

.section-image img {
    height: 500px;
    width: auto;
    margin: 20px;
    border-radius: 8px;
}

.section-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: #FFF;
}

.section-text-title {
    color: #c01404;
    text-decoration: underline;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-text-desc {
    font-size: 1.2rem;
    word-spacing: 2px;
}

.about-us {
    display: flex;
    background-color: rgba(8, 134, 8, 0.849);
}

.banner-text {
    height: 250px;
    font-size: 1.2rem;
    background-color: #c0c0c0;

}

.products {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.mop-img{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   margin: 25px 0px;
   padding: 25px 5px;
   background-color: gray;
}
.mop-img img{
    height: 450px;
    border-radius: 8px;
    
}
.mop-img .img1{
    height: 250px;
    margin-bottom: 20px;
}
.products img {
    height: 350px;
    width: auto;
    border-radius: 5px;
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(8, 134, 8, 0.849);
}

.banner-text p {
    width: 100%;
    margin: auto;
    word-spacing: 2px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.gallery {
    width: 100%;
    display: flex;
    justify-content: center;
}

.gallery img {
    height: 450px;
    margin: auto;
}

.contacts-title {
    color: #227D11;
}

.form-wrapper {
    position: relative;
    height: 500px;
}

.bg-top-color {
    background-color: #227D11;
    height: 50%;
}

.bg-bottom-color {
    background-color: #c01404;
    height: 50%;
}
.contacts-title{
    text-align: center;
    font-size: 1.8rem;
    text-decoration: underline;
    margin-bottom: 20px;
}
.contacts-banner-text{
    text-align: center;
    background-color: #c0c0c0;
    height: 200px;
    padding: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 40px;
}
.contact-form-wrapper {
    position: absolute;
    top:20px;
    left: 100px;
    height: 450px;
    width: 80%;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
}
.address{
    /* background-color: aqua; */
    height: 94%;
    width: 50%;
    margin: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.address div{
    text-align: start;
    display: flex;
    margin: 20px;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    /* background-color: #FFF; */
}
.contact-form{
    display: flex;
    flex-direction: column;
    padding: 50px;
    width: 50%;
}
.contact-form input,.contact-form select,.contact-form textarea{
    margin: 20px 0px;
    padding: 5px;
    border: 2px solid #227D11 ;
    border-radius: 4px;
    outline: none;
}
textarea{
    font-weight: 500;
    font-family: sans-serif;
}
button{
    background-color: #26af0d;
    outline: none;
    padding: 8px;
    border: none;
    border-radius: 4px;
    color: #FFF;
    font-size: 1rem;
}
footer,.social-links{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

/* responsiveness */
@media(max-width:800px){
    .hero-section{
        height: 50vh;
    }
    .hero-section-tagline{
        font-size: 1rem;
    }
    .hero-section .title-desc{
        font-size: 1rem;
        text-align: start;
    }
    .about-us{
        flex-direction: column;
    }
    .section-texts{
        width: 100%;
        text-align: center;
    }
    .section-image img{
        width: 98%;
    }
    .products{
        flex-direction: column;
    }
    .products img{
        height: auto;
        width: 75%;
        margin: 12px 2px;
    }
    .gallery img{
        height: 250px;
    }
    .mop-img{
        flex-direction: column;
    }
    .contact-form-wrapper{
        flex-direction: column;
        width: 100%;
        left: 50px;
    }
    .form-wrapper{
        height: 800px;
    }
    .contact-form{
        width: 80%;
    }
    .address{
        width: auto;
    }
    .contacts-banner-text{
        height: auto;
        font-size: 1rem;
    }
    .banner-text p{
        font-size: 0.8rem;
        padding: 12px;
    }
}