*{
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}
body{
    display: grid;
    grid-template-areas:'left-div header right-div'
                        'left-div main-content right-div'
                        'left-div footer right-div';
    gap: 0px;
    margin: 0px;
    justify-items: center;
}
.header{
    display: grid;
    grid-template-areas: 'main-header'
                         'nav-menu';
    grid-area: header;
    background-color: #ffffff;
    box-shadow: 0px 0px 8px #888888;
}
.left-div{
    grid-area: left-div;
}
.right-div{
    grid-area: right-div;
}
.main-content{
    grid-area: main-content;
    min-height: 900px;
    box-shadow: 0px 0px 8px #888888;
}
.footer{
    grid-area: footer;
    min-height: 300px;
    display: flex;
    width: 100%;
    padding: 20px 3% 100px 3%;
    justify-content: space-between;
    background-color: #2a75bb;
    color: white;
    box-shadow: 0px 0px 8px #888888;
}
.footer>div>span{
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.footer>div>a{
    color: white;
    text-decoration: none;
}
.logo{
    grid-area: logo;
    height: 100%;
}
.logo>img{
    width: 100%;
    height: 100%;
}
.govt_logo{
    height: 100%;
}
.govt_logo>img{
    width: 100%;
    height: 100%;
}
.main-header{
    height: 160px;
    grid-area: main-header;
    padding: 20px 20px 20px;
    display: flex;
    align-items: flex-start;
}
.portrait-nav-menu{
    display: none;
}
#expanded-portrait-nav-menu{
    display: none;
}
.nav-menu{
    z-index: 3;
    grid-area: nav-menu;
    height: 31px;
    background-color: #2a75bb;
    color: white;
}
.nav-menu>ul{
    display: flex;
    justify-content: space-evenly;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    font-weight: 600;
}
.nav-menu>ul>li{
    float: left;
    padding: 3px 6px 6px 5px;
    font-size: 17px;
    color: white;
}
.nav-menu>ul>li>a{
    padding: 3px 6px 6px 5px;
    font-size: 17px;
    color: white;
    text-decoration: none;
}
.nav-menu>ul>li>a:hover{
    background-color: #135a9c;
    cursor: pointer;
}
.nav-menu>ul>li>ul{
    visibility: collapse;
    background-color: #2a75bb;
    position: absolute;
    margin-top: 5px;
    margin-left: -5px;
    padding: 0px;
}
.nav-menu>ul>li:hover>ul{
    visibility: visible;
}
.nav-menu>ul>li>ul>li>{
    list-style-type: none;
    padding: 3px 6px 6px 5px;
    font-size: 17px;
}
.nav-menu>ul>li>ul>li>a{
    color: white;
    text-decoration: none;
    padding: 3px 6px 6px 5px;
    font-size: 17px;
}
.nav-menu>ul>li>ul>li:hover{
    background-color: #135a9c;
}

.main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10%;
}
.main-content-title{
    display: flex; 
    align-items: center; 
    padding-top: 7%; 
    padding-bottom: 7%; 
    font-size: 40px; 
    font-weight: bold; 
    color: #2a75bb;
}
@media only screen and (max-width:939px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 100%;
    }
    .main-content-title{
        font-size: 33px;
    }
    .introduction p{
        line-height: 1.25;
    }
}
@media only screen and (min-width: 940px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 100%;
    }
    .main-content-title{
        font-size: 34px;
    }
    .introduction p{
        line-height: 1.3;
    }
}
@media only screen and (min-width: 980px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 940px;
    }
    .main-content-title{
        font-size: 35px;
    }
    .introduction p{
        line-height: 1.35;
    }
}
@media only screen and (min-width: 1166px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 1000px;
    }
    .main-content-title{
        font-size: 36px;
    }
    .introduction p{
        line-height: 1.5;
    }
}
@media only screen and (min-width: 1366px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 1047px;
    }
    .main-content-title{
        font-size: 37px;
    }
    .introduction p{
        line-height: 1.6;
    }
    #main-content-2{
        line-height: 1.6;
    }
}
@media only screen and (min-width: 1566px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 1133px;
    }
    .main-content-title{
        font-size: 38px;
    }
    .introduction p{
        line-height: 1.8;
    }
    #main-content-2{
        line-height: 1.8;
    }
}
@media only screen and (min-width: 1766px) and (orientation: landscape){
    .main-content,.header,.footer{
        width: 1200px;
    }
    .main-content-title{
        font-size: 39px;
    }
    .introduction p{
        line-height: 2.1;
    }
    #main-content-2{
        line-height: 2.1;
    }
}
@media only screen and (min-width: 1920px)  and (orientation: landscape){
    .main-content,.header,.footer{
        width: 1231px;
    }
    .main-content-title{
        font-size: 40px;
    }
    .introduction p{
        line-height: 2.1;
    }
    #main-content-2{
        line-height: 2.1;
    }
}
.logo{
    margin-right: 20px;
}
.header-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 77%;
}
.header-text-span-1{
    font-size: 34px;
    font-weight: bold;
    color: #135a9c;
}
.header-text-span-2{
    font-size: 25px;
    font-weight: bold;
    color: #d90000;
}
/*----------------------------- TRAININGS ORGANISED-------------------------------------*/
.trainings_orgainsed_class{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.trainings_orgainsed_class>img{
    width: 100%;
}

/*----------------------------- SNAPSHOTS OF ACTIVITIES -------------------------------*/
.snapshots_of_activities_class{
    width: 100%;
    padding: 0% 5% 0%;
}
.snapshots_of_activities_class>div{
    width: 46%;
    height: 16%;
    margin: 2% 2% 2%;
    float: left;
    border: 1.5px solid rgb(190, 190, 190);
    border-radius: 2%;
}
.snapshots_of_activities_class>div>img{
    width: 100%;
    border-top-left-radius: 2%;
    border-top-right-radius: 2%;
}
.snapshots_of_activities_class>div>div{
    display: flex;
    padding: 2% 2% 2%;
    justify-content: center;
}

/*------------------------------ COUNCIL ACTS ----------------------------------*/
.council_acts{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
.council_acts>div{
    display: flex;
    justify-content: space-between;
    min-width: 60%;
    padding: 2% 2% 2% 2%;}
.council_acts>div>span>a{
    color: red;
    text-decoration: none;
}

/*--------------------------------DOWNLOAD FORMS----------------------------*/
.download-forms-class{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
.download-forms-class>div{
    display: flex;
    justify-content: space-between;
    min-width: 60%;
    padding: 2% 2% 2% 2%;
}
.download-forms-class>div>span>a{
    color: red;
    text-decoration: none;
}
/*--------------------------------NEWS UPDATES----------------------------*/
.news-updates-class{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
.news-updates-class>ul{
    font-weight: 600;
    width: 90%;
}
.news-updates-class>ul>li{
    margin-top: 2rem;
    font-weight: normal;
}
.news-updates-class>ul>li>a{
    color: #00417d;
    font-weight: 500;
}
.news_date{
    font-weight: bold;
}
.news_updates_title{
    padding-bottom: 0%;
}
/*-------------------------------NEWSBULLETIN------------------------------*/
.newsbulletin-class{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 60vw;
}
.newsbulletin-class-div{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1vw;
}
.newsbulletin-class-img{
    width: 15vw;
    height: 19.35vw;
    box-shadow: grey 7px 7px 10px;
}
.newsbulletin-class-span{
    font-size: 0.9vw;
    font-weight: bold;
    margin-top: 1vh;
    margin-bottom: 4vh;
}
/*-------------------------------CONTACT US--------------------------------*/
.contact-class{
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 2%;
}
.contact-class>div{
    margin: 2%;
    float: left;
}
.contact-map{
    width: 54%; background-color: gainsboro;
}
.contact-general{
    width: 36%;
}
.contact-class>div>span{
    font-weight: bold;
    color: #135a9c;
    margin-left: 5%;
}
/*-----------------------------GUEST HOUSE CLASS--------------------------------*/
.guest-house-class>div{
    margin-bottom: 1em;
    font-weight: bold; font-size: 23px;
}
.guest-house-class>div>a{
    font-weight: bold; color: #135a9c; font-size: 23px; text-decoration: none; text-align: center;
}

/*----------------------------- INDEX.HTML ------------------------------------*/

.slideshow-1-holder{
    display: flex;
    width: 98%;
    margin-top: 1%;
    margin-bottom: 0.5%;
    background-color: white;
}
.introduction{
    overflow-y: hidden;
    box-sizing: border-box;
    padding: 15px 2px 2px 20px;
    line-height: 1.5;
}
.introduction>span{
    /* padding-top: 2%; */
    font-size: large;
    font-weight: bold;
    border-bottom: 2px darkblue solid;
}
.introduction>ul {
    padding-left: 0.7em;
    margin-top: 0px;
}
.introduction>ul>li{
    margin-top: 1em;
    margin-bottom: 1em;
}
#main-content-2{
    padding-top: 1%;
}
#main-content-2>span{
    font-size: large;
    font-weight: bold;
    border-bottom: 2px darkblue solid;
}
#more_intro{
    display: none;
}
.read_more_about_council,.read_more_intro{
    background-color: transparent;
    border: transparent;
    color: #135a9c;
    cursor: pointer;
}
#main-content-2>span,ul,ol{
    margin-left: 2%;
    margin-right: 2%;
}
#main-content-2>ul,ol{
    padding-left: 2%;
}
.under_span_text{
    /*
    display: flex;
    flex-direction: column;
    align-items: center;
    */
    display: block;
    margin-top: 1%;
    margin-bottom: 3%;
    margin-left: 2%;
    margin-right: 2%;
    /*
    padding-left: 2%;
    padding-right: 2%;
    */
    box-sizing: border-box;
}
.slide_control_pointer_container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.slides{
    border: 1px solid gainsboro;
}
.slide_control_pointer_bar{
    background-color: white;
}
/*----------------------------- FEE PAYMENT -----------------------------*/
    .fee_payment_title{
        font-weight: bold;
        font-size: 1rem;
        margin-left: 2%;
        margin-top: 1%;
        color: #2a75bb;
    }
    .fee_payment_content>ol{
        margin: 0% 2% 2% 2%;
    }
    .fee_payment_content>ol>li{
        margin-bottom: 0px;
    }
    .fee_payment_bank_transfer{
        margin-left: 7%;
        margin-top: 1%;
    }
    #upi_payment_button{
        display: none;
    }
    #qr_instr_2{
        display: block;
        font-weight: bold;
        color: #2a75bb;
        margin-top: 5px;
    }
    #qr_instr_1{
        display: none;
    }
    #qr_code_container_div{
        width: 100%; display: flex; 
        flex-direction: column; 
        align-items: center;
        padding-left: 2%;
        
    }
    #qr_code_container_div>img{
        width: 300px;
        border: 2px solid black;
    }
    .fee_payment_bank_transfer{
        margin-left: 2%;
        margin-top: 1%;
    }
@media only screen and (orientation: portrait){
    .slideshow-1-holder{
        flex-direction: column;
    }
    .slideshow-1-holder>div{
        width: 100%;
    }
    .slideshow-1{
        display: none;
    }
    .introduction{
        height: auto;
        padding: 2px 2px 2px 2px;
        /*padding-top: 1.6em;*/
        line-height: 1.6;
    }
    .introduction>span {
        font-size: large;
        font-weight: bold;
        border-bottom: 2px darkblue solid;
    }
    .introduction>ul>li{
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    #main-content-2{
        line-height: 1.6;
    }
    #main-content-2>ul,ol{
        padding-inline-start: 23px;
    }
    .under_span_text{
        margin-bottom: 5%;
    }

    *{
        font-size: 15px;

    }
    body{
        display: grid;
        grid-template-areas:'header'
                            'main-content'
                            'footer';
    }
    .left-div,.right-div{
        display: none;
    }
    .main-content{
        min-height: 500px;
    }
    .main-content,.header,.footer{
        width: 100%;
    }
    .main-header{
        height: 120px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 20px 0px 20px;
    }
    .logo{
        height: 80%;
        margin: 5px 5px 5px 5px;
    }
    .govt_logo{
        display: none;
    }
    .header-text-span-1{
        font-size: 21px;
    }
    .header-text-span-2{
        font-size: 17px;
    }
    .main-content-title{
        font-size: 22px;
    }
    .nav-menu>ul{
        display: none;
    }
    .footer{
        flex-direction: column;
        box-sizing: border-box;
        padding: 0px 0px 0px;
    }
    .footer>div{
        margin-left: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer>div>a{
        color: white;
        text-decoration: none;
    }
    .download-forms-class{
        align-items: stretch;
    }
    .news-updates-class{
        align-items: stretch;
    }
    .contact-class{
        flex-direction: column;
        align-items: center;
    }
    .contact-map{
        width: 97%; background-color: gainsboro; margin-top: 5px;
    }
    .contact-general{
        width: 97%;
    }
    .snapshots_of_activities_class>div{
        width: 96%;
        height: auto;
        padding-bottom: 2%;
    }
    .nav-menu{
        height: auto;
    }
    .portrait-nav-menu{
        display: flex; align-items: center;
        height:31px;color:white;float:right;margin-right:2%;
    }
    .portrait-nav-menu>img{
        height: 60%;
    }
    #expanded-portrait-nav-menu{
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding-bottom: 30px;
        background-color: #135a9c;
        z-index: 4;
    }
    #expanded-portrait-nav-menu>a{
        text-decoration: none; color: white;
    }
    .guest-house-class>div{
        margin-bottom: 1em;
        font-weight: bold; font-size: 15px; padding: 2%;
    }
    .guest-house-class>div>a{
        font-weight: bold; color: #135a9c; font-size: 15px; text-decoration: none; text-align: center;
    }

    /*-------------------------------NEWSBULLETIN------------------------------*/
    .newsbulletin-class{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .newsbulletin-class-div{
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 1vw;
    }
    .newsbulletin-class-img{
        width: 40vw;
        height: auto;
        box-shadow: grey 7px 7px 10px;
    }
    .newsbulletin-class-span{
        font-size: 16px;
        font-weight: bold;
        margin-top: 18px;
        margin-bottom: 45px;
    }

    /*----------------------------- FEE PAYMENT -----------------------------*/
    .fee_payment_title{
        font-weight: bold;
        font-size: 1.2rem;
        margin-left: 2%;
        margin-top: 1%;
        color: #2a75bb;
    }
    .fee_payment_content>ol{
        margin: 0px 5px 1rem 0px;
    }
    .fee_payment_content>ol>li{
        margin-bottom: 5px;
    }
    .fee_payment_bank_transfer{
        margin-left: 6%;
        margin-top: 1%;
    }
    #upi_payment_button{
        display: inline-block;
        width: 70%; 
        margin-left: 14%; 
        height: 2rem; 
        color: white; 
        background-color: #2a75bb; 
        border-radius: 7px; 
        font-weight: bold; 
        text-align: center; 
        vertical-align: middle; 
        line-height: 1.8rem;
    }
    #qr_instr_1{
        display: inline-block;
    }
    #qr_code_container_div{
        display: block;
        width: 87%; 
        padding: 3% 0% 5% 20%;
    }
    #qr_code_container_div>img{
        width:inherit; border: 2px solid black;
    }
}