body, html {
	min-width: 990px;
	height: 0;
	margin: 0;
	scroll-behavior: smooth;
	font-family: helvetica,courier,arial;
}

/* Navbar Stuff ----------------------------------------------------------*/
/*------------------------------------------------------------------------*/
#nav {
	list-style-type: none;
	margin: 0;
	padding: 14px;
	overflow: hidden;
	background-color: #fff;
}
#nav .rfloat{
	float: right;
}
#nav li {
	float: left;
}
#nav li a {
	display: block;
	color: #000;
	text-align: center;
	padding: 14px 10px;
	font-size: .9em;
	text-decoration: none;
	line-height: 3em;
}
#nav li p{
	color: #000;
	padding-left: 40px;
	font-size: 1.3em;
	font-weight: bold;
}
#nav #facebook a{
	color: #4267B2;
	font-weight: bold;
	word-spacing: 0em;
	font-size: 1.5em;
	line-height: 1.8em;
	padding-right: 40px;
}

#nav #Edrop {
    	color: #4267B2;
	font-weight: bold;
	word-spacing: 0em;
	font-size: 1.5em;
	line-height: 1.8em;
	padding-right: 40px;
}


/*hacked dropdown2*/
.dropdown2 {
	display: none;
	position: relative;
	text-align: right;
	width: 100%;
	background: #fff;
}

.dd-menu2 {
	text-align:right;
	position: absolute;
	top: 100%;
	right: 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0;
	margin: 2px 0 0 0;
	box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
	background-color: #ffffff;
	list-style-type: none;
	user-select:none;
}

.dd-input2 + .dd-menu2 {
	display: none;
}

.dd-input2:checked + .dd-menu2 {
	display: block;
}

.dd-menu2 li {
	padding: 10px 20px;
	cursor: pointer;
	white-space: nowrap;

}

.dd-menu2 li:hover {
	background-color: #f6f6f6;
}

.dd-menu2 li a {
	display: block;
	margin: -10px -20px;
	padding: 10px 20px;
}

.dd-menu2 li.divider{
	padding: 0;
	border-bottom: 1px solid #cccccc;
}
.dd-button2:hover {
	background-color: #eeeeee;
}
/* pure css dropdown nav -------------------------------------------------*/
/*------------------------------------------------------------------------*/

.dropdown a {
	text-decoration: none;
	color: #000000;
}

.dropdown a:hover {
	color: #222222
}

/* Dropdown */

.dropdown {
	display: none;
	position: relative;
	text-align: right;
	width: 100%;
	background: #fff;
}

.dd-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #fff;
	cursor: pointer;
	white-space: nowrap;
	user-select:none;
}

/* CSS down arrow for nav menu button (shape made out of a transformed div) */
/* leaving this here cos it's neat and you should see it */
/*
.dd-button:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid black;
}
*/

.dd-button:hover {
	background-color: #eeeeee;
}


.dd-input {
	display: none;
}

.dd-menu {
	text-align:right;
	position: absolute;
	top: 100%;
	right: 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0;
	margin: 2px 0 0 0;
	box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
	background-color: #ffffff;
	list-style-type: none;
	user-select:none;
}

.dd-input + .dd-menu {
	display: none;
}

.dd-input:checked + .dd-menu {
	display: block;
}

.dd-menu li {
	padding: 10px 20px;
	cursor: pointer;
	white-space: nowrap;

}

.dd-menu li:hover {
	background-color: #f6f6f6;
}

.dd-menu li a {
	display: block;
	margin: -10px -20px;
	padding: 10px 20px;
}

.dd-menu li.divider{
	padding: 0;
	border-bottom: 1px solid #cccccc;
}



.dd-input {
	display: none;
}

#parallax1{
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("images/gardens-of-ireland2.jpg");
	height: 910px;
	z-index: -100;
}

/* Title Div Stuff -------------------------------------------------------*/
/*------------------------------------------------------------------------*/
#titlebox{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;

	text-align: center;

	position: relative;
	top: 60px;
	left: 4vw;
	min-width: 500px;
	width: 45vw;
	height: 800px;
	color: #000;

	background-color: hsla(120, 100%, 100%, 0.5); /* hue, saturation, lightness, opacity */
}
#bigtitle{
	font-size: 73px;
	font-weight: bold;
}
#motto{
	font-size: 20px;
	font-weight: normal;
}

.lmbutton{
	position: relative;
	text-decoration: none;
	border:2px black solid;
	/* border:2px white solid; */
	border-radius: 50px;
	padding: 10px 20px;
	background-color: black;
	color: #fff;
	font-size: 15px;
	transition: 0.3s;
	user-select:none;
	font-weight: normal;
}
.jubutton{
	position: relative;
	text-decoration: none;
	border:2px black solid;
	/* border:2px white solid; */
	border-radius: 50px;
	padding: 10px 20px;
	background-color: black;
	color: #fff;
	font-size: 15px;
	transition: 0.3s;
	user-select:none;
	font-weight: normal;
}
.buttblack{
	color: #fff;
	background-color: #000;
}
.buttblack:hover{
	background-color: hsla(0, 0%, 0%, 0.5);
	border-color: hsla(0, 0%, 0%, 0);
}

.buttwhite{
	color: #000;
	background-color: hsla(120, 100%, 100%, 0.5);
}
.buttwhite:hover{
	color: #fff;
	background-color: #000;
}

.buttclear{
	color: #000;
	/* color: white; */
	background: none;
}
.buttclear:hover{
	color: #fff;
	/* color: #000; */
	background-color: #000;
	/* background-color: #fff; */
}

.sections{
	min-height: 500px;
	display:flex;
	flex-direction: row;
	align-items:center;
	justify-content:center;
	padding:20px 80px 20px 80px;
	text-align: left;
}

.sections img{
	max-width:400px;
	max-height:400px;
	width:auto;
	height:auto;
}


.sectiontitle{
	font-weight: bold;
	font-size: 2.5em;
	margin-top: 10px;
}
.sectiontitle2{
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	text-align: center;
	font-weight: bold;
	font-size: 2.5em;
	margin-top: 10px;
}
#about-us, #humanist-manifesto, #humanism-101, #what-we-do, #contact-us{
	background-color:#f7f7f7; /* off-white */
}
/*
.sectiontitle3{ broken
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	text-align: center;
	font-weight: bold;
	font-size: 2.5em;
	margin-top: 10px;
} */

#footer{
	/*#fff*/
}

#about-us p{
	max-width: 600px;
	padding: 0px 50px;
	text-align: left;
}

#about-us, #what-is-humanism{
	font-size: 1.3em;
}

#what-is-humanism{
	background-color:#a5ffee;
	/* background-color: #292e34; */
}
#what-is-humanism p{
	max-width: 600px;
	padding: 0px 50px;
	text-align: left;
	/* color: white; */
}


#humanist-manifesto{
}
#humanism-101{
}

.video-container {
	overflow: hidden;
	position: relative;
	width:100%;
}

.video-container::after {
	padding-top: 56.25%;
	display: block;
	content: '';
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.spacer{
	background-color:#a5ffee;
	/* background-color: #49525c; */
	height: 50px;
}

#testimonial{
	background-color:#d2fff6;
	/* background-color: #292e34; */
	display:flex;
	flex-direction: row-reverse;
	padding: 0;
	/* color: white; */
}

#testimonial p{
	max-width: 400px;
	text-align: center;
	font-weight: bold;
	font-size: 1.3em;
}

#testimonial *{
	padding: 0 40px;
}

#testimonial2{
	background-color:#a5ffee;
	/* background-color: #292e34; */
	display:flex;
	flex-direction: row;
	padding: 0;
}

#testimonial2 img{
	float: left;
}

#testimonial2 p{
	max-width: 400px;
	text-align: left;
	font-weight: bold;
	font-size: 1.3em;
	margin-left: 80px;
	float: left;
	/* color: white; */
}

#testimonial2 *{
	padding: 0px;
}

.quotename{
	font-weight: normal;
	font-size: .9em;
}


.wwdcolumn{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align: center;
	padding: 20px 20px;
	margin: 0;
	float: left;
}

.wwdcolumn img{
	max-height: 200px;
	max-width: 200px;
}

.wwdcolumn p{
	text-align: center;
	font-weight: bold;
}
#group{
	font-size: 0.75em;
}
#group2, #group3{
	font-size: 0.75em;
	color: #f7f7f7;
}
.my-form{
	padding: 20px;
	flex-direction: column;
}

input::-webkit-input-placeholder{ /* WebKit browsers */
	   color:    black;
     opacity: 1 !important;
}

textarea::-webkit-input-placeholder{
	    color:    black;
	 	 opacity: 1 !important;
}

.my-form input[type="text"] , .my-form textarea{
	padding: 8px;
	width: 600px;
	border: 1px black solid;
	margin-bottom: 9px;
}

.my-form input[type="Submit"]{
	font-size: 1.2em;
	margin: 0 auto;
	display: block;
}

.my-form textarea{
	height: 250px;
}

#footer{
	min-height: 80px;
	background-color:#fff;
	padding: 20px 0 0 0;
}

#footer p{
	min-width:100%;
}

#whathumanistsbelieve{
    font-size: 18px;
    font-family: helvetica;
    text-align: center;
    font-weight: bold;
}

#whathumanists{
    font-size: 16px;
    font-family: helvetica;
}

/* Turn off parallax scrolling for tablets and phones */

/* You only need one of these break points, really.. */
@media only screen and (max-device-width: 1024px) {
	body, html{
	 min-width: 0 ;
 }

 .pwrapper{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	padding: 0;
	margin: 0;
	text-align: center;
}

.sections {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	padding:20px;
	text-align: center;
}

.sections p{
	padding:0px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align: center;
}

.sections img{
	max-width:300px;
	max-height:300px;
}

.sectionreversed{
	flex-direction:column;
}

.sectiontitle{
	font-size: 1.5em;
	margin-top: 15px;
	margin-bottom: 0;
}
.sectiontitle2{
	font-size: 1.2em;
	margin: 0;
	padding: 0;
}
/*
.sectiontitle3{ broken
	font-size: 1.2em;
	margin: 0;
	padding: 0;
}*/

#about-us p{
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

#what-is-humanism p{
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

#humanist-manifesto{
	min-height: 250px;
}
#humanism-101{
	min-height: 250px;
}

.video-container::after {
	width: 100vw;
}

.spacer{
	height: 20px;
}

#testimonial{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align: center;
}

#testimonial p{
	font-size: 1em;
}

#testimonial *{
	padding: 0;

}

#testimonial2{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align: center;
}

#testimonial2 p{
	font-size: 1em;
	text-align: center;
	margin: 20px 0 0 0;
}

#testimonial2 *{
	padding: 0;
}
#activism{
	/* display: block; */
	/* margin: 0 512px; */
}
.wwdcolumn{
	padding: 20px 0;
}

#parallax1 {
	background-attachment: scroll;
	height: 500px;
}

.dropdown{
	display: inline-block;
}

#nav {
	display: none;
}

#titlebox{
	min-width: 295px;
	height: 435px;
	top: 30px;
}

#bigtitle{
 font-size: 43px;
}

.my-form input[type="text"] , .my-form textarea{
	border: 1px black solid;
	width: 100%;
}

}
