﻿
.banner {
    background-size: contain;
    background-repeat: no-repeat;
    height: 700px;
}

.banner_laundry_care {
    background-image: url('../resources/images/banners/Laundry.jpg');
}

.banner_household_care {
    background-image: url('../resources/images/banners/HomeCare.jpg');
}

.banner_personal_care {
    background-image: url('../resources/images/banners/Personal.png');
}

.center {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 1000;
    position: relative;
    padding: 0 25%;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.facebook {
    background-color: #00a1e4;
}

.twitter {
    background-color: #00a1e4;
}

.social-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
    color: white;
}

.icon_fill {
    display: block;
    width:100%;
    height: 100%;
}



.carousel_container {
    width: 90%;
    margin: auto;
    overflow: hidden; 
    position: relative;
}

.carousel_track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.carousel_card {
    flex: 0 0 33.333%; 
    box-sizing: border-box;
    padding: 20px;
}

.prod_box {
    background-color: #ffffff;
    padding-top: 12em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 1em;
    border-radius: 10px;
    width: 90%;
    margin-bottom: 3em;
    position: relative;
    margin-top: 9em;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2); 
    height:445px;
}

    .prod_box img {
        width: 100%;
        margin-bottom: 2em;
        position: absolute;
        z-index: 10;
        left: 0px;
        right: 0px;
        top: -9.5em;
        height: auto
    }



.dots_container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 20px;
    width: 20px;
    margin: 0 5px;
    background-color: #60c1e9;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

    .dot.active {
        background-color: white;
        transform: scale(1.2); 
    }