/* Header */
.header{
    background-color: #84cae2 ;
    color: #fff;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

.navbar__home{
    color: #fff;
}

.navbar__links{
    display: none;
}

.navbar__title{
    font-size: 1rem;
    text-transform: uppercase;
}

/* Hero */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.hero{
    text-align: center;
    padding: 12rem 0 10rem;
    background: linear-gradient(120deg, #e0f7fa, #ffffff);
    position: relative;
    z-index: -1;
}

.bubble {
    width: 22%;
    padding-top: 22%;
    background: linear-gradient(
        145deg, 
        rgba(173, 216, 230, 0.6), 
        rgba(255, 255, 255, 0.3)
    );
    border-radius: 50%;
    position: absolute;
    animation: float 6s infinite;
    top: -8%;
    left: 2%;
}

.second-bubble{
    width: 20%;
    padding-top: 20%;
    top: -18%;
    left: 11%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3vh);
    }
    100%{
        transform: translateY(0);
    }
}

.hero__title{
    color: #333333;
    max-width: 16ch;
    margin: 0 auto;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero__hr{
    background: linear-gradient(90deg, #84cae2, #5398c5);
    height: 5px;
    width: 50%;
    border: none;
    margin: 1.5rem auto;
    border-radius: 2px;
}

.hero__description{
    color: #8a8a8a;
    max-width: 27ch;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero__btn{
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.fa-broom{
    position: absolute;
    font-size: 10rem;
    bottom: -25%;
    right: 10%;
    background: linear-gradient(
        145deg, 
        rgba(139, 198, 218, 0.6), 
        rgba(255, 255, 255, 0.3)
      );
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    z-index: -1;
}

/* Work */
.work{
    background-color: #84cae2;
    color: #fff;
    padding: 3rem 1rem 2rem;
}

.work__title{
    text-align: center;
}

.work__card{
    background: linear-gradient(120deg, #e0f7fa, #ffffff);
    padding: 1rem;
    border: 2px dashed #000;
    border-radius: 10px;
    color: #333333;
    width: 80%;
    /* margin: 1.5rem auto; */
    position: relative;
    overflow: hidden;
}

.work__card:first-of-type, .work__card:last-of-type{
    margin: 2.5rem 0 2.5rem 4.5rem;
}

.work__card .work__card-second{
    margin: 2rem 0 2rem 1rem;
}

.work__bubble{
    animation: none;
}

.work__bubble-first{
    top: 6%;
    left: -6%;
}

.work__bubble-second{
    top: -2%;
    left: 3%;
}

.work__bubble-first-of-second{
    left: unset;
    right: -12%;
}

.work__bubble-second-of-second{
    left: unset;
    right: -3%;
}

.work__card-numerino{
    font-size: 1.5rem;
    position: absolute;
    top: 3%;
    left: 5%;
}

.work__card-numerino-second{
    right: 3%;
    left: unset;
}

.work__card-description{
    margin: 1.5rem 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Product */
.product{
    padding-top: 3rem;
    color: #333333,
}

.product-container{
    margin-inline: auto;
}

.product__title{
    font-size: 1.6rem;
    color: #333333;
    text-align: center;
}

.product__hr{
    background: linear-gradient(90deg, #84cae2, #5398c5);
    height: 5px;
    width: 50%;
    border: none;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.product__box{
    /* border: 1px solid red; */
    margin: 4rem 0;
}

.product__box-title{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product__box-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.product__box-icon{
    flex: 1;
    /* border: 1px solid yellow; */
    text-align: center;
}

.fa-jug-detergent, .fa-spray-can-sparkles{
    font-size: 4rem;
    background: linear-gradient(
        145deg, 
        rgba(125, 195, 218, 0.6), 
        rgba(255, 255, 255, 0.3)
      );
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.product__box-text{
    flex: 3;
    /* border: 1px solid blue; */
}

.product__box-description{
    text-align: end;
    font-size: 0.8rem;
}

.vetri{
    text-align: start;
}

/* Media query */
@media (min-width: 475px){
    .header-container{
        max-width: 640px;
    }

    .product-container{
        max-width: 475px;
    }

    .container{
        max-width: 475px;
    }

    .hero__title{
        font-size: 2rem;
    }

    .work__card-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .work__card{
        max-width: 17rem;
    }

    .work__card:first-of-type, .work__card:last-of-type{
        margin: 2.5rem 0 2.5rem 6.5rem;
    }

    .work__card .work__card-second{
        margin: 2rem 0 2rem -2rem;
    }
}

@media (min-width: 640px){
    .header-container{
        max-width: 768px;
    }

    .container{
        max-width: 640px;
    }

    .header{
        padding: 0.3rem 0.5rem;
    }

    .navbar__title{
        font-size: 1.4rem;
    }

    .navbar__home{
        font-size: 2.15rem;
    }

    .hero{
        padding-top: 8rem;
    }

    .hero__title{
        font-size: 2.2rem;
    }

    .hero__hr{
        height: 4px;
    }

    .hero__description{
        font-size: 1.3rem;
    }

    .work__title{
        font-size: 2rem;
    }

    .work__card-container{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
        margin-top: 4rem;
    }

    .work__card:first-of-type, .work__card:last-of-type{
        margin: 0;
    }

    .work__card .work__card-second{
        margin: 0;
    }

    .work__card{
        max-width: 18rem;
    }

    .work__card-numerino-second{
        right: unset;
        left: 3%;
    }

    .work__bubble-first{
        top: 0;
        left: 0;
    }

    .work__bubble-second{
        top: -3%;
        left: 3%;
    }

    .work__card-description{
        font-size: 1.1rem;
    }
}

@media (min-width: 768px){
    .header-container{
        max-width: 1024px;
    }

    .product-container{
        max-width: 768px;
    }

    .container{
        max-width: 768px;
    }

    /* .header{
        padding: 0.5rem 0.7rem;
    } */

    .navbar__title{
        font-size: 1.6rem;
    }

    .navbar__home{
        font-size: 2.3rem;
    }

    .hero__title{
        font-size: 2.4rem;
    }

    .hero__description{
        font-size: 1.5rem;
    }

    .bubble{
        width: 18%;
        padding-top: 18%;
    }

    .second-bubble{
        width: 16%;
        padding-top: 16%;
    }

    .work{
        padding-bottom: 4rem;
    }

    .work__title{
        font-size: 2.3rem;
    }

    .work__card{
        max-width: 21rem;
        min-height: 21rem;
        max-height: 21rem;
    }

    .work__card-description{
        font-size: 1.3rem;
    }

    .product__title{
        font-size: 2.5rem;
    }

    .product__box{
        margin-top: 2rem;
    }

    .product__box:first-of-type{
        margin-top: 4rem;
    }

    .product__box-title{
        font-size: 1.6rem;
    }

    .product__box-description{
        font-size: 1rem;
        max-width: 45ch;
    }

    .fa-jug-detergent, .fa-spray-can-sparkles{
        font-size: 5rem;
    }
}

@media (min-width: 1024px){
    .header-container{
        max-width: 1280px;
    }

    .container{
        max-width: 1024px;
    }

    /* .hero{
        padding-top: 6rem;
    } */

    .hero__title{
        font-size: 2.7rem;
    }

    .hero__hr{
        width: 35%;
        margin: 1.3rem auto 2rem;
    }

    .hero__description{
        font-size: 1.6rem;
    }

    .bubble{
        width: 12%;
        padding-top: 12%;
        top: 0;
        left: 20%
    }

    .second-bubble{
        width: 10%;
        padding-top: 10%;
        top: -10%;
        left: 26%;
    }

    .fa-broom{
        bottom: -15%;
        right: 20%;
    }

    .work__title{
        font-size: 2.5rem;
    }

    .work__card{
        max-width: 24rem;
    }

    .work__card-description{
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px){
    .header-container{
        max-width: 1536px;
    }

    .product-container{
        max-width: 1024px;
    }

    .container{
        max-width: 1280px;
    }

    .hero__hr{
        width: 25%;
        height: 5px;
    }

    .bubble{
        width: 10%;
        padding-top: 10%;
        left: 25%;
    }

    .second-bubble{
        width: 8%;
        padding-top: 8%;
        left: 31%;
    }

    .fa-broom{
        right: 28%;
    }

    .work__title{
        font-size: 2.7rem;
    }

    .work__card{
        min-height: 22rem;
        max-height: 22rem;
    }

    .product__title{
        font-size: 2.5rem;
    }

    .product__box{
        margin-top: 3rem;
    }

    .product__box:first-of-type{
        margin-top: 8rem;
    }

    .product__box-title{
        font-size: 2rem;
    }

    .product__box-description{
        font-size: 1.3rem;
    }

    .fa-jug-detergent, .fa-spray-can-sparkles{
        font-size: 7rem;
    }
}

@media (min-width: 1536px){
    .header-container{
        max-width: 2000px;
    }

    .container{
        max-width: 1536px;
    }

    .hero__title{
        font-size: 3rem;
    }

    .hero__description{
        font-size: 1.8rem;
    }
}



