@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* Color Codes - #ECECEC & #ED5D8F */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all .5s ease;
    /* word-break: break-all; */
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100vw;
    overflow-x: hidden;
    background-color: #ECECEC;
}
/* For placeholders */
::placeholder{
    color: white;
}
:-ms-input-placeholder{
    color: white;
}
::-ms-input-placeholder{
    color: white;
}
/* Navbar */
.nav-bar{
    width: 100%;
    z-index: 3;
    height: 60px;
    background: #ed5d86;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 8px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
}
.nav-bar a{
    color: black;
    text-decoration: none;
}
.nav-bar a img{
    height: 60px;
    padding-top: 6px;
}
.nav-bar ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    z-index: 2 !important;
}
.nav-bar ul li a{
    height: 60px;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}
.nav-bar ul li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: black;
    bottom: -100%;
    left: 0;
}
.nav-bar ul li a:hover::after, .nav-bar ul li a:active:after{
    bottom: 0;
}
/* Menu */
.menu {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    z-index: 10 !important;
    display: none;
}
.menu span {
    display: inline-block;
    width: 100%;
    height: 5px;
    position: absolute;
    background: black;
    top: 15px;
    left: 0;
}
.open span {
    width: 30px;
    left: 1.5px;
}

.open span:nth-child(1) {
    top: 5px;
}

.open span:nth-child(3) {
    top: 25px;
}

.close span {
    top: 15px;
    transform: rotateZ(45deg);
}

.close span:nth-child(2) {
    opacity: 0;
}

.close span:nth-child(3) {
    transform: rotateZ(-45deg);
}
/* Headings */
h1{
    font-size: 70px;
    color: #ED5D85;
    line-height: 70px;
}
h2{
    font-size: 45px;
}
h3{
    font-size: 35px;
    text-decoration: underline;
}
h4{
    font-size: 30px;
}
h6{
    font-size: 20px;
}
/* Pages */
.pg{
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* For all buttons */
.btn{
    font-size: 25px;
    text-decoration: none;
    color: black;
    background: #ED5D85;
    padding: 10px 20px;
    cursor: pointer;
}
.btn:hover{
    transform: translateY(-3px);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.main-heading{
    color: black;
}
.main-heading span{
    color: #ED5D85;
}
/* About Page */
.abt-heading{
    color: black;
}
.abt-heading span{
    color: #ED5D85;
}
.abt-subheading{
    text-decoration: underline;
}
/* Main Data Page */
.main-data-heading{
    color: black;
}
.main-data-heading span{
    color: #ED5D85;
}
.ser-nos{
    border: 2px solid black;
}
.ser-data{
    box-sizing: border-box;
    width: 80vw;
    border: 2px solid black;
    padding: 5px 40px;
}
.map-window{
    width: 80vw;
    height: 500px;
    border: 2px solid black;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
/* Feedback Page */
.febk-heading{
    color: black;
}
.febk-heading span{
    color: #ED5D85;
}
#febk-pg fieldset{
    width: 80vw;
    padding: 30px;
}
#febk-pg fieldset span{
    color: red;
    font-size: 15px;
}
#febk-pg input{
    padding: 5px 10px;
    width: 90%;
    outline: none;
    border: none;
    background: #ED5D85;
    color: #ECECEC;
    font-size: 15px;
    height: 40px;
}
#febk-pg textarea{
    padding: 5px 10px;
    width: 90%;
    outline: none;
    border: none;
    background: #ED5D85;
    color: #ECECEC;
    font-size: 15px;
}
.febk-pg-subheading{
    color: black;
}
.febk-pg-subheading span{
    color: #ED5D85;
}
.donate-heading{
    color: black;
}
.donate-heading span{
    color: #ED5D85;
}

/* Google Translate API */
.skiptranslate, #goog-gt-tt{
    display: none;
}
.hi-en{
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 15;
    background-color: black;
    right: 10px;
    font-size: 20px;
    display: grid;
    place-items: center;
    bottom: 10px;
    cursor: pointer;
    color: #ECECEC;
}
#donate .donate-bx{
    display: none;
}
#donate fieldset{
    width: 80vw;
    padding: 30px;
    position: relative;
}
#donate .hidden{
    display: none;
}
#donate .visible{
    display: initial;
}
#donate fieldset span{
    color: red;
    font-size: 15px;
}
#donate select{
    padding: 5px 10px;
    width: 90%;
    outline: none;
    border: none;
    text-align: center;
    background: #ED5D85;
    cursor: pointer;
    color: #ECECEC;
    font-size: 15px;
    height: 40px;
}
.schm-heading{
    color: black;
}
.schm-heading span{
    color: #ED5D85;
}

#delhi{
    display: none;
}
#andhraPradesh{
    display: none;
}

#arunachalPradesh{
     display:none;
}

#assam{
    display: none;

}
#bihar{
    display: none
    ;
}
#chandigarh{
    display: none;
}
#chattisgarh{
    display: none
    ;
}
#goa{
    display: none;
}
#gujarat{
    display: none;
}
#mMaharashtra{
    display: none
    ;
}
#haryana{
    display: none
    ;
}

#himachalPradesh{
    display: none
    ;
}
#telangana{
    display:none;
}
#punjab{
    display: none;
}
#rajasthan{
    display: none;
}
#karnatka{
    display: none;
}
#tamilnadu{
    display: none;
}
#tripura{
    display: none;
}
.nom{
    transition: 1.9s;
}
.schm-heading{
    color: black;
}
.schm-heading span{
    color: #ED5D85;
}

.nom{
    display: none;
}
.nom1 select{
    padding: 5px 10px;
    width: 90%;
    outline: none;
    border: none;
    text-align: center;
    background: #ED5D85;
    cursor: pointer;
    color: #ECECEC;
    font-size: 15px;
    height: 40px;
}
#ser-data-info a{
    color: #ED5D85;
    text-decoration: none;
}

/* Media queries */
@media screen and (max-width: 800px) {
    .menu{
        display: initial;
    }
    .nav-bar ul{
        position: absolute;
        height: calc(100vh - 60px);
        width: 100vw;
        top: 100%;
        overflow-y: scroll;
        right: -100%;
        display: block;
        background: #ED5D85;
        z-index: 24;
        list-style: none;
    }
    .nav-bar ul li a{
        width: 100vw;
        display: inline-block;
        text-decoration: none;
        color: #000;
        font-size: 25px;
        word-wrap: break-word;
        padding: 0 10px;
        display: grid;
        place-items: center;
        overflow: hidden;
    }
    .nav-bar ul li a::after{
        display: none;
    }
    .nav-bar ul li a:hover, .nav-bar ul li a:active{
        background: #ECECEC;
    }
    .nav-bar ul.show{
        right: 0;
    }
    h1{
        font-size: 50px;
        line-height: 50px;
    }
    h2{
        font-size: 35px;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 25px;
    }
    h6{
        font-size: 20px;
    }
    .pg{
        padding: 100px 20px;
    }
}