/* reset some thangs */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}:focus{outline:0}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:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none;-moz-appearance:none}input[type=search]{-webkit-appearance:none;-moz-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}textarea{overflow:auto;vertical-align:top;resize:vertical}audio,canvas,video{display:inline-block;max-width:100%}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted}a:active,a:hover{outline:0}img{border:0;-ms-interpolation-mode:bicubic}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}button,html,input,select,textarea{color:#222}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}img{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}


/* ========================================================================================================================================= VARIABLES */

:root {
  --primary-color: #004F34;
  --secondary-color: #B39E65;
  --tertiary-color: #3498db;
}



/* ========================================================================================================================================= ELEMENTS */

body {
	font-family: "Lato", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

.container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;

}
/* ========================================================================================================================================= HEADER */
header {
	position: absolute;
	z-index: 200;
	width: 100%;
	
}
.row-header {
	display: grid;
	grid-template-columns: 500px 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;

	padding-top: 15px;
}
.logo img {
	max-width: 100px;
}
.logo a {
	color: #fff;
	text-transform: none;
	font-weight: bold;
	text-decoration: none;
}
.logo a span {

	margin-left: 15px;
	
}
.nav-top {
	display: flex;
	align-self: center;
	justify-content: right;
}


/* ========================================================================================================================================= NAVIGATION MENU */
.nav-top {
	display: flex;
	align-self: center;
	justify-content: right;
}

.nav-top li {
	font-family: "Lato", sans-serif;
	font-optical-sizing: auto;

	font-weight: bold;
	font-style: normal;
	display: inline-block;
	font-size: 1.0em;
	padding-left: 40px;
	padding-right: 0px;
	position: relative;

}
.nav-top li:last-child a {
	background-color: var(--secondary-color);
	padding: 15px;
	padding-left: 30px;
	padding-right: 30px;
	border-radius: 30px;
	color: #fff;
}
.nav-top li a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
.nav-top li.active > a {
	color: var(--secondary-color);
	text-decoration: none;
}
.nav-top li.active:last-child a {
	background-color: var(--secondary-color);
	color: #fff;
}
/* drop down */
.nav-top li ul  {
	position: absolute;
	z-index: 17;
	top: 20px;
	width:275px;
	box-shadow: 0px 2px 7px rgba(0, 20, 41, 0.27);
	border-radius: 0px 0px 20px 20px;
	overflow: hidden;
	display: none;
	
}
.nav-top li:hover ul, .nav-top li ul:hover {
	display: block;
}
.nav-top li ul li {
	display: block;
	background-color: #80C0A9;
	padding: 10px;
	padding-left: 15px;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0px;
	text-transform: capitalize;
}
.nav-top li ul li a {
color: #fff;
line-height: 1.25em;
}
.nav-top li ul li.active a {
color: #1B3655;
}
.nav-top li ul li:hover {
	background-color: #fff;
	color: #fff;
	cursor: pointer;
}
.nav-top li ul li:hover a {
	
	color: #80C0A9;
	
}
.nav-mobile {
	display: none;
}
/* Slide Out Menu */

.toggle-button {
    position: absolute;
    width: 50px;
    height: 40px;
    top: 15px;
    right: 15px;
    padding: 4px;
    transition: .25s;
    z-index: 125;
}

.toggle-button:hover { cursor: pointer; }

    .toggle-button .menu-bar {
        position: absolute;
        border-radius: 2px;
        width: 80%;
        transition: .5s;
    }

        .toggle-button .menu-bar-top {
            border: 4px solid #fff;
            border-bottom: none;
            top: 0;
        }

        .toggle-button .menu-bar-middle {
            height: 4px;
            background-color: #fff;
            margin-top: 7px;
            margin-bottom: 7px;
            top: 4px;
            width: 90%;
        }

        .toggle-button .menu-bar-bottom {
            border: 4px solid #fff;
            border-top: none;
            top: 22px;
        }

        .button-open .menu-bar-top {
	        border-color: #FFFFFF;
            transform: rotate(45deg) translate(8px, 8px);
            transition: .5s;
        }

        .button-open .menu-bar-middle {
	        
            transform: translate(230px);
            transition: .1s ease-in;
            opacity: 0;
        }

        .button-open .menu-bar-bottom {
	        border-color: #FFFFFF;
            transform: rotate(-45deg) translate(8px, -7px);
            transition: .5s;
        }

.menu-wrap {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    right: -100vw;
    font-size: 1em;
    font-weight: 700;
    overflow: auto;
    transition: .5s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-show {
    right: 0;
    box-shadow: 4px 2px 5px 1px rgba(0,0,0,0.15);
}
.nav-top-mobile {
	text-align: center;
	margin-bottom: 30px;
}


.nav-top-mobile li {
	
	display: block;
	color: #fff;
	font-size: 1.5em;
	letter-spacing: 0px;
	padding: 15px;
}
.nav-top-mobile li a {
	color: #fff;
	text-decoration: none;
}
.mobile-menu-logo {
	text-align: center;
	margin: auto;
	width: 235px;
	margin-bottom: 15px;
	
}



/* ========================================================================================================================================= TYPOGRAPHY */

h1 {
	font-size: 4em;
	font-weight: bold;
}

h2 {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

h3 {
	color: var(--secondary-color);
    font-family: "Merriweather", serif;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 3px;
    margin-bottom: 10px;
    margin-top: 10px;
}
h4 {
	
}

p {
font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1.25em;
}

strong {
	font-weight: bold;
}

/* ========================================================================================================================================= BUTTONS */

.button-hero {
	background-color: var(--secondary-color);
	color: white; 
	outline: 7px solid rgba(255, 255, 255, 0.43);
	padding: 20px 30px; 
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	border-radius: 45px;
	font-family: "Lato", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
    margin-bottom: 15px;
	transition: all .75s;
}

.button-hero:hover {
	background-color: #fff;	
	color:  var(--primary-color);
	outline: 0px solid rgba(255, 255, 255, 0.43);
}



.button-primary {
	background-color: var(--primary-color);
	color: white; 
	outline: 7px solid rgba(255, 255, 255, 0.43);
	padding: 20px 30px; 
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	border-radius: 45px;
	font-family: "Lato", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
    margin-bottom: 15px;
	transition: all .75s;
}

.button-primary:hover {
	background-color: var(--secondary-color);
	color:  #fff
	outline: 0px solid rgba(255, 255, 255, 0.43);
}



.button-secondary {
	background-color: var(--secondary-color);
	color: white; 
	outline: 7px solid rgba(255, 255, 255, 0.43);
	padding: 20px 30px; 
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	border-radius: 45px;
	font-family: "Lato", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
    margin-bottom: 15px;
	transition: all .75s;
}

.button-secondary:hover {
	background-color: var(--primary-color);
	color:  #fff
	outline: 0px solid rgba(255, 255, 255, 0.43);
}





/* ========================================================================================================================================= SLICK SLIDER */
.slider-connections {
	margin-top: 60px;
	margin-bottom: 60px;
}
.slider-connections div {
	
}
.connection-logo {
	
}
.slider-connections div img {
	width: 225px;
    height: auto;
    margin: auto;
}
.slick-prev {
	background-image: url('../img/icon-prev.svg');
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: none;
	background-size: contain;
	left: -60px;
	width: 35px;
	height: 35px;
}
.slick-prev:before {
    content: ' ';
}
.slick-prev:hover, .slick-prev:focus {
   background-image: url('../img/icon-prev.svg');
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: none;
	background-size: contain;
	left: -60px;
	width: 35px;
	height: 35px;
}
.slick-next {
	background-image: url('../img/icon-next.svg');
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: none;
	background-size: contain;
	right: -60px;
	width: 35px;
	height: 35px;
}
.slick-next:before {
    content: ' ';
}
.slick-next:hover, .slick-next:focus {
   background-image: url('../img/icon-next.svg');
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: none;
	background-size: contain;
	right: -60px;
	width: 35px;
	height: 35px;
}





/* ========================================================================================================================================= PAGE - HOMEPAGE */

.hero-home {
	/* background-image: url('../img/hero-uncc.jpg'); */
	background-size: cover;
	background-position: center center;
	color: #fff;
	position: relative;

}

.hero-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0; /* Place the pseudo-element behind the content */
}
.hero-content {
	z-index: 2;
	display: flex;
	position: relative;
	align-items: center;
	width: 50%;
	min-height: 650px;
	height: 80vh;
}
.hero-content h1 {
	margin-bottom: 30px;
}
.hero-content p {
	font-size: 1.25em;
	line-height: 1.5em;
	margin-bottom: 30px;
}


.card-content p{
	font-size: 1.25em;
	line-height: 1.5em;
	margin-bottom: 15px;
}



.content-twocol{
  display:grid;
  grid-template-columns: 1.05fr 1fr;   /* card | image */
  grid-template-areas: "card media";
  gap:32px;
  align-items:center;
  padding:60px 0;
  position:relative;
  isolation:isolate;
}

.card-content{
  grid-area: card;
  background:#fff;
  border-radius:20px;
  box-shadow:0 4px 7px rgba(0,0,0,.21);
  padding:60px;
  text-align:center;
  position:relative;
  z-index:2;
  width: 100%;
  /*  transform: translateX(40px); overlap into image (to the right) */
}

.content-image {
  grid-area: media;
  border-radius:20px;
  min-height: clamp(260px, 40vw, 520px);
  background-position: center center;
  background-size: cover;
  position:relative;
  z-index:1;
}

/* FLIP: image left, card right (still overlapping) */
.content-twocol--flip{
  grid-template-columns: 1fr 1.05fr;   /* image | card */
  grid-template-areas: "media card";
}
.content-twocol--flip .card-content{
  transform: translateX(-15%); /* nudge left into the image */
}



.testimonial {
	background-position: center center;
	background-size: cover;
	color: #fff;
	border-radius: 20px;
	position: relative;
	background-attachment: fixed;

}

.testimonial::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: color;
	background-color: var(--primary-color);
	z-index: 0; /* Place the pseudo-element behind the content */
}
.testimonial::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: multiply;
	background-color: var(--primary-color);
	z-index: 1; /* Place the pseudo-element behind the content */
	opacity: .7;
}
.testimonial-content {
	color: #fff;
	position: relative;
	z-index: 3;
	padding: 30px;
	padding-top: 90px;
	padding-bottom: 90px;
	text-align: center;
}
.testimonial-content h1 {
	font-size: 2em;
	line-height: 1.5em;
	margin-bottom: 30px;
}
.testimonial-content h2 {
	font-size: 1.5em;
	color: #fff;
}
.testimonial-content h3 {
	font-size: 1.25em;
	color: var(--secondary-color);
	font-family: "Merriweather", serif;
	text-transform: none;
	letter-spacing: 0px;
}




.mass-times {
	 background-position: center center;
	 background-size: cover;
	 color: #fff;
	 border-radius: 20px;
	 position: relative;
	 background-attachment: fixed;

}

.mass-times::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: color;
	background-color: var(--primary-color);
	z-index: 0; /* Place the pseudo-element behind the content */
}
.mass-times::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: multiply;
	background-color: var(--primary-color);
	z-index: 1; /* Place the pseudo-element behind the content */
	opacity: .7;
}
.mass-times-content {
	color: #fff;
	position: relative;
	z-index: 3;
	padding: 30px;
	padding-top: 90px;
	padding-bottom: 90px;
	text-align: center;
}
.mass-times-content h2 {
	color: var(--secondary-color);
	font-family: "Merriweather", serif;
	font-weight: 300;
	text-transform:none;
	letter-spacing: 0px;
}


.mass-times-content-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.mass-times-content-grid h3 {
	font-family: "Lato", sans-serif;
	font-weight: bold;
	text-transform: none;
	color: #fff;
	letter-spacing: 0;
	font-size: 2em;
	background: url('../img/icon-clock.svg') center top no-repeat;
	padding-top: 60px;
	margin-bottom: 15px;
}

.mass-times-content-grid p {
	font-family: "Merriweather", serif;
	font-weight: 300;
	text-transform: none;
	color: #fff;
	font-size: 1.25em;
	margin-bottom: 5px;

}

.mass-time-note {
	margin-top: 90px;
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-size: 1.25em;
    position: relative;
    width: max-content;
    margin-left: auto;
    margin-right: auto;

}
.mass-time-note::before {
	color: var(--secondary-color);
    font-size: 4em;
    left: -50px;
    top: -10px;
    content: '*';
    position: absolute;

}




.flocknote {
	 background: url('../img/fpo-flocknote.jpg') center/cover no-repeat;
	 color: #fff;
	 border-radius: 20px;
	 position: relative;
}

.flocknote::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: color;
	background-color: var(--primary-color);
	z-index: 0; /* Place the pseudo-element behind the content */
}
.flocknote::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: multiply;
	background-color: var(--primary-color);
	z-index: 1; /* Place the pseudo-element behind the content */
	opacity: .8;
}
.flocknote-content {
	color: #fff;
	position: relative;
	z-index: 3;
	padding: 30px;
	padding-top: 90px;
	padding-bottom: 90px;
	text-align: center;
}
.flocknote-content h1 {
	font-size: 2em;
	line-height: 1.5em;
	margin-bottom: 30px;
}
.flocknote-content h2 {
	font-size: 2.5em;
	line-height: 1.5em;
	margin-bottom: 15px;
	color: #fff;
}
.flocknote-content h3 {
	font-size: 1.25em;
	color: var(--secondary-color);
	font-family: "Merriweather", serif;
	text-transform: none;
	letter-spacing: 0px;
	background: url('../img/logo-flocknote.svg') center top no-repeat;
	padding-top: 60px;

}
.flocknote-content p {
	font-size: 1.25em;
	line-height: 1.5em;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}




/* ========================================================================================================================================= PAGE - ABOUT  */

.hero-internal {
	
	background-size: cover;
	background-position: center center;
	color: #fff;
	position: relative;

}

.hero-internal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0; /* Place the pseudo-element behind the content */
}
.hero-content-internal {
	z-index: 2;
	display: flex;
	position: relative;
	align-items: center;
	width: 100%;
	min-height: 400px;
	height: 50vh;
}
.hero-content-internal h2 {
	font-size: 1.25em;
	color: var(--secondary-color);
	font-family: "Merriweather", serif;
	text-transform: uppercase;
	font-weight: normal;
}

.mission .content-image {
  grid-area: media;
  border-radius:20px;
  min-height: clamp(260px, 40vw, 520px);
  background-color: var(--primary-color);
  background-image: none;
  position:relative;
  z-index:1;
  display: flex;
  align-items: center;
  color: #fff;
 
}

.mission .content-image p {
	padding: 60px;
	padding-left: 120px;
	font-size: 1.25em;
	line-height: 1.5em;
}
.grid-people {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	margin-top: 30px;
}
.card-people {
	border-radius: 20px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .21);
    padding: 30px;
    padding-bottom: 30px;
    text-align: center;
  
}
.card-people h4 {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 5px;
	margin-top: 15px;
	
}
.card-people p {
	color: var(--secondary-color);
	font-style: italic;
	margin-bottom: 15px;
}
.card-people a {
	
	color: var(--primary-color);
	font-family: "Merriweather", serif;
	
}

.people-headshot img, .people-headshot svg {
	width: 100%;
}

.missing-headshot {
	fill: color-mix(in srgb, var(--secondary-color) 30%, transparent);
}

.alumni-content {
	 background: url('../img/fpo-flocknote.jpg') center/cover no-repeat;
	 color: #fff;
	 border-radius: 20px;
	 position: relative;
	 padding: 30px;
	 margin-top: 90px;
	 margin-bottom: 90px;
}

.alumni-content::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: color;
	background-color: var(--primary-color);
	z-index: 0; /* Place the pseudo-element behind the content */
}
.alumni-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	mix-blend-mode: multiply;
	background-color: var(--primary-color);
	z-index: 1; /* Place the pseudo-element behind the content */
	opacity: .8;
}

.card-alumni {
	border-radius: 20px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .21);
    padding: 30px;
    background-color: #fff;
    text-align: center;

}
.card-alumni p {
	color: #434343;
	margin-bottom: 15px;
}

.list {
	display: flex;
	align-items: center;
}
.list ul {
	font-family: "Merriweather", serif;
	font-size: 1.25em;
}
.list ul li {
	margin-bottom: 30px;
}
.list ul li img {
	margin-right: 5px;
}

.alumni {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	position: relative;
	z-index: 3;
}
.grid-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	margin-top: 30px;
	margin-bottom: 60px;
}
.grid-photos img {
	width: 100%;
}
.gallery-photo {
	width: 100%;
	height: 300px;
	background-size: 100%;
	background-size: cover;
	background-position: center center;
	border-radius: 0px;
	transition: all .75s;
	background-color: #e3e3e3; 
}
.gallery-photo:hover {
	border-radius: 20px;
	background-position: center center;

}

/* ========================================================================================================================================= PAGE - GET INVOLVED  */
.overview {
	padding-top: 30px;
	padding-bottom: 30px;
}
.overview p {
	font-size: 1.25em;
    line-height: 1.5em;
    margin-bottom: 15px;
	
}
/* ========================================================================================================================================= PAGE - EVENTS  */

.event-calendar {
	margin-bottom: 60px;
	border-radius: 20px;
	overflow: hidden;
}
.event-mass .mass-times {
	margin-bottom: 60px;
}
/* ========================================================================================================================================= PAGE - CONTACT  */
.grid-contact {
	display: grid;
	grid-template-columns: 30% 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 0px;
	margin-bottom: 60px;
}
.contact-info {
	color:  var(--primary-color);
	font-size: 1.25em;
	font-weight: bold;
}
.contact-info div {
	display: grid;
	grid-template-columns: 30px 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 0px;
	margin-bottom: 60px;
}
.contact-info a {
	 color: var(--primary-color);
	 text-decoration: none;
	 font-weight: bold;
	 margin-top: 15px;
}.contact-info address {
	 color: var(--primary-color);
	 text-decoration: none;
	 font-weight: bold;
	 margin-top: 15px;
}
.icon {
  color: var(--secondary-color);
  width: 100%;
}

.contact-form {
	border-radius: 20px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .21);
    background-color: #fff;
    padding: 30px;
}

.frm_button_submit {
	
    background: var(--primary-color) !important;
    border-width: 1px;
    border-color:  var(--primary-color) !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    border-style: solid;
    color: #ffffff;
    cursor: pointer;
    font-weight: normal;
    border-radius: 28px;
    text-shadow: none;
    padding: 20px 60px 20px 60px  !important;
    box-sizing: border-box;
    box-shadow: 0 1px 1px #eeeeee;
    margin: 10px;
    outline: 7px solid rgba(255, 255, 255, 0.43);
   
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px !important;
    cursor: pointer;
    border-radius: 45px  !important;
    font-family: "Lato", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all .75s;
}
/* ========================================================================================================================================= PAGE - DONATE  */


.donation-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	padding: 30px;
	background: color-mix(in srgb, var(--secondary-color) 10%, transparent);
	margin-bottom: 90px;
	border-radius: 20px;
}
.option p {
	font-size: 1.25em;
	margin-bottom: 15px;
	line-height: 1.5em;
}
.note {
	font-size: 1em !important;
}
.option address {
	font-size: 1.25em;
	margin-bottom: 15px;
	font-family: "Merriweather", serif;
	line-height: 1.5em;
	
}
.button-donate {
	margin-top: 30px;
}

/* ========================================================================================================================================= FOOTER */
footer {
    background-color: var(--primary-color);
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
}


.nav-footer {
	width: 100%;
	text-align: center;
	padding-bottom: 60px;
  
}

.nav-footer li {
	display: inline-block;
	color: #fff;
	font-size: 1em;
	padding-left: 15px;
	padding-right: 15px;
}

.nav-footer li a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}
.socials {
	text-align: right;
	margin-top: -80px;
}
.socials img {
	width: 85%;
}
.footer-logo {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	margin-top: 30px;
}
.footer-contactinfo h1 {
	color: #fff;
	font-weight: bold;
	font-size: 2em;
	margin-bottom: 10px;
	display: block;
}
.footer-contactinfo {
	color: #E5C8AD;
	font-weight: 300;
	line-height: 1.25em;
	margin-bottom: 30px;
}
.socials li {
	display: inline-block;
	
}


.links-footer  {
	padding: 15px;
	background-color: #1B3655;
	border-radius: 7px 7px 0px 0px;
	width: 170px;
	text-transform: uppercase;
	color: #fff;
	font-size: 1em;
	letter-spacing: 3px;
	font-weight: bold;
}
.links-footer a {
	color: #fff;
}
.copyright {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.37);
	padding: 15px;
	text-align: center;
	
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}





















/* Smartphones (portrait and landscape) ------------------------------------------------------------------------ */
@media  (min-width : 320px) 
and (max-width : 480px) {
/* Styles */

.logo a span {
    margin-left: 0px;
    margin-top: 5px;
    width: 100%;
    display: block;
}
.row-header {
    grid-template-columns: 1fr;
    text-align: center;
}

.nav-top {
	display: none;
}
.nav-mobile {
	display: block;
}

h1 {
    font-size: 2.75em;
    display: inline-block;
    width: 100%;
}

.hero-content {
    width: 100%;
    min-height: 80vh;
    text-align: center;
}

.hero-content h1 {
   margin-top: 120px;
}
.hero-content-internal {
    width: 100%;
    min-height: 80vh;
    text-align: center;
    justify-content: center;
}

.copyright {

    font-size: 12px;
}
.testimonial {
    background-attachment: scroll;
}
.flocknote-content {
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.flocknote-content h2 {
    font-size: 2.5em;
    line-height: 1.25em;
    margin-bottom: 15px;
}
.grid-contact {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
}
.contact-info div {
    grid-template-columns: 30px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    margin-bottom: 15px;
}
.nav-footer li {
    display: block;
    color: #fff;
    font-size: 1.25em;
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    margin-bottom: 15px;
}
.socials {
    text-align: center;
   margin-top: 0px;
}

.grid-people {

    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 30px;
}
.grid-photos {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 30px;
}
.mission .content-image p {
    padding: 15px;
    padding-left: 15px;
    font-size: 1.25em;
    line-height: 1.5em;
}
.alumni {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    position: relative;
    z-index: 3;
}


.list {
    margin-top: 60px;
    text-align: center;
    line-height: 1.5em;
}
.list ul li img {
    margin-right: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
.mass-times {
    background-attachment: scroll;
}
.mass-times-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.mass-time-note {
   width: 100%;
   line-height: 1.25em;
   margin-top: 30px;
}
.mass-time-note::before {
    color: var(--secondary-color);
    font-size: 1.2em;
    left: auto;
    top: auto;
    content: '*';
    position: relative;
}
.mass-times-content-grid p {
    margin-bottom: 30px;
}
.card-content {
    grid-area: card;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .21);
    padding: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.mobile-menu-logo {
    text-align: center;
    margin: auto;
    width: 100px;
    margin-bottom: 15px;
}
.content-twocol {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "card" "media";
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    position: relative;
}





.content-twocol,
  .content-twocol--flip{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "card";
  }
  .card-content{ transform:none; width: auto; margin-top: -60px;}
  .content-twocol--flip .card-content{ transform:none; width: auto;}

.content-image {
    grid-area: media;
    border-radius: 20px;
    min-height: clamp(260px, 40vw, 520px);
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.donation-options {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 60px;
    padding: 30px;
    background: 
	color-mix(in srgb, var(--secondary-color) 10%, transparent);
    margin-bottom: 90px;
    border-radius: 20px;
    text-align: center;
}
.mission .content-image {

    padding-bottom: 45px;
}
.testimonial-content h1 {
    font-size: 2em;
    line-height: 1.25em;
    margin-bottom: 30px;
}

.container {

    text-align: center;
}
/* End Styles */
}





/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px)
and (max-device-width : 480px) {
/* Styles */

/* End Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */



/* End Styles */
}


 
 
/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-width : 768px) 
and (max-width : 1024px) {



/* Styles */
}


/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */





}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {





/* Styles */
}







/* Desktops and laptops ----------- */
@media only screen 
and (max-height : 800px) {


	
	
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}


@media only screen 
and (min-width : 768px) 
and (max-width : 1024px) {
/* Styles */


}



/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: ""; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  .search-module, .full-bar-nav, .where, #crumbs, .brochure, .social-set, #footernav, .nav-sticky, .noprint { display: none !important; }
  .logo-purple-print, .logo-ngyp-print { display: inline !important; }
  .header { height: 90px !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }


