
/*-- A. Template --------------------------------------------------------------------------------------*/

body{
  position: relative;
	background-color: #22313b;
  font-family: sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5, h6{
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
	color: #0072bc;
	margin: 0;
}


p, li, a, input, textarea{
  font-size: 15px;
  font-family: proxima-nova, sans-serif;
  line-height: 140%;
}

a{
  color: #18bcff;
  text-decoration: none;
}

img{
  display: block;
  width: 100%;
}

img.img-1{
	width: 100%;
	height: 400px;
	object-fit: cover;
}

figure{
	margin: 0;
	padding: 0;
}

figure img{
	height: auto;
}


.site-maxwidth{
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}


.panel-maxwidth{
  width: 1366px;
  max-width: 90%;
  margin: 0 auto;
}

.rowpadd{
  padding: 30px 0;
}

.row-alignmid{
  align-items: center;
}



/*-- X2. Template: Container Style Split Half --*/
.s20 > div,
.s25 > div,
.s30 > div,
.s33 > div,
.s35 > div,
.s40 > div,
.s45 > div,
.s50 > div,
.s55 > div,
.s60 > div,
.s65 > div,
.s66 > div,
.s70 > div,
.s80 > div{
  padding: 0 15px;
}

@media (min-width: 768px){
  .row-split{
    display: flex;
    flex-wrap: wrap;
  }
  .s20{flex: 0 0 20%;} 
  .s25{flex: 0 0 25%;} 
  .s30{flex: 0 0 30%;}  
  .s33{flex: 0 0 33.33%;}  
	.s35{flex: 0 0 35%;}  
  .s40{flex: 0 0 40%;}  
	.s45{flex: 0 0 45%;}  
  .s50{flex: 0 0 50%;}   
	.s55{flex: 0 0 55%;} 
  .s60{flex: 0 0 60%;}  
	.s65{flex: 0 0 65%;}  
  .s66{flex: 0 0 66.66%;}  
  .s70{flex: 0 0 70%;}  
	.s80{flex: 0 0 80%;}  
	
  .rowpadd{
    padding: 60px 0;
  }
	
	.content-gap > div{
		padding: 30px 8%;
	}


}
/*-- --*/

@media (min-width: 768px){
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  
  .col{
    flex-grow: 1;
  }
  
  h1{
    font-size: 40px;
  }
	
	h2{
		font-size: 30px;
	}

  h3{
    font-size: 25px;
  }
  
	p, li, a, input, textarea{
    font-size: 17px;
  }
  
  .rowpadd{
    padding: 70px 0;
  }
} 

/*--backgrounds--*/
.bg-2{
  background-color: #f7f7f7;
}

.bg-3{
  background-color: #f1f1f1;
}

.bg-4{
	background: #273c56;
  background: linear-gradient(90deg, #273c56, #294465);
}

.bg-5{
	background: #111f3a;
}

.bg-grad-1{
	background: #174869;
	background: linear-gradient(90deg, #174869, #13405b);
}

/*--buttons--*/
.button{
	color: #003663;
	border-bottom: 2px solid #003663;
	padding: 10px 15px;
	display: inline-flex;
  align-items: center;
  transition-duration: .3s;
  cursor: pointer !important;
}

.button:after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
	background-image: url(https://markcoure.com.au/images/icons/arrow-right-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
	transition-duration: .2s;
}

.button:hover{
	padding: 10px 20px 10px 18px;
}

.button:hover:after{
	margin-left: 20px;	
}

.button.white{
	color: #fff;
	border-color: #fff;
}

.button.white:after{
	background-image: url(https://markcoure.com.au/images/icons/arrow-right-white.svg);
}


/*-- B. Header --------------------------------------------------------------------------------------*/

header{
  top: 0;
  left: 0;
  right: 0;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 10;
	height: 100px;
	position: absolute;
  background: none;
}



header .header_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
	height: 100px;
}


header .header_top .logo{
  width: 170px;
  max-width: 100%;
  outline: none !important;
	transition-duration: .2s;
}

header .header_top .logo img{
  width: 100%;
  transition-duration: .2s;
	padding: 20px 0;
}


header .header_top #nav_button{
  max-width: 100%;
  cursor: pointer !important;
	transition-duration: .2s;
	background: #0072bc;
	border-radius: 30px;
	padding: 10px;
}

header .header_top #nav_button:hover{
  transform: scale(1.1);
}

header #nav{
  display: none;
  text-align: right;
}

header.open .header_wrap{
 	display: block;
	background: linear-gradient(0deg, #184a6bfa 50%, #184a6b);
	width: 100%;
	height: 100%;
  opacity: 1;
  z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
}

header.open .header_top{
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
}

header.open #nav{
  display: block;
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
}

header #nav li{
  list-style-type: none;
  margin: 2px 0;
}

header #nav li a{
  color: #fff;
  font-size: 15px;
  transition-duration: .2s;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

header #nav li a:hover{
  color: #4099d4;
}

header #nav li a.green{
  color: #79bfec;
}

header #nav li a.green:hover{
  color: #c0e7ff;
}

header #nav li a img{
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
}

header #nav hr{
	border: none;
	height: 3px;
	background: #56afff;
	background: linear-gradient(90deg, #56afff80, #56afff);
	max-width: 120px;
	margin: 15px 0 15px auto;
	display: block;
}

header #nav li.secondary{
	margin: 5px 0;
}

header #nav li.secondary a{
	color: #56afff;
	font-size: 15px;
}

header #nav li.secondary a:hover{
	color: #fff;
}










/* Icon 3 */

#nav-icon3 {
  width: 12px;
  height: 12px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer !important;
}

#nav-icon3 span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .1s ease-in-out;
  -moz-transition: .1s ease-in-out;
  -o-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
  cursor: pointer;
  box-shadow: 2px 2px 2px #0000000a;
}


#nav-icon3 span:nth-child(1) {
  top: 10%;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 50%;
}

#nav-icon3 span:nth-child(4) {
  top: 90%;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media (min-width: 700px){
  #nav-icon3 {
  }
  
  header #nav li a{
    font-size: 18px;
  }
  
  header #nav li.secondary a{
    font-size: 18px;
  }
  
  header #nav hr{
  	max-width: 500px;
  }
  
}

@media (min-width: 768px){
  header .header_top{
    padding: 50px 0;
  }
	
	header .header_top #nav_button{
		padding: 20px;
	}
	
	#nav-icon3 {
		width: 20px;
		height: 20px;
	}
	
	header .header_top .logo{
		width: 180px;
	}
  
  header.open #nav{
    margin: -20px auto 0;
  }
  
  header #nav li a{
    font-size: 22px;
  }
  
  header #nav li.secondary a{
    font-size: 18px;
  }
	
}

@media (min-width: 1000px){
	header .header_top .logo{
		width: 280px;
	}
}

@media (min-width: 1180px){
  header .header_top .logo img{
    
  }
}


@media (min-width: 1500px){
  header #nav li a{
    font-size: 28px;
  }
  
  header #nav li.secondary a{
    font-size: 25px;
  }
}

/*-- c. Footer--------------------------------------------------------------------------------------*/
footer{
	/*
	display: flex;
	align-items: center;
	*/
  color: #fff;
	padding: 0;
	background: #13405b !important;
}

footer .left{
  min-height: 200px;
  padding: 40px 0;
  /*background: #283843;*/
}

footer .left .f-logo{
	margin-top: 30px;
	height: auto;
	width: 280px;
	max-width: 100%;
}

footer .left .f-contact{
  margin: 40px 0;
}

footer .left .f-contact a{
  display: flex;
  color: #fff;
  margin: 10px 0;
	transition-duration: .2s;
}

footer .left .f-contact a:hover{
	color: #5cbfff;
}

footer .left .f-contact a img{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

footer .left .f-social a{
  display: inline-block;
	padding: 10px;
	margin-right: 7px;
	border: 2px solid #fff;
}

footer .left .f-social a img{
  width: 24px;
  height: 24px;
}









footer .right{
  min-height: 200px;
  padding: 20px 15px;
}

footer .right .f-register{
  height: 100px; 
  display: grid;
  align-items: center;
}

footer .right .f-register > div{
  margin: 0 -15px;
  border-bottom: 2px solid #fff;
}


footer .right .f-register a{
	display: inline-flex;
	align-items: center;
  color: #fff;
  font-weight: 600;
  margin: 0 5% 25px;
}

footer .right .f-register a img{
	width: 8px;
	height: auto;
	margin-left: 20px;
}

footer .right .f-links{
	display: flex;
  margin: 60px -15px 30px;
	align-items: flex-start;
	justify-content: space-between;
}

footer .right .f-links > div{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 5% 20px;
  padding: 0;
}

footer .right .f-links ul{
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer .right .f-links ul:first-of-type li a{
  padding-right: 50px;
}

footer .right .f-links ul li a{
  display: flex;
  color: #fff;
  margin: 10px 0;
	transition-duration: .2s;
}

footer .right .f-links ul li a:hover{
	color: #5cbfff;
}

footer .right .crest{
	margin: 0 !important;
}

footer .right .crest img{
	width: 100px;
	height: auto;
}

footer .f-auth {
    padding:16px 0;
    text-align:center;
    background-color:#0a2535;
    font-size:0.9em;
}


@media (min-width: 768px){
	
	footer{
		/*background: linear-gradient(90deg, #283843 50%, #29404f 50%) !important;*/
		background: linear-gradient(90deg, #13405b 50%, #174869 50%) !important;
	}
	
	footer .left{
		padding: 120px 0;
		background: #13405b;
	}
	
	footer .left .f-logo{
		margin-top: 15px;
	}

	
	footer .left .f-contact{
		margin: 70px 0;
	}

	footer .right{
		padding: 120px 0;
		background: #174869;
	}
	
	footer .f-auth {
    padding:24px 0;
}
	
	

}






/*-- 1. Home ---------------------------------------------------------------- */
#home-hero{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 400px;
	color: #fff;
	background-color: #3b3b3b;
	background-color: #000;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 40%;
	overflow: hidden;
}

#home-hero > div{
	position: relative;
	height: 100%;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

#home-hero .content{
	margin-top: 100px;
}

#home-hero h1{
	font-size: 35px;
	line-height: 100%;
	width: 100%;
	max-width: 600px;
	color: #fff;
	text-shadow: 2px 2px 10px #00000029;
	margin: 0;
}

#home-hero img.heading{
	width: 170px;
	max-width: 100%;
	transition-duration: .2s;
}

#home-hero a.button{
	color: #fff;
	font-weight: 700;
	padding: 20px 30px;
	margin-top: 40px;
	display: inline-block;
	border-radius: 2px;
	border-bottom: 2px solid #fff;
	transition-duration: .2s;
}

#home-hero a.button:after{
	content: "";
	display: inline-block;
	background-image: url(https://markcoure.com.au/images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50% 50%;
	width: 10px;
	height: 10px;
	margin-left: 12px;
}

#home-hero a.button:hover{
	transform: translateX(5px);
}

#home-hero .scroll-down{
	display: none;
	width: 14px;
	height: auto;
	position: absolute;
	bottom: 30px;
}

#home-hero .home-hero-subheader{
	display: none;
	background-color: transparent;
	background: linear-gradient(45deg, transparent 50%, #184a6b 50%);
	position: absolute;
	width: 100%;
	bottom: 0px;
	height: 80px;
	padding: 0;
	margin: 0;
	right: 0;
}

#home-hero .home-hero-subheader > div{
	position: relative;
	height: 100%;
}

#home-hero .home-hero-subheader > div .social{
	position: absolute;
	right: 5px;
	top: -60px;
}

#home-hero .home-hero-subheader > div .social a{
	display: inline-block;
	transition-duration: .2s;
}

#home-hero .home-hero-subheader > div .social a img{
	width: 24px;
	height: 24px;
	margin-left: 5px;
	padding: 10px;
	border: 2px solid #fff;
	background: #184a6b30;
}

#home-hero .home-hero-subheader > div .social a:hover{
	transform: scale(1.05);
}

#home-hero .home-hero-subheader > div .hhs{
	background: #184a6b;
	justify-content: flex-end;
	height: 100%;
	max-width: 80%;
	margin-left: auto;
	display: flex;
	align-items: center;
	padding-left: 15px;
}

#home-hero .home-hero-subheader > div .hhs a{
	display: flex;
	align-items: center;
	color: #fff;
	margin-right: 30px;
	font-size: 16px;
	line-height: 120%;
}

#home-hero .home-hero-subheader > div .hhs a img{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

#home-hero .home-hero-subheader > div .hhs a.register{
	margin: 0;
	font-weight: 600;
	background: #0072bc;
	padding: 15px 30px;
	border-radius: 30px;
	transition-duration: .2s;
}

#home-hero .home-hero-subheader > div .hhs a.register:hover{
	background: #0083db;
}


/**/
#home-mobile-hero-subheader{
	background: #184a6b;
}

#home-mobile-hero-subheader .social{
	display: flex;
	align-items: center;
	padding: 20px 0;
}

#home-mobile-hero-subheader .social a img{
	width: 20px;
	height: 20px;
	margin-left: 5px;
	padding: 10px;
	border: 2px solid #fff;
	background: #184a6b30;
}

#home-mobile-hero-subheader .hhs a img{
	width: 20px;
	height: 20px;
	margin-right: 15px;
}

#home-mobile-hero-subheader .hhs a{
	display: flex;
	align-items: center;
	color: #fff;
	padding: 8px 0;
	word-break: break-word;
}

#home-mobile-hero-subheader .hhs .register{
	font-weight: 600;
	background: #0072bc;
	padding: 15px 30px;
	border-radius: 32px;
	display: inline-block;
	margin: 10px 0 20px;
	transition-duration: .2s;
}

#home-mobile-hero-subheader .hhs .register:hover{
	background: #0083db;
}


@media (min-width: 450px){
	#home-hero img.heading{
		width: 200px;
	}
}

@media (min-width: 550px){
	#home-hero img.heading{
		width: 240px;
	}
}

@media (min-width: 768px){
	#home-hero{
    height: 700px;
	}

	#home-hero img.heading{
		width: 300px;
	}
}

@media (min-width: 900px){
	#home-hero img.heading{
		width: 340px;
	}
}


@media (min-width: 1100px){
	#home-hero .home-hero-subheader,
	#home-hero .scroll-down{
		display: block;
	}
	
	#home-mobile-hero-subheader{
		display: none;
	}
}

@media (min-width: 1200px){
	#home-hero img.heading{
		width: 400px;
	}
}

@media (min-width: 1300px){
	#home-hero{
    height: 800px;
	}
}
	
/**/
#home-latest-oatley h2{
  margin: 0 0 10px;
}

#home-latest-oatley .items{
	display: flex;
	flex-wrap: wrap;
}

#home-latest-oatley .items .item{
	position: relative;
	flex: 0 0 100%;
	margin: 10px 0;
  background: #fff;
	box-shadow: 2px 2px 10px #00000014;
	word-break: break-word;
}

#home-latest-oatley .items .item .photo{
	position: relative;
	height: 300px;
	overflow: hidden;
}

#home-latest-oatley .items .item .photo .photo-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	filter: blur(2px);
}

#home-latest-oatley .items .item .photo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	position: absolute;
}

#home-latest-oatley .items .item .content{
	padding: 30px 30px 80px;
}


#home-latest-oatley .items .item .content p.date{
	font-size: 16px;
	margin: 0;
	color: #adadad;
}

#home-latest-oatley .items .item .content .fb-button{
	display: flex;
	align-items: center;
	color: #0372bc;
	position: absolute;
	bottom: 25px;
}

#home-latest-oatley .items .item .content .fb-button:hover{
  color: #0083db;
}

#home-latest-oatley .items .item .content .fb-button img{
	border-radius: 50%;
	background: #0372bc;
	padding: 5px;
	width: 18px;
	height: 18px;
	margin-right: 10px;
  transition-duration: .2s;
}

#home-latest-oatley .items .item .content .fb-button:hover img{
  background: #0083db;
}

#home-latest-oatley .items .item.item-hansard{
	display: flex;
	align-items: center;
  background: #0372bc;
  background: linear-gradient(140deg, #0372bc, #0c6098);
}

#home-latest-oatley .items .item.item-hansard .content{
	position: relative;
	padding: 30px;
  color: #fff;
}

#home-latest-oatley .items .item.item-hansard .content h3{
  color: #fff;
}

#home-latest-oatley .items .item.item-hansard .content a.parliament-speech{
	font-size: 16px;
	margin: 0;
	color: #64c2ff;
	transition-duration: .2s;
}

#home-latest-oatley .items .item.item-hansard .content a.parliament-speech:hover{
	color: #85cdfc;
}


/**/
#home-whats-happening > div{
  width: 1000px;
}

#home-whats-happening > div .hwh-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px;
}

#home-whats-happening > div .hwh-heading h2{
	padding-right: 20px;
}

#home-whats-happening > div .hwh-heading > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

#home-whats-happening > div .hwh-heading a{
  color: #fff;
  background: #0272bc;
  padding: 12px 20px;
	margin: 3px 0;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
	transition-duration: .2s;
	border-radius: 25px;
	text-align: center;
}

#home-whats-happening > div .hwh-heading a:hover{
	background: #0083db;
	transform: translateY(-2px);
}

#home-whats-happening > div .hwh-heading a.news{
	color: #0272bc;
	background: #fff;
	box-shadow: 2px 2px 10px #0000000d;
	margin-left: 5px;
}

#home-whats-happening > div .hwh-heading a.news:hover{

}

#home-whats-happening .item{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  align-items: center;
  margin: 15px 0;
	box-shadow: 2px 2px 10px #0000000d;
}

#home-whats-happening .item .photo{
  min-height: 250px;
}

#home-whats-happening .item .photo > div{
	padding: 20px;
}

#home-whats-happening .item .photo img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

#home-whats-happening .item .content > div{
  padding: 30px 30px 30px 15px;
}

#home-whats-happening .item.special{

}

#home-whats-happening .item.special h3,
#home-whats-happening .item.special p{

}






/**/
#home-featured-boxes .box{
	position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  flex: 0 0 25%;
	transition-duration: .2s;
}

#home-featured-boxes .box:hover img{
	opacity: .05;
}

#home-featured-boxes .box .shade{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#home-featured-boxes .box img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	opacity: .1;
	transition-duration: .2s;
}


#home-featured-boxes .box h3{
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 0 10% 20px;
  margin: 0 auto;
  max-width: 180px;
	z-index: 1;
}

#home-featured-boxes .box span{
  color: #fff;
  position: absolute;
  bottom: 40px;
  font-size: 14px;
}

#home-featured-boxes .box.s1{
  background: #3c5ea1;
}

#home-featured-boxes .box.s2{
  background: #17567f;
}

#home-featured-boxes .box.s3{
  background: #143952;
}

#home-featured-boxes .box.s4{
  background: #2f2fc1;
}

@media (min-width:480px){
	#home-latest-oatley .items .item{
    flex: 0 0 49%;
    margin: .5%;
	}
}

@media (min-width:768px){
	#home-featured-boxes .box{
	  min-height: 300px;
	}
}

@media (min-width:900px){
	#home-latest-oatley h2{
		margin: 0 0 20px;
	}

	
	#home-latest-oatley .items .item{
		flex: 0 0 32.33%;
		margin: .5%;
	}
}

@media (min-width:1300px){
	#home-latest-oatley .items .item{
		flex: 0 0 24%;
		margin: .5%;
	}
}


@media (min-width:1500px){
	#home-featured-boxes .box{
	  min-height: 450px;
	}
}
























































/*-- 2.1 Page Generic ---------------------------------------------------------------- */
#page-header{
	position: relative;
	background-image: url();
	min-height: 100px;
	color: #fff;
	background-color: #17496a;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 80% 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 100px 0 30px;
	text-align: center;
	transition-duration: .2s;
}

#page-header h1{
	display: flex;
	text-align: left;
	margin: 40px 0 0 3px;
	font-weight: 600;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 10px #00000057;
	max-width: 480px;
}

/*
#page-header h1:after{
	content: ".";
	display: block;
	color: #fff;
	margin-left: 3px;
}
*/

@media(min-width:768px){
	#page-header{
		min-height: 350px;
    background-position: 70% 50%;
	}
	#page-header h1{
		font-size: 35px;
    text-shadow: 2px 2px 10px #00000026;
	}
}


@media(min-width:1300px){
	#page-header{
		min-height: 450px;
	}
	#page-header h1{
		font-size: 40px;
	}
}




/*-- 3. Page Parliament---------------------------------------------------------------- */
#parliament-items .items{
	display: flex;
	flex-wrap: wrap;
}

#parliament-items .items .item{
	position: relative;
	display: block;
	background: #fff;
	box-shadow: 2px 2px 10px #0000000d;
	flex: 0 0 100%;
	margin: 5px 0;
}

#parliament-items .items .item > div{
	padding: 30px 30px 100px;
}

#parliament-items .items .item p.date{
	margin: 3px 0 10px;
	font-size: 15px;
	color: #c4c4c4;
}

#parliament-items .items .item p.content{
	color: #333;
	margin: 10px 0 0;
}

#parliament-items .items .item p.button{
	position: absolute;
	bottom: 20px;
}

@media(min-width:500px){
	#parliament-items .items .item{
		flex: 0 0 49%;
		margin: .5%;
	}
}

@media(min-width:768px){
	#parliament-items .items .item{
		flex: 0 0 32.33%;
	}
}


/*-- 4.1 Page News ---------------------------------------------------------------- */
.whats-happening.category-boxes{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.whats-happening.category-boxes .box{
	color: #fff;
	background: #17496a;
	flex: 0 0 32.33%;
	margin: .5%;
	display: flex;
	border-radius: 4px;
	cursor: pointer !important;
	transition-duration: .2s;
}

.whats-happening.category-boxes .box:hover{
	background: #0269ae;
}

.whats-happening.category-boxes .box > div{
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	padding: 15px 5%;
}

.whats-happening.category-boxes .box img{
	width: 30px;
	height: 30px;
	margin: -1px 5px 0 0;
}

.whats-happening.category-boxes .box p{
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 110%;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	word-break: break-word;
}

.wh-category-all .category-boxes .box.all,
.wh-category-news .category-boxes .box.news,
.wh-category-facebook .category-boxes .box.facebook,
.wh-category-newsletters .category-boxes .box.newsletters,
.wh-category-gallery .category-boxes .box.gallery,
.wh-category-videos .category-boxes .box.videos{
	background: #0072bc;
}


#page-news-list .news-category-boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	justify-content: center;
	margin-bottom: 15px;
}

#page-news-list .news-category-boxes .box{
	background: #a1a1a1;
	color: #fff;
	padding: 12px 25px 10px;
	border-radius: 4px;
	margin: 2px;
	display: flex;
	justify-content: center;
	transition-duration: .2s;
}

#page-news-list .news-category-boxes .box:hover,
#page-news-list .news-category-boxes .box.active{
	background: #0072bc;
}

#page-news-list .news-category-boxes .box p{
	margin: 0;	
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	align-items: center;
	justify-content: center;
	word-break: break-word;
}

#page-news-list .item{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  align-items: center;
  margin: 15px 0;
  box-shadow: 2px 2px 10px #00000014;
	padding: 0;
	border-radius: 5px;
	width: 100%;
}

#page-news-list .item .photo{
	position: relative;
	overflow: hidden;
  height: 250px;
	width: 100%;
}

#page-news-list .item .photo img{
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#page-news-list .item .photo .bg{
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	filter: blur(3px);
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
}

#page-news-list .item .content > div{
  padding: 30px 5%;
}

#page-news-list .item .content h3{
	margin: 0 0 5px;
}

#page-news-list .item .content .facebook{
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}

#page-news-list .item .content .facebook img{
	border-radius: 50%;
	background: #0372bc;
	width: 50px;
	height: 50px;
	margin-right: 10px;
  transition-duration: .2s;
	filter: grayscale(1);
}

#page-news-list .item .content .facebook h4{
	font-weight: 600;
	margin: 5px 0 -1px;
	color: #174869;
}

#page-news-list .item .content .facebook h4:after{
	content: "";
	width: 13px;
	height: 13px;
	display: inline-block;
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	margin-left: 5px;
	margin-top: -1px;
	background-image: url(https://markcoure.com.au/images/icons/icon-verified.jpg);
}

#page-news-list .item .content p.date{
	color: #bdbdbd;
	font-size: 16px;
	margin: 0;
}


/*
#page-news-list .item .content .fb-button{
	display: flex;
	align-items: center;
	color: #0372bc;

}

#page-news-list .item .content .fb-button:hover{
  color: #0083db;
}

#page-news-list .item .content .fb-button img{
	border-radius: 50%;
	background: #0372bc;
	padding: 5px;
	width: 18px;
	height: 18px;
	margin-right: 10px;
  transition-duration: .2s;
}

#page-news-list .item .content .fb-button:hover img{
  background: #0083db;
}
*/



@media (min-width: 500px){

}

@media (min-width: 768px){
	.whats-happening.category-boxes .box{
		flex: 0 0 24%;
	}
	
	.whats-happening.category-boxes .box > div{
		padding: 30px 10%;
	}
	
	.whats-happening.category-boxes .box img{
		width: 40px;
		height: 40px;
	}
	
	.whats-happening.category-boxes .box p{
		font-size: 16px;
	}

	#page-news-list .item{
		padding: 15px;
	}
	
}






/*-- 4.2 Page News - paginate --*/
.paginate{
  flex: 0 0 100%;
  padding: 20px 0;
}

.paginate a{
	color: #fff;
	background: #274564;
	padding: 3px;
	transition-duration: .2s;
	cursor: pointer !important;
	border-radius: 3px;
	width: 28px;
	height: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.paginate a img{
	width: 10px;
	height: 10px;
}

.paginate .current a,
.paginate a:hover{
  background: #4099d4;
}

/*-- individual news item --*/
#page-header.page-header-topic h1{
	margin: 0;
}

#page-header.page-header-topic p{
	margin: 0;
}


/*-- 4.3 Page News ---------------------------------------------------------------- */
#page-individual-news-header{
	padding: 120px 0 10px 0;
}

#page-individual-news-header h2{
	color: #fff;	
	font-weight: 600;
}

#page-individual-news-header p{
	color: #fff;
	margin: 0;
}

#page-individual-news-header p a{
	color: #42a6e9;
	margin: 0;
}

#page-individual-news-header p a:hover{
	color: #fff;	
}

#page-individual-news > div{
	background: #fff;
	box-shadow: 2px 2px 10px #00000014;
	border-radius: 5px;
}

#page-individual-news > div > div{
	padding: 30px 10px;
}

#page-individual-news .news-content{
	overflow: hidden;
}

#page-individual-news .news-content h1{
	line-height: 110%;
	margin-bottom: 15px;
}

#page-individual-news .news-content table tr{
}

#page-individual-news .news-content table tr td{
	white-space: inherit;	
}

#page-individual-news .news-content table tr td p{
	margin: 2px 0;
}

#page-individual-news .news-content p.hansard-id{
	color: #bdbdbd;
	margin: 10px 0 5px;
}

#page-individual-news .news-content p.hansard-session{
	color: #bdbdbd;
	margin: 5px 0;
}

#page-individual-news .news-content hr.hansard-divider{
	background: #bdbdbd;
	border: none;
	height: 2px;
	margin: 10px 0 20px;
}

#page-individual-news .sidebar h3{
	margin: 60px 0 30px;
}

#page-individual-news .sidebar a{
	position: relative;
	display: flex;
	align-items: center;
	margin: 20px 0;
	flex-wrap: wrap;
	transition-duration: .2s;
}

#page-individual-news .sidebar a:hover h4{
	color: #42a6e9;
}

#page-individual-news .sidebar a:hover:after{
	transform: translateX(4px);
}

#page-individual-news .sidebar a h4{
	display: flex;
	flex: 0 0 100%;
	align-items: center;
	word-break: break-word;
	max-width: 90%;
	padding-right: 10%;
	transition-duration: .2s;
}

#page-individual-news .sidebar a p.date{
	color: #bdbdbd;
	font-size: 16px;
	margin: 2px 0 0;
}

#page-individual-news .sidebar a:after{
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url(https://markcoure.com.au/images/icons/arrow-right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-left: 25px;
	position: absolute;
	right: 0;
	top: 4px;
	transition-duration: .2s;
}


@media (min-width: 768px){
	#page-individual-news-header{
		padding: 250px 0 10px 0;
	}

	#page-individual-news > div > div{
		padding: 50px 40px;
	}
	
	#page-individual-news .news-content > div{
		max-width: 90%;
	}
	
	#page-individual-news .sidebar h3{
		margin: 0 0 30px;
	}



}



/*-- 5.2 Election Commitment Tracker --*/
.page-6 .fancybox-inner{
	max-height: 600px;
	max-width: 900px;
	margin: auto;
}

#election-commitment-tracker .category-boxes{
	display: flex;
	flex-wrap: wrap;
}

#election-commitment-tracker .category-boxes .box{
	color: #fff;
	background: #17496a;
	flex: 0 0 32.33%;
	margin: .5%;
	display: flex;
	justify-content: center;
	border-radius: 4px;
	cursor: pointer !important;
  word-break: break-word;
}

#election-commitment-tracker .category-boxes .box:hover{
	background: #1c4e6f;
}

#election-commitment-tracker .category-boxes .box > div{
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 30px 5%;
}

#election-commitment-tracker .category-boxes .box img{
	width: 40px;
	height: 40px;
	margin: 0 auto;
}

#election-commitment-tracker .category-boxes .box p{
	flex: 0 0 100%;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 110%;
	margin: 0;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}


#election-commitment-tracker .ect-category{
	margin: 40px 0;
	background: #fff;
	box-shadow: 2px 2px 5px #00000030;
	padding: 30px;
	border-radius: 4px;
}

#election-commitment-tracker .ect-category > h2{
	margin: 0 0 20px;
	color: #3a7eab;
	font-weight: 600;
}

#election-commitment-tracker .ect-category .subCats{
  margin: -15px 0 20px 0; 
}
  
#election-commitment-tracker .ect-category .subCats .subCat{
  padding: 5px 13px;
  color: #fff;
  text-shadow: 2px 2px 4px #0000002b;
  background: #a9a9a9;
  display: inline-block;
  margin: 4px 0px;
  position: relative;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer !important;
  transition-duration: .2s;
}

#election-commitment-tracker .ect-category .subCats .subCat:hover{
  background: #17496a;
}

#election-commitment-tracker .ect-category .subCats .subCat.active{
  background: #17496a;
}


#election-commitment-tracker .ect-category .item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 15px;
}

#election-commitment-tracker .ect-category .item:nth-of-type(even) {
	background: #f8f8f8;
}


#election-commitment-tracker .ect-category .item:last-of-type{
	margin-bottom: 0;
}

#election-commitment-tracker .ect-category .item p{
	position: relative;
	margin: 0 0 0 28px;
	line-height: 130%;
	font-size: 16px;
	transition-duration: .2s;
}

#election-commitment-tracker .ect-category .item:hover p{
	color: #466d88;
}

#election-commitment-tracker .ect-category .item p:before{
	content: "";
	position: absolute;
	display: inline-flex;
	top: 2px;
	left: -27px;
	margin: auto;
	width: 16px;
	height: 16px;
	background-image: url(https://markcoure.com.au/images/icons/icon-check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

#election-commitment-tracker .ect-category .item .category{
	color: #184a6b;
	font-size: 13px;
}


#election-commitment-tracker .item .content{
	flex: 0 0 100%;
}

#election-commitment-tracker .item .content > div{
	padding: 0 5% 0 0;
}

#election-commitment-tracker .item .content ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#election-commitment-tracker .item .content ul li{
	margin: 0;
	padding: 0;
}

#election-commitment-tracker .item .content ul li{
	margin: 0;
	padding: 0;
}

#election-commitment-tracker .item .map{
	display: flex;
	margin: 5px 0 0 30px;
	flex: 0 0 100%;
}

#election-commitment-tracker .item .map a{
	display: flex;
	align-items: center;
	color: #174869;
	font-size: 15px;
	cursor: pointer !important;
	transition-duration: .2s;
}

#election-commitment-tracker .item .map a:hover{
	transform: translateX(-4px);
}

#election-commitment-tracker .item .map a.disabled{
	opacity: .2;
	pointer-events: none;
}

#election-commitment-tracker .item .map a img{
	width: 8px;
	height: 8px;
	margin-left: 10px;
}

@media (min-width: 768px){
  
  #election-commitment-tracker .category-boxes .box{
    flex: 0 0 24%;
  }
  
  
	#election-commitment-tracker .item .content{
		flex: 0 0 80%;
	}
	
	#election-commitment-tracker .item .map{
		margin: 0;
		flex: 0 0 20%;
		justify-content: flex-end;
	}
}


@media (min-width: 1200px){
  
  #election-commitment-tracker .category-boxes .box{
    flex: 0 0 11.5%;
  }
  
}

/*-- 6. Page St. George Community Awards --*/
#page-community-awards .community-award{
	background: #fff;
	box-shadow: 2px 2px 10px #00000008;
	padding: 40px 5%;
	width: 100%;
	margin: 15px 0;
}

#page-community-awards .community-award.nomination{
  background: #17496a;
  background: linear-gradient(45deg, #275c7f, #126ca7);
}

#page-community-awards .community-award.nomination h2{
  color: #fff;
}

#page-community-awards .community-award:first-of-type{
	margin-top: 0;
}

#page-community-awards .community-award:last-of-type{
	margin-bottom: 0;
}

#page-community-awards .community-award .ca-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#page-community-awards .community-award .ca-heading a.click-to-expand{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 4px;
  background: #0072bc;
  border-radius: 50%;
  transition-duration: .2s;
}

#page-community-awards .community-award .ca-heading a.click-to-expand:hover{
  background: #278dcf;
}

#page-community-awards .community-award .ca-heading a.click-to-expand img{
  width: 12px;
  height: auto;
  object-fit: contain;
}

#page-community-awards .community-award .ca-content{
  height: 70px;
  overflow: hidden;
}

#page-community-awards .community-award.active .ca-content{
  height: auto;
}

#page-community-awards .community-award > .click-to-expand{
  display: table;
  text-align: center;
  margin: 20px auto 0;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  background: #0272bb;
  cursor: pointer !important;
}

#page-community-awards .community-award .click-to-expand:hover{
  background: #278dcf;
}

#page-community-awards .community-award .file-attachments{
	margin: 30px 0 0;
}

#page-community-awards .community-award .file-attachments ul{
	margin-bottom: 0;
}

/*-- 7. Page Gallery --*/
#page-gallery .gallery-items{
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0;
	padding: 30px;
	background: #fff;
	box-shadow: 2px 2px 10px #00000014;
}

#page-gallery .gallery-items h3{
	flex: 0 0 100%;
	margin: 0 0 10px;
}

#page-gallery .gallery-items .item{
	position: relative;
	flex: 0 0 19%;
	margin: .5%;
	border-radius: 4px;
	overflow: hidden;
	max-height: 300px;
}


#page-gallery .gallery-items .item a{
    display: block;
    width: 100%;
    height: 100%;
}

#page-gallery .gallery-items .item a img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}















/*-- 8. Page Video --*/
#page-video .video-items{
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
}

#page-video .video-items .item{
	position: relative;
	flex: 0 0 32.33%;
	margin: .5%;
	border-radius: 4px;
	overflow: hidden;
}


/*-- 9.1. Page About Mark ---------------------------------------------------------------- */
#page-about-content > div.panel-maxwidth{
  margin-bottom: 50px;
}

#page-about-content > div.panel-maxwidth:last-of-type{
  margin-bottom: 0;
}

#page-about-content > div.panel-maxwidth .content > div{
  padding: 30px; 
}

#page-about-content ul{
	margin: 20px 0;
	padding: 0 0 0 20px;
}

#page-about-content ul li{
	margin: 10px 0;
}

@media (min-width: 900px){

}

/*-- 9.2 Page About Oatley ---------------------------------------------------------------- */
#page-oatley-mark-description{
	background: #174869;
	color: #fff;
}

#page-oatley-mark-description > div > div{
	padding: 0 15px;
}

#page-oatley-mark-description h2{
	color: #64c2ff;
}

#page-oatley-mark-description p{
	color: #fff;
}

#page-oatley-detail-description table{
	border-collapse: collapse;
	margin: 15px 0;
	width: 100%;
}

#page-oatley-detail-description table td p{
	margin: 2px 0;
	word-break: break-word;
}

#page-oatley-detail-description table td{
	border: 2px solid #b7b7b7;
	padding: 5px;
	min-width: 70px;
}

@media (min-width: 768px){
	#page-oatley-detail-description table td{
		padding: 5px 15px;
	}
	
	#page-oatley-detail-description table td p{
		word-break: normal;
	}
}
	

/*-- 10. Page COVID-19  ---------------------------------------------------------------- */
#page-covid-19 .introduction > div{
  max-width: 80%;
  padding-top: 40px;
  padding-right: 10%;
  height: 100%;
  border-right: 3px solid #d0d0d0;
}

#page-covid-19 .links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  margin: 15px 0;
  color: #174869;
}

#page-covid-19 .links a:after{
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url(https://markcoure.com.au/images/icons/arrow-right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-left: 15px;
}

#page-covid-19 .links > div{
  padding-top: 40px;
}

#page-covid-19-vaccination-places table{
	width: 100%;
	background: #fff;
	box-shadow: 2px 2px 10px #0000000a;
	padding: 30px;
  margin: 20px 0 0;
}


#page-covid-19-vaccination-places table tr:nth-child(even){
	background: #f7f7f7;
}


#page-covid-19-vaccination-places table tr td{
	padding: 14px 10px;	
}

#page-covid-19-content-wraps > div{
	padding: 20px 0 80px;
}

#page-covid-19-content-wraps .cc-wrap{
	margin: 45px 0;
}

#page-covid-19-content-wraps .cc-wrap:first-of-type{
	margin-top: 0;
}

#page-covid-19-content-wraps .cc-wrap:last-of-type{
	margin-bottom: 0;
}

#page-covid-19-content-wraps .cc-wrap p{
	margin: 5px 0;
}


/*-- 11.1 Page Contact  ---------------------------------------------------------------- */
#page-contact .content .c-electorate{
	margin: 0 0 40px;
}

#page-contact .content h2{
	margin: 10px 0 0;
}

#page-contact .content p{
	margin: 5px 0;
}

#page-contact .content a{
	display: flex;
	color: #13405b;
	margin: 10px 0;
	transition-duration: .2s;
	align-items: center;
	word-break: break-word;
}

#page-contact .content a:first-of-type{
	margin-top: 30px;
}

#page-contact .content a img {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	padding: 12px;
	background: #0072bc;
	border-radius: 50%;
}

#page-contact form{
	padding: 25px 5%;
	background: #fff;
	box-shadow: 2px 2px 10px #00000014;
}

#page-contact form .survey-intro{
  border-bottom: 1px solid #13405b;
  padding-bottom: 20px;
  margin: 20px 0 30px;
}

#page-contact form .survey-intro h2{
  color: #13405b;
  margin: 0 0 10px;
}

#page-contact form .survey-intro p{
  color: #13405b;
}

#page-contact form p{
	margin: 5px 0;
}

#page-contact form label{
	margin: 5px 0;
	color: #13405b;
}

#page-contact form input,
#page-contact form textarea{
	padding: 15px;
	border: none;
	outline: none !important;
	border-radius: 4px;
	background: #f9f9f9;
}

#page-contact form textarea{
	resize: vertical;
  min-height: 100px;
  max-height: 500px;
}

#page-contact form button[type=submit]{
	border: none;
	padding: 20px 35px;
	color: #ffff;
	font-size: 15px;
	font-weight: 600;
	background: #13405b;
	border-radius: 30px;
	transition-duration: .2s;
	cursor: pointer !important;
}

#page-contact form button[type=submit]:hover{
	background: #174869;
}

#page-contact form .ff-form-success{
  background: #0272bb;
  color: #fff;
  padding: 30px 10px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  margin: 0 0 30px;
}

@media (min-width: 768px){
	#page-contact .contact-form > div{
		padding-left: 8%;
	}
}

/*-- 11.2 Page Have Your Say (Shares template with Contact)  ---------------------------------------------------------------- */
.survey-have-your-say .content{
  width: 100%;
}

.survey-have-your-say .content form{
  max-width: 800px;
  margin: 0 auto;
}

.survey-have-your-say .content form .freeform-row.row-issue > .freeform-column{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  flex: unset;
  text-align: left;
}

.survey-have-your-say .content form .freeform-row.row-issue > .freeform-column input{
  width: 60px;
  height: 40px;
  margin-right: 20px;
  text-align: center;
  padding: 2px !important;
}

.survey-have-your-say .content form p.receive-further-info{
  margin: 20px 0 -20px !important;
}


/*-- 12. Page St George Community Awards ------------------------------------------------------------ */
#page-stgca-nomination{
  background-color: #17496a;
  background: linear-gradient(95deg, #17496a, #0b3b5b);
}

#page-stgca-nomination .intro{
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #fff;
}

#page-stgca-nomination .intro h2{
  color: #fff;
  font-weight: 600;
}

#page-stgca-nomination .intro p{
  max-width: 600px;
  width: 100%;
}

#page-stgca-nomination form{
  padding: 50px;
  background: #fff;
  box-shadow: 2px 2px 10px #00000014;
  max-width: 900px;
  margin: 0 auto;
}

#page-stgca-nomination form h2.awn-heading{
  margin: 30px 0 0;
  font-weight: 600;
}

#page-stgca-nomination form h2.awn-heading.top{
  margin-top: 0;
}

#page-stgca-nomination form h2.awn-heading.supporting-statement{
  margin-bottom: -10px;
}

#page-stgca-nomination form label{
  display: block;
  margin: 1px 0 3px;
  font-weight: 500;
  color: #13405b;
}

#page-stgca-nomination form input,
#page-stgca-nomination form textarea{
  padding: 15px; 
  border: none;
  border-radius: 4px;
  background: #f9f9f9;
  outline: none !important;
}

#page-stgca-nomination form textarea{
  min-height: 200px;
  max-height: 500px;
  resize: vertical; 
  outline: none !important;
}

#page-stgca-nomination form .freeform-row .freeform-column{
  padding: 5px 0;
}

#page-stgca-nomination form label[for="form-input-awardCategories"]{
  margin: -5px 0 10px !important;
}

#page-stgca-nomination form .award-categories-wrapper label{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 25px 0;
}

#page-stgca-nomination form .award-categories-wrapper label input{
  margin: 0 15px 0 0; 
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

#page-stgca-nomination form .award-categories-wrapper h3{
  font-weight: 600;
  font-size: 22px;
  color: #13405b;
}

#page-stgca-nomination form .award-categories-wrapper label p{
  margin: 0 0 0 30px;
  flex: 0 0 100%;
  flex: 0 0 calc(100% - 30px);
}


#page-stgca-nomination form button[type=submit]{
	border: none;
	padding: 20px 35px;
  margin: 20px 0 0;
	color: #ffff;
	font-size: 15px;
	font-weight: 600;
	background: #13405b;
	border-radius: 30px;
	transition-duration: .2s;
	cursor: pointer !important;
}

#page-stgca-nomination form button[type=submit]:hover{
	background: #174869;
}

#page-stgca-nomination form .ff-form-success{
  background: #0272bb;
  color: #fff;
  padding: 30px 10px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  margin: 0 0 30px;
}




@media (min-width: 768px){
  #page-stgca-nomination form{
    padding: 50px;
  }
}

/*-- X0. Page 404 ---------------------------------------------------------------- */
.page-404 #home-hero h1{	
	max-width: 450px;
	text-shadow: 2px 2px 10px #00000059;
	font-weight: 600;
	margin: 150px 0 0 !important;
}


/*-- X1. Signup Popup --------------------------------------------------------------------*/
#signup-popup{
	width: 600px;
	max-width: 100%;
}

#signup-popup > div{
	padding: 40px;
}

#signup-popup .form-header{
	margin: 0 0 20px;
}

#signup-popup .form-header h2{
	margin: 0;
	font-weight: 600;
	color: #0072bc;
}

#signup-popup .form-header p{
	margin: 5px 0;
}

#signup-popup form label {
	margin: 5px 0;
	font-size: 15px;
	color: #7e7e7e;
	font-weight: 500;
}

#signup-popup form input,
#signup-popup form textarea {
	padding: 15px;
	border: none;
	outline: none !important;
	border-radius: 4px;
	background: #f9f9f9;
}

#signup-popup form button[type=submit]{
	border: none;
	padding: 20px 35px;
	color: #ffff;
	font-size: 15px;
	font-weight: 600;
	background: #0072bc;
	border-radius: 30px;
	transition-duration: .2s;
	cursor: pointer !important;
	margin-top: 10px;
}

#signup-popup form button[type=submit]:hover{
	background: #174869;
}

#signup-popup.success form .freeform-row{
	opacity: .1;
	pointer-events: none;
} 

#signup-popup.success form .ff-form-success{
	color: #0072bc;
	font-weight: 600;
}

.fancybox-bg{
	background: #13405b;
}





/*-- Z. Animation Elements --------------------------------------------------------------------*/
.animate{
  position: relative;
}

.bounce-up.in-view.animate,
.slide-from-left.in-view.animate,
.slide-from-right.in-view.animate,
.fadein.in-view.animate{
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

/*-- animation: bounce up--*/
.bounce-up.animate {
  opacity: 0;
  
  /*-- transition --*/
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  
  /*-- transform --*/
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate3d(0px, 100, 0px);
  
  /*-- visibility --*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- animation: slide from left --*/
.slide-from-left.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate3d(-50px, 0px, 0px);
}

/*-- animation: slide from right --*/
.slide-from-right.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate3d(50px, 0px, 0px);
}

@media (max-width: 768px){
  .animate{
    overflow: hidden;
  }
}

.delay-1 {transition-delay: 0.05s !important;}
.delay-2 {transition-delay: 0.10s !important;}
.delay-3 {transition-delay: 0.15s !important;}
.delay-4 {transition-delay: 0.20s !important;}
.delay-5 {transition-delay: 0.25s !important;}
.delay-6 {transition-delay: 0.30s !important;}
