    @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');
    * {
        font-family: 'Inter', sans-serif;
    }
    .body{
        background: none;
        /* min-height: 100vh; */
    }
    *{
        margin: 0px;
    padding: 0px;   
    text-decoration: none; 
    }
    hr{
        height: 1px;
        margin: 10px 0px;
        background-color: #BBBBBB;
    }
    .hr{
        height: 1px;
        margin: 50px 0px !important;
    }
    .hr2{
        width: 400px;
    }
    .nav-nav{
        position: relative;
    }
    .foot{
        bottom: 0%;
        position: absolute;
        width: 100%;
    }
    
    .card{
        display: flex;
        width: 80%;
        min-height: 200px;
        margin: auto;
        background: #FFFFFF;
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
        padding: 10px;
        border-right: 15px solid #CF7534;
        margin-bottom: 40px;
    }
    .card-img{
        width: 30%;
        margin: auto;
        text-align: center;
    }
    .card-img img{
        border-radius: 50%;
        width: 200px;
        height: 200px;
        /*-webkit-filter: grayscale(100%);*/
      /*filter: grayscale(100%);*/
    }
    .info{
        width: 70%; 
        padding: 0px 30px;
    }
    
    .whatsapp{
        display: flex;
    }
    .whatimg{
        margin: auto 10px; 
        width: 50px;
    }
    .mail{
        display: flex;
    }
    .mailimg{
        margin: auto 10px; 
        width: 50px;
    }
    .info h2{
        color: #CF7534;
        font-family: 'Lora';
    }
    .card2{
        width: 80%;
        min-height: 200px;
        margin: auto;
        background: #FFFFFF;
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
        padding: 10px;
        border-right: 15px solid #CF7534;
        margin-bottom: 40px;
    }
    .cont-card{
        width: 200px;
        text-align: center;
        padding: 10px;
    }
    .cont-card h4{
        color: #4D4D4D;
    }
    .allmemb{
        display: flex;
        justify-content: space-between;
        padding: 10px 50px;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .memb img{
        border-radius: 50%;
        width: 150px;
        height: 150px;
        /* -webkit-filter: grayscale(100%);*/ 
      /* filter: grayscale(100%);*/
    }
    .head2{
        color: #3D3D3D;
        font-family: 'Lora';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
    }
    ol{
        color: #4D4D4D;
    }
    ol li{
    padding: 5px 0px;
    }
    .head2 h3{
        font-family: 'Lora';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        }
    
        @media only screen and (max-width: 900px) {
            .hr2{
                width: 100%;
            }
            .card{
                display: block;
                position: relative;
                z-index: -1;
            }
            .card-img{
                width: 100%;
            }
            .card2{
                position: relative;
                z-index: -1;
            }
            .info{
                width: 100%;
                text-align: center;
            }
            .hori{
                text-align: -webkit-center;
            }
            .head2{
                text-align: center;
            }
            .whatsapp{
                justify-content: center;
            }
            .mail{
                justify-content: center;
            }
            .info{
                padding: 0px;
            }
          }




    /* Navbar */

    .navbar input[type="checkbox"],
    .navbar .hamburger-lines{
        display: none;
    }
    
    .container{
        max-width: 1200px;
        margin: auto;
    }
    
    .navbar{
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
        width: 100%;
        background: #fff;
        color: #000;
        z-index: 100;
        border-top: 10px #E98A46 solid;
    }
    
    .navbar-container{
        display: flex;
        justify-content: space-between;
        height: 64px;
        align-items: center;
    }
    
    .menu-items{
        order: 2;
        display: flex;
    }
    .logo{
        order: 1;
        font-size: 2.3rem;
    }
    .logo2{
        order: 1;
        font-size: 2.3rem;
    }
    .menu-items li{
        list-style: none;
    margin-left: 0.8rem;
    font-size: 1.3rem;
    margin-right: 0.8rem;
    padding: 10px 10px;
    border-radius: 20px;
    }
    .menu-items li:hover{
        background-color: #F1F1F1;
        color: black !important;
    }
    
    .navbar a{
        color: #444;
        font-size: 16px;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease-in-out;
        min-width: max-content;
    }
    
    .navbar a:hover{
        color: black;
    }
    
    @media (max-width: 768px){
        .navbar{
            opacity: 0.95;
        }
    
        .navbar-container input[type="checkbox"],
        .navbar-container .hamburger-lines{
            display: block;
        }
    
        .navbar-container{
            display: block;
            position: relative;
            height: 64px;
        }
    
        .navbar-container input[type="checkbox"]{
            position: absolute;
            display: block;
            height: 32px;
            width: 30px;
            top: 20px;
            right: 5px;
            z-index: 5;
            opacity: 0;
            cursor: pointer;
        }
    
        .navbar-container .hamburger-lines{
            display: block;
            height: 28px;
            width: 35px;
            position: absolute;
            top: 20px;
            right: 5px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
    
        .navbar-container .hamburger-lines .line{
            display: block;
            height: 4px;
            width: 100%;
            border-radius: 10px;
            background: #333;
        }
        
        .navbar-container .hamburger-lines .line1{
            transform-origin: 0% 0%;
            transition: transform 0.3s ease-in-out;
        }
    
        .navbar-container .hamburger-lines .line2{
            transition: transform 0.2s ease-in-out;
        }
    
        .navbar-container .hamburger-lines .line3{
            transform-origin: 0% 100%;
            transition: transform 0.3s ease-in-out;
        }
    
        .navbar .menu-items{
            padding-top: 100px;
            background: #fff;
            height: 100vh;
            max-width: 300px;
            transform: translate(-150%);
            display: flex;
            flex-direction: column;
            margin-left: -40px;
            padding-left: 40px;
            transition: transform 0.5s ease-in-out;
            box-shadow:  5px 0px 10px 0px #aaa;
            overflow: scroll;
        }
    
        .navbar .menu-items li{
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            font-weight: 500;
        }
    
        .logo{
            position: absolute;
            top: 10px;
            font-size: 2.5rem;
        }
        .logo2{
            font-size: 2.5rem;
        }
    
        .navbar-container input[type="checkbox"]:checked ~ .menu-items{
            transform: translateX(0);
        }
    
        .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
            transform: rotate(45deg);
        }
    
        .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
            transform: scaleY(0);
        }
    
        .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
            transform: rotate(-45deg);
        }
    
    }
    
    @media (max-width: 500px){
        .navbar-container input[type="checkbox"]:checked ~ .logo{
            display: none;
        }
        .navbar{
            width: 100vw;
        }
    }

    /* Footer */

    *{
        margin: 0px;
        padding: 0px;
    }
    .footer{
        min-height: 200px;
        width: 100%;
        background: #3D3D3D;
        display: block;
        transform: translateY(20px);
    }
    button{
        padding: 10px 40px;
        color: #464646;
        background: #E2E2E2;
        box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
        border-color: none;
        cursor: pointer;
    }
    .footer2{
        display: none;
    }
    @media only screen and (max-width: 600px) {
        .footer2{
            display: block;
        }
        .footer{
            display: none;
        }
        .footer2{
            min-height:200px;
            width: 100%;
            background: #3D3D3D;
            display: block;
            transform: translateY(20px);
        }
        button{
            margin: 20px 10px;
            width: 80%;
        }
      }