html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* --------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 2rem;
    background: #333;
    color:#efefef;
}
a {
    color: #ffc53e; 
}
h1, h2, h3, h4, h5 {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}
h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    margin: 0 auto 1rem;
}
h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    text-align: center;
    margin: 0 auto 1rem;
}
h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
    margin: 0 auto 1rem;
    color: #fff; 
}
p {
    margin: 0 0 1.5rem;
}
strong {
    font-weight: bold;
    color: #ffc53e; 
}
ul {
    margin: 1rem 0 0;
    padding: 0;
}
ul li {
    list-style: disc;
    padding: 0;
    margin: 0 0 .5rem 1rem;
    line-height: 1.5rem;
}
header {
    background: url('../images/header-background_2.jpg') no-repeat;
    background-size: cover;
    background-position:  center center;
    margin: 0px;
    padding: 1rem;
    height: auto;
}
header img.logo {
    height: 250px;
    width: auto;
    display: block;
    margin: 2rem auto;
}
@media screen and (max-width: 760px)
 {
    header img.logo {
        width: 80%;
        height: auto;
    }
}
section.navy-bar {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1761c1+0,6b2aa3+32,b93491+61,f06e84+100 */
    background: linear-gradient(135deg,  #1761c1 0%,#6b2aa3 32%,#8f236f 61%,#db5168 100%);
    color:#FFF;
    padding: 1rem 2rem;
}
section.navy-bar p.title {
    font-size: 2.3rem;
    font-weight: 200;
}
section.navy-bar blockquote {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    text-transform: none;
    text-align: left;
    display: block;
    margin: 1rem auto;
}

    #scroller {
        position: relative;
    }
    #scroller .innerScrollArea {
        overflow: hidden;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    #scroller ul {
        padding: 0;
        margin: 0;
        position: relative;
    }
    #scroller li {
        padding: 0;
        margin: 0;
        list-style-type: none;
        position: absolute;
        border-right: 5px solid #fff;
    }
    #scroller li img {
        height: 200px;
        width: auto;
        flex: 0 0 auto;            /* Prevent items from shrinking */
        display: block;
    }

ul.photos {
    display: flex;             /* Align items horizontally */
    overflow-x: hidden;        /* Hide the scrollbar */
    white-space: nowrap;       /* Prevent items from wrapping to a new line */
    list-style: none;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
ul.photos li {
    list-style: none;
    margin: 0 5px 0 0;
    display: inline-block;
}
ul.photos li img {
    height: 200px;
    width: auto;
    flex: 0 0 auto;            /* Prevent items from shrinking */
    display: block;
}
.photos {
    /* Layout */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;

    /* Scrollability — both of these are required for scrollLeft to work */
    overflow-x: scroll;
    overflow-y: hidden;

    /* iOS-specific */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;

    /* Prevent default <ul> indentation from corrupting item widths */
    list-style: none;
    padding: 0;
    margin: 0;

    /* Hide the scrollbar visually if desired */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.photos::-webkit-scrollbar {
    display: none;                /* Chrome, Safari, iOS */
}

.photos li {
    flex-shrink: 0;   /* Prevents images from being squished to fit */
}


iframe {
    border-radius: 10px;
}

form {
    display: block;
    width: 65%;
    margin: 0 auto;
}
label {
    display: block;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}
label input, label textarea {
    font-size: 1rem;
    line-height: 1.75rem;
    padding: .25rem .5rem;
    width: 100%;
    border-radius: 7px;
    display: block;
}
input[type="submit"] {
    background: lightblue;
    color:#333;
    padding: .5rem 1rem;
    border-radius: 7px;
    font-size: 1.3rem;
}


.border-bottom {
    border-bottom: 5px solid #fff;
}
.border-top {
    border-top: 5px solid #fff;
}
.padding-top { padding-top: 2rem; }
.padding-bottom { padding-bottom: 2rem; }
.margin-bottom { margin-bottom: 2rem; }

.background-navy {
    background: linear-gradient(to bottom,  #743a89 15%,#382768 51%,#3a4189 99%,#3a4189 99%);
}