@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Cairo:wght@200..1000&family=Hepta+Slab:wght@1..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
}
body{
    font-size: 15px;
}
section{
    padding: 10px 200px;
}
p{
    line-height: 25px;
}
.title{
    color: #008037;
    text-align: center;
    padding: 10px 0px;
    font-size: 20px;
}
.line{
    background-color: #FFB803;
    height: 5px;
    width: 120px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 10px;
}
.line2{
    background-color: #F2430D;
    height: 2px;
    width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 10px;
}
.list-problem{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.item-problem{
    padding: 10px;
    box-shadow: 2px 2px 10px 2px rgb(200, 200, 200);
}
.item-problem img{
    width: 100%;
}
.item-problem p{
    text-align: center;
    padding: 10px 0px;
}
.recommended{
    background: #4D7F38;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.recommended h1{
    font-family: "Hepta Slab", serif;
    color: white;
    font-size: 28px;
    text-align: center;
    padding: 10px 0px;
}
.content-recommended{
    color: white;
    padding: 10px 0px;
}
.list-uses{
    padding: 10px 0px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 10px;
}
.uses{
    display: flex;
    gap: 10px;
    color: white;
}
.quantity-uses{
    font-size: 50px;
    font-weight: bold;
}
.quantity-uses p{
    padding-bottom: 15px;
    border-bottom: 3px solid #FFB803;
}
.content-quantity ul{
    padding-left: 17px;
}
.title-about{
    color: #008037;
}
.content-about{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 10px;
}
.content-about > div > p{
    padding-bottom: 10px;
}
.about{
    font-size: 16px;
}
.ingredient{
    margin-top: 10px;
}
.title-ingredient{
    color: #008037;
}
.content-ingredient{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.image-ingredient img{
    width: 100%;
}
.text-ingredient p{
    padding-bottom: 20px;
}
.gift{
    font-size: 16px;
}
.gift-1{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: center;
}
.text-gift-1{
    grid-column: 1/3;
}
.text-gift-1 p{
    line-height: 30px;
}
.image-gift-1{
    grid-column: 3/4;
}
.image-gift-1 img{
    width: 100%;
}
.gift-2{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: center;
}
.text-gift-2{
    grid-column: 2/4;
}
.text-gift-2 p{
    line-height: 30px;
}
.image-gift-2{
    grid-column: 1/2;
}
.image-gift-2 img{
    width: 100%;
}
.contact{
    text-align: center;
    font-size: 17px;
}
a.btn-buynow{
    display: block;
    width: max-content;
    font-size: 25px;
    font-weight: bold;
    background-color: #F2430D;
    color: white;
    border-radius: 100px;
    padding: 20px 50px;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}
.buy{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    background-image: url(../image/banner-tia-to.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.buy::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.5);
}
.form-buy{
    z-index: 2;
    grid-column: 1/2;
    background-color: white;
    padding: 15px;
    /* height: max-content; */
}
.form-buy > h3{
    margin-bottom: 10px;
    padding-top: 5px;
    color: #132C57;
}
.form-buy input{
    box-sizing: border-box;
    width: 100%;
    border: 1.5px solid #E1E4EA;
    padding: 15px 10px;
    margin-bottom: 10px;
    outline: none;
}
.form-buy textarea{
    box-sizing: border-box;
    width: 100%;
    border: 1.5px solid #E1E4EA;
    padding: 10px;
    margin-bottom: 10px;
    outline: none;
}
.form-buy button{
    padding: 15px;
    font-weight: bold;
    background-color: #FFB803;
    color: white;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: 0.2s ease-in;
    box-shadow: 5px 2px 5px 0px rgb(214, 214, 214);
}
.form-buy button:hover{
    opacity: 0.9;
    color: #282727;
    transition: 0.2s ease-in;
}
.form-buy input::placeholder{
    color: #636363;
}
.list-product{
    grid-column: 2/4;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    z-index: 2;
    gap: 10px;
}
.product{
    background-color: white;
    padding: 10px;
    text-align: center;
}
.product img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.text-center{
    text-align: center;
}
.sub-title-test{
    font-size: 17px;
}
.testimonial{
    margin-top: 20px;
}
.list-testimonial{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px;
}
.a-testimonial{
    min-height: 100%;
}
.a-testimonial img{
    width: 90px;
    height: 90px;
    border-radius: 100%;
    object-fit: cover;
}
.text-testimonial{
    padding: 15px;
    background-color: rgb(245, 245, 245);
    color: #6f6e6e;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 5px;
    height: 180px;
}
.policy{
    background-color: #A5E0EE;
    margin: 30px 0px;
}
.title-policy{
    /* color: white; */
    color: black;
}
.list-policy{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding-bottom: 20px;
}
.img-poli{
    height: 150px;
    width: 150px;
    margin: auto;
}
.a-policy img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.a-policy p{
    /* color: white; */
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
}
.content-certification{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    align-items: center;
}
.img-certification img{
    width: 100%;
}
.dot-success{
    width: 10px;
    height: 10px;
    background-color: #FDA403;
    border-radius: 100%;
}
.item-cer{
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 17px;
    margin-bottom: 10px;
    color: #282727;
    font-weight: bold;
}
/* --------------------------------- SLIDER --------------------------------- */
.image-slider-container {
    width: 100%;
    text-align: center;
}
.image-banner {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}
.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.banner-controls button,.thumbnail-list button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%;
}
.thumbnail-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}
.thumbnail-list img.active {
    border: 2px solid red;
}
/* --------------------------------- SLIDER --------------------------------- */
.contact-now button{
    padding: 15px 30px;
    font-weight: bold;
    background-color: #FFB803;
    color: white;
    border: none;
    border-radius: 5px;
    outline: none;
    width: max-content;
    cursor: pointer;
    transition: 0.2s ease-in;
}
.contact-now button:hover{
    background-color: #FFB803;
    color: #282727;
}
section.contact-act{
    color: white;
    background: linear-gradient(to right, #5DA041, #008037);
}
.contact-act{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 30px 0px;
}
.contact-now{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.text-contact h2{
    font-weight: normal;
    font-size: 30px;
}
.text-contact p{
    padding-top: 10px;
}
.inf-contact span{
    font-size: 25px;
}
footer p{
    color: gray;
    text-align: center;
    line-height: 35px;
}
.aweb{
    color: #F2430D;
}