.advertisement-container {}

.advertisement-container a {
    text-align: right;
}

.top-bar a {
    text-decoration: none;
    color: #003a6d;
    font-size: 20px;
    display: flex;
    justify-content: end;
    font-weight: bold;
}

.heading {
    text-align: center;
    font-weight: bolder;
    font-size: 30px;
}


.table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.table-container img {
    width: 500px;
    height: auto;
    display: block;
}

.table-container figcaption {
    margin-top: 10px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

hr {
    border: 1px solid #000;
}
.main-heading{
    margin: 10px 0px;
}
.main-heading p,
h3 {
    text-align: center;
    font-weight: bolder;
    font-size: 25px;
}
.sub-heading{
    margin: 10px 0px;
}
.sub-heading h1 {
    color: #300026;
    font-weight: bolder;
    text-align: center;
    font-size: 30px;
}

.sub-heading p {
    font-weight: bold;
    color: #000;
    font-size: 25px;
    text-align: center;
}

.sub-heading h2 {
    color: #000;
    font-weight: bolder;
    text-align: center;
    font-size: 30px;
}

.box-container {
    display: flex;
    justify-content: center;
    padding: 15px 0px;
    gap: 100px;

}

.outer-box {
    background-color: #300026;
    padding: 10px;
    display: flex;
    width: 300px;
    flex-direction: column;
    gap: 10px;

}

.outer-text {
    color: white;
}

.inner-box {
    background-color: white;
    padding: 5px;
    width: 280px;
    height: 15vh;
    text-align: center;
    font-weight: bold;
}

.inner-box a {
    color: #000;
    text-decoration: none;
}

/*responsive*/
@media screen and (max-width: 820px){
    .box-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 15px 0px;
        gap: 20px;
    }  
}
@media screen and (max-width: 536px){
    .table-container img{
        width: 450px;
    }
    .heading{
        font-size: 20px;
    }
    .main-heading p, h3 {
        font-size: 20px;
    }
    .sub-heading h1,.sub-heading h2{
        font-size: 20px;
    }
    .sub-heading p{
        font-size: 15px;
    }
}
@media screen and (max-width: 454px){
    .table-container img{
        width: 350px;
    }
    .top-bar a{
        font-size: 15px;
    }
}
@media screen and (max-width: 360px){
    .table-container img{
        width: 300px;
    }
    .heading{
        font-size: 15px;
    }
    .main-heading p, h3 {
        font-size: 15px;
    }
    .sub-heading h1,.sub-heading h2{
        font-size: 15px;
    }
    .sub-heading p{
        font-size: 15px;
    }
    .outer-box{
        width: 250px;
    }
    .inner-box{
        width: 230px;
        font-size: 15px;
    }

}