* {
    margin:0;
    padding:0;
    /*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*font-family: 'Arvo', serif;*/
    font-family: 'Sora';
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
  
[class*="col-"] {
    float: left;
    padding: 15px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/* Banner */
.top-banner{
    position: sticky;
    top:0;
}
.clubLogo{
    width:100px;
    position: absolute;
    top: 8%;
    left:10%;
}
.top-banner ul{
    width:100%;
    display:flex;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 30px;
    background: white;
}
.top-banner li{
    list-style:none;
    margin-right:20px;
    font-size:18px;
}
.top-banner a{
    text-decoration: none;
    color: black;
}
.top-banner a:hover{
    color:red;
}

/* Index page */
.mainPage{
    /*font-family: 'Arvo', serif;*/
}

/*image slideshow */

.banner{
    background-color: black;
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-image: url(images/envPhoto1.jpg); 
    
}

#prevbtn, 
#nextbtn{
    position:absolute;
    color:white;
    top: 50%;
    font-size: 50px;
    border-radius: 100%;
}

#prevbtn{
    left: 10%;
}

#nextbtn{
    right: 10%;
}

.banner-text{
    text-align: center;
    color:white;
    padding-top: 20vh;
}
.banner-text h1{
    font-family: 'Sora';
    font-size: 100px;
}
.banner-text h5{
    font-size: 20px;
}
.banner-btn{
    margin: 70px auto 0;
}
.banner-btn a{
    width: 150px;
    display: inline-block;
    color:white;
    border: .5px solid white;
    text-align:center;
    text-decoration: none;
    padding: 12px 0;
    margin: 0 10px;
    position:relative;
    z-index: 1;
    transition: color .5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    background: white;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
}
.banner-btn a:hover span{
    width:100%;
}
.banner-btn a:hover{
    color:black;
}
/*First*/
#mission {
    height:30vh;
    padding-top:10vh;
    text-align: center;
    font-size:32px;
    font-weight: bold;
}
#mission p{
    padding-top:5vh;
    font-size: 18px;
}
/*gallery*/
/*https://timnwells.medium.com/create-a-simple-responsive-image-gallery-with-html-and-css-fcb973f595ea*/
#gallery {
    line-height:0;
    -webkit-column-count:2; /* split it into 5 columns */
    -webkit-column-gap:5px; /* give it a 5px gap between columns */
    -moz-column-count:2;
    -moz-column-gap:5px;
    column-count:2;
    column-gap:5px;
 }
 #gallery img {
    width: 100%;
    height: auto;
    margin-bottom:5px; /* to match column gap */
 }
 @media (max-width: 1200px) {
    #gallery {
     -moz-column-count:    4;
     -webkit-column-count: 4;
     column-count:         4;
    }
 }
 @media (max-width: 1000px) {
    #gallery {
     -moz-column-count:    3;
     -webkit-column-count: 3;
     column-count:         3;
    }
 }

 .container{
    position: relative;  
 }

 .overlay{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.6);
    transition: .5s ease;
    opacity:0;
 }

 .container:hover .overlay{
    opacity:1;
 }

 .text p {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

/*Second*/
#garden {
    text-align: center;
    align-items: center;
    height:70vh;
}
#garden h1 {
    padding-bottom: 5vh;
}
#garden img{
    max-width: 70vw;
    max-height: 50vh;
    margin-left: 20px;
    background-size: cover;
    border: 7px solid grey;
}
#garden .img2{
    height: 100vh;
}
/*Third*/
#litterPickup {
    text-align: center;
    align-items: center;
    height:100vh;
}
#litterPickup img {
    max-width: 70vw;
    max-height: 50vh;
    margin-left: 20px;
    background-size: cover;
    border: 7px solid grey;
}
/*Fourth*/
#recycle {
    padding-top: 10px;
    text-align: center;
    align-items: center;
    height:100vh;
}
#recycle img {
    max-width: 70vw;
    max-height: 50vh;
    margin-left: 20px;
    background-size: cover;
    border: 7px solid grey;
}
.join-us{
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 20vh;
}
.join-us a{
    text-decoration: none;
    background-color: palegreen;
    color: black;
    font-size: 30px;
    width: 150px;
    display: inline-block;
    border: .75px solid green;
    position:relative;
    padding: 12px 0;
    margin: 0 10px;
}
.join-us a:hover{
    color:red;
}

/* Footer */
footer{
    position: relative;
    bottom:0;
    left: 0;
    right: 0;
    background:rgb(37, 36, 36);
    height:auto;
    width: 100vw;
    padding-top: 12vh;
    padding-bottom: 8vh;
    color:white;
    text-align: left;

}

.footer-content .footer-left{
    display: block;
    width: 30%;
    margin-bottom: 8vh;
    margin-left:5vw;
}
.footer-left h3{
    font-size: 32px;
}
.footer-left h4{
    color:green;
    font-size: 30px;
}
.footer-left h5{
    font-size: 18px;
    margin-top: 43px;
}
.footer-left h6{
    color:grey;
    font-size: 20px;
    margin-top: 150px;
}
.footer-content .footer-center{
    display: block;
    margin-right:5vw;
    width: 25%;
}
.footer-center h3{
    font-size: 24px;
}
.footer-center h4{
    font-size: 18px;
    margin-top: 30px;
}
.footer-content .footer-right{
    display: block;
    width: 30%;
}
.footer-right h3{
    font-size: 32px;
    padding-bottom: 40px;
}
.footer-right h4{
    margin-bottom: 60px;
}
.footer-right i{
    font-size: 26px;
}
.footer-right i h4{
    margin-left: 40px;
}


.footer-content .footer-left,
.footer-content .footer-center,
.footer-content .footer-right{
    display: inline-block;
    vertical-align: top;
}

/* About Page */
.execPhotos{
    display: grid;
    padding: 2rem;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items:top;
    max-width: 800px;
    margin: 0 auto;
    font: 500 100%/1.5 system-ui;
}
.execPhotosTitle{
    text-align: center;
    font-size:40px;
    padding: 20px 0 40px 0;
}
.execPhotos img{
    float: left;
    width:  200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    /*max-height: 200px;
    max-width: 200px;
    */
}

/* Blog Page */

.blogTitle{
    text-align: center;
    font-size: 40px;
    padding: 20px 0 40px 0;
}
.presentations h3{
    font-size: 20px;
}
.googleSlides{
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}
.googleSlides iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Calendar Page */
.calendar .googleCalendar{
    text-align: center;
}
