
/***********************************************
Copyright (c) 2007-2023, Wide Web. All Rights Reserved.
http://www.WideWeb.com.au
***********************************************/

html {
    height: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    min-height: 100%;
    height: 100%;
    font-family: sans-serif;
    color: #FFFFFF;
    background-color: #13203C;
    overflow: auto
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    background: #13203C url('../image/gem.png') center no-repeat;
    z-index: 9999;
    transition: opacity .5s ease-out 0s , margin-top 0s linear .6s;
    opacity: 1
}

#loading.complete, #loading.resolve {
    position: absolute;
    margin-top: -200%;
    opacity: 0
}

#noscript {
    position: absolute;
    top: 0;
    width: 100%;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #282828;
    background-color: #FFA500;
    background: -webkit-linear-gradient(#FFC864, #FFA500);
    background: -o-linear-gradient(#FFC864, #FFA500);
    background: -ms-linear-gradient(#FFC864, #FFA500);
    background: -moz-linear-gradient(#FFC864, #FFA500);
    background: linear-gradient(#FFC864, #FFA500);
    text-align: center;
    text-shadow: 1px 1px 0 #FDC051;
    box-shadow: inset 0 10px 10px #FFD68A, inset 0 -10px 10px #D68B00, 0px 0 5px #000;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    display: block;
    overflow: hidden;
    z-index: 9998
}

#noscript:after {
    content: "\26A0 Please enable JavaScript in your browser to utilise complete functionality of this website."
}

#noscript.enabled {
    display: none
}

#header {
    margin: 0;
    padding: 0
}

#header #logo {
    position: fixed;
    top: 0;
    left: 17px;
    margin: 25px 15px 25px 15px;
    padding: 0;
    width: 32vw;
    height: 100%;
    max-width: 370px;
    max-height: 40px;
    text-indent: -10000px;
    background-image: url('../image/propertiesbrisbaneqld.svg') , none;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    border-radius: 5px;
    display: block;
    transition: max-width .3s ease-in-out .1s , max-height .3s ease-in-out .1s;
    outline-style: none;
    z-index: 10000
}




#header #logo h1 {
    margin: 0;
    padding: 0
}


#header #logo::before {
    position: absolute;
    top: 38px;
    margin-left: 0px;
    height: 10px;
    width: 30vw;
    max-width: 370px;
    background-image: url('../image/city_country_coast.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    content: 'City, Country to Coast';
    text-indent: -100000px;
    transition: all 0.3s ease-out 0s;
    display: inherit;
}

#header #logo::after {
    position: absolute;
    top: -15px;
    left: 50vw;
    margin-left: -88px;
    height: 70px;
    width: 18vw;
    max-width: 100px;
    background-image: url('../image/gem.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    content: '';
    text-indent: -100000px;
    transition: all 0.3s ease-out 0s;
    display: inherit;
}

#loading ~ #header #logo::after, #loading ~ #header #logo::after {
	transform: scale(0,0);
	transform-origin: bottom center;
	transition: all 0.3s ease-out 1s;
	opacity: 0;
}
#loading.complete ~ #header #logo::after, #loading.resolve ~ #header #logo::after {
	transform: scale(1,1);
	opacity: 1;
}




#nav {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 90px;
    background-color: #001738;
    
    //background-image: url('../image/gem.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100px;       
    
    
    box-shadow: inset 0px -0.5px 0px rgba(255,255,255,0.7);
    display: inline-block;
    transition: height .3s ease-in-out .1s, background-color .3s ease-in-out 0s;
    z-index: 9997
}


#nav label[for="menu_toggle"] {
    position: absolute;
    top: -100%;
    right: 38px;
    width: 40px;
    height: 40px;
    display: block;
    transition: opacity .1s ease-in 0s , top 0s linear 1.5s;
    opacity: 0;
    outline-style: none;
    z-index: 9996;
    cursor: pointer
}



#nav input#menu_toggle + label[for="menu_toggle"] > svg > path {
	fill: none;
	fill-opacity: 0.7;
	stroke: #ffffff;
	stroke-width: 1px;
	stroke-linecap: butt;
	stroke-linejoin: miter;
	stroke-opacity: 1;
	transform: rotate(0) translateY(0px);
	transform-origin: center;
	transition: all .2s ease-in-out 0s;
}
#nav input#menu_toggle + label[for="menu_toggle"] > svg > path + path {
	transform: scale(1,1) translateY(0px);
	transition: all .2s ease-in-out 0.2s;
}
#nav input#menu_toggle + label[for="menu_toggle"] > svg > path + path + path {
	transform: rotate(0) translateY(0px);
	transition: all .2s ease-in-out 0s;
}
#nav input#menu_toggle:checked + label[for="menu_toggle"] > svg > path {
	transform: rotate(45deg) translateY(9.5px);
	transition: all .2s ease-in-out 0.2s;
}
#nav input#menu_toggle:checked + label[for="menu_toggle"] > svg > path + path {
	transform: scale(0,1) translateY(0px);
	transition: all .2s ease-in-out 0s;
}
#nav input#menu_toggle:checked + label[for="menu_toggle"] > svg > path + path + path {
	transform: rotate(-45deg) translateY(-9.5px);
	transition: all .2s ease-in-out 0.2s;
}













#nav input#menu_toggle[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 25px;
    opacity: 0
}

#nav ul {
    position: absolute;
    top: 0;
    right: 40px;
    margin: -10000px 0 0 0;
    padding: 10000px 0 0 0;
    list-style-type: none;
    transition: opacity .3s ease-in .7s;
    opacity: 1
}

#nav ul li {
    margin: 0;
    padding: 0;
    display: inline-block
}

#nav ul li:first-of-type {
    display: none
}
#nav ul li:last-of-type {
    display: none
}


#nav ul li a {
    margin: 30px 25px 0px 25px;
    padding: 0 0px;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: normal;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    display: inline-block;
    outline-style: none;

    transform: scale(1,0.8);
    transition: color .2s ease-in 0s , box-shadow .2s ease-in-out .0s 
}

#nav ul li a:hover {

}

n#av ul li a:active {
}

#nav ul li a.highlight {

    transition: color .2s ease-in 0s , box-shadow .2s ease-in-out 0s 
}

#nav ul li a.highlight:hover {
}

#nav ul li a.current {
    color: rgba(255,255,255,0.5);
    transition: color .2s ease-in 0s , box-shadow .2s ease-in-out .0s 
}


#nav ul li a.current:hover {
	
}




#nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: opacity 300ms, transform 300ms;
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

#nav ul li a.current::after, #nav ul li a:hover::after, #nav ul a:focus::after {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#nav ul:hover li a.current::after {
	transform: translate3d(0, 37px, 0);
	opacity: 0;
	
}









@media(max-width:1000px ) {
    #header #logo {
        width: 32vw;
    }
	#header #logo::after {
		left: 50vw;
	}
    #nav {
        height: 90px 
    }

    #nav label[for="menu_toggle"] {
        top: 25px;
        transition: opacity .3s ease-out .7s , top 0s linear 0s;
        opacity: 1
    }

    #nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: -150%;
        padding: 130px 0 42px 0;
        background-color: #13203C;
        box-shadow: inset 0px -0.5px 0px rgba(255,255,255,0);
        transition: padding .3s ease-in-out 0s , margin-top .2s ease-in .1s , opacity 0s linear .3s, box-shadow 0s linear .0s;
        opacity: 0
    }

    #nav.active ul, #nav input#menu_toggle[type="checkbox"]:checked ~ ul {
        margin-top: 0;
        box-shadow: inset 0px -0.5px 0px rgba(255,255,255,0.7);
        transition: padding .3s ease-in-out 0s , margin-top .3s ease-out 0s , opacity 0s linear 0s, box-shadow 0s linear .3s;
        opacity: 1
    }

    #nav ul li {
        margin: 0 33px 0 33px;
        padding: 10px 0;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: rgba(255,255,255,0);
        transition: opacity .1s ease-out 0s;
        display: block;
        opacity: 0
    }




    
#nav ul li:last-of-type {
    display: block;
}

    #nav.active ul li, #nav input#menu_toggle[type="checkbox"]:checked ~ ul li {
        transition: opacity .3s ease-in-out .3s;
        opacity: 1
    }

    #nav ul li a {
        margin: 0;
        padding: 10px 0;
        font-size: 18px;
        font-weight: 300;
        line-height: 20px;
        transition: font-size .3s ease-in-out 0s , padding .3s ease-in-out 0s , color .2s ease-in 0s , box-shadow .2s ease-in-out .2s 
    }

    #nav ul li a.highlight, #nav ul li a.current {
        box-shadow: none
    }
}

@media(max-width:500px ) {
    #header #logo {
        width: 42vw;
    }
	#header #logo::after {
		left: 70vw;
	}
    #nav ul {
        padding: 100px 0 42px 0
    }

    #nav ul li a {
        padding: 5px 0;
        font-size: 16px 
    }
}

#index, #about, #buy, #featured, #sold, #contact {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 104%;
    text-align: center;
    display: block;
    clear: both
}

#index div.container {
    margin-top: 160px;
    padding: 0;
    width: 100%;
    vertical-align: text-top;
    text-align: center;
    display: inline-block;
    clear: both
}
#about div.container, #buy div.container, #featured div.container, #sold div.container, #contact div.container {
    margin-top: 90px;
    padding: 0;
    width: 100%;
    vertical-align: text-top;
    text-align: center;
    display: inline-block;
    clear: both
}

#index div.container img, #about div.container img, #buy div.container img, #featured div.container img, #sold div.container img, #contact div.container img {
    transition: opacity 1s linear 0s;
    opacity: 1
}

#index.cue div.container img, #about.cue div.container img, #buy.cue div.container img, #featured.cue div.container img, #sold.cue div.container img, #contact.cue div.container img {
    opacity: 1
}

#index.action div.container img, #about.action div.container img, #buy.action div.container img, #featured.action div.container img, #sold.action div.container img, #contact.action div.container img, #index.stoppage div.container img, #about.stoppage div.container img, #buy.stoppage div.container img, #featured.stoppage div.container img, #sold.stoppage div.container img, #contact.stoppage div.container img {
    opacity: 1
}





div h2 {
    position: relative;
    margin: 10px 32px;
    padding: 0;
    font-size: 16px;
    font-weight: 200;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0;
    display: block;
    transition: opacity 1s linear 1s;
    opacity: 1
}

div.cue h2 {
    opacity: 1
}

div.action h2, div.stoppage h2 {
    opacity: 0.5
}

div h3 {
    position: relative;
    margin: 20px 50px 30px 50px;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    transition: opacity 1s linear 0s;
    opacity: 1
}

div.cue h3 {
    opacity: 1
}

div.action h3, div.stoppage h3 {
    opacity: 1
}

div p {
    transition: opacity 1s linear 0s;
    opacity: 1
}

div.cue p {
    opacity: 1
}

div.action p, div.stoppage p {
    opacity: 1
}

#index {
	height: 104vh;
    min-height: 500px;
    color: #FFF;
    background-color: transparent;
    background-size: cover;
}


#index #index_video {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 104vh;
    min-height: 500px;
    object-fit: cover;
    object-position: top;
    background-color: #13203C;
    display: block;
}






#index div.lead {
    position: relative;
    margin-top: 12vh;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    background-color: transparent;
    display: block;
    transition: all .3s ease-in-out 0s
}


#index h3 {
    margin: 0;
    padding: 10vh 20px 10px 20px;
   font-size: calc(14px + 1.7vw);
    font-weight: lighter;
    text-align: center;
	text-transform: uppercase;


    //color: #F8F6ED;
    //text-shadow: -0px -0px 0px #ffffff;
    color: rgba(255,255,255,0.5);
    
    background-color: transparent;
    display: block;
    transform: scale(1,0.8);
    transition: font-size .3s ease-in-out 0s 
}

#loading ~ #index h3 {
	transform: scale(1,1) translate(0px,280px);
	transform-origin: bottom center;
	transition: all 0.6s ease-out 1.4s;
	opacity: 0;
}
#loading.complete ~ #index h3, #loading.resolve ~ #index h3 {
	transform: scale(1,1) translate(0px,0px);
	opacity: 1;
}



#index div.weather {
    position: relative;
    margin-top: 20vh;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    font-size: 16px;
    text-align: center;
    background-color: transparent;
    display: block;
    transition: all .3s ease-in-out 0s
}



@media(max-width:800px ) {
    #index {
        background-position: 30% top
    }

    #index div.lead {
        margin-top: 12vh;
    }

    #index h3 {
        padding: 10px 30px;
        font-size: 4vw 
    }

}

@media(max-height:800px ) and (max-width:800px ) {
    #index a.next {
        display: none
    }
}

@media(max-width:600px ) {
    #index h3 {
        padding: 10px 20px;
        font-size: 4vw; 
    }

}

@media(max-height:600px ) {
    #index div.lead {
        margin-top: 0vh;
    }
}

#about {
    color: #000;
    background-color: #FFFFFF;

    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) 
}


#about div.container {
	max-width: 1920px;
}


#about h2 {
	padding-top: 30px;
	font-size: calc(18px + 0.25vw);
	color: #13203C;
    opacity: 1;
    text-transform: uppercase;
    text-shadow: none;
}

#about.action h2, #about.stoppage h2 {
    transition: opacity 1s linear 3s;
    opacity: 1
}





#about a {
    color: #FFF;
    font-size: 16px;
    text-decoration: none
}
#overview {
	color: #13203C;
	background-color: #FFFFFF;
	text-align: center;
}
#overview h3 {
    margin: 10px 32px;
    padding: 20px 0 10px 0;
}
#overview img {
	margin: 0px; width: 50%; max-width: 900px; height: auto; vertical-align: top; float: left;
}

@media(max-width:1200px ) {
#overview img {
	width: 100%; float: none;
}
}

.text_box {
    margin: 10px 20px;
    padding: 0 30px;
    color: #13203C;
    line-height: 20px;
    width: auto;
    max-width: 500px;
    text-align: left;
	display: inline-block;
}
@media(max-width:500px ) {
.text_box {
	padding: 0 10px;
}
}


#about a {
    margin: 10px 0px 0px 0px;
    padding: 0 10px;
    min-width: 38px;
    min-height: 40px;
    line-height: 40px;
    color: #13203C;
    background-color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0px;
    transform: scale(1,0.8);
    box-shadow: inset 0 0 0 1px #13203C;
    display: inline-block;
}


#divisions {
    margin: 0px auto;
    padding: 30px 0px 50px 0px;
    background-color: #FFFFFF;
}
#divisions h3 {
	font-size: calc(18px + 0.25vw);
    color: #13203C;
    text-transform: uppercase;
    text-align: left;
}
#divisions_list {
    margin: 0px auto;
    padding: 0;
    color: #13203C;
    background-color: #FFFFFF;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}
#divisions_list li {
    margin: 10px 0;
    padding: 10px 0;
    width: calc(80vw / 3);
	max-width: 600px;
    height: auto;
    font-size: calc(10px + 0.25vw);
    text-align: left;
    line-height: 25px;
    color: #13203C;
    vertical-align: top;
    transition: opacity .3s ease 0s;
    display: inline-block;
}
#divisions_list li h4 {
    margin: 0 0 10px 0;
    padding: 0 30px;
    font-size: calc(14px + 0.25vw);
    font-weight: 200;
    text-align: left;
    text-transform: uppercase;
    color: #13203C;
    text-shadow: none;
    transition: opacity .3s ease 0s 
}
#divisions_list li p {
    margin: 0 auto;
    padding: 0 30px;
}
@media(max-width:950px ) {
#divisions_list li {
    width: 80vw;
    display: block;
}

}
@media(max-width:500px ) {
	#divisions_list li h4 {
	     padding: 0 20px;
	}
	#divisions_list li p {
	    padding: 0 20px;
	}
}








#oliver_freeman {
    margin: 0px;
    padding: 0px 0px 40px 0px;
    color: #FFFFFF;
    background-color: #13203C;
}
#oliver_freeman > em {
	position: relative;
    margin: 20px;
    padding: 30px;
    width: 60%;
	font-family: serif;
	font-size: calc(20px + 0.70vw );
	color: #FFFFFF;
	text-align: left;
	display: block;
	z-index: 512;
}
#oliver_freeman h3 {
	font-size: calc(18px + 0.25vw);
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: left;
}
#oliver_freeman img {
	margin: -270px 0px 0px 0px; width: 50%; max-width: 900px; height: auto; vertical-align: top; float: right; z-index: 510;
}
#oliver_freeman .text_box {
    color: #FFFFFF;
}
@media(max-width:1200px ) {
#oliver_freeman > em {
	width: auto;
}
#oliver_freeman img {
	margin: -70px 0px 0px 0px;
	width: 100%; float: none;
}
}



#oliver_freeman a {
    margin: 10px 0px 0px 0px;
    padding: 0 10px;
    min-width: 38px;
    min-height: 40px;
    line-height: 40px;
    color: #FFFFFF;
    background-color: #13203C;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0px;
    transform: scale(1,0.8);
    box-shadow: inset 0 0 0 1px #FFFFFF;
    display: inline-block;
}



















#contact {
    background-color: #13203C;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center top
}

#contact h2 {
    margin-bottom: 30px;
    font-family: sans-serif;
    font-size: calc(18px + 0.25vw);
}

#contact.action h2, #contact.stoppage h2 {
    opacity: 1
}

#contact a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none
}

#contact form {
    margin: 25px 2vw 40px 2vw;
    padding: 0;
    width: 96vw;
    max-width: 450px;
    text-align: left;
    display: inline-block;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}



#contact #form_result_message {
    margin: 20px 2vw;
    padding: 0;
    width: 96vw;
    max-width: 450px;
    text-align: left;
    background-color: #13203C;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: inline-block;
    opacity: 1
}

#contact #form_result_message h3 {
    margin: 0;
    padding: 20px 
}

#contact #form_result_message p {
    margin: 0;
    padding: 20px 
}

#contact_enquiry_form {
    margin: 0 auto 0 auto;
    padding: 0;
    width: 100%;
    max-width: 680px;
    text-align: left;
    opacity: 1
}

#contact_enquiry_form div.guidance {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    max-width: 680px;
    background-color: #001738;
    border: 0;
    border-radius: 0px;
    box-shadow: inset 50px 100px 100px -50px rgba(0, 0, 0, 0.1);
    display: inline-block
}

#contact_enquiry_form div.guidance h4 {
    margin: 0;
    padding: 20px 0 0 20px;
    color: #FFF
}

#contact_enquiry_form div.guidance ul {
    margin: 20px;
    padding: 0;
    list-style: none;
    color: rgba(0, 0, 0, 1);
    background-color: transparent;
    border-radius: 7px;
    display: block
}

#contact_enquiry_form div.guidance ul li {
    margin: 10px 0;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 1);
    background-color: #13203C;
    border-radius: 0px 
}

#contact_enquiry_form div.visible {
    height: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    border: 0 solid transparent;
    transition: overflow 0s ease-in-out .4s , opacity .3s ease-in-out 0s 
}

#contact_enquiry_form div.hidden {
    height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border: 0 solid transparent;
    transition: overflow 0s ease-in-out .4s , opacity .3s ease-in-out 0s 
}

#contact_enquiry_form fieldset.section {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    max-width: 680px;
    background-color: rgba(243, 189, 54, 1);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    box-shadow: 0 0 0 10px rgba(243, 189, 54, 1) 
}

#contact_enquiry_form fieldset.section > legend {
    margin: 0 0 10px 0;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    text-indent: 20px;
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: none;
    float: left
}

#contact_enquiry_form fieldset.main {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    max-width: 680px;
    background-color: #13203C;
    border: 0;
    border-radius: 0;
}

#contact_enquiry_form fieldset.main legend {
    margin: 0 0 10px 0;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    text-indent: 20px;
    color: #FFF;
    background-color: transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
    float: left
}

#contact_enquiry_form fieldset.main div {
    padding: 8px 20px;
    color: #FFF;
    
}

#contact_enquiry_form fieldset.main div:first-of-type {
   
}

#contact_enquiry_form fieldset.main div:last-of-type {
    
}

#contact_enquiry_form fieldset.main hr {
    margin: 0;
    padding: 0;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 0
}

#contact_enquiry_form select {
    margin: 0;
    padding: 10px 0 10px 10px;
    width: 100%;
    max-width: 100px;
    font-size: 16px;
    color: #000;
    background-color: #FFF;
    background-image: url('../image/select_box.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    text-indent: 0;
    text-align: left;
    border-radius: 0px;
    border: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

#contact_enquiry_form select::-ms-expand {
    display: none
}

#contact_enquiry_form textarea {
    margin: 0;
    padding: 10px 2%;
    width: 100%;
    height: 160px;
    font-size: 16px;
    font-family: sans-serif;
    color: #000;
    background-color: #FFF;
    text-indent: 0;
    border-radius: 0px;
    border: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
    -webkit-appearance: none
}

#contact_enquiry_form textarea + label {
    position: absolute;
    left: -10000px;
    padding: 0 10px;
    width: 130px;
    text-align: left;
    opacity: 0;
    display: block;
    transition: left 0s 0s , opacity .3s ease-in-out .3s 
}

#contact_enquiry_form textarea + label {
    position: absolute;
    left: -10000px;
    padding: 0 10px;
    width: 130px;
    font-size: 16px;
    text-align: left;
    opacity: 0;
    display: block;
    transition: left 0s 0s , opacity .3s ease-in-out .3s 
}

#contact_enquiry_form textarea:focus + label {
    position: absolute;
    margin: -206px 0;
    padding: 8px 12px;
    width: auto;
    left: auto;
    font-size: 16px;
    color: #FFFFFF;
    background: #000000;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3) , 0px -1px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    opacity: 1;
    display: block;

    transition: left 0s 0s , opacity .3s ease-in-out .3s 
}

#contact_enquiry_form textarea:focus + label:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -1px;
    margin-left: -10px;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #000000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent
}

#contact_enquiry_form input[type="text"], #contact_enquiry_form input[type="email"], #contact_enquiry_form input[type="tel"], #contact_enquiry_form input[type="number"] {
    margin: 10px 0;
    padding: 10px 0 10px 0;
    font-size: 16px;
    color: #000;
    background-color: #FFF;
    text-indent: 10px;
    border-radius: 0px;
    border: 1px solid transparent;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
    -webkit-appearance: none
}

#contact_enquiry_form input[type="text"], #contact_enquiry_form input[type="email"] {
    width: 100%
}

#contact_enquiry_form select#telephone_type {
    margin: 10px 14px 10px 0
}

#contact_enquiry_form input[type="tel"] {
    width: 100%;
    max-width: 240px 
}

#contact_enquiry_form input#first_name, #contact_enquiry_form input#last_name {
    width: 100%;
    max-width: 270px 
}

#contact_enquiry_form input#first_name + label + input#last_name {
    margin-left: 15px 
}

#contact_enquiry_form input#suburb_address {
    width: 100%;
    max-width: 340px 
}

#contact_enquiry_form input#postcode_address {
    width: 100%;
    max-width: 150px 
}

#contact_enquiry_form input[type="text"] + label, #contact_enquiry_form input[type="text"] + label, #contact_enquiry_form input[type="email"] + label, #contact_enquiry_form input[type="tel"] + label, #contact_enquiry_form input[type="number"] + label {
    position: absolute;
    left: -10000px;
    padding: 0 10px;
    width: 130px;
    font-size: 16px;
    text-align: left;
    float: left;
    opacity: 0;
    display: block;
    transition: left 0s 0s , opacity .3s ease-in-out .3s 
}

#contact_enquiry_form input[type="text"]:focus + label, #contact_enquiry_form input[type="email"]:focus + label, #contact_enquiry_form input[type="tel"]:focus + label, #contact_enquiry_form input[type="number"]:focus + label {
    position: absolute;
    margin: -90px 0;
    padding: 8px 12px;
    width: auto;
    left: auto;
    font-size: 16px;
    color: #FFFFFF;
    background: #000000;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3) , 0px -1px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    opacity: 1;
    display: block;
    transition: left 0s 0s , opacity .3s ease-in-out .3s 
}

#contact_enquiry_form input[type="text"]:focus + label:after, #contact_enquiry_form input[type="email"]:focus + label:after, #contact_enquiry_form input[type="tel"]:focus + label:after, #contact_enquiry_form input[type="number"]:focus + label:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -1px;
    margin-left: -10px;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #000000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent
}

#contact_enquiry_form input::-ms-clear {
    display: none
}



#contact_enquiry_form ::-webkit-input-placeholder {
    color: #222;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form :-moz-placeholder {
    color: #222;
    opacity: 1;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form ::-moz-placeholder {
    color: #222;
    opacity: 1;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form :-ms-input-placeholder {
    color: #222;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form input:required::-webkit-input-placeholder {
    color: #222;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form input:required:-moz-placeholder {
    color: #222;
    opacity: 1;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form input:required::-moz-placeholder {
    color: #222;
    opacity: 1;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form input:required:-ms-input-placeholder {
    color: #222;
    transition: color .3s ease-in-out 0s 
}

#contact_enquiry_form input:focus::-webkit-input-placeholder {
    color: transparent
}

#contact_enquiry_form input:focus:-moz-placeholder {
    color: transparent
}

#contact_enquiry_form input:focus::-moz-placeholder {
    color: transparent
}

#contact_enquiry_form input:focus:-ms-input-placeholder {
    color: transparent
}

#contact_enquiry_form textarea:focus::-webkit-input-placeholder {
    color: transparent
}

#contact_enquiry_form textarea:focus:-moz-placeholder {
    color: transparent
}

#contact_enquiry_form textarea:focus::-moz-placeholder {
    color: transparent
}

#contact_enquiry_form textarea:focus:-ms-input-placeholder {
    color: transparent
}

#contact_enquiry_form div > label + span {
    vertical-align: text-top
}

#contact_enquiry_form div > label {
    width: 100%;
    max-width: 276px;
    padding: 8px 8px 18px 0;
    display: inline-block
}

#contact_enquiry_form div > input[type="file"] + span.information {
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
    display: block
}

#contact_enquiry_form div > input[type="file"] + span.error {
    padding: 10px 15px;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(243, 189, 54, 1);
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 1);
    display: block
}

#contact_enquiry_form input[required] {
    background-image: url('../image/required.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center
}

#contact_enquiry_form input[required]:focus:valid {
    background-image: url('../image/blue_tick.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center
}

#contact_enquiry_form input:focus:valid {
    background-image: url('../image/blue_tick.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center
}

#contact_enquiry_form input[type="number"], #contact_enquiry_form input[type="number"]::-webkit-inner-spin-button, #contact_enquiry_form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

#contact_enquiry_form fieldset div span.telephone_number {
    display: inline-block
}

#contact_enquiry_form input[type="submit"] {
margin: 10px 0px 0px 0px;
    padding: 0 10px;
    min-width: 38px;
    min-height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #13203C;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0px;
    transform: scale(1,0.8);
    box-shadow: inset 0 0 0 1px #FFFFFF;
    display: inline-block;
    
    opacity: 0.5;

    border: 0;

    outline: none;
    -webkit-appearance: none;
    transition: background-color .3s ease-in-out .3s;
    cursor: pointer
}

#contact_enquiry_form:valid input[type="submit"] {
    opacity: 1;
}

#contact_enquiry_form input[type="submit"]:focus {

}

#contact_enquiry_form:valid input[type="submit"]:focus, #contact_enquiry_form input[type="submit"].process {
    opacity: 0.5;
}

#contact.cue #brisbane_office {
    opacity: 1
}

#contact.action #brisbane_office, #contact.stoppage #brisbane_office {
    transition: opacity .5s ease-in-out .2s;
    opacity: 1
}

#brisbane_office {
    margin: 0 2vw;
    padding: 0 20px;
    color: initial;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    vertical-align: top;
    display: inline-block
}

#brisbane_office h4 {
    font-weight: lighter;
    color: #FFF;
    text-align: left
}

#brisbane_office dl {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 24px;
    max-width: 330px;
    text-align: justify;
    text-align-last: justify;
    vertical-align: text-top;
    display: inline-block
}

#brisbane_office dl dt {
    margin: 5px 0;
    padding: 0;
    width: 100%;
    max-width: 120px;
    color: #BFBFBF;
    text-align: left;
    text-align-last: left;
    vertical-align: text-top;
    display: inline-block
}

#brisbane_office dl dd {
    margin: 5px 0;
    padding: 0;
    width: 100%;
    max-width: 200px;
    color: #FFF;
    text-align: left;
    text-align-last: left;
    vertical-align: text-top;
    display: inline-block
}

#brisbane_office dl dt + dd + dt + dd + dt + dd {
    font-size: smaller
}

#brisbane_office dl dt + dd {
    padding-bottom: 30px 
}

#brisbane_office dl dd a {
    font-size: medium;
    color: #FFF
}

#brisbane_office dl dd em {
    font-size: x-small;
    font-style: normal;
    line-height: normal;
    vertical-align: super;
    color: #BFBFBF
}

#brisbane_office dl dd abbr.smcap {
    text-decoration: none;
    text-transform: lowercase;
    font-variant: small-caps
}

abbr {
    text-decoration: none
}

#footer {
    margin: 0;
    padding: 20px 0;
    width: 100%;
    background-color: #001738;
    box-shadow: inset 0 1px 0px 0px rgba(255,255,255,0.3);
    z-index: 9995;
    clear: both
}

#footer_map {
    margin: 0 auto;
    padding: 40px 14px;
    max-width: 1446px;
    display: block;
}
#footer_map ul.nav_map {
    margin: 0 auto;
    padding: 0;
    white-space: nowrap;
    list-style-type: none;
}
#footer_map ul.nav_map li {
    margin: 0;
    padding: 0;
    width: 246px;
    overflow: hidden;
    float: left;
    display: block;
}
#footer_map ul.nav_map li a {
    margin: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: normal;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    white-space: pre-wrap;
    display: block;
    transform: scale(1,0.8);
    transition: color .2s ease-in 0s;
}
#footer_map ul.nav_map > li > a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 9.5px;
	text-decoration-color: rgba(255,255,255,0.5);
}
#footer_map ul.nav_map > li:first-of-type {
    margin: 0;
    padding: 0;
    width: 70vw;
    min-width: 246px;
	max-width: 452px;
    height: 80px;
    overflow: hidden;
    float: left;
    display: block;
}
#footer_map ul.nav_map > li:first-of-type a[href$="#index"] {
    background-image: url('../image/propertiesbrisbaneqld.svg') , none;
    background-repeat: no-repeat;
    background-position: 0px 3px;
    background-size: contain;
    text-indent: -10000px;
}
@media (max-width: 1220px) {
	#footer_map ul.nav_map > li:first-of-type {
		width: 23vw;
		min-width: auto;
	}
	#footer_map ul.nav_map > li:first-of-type a[href$="#index"] {
	    background-position: 0px 3px;
	}
}
@media (max-width: 1000px) {
	#footer_map ul.nav_map > li:first-of-type {
		width: 70vw;
    	float: none;
	}
}

#footer_map ul.nav_map li ul {
    margin-top: 10px;
    padding: 0;
}
#footer_map ul.nav_map li li:first-child {
    display: inline-block;
}
#footer_map ul.nav_map li li {
    margin: 0;
    padding: 0;
    text-indent: 0;
    height: 24px;
}
#footer_map ul.nav_map li li a {
    margin: 5px 20px;
    max-width: 206px;
    width: auto !important;
    font: 12px arial, helvetica, verdana, sans-serif;
    color: #FFF;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    transition: color .2s ease-in 0s;
}


#footer_map ul.external {
    margin: 0px !important;
    padding: 5px 15px !important;
    width: auto !important;
    height: auto !important;
    display: block;
}
#footer_map ul.external > li {
    margin: 5px !important;
    padding: 0px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block;
}
#footer_map ul.external > li > a {
    margin: 3px 3px 3px 0 !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    text-indent: -10000px;
    background-repeat: no-repeat;
    background-position: center center !important;
    background-size: cover !important;
    border-radius: 4px !important;
    box-shadow: inset 0 0px 0px 1px rgba(255,255,255,0.2);
    transform: scale(1,1);
    display: block !important;
}
#footer_map ul.external > li > a[href*="facebook"] {
    background-image: url('../image/fb_icon.svg');
}
#footer_map ul.external > li > a[href*="facebook"]:hover {
	background-color:#38539B;
}
#footer_map ul.external > li > a[href*="instagram"] {
    background-image: url('../image/ig_icon.svg');
}
#footer_map ul.external > li > a[href*="instagram"]:hover {
	background-color:#F2672F;
}
#footer_map ul.external > li > a[href*="youtube"] {
    background-image: url('../image/yt_icon.svg');
}
#footer_map ul li a[href*="youtube"]:hover {
	background-color:#D62A26;
}

#footer ul#notice {
    margin: 0px 32px;
    padding: 80px 0;
    list-style-type: none;
	display: block;
	clear: both;
}

#footer ul#notice li {
    margin: 0;
    padding: 5px 0;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    vertical-align: text-top;
    display: block;
	opacity: 0.7;
}
#footer ul#notice li a {
    margin: 0;
    padding: 5px 0;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    vertical-align: text-top;
    opacity: 1;
}
#footer ul#notice li a[href="https://www.wideweb.com.au/"] {
    opacity: 0.5;
}
#footer ul#notice li a:hover {
	color: #FFFFFF;
    text-decoration: underline;
    opacity: 1;
}

#footer p {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 0;
    text-align: center;
    clear: both;
}


#footer a img {
    border: 0
}



/**********************************************/
