
.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #fff;
}

.top-bar a {
    text-decoration: none;
    color: #25408f;
    font-size: 15px;
    font-weight: bold;
}

.logo-container1 img {
    width: 200px;
  
}

.logo-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo-container2 img {
    width: 250px;
    margin: 0px 50px;
}

.subheading {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.heading {
    color: #25408f;
    font-weight: bolder;
    font-size: 35px;
    text-align: center;
}

.logo-container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.logo-container3 img {
    max-width: 40%;

}

.box1 p {
    font-weight: bold;
    text-align: center;
    font-size: 25px;
}

.footer-bar p {
    text-align: right;
    font-size: 20px;
    margin-right: 10px;
}


@media (max-width: 768px) {
   
    .top-bar a {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .logo-container1 img {
        width: 30%;
        
    }

    .logo-container2 img {
        width: 40%;
       
    }

    .subheading {
        font-size: 18px;
    }

    .heading {
        font-size: 1.8em;
    }

    .logo-container3 img {
        max-width: 50%;
    }

    .box1 p {
        font-size: 1.2em;
    }

    .footer-bar p {
        font-size: 18px;
    }
}


@media (max-width: 480px) {
    .top-bar a {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .logo-container1 img {
        width: 40%;
        
    }

    .logo-container2 img {
        width: 50%;
        
    }

    .subheading {
        font-size: 16px;
    }

    .heading {
        font-size: 1.6em;
    }

    .logo-container3 {
        flex-direction: column;
    }

    .logo-container3 img {
        max-width: 80%;
    }

    .box1 p {
        font-size: 1.1em;
    }

    .footer-bar p {
        font-size: 16px;
    }
}

@media (max-width: 320px){
    .top-bar a{
        font-size: 15px;
    }
    .logo-container1 img {
        width: 50%;  
    }
    .logo-container2 img {
        width: 60%;
        
    }

}