
.header {
   min-height: 100vh;
   width: 100%;
   background-image: linear-gradient(rgba(4,0,0,0.75),rgba(4,0,0,0.75)), url(KeyClubPic.png);
   background-position: center;
   background-size: cover;
   position: relative;
}

@media(max-width: 700px){
    .header img{
        width:100px ;
        height:100px ;
    }
}

 
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 200px;
}

.nav-links{
    flex: 1;
    text-align: center;

}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-size: 21px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #d9dc3b;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: rgb(252, 252, 252);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    
}
.text-box h2 {
    font-family:'Poppins', sans-serif;
    margin: 1px 0 40px;
    font-size: 20px;
    
    
}
.text-box .line{
    margin-bottom: 30px;
}
.social-links{
    display: inline-block;
    text-decoration: none;
    color:white;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-family:'Poppins', sans-serif;
}
.social-links:hover{
    border: 1px solid lightslategray;
    background: lightslategray;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: lightslategray;
        height: 100vh;
        width: 200px;
        top:0;
        right:-200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        overflow-x: hidden;

    }
    nav .fa{
        display:block;
        color: whitesmoke;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}
/*----- Join -----*/

.join {
    width: 80%;
    height: fit-content;
    margin: auto;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px ;

}
.join .line{
    margin-bottom: 30px;
}
.join p{
    font-size: 20px;
    font-family:'Poppins', sans-serif;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    line-height: 1.7;
}

h1{
    
    font-family:'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}

h2{
    font-family:'Poppins', sans-serif;
    text-align: center;
}



p{
    
    font-family:'Poppins', sans-serif;
    text-align: center;
    color:black;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    line-height: 1.7;
}


.join a{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: black;
}
.join h3{
    color: black;
}
.join .ctn{
    display: inline-block;
    text-decoration: none;
    color:black;
    border: 1px solid black; 
    padding: 12px 34px;
    font-size: 15px;
    font-weight: 600;
    background:transparent ;
    position: relative;
    cursor: pointer;
    font-family:'Poppins', sans-serif;
}
.join .ctn:hover{
    border: 1px solid black;
    background: rgb(233, 233, 158);
    transition: 1s;
}

.join-col .ctn{
    margin-top: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.join-col{
    border: 1px solid  rgb(200, 200, 132) ;
    flex-basis: 31%;
    background-color: lightgoldenrodyellow;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;

}
.join-col p{
    font-family:'Poppins', sans-serif;
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
h3{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.join-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .join {
        width: 80%;
        height:fit-content;
        margin: auto;
        text-align:center;
        padding-top: 100px;
        margin-bottom: 50px;
    
    }
}

/*-----what is key clubs/ explore---*/

.explore{
    width:100%;
    height: 80vh;
    background-image:linear-gradient(rgba(4,0,0,0.75),rgba(4,0,0,0.75)), url(ExplorePic.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.explore-content{
    width: 60%;
    padding: 50px;
    color: whitesmoke;
    align-items: center;
    flex-direction: column;
    display: flex
}

.explore-content h1{
    font-size: 7vmin;
}

.line{
    width: 150px;
    height: 4px;
    background: rgb(222, 222, 51);
    border-radius: 5px;
    margin: 10px auto
}

.explore-content .line{
    margin-bottom: 50px;

}
.explore-content p{
    color: #fff;
    font-size: 20px;

}

.ctn{
    display: inline-block;
    text-decoration: none;
    color:white;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-family:'Poppins', sans-serif;
}
.ctn:hover{
    border: 1px solid lightslategray;
    background: lightslategray;
    transition: 1s;
}
.explore-content .ctn{
    margin-top: 40px;
}



@media(max-width: 700px){
    .explore{
        flex-direction: column;
        width:100%;
        height: fit-content;
        background-image:linear-gradient(rgba(4,0,0,0.75),rgba(4,0,0,0.75)), url(ExplorePic.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        display:flex;
        align-items: center;
        margin: auto;
        position: relative;
        
    }
    .explore-content{
        width: 60%;
        padding: 50px;
        color: whitesmoke;
        align-items: center;
        flex-direction: column;
        display: flex;
        height: fit-content;
    }
    .explore-content p{
        color: #fff;
        font-size: 16px;
    
    }
    .explore-content h1{
        font-size: 50px;
    }
    
}




/*----text---*/
.text{
    align-content: center;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    
}

.text p{
    align-self: center;
    font-size: 20px;
    text-align: center;
    align-items: center;
    align-content: center;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1.7;
   
}




/*---slideshow---*/

.slideshow{
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    display:flex;
    min-height: 50vh;
    margin-bottom: 100px;
    
}


.wrapper{
    max-width: fit-content;
    position: relative;
}

.wrapper i{
    top: 50%;
    background: whitesmoke;
    height: 46px;
    width: 46px;
    cursor:pointer;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    position: absolute;
    transform: translateY(-50%)
}

.wrapper i:first-child{
    left: -23px;
    display: none;

}

.wrapper i:last-child{
    right: -23px;
    
}

.wrapper .carousel{
    white-space: nowrap;
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    scroll-behavior:smooth;

}

.carousel .dragging{
    cursor: grab;
    scroll-behavior: auto;

}
.carousel.dragging img{
    pointer-events: none;
}

.carousel img{
    height: 340px;
    object-fit: cover;
    width: calc(100%/3);
    margin-left: 14px;
}

.carousel img:first-child{
    margin-left: 0px;

}

@media screen and (max-width: 900px) {
    .carousel img{
        width: calc(100%/1);
    }
}
@media screen and (max-width: 550px ) {
    .carousel img{
        width: 100%;
    }
}



/*-----Footer------*/
.footer{
    max-height: fit-content;
   /* background-image: url(Blue.png);
    background-size: cover; */
    background-color: black;
    font-size: 15px;
    width: 100%;
    text-align: center;
    padding: 30px 0 ;
}
.footer h3{
    color: whitesmoke;
}
.footer h4{
    color: whitesmoke;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.footer p{
    color: whitesmoke;
    font-size: 15px;
    font-family:'Poppins', sans-serif; 
}
.icons .fa{
    color: whitesmoke;
    margin: 0 13px;
    cursor: pointer;
    padding:18px 0;


}
.footer .fa-heart-o{
    color: lightcoral;
}



/*-----About Page----*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-position: center;
    /*background-image: url(Blue.png);
    background-size: cover; */
    background-color: black;
    text-align: center;
    color: white;


}

.about-us{
    width: 80%;
    margin: auto;
   
    padding-top: 80px;
    text-align: left;
    padding-bottom: 50px;
    
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px; 
    /*width: 50vh;
    align-items: center; */
}

.about-col img{
    width: 100%;
   /* align-items: center; */
   
}

.about-col h1{
    padding-top: 0;
    
    
   
    
}

.about-col p{
    padding: 15px 0 25px;
    
}

.line-mod{
    width: 150px;
    height: 4px;
    background: rgb(222, 222, 51);
    border-radius: 5px;
   
    margin: 10px auto;
    
}

.red-btn{
    border: 1px solid #d9dc3b;
    background: transparent;
    color: #d9dc3b;
    align-items: center;
    /*margin-left: 24vh; */
}
.red-btn:hover{
    border: 1px solid rgb(241, 241, 132);
    background: rgb(241, 241, 132);
    transition: 1s;
}

@media(max-width: 700px){
    .about-col h1{
        padding-top: 0;
        
        

        
        
    
    }
    .about-col p{
        padding: 5px 0 25px;
        
        
        
        
    }
    .about-col img{
        width:100%;
        
        
        
    }
    .red-btn{
        border: 1px solid #d9dc3b;
        background: transparent;
        color: #d9dc3b;
        align-self: auto;
       
       
    }

}

.about-us-next{
    width: 80%;
    text-align: left;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;

}

.about-col-next{
    flex-basis: 48%;
    padding: 30px 2px;
   
    
    margin: auto;

}

.about-col-next img{
    width: 100%;
   
}

.about-col-next h1{
    padding-top: 0;
    
    font-size: 15;
   
    

}
.about-col-next p{
    padding: 15px 0 25px;
   
   
    
}

@media(max-width: 700px){
    .about-col-next h1{
        padding-top: 0;
        
        

        
        
    
    }
    .about-col-next p{
        padding: 5px 0 25px;
        
        
        
        
    }
    .about-col-next img{
        width:100%;
        
        
        
    }
}

.explore-again{
    width:100%;
    height: 80vh;
    background-image:linear-gradient(rgba(4,0,0,0.75),rgba(4,0,0,0.75)), url(relayforlife.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

@media(max-width: 700px){
    .explore-again{
        flex-direction: column;
        width:100%;
        height: fit-content;
        background-image:linear-gradient(rgba(4,0,0,0.75),rgba(4,0,0,0.75)), url(relayforlife.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        display:flex;
        align-items: center;
        margin: auto;
        position: relative;
        
    }
    .explore-content{
        width: 60%;
        padding: 50px;
        color: whitesmoke;
        align-items: center;
        flex-direction: column;
        display: flex;
        height: fit-content;
    }
    .explore-content p{
        color: #fff;
        font-size: 16px;
    
    }
    .explore-content h1{
        font-size: 50px;
    }
    
}



/*---calendar page-----*/


#calendar{
    margin: 10vh;
    width:80%;
    position:relative;
    top:50%;
    left:50%;
    transform: translate(-58%,0);
    

}
@media(max-width: 700px){
    #calendar{
        margin: 10vh;
        position:relative;
        top:50%;
        left:50%;
        transform: translate(-68%,0);
        align-items: center;
        
    
    }

}
/*---officers page-----*/

.officer-header{
    margin-top: 110px;
}


.officers{
    margin: auto;
    width: 80%;
    align-items: center;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px;
  

}

.off{
    width:300px;
    height:330px;
    display:inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
}

.off h3{
    margin-top: 340px;
}


.off1{
    background-image: url(prez.JPG);

}

.off2{
    background-image: url(vpup.png);

}
.off3{
    background-image: url(sec.JPG);

}
.off4{
    background-image: url(tres.JPG);

}
.off5{
    background-image: url(hist.JPG);

}
.off6{
    background-image: url(be.JPG);

}
.off7{
    background-image: url(saa.JPG);

}
.off8{
    background-image: url(mvp.png);

}

/*---members page-----*/



.member-resources{
    margin: auto;
  
    width: 80%;
    align-items: center;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px;

}

.mem{
    font-size: 20px;
    width: 300px;
    height:300px;
    display:inline-block;
    border-radius: 15px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
    margin: 40px;
     
}


.mem:hover{
    border: 5px solid rgb(170, 170, 170);
    
    transition: 1s;
}

.mem1{
    background-image: url(agenda.png);

}

.mem2{
    background-image: url(hrsndforms.jpg);

}
.mem3{
    background-image: url(cheersss.png);

}
.mem4{
    background-image: url(rtcprep.png);

}


.ctnn{
    width:300px;
    height:300px;
    display: inline-block;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 15px;
    background: transparent;
   
   
    cursor: pointer;
    font-family:'Poppins', sans-serif;
}
.ctnn:hover{
    transition: 1s;
}

@media(max-width: 700px){
    .member-resources{
   
  
        text-align: center;
        align-items: center;
        height: fit-content;
        text-align:center;
        padding-top: 100px;
        margin-bottom:50px;
    
    }
    .mem{
        font-size: 20px;
        width:150px;
        height:150px;
        display:inline-table;
        border-radius: 15px;
        padding: 15px 25px;
        box-sizing: border-box;
        cursor: pointer;
       
        background-position: center;
        background-size: cover;
        margin: 5px;
    }
    .ctnn{
        width:150px;
        height:150px;
        display: inline-block;
        text-decoration: none;
        padding: 15px 25px;
        font-size: 15px;
        background: transparent;
       
       
        cursor: pointer;
        font-family:'Poppins', sans-serif;
    }
    


}




/*---hours and forms -----*/


.hours-content{
    margin: auto;
    align-items: center;
    width: 80%;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px



}


.hours-header h1{
    font-size: 40px;

}

.forms img{
    margin: 30px;
    border-radius: 20px;
     
}

.forms img:hover{
    border: 5px solid rgb(170, 170, 170);
    background: rgb(170, 170, 170);
    transition: 1s;
}

@media(max-width: 700px){
    .forms img{
        margin: 5px;
         
    }
    .hours-content{
        
        align-items: center;
        
        height: fit-content;
        text-align:center;
        padding-top: 100px;
        margin-bottom:50px
    
    
    
    }

}






/*---password screen -----*/



.container-login{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;

}

.box{
    background: lightgray;
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0,0,0,0.5);

}

.form-box{
    width: 400px;
    margin: 0px 10px;
}

.form-box header{
    font-size: 25px;
    font-weight:600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px;
}

.form-box form .field{
    display: flex;
    margin-bottom: 10px;
    flex-direction:column;

}

.form-box form .input input{
    height: 40px;
    width: 100%;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline:none;
}

.submit-btn{
    height: 35px;
    background: rgba(76,68,182,0.808);
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
    padding: 0px 10px;
}
.submit-btn:hover{
    opacity:0.82;
}


.submit{
    width: 100%;

}



.booey img{
    align-items: center;
    width: 100%;
    height: 75%;
}




/*---cheers page-----*/




.cheers{
    margin: auto;
    width: 80%;
    align-items: center;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom: 10px;
   
  

}

.cheer{
    width:300px;
    height:fit-content;
    display:inline-table;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 5px;
    background-position: center;
    background-size: cover;
    
    flex-direction: column;
    
    

}

.cheer h3{
    font-size: 27px;
}



/*---galllery page-----*/

.gallery-content{
    margin: auto;
    align-items: center;
    width: 80%;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px



}

.gallery-header h1{
    font-size: 40px;

}


.gallery img{
    margin: 30px;
    border-radius: 10px;
     
}

.gallery img:hover{
    border: 5px solid rgb(170, 170, 170);
    background: rgb(170, 170, 170);
    transition: 1s;
}

.btn{
    
    background: transparent;
    color: #d9dc3b;
    align-items: center;
    
}

@media(max-width: 700px){
    .gallery img{
        margin: 5px;
         
    }
    .gallery-content{
        
        align-items: center;
        
        height: fit-content;
        text-align:center;
        padding-top: 100px;
        margin-bottom:50px
    
    
    
    }

}



















/*---newsletter page-----*/

.newsletter-content{
    margin: auto;
    align-items: center;
    width: 80%;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px



}

.newsletter-header h1{
    font-size: 40px;

}


.newsletters img{
    margin: 30px;
     
}

.newsletters img:hover{
    border: 5px solid rgb(170, 170, 170);
    background: rgb(170, 170, 170);
    transition: 1s;
}

.btn{
    
    background: transparent;
    color: #d9dc3b;
    align-items: center;
    
}

@media(max-width: 700px){
    .newsletters img{
        margin: 5px;
         
    }
    .newsletter-content{
        
        align-items: center;
        
        height: fit-content;
        text-align:center;
        padding-top: 100px;
        margin-bottom:50px
    
    
    
    }

}




.RTC-Videos{
    
    margin: auto;
    width: 80%;
    align-items: center;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px;
      
    

}
.WWRY{
    height: 80%;
}

/*---contact page-----*/




.offs{
    width:300px;
    height:330px;
    display:inline-block;
    border-radius: 50%;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
}

.offs h3{
    margin-top: 340px;
}

.ctnnn{
    display: inline-block;
    text-decoration: none;
    color:black;
    border: 1px solid black; 
    padding: 12px 34px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    background: lightgoldenrodyellow;
    cursor: pointer;
    font-family:'Poppins', sans-serif;
}






/*---agendaa page-----*/

.agenda-content{
    margin: auto;
    align-items: center;
    width: 80%;
    height: fit-content;
    text-align:center;
    padding-top: 100px;
    margin-bottom:50px



}




.agendas img{
    margin: 30px;
     
}

.agendas img:hover{
    border: 5px solid rgb(170, 170, 170);
    background: rgb(170, 170, 170);
    transition: 1s;
}

.btn{
    
    background: transparent;
    color: #d9dc3b;
    align-items: center;
    
}

@media(max-width: 700px){
    .agendas img{
        margin: 5px;
         
    }
    .agenda-content{
        
        align-items: center;
        
        height: fit-content;
        text-align:center;
        padding-top: 100px;
        margin-bottom:50px
    
    
    
    }

}
