
.top-bar a {
    text-decoration: none;
    color: #003a6d;
    font-size: 15px;
    display: flex;
    justify-content: end;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo-img {
    width: 150px;

}

.heading-text {
    text-align: center;
}
.heading {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}
.heading-container {
    text-align: center;
    margin-bottom: 5px;
}
.subheading-container {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #b2bcce;
     width: 100%;
}

.subheading-container h1 {
    font-size: 20px;
    font-weight: bold;
    color: #003a6d;
}

.heading-text p {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-top: 5px;
}
.presentation-section {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    width: 100%;
}

.list-container {
    text-align: left;
   
}
.list-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.list-container ul {
    list-style-type: disc; 
    padding-left: 20px; 
    color: #000; 
}

.list-container ul li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000; 
}
.logo-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-side img {
    width: 400px;
    height: auto;
}
/* .text {
    padding-left: 20px;
} */

.text h1 {
    font-weight: bolder;
    font-size: 25px;
}
.text ol {
  
    font-size: 15px;
}
hr {
    border: 1px solid #000;
}
.contact-info {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    margin: 0px 10px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
}

/*responsive*/
@media screen and (max-width: 900px){
    .logo-side img{
        width: 300px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 750px){
    .list-container ul li{
        font-size: 15px;
    }
    .top-bar a{
        font-size: 15px;
    }
}
@media screen and (max-width: 642px){
    .presentation-section{
        display: block;
    } 
}
@media screen and (max-width: 565px){
    .logo-container{
        gap: 0px;
    }
    .heading-text p{
        font-size: 15px;
    }
    .heading-container h1,
    p,.subheading-container h1{
        font-size: 18px;
    }
    .list-container h2{
        font-size: 18px;
    }
    .text h1,.text h3{
        font-size: 15px;
    }
    .contact-info p{
        font-size: 15px;

    }
}
@media screen and (max-width: 420px){
    .logo-img{
        width: 100px;
    }
    .logo-side img{
        width: 200px;
    }
}
@media screen and (max-width: 369px){
    .heading-text p{
        font-size: 11px;
    } 
}
@media screen and (max-width: 350px){
    .heading-text p{
        font-size: 11px;
    }
    .contact-info p{
        font-size: 13px;

    }
}

