@CHARSET "ISO-8859-1";
::-webkit-scrollbar {
	display: none;
}
html {
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
/* Custom CSS
 * --------------------------------------- */
body {
	font-family: 'Sintony', sans-serif;
	color: white;
	text-align: left;
}

input, textarea, select, button {
	font-family: 'Sintony', sans-serif;
}

.wrap {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	position: relative;
}

h1 {
	font-size: 6em;
}

p {
	font-size: 0.85em;
}

a { color:white;
}

.section {
	text-align: left;
}

.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
	padding: 10px 15px 0;
	margin: 0;
	/*background: rgba(0, 0, 0, 0.65);*/
}

#hamburger {
	opacity: .95;
	width: 50px;
	top: 10px;
	right: 10px;

}

#hamburger {
	position: fixed;
	z-index: 5;
}

.hamburger {
	padding: 10px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible
}

.hamburger:hover {
	opacity: .8
}

.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
	width: 30px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	position: absolute;
	transition-property: -webkit-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease
}

.hamburger-inner::after, .hamburger-inner::before {
	content: "";
	display: block
}

.hamburger-inner::before {
	top: -10px
}

.hamburger-inner::after {
	bottom: -10px
}

.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse .hamburger-inner::after {
	top: -20px;
	-webkit-transition: top .3s .3s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear;
	transition: top .3s .3s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.hamburger--collapse .hamburger-inner::before {
	transition: top .12s .3s cubic-bezier(.33333, .66667, .66667, 1), -webkit-transform .15s cubic-bezier(.55, .055, .675, .19);
	-webkit-transition: top .12s .3s cubic-bezier(.33333, .66667, .66667, 1), -webkit-transform .15s cubic-bezier(.55, .055, .675, .19);
	transition: top .12s .3s cubic-bezier(.33333, .66667, .66667, 1), transform .15s cubic-bezier(.55, .055, .675, .19);
	transition: top .12s .3s cubic-bezier(.33333, .66667, .66667, 1), transform .15s cubic-bezier(.55, .055, .675, .19), -webkit-transform .15s cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse.is-active .hamburger-inner {
	-webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	-webkit-transition-delay: .32s;
	transition-delay: .32s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	-webkit-transition: top .3s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .27s linear;
	transition: top .3s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .27s linear
}

.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: top .12s .18s cubic-bezier(.33333, 0, .66667, .33333), -webkit-transform .15s .42s cubic-bezier(.215, .61, .355, 1);
	-webkit-transition: top .12s .18s cubic-bezier(.33333, 0, .66667, .33333), -webkit-transform .15s .42s cubic-bezier(.215, .61, .355, 1);
	transition: top .12s .18s cubic-bezier(.33333, 0, .66667, .33333), transform .15s .42s cubic-bezier(.215, .61, .355, 1);
	transition: top .12s .18s cubic-bezier(.33333, 0, .66667, .33333), transform .15s .42s cubic-bezier(.215, .61, .355, 1), -webkit-transform .15s .42s cubic-bezier(.215, .61, .355, 1)
}

/*
#menu li {
	display: inline-block;
	margin: 10px;
	color: white;
	background: none;
	vertical-align: middle;
	font-size: 16px;

}

#menu li.active {
	background: none;
	color: white;
}

#menu li a {
	text-decoration: none;
	color: white;
}

#menu li.active a:hover {
	color: white;
}

#menu li:hover {
	background: none;
}

#menu li a,
#menu li.active a {
	padding: 9px 18px;
	display: block;
}

#menu li.active a {
	color: white;
	text-decoration: underline;
}

#menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 90px;
	z-index: 70;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.5);
}*/

@media all and (min-width: 768px) {
	#menu {
		display: block;
		z-index: 99;
		position: relative;
		margin: 0;
		padding: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		background: transparent;
		padding-left: 80px;
	}

	#menu li {
		float: left;
		list-style: none;
		padding: 20px;
	}

	#menu li a{
		color: white;
		text-decoration: none;
		padding: 5px;
		margin-top: 5px;
	}


	#menu li.active a {
		color: white;
		border-bottom: 1px solid white;
	}
	li.top-li,li.home-li {
		display: none;
	}

	#hamburger{
		display: none;
	}

	.scroll-group2, .scroll-group{
		display: none !important;
	}
}
@media all and (max-width: 767px) {

	#menu li {
		position: relative;
		padding: 10px 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		float: none;
	}

	li.top-li {
		height: 44px;
		background: black;
	}

	#menu li a {
		padding: 5px;
		color: white;
		text-decoration: none;
		font-size: 14px;

	}

	#menu li.active a {
		color: white;
		border-bottom: 1px solid white;
	}
}

.twitter-share-button {
	position: fixed;
	z-index: 99;
	right: 149px;
	top: 9px;
}

#infoMenu {
	height: 20px;
	color: #f2f2f2;
	position: fixed;
	z-index: 70;
	bottom: 0;
	width: 100%;
	text-align: right;
	font-size: 0.9em;
	padding: 8px 0 8px 0;
}

#infoMenu ul {
	padding: 0 40px;
}

#infoMenu li a {
	display: block;
	margin: 0 22px 0 0;
	color: #333;
}

#infoMenu li a:hover {
	text-decoration: underline;
}

#infoMenu li {
	display: inline-block;
	position: relative;
}

#examplesList {
	display: none;
	background: #282828;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	padding: 20px;
	float: left;
	position: absolute;
	bottom: 29px;
	right: 0;
	width: 638px;
	text-align: left;
}

#examplesList ul {
	padding: 0;
}

#examplesList ul li {
	display: block;
	margin: 5px 0;
}

#examplesList ul li a {
	color: #BDBDBD;
	margin: 0;
}

#examplesList ul li a:hover {
	color: #f2f2f2;
}

#examplesList .column {
	float: left;
	margin: 0 20px 0 0;
}

#examplesList h3 {
	color: #f2f2f2;
	font-size: 1.2em;
	margin: 0 0 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	padding: 0 0 5px 0;
}

/* Demos Menu
 * --------------------------------------- */
#demosMenu {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
}

/*-------------------------------SECTION ONE--------------------------------*/
#sectionone {
	background-image: url(../images/dca-bg-1.png);
}

#dca-logo {
	width: 40%;
}

/*//-------------------------------SECTION TWO--------------------------------//*/
#sectiontwo {
	background-image: url(../images/dca-bg-2.png);
}

.process {
	height: 100%;
	width: auto;
	margin-left: 0%;
	background-size: cover;
}

.process .intro {
	width: 50%;
	position: relative;
	left: 11%;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	/*background-color: rgba(0,0,0,0.5);*/
}

/*//-------------------------------SECTION THREE--------------------------------//*/
#sectionthree {
	background-image: url(../images/dca-bg-3.png);
}

/*#sectionthree .slide .project {
	background-image: url(../images/dca-forecast.jpg);
}*/

#sectionthree #creationstory .project {
	background-image: url(../images/dca-apple.jpg);
	background-position: center 60%;
}

#sectionthree #rshp .project {
	background-image: url(../images/dca-rshp.jpg);
	background-position: center 60%;
}

#sectionthree #jpw-2 .project {
	background-image: url(../images/dca-jpw-2.jpg);
	background-position: center 60%;
}

#sectionthree #dedece .project {
	background-image: url(../images/dca-dedece.jpg);
	background-position: center 60%;
}

#sectionthree #grimshaw-2 .project {
	background-image: url(../images/dca-grimshaw.jpg);
	background-position: center 60%;
}

#sectionthree #architecturedesignforecast .project {
	background-image: url(../images/dca-forecast.jpg);
	background-position: center 60%;
}

@media (max-width: 767px){
	#sectionthree #slide0 .project {
		background-position: center top;
	}
}

#sectionthree #grimshaw .project {
	background-image: url(../images/dca-grimshaw.jpeg);
}
#sectionthree #popovbass .project {
	background-image: url(../images/dca-popovbass.jpg);
}
#sectionthree #jameshardie .project {
	background-image: url(../images/dca-jameshardie.jpg);
}
#sectionthree #agl .project {
	background-image: url(../images/dca-agl.jpg);
}

#sectionthree #qrc .project {
	background-image: url(../images/dca-qrc.jpg);
}
#sectionthree #the-con .project {
	background-image: url(../images/dca-the-con.jpg);
}


#sectionthree #slide1 .project {
	background-image: url(../images/dca-forecast.jpg);
}

#sectionthree #slide2 .project {
	background-image: url(../images/dca-eastsydney.jpg);
}

#sectionthree #barangaroo .project {
	background-image: url(../images/dca-barangaroo.jpg);
}

#sectionthree #sjb .project {
	background-image: url(../images/dca-sjb.jpg);
}

#sectionthree #slide5 .project {
	background-image: url(../images/dca-ptw.jpg);
}

#sectionthree #slide6 .project {
	background-image: url(../images/dca-unlimited.jpg);
}

#sectionthree #slide7 .project {
	background-image: url(../images/dca-rmit.jpg);
}

#sectionthree #slide8 .project {
	background-image: url(../images/dca-aged.jpg);
}

.project {
	height: 100%;
	width: auto;
	margin-left: 0%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.project::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 15vh;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.5032387955182073) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
}


.project .intro {
	width: 65%;
	position: relative;
	/*top: 45%;*/
	/*bottom: -90%;*/
	bottom: 10px;
	left: 11%;
	z-index: 2;
}
.section .credit {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	color: #c9c9c9;
	font-size: 11px;
	line-height: 0.5em;
	letter-spacing: 0.08em;
	text-align: right;
	padding: 10px 20px;
}
@media (max-width: 1024px){
	.section .credit {
		background-color: rgba(0,0,0,0.7);
		width: 100%;
		font-size: 9px;
		font-weight: lighter;
		max-width: 100%;
		max-height: 28px;
		padding: 0 10px;
	}
}



/*//-------------------------------SECTION FOUR--------------------------------//*/
#sectionfour {
	background-image: url(../images/dca-bg-4.png);
}

#sectionfour #slide0 .portrait {
	background-image: url(../images/dca-bradford-gorman.jpg);
}

#sectionfour #slide1 .portrait {
	background-image: url(../images/dca-marcus-piper.jpg);
}

#sectionfour #slide2 .portrait {
	background-image: url(../images/dca-damon-birrell.jpg);
}
#sectionfour #slide3 .portrait {
	background-image: url(../images/dca-paul-costantoura.jpg);
}

#sectionfour #slide4 .portrait {
	background-image: url(../images/dca-stephen-todd.jpg);
}


.portrait {
	height: 100%;
	width: auto;
	margin-left: 0%;
	background-size: cover;
}

.portrait .intro {
	width: 65%;
	position: relative;
	/*top: 45%;*/
	/*bottom: -90%;*/
	bottom: 10px;
	left: 11%;
	/* background-color: rgba(0,0,0,0.5);*/
	/*padding: 2em;*/
}

/*//-------------------------------SECTION FIVE--------------------------------//*/
#sectionfive {
	background-image: url(../images/dca-bg-5.png);
}

.participate {
	height: 100%;
	width: auto;
	margin-left: 0%;
	background-size: cover;
}

.participate .intro {
	width: 50%;
	position: relative;

	left: 11%;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	/*background-color: rgba(0,0,0,0.5);*/
}

/*//---------------------------ANIMATED ACCORDION--------------------------------//*/

.intro p {
	margin: 0 auto;
	font-size: 0.85em;
	line-height: 1.6em;
	font-weight: lighter;
	/*padding: 2em;*/
	/*margin-bottom:.5em;*/
}

.intro small {
	margin: 0 auto;
	font-size: 0.65em;
	line-height: 1.6em;
	font-weight: lighter;
}

/*//ACCORDIAN*/
.bg-cover {
	visibility: hidden;
	position: absolute;
	/*opacity: 0;*/
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);

}

/*#bg-cover.visible{
	visibility: visible;
	opacity: 100%;
	transition: all 1s ease-out;
}
#bg-cover.hidden{
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease-out;
}*/

.intro .accordion {
	background-color: transparent;
	color: #f9f9f9;
	cursor: pointer;
	padding: 0 0 18px 18px;
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: 200;
	/*width: 100%;*/
	text-align: left;
	border: none;
	outline: none;
	transition: 1.4s;
}

.intro .accordion {
	/*background-color:#d3d3d3;*/
	padding: 2px;
	height: auto;
	cursor: pointer;
	font-weight: bold;
}
.accordion{
	position: relative;
}
.accordion .title, .accordion .symbol {
	display: inline-block;
}

.accordion .title {
	max-width: 80%;
	vertical-align: middle;
	margin: auto 0;
	padding: 10px;
}

.accordion .symbol {
	position: absolute;
	font-size: 2em;
	font-weight: 200;
	padding-bottom: 5px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);

}

.intro .accordion:after {
	/*content: '\02795'; *//* Unicode character for "plus" sign (+) */
	/*content: '+';
	font-size: 1.3em;
	font-weight: lighter;
	line-height: 1em;
	color: #f9f9f9;
	float: right;
	margin-left: 10px;*/
}

.intro .accordion.active:after {
	/* content: "\2796";*/ /* Unicode character for "minus" sign (-) */
	/*content: '-';*/
}

.intro .accordion.active, .accordion:hover {
	/*background-color: #rgba(0,0,0,0.5);*/
}

.intro .panel {
	display: none;
	/*max-width: 65%;*/
	/* max-height: 80%;*/

	/*from original*/
	background-color: rgba(0, 0, 0, 0.5);
	/*max-height: 0;*/
	padding: 1.5em;
	overflow: scroll;
	/*opacity:0;*/
	transition: max-height 0.6s ease-out, opacity 0.9s ease-out;
	/*transition: padding 0.1s ease-out;*/
	bottom: 130%;
	position: absolute;

}

.intro div.active {
	opacity: 1;
}
.fp-scroller{
	height: 100%;
}
@media (max-width: 767px) {

	.fp-controlArrow.fp-prev {
		left: 2px;
		border-width: 38.5px 17px 38.5px 0;
	}

	.fp-controlArrow.fp-next {
		right: 2px;
		border-width: 38.5px 0 38.5px 17px;
	}

	.fp-controlArrow {
		bottom: 35px;
	}

	#dca-logo {
		width: 65%;
		margin-left: 15px;

	}

	.bg-cover.visible {
		visibility: visible;
		opacity: 1;
		transition: all 1s ease-out;
	}

	.bg-cover.hidden {
		visibility: hidden;
		opacity: 0;
		transition: all 1s ease-out;
	}

	.intro p {
		font-size: 14px;
	}

	.intro .accordion {
		padding: 0 0 5px 9px;
	}

	.intro .accordion:after {
		float: none;
	}

	.intro .panel {
		padding: 0.8em;
		background-color: transparent;
		margin-bottom: 20px;
	}
	.scroll-group {
		position: absolute;
		top: -30px;
		right: 20px;
		display: none;
	}

	.scroll-group a{
		margin-left: 0px;
		float: right;
	}
	.scroll-group .scroll-it-up{
		display: none;
	}
	.process {
		padding: 0 5%;
	}

	.process .intro {
		width: 100%;
		left: 0;
		/*background-color: rgba(0,0,0,0.5);*/
	}

	.project .intro, .portrait .intro {
		width: 90%;
		position: relative;
		/*top: 18%;*/
		bottom: 30px;
		left: 5%;
	}

	#sectionfour .portrait {
		background-position: 34%;
		position: relative;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.process .intro {
		width: 70%;
		position: relative;
		left: 11%;
		/* background-color: rgba(0,0,0,0.5); */
	}
	.fp-controlArrow {
		bottom: 35px;
		}

	.project .intro, .portrait .intro {
		bottom: 30px;
	}
}
