
   .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .text {
        text-align: justify;
        font-size: 18px;
        line-height: 1.6;
        padding-right: 10px;
    }

    .image-container {
        flex: 1;
        text-align: center;
        max-width: 400px; /* Adjust the image-container width */
    }

    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .about-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }
	
    
 .content-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .image-container {
        flex: 1;
        text-align: center;
        max-width: 400px; /* Adjust the image-container width */
    }

    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .product-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .product-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .product-actions a {
        text-decoration: none;
        color: #fff;
        background-color: #007bff; /* Button color */
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        transition: background-color 0.3s, transform 0.2s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for button effect */
    }

    .product-actions a:hover {
        background-color: #0056b3; /* Button hover color */
        transform: translateY(-2px); /* Slight lift on hover */
    }

    .product-actions a i {
        margin-right: 8px; /* Spacing between icon and text */
    }


/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    overflow: hidden;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 0;
    z-index: 100;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    padding:0px;
    cursor: pointer;
	transform: translateY(-3px);
}

.btn-floating span {
    font-size: 16px;
    margin-left: 0px;
    transition: .2s;
    line-height: 35px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    background-color: #FF0000;
    text-align: center;
    line-height: normal;
}

.btn-floating.phone:hover {
    background-color: #FF0000;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    text-align: center;
    line-height: normal;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12;
}


*, *::before, *::after{
    box-sizing: border-box;    
}
body {
    position: relative;
}
.mf-social-side-list {
    position: fixed;
    bottom: 5vh;
    left: 10px;
    z-index: 100;
}
.mf-social-side-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
   padding: 0;
   margin:0
}
.mf-social-side-list ul li a {
    color: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mf-social-side-list ul li a:hover {
    opacity: .9;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
.mf-social-side-list ul li a[href*='facebook'] {
    background: #3b5998;
}
.mf-social-side-list ul li a[href*='instagram'] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);;
}
.mf-social-side-list ul li a[href*='linkedin'] {
    background: #0077B5;
}
.mf-social-side-list ul li a[href*='twitter'] {
    background:#00acee;
}