*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', sans-serif, Georgia, 'Times New Roman';
    box-sizing: border-box;
}
p{
    font-size: 18px ;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(/Images/home.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 30%;
}
.navlinks{
    flex: 1;
    text-align: right;
}
.navlinks ul li{
    list-style: none;
    display:inline-block;
    padding: 8px 12px;
    position: relative;
}
.navlinks ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-size: 14px;
    
}
.navlinks ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: gold;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.navlinks ul li:hover::after{
    width: 100%;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
#side-text{
    font-weight: 600;
    
}
#side-text a{
    color: azure;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
#menu-button{
    display: none;
}
@media only screen and (max-width: 1130px) {

    #hideOnMobile{
        display: none;
    }
    #menu-button{
        display: block;
    }
    .sidebar{
        width: 60%;
    }
}



.textbox{
    width:90%;
    color: azure;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.textbox h1{
    font-size: 62px;
    
}
.textbox p{
    margin: 10px 0 40px;
    font-size: 16px;
    color: black;
    font-weight: 500;
}
.now{
    display: inline-block;
    text-decoration: none;
    color: azure;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.now:hover{
    border: 1px solid white;
    background:rgba(182, 136, 10, 0.808) ;
    transition: 1s;
}
@media(max-width:700px){
    .textbox h1{
        font-size: 16px;
    }
}


/* PICS*/
.pics{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px;
}
.pics-col{
    flex-basis: 32%;
    border-radius: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.pics-col img{
    width: 80%;
    border-radius: 10px;
    margin-bottom: 80px;
    margin-top: 20px;
}
#pic1{
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    display: block;
}
#pic2{
    height: 400px;
}
#pic3{
    padding-top: 10px;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    display: block;
}

.pics-col p{
    text-align: center;
    padding-bottom: 20px;
    
}

@media (max-width: 600px) { /* Adjust the max-width as needed */
    .center-image {
        width: 100%; /* Full width on smaller screens */
    }
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background:  rgba(24, 22, 16, 0.719);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}


/*Merch*/
.merch h1{
    text-align: center;
}

.container{
    max-width: 1224px;
    width: 90%;
    margin: auto;
    padding: 40px 0;
}
.caps{
    margin-bottom: 20px;
}
.gallery{
    display: flex;
    gap: 2px;
}
.column{
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.photo img{
    width: 80%;
    height: 80%;
    border-radius: 10px;
    object-fit: cover;
    max-width: 100%;
}
.container p{
    font-size: 16px;
}
.container ul{
    padding-bottom: 10px;
}
.container ul p{
    font-size: 11px;
}


/* Slideshow*/
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    
    overflow: hidden;
  }
/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    padding-top: 2px;
  }
  
.mySlides{
    border-radius: 10px;
    margin-left: 10%;
    box-sizing: border-box;
    padding-top: 20px;
    display: flex;
    transition: transform 1s ease-in-out;
}
.mySlides img{
    width: 80%;
    height: auto;
    object-fit: cover; /* Maintains aspect ratio and covers the container */
    max-width: 80%;
}
  .active {
    background-color: #717171;
  }
  
  /* Fading animation 
  .fade {
    transition: transform 1s ease-in-out;
    animation-duration: 3s;
  }*/
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }





/* About Us*/
.sub-header{
    min-height: 70vh;
    width: 100%;
    background-image: url(/Images/about.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-us-col{
    flex-basis: 50%;
    padding: 30px 2px;
}
.about-us-col img{
    width: 100%;
}
.about-us-col p{
    padding: 15px 0 25px;
}
#join-now{
    color: black;
    border: 1px solid black;
    border-radius: 50%;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(182, 136, 10, 0.808);
    text-decoration: none;
   
}
#join-now:hover{
    background: rgba(182, 136, 10, 0.808);
    transition: 1s;
}

.donate-now{
    color: black;
    border: 1px solid rgba(182, 136, 10, 0.808);
    font-weight: 600;
    padding: 12px 34px;
    text-decoration: none;

    
}
.donate-now:hover{
    color: black;
    background: rgba(182, 136, 10, 0.808);
    transition: 1s;
}

@media(max-width:700px){
    .textbox h1{
        font-size: 20px;
    }
}


/* Footer*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;

}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.fa-instagram{
    margin: 10px;
    color: black;
}
.fa-phone{
    margin: 10px;
    color: black;
}
.fa-tiktok{
    margin: 10px;
    color: black;
}
.fa-twitter{
    margin: 10px;
    color: black;
}

/* mission trips*/
.sub-sub-header{
    min-height: 50vh;
    width: 100%;
    background-image: url(/Images/mission.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
}
.sub-sub-header h1{
    margin: 30px;
    color: azure;
    text-align: left;
}

.mission-trips{
    width: 80%;
    text-align: center;
    margin: auto;
    padding-top: 100px;
}
.mission-trips-col{
    flex-basis: 10%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.mission-trips-col img{
    width: 30%;
    border-radius: 10px;
    margin-left: 100px;
    margin-top: 20px;
}
#img1{
    width: 50%;
    float: left;
    margin-left: auto;
    padding-right: 10px;
    text-align: center;
}
#img2{
    width: 50%;
    float: right;
    margin-left: auto;
    padding-left: 10px;
    text-align: center;
    margin-bottom: 20px;
}
#img3{
    width: 50%;
    float: left;
    margin-left: auto;
    padding-right: 10px;
    text-align: center;
}

.mission-trips-col p{
    text-align: center;
    position: relative;
    top: 20px;
}
.mission-trips-col h3{
    clear: left;
    padding-top: 40px;
    text-align: left;
}
#upcoming-events h2{
    margin-top: 150px;
    clear: left;
    padding-top: 35%;
    text-align: center;
}
#upcoming-events p{
    text-align: left;
}
#group{
    padding-bottom: 20px;
}
#join-now{
    float:center ;
}
.ig{
    padding-top: 30px;
    display: flex;
    align-items: center;
}
.instagram-media{
    margin-right: 10px;
    float: left;
    padding-right: 20px;
}
.text{
    flex: 1;
    margin-left: 20px;
}
#eventbrite-widget-modal-trigger-1011812046067{
    color: black;
    border: 1px solid black;
    border-radius: 50%;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(182, 136, 10, 0.808);
    text-decoration: none;
    background-color:rgba(182, 136, 10, 0.808) ;
    cursor: pointer;
   
}
.planning{
    padding: 30px 0 20px;
}
.planning img{
   height: 500px;
   border-radius: 10px;
   box-shadow: 10px 5px #93a591;
}



/*
#img1:hover{
    width: 50%;
    position: relative;
    transition: 1s;
}
#img2:hover{
    width: 40%;
    position: relative;
    transition: 1s;
}
.mission-trips-col video{
    width: 30%;
}
.mission-trips-col video:hover{
    width: 40%;
    position: relative;
    transition: 1s;
}
.mission-trips-col img:hover{
    width: 50%;
    position: relative;
    transition: 1s;
}
.mission-trips-col p{
    padding: 0;
}
.mission-trips-col h3{
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
    color: black;
}
    */
@media(max-width:700px){
    .textbox h1{
        font-size: 20px;
    }
    #upcoming-events h2{
        margin-top: 20px;
    }
    .text{
       display: none;
}
}

/* Executives*/
.four-header{
    min-height: 70vh;
    width: 100%;
    background-image:linear-gradient(rgba(4, 9, 30, 0.568),rgba(4, 9, 39, 0.541)), url(/Images/executives.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
}
.executives{
    width: 50%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.executives-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: rgba(3, 8, 31, 0.767);
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.executives-col img{
    height: 80px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
    
}
.executives-col p{
    padding: 0;
    color: azure;
}
.executives-col h3{
    margin-top: 15%;
    text-align: center;
    color: azure;
}
@media(max-width:700px){
    .textbox h1{
        font-size: 20px;
    }
    p{
        font-size: 12px;
    }
    h3{
        font-size: 18px;
    }
    
    .executives-col img{
        margin-right: 5px;
        margin-left: 0;
        height: 60px;
    }
}
/* Contact Us*/
.contact-us{
    width: 80%;
    margin:auto
}
.triple-header{
    min-height: 70vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.568),rgba(4, 9, 39, 0.541)),url(/Images/donate2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
}
.triple-header h1{
    color: azure;
}
.contact-col{
    flex-basis: 50%;
    margin-bottom: 30px;
    margin-left: 30px;
}
#paybill{
    text-align: center;
}
.fa-instagram{
    color: blueviolet;
}
.fa-phone{
    color: blueviolet;
}
.fa-twitter{
    color: blueviolet;
}
.fa-facebook{
    color: blueviolet;
}
