.single-edu {
    display: flex;
    margin-bottom: 20px;
}

.image-content {
    flex: 0 0 30%;
}

.image-content img {
    width: 50%;
    height: auto;
}

.text-content {
    flex: 0 0 70%;
    padding-left: 20px;
}

.text-content h3 {
    margin-top: 0;
}


.header {
    background-color: #f97808;
    color: #fff;
     /* Adjust top and bottom padding */
}

.main-menu {
    text-align: right; /* Align menu to the right */
}

.nav.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav.menu li {
    display: inline-block;
    margin-right: 20px;
}

.nav.menu li:last-child {
    margin-right: 0;

}

.nav.menu li a {
    color: #090909;
    text-decoration: none;
    font-size: 16px; /* Adjust font size as needed */
}
.logo1 {
    display: flex;
    justify-content: right; /* Center horizontally */
    align-items: end; /* Center vertically */
    height: 100%; /* Ensures the logo takes up full height of its parent */
}

.logo1 img {
    height: 40px; /* Adjust logo height as needed */
    max-width: 100%; /* Ensure the image doesn't overflow its container */
}

.body-text p {
    /* font-weight: bold; */
    font-size: 18px; /* You can adjust the font size as needed */
    color: rgb(75, 73, 73); /* Set text color to black */
    
}

@media (max-width: 768px) {
    .logo1 {
        display: none;
    }
}
@media (max-width: 992px) {
    .col-lg-2,
    .col-md-2 {
        width: 100%; /* Adjust logo size */
    }
    .col-6 {
        width: 50%; /* Adjust menu item size */
    }
}

@media (max-width: 576px) {
    .col-lg-2,
    .col-md-2 {
        width: 50%; /* Adjust logo size */
    }
    .col-6 {
        width: 70%; /* Adjust menu item size */
    }
}

/* Default styles for the list items */
.menu li {
    display: inline-block;
    margin-right: 20px;
    white-space: nowrap;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .menu li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

