*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Set the base font size for the root element */
}

/* Starch Start */

/* /////////////////////////////////////// */

.starch-industry-solutions{
    
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: -90px;
    margin-bottom: 120px;

    position: relative;

    /* border: 1px solid red; */
}

.starch-industry-solutions .content-industry-solutions{
    width: 100%;
    /* border: 1px solid blue; */

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.starch-industry-solutions .content-industry-solutions .card-btn-industry-solutions{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    background-color: #EAEFE1;
    border-radius: 5px;
    margin-right: 20px;
}

.starch-industry-solutions .content-industry-solutions .card-btn-industry-solutions .icon{
    margin-right: 10px;
    color: #0b4f0b;
}

.starch-industry-solutions .content-industry-solutions .card-btn-industry-solutions .name{
    color: #0b4f0b;
}

/* /////////////////////////////////////// */

.starch{
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    /* border: 1px solid red; */
}

.starch .content{
    width: 100%;
    /* border: 1px solid blue; */

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.starch .content .card-btn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    background-color: #EAEFE1;
    border-radius: 5px;
    margin-right: 20px;
}

.starch .content .card-btn:hover{
    cursor: pointer;
}

.starch .content .card-btn .icon{
    margin-right: 10px;
    color: #0b4f0b;
}

.starch .content .card-btn .name{
    color: #0b4f0b;
}

/* Starch End */

/* Products Start */

.product{
    /* border: 1px solid red; */
    height: 60vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 30px 50px;
    margin-bottom: 120px;

    position: relative;
}

.pic-right-container{
    flex-direction: row-reverse;
}

.product .image{
    width: 50%;
    height: 100%;
    /* border: 1px solid blue; */

    position: relative;
}

.product .image img{
    position: absolute;

    width: 80%;
    height: 100%;

    object-fit: cover;
}

.pic-right{
    right: 0%;
}

.product .details{
    width: 50%;
    height: 85%;
    /* border: 1px solid blue; */
}

.product .details .heading{
    color: #0b4f0b;
    margin-bottom: 15px;
}

.product .details .descriptions{
    /* border: 1px solid red; */

    margin-bottom: 10px;

    height: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product .details .desc{
    color: #000000;
    font-size: 1rem;
    word-spacing: 3px;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 19px;

    /* height: 250px;

    overflow: hidden;
    text-overflow: ellipsis; */

    /* border: 1px solid red; */
}

.product .details .btn{
    color: #488943;
    text-decoration: none;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    font-size: 1.2rem;
    word-spacing: 2px;
}

.product .details .btn .icon{
    color: #488943;
    text-decoration: none;
    margin-left: 8px;

    font-size: 1.1rem;
}

.product .details .btn:hover{
    cursor: pointer;
}

/* Products End */

.load-more{
    width: 100%;
    height: 6vh;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: -70px;
    margin-bottom: 150px;

    transition: .5s ease-in;
}

.load-more p{
    color: #488943;
    text-decoration: none;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;

    background-color: #fff;
    border: 1px solid #488943;

    transition: .5s ease-in;
}

.load-more p:hover{
    cursor: pointer;
    background-color: #0b4f0b;
    color: #fff;
}

#paragraphs p{
    text-align: left;
}

#load-more-content{
    position: relative;
}

#loading-circles{
    width: 35px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}