.product {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 70px;
}

.product-content {
    display: flex;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    background: #218B54;
    justify-content: center;
    padding: 50px 50px;
    width: 90%;
    height: fit-content;
}

.product-title {
    display: flex;
    color: white;
    margin-bottom: 20px;
}

.product-title h1 {
    font-size: 40px;
}

.product-title-line {
    margin-left: 10px;
}

.product-img {
    display: flex;
    background: url("../../assets/product/defaultPhone.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 40%;
    min-height: 575px;
    border-radius: 20px;
}

.product-solusigoods {
    width: 50%;
}

.product-list {
    display: flex;
    background-color: #259E5F;
    padding: 10px 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.product-list:hover {
    background-color: #F4F3F9;
}

.product-list:hover .product-list-desc {
    color: black;
}

.product-1:hover ~ .product-img {
    background: url("../../assets/product/Mockup\ Product\ 1.png");
}

.product-svg {
    background-color: #F78055;
    padding: 10px 10px;
    border-radius: 20px;
}


.product-lists {
    width: 90%;
}

.product-list-desc {
    color: white;
    margin-left: 20px;
    font-size: 15px;
}

#product-list-3 {
    margin-bottom: 0;
}

.product-marquee {
    background-color: #259E5F;
}

.marquee-item {
    display: flex;
    flex-direction: row;
    margin-right: 48px;
    align-items: center;
    word-wrap: normal;
}

.marquee-item p {
    font-size: 25px;
    color: white;
    margin-left: 10px;
}
.marquee-item span {
    font-size: 25px;
    color: white;
}

.marquee-item img {
    width: 50px;
    height: 50px;
}

.marquee-items {
    display: flex;
    opacity: 0.25;
    position: absolute;
    left: 0;
    animation: marquee 120s linear infinite;
}

.marquee {
    height: 60px;
    display: flex;
    align-items: center;
    padding-block: 5px;
    overflow: hidden;
    position: relative;
}

@keyframes marquee {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

@media (max-width: 1100px) {

    .product-title h1 {
        font-size: 30px;
    }

    .product-title-line svg {
        width: 200px;
        height: 20px;
    }

    .product-img {
        margin-top: 15%;
        max-width: 50%;
        max-height: 50%;
    }
}

@media (max-width: 850px) {
    .product-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-img {
        min-width: 30rem;
        min-height: 30rem;
    }

    .product-lists {
        width: 100%;
    }

    .product-solusigoods {
        width: 80%;
    }
    .product-title {
        justify-content: center;
        text-align: center;
    }

}

@media (max-width: 550px) {
    .product-solusigoods {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-title h1 {
        font-size: 25px;
    }

    .product-title-line svg {
        width: 160px;
    }

    .product-img {
        min-height: 25rem;
        min-width: 25rem;
    }

    .product-content {
        padding: 20px;
        width: 100%;
    }

    .marquee-item p {
        font-size: 20px;
        color: white;
        margin-left: 10px;
    }

    .marquee-item img {
        width: 40px;
        height: 40px;
    }

    .marquee-items {
        display: flex;
        opacity: 0.25;
    }

    marquee {
        height: 50px;
        display: flex;
        align-items: center;
        padding-block: 5px;
    }
}

@media (max-width: 500px) {
    .product-content {
        padding-inline: 10px;
    }
    .product-title {
        text-align: center;
    }
}

@media (max-width: 450px) {
    .product-content {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .product-img {
        min-height: 20rem;
        min-width: 20rem;
    }

    .product-title h1 {
        font-size: 22px;
    }

    .product-title-line svg {
        width: 120px;
    }

    .product-svg svg {
        width: 30px;
        height: 30px;
    }

    .product-list-desc h2 {
        font-size: 20px;
    }

    .product-list p {
        font-size: 10px;
    }
}