@charset "utf-8";
/*Saint Ignatius NYC Main Cascading Style Sheet*/

/*Page Setup*/
* {
    font-family: Garamond;
}
body, html {
    margin: 0;
	padding: 0;
}
main {
	margin-left: auto;
	margin-right: auto;
	
	max-width: calc(1920px * 60 / 100);
	width: 100%;
}

/*Importing Typefaces*/
@font-face {
	font-family: Serlio;
	src: url("../Fonts/Linotype - SerlioLTStd.otf") format("OpenType");
	font-display: swap;
}
/*Basic Typefaces & Fonts*/
h1 {
	font-family: Serlio, Garamond;
	font-size: 2.5vw;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.2em;
}
p {
	font-size: 17px;
}

/*Fonts*/
h1 {
    line-height: 5%;
}
h2 {
    margin: 1em;
}
h3 {
	margin: 1.4em;
}
p {
    margin: 1.4em;
}
/*Font Classes*/
.Red-Type {
	color: #761F18;
}
.indent {
	margin-left: 3em;
}
/*Links*/
a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
a:hover {
	text-decoration: underline;
}

/*header & footer*/
header, footer {
	padding: 1px;
	position: relative;
	color: white;
}
header {
	background-image: url("../Images/Header_Img.jpg");
	background-color: #761F18;
	background-size: cover;
	background-position: bottom;
}
footer {
    background: #761F18;
    padding: 1em;
}
.Logo-Master {
    width: 10vw;
    border-style: solid;
	border-width: 0.5vw;
	border-color: #761F18;
    margin: 1em;
}
hgroup {
	width: 100%;
}
.headerRow {
	display: grid;
	grid-template-columns: 1fr 10fr;
	grid-template-rows: auto;
}
header h1 {
	margin-top: 4vh;
}
header h2 {
	margin-left: 0;
}
header h2, header p {
	font-size: 1.4vw;
}
header p {
    letter-spacing: .01em;
    line-height: 50%;
    font-size: 1.2vw;
}
footer h2 {
    font-size: 1em;
	color: white;
	margin-left: 0;
}
footer a {
	color: white;
}

header ol {
    margin: 1.4em;
}


.Follow-logo-Face {
    width: 35px;
}
.Follow-logo-Insta {
    width: 35px;
}
.Follow-logo-Linked {
    width: 35px;
}
.Follow-logo-Tumblr {
    width: 35px;
}
.Follow-logo-Tweet {
    width: 35px;
}
.Follow-logo-Youtube {
    width: 60px;
}
footer a img {
    margin-right: 2em;
}
/*Footer to bottom*/
html, body {
    height: 100%;
}
body {
    display: flex;
	flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
    margin-top: 2rem;
}

/*navigation*/
nav {
	margin-top: 4rem;
}
nav ul li {
    float: left;
    list-style: none;
    position: relative;
}
nav ul li a {
    display: block;
    font-family: Serlio, Garamond;
    color: white;
    font-size: 1.3vw;
    padding-right: 6em;
    text-decoration: none;
}
nav ul li ul {
    display: none;
    position: absolute;
    background: #761F18;
    padding: 1em;
    border-radius: 0;
	z-index: 1;
}
nav ul li:hover ul {
    display: block;   
}
nav ul li ul li {
    width: 400px;
}
nav ul li ul li a:hover {
    background: #D93132
}

#threeLineBar img, #threeLineBar {
	width: 2em;
	margin-right: 1em;
	display: none;
}

nav a:hover {
	text-decoration: none;
}