
/* Home section */

.product-home {
    width: 100%;
    height: 490px;
    background-image: url('/assets/images/parallax_bg.jpg');
    background-position: center 66%;
    background-size: cover;
    position: relative;
}

.product-home::before {
    content: "";
    position: absolute;
    background: linear-gradient(179.27deg, rgba(0, 0, 0, 0) -3.78%, rgba(0, 0, 0, 0.3) 101.37%);
    height: 100%;
    width: 100%;
    top: 0;

}
@media (max-width:768px) {
    .home_content .first_home_title {
        font-size: 60px;
    }

    .home_content .second_home_title {
        font-size: 50px;
    }

    .middle_home_title {
        max-width: 210px;
        width: 100%;
    }
}

@media (max-width:575px) {
    .home_content .first_home_title {
        font-size: 32px;
    }

    .home_content .second_home_title {
        font-size: 28px;
    }
}
/* FOOTER  */


footer {
    background-color: #1a252f;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    /* max-width: 1200px; */
    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: 16px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.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: 12px;
}

.footer-section p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 7px;
    max-width: 260px;
}

@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;
    }
}
