html {
    font-size: 62.5%;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-amiri);
    font-size: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

a img {
    border: none;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h2 {
    font-family: var(--font-aleo);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 3rem 0;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h4 {

}

h5 {

}

h6 {

}

p {
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

ul {
    margin-bottom: 1.5rem;
    list-style-type: disc;
    margin-left: 1.25rem;
}

ul li  {
    line-height: 1.6;
    margin-bottom: 1rem;
}

ul ul {
    list-style-type: circle;
}

hr {
    margin: 2rem 0;
}

ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
    margin-top: 4rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

a.skip-link {
   color: #fff;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    word-wrap: normal;
}

.page-title {
    font-family: var(--font-aleo);
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 auto 6rem auto;
    padding: 4rem 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.page-title::before {
    background-image: url("../images/title-decoration.png");
    background-repeat: no-repeat;
    content: '';
    display: block;
    height: 9px;
    margin: 0 auto;
    width: 162px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-title::after {
    background-image: url("../images/title-decoration.png");
    background-repeat: no-repeat;
    content: '';
    display: block;
    height: 9px;
    margin: 0 auto;
    width: 162px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
  
    .page-title {
        font-size: 4rem;
    }
    
}

/** begin generic layout styles **/

main {
}

.region {
    margin: 0 auto;
    max-width: 960px;
}

/** end generic layout styles **/

/** begin WYSIWG editor styles **/

.alignleft {
    float: left;
    margin: 0 2rem 2rem 0;
}

.alignright {
    float: right;
    margin: 0 0 2rem 2rem;
}

.alignnone {
    height: auto;
    max-width: 100%;
}

/** end WYSIWG editor styles **/

.cta-button {
    display: inline-block;
    border: solid 1px var(--color-white);
    margin-top: 3rem;
}

.cta-button a {
    background-color: var(--color-bronze);
    color: var(--color-white);
    display: inline-block;
    font-size: var(--font-body-medium);
    line-height: 1;
    margin: 1rem;
    overflow: hidden;
    padding: 1rem 3rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-out 0s;
    vertical-align: middle;
    z-index: 1;
}

.cta-button a::after {
    -webkit-transition: top ease 0.25s,color ease 0.25s;
    transition: top ease 0.25s,color ease 0.25s;
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: block;
    z-index: -1;
    background-color: var(--color-white);
}

.cta-button:hover a {
    color: var(--color-bronze);
    text-decoration: none;
}

.cta-button a:hover::after {
    top: 0;
}

.cta-button.bronze {
    border-color: var(--color-bronze);
}

input[type="submit"] {
    background-color: var(--color-bronze);
    border: solid 1px transparent;
    border-radius: 0;
    color: var(--color-white);
    display: inline-block;
    font-size: var(--font-body-medium);
    line-height: 1;
    margin: 1rem;
    overflow: hidden;
    padding: 1rem 3rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-out 0s;
    vertical-align: middle;
    z-index: 1;
}

input[type="submit"]:hover {
    background-color: var(--color-white);
    border: solid 1px var(--color-bronze);
    color: var(--color-bronze);
}

/**** responsive embeded videos ****/

.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe, .video-container object, .video-container embed, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/**** end responsive embeded videos ****/


@media (min-width: 2200px) {

}

@media (min-width: 1900px) and (max-width: 2199px) {

}

@media screen and (min-width: 768px) and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {

}
