/* --------------------------------------------------------------------------
[EXPERIMENTAL] Multi-axis, single variable font.

Slant axis is not yet widely supported (as of February 2019) and thus this
multi-axis single variable font is opt-in rather than the default.

When using this, you will probably need to set font-variation-settings
explicitly, e.g.

  * { font-variation-settings: "slnt" 0deg }
  .italic { font-variation-settings: "slnt" 10deg }

*/
@font-face {
    font-family: "Inter var experimental";
    font-weight: 100 900;
    font-display: swap;
    font-style: oblique 0deg 10deg;
    src: url("../fonts/Inter.var.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
}

/*Our two Google hosted fonts can be used like this:
 *
 *font-family: 'Oswald', sans-serif;
 *font-family: 'Noto Serif', serif;
 *
 * */

html {
    box-sizing: border-box;
    /* Nicer looking fonts for OS X and iOS */
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    /*We will be adding our own margin to these elements as needed.*/
    margin: 0;
    /*You'll want to set font-size as needed.*/
    font-size: 1rem;
    /*No bold for h tags unless you want it*/
    font-weight: 400;
}
.container {

    
}

/*SVG defaults to display: inline which I dislike. Inline-block or inline-flex will render white space on SVG elements in HTML (where you would have defs and symbols) if the container isn't a flex box or the font-size set to 0 to crush the whitespace */
svg {
    display: block;
}

img {
    /*Make images behave responsively. Here they will scale up to 100% of their natural size*/
    max-width: 100%;
    /*Make images display as a block (UA default is usually inline)*/
    display: block;
}

/*Set a default non-variable font but then enhance if the browser supports a variable font*/
body {
    font-family: Inter, sans-serif;
    background-image: url("../img/triangle_bg.png");
    background-color: rgba(45,45,45,1.00);
}


@supports (font-variation-settings: "wdth" 115) {
    body {
        font-family: "Inter var experimental";
    }
}


.imagemap {
    align-content: flex-start;
    width: 15%;
    height: 15%;
    margin-right: 8px;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
   /*  padding-top: 46.25%; 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.rwd-hero {
	text-align: center;
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.papercopy {
	background-color: rgba(204,101,0,1.00);
	margin-top: 75px;
	display: inline-block;
	width: 70%;
	color: rgba(255,255,255,1.00);
	font-size: 1em;
	text-align: center;
	border: 0.07em dotted rgba(255,255,255,1.00);
	border-radius: 10px;
	padding-top: 9px;
	padding-right: 9px;
	padding-left: 9px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 9px;
}

.rwd-MastHead {
	display: flex;
	flex-direction: column;
	background-color: rgba(45,45,45,1.00);
	border-radius: 10;
}

.rwd-Logo {
    color: #4a4a4a;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rwd-Logo_Main {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
}

.rwd-Logo_Secondary {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rwd-Nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    margin: 10px 0 0 0;
}

.rwd-Nav_Link {
    margin-top: 0;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #E1E1E1;
    /*We want these buttons to have a decent touch area so they are easy to click/tap*/
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    /*Styles needed for the button only*/
    border: 0;
    background: none;
}

.rwd-Nav_Link:hover {
    color: rgba(154,199,212,1.00);
    background-color: rgba(72,72,72,1.00);
    -webkit-box-shadow: 0px 0px;
    box-shadow: 0px 0px;
    margin-left: 10px;
    margin-right: 10px;
} 

.rwd-DownloadPanel {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.rwd-DownloadPanel[aria-hidden="false"] {
    opacity: 1;
    pointer-events: inherit;
}

.rwd-Hero_Cover {
    width: 150px;
    box-shadow: 0 8px 20px -5px #000;
    margin: 20px auto;
}

/*.rwd-Hero {*/
/*}*/
.rwd-Hero {
    text-align: center;
}

.rwd-Hero_TitleAndIntro {
    margin-top: 0px;
    position: relative;
    padding-top: 3px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 3px;
    text-align: center;
}

.rwd-Hero_Description {
    font-size: 12px;
    color: #dddddd;
    line-height: 1.8;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #424242;
}

.rwd-Hero_JumpLink {
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 0 15px;
    border-radius: 33px;
    border: 1px solid #FB8006;
    font-size: 13px;
    color: #fff;
    justify-content: center;
    max-width: 300px;
    margin: 40px auto;
    background-color: rgba(46,42,42,1.00);
}

.rwd-Hero_Title {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    color: #ebebeb;
}

.rwd-Hero_TextGroup {
    position: relative;
    display: inline-block;
    line-height: 2;
}

.rwd-Hero_TextGroup i {
    position: absolute;
    left: 0;
    bottom: calc(50% + 12px);
    color: #86988c;
    font-size: 12px;
    font-style: normal;
    text-transform: uppercase;
}

.rwd-Hero_Edition {
    position: absolute;
    text-transform: uppercase;
    font-size: 13px;
    top: 40px;
    right: 20px;
}

.rwd-About {
    padding: 20px;
}

.rwd-About_Minor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 0 0;
}

.rwd-About_MinorTitle {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
}

.rwd-About_Minor p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

.rwd-About_MajorTitle {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #000;
}

.rwd-About_Major {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 0 0;
}

.rwd-About_Major p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

.rwd-About_Major a {
    color: #b50404;
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

.rwd-Buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.rwd-Buy_Link {
    border-radius: 25px;
    padding: 5px 20px;
    background-color: #089df4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    margin: 10px;
}

.rwd-Reviews {
    display: flex;
    flex-direction: column;
    padding: 3rem 1rem;
    background-color: #222;
    clip-path: polygon(0 0%, 100% 6%, 100% 94%, 0 100%);
}

.rwd-Reviews_Headline {
    color: #fff;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
}

blockquote {
    font-size: 20px;
    margin: 0;
}

.rwd-Review {
    color: #fff;
    font-family: "Noto Serif", serif;
    padding: 10px 20px;
}

.rwd-Review p {
    margin: 10px 0 40px;
}

.rwd-New {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.rwd-New_Headline {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.rwd-New_Intro {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

.rwd-New_Bullet {
    font-size: 14px;
    line-height: 22px;
}

.rwd-Mailing {
    padding: 20px;
    background-color: #262c28;
}

.rwd-Mailing_Headline {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.rwd-Mailing_Intro {
    font-size: 12px;
    color: #fff;
}

.rwd-Mailing_Form {
    display: flex;
    align-items: center;
    border: 2px solid #b50404;
    border-radius: 33px;
    height: 45px;
    background-color: #fff;
    padding: 0 20px;
    margin: 10px 0;
}

.rwd-Mailing_Input {
    border: 0;
    display: flex;
    height: 100%;
    flex: 1 0 auto;
}

.rwd-Mailing_Subscribe {
    outline: 0;
    color: #b50404;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    display: flex;
    height: 100%;
    border: 0;
    align-items: center;
    background-color: transparent;
    text-transform: uppercase;
}

.rwd-Chapters {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.rwd-Chapters_Headline {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 18px;
}

.rwd-Chapters_List {
    padding: 20px;
    list-style: none;
    counter-reset: li;
    margin: 0;
}

.rwd-Chapter {
    counter-increment: li;
    font-size: 14px;
    position: relative;
    margin-bottom: 30px;
}

.rwd-Chapter::before {
    display: inline-block;
    text-align: right;
    width: 30px;
    position: absolute;
    top: -6px;
    left: -39px;
    content: counter(li);
    font-size: 25px;
    font-family: "Oswald", sans-serif;
    color: #b50404;
}

.rwd-Chapter_Content {
    font-size: 12px;
    line-height: 1.6;
}

.rwd-Chapter_Title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.rwd-Footer {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    background-color: #262c28;
}

.rwd-Footer_SectionTitle {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    margin: 20px 0 10px;
}

.rwd-Footer_Text {
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
    margin: 10px 0;
}

.rwd-Copyright {
    color: #FFFFFF;
    margin: 20px 0;
    font-size: 0.8em;
    text-align: center;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: lighter;
}

.rwd-Footer_Link {
    color: #fff;
    text-decoration-line: underline;
    text-decoration-skip-ink: auto;
    font-size: 12px;
    text-decoration-color: #aaa;
    display: flex;
    min-height: 40px;
    align-items: center;
}
iframe {
    display: block;
    border: none;
    height: 95vh;
    width: 100vw;
}
.staff {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	background-color: #EDEDED;
	padding-left: 15px;
	margin-top: 25px;
	padding-top: 7px;
	padding-bottom: 7px;
	border-radius: 10px;
}		
.staff2 {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	background-color: #EDEDED;
	padding-top: 7%;
	padding-bottom: 7%;
	border-radius: 10px;
	font-family: arial;
	font-size: 0.8em;
}	

    

@media screen and ( min-width : 600px ){
.papercopy {
    width: 70%;
    font-size: 2em;
}
.rwd-Nav_Link {
    margin-top: 0;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 0;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #FFFFFF;
    /*We want these buttons to have a decent touch area so they are easy to click/tap*/
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    /*Styles needed for the button only*/
    border: 0;
    background: none;
    padding-left: 5px;
    padding-right: 5px;
 }
.rwd-Nav_Link:hover {
    margin-left: 15px;
    margin-right: 15px;
    background-color: rgba(72,72,72,1.00);
    color: rgba(255,255,255,1.00);
    padding-left: 5px;
    padding-right: 5px;
}

    @media ( min-width : 360px ){

    .rwd-Nav_Link {
    margin-top: 0;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 5;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    color: rgba(225,225,225,1.00);
    /*We want these buttons to have a decent touch area so they are easy to click/tap*/
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    /*Styles needed for the button only*/
    border: 0;
    background: none;
    padding-left: 6px;
    padding-right: 6px;
 }
.rwd-Nav_Link:hover {
    margin-left: 15px;
    margin-right: 15px;
    background-color: rgba(72,72,72,1.00);
    color: rgba(255,255,255,1.00);
    padding-left: 6px;
    padding-right: 6px;
}
 .rwd-Copyright {
    color: #FFFFFF;
    margin: 20px 0;
    font-size: 1.em;
    text-align: center;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: lighter;
}       
}
}
