/* 
 * =============
 * Home Banner
 * =============
 * */

.hero{
	width: 100%;
	height: 30vw;

	display: flex;
	justify-content: center;
	align-items: center;

	text-align: center;
	background-image: url(../img/home-banner-1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-inner{
	padding: 0vw 8vw;
}

.hero-inner h2{
	color: #fff;
	font-size: 50px;
	font-weight: bold;
}

.hero-inner form{
	padding-top: 20px;
	padding-left: 30%;
	padding-right: 30%;
}

.down{
	padding-top: 20px;
}

.down img{
	width: 3%;
}

.hero-inner .hero-text{
	text-decoration: none;
}

.hero-inner .search-text{
	font-size: 20px;
	display: inline-block;
	width: 90%;
	cursor: pointer;
	padding: 5px 10px;
	outline: 0;
	border: 0px hidden #000000;
	border-radius: 5px 0px 0px 5px;
	background: #ffff;
	color: #3992d0;
}

.hero-inner .search-submit{
	appearance: none;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 10px;
	outline: 0;
	border: 0px hidden #000000;
	border-radius: 5px 0px 0px 5px;
	background: #f79431;
	color: #fff;
	width: 10%;
	transform: scaleX(-1);
}

/* Laptop */
@media all and (max-width: 1200px) {
	.hero{
		height: 65vw;
	}

	.hero-inner form{
		padding-left: 20%;
		padding-right: 20%;
	}
}

/* Mobile */
@media all and (max-width: 700px) {
	.hero{
		height: 70vw;
	}

	.hero-inner{
		padding: 0vw 10vw;
	}	

	.hero-inner h2{
		font-size: 44px;
	}

	.hero-inner form{
		padding-left: 1%;
		padding-right: 1%;
	}

	.hero-inner .search-submit {
		/*padding: 5px 5px;*/
	}

	.down img{
		width: 6%;
	}
}

/* Mobile */
@media all and (max-width: 550px) {
	.hero{
		height: 80vw;
	}

	.hero-inner h2{
		font-size: 22px;
	}

	.hero-inner form{
		padding-left: 1%;
		padding-right: 1%;
	}

	.hero-inner .search-submit {
		/*padding: 5px 5px;*/
	}

	.down img{
		width: 15%;
	}

	.hero-inner .search-text{
		width: 85%;
	}

	.hero-inner .search-submit{
		width: 15%;
	}
}

/* 
 * =============
 * Member Application
 * =============
 * */

.member-application{
	width: 100%;
	position: relative;
	text-align: left;
	color:#3992d0;
}

.member-application img{
	width: 100%;
}

.member-application-inner {
	margin-left: 4%;
	position: absolute;
	top: 20%;
}

.member-application .application-head{
	font-size: 45px;
	font-weight: bold;
}

.member-application .application-text{
	font-size: 24px;
	font-weight: 500;
	margin: 5% 0px 10% 0px;;
}

.member-application .application-btn{
	font-size: 32px;
	font-weight: bold;
	background: #f79431;
	padding: 20px 15px;
	border-radius: 5px/10px;
	color: #fff;
	border: 1px solid #f79431;
}

/* Mobile */
@media all and (max-width: 960px) {
	.member-application-inner {
		top: 10%;
	}

	.member-application .application-head{
		font-size: 28px;
		font-weight: bold;
	}

	.member-application .application-text{
		font-size: 16px;
		font-weight: 500;
	}

	.member-application .application-btn{
		font-size: 19px;
		font-weight: bold;
    	padding: 15px 10px;
	}
}

/* 
 * =============
 * News & Events
 * =============
 * */

.news-events{
	padding: 6vw 20vw;
	display: grid;
	grid-gap: 8vw;
	color: #3992d0;
}

.news{
	grid-column: 1;
}

.news .news-title{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
}

.news .news-list{
	border-top: 1px solid #a9acac;
	margin-bottom: 25px;
}

.news .news-list .news-item{
	padding: 15px 0px;
	font-size: 18px;
}

.news .news-list .news-date{
	padding-top: 5px;
	font-size: 16px;
	color: #a9acac;
}

.news .news-btn{
	font-size: 20px;
	font-weight: bold;
	background: #f79431;
	padding: 10px 10px;
	border-radius: 5px/10px;
	border: 1px solid #f79431;
}

button a{
	color: #fff;
}

button a:hover {
	color: #fff;
}

button a:visited {
	color: #fff;
}

.events{
	grid-column: 2;
}

.events .events-title{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
}

.events .events-list{
	border-top: 1px solid #a9acac;
	margin-bottom: 25px;
}

.events .events-list .events-item{
	padding: 15px 0px;
	font-size: 18px;
}

.events .events-list .events-date{
	padding-top: 5px;
	font-size: 16px;
	color: #a9acac;
}

.events .events-btn{
	font-size: 20px;
	font-weight: bold;
	background: #f79431;
	padding: 10px 10px;
	border-radius: 5px/10px;
	color: #fff;
	border: 1px solid #f79431;
}

/* Mobile */
@media all and (max-width: 960px) {
	.events{
		grid-column: 1;
	}
}

/* 
 * =============
 * Become Member
 * =============
 * */

.become-member{
 	text-align: center;
	padding: 6vw 20vw;
	background-color: #f6f5f4;
}

.become-member .become-title{
	font-size: 40px;
	font-weight:bold;
	color:#3992d0;
	padding-bottom: 3vw;
}

.become-member .become-inner{
	display: grid;
	align-items: center;
	grid-gap:10vw;
}

.become-member .become-inner .become-img1{
	grid-column: 1;
}

.become-member .become-inner .become-img2{
	grid-column: 2;
}

/* Mobile */
@media all and (max-width: 960px) {

	.become-member{
		padding: 6vw 2vw;
	}

	.become-member .become-inner .become-img2{
		grid-column: 1;
	}
}

/* 
 * =================
 * Member Directory
 * =================
 * */

.member-directory{
	color: #3992d0;
	padding: 5vw 10vw;	
}

.member-directory .directory-title{
	font-size: 40px;
	font-weight: bold;
	padding-bottom: 2vw;
	text-align: center;
}

.member-directory .directory-inner{
	background-color:  #3992d0;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
    padding: 0.5vw 0.5vw;
	border-radius: 5px;
}

.member-directory .directory-inner .alphabetical{
	background-color:  #f6f5f4;
	color: #3992d0;
	padding: 2vw 4vw 2vw 2vw;
	border-radius: 5px;
}

.member-directory .directory-inner .alphabetical h5{
	font-size: 20px;
	font-weight: 600;
}

.member-directory .directory-inner .alphabetical .alpha-list{
	padding: 1vw 0vw;
	font-size: 20px
}

.member-directory .directory-inner .alphabetical .alpha-list a{
	color: #a9acac;
	margin-right: 1vw;
	margin-top: 1vw;
}

.member-directory .directory-inner .categories{
	padding: 2vw;
}

.member-directory .directory-inner .categories h5{
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 1vw;
}

.member-directory .directory-inner .categories form{

}

.select {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}    

.select select { 
		font-size: 20px;
        display: inline-block;
        width: 100%;
        cursor: pointer;
        padding: 5px 10px;
        outline: 0;
        border: 0px hidden #000000;
        border-radius: 5px;
        background: #ffff;
        color: #3992d0;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
        .select select::-ms-expand {
            display: none;
        }
        .select select:hover,
        .select select:focus {
            color: #3f8abe;
            background: #f2f2f2;
        }
        .select select:disabled {
            opacity: 0.5;
            pointer-events: none;
        }
.select_arrow {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 7px;
    height: 7px;
    border: solid #3992d0;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-color: #3992d0;
}
.select select:disabled ~ .select_arrow {
    border-top-color: #cccccc;
}

.member-directory .directory-inner .categories .search-text{
    font-size: 20px;
    display: inline-block;
    width: 70%;
    cursor: pointer;
    padding: 5px 10px;
    outline: 0;
    border: 0px hidden #000000;
    border-radius: 5px 0px 0px 5px;
    background: #ffff;
    color: #3992d0;
}

.member-directory .directory-inner .categories .search-submit{
	appearance: none;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 10px;
	outline: 0;
	border: 0px hidden #000000;
	border-radius: 0px 5px 5px 0px;
	background: #f79431;
	color: #fff;
	width: 30%;
}

/* Tablet */
@media all and (max-width: 960px) {
	.member-directory .directory-inner {
    	grid-template-columns: 1fr;
    }
}

/* Mobile */
@media all and (max-width: 430px) {
	.member-directory .directory-inner .categories .search-text{
		width: 60%;
	}

	.member-directory .directory-inner .categories .search-submit{
		width: 40%;
	}
}

/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}