#products {
        text-align: center;
        list-style: none;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
}

.product {
        max-width: 450px;
        height: 500px;
        background-color: #FFF;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        margin: 15px;
}

.product-img {
        height: 49%;
        background: #00017f;
	overflow: hidden;
	border-bottom: 5px solid #00017f;
}

.product-img img {
        width: 100%;
}

.product-text {
        margin-top: 1%;
        height: 50%;
        padding: 15px;
        scrollbar-width: thin;
        scrollbar-color: #00017f #fff;
        overflow-y: scroll;
}

.product-text h3 {
	font-size: 3rem !important;
        margin-top: 0px;
}

.product-text ul,
.product-text p {
        font-weight: normal;
        font-size: 1.5rem !important;
        text-align: justify;
        hyphens: auto;
}

.product-text ul {
        margin-left: 15px;
}

@media only screen and (max-width: 1024px) {

	.product {
        	max-width: 100%;
		height: 100%;
		margin: 50px;
	}

	.product-img {
	        background: #00017f;
		border-bottom: 10px solid #00017f;
	}

	.product-text {
        	margin-top: 1%;
        	
		padding: 15px;
        	scrollbar-width: thin;
        	scrollbar-color: #00017f #fff;
        	overflow-y: visible;
	}

}
