@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');


/* Home section */
.product_home video {
    object-fit: cover !important;
      height: 600px;
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 10px;
    bottom: 0;
}

@media (max-width:575px) {
  .product_home video {

}

}

/* AROMATIC COFFE MACHINE */
.product_header h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}

.aromatic_coffe_machine {
    padding: 80px 0;
    background-color: #FFFBEF;
}

.aromatic_img_box img {
    max-width: 262px;
    width: 100%;
    height: 385px;
    max-height: 100%;
    object-fit: contain;
    padding: 30px 30px 0px 30px;
}

@media (max-width:991px) {
    .aromatic_img_box img {
        height: 264px;
    }
}

@media (max-width:575px) {
    .aromatic_img_box img {
        height: 205px;
    }
}

.aromatic_img_box {
    text-align: center;
    background-color: #FBEBD0;
    border-radius: 10px 10px 0px 0px;
}

.aromatic_section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    row-gap: 55px;
}

.hover_option {
    opacity: 0;
    text-align: center;
    background-color: rgb(157, 64, 12);
    width: 100%;
    height: 40px;
    bottom: 0px;
    padding: 10px 20px;
    transition: 0.3s ease-in-out;

}


.aromatic_product_box:hover .hover_option {
    opacity: 1;
}

@media(max-width:991px) {
    .hover_option {
        opacity: 1;
    }
}

.hover_option p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;

}

@media(max-width:991px) {
    .hover_option p {
        font-size: 12px;
    }
}


.aromatic_content {
    padding: 20px;
}

.aromatic_content h5 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.aromatic_content p {
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    text-align: center;
}

.aromatic_product_box {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;

}


.aromatic_product_box:hover .aromatic_section {
    padding-top: 80px;
}

@media (max-width:991px) {
    .aromatic_coffe_machine {
        padding: 50px 0;
    }

    .aromatic_section {
        gap: 30px;
    }

    .aromatic_content {
        padding: 12px;
    }

    .aromatic_content h5 {
        font-size: 16px;
    }

    .aromatic_content p {
        font-size: 15px;
        margin-bottom: 0px;
    }
}

@media (max-width:575px) {
    .aromatic_coffe_machine {
        padding: 30px 0;
    }

    .product_header h3 {
        font-size: 24px;
    }

    .aromatic_section {
        padding: 20px 0 0;
        gap: 10px;
    }

    .aromatic_section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* parallax */

.parallax {
    background-image: url(/assets/images/parallax_bg.jpg);
    width: 100%;
    height: 350px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 3.44%, rgba(0, 0, 0, 0) 100%);
}

.parallax h3 {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 123;
    font-size: 46px;
    font-weight: 800;
    padding-top: 11%;
}

.parallax p {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 123;
    font-size: 46px;
    font-weight: 800;
}

@media (max-width:991px) {
    .parallax h3 {
        font-size: 28px;
        padding-top: 10%;
    }

    .parallax p {
        font-size: 28px;
    }

    .parallax {
        height: 200px;
    }
}

@media (max-width:575px) {
    .parallax h3 {
        font-size: 21px;
    }

    .parallax p {
        font-size: 21px;
    }

    .parallax {
        height: 160px;
    }
}

/* PRODUCT VALUES */

.product_values {
    padding: 80px 0;
}


.product_value_option {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
}

.product_value_option .value_box {
    text-align: center;
}

.product_value_option .value_box img {
    height: 120px;
    max-width: 120px;
    width: 100%;
    margin-bottom: 20px;
    object-fit: contain;
}

.product_value_option .value_box h5 {
    font-size: 24px;
    font-weight: 700;
}

.product_value_option .value_box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
}

@media (max-width:991px) {
    .product_values {
        padding: 50px 0px;

    }

    .product_value_option .value_box img {
        max-width: 100px;
    }

    .product_value_option {
        gap: 30px;
    }

    .product_value_option .value_box h5 {
        font-size: 18px;
    }

    .product_value_option .value_box p {
        font-size: 16px;
    }
}

@media (max-width:575px) {
    .product_values {
        padding: 30px 0px;

    }

    .product_value_option {
        grid-template-columns: repeat(2, 1fr);
    }

    .product_value_option .value_box img {
        max-width: 70px;
    }

    .product_value_option .value_box h5 {
        font-size: 18px;
    }

    .product_value_option .value_box p {
        font-size: 15px;
        line-height: 19px;
    }

    .product_value_option {
        gap: 20px;
    }
}

/* FOOTER  */


footer {
    background-color: #1c1c1c !important;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 32px 0;
}

.footer-section {
    margin: 10px 0;
}

.footer-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
    font-size: 18px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer-section ul li a:hover {
    text-decoration: none;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.contact-info ul li i {
    margin-right: 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-size: 14px;
}

.footer-section p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 7px;
    max-width: 260px;
}

@media(max-width:640px) {
    footer {
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 5px 0;
    }

    .footer-section {
        margin: 15px 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section p {
        margin: auto;
    }

    .contact-info ul li {
        justify-content: center;
        text-align: center;
    }
}