/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html{
    font-size: 16px;
}

body {
    /* background: #f9f9f9; */
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    /* background-color: rgb(255, 255, 255); */

    /* background: linear-gradient(45deg, rgba(20, 94, 255, 0.8), rgba(255, 255, 255, 0.0),rgba(20, 94, 255, 0.8)); */

    background: linear-gradient(90deg, rgba(20, 94, 255, 0.8), rgba(255, 255, 255, 0.0),rgba(20, 94, 255, 0.8));
}

#Apex-contact-information{
    /* background-color: green; */
    display: flex;
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 20px; */
}

#Apex-contact-information ul{
    list-style: none;
}

.other-b{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pages-h2{
    /* background-color: red; */
    /* margin-top: 20px;
    margin-bottom: 20px; */
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 2rem;
    display: block;
    width: 100%;
    text-align: center;
}


.after-bar-h2-container{
    /* background-color: red; */
    display: flex;
    justify-content: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.after-bar-h2{
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    padding-top: 5px;
    background: linear-gradient(45deg, rgb(51, 51, 51), rgb(199, 199, 199), rgb(51, 51, 51));
    display: block; 
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

/* Section styling */
/* section {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
} */

/* Footer styling */
/* footer {
    text-align: center;
    padding: 50px;
    background: #333;
    color: #fff;
} */

#other-nav-links{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    color: black;
    width: 100%;
    justify-content: center;
    
}

#other-nav-links li{
    /* background-color: blue; */
    padding: 20px;
}

#other-nav-links a{
    /* padding-right: 20px;
    padding-left: 20px; */
    /* background-color: red; */
    /* text-underline-offset: 5px; */
    color: black;
    text-decoration: underline;
}

#other-nav-links-cookie{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    color: black;
    width: 100%;
    justify-content: center;
}

#other-nav-links-cookie li{
    padding: 20px;
    /* background-color: red; */
}

#other-nav-links-cookie a{
    color: white;
    text-decoration: underline;
}

/*
footer {
    background: linear-gradient(45deg, rgba(20, 94, 255, 0.8), rgba(255, 255, 255, 0.0),rgba(20, 94, 255, 0.8));
    color: black;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

footer p {
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
*/

#mission-statment{
    /* color: black; 
    font-size: 2rem; 
    margin-bottom: 50px; 
    margin-left: 10px; 
    margin-right: 10px; 
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
    z-index: 2; */

    color: black; 
    font-size: 1rem; 
    margin-bottom: 50px; 
    margin-left: 70px; 
    margin-right: 70px; 
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    /* background-color: lightcoral; */
    padding: 5px;
    border-radius: 5px;
    /* max-width: 800px; */
}

#mission-statment-2{
    color: black; 
    font-size: 1rem; 
    margin-bottom: 50px; 
    margin-left: 70px; 
    margin-right: 70px; 
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    padding: 5px;
    border-radius: 5px;
    max-width: 800px;
}

@media (max-width: 1400px){
    #mission-statment{
        max-width: 500px;
    }
}

@keyframes hero_zoom_effect {
    0%{
        background-size: 100%;
    }
    50%{
        background-size: 150%;
    }
    100%{
        background-size: 100%;
    }
}