
/* text section  */
.text-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#212121;
    color: #ffffff;
    padding: 40px 20px;
    width: 80%;
    margin: 0px auto;
    flex-wrap: wrap;
}

.text-section h2 {
    margin: 0;
    font-size: 2rem;
    text-align: center;
}

.left-text,
.right-text {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    text-align: center;
}

.right-text a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    border-bottom: 3px solid white;
    padding-bottom: 5px;
}

.right-text a:hover {
    color: #ffd700;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .text-section {
        flex-direction: column;
    }

    .left-text,
    .right-text {
        text-align: center;
    }
}

/* text  */
.text {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    width: 80%;
    margin: 0px auto;
    flex-wrap: wrap;
}

.text h4 {
    margin: 0;
    /* font-size: 2rem; */
    text-align: center;
}

/* footer  */
.footer {
    /* background-color: #1a1a1a; */
    background-color: #212121;
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 1 1 200px;
    text-align: center;
}

.footer-logo img {
    width: 150px;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section li{
    font-weight: bold;

}

.footer-section ul li {
    margin-bottom: 8px;

}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-contact a {
    display: inline-block;
    margin-right: 10px;
    color: #122351;
    font-size: 20px;
    text-decoration: none;
}

