*{
    padding: 0px;
    margin: 0px;
    text-decoration: none;
/*     list-style: none; */
    font-family: 'Poppins';
}

.container{
    max-width: 1140px;
    margin: 50px auto;
}
.header-product{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.image-product{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}
.image-product img{
    width: 100%;
    height: 100%;
    max-height: 500px;
    max-width: 300px;
    object-fit: cover;
}
.info-products{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}
.info-products p{
    font-size: 16px;
    font-weight: normal !important;
}
.info-products h1{
    line-height: 1.5 !important;
    padding: 0px !important;
    margin: 0px !important;
	font-size: 27px !important;
}
.info-products a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--e-global-color-secondary) !important;
    color:#fff !important;
    font-weight: normal !important;
    border: 1px solid #018400 !important;
    border-radius: 3px !important;
    max-width: 200px !important;
    height: 40px !important;
    transition: 0.3s ease-in-out;
}
.info-products a:hover{
    background-color: var(--e-global-color-accent) !important;
    color: white;
}
.extra-infos{
    margin-top: 100px;
}
.extra-infos p{
    font-weight: normal !important;
}
.extra-infos h3{
    font-size: 21px;
    font-weight: 500 !important;
    color: #018400;
    margin-bottom: 10px;
}
.extra-infos h3,.extra-infos h2,.extra-infos h4,.extra-infos h5{
	font-weight: 500;
    margin: 20px 0px;
}
b, strong{
	font-weight: 700 !important;
}
@media (max-width: 800px){
	.container{
		padding:20px;
	}
    .header-product{
        flex-direction:column;
	}
	.image-product,.info-products{
		width:100%;
	}
}