/*Yadu 11/11/2024
 Code any additional CSS required here
 */
.containerFooter {
    background-color: #fff;
    color: #333;
    padding: 5px;
    text-align: center;
    padding-bottom: 50px;

    margin: 0 auto;
}

.hrline {

    width: 100%; /* Adjust to match footer width */
    height: 2px;
    background-color: #e1dcdc;
    border: none;

}

.vl {

    width: 2px;
    height: 60px;
    background-color: #4e4e4e;
    border: none;
    margin: 0 auto
}
@media only screen and (max-width: 765px) {
    .vl{
        /*transform: rotate(90deg);*/
        /*!*opacity: 0;*!*/
        /*margin: 0 auto;*/
        display: none;
    }
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 5px auto;
    gap: 20px;
}

.footer-info, .footer-contact, .footer-logo, .footer-made-in {
    flex: 1; /* Ensures equal width for all sections */
    min-width: 150px;
    text-align: left;
}

.company-name {
    font-weight: bold;
    margin: 0;
}

.address, .contact-item,.section-title,  .made-in-text {
    margin:  0;
    font-size: 16px;
    color: black;

}
.section-title {
    font-size: 16px;
    margin-top: 5px;
}

.icon {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.email-link {
    color: #fff;
    text-decoration: underline;
}

.footer-logo {
    text-align: center;
}
.footer-info
{
    margin-left: 40px;
}

.logo {
    height: 70px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
}

.madein {
    height: 95px;
}

.footer-made-in {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}

.made-in-text {
    font-size: 20px;
    /*font-weight: bold;*/
}

/* Responsive styling */
@media (max-width: 768px) {
    .footer-section {
        flex-wrap: wrap; /* Allows items to stack vertically on smaller screens */
    }

    .footer-info, .footer-contact, .footer-logo, .footer-made-in {
        flex: 1 1 80%; /* Full width for each section when wrapping */
        text-align: center;
        margin-bottom: 5px;

    }

    .address, .contact-item, .tagline, .made-in-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-info, .footer-contact, .footer-logo, .footer-made-in {
        font-size: 12px;
    }
}

