
body {
	padding: 0;
	margin: 0;
	background: black; /*behind video before it fades in*/
}

section#hero {
	text-align: center;
	width: 100%;
}
	
section#hero.addNavBarHeight {
	margin-bottom: 60px;
}

section#hero div.cover {
	width: 100%;
	z-index: 9;
	padding-left: 5%;
	padding-right: 5%;
	background: rgba(0, 0, 0, 0.3);

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+90&0.2+50,1+90 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,1) 90%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,1) 90%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,1) 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

section#hero div.cover > video {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

section#hero div.cover div#logo {
	background: rgba(33, 33, 33, 0.85);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
	margin-bottom: 3%;

	width: 90%;
	padding: 30px 30px 5px 30px;
	margin-left: auto;
	margin-right: auto;
}

section#hero div.cover div#logo img {
	height: 60px;
}

section#hero div#subtitle {
	z-index: 9;
	color: rgba(255, 255, 255, 0.9);
	font-family: fantasy;
	text-align: left;
	padding-right: 0;
}

section#hero div#subtitle > h3 {
	font-size: 30px;
	font-weight: bold;
	text-shadow: 0px 1px 10px white;
}

section#hero div#subtitle > p {
	font-size: 16px;
	text-shadow: 0px 0px 10px black;
	font-weight: normal;
}

section#hero div#social {
	text-align: left;
}

section#hero div#social [class*="fa fa-"] {
    background-color: #333;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: auto 3px;
    width: 30px;
    font-size: 15px;
    text-align: center;
}

section#hero div#social [class*="fa fa-"]:hover {
	text-decoration: none;
}

section#hero div#call-to-action {
	background: #f9f9f9;
	z-index: 9;
	border-radius: 4px;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
	padding: 0px 15px 15px 15px;
	margin-bottom: 14px;
	margin-top: 10px;
}

section#hero div#call-to-action form {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

section#hero div#call-to-action form input {
	font-weight: 300;
	font-size: 16px;
}

section#hero div#call-to-action form .row.name input {
	margin-bottom: 18px;
}

section#hero div#call-to-action form .row.name .left-half {
	padding-right: 4px;
}

section#hero div#call-to-action form .row.name .right-half {
	padding-left: 4px;
}

section#hero div#call-to-action form .row.phone {
	margin-top: 18px;
}

section#hero div#call-to-action form .row.checkbox {
	text-align: left;
	margin-top: 8px;
	margin-bottom: 22px;
}

section#hero div#call-to-action form .row.checkbox label {
	font-weight: 400;
	color: gray;
	font-size: 12px;
	line-height: 23px;
	cursor: pointer;
}

section#hero div#call-to-action form button {
	color: rgba(0,0,0,0.6);
}

section#hero div#call-to-action form button.loading {
	font-size: 8px;
}

section#nav {
	width: 100%;
	z-index: 9999;
}

section#nav.pinned {
	position: fixed;
	top: 0;
}

section#nav div#navigation-bar {
	background: black;
	height: 60px;
	width: 100%;
	transition: background 0.2s ease;
	cursor: pointer;
}

section#nav div#navigation-bar > #home {
	width: 0;
	height: 60px;
	display: inline-block;
	margin: 0px;
	background: url(../assets/logo.png) center no-repeat;
	background-size: contain;
	transition: width 0.2s ease, margin-left 0.2s ease;
}
section#nav div#navigation-bar ul {
	margin: 0;
	padding: 0;
	height: 60px;
	width: 100%;
	color: white;
	list-style: none;
	position: absolute;
	right: 0;
	display: inline-block;
	background: black;
	transition: width 0.2s ease, background 0.2s ease;
}

section#nav div#navigation-bar.pinned {
	background: rgb(51,51,51);
}

section#nav div#navigation-bar.almostPinned {
	background: rgb(51,51,51);
}

section#nav div#navigation-bar li:hover {
	text-shadow: 0px 0px 6px white;
}

section#nav div#navigation-bar li.override {
	background: black!important;
}

section#nav div#navigation-bar li:not(.selected):hover:not(.override) {
	background: rgb(85, 85, 85)!important;
}

@supports (display: grid) {
  section#nav div#navigation-bar ul > span {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@supports not (display: grid) {
  section#nav div#navigation-bar li {
    width: 16.6%;
  }
}

section#nav div#navigation-bar li {
	font-size: 12px;
	line-height: 65px;
	height: 60px;
	float: left;
	text-align: center;
	font-family: fantasy;
	font-weight: 100;
	transition: background 0.2s ease;
	text-transform: capitalize;
}

section#article-footer {
	background: #272727;
	height: 38px;
	line-height: 16px;
	padding-top: 5px;
}

section#article-footer > div {
	color: #989898;
	font-family: fantasy;
	font-size: 12px;
	text-align: center;
}

label[for] {
	display: none;
}


/*Smaller devices (portrait phones, 414px and up; 414 is iPhone 6 portrait width)*/
@media (min-width: 414px) {
	section#hero div.cover div#logo {
		width: 320px;
		padding: 60px 30px 5px 30px;
		margin-left: 0;
		margin-right: 0;
	}

	section#hero div.cover div#logo img {
		height: 80px;
	}
}

/*Small devices (landscape phones, 576px and up)*/
/*@media (min-width: 576px) {

}*/

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	section#hero {
		min-height: calc(100% - 60px);
	}

	section#hero div.cover {
		min-height: calc(100% - 60px);
	}

	section#hero div.cover > video {
		position: fixed;
	}

	section#hero div#subtitle > h3 {
		font-size: 50px;
	}

	section#hero div#subtitle {
		margin-bottom: 0;
	}

	section#hero div#subtitle > p {
		margin-top: 30px;
	}

	section#nav div#navigation-bar li {
		font-size: 14px;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	section#hero div#call-to-action {
		margin-top: 0px;
	}
}

/*Extra large devices (large desktops, 1200px and up)*/
/*@media (min-width: 1200px) {
	
}*/

.fa-facebook:hover { 
    background-color: #3B5998!important;
}

.fa-instagram:hover { 
    background-color: #2C6A93!important;
}

.fa-twitter:hover { 
    background-color: #46c0fb!important;
}


/* about */

#about-dedication {
	width: 100%;
	overflow-x: hidden;
	background: background: #2d4aa1;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #26a0da, #2d4aa1);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #26a0da, #2d4aa1); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#about-dedication .left-half {
	color: white;
	text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.62);
}

#about-dedication .left-half .rounded-circle {
	width: 100%;
	max-width:200px;
	border: 4px solid rgba(255, 255, 255, 0.45);
}

#about-dedication .left-half p {
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
    font-weight: 300;
    font-style: italic; font-family: 'Open Sans',Helvetica,Arial,sans-serif;
}

#about-dedication .left-half small {
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
	font-size: 18px;
	font-family: 'Raleway','Open Sans',Helvetica,Arial,sans-serif;
	font-weight: bold;
}

#about-dedication .left-half small span {
	font-weight: 400;
}

#about-dedication .right-half {
	text-align: center;
}

#about-dedication .chat {
	display: inline-block;
	min-width: 250px;
	background: rgb(172, 183, 200);
	box-shadow: 0px 2px 2px #00000045;
	border-radius: 4px;
	max-width: min-content;
}

#about-dedication .chat .titlebox {
	background: whitesmoke;
	padding-top: 14px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding-bottom: 16px;
	line-height: 12px;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
	color: #383838;
}


#about-dedication .chat .titlebox > div {
    white-space: nowrap; /* so span text doesn't appear on a second line in the event that the screen isn't wide enough to fit the entire line, this forces a single line, hiding overflow */
    margin-top: 6px;
    font-size: 22px;
    height: 16px;
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    font-weight: 100;
    padding-left: 6px;
    padding-right: 6px;
}

@media(max-width: 768px) {
    #about-dedication .chat .titlebox > div {
        text-align: left;
        padding-left: 16px;
    }
}

#about-dedication #fb-chat-container {
	padding: 10px
}

#about-sangam {
    background: url(../assets/parallax/bg-colored-md.png) hsla(39, 77%, 97%, .1);
    background-size: 200px;
    color: wheat;
    box-shadow: 0px 0px 60px 5px rgba(0, 0, 0, 0.9) inset;
	font-family: 'Raleway','Open Sans',Helvetica,Arial,sans-serif;
    background-attachment: fixed
}

#about-sangam .header h2 {
	font-weight: 700;
	letter-spacing: 0.08em;
	font-size: 18px;
	color: wheat;
	text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.85);
}

#about-sangam .header hr {
	border-color: #666;
}

#about-sangam .content .list {
    font-family: 'Open Sans', Helvetica, sans-serif;
    color: #444444;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
    border-radius: 4px;
    padding: 0px;
    box-shadow: 0px 2px 30px rgba(0,0,0,.3);
    /*box-shadow: 0px 2px 10px rgba(0,0,0,.25);*/
    overflow: hidden;
}

#about-sangam .content .list h4 {
	padding: 14px;
	padding-left: 22px;
	margin: 0;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}

#about-sangam .content .events.list {
	background: #fff5e4;
	text-shadow: 0px 1px 0px white;
}

#about-sangam .content .events.list h4 {
	background: #f5deb5;
	background: -webkit-linear-gradient(to top, #f5deb5, #fff5e4);
	background: linear-gradient(to top, #f5deb5, #fff5e4);
}

#about-sangam .content .events.list li:nth-child(even) {
	background: rgba(255,255,255,0.4);
}

#about-sangam .content .features.list {
	background: #ddaa7f;
	text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.35);
}

#about-sangam .content .features.list h4 {
	background: #de995f;
	background: -webkit-linear-gradient(to top, #de995f, #ddaa7f);
	background: linear-gradient(to top, #de995f, #ddaa7f);
}

#about-sangam .content .features.list li:nth-child(even) {
	background: rgba(255,255,255,0.1);
}

#about-sangam .content .list li.collaborative input {
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	width: 100%;
	font-family: 'Open Sans', Helvetica, sans-serif;
	font-size: 14px;
	padding-bottom: 2px;
	font-style: italic;
	height: 42px;
	padding-left: 18px;
}


#about-sangam .list li.collaborative {
	background: white!important;
	box-shadow: 0px 0px 14px -1px #000000ad inset;
	margin: 0;
	padding: 0;
}

#about-sangam .list .attach-right {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	line-height: 40px;
	padding: 0px 14px;
	text-shadow: none;
	color: white;
	cursor: pointer;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;

	opacity: 0;
	visibility: hidden;
}

#about-sangam .list .attach-right.permanent {
	opacity: 1;
	visibility: visible;
	cursor: default;
}

#about-sangam .list li {
	position: relative;
	display: block;
	padding: .4rem 1.25rem;
	margin-bottom: -1px;
	border: 1px solid rgba(0,0,0,.125);
}

#about-sangam .content .local {
	text-shadow: 0px 0px 15px black;
}

.temporary-block {
	background: black;
	height: 305px;
	border-radius: 5px;
	padding: 20px;
	opacity: 0.3;
	border: 5px dashed wheat;
}

/* events */

.event-block {
    margin: 80px auto;
    height: 400px;
    width: 60%;
    background: whitesmoke;
    border-radius: 6px;
    box-shadow: 0px 0px 100px rgba(0,0,0,0.5);
  }