@import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Fredoka+One&display=swap');
*{
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
html,body{
    background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
    overflow: hidden;
    font-family: 'Fredoka One', cursive;
}
/* custom-scrollbar */
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background: #d1e5ff;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#642bff, #ff22e6);
    border-radius: 10px;
    height: 100px;
    width: 10px;
}
/* /custom-scrollbar */
/* NabBar */
#nav_bar{
    background-color: white;
    box-shadow: 0px 2px 10px 4px rgba(0,0,0,0.1);
}
#navbarNav .navbar-nav li{
    margin: 0 2px;
    width: 110px;
    transition: all .5s ease;
}
#navbarNav .navbar-nav li:hover{
    border-radius: 10px;
    background-color: rgb(12, 222, 12)
}
#navbarNav .navbar-nav li a{
    color: black;
    transition: all .5s ease;
}
#navbarNav .navbar-nav li a:hover{
    color: white;
    font-weight: bold;
}
#navbarNav .active{
    background-color: rgb(22, 177, 22);
    color: white;
    font-weight: bold;
    border-radius: 10px;
}
#navbarNav .active:hover{
    background-color: rgb(12, 222, 12);
}
.navbar .container-fluid #nav_img{
    border-radius: 50px;
    width: 100px;
}
/* Dropdown Menu Styling */
.nav-item.dropdown:hover .dropdown-menu li{
    display: block;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}
.nav-item.dropdown .dropdown-menu {
    width: auto;
    background: white;
}
/* Prevent dropdowns from disappearing instantly */
.navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    left: 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
    color: black;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: rgb(12, 222, 12);
    color: white;
    font-weight: bold;
    border-radius: 10px;
}
/* /NabBar */

/* RectangleBar */
#rectangleBar{
    margin-top: -0.5rem;
}
.container .rectangle-bar {
    background-color: #000;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
}
.container .rectangle-bar .social-icons a{
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}
.container .rectangle-bar .social-icons a:hover {
    color: rgb(12, 222, 12);
}
.container .rectangle-bar .btn-div .donate-btn {
    background-color: rgb(255, 251, 0);
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;  
}
.container .rectangle-bar .btn-div .donate-btn:hover {
    background-color: rgb(12, 222, 12);
}
/* /RectangleBar */

/* footer-seciton */
footer{
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #00093cd5, #2d0b00cc);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}
footer .row-f .col-f img{
    height: 94px;
    width: 129px;
    border-radius: 50px;
    border: 2px solid #fff;
}
footer .row-f{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}       
footer .row-f .col-f{
    flex-basis: 20%;
    padding: 13px;
}
footer .row-f .col-f-L{
    flex-basis: 25%;
    padding: 8px;
}
footer .row-f .col-f:nth-child(2), footer .row-f .col-f:nth-child(3){
    flex-basis: 15%;
}
footer .row-f .col-f .logo{
    width: 140px;
    margin-bottom: 30px;
    text-align: center;
}
footer .row-f .col-f h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
footer .row-f .col-f .email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}
footer .row-f .col-f ul{
    padding-left: 0 !important;
}
footer .row-f .col-f ul li{
   list-style: none;
   margin-bottom: 12px;
}
footer .row-f .col-f ul li a{
   text-decoration: none;
   color: #fff;
}
footer .row-f .col-f .footer-form{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
footer .row-f .col-f .footer-form .far{
    font-size: 18px;
    margin-right: 10px;
}
footer .row-f .col-f .footer-form input{
    margin-top: 16px;
    margin-left: -3px;
    width: 65%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
footer .row-f .col-f .footer-form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
footer .row-f .col-f .footer-form button .fas{
    font-size: 16px;
    color: #ccc;
}
footer .row-f .col-f .footer-icons .fab{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
/* /footer-seciton */
@media (max-width: 768px){
    /* footer-section  */
    footer{
        bottom: unset;
    }
    footer .row-f .col-f{
        flex-basis: 100%;
    }
    footer .row-f .col-f:nth-child(2), footer .row-f .col-f:nth-child(3){
        flex-basis: 100%;
    }
    footer .row-f .col-f h3{
        overflow: hidden;
    }
    /* /footer-section  */
}
