.drop-cap:first-letter {
    float: left;
    margin: 0 7px -5px 0;
    font-size: 335%;
    line-height: 100%;
}



/*------------------------------------------------------------------
[Master Stylesheet]

Project:	One Ancient Hope Website
Last change:	12/2/2017 | Updated for Bootstrap 5: 2025
Designed by:	Kayleigh Pingel | kayleighpingel.com

[Table of contents]

1. General
2. Navigation
3. Header
4. Sections
5. Footer
6. Components

[Color codes]

Buttons, Links etc: #136082 (blue)
Hover color: #fed136 (yellow)
-------------------------------------------------------------------*/

/*--------------------
1. General
--------------------*/

body {
    background-color: #f8f8f8;
    margin: 0px;
    font-family: "Open Sans", Sans-serif;
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: 0.4px;
    font-family: "Oswald", Sans-serif;
    color: #232323;
    line-height:1.6em;
}
h2{font-size:36px;}
h3{font-size:26px;}
h4{font-size:20px;}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #333;
}

a {
    color: #136082;
    text-decoration: underline;
}

    a:hover, a:focus, a:active, a.active {
        color: #879e34;
    }

a, a:hover, a:focus, a:active, a.active {
    outline: 0;
}

::selection {
    text-shadow: none;
    background: #fed136;
}

img {
    max-width:95%;
    display:inline-block;

}

i.big {
    font-size: 1.3em;
    margin: 15px 0;
    display: inline-block;
}

/*--------------------
2. Navigation - Bootstrap 5
--------------------*/

.navbar {
    background-color: #f8f8f8;
    border-bottom:2px solid #ccc;
}

    .navbar .navbar-logo {
        color: #fff;
        font-family: "Oswald",sans-serif;
        padding: 0px;
    }

        .navbar .navbar-logo:hover, .navbar .navbar-logo:focus, .navbar .navbar-logo:active, .navbar .navbar-logo.active {
            color: #fec503
        }

    .navbar .navbar-collapse {
        border-color: rgba(255,255,255,.02)
    }

    .navbar .navbar-toggler {
        background-color: #136082;
        border-color: #136082;
    }

        .navbar .navbar-toggler:hover, .navbar .navbar-toggler:focus {
            background-color: #fed136;
            border-color: #fed136;
        }

    .navbar .nav-link {
        font-family: "Open Sans",sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1px;
        color: #222;
        text-decoration: none;
        font-size: 19px;
    }

        .navbar .nav-link:hover, .navbar .nav-link:focus {
            color: #136082;
            outline: 0
        }

    .navbar .navbar-nav .nav-link.active {
        border-radius: 0;
        color: #fff;
        background-color: #136082
    }

        .navbar .navbar-nav .nav-link.active:hover, .navbar .navbar-nav .nav-link.active:focus {
            color: #fff;
            background-color: #fed136
        }
.navbar-logo {
    display:block;
    background-image: url("/images/OAHWebLogoText.png");
    background-size:contain;
    background-repeat:no-repeat;
    height:130px;
    width:260px;
}

    .navbar-logo p {
        display: none;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        margin-left: 55px;
        font-weight: bold;
        font-size: 18px;
        line-height: 40px;
    }
.navbar.navbar-shrink {
    border-bottom: 2px solid #ccc;
}
.navbar.navbar-shrink .nav-link {
    color: #000 !important;
}
.navbar.navbar-shrink .navbar-logo {
    height: 50px;
    width: 55px;
    background-image: url("/images/OAHWebLogo.png");
}

.navbar-nav {
    margin-left: auto;
}

.subnav {
    padding: 25px 0 20px 0;
    margin-top: 130px;
    text-align:center;
    background-color:#fff;
    border-bottom: 1px solid #eee;
}
    .subnav strong {display:inline;}
    .subnav ul {
        display:inline;
        list-style-type: none;
        padding: 0 0 0 2%;
    }
    .subnav li {
        display:inline-block;
        padding: 0 2% 10px 2%;
        font-family: "Open Sans",sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
    }
    .subnav a {
        text-decoration: none;
    }


@media (min-width:768px) {
    .navbar {
        background-color: transparent;
        padding: 25px 0;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
        border: 0
    }

        .navbar .navbar-logo {
            font-size: 2em;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            transition: all .3s
        }

        .navbar .navbar-nav .nav-link.active {
            border-radius: 3px
        }

        .navbar.navbar-shrink {
            background-color: #f8f8f8;
            padding: 10px 0;
        }

            .navbar.navbar-shrink .navbar-logo {
                font-size: 1.5em
            }

}

@media (min-width:992px){
    .navbar.navbar-shrink .navbar-logo p {
        width:270px;
        display:block;
        line-height:50px;
        margin-left:65px;
    }
    .navbar.navbar-shrink .navbar-logo {width:260px;}
}

@media (min-width:768px) and (max-width:991px) {
    .navbar-nav {
        margin-left: 0;
        text-align: center;
    }

    .navbar .navbar-shrink .navbar-logo {
        margin: 0;
    }

    .navbar-logo {
        margin: 0 auto;
    }
}
@media (max-width:767px) {
    .navbar-nav {text-align:center;}
    .navbar-logo {
        background-image: url("/images/OAHWebLogo.png");
        height: 40px;
        margin: 5px;
    }
    .navbar-logo p {display:block;}

    .navbar.navbar-shrink .navbar-logo {
        height: 40px;
        width:260px;
    }
    .navbar .nav-link {
        color: #222
    }
}

    /*--------------------
3. Header
--------------------*/

header {
    background-color: #135f82;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px rgba(0,0,0,.3);
    margin-top: -80px;
    padding-top: 80px;
}
    header .container {
        min-height: 180px;
    }
        header .intro-text {
            padding-top: 100px;
            padding-bottom: 50px;
        }

    header .intro-text .intro-lead-in {
        font-style: italic;
        font-size: 30px;
        line-height: 1.4em;
        margin-bottom: 25px;
    }

    header .intro-text .intro-heading {
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 25px;
    }


    @media (min-width: 768px) {
        header .container {
            min-height: 215px;
        }

        header .intro-text {
            padding-top: 250px;
            padding-bottom: 100px;
        }

        header .extended-intro-text {
            padding-top: 300px;
            padding-bottom: 200px;
        }

        header .intro-text .intro-lead-in {
            font-size: 58px;
            margin-bottom: 25px;
        }
        header .intro-text .intro-heading {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 75px;
            line-height: 75px;
            margin-bottom: 50px;
        }
    }
    @media (min-width:992px) {
        header .intro-text {
            padding-top: 200px;
        }
    }
/*--------------------
4. Sections
--------------------*/
section {
    background-size: cover !important; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; padding: 70px 0;
}
    section h2 {
        font-size: 34px;
        text-transform: uppercase;
    }

    section p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7em;
        margin: 20px auto;
        max-width:85%;
    }
    section ul {
        margin: 20px auto;
        max-width: 85%;
        line-height: 1.7em;
        list-style-position: inside;
        padding: 0;
    }
    section blockquote { max-width: 85%;margin:0 auto;}

    .dark-bg, .dark-overlay {
        background-color: #323232;
        color: #fff !important;
    }
        .dark-bg a, .dark-overlay a {
            color: #fed136;
        }
            .dark-bg a:hover, .dark-bg a:focus, .dark-overlay a:hover, .dark-overlay a:focus {
                color: #fff;
            }

        .dark-bg p, .dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6,
        .dark-overlay p, .dark-overlay h1, .dark-overlay h2, .dark-overlay h3, .dark-overlay h4, .dark-overlay h5, .dark-overlay h6 {
            color: #fff !important;
        }

    section, .light-bg {
        background-color: #f8f8f8;
    }

    .dark-overlay:before, .light-overlay:before {
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

    .dark-overlay:before {
        background-color: rgba(15,15,15,0.6);
    }

    .dark-overlay-heavy:before {
        background-color: rgba(15,15,15,0.6);
    }

    .light-overlay:before {
        background-color: rgba(255,255,255,0.75);
    }

    .light-overlay, .light-overlay p {
        color: #000;
    }

    .dark-overlay, .dark-overlay-heavy, .light-overlay {
        position: relative;
        z-index: 1;
    }
@media (max-width: 768px) {
    section { padding: 30px 0;}
}

    /*--------------------
5. Footer
--------------------*/

    footer {
        padding: 30px;
        background-color: #000;
    }
        footer img {margin-left:15px;}
        footer p {
            color: #B7B7B7;
            margin: 0;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 1.6px;
        }

            footer p a {
                color: #fff;
            }

                footer p a span {
                    color: #FF9F46;
                    font-size: 10px;
                    letter-spacing: 1px;
                    font-weight: 700;
                }
    @media (max-width: 768px) {
        footer, footer .text-right, footer .text-end {
            text-align:center !important;
        }
        footer img {margin-top:20px;}
    }

    /*--------------------
6. Components
--------------------*/

    .btn {
        display: inline-block;
        padding: 8px 20px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border-radius: 4px;
        -webkit-transition: background-color .35s;
        -moz-transition: background-color .35s;
        transition: background-color .35s;
    }

        .btn a, a.btn {
            text-decoration: none;
        }

        .btn:hover, .btn:focus, .btn:active, .btn.active {
            color: #fff;
            background-color: #fec503;
        }

    .btn-xl {
        color: #fff;
        background-color: #136082;
        font-family: "Roboto",sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 3px;
        font-size: 18px;
        padding: 20px 40px;
    }

        .btn-xl:hover, .btn-xl:focus, .btn-xl:active, .btn-xl.active {
            color: #fff;
            background-color: #fec503;
        }


    /* Back to top button
---------------------------------- */
    #back-top {
        position: fixed;
        z-index: 1000;
        bottom: 40px;
        right: 50px;
    }

        #back-top a {
            width: 60px;
            height: 60px;
            display: block;
            text-align: center;
            font-size: 35px;
            text-decoration: none;
            color: #FFFFFF;
            background: #A9A9B1;
            padding: 11px 0 11px 3px;
            /* background color transition */
            -webkit-transition: background-color .35s;
            -moz-transition: background-color .35s;
            transition: background-color .35s;
        }

            #back-top a:hover {
                background: #fed136;
            }

    @media only screen and (min-width : 320px) and (max-width : 480px) {
        #back-top {
            position: fixed;
            bottom: 10px;
            right: 30px;
        }

            #back-top a {
                width: 40px;
                height: 40px;
                font-size: 20px;
                padding-top: 9px;
            }

            #back-top i {
                margin-top: 7px;
                font-size: 20px;
            }
    }
