@import url('https://fonts.googleapis.com/css2?family=Antic+Slab&family=Chakra+Petch:wght@400;600;700&family=Cinzel:wght@500;600&family=Exo:wght@400;600&family=Forum&family=Ubuntu:wght@300;400;500&display=swap');

html {
    scroll-behavior: smooth;

  }
:root{
    --primary_color_1:#336899;
    --primary_color_2:#BF0000;
    --primary_color_2a:#A10B01;
    --primary_color_2b:#8C0808;
    --primary_color_2c:#BF0F0F;
    --primary_color_3:#06781E;
    --primary_color_3a:#014005;
    --primary_color_3b:#02590F;
    --primary_color_4:#F2B705;
    --primary_color_4b:#F2C438;
    --primary_color_4c:#FFB20F;
    --font_exo:'Exo';
    --font_forum:'Forum';
    --font_chakra:'Chakra Petch';
    --font_antic:'Antic'; 
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

/* NAV SECTION ////////////////////////////////////////////// */
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    /* background-color: black; */
    /* background-color: rgba(0, 0, 0, 0.671); */
    padding: 16px 1rem;
    color: white;
    position: sticky;
    top: 0;
    z-index: 300;
}
.nav__logo{
    /* font-family:'exo' ; */
    font-size:clamp(1.6rem, 2.3vw, 1.9rem);
    font-weight: 600;
}
.nav__logo2{
    /* font-family:'exo' ; */
    font-size: 1.9rem;
    font-weight: 600;
    /* padding-top: 10px; */
    align-self: center;
}
.lg1{
    color: var(--primary_color_1);
    font-family: inherit;
    font-size: inherit;
}
.lg2{
    color: var(--primary_color_2);
    font-family: inherit;
    font-size: inherit;
}
.lg3{
    color: var(--primary_color_3);
    font-family: inherit;
    font-size: inherit;
}
.lg4{
    color: var(--primary_color_4);
    font-family: inherit;
    font-size: inherit;
}
.nav__menu{
    display: flex;
    gap: 2rem;
    list-style: none;
    text-transform: capitalize;
}
.nav__list{
    cursor: pointer;
    transition: 100ms ease-in-out;
    padding: 10px 18px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    border-radius: 20px;
}
.nav__menu a{
    text-decoration: none;
    color: white;
}
.nav__list1:hover{
    background-color:var(--primary_color_1);
}

.nav__list2:hover{
    background-color:var(--primary_color_2c);
}

.nav__list3:hover{
    background-color:var(--primary_color_3);
}

.nav__list4:hover{
    background-color:var(--primary_color_4);
}
.nav__btn{
    background-color: transparent;
    border: 1px solid silver;
    color: white;
    padding: 9px 1.1rem;
    font-size: clamp(0.8rem, 2vw, .95rem);
    /* text-transform: capitalize; */
    transition: 200ms ease-in-out;
}
.nav__btn:hover{
    box-shadow: 3px 3px 0 white;
    transform: translateX(-3px) translateY(-3px);
}
.nav__btn a{
    text-decoration: none;
}
.nav__icon{
    margin-right: .8rem;
}

 .sidebar {
    height: 100vh;
    width:0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    /* display: flex; */
    flex-direction: column;
    /* gap: 1rem; */
    flex-wrap: nowrap;
    background-color: var(--primary_color_1);
    overflow-y: scroll;
    transition: 1s ease-out;
    box-shadow: 3px 3px 5px black;
}
/* .nav_header {
    display: none;
    margin: 0 auto;
    width: 100%;
    padding: 10px 10px 10px 0;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
    backdrop-filter: blur(3rem);
    position: sticky !important ;
    top: 0 !important;
    height: 60px!important;
    z-index: 99999999999;

} */

@media (max-width:950px) {

    .nav{
        padding: 1rem;
        display: none;
    }
    .nav{
        justify-content: space-between;
        padding: 0 1rem;
        top: 0rem;
    }
    .nav-icon-menu{
        display: none;
    }
    .nav__menu{
        display: none;
    }
    .openbtn{
        display: block;
    }
    .sidebar{
        display: hidden;
    }  
    .sidebar-menu{
        margin-top: 30vw;
    }
    .top-nav-img{
        width: 70%;
        height: auto;
    }
    .sidebar-menu{
        margin-top: 25vw;
    }
}
@media (max-width:500px) {
    .nav-logo-img{
        width: 70%;
    }
    .sidebar-menu{
        margin-top: 48vw;
    }  
}

.nav-up{
    transition: 400ms ease-out;
}
.nav-down{
    background-color: black;
    transition: 400ms ease-in;
}

/* NAV SECTION //////////////////////////////////////////// */

/* HERO PAGE SECTION///////////////////////////////////////// */

.intro__box{
    position: relative;
    top: -5rem;
    left: 0;
    right: 0;
    background-color:transparent;
    color: white;
    /* background-image:linear-gradient(to right, #08002ed2 , #0000003f, rgba(29, 0, 0, 0.836) ), url(/img/hero.jpg); */
    background-image:linear-gradient(to right, #000000 , #000000a6, rgb(0, 0, 0) ), url(../gallary/1\ DSC_3018.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 9rem 5rem 2rem;
}
.intro__desc{
    border: 2px solid var(--primary_color_4c);
    padding: 8px 12px 6px;
    line-height: 0;
    text-transform: uppercase;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    border-radius: 3px;
    /* align-self: flex-start; */
    font-family: var(--font_exo);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}
.intro__icon{
    margin-right:8px;
    color: var(--primary_color_4c);
    /* animation: animName 2s linear infinite; */
    display: grid;
    place-items: center;
}

.intro__head{
    font-size:clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    max-width: 30ch;
    /* background:linear-gradient(to right, #ffff, #FFB20F);
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
    text-align: center;
    /* align-self: flex-start; */
    padding-left: 0rem;
    margin-bottom: 4rem;
}
.intro__icon2{
    font-size: clamp(1.3rem, 2.5vw, 2.5rem);
    animation: bop 1000ms ease-in-out infinite;
    color: white;
    color: var(--primary_color_4c);
    margin-top: 4rem;
    /* font-weight: 500; */
}
@keyframes bop {
    0% {
      transform:translateY(0);
    }
    50% {
      transform:translateY(-6px);
    }
  }

  @media (max-width:950px) {
    .intro__box{
        /* top: 1rem; */
        padding: 11rem 3rem 1rem;
        background-size: cover;
    }
    .intro__icon2{
        margin-top: 2rem;
    }
  }
  @media (max-width:500px) {
    .intro__box{
        padding: 11rem 1.5rem 1rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .intrp__text{
        text-align: center;
    }
  }
/* HERO PAGE SECTION ////////////////////////////////////////// */

/* TEAM ///////////////////////////////////////////// */
.team-container{
    max-width: 88rem;
    margin: 0 auto 4rem;
}
.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, 17rem);
    /* grid-template-rows:1fr 1fr 1fr; */
    gap:3rem 2rem ;
    align-items: center;
    justify-content: center;
}

.team__img{
    width: 250px;
    height: auto;
    filter: brightness(.8);
}
.team__desc{
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.team__text1{
    font-size:clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 500;
    text-transform: capitalize;
}
.team__text2{
    font-size: 1.2rem;
    font-weight: 600;
    color: #336899;
    font-family: var(--font_chakra);
    text-transform: capitalize;
}
.team{
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.sidebarMenuInner a{
    color: black !important;
}
/* TEAM ///////////////////////////////////////////// */

/* FOOTER /////////////////////////////////////////////// */
.footer-section{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 0;
    backdrop-filter: blur(4px);
    /* background-color: #000; */
   
    /* align-items: center; */
}
.footer-background{
    background-image:linear-gradient(to right, #000000 , #0000003f, rgb(0, 0, 0) ), url(../img/footer4.jpg);
    background: #000;
    background-position: center;
    background-size: cover;
}
.footer__head{
    font-size:clamp(2.8rem, 4vw, 3.5rem);
    text-align: center;
    color: rgb(240, 236, 236);
    /* color: var(--primary_color_1); */
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 1rem;
    /* font-family: var(--font_chakra); */
}
.footer__head b{
    font-size:clamp(3rem, 4vw, 3.7vw) ;
    color: var(--primary_color_1);
}
.footer__logo{
    /* font-family:'exo' ; */
    font-size:clamp(3rem, 5vw, 5rem);
    font-weight: 600;
    align-self: center;
}
.footer-lg1{
    color: var(--primary_color_1);
    font-family: inherit;
    font-size: inherit;
    
}
.footer-lg2{
    color: var(--primary_color_2);
    font-family: inherit;
    font-size: inherit;
    
}
.footer-lg3{
    color: var(--primary_color_3);
    font-family: inherit;
    font-size: inherit;
    
}
.footer-lg4{
    color: var(--primary_color_4);
    font-family: inherit;
    font-size: inherit; 
}
.footer-container{
    display: flex;
    justify-content: space-around;
    padding: 2rem 2rem 0;
}
.footer1{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
    border-left:1px solid silver ;
    padding-left: 5rem;
}
.footer2{
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    color: white;
    margin-left: 1rem;
}
.footer__text1{
    font-size: 1.6rem;
    font-family: var(--font_chakra);
    font-weight: 600;
    color: #ececec;
}
.footer__links{
    display: flex;
    flex-direction: column;
    color: white;
    gap: .3rem;
}
.footer__links a{
    text-decoration: none;
    color: white;
    padding: 5px 6px 7px 10px ;
    /* background-color: silver; */
    border-radius: 4px;
    font-size: 1.1rem;
    text-transform: capitalize;
}
.footer__mail{
    text-transform: lowercase !important;
}
.footer__links a:hover{
    background-color: #336899;
}
.contribution{
    border-top: 1px solid silver;
    /* max-width: 80rem; */
    margin: 0 3rem;
    padding: 1rem;
    color: white;
    display: flex;
    justify-content: space-between;
}
.contribution a{
    text-decoration: underline;
    color: silver;
}
.contribution1{
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.contribution2{
    display: flex;
    flex-direction: column;
    gap:.4rem;
}
.contribution__text1{
    font-size:clamp(0.7rem, 2vw, 0.8rem);
    line-height: 1.5;
    text-transform: capitalize;
}
.contribution__text3{
    font-size:clamp(0.7rem, 2vw, 0.8rem);
    font-family: var(--font_chakra);
    letter-spacing: 2px;
    line-height: 1.5;
    font-weight: 500;
}
.contribution__text1 a{
    margin-left: 5px;
    font-size: 0.7rem;
    background-color: var(--primary_color_1);
    padding: 3px 5px;
    border-radius: 3px;
}
.contribution__text1 i{
    color: white;
}
@media (max-width:950px) {
    .contribution{
        margin: 0 1rem;
    }
    .footer1{
        padding-left: 2rem;
    }
}
@media (max-width:800px) {
    .contribution{
        flex-direction: column-reverse;
        gap: 1rem;
    }
}
@media (max-width:600px) {
    .footer-background{
        margin-top: 5rem;
    }
    .footer-section{
        gap: 1rem;
    }
    .footer-container{
        flex-direction: column;
        gap: 2rem;
    }
    .footer1{
        padding-left: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid silver;
        border-left: none;
    }
    .footer2{
        padding-left: 1rem;
        margin-left: 0;
    }
    .contribution{
        margin: 0 1.5rem;
    }
}
/* FOOTER /////////////////////////////////////////////// */