@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  max-width: 2200px;
  box-sizing: border-box;
}
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}
@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
:root {
  --main-background-image: url("../assets/images/background.png");
  box-sizing: border-box;
  --primary: #e70146;
  --hover-color: #fdd052;
  --dark: #1c2022;
  --light: #fff;
  --bars-light: hsla(342, 99%, 45%, 0.95);
  --bars-medium: hsla(342, 100%, 41%, 0.884);
  --header-bg: var(--primary);
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  position: fixed;
  width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  top: 0;
  width: 80%;
  max-width: 1800px;
}
.nav-container {
  display: flex;
  width: fit-content;
}
.nav-container a {
  text-decoration: none;
}
img#logo {
  width: 60px;
  height: 67px;
}
svg {
  margin-bottom: -3px;
}
.submenu svg {
  margin-bottom: -4px;
}
h3 svg {
  margin-bottom: -5px;
}
svg {
  fill: currentColor;
}
.nav-subcontainer {
  display: flex;
  text-align: left;
  width: fit-content;
}
.nav-site-container {
  display: block;
}
.nav-site-title {
  color: black;
  font-family: "Averia Serif Libre", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: -4px;
  font-size: 36px;
}
.nav-site-tag {
  color: black;
  letter-spacing: -2.4px;
  font-family: "Averia Serif Libre", "Trebuchet MS", sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin-top: -8px;
  white-space: nowrap;
}
.menu {
  display: flex;
  flex-direction: row;
}
.menu li {
  list-style: none;
  white-space: nowrap;
}
.menu li a {
  display: block;
  text-decoration: none;
  color: var(--dark);
  padding: 0.8em;
  font-size: 18px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 600;
}
#active-underline {
  border-bottom: 2px solid hsla(342, 100%, 41%, 0.884);
  padding: 6px 8px;
  margin: -6px -8px;
  border-top: 2px solid hsla(342, 100%, 41%, 0.884);
}
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  left: 0;
  background-color: var(--dark);
  white-space: nowrap;
  padding: 0.5em 0;
  width: fit-content;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}
.submenu:hover {
  background: var(--dark);
}
.submenu > li > a {
  padding: 0.8em 1.5em;
  color: var(--light);
  font-size: 16px;
}
.menu > li:hover > a,
.submenu > li:hover > a {
  background-color: hsla(0, 0%, 100%, 0.05);
  color: var(--hover-color);
}
.menu > li:hover > a {
  background-color: hsla(0, 0%, 0%, 0.95);
}
.arrow {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  border-left: 0.15em solid currentColor;
  border-bottom: 0.15em solid currentColor;
  transform: rotate(-45deg);
  margin-top: -0.4em;
  margin-left: 0.3em;
  transition: transform 200ms ease-in-out;
}
.menu > li:hover > a + .submenu,
.submenu > li:hover > a + .submenu {
  opacity: 1;
  transform: scaleY(1);
}
.menu > li:hover > a > .arrow,
.submenu > li:hover > a > .arrow {
  transform: rotate(315deg);
}
.hamburger-container {
  display: none;
  cursor: pointer;
  float: right;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 3px solid rgb(255, 0, 0, 0);
  border-radius: 10px;
  padding: 0px 1px;
  transition: 0.4s;
}
.hamburger-container div {
  width: 35px;
  height: 5px;
  background-color: #333;
  transition: 0.4s;
}
.hamburger-bar1 {
  margin: 6px 0;
}
.hamburger-bar2 {
  margin-top: 6px;
  margin-bottom: -5px;
}
.hamburger-bar3 {
  margin-top: -5px;
  margin-bottom: 6px;
}
.hamburger-bar4 {
  margin: 6px 0;
}
.toggle .hamburger-bar1 {
  -webkit-transform: rotate(-45deg) translate(-8px, 8px);
  transform: rotate(-45deg) translate(-8px, 8px);
  background-color: var(--bars-medium);
}
.toggle .hamburger-bar2 {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
  background-color: var(--bars-medium);
}
.toggle .hamburger-bar3 {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: var(--bars-medium);
}
.toggle .hamburger-bar4 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
  background-color: var(--bars-medium);
}
.toggle .hamburger-container {
  border: 2px solid var(--bars-medium);
  padding: 0 2px;
}
.toggle .hamburger-container div {
  width: 35px;
}
.toggle .menu {
  opacity: 1;
  transform: scaleY(1);
  transform-origin: top center;
}
@media only screen and (max-width: 64em) {
  .hamburger-container {
    display: inline-block;
  }
  .menu {
    flex-flow: column;
    position: absolute;
    background: rgba(235, 223, 200, 0.8);
    top: 1em;
    left: 5vw;
    right: 5vw;
    border-radius: 10px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
  }
  .toggle .menu-container {
    display: flex;
    position: absolute;
    background-image: var(--main-background-image);
    background-attachment: fixed;
    top: 67px;
    left: 0;
    right: 0;
    height: 100vh;
  }
  .submenu {
    top: 0;
    padding-left: 0.8em;
    box-shadow: inset 1em 0 0 0 black,
      inset 1.05em 0 0 0 hsla(342, 99%, 45%, 0.95);
    width: auto;
  }
  .menu > li > a + .submenu,
  .submenu > li > a + .submenu {
    position: relative;
  }
  .menu > li > a + .submenu,
  .submenu > li > a + .submenu {
    opacity: 1;
    transform: scaleY(1);
  }
  .submenu > li > a {
    padding: 0.8em 0.75em;
    font-size: 16px;
  }
}
.footer-section-1-content,
.footer-section-2-content,
.footer-section-3-content {
  text-align: center;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-size: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}
.footer-section-3-content span {
  display: none;
}
.footer-section-3-content:after {
  content: "Disclaimer: While every effort has been made to ensure the accuracy of information in this website, no guarantee is given nor responsibility taken for any errors or omissions in respect of or as a consequence of any information contained herein. Any information is provided for general use and is not intended to serve as nor constitute legal advice. Always obtain expert legal advice in relation to your specific circumstances.";
}
.footer-section-1 {
  padding-top: 5px;
}
.footer-section-2-content,
.footer-section-3-content {
  font-size: 8px;
}
footer {
  display: block;
  align-items: center;
  justify-content: center;
  border: var(--border-footer);
  padding: 5px 20px;
}
h6 {
  pointer-events: none;
}
h6 > a {
  text-decoration: none;
  color: inherit;
}
.footer-section-1 {
  display: inline-block center;
  text-align: center;
  width: 100%;
}
.footer-section-2 {
  display: inline-block center;
  text-align: center;
  width: 100%;
}
.footer-section-3 {
  display: inline-block center;
  text-align: center;
  width: 100%;
}
.main-all-sections {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: var(--main-background-image);
  background-attachment: fixed;
  margin-top: 67px;
  padding-top: 20px;
  padding-bottom: 40px;
  width: 100%;
}
.main-all-sections-min {
  display: inline-flex;
  justify-content: center;
  max-width: 1200px;
  height: 100%;
}
.main-section-1-inline-flex {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: justify;
  width: 95%;
  height: 100%;
}
.main-container-full {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: fit-content;
}
.main-container-half {
  display: inline-flex;
  width: 49.9%;
  min-width: 300px;
}
.main-container-third {
  display: inline-flex;
  width: 33.33333333333%;
  min-width: 300px;
}
.main-container-sub {
  width: 100%;
  box-shadow: 0 4px 18px 12px rgba(0, 0, 0, 0.4);
  padding: 5px 15px 15px 15px;
  margin: 10px;
  background: rgba(235, 223, 200, 0.8);
  border-radius: 10px;
  color: black;
}
.main-container-sub h3 {
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.6px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.main-container-sub h4 {
  text-align: center;
  font-size: 18px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.6px;
  margin-bottom: 0px;
}
.main-container-sub h5 {
  font-size: 18px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.5;
  opacity: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.main-container-sub p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.5;
  opacity: 1;
  padding-bottom: 10px;
}
.main-container-sub:hover h4 {
  color: royalblue;
  margin-top: -3px;
  margin-bottom: 3px;
  margin-right: -3px;
  margin-left: 3px;
  transition: all 0.3s;
}
.button {
  background-color: #2366d1;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: 24px;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.3);
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 15px 15px;
  margin: -15px -15px;
}
.button:hover {
  opacity: 0.8;
}
#button-container .main-container-sub {
  padding: 15px 15px 15px 15px;
}
#button-container .main-container-sub:hover {
  margin-top: 7px;
  margin-bottom: 13px;
  margin-right: 7px;
  margin-left: 13px;
  transition: all 0.3s;
}
.word-emphasis {
  font-weight: bold;
  font-style: normal;
}
.bio,
#left {
  text-align: left;
}
.about-container-profile {
  display: block;
  float: left;
  width: 200px;
  margin-right: 30px;
}
.about-container-profile-sub {
  width: 100%;
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.4);
  padding: 5px 5px 5px 5px;
  border-radius: 10px;
  color: black;
  margin-top: -10px;
  margin-bottom: 20px;
}
.profile-image img {
  border-radius: 10px;
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.about-container-profile-sub p {
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}
#name,
#title,
#qualifications,
#jurisdiction,
#email,
#telephone {
  text-align: left;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  line-height: 1;
}
#name {
  font-weight: 700;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  letter-spacing: -0.6px;
  width: fit-content;
  line-height: 1.6;
}
#jurisdiction {
  white-space: normal;
}
#qualifications {
  font-size: 10px;
}
@media screen and (max-width: 64em) {
  .main-container-full,
  .main-container-half {
    width: 100%;
    min-width: 100%;
  }
  .main-container-sub {
    width: 100%;
    box-shadow: 0 4px 18px 12px rgba(0, 0, 0, 0.4);
    padding: 5px 15px 15px 15px;
    margin: 10px;
    background: rgba(235, 223, 200, 0.8);
    border-radius: 10px;
    color: black;
  }
}
@media screen and (max-width: 620px) {
  .about-container-profile {
    float: unset;
    justify-content: center;
    display: inline-flex;
    width: 100%;
  }
  .about-container-profile-sub {
    width: fit-content;
    max-width: 200px;
    box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.4);
    padding: 5px 5px 5px 5px;
    border-radius: 10px;
    color: black;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.property-services-container {
  width: 100%;
}
.property-services {
  display: inline-flex;
  flex-wrap: wrap;
  text-align: center;
  align-content: center;
  width: fit-content;
}
.property-services a {
  text-decoration: none;
  padding: 3px;
  margin: 3px;
  background-color: rgb(54, 88, 190);
  border-radius: 12px;
  width: fit-content;
  font-size: 16px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 700;
  letter-spacing: -0.6px;
}
.property-services h2 {
  padding: 4px 4px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 400;
  letter-spacing: -0.6px;
  color: white;
}
#backtotop {
  text-decoration: none;
  text-align: center;
  float: right;
  color: white;
  font-size: 12px;
  letter-spacing: -0.6px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 500;
  border-radius: 12px;
  padding: 5px 8px;
  background-color: rgb(54, 88, 190);
}
#backtotop:hover {
  background-color: #fff;
  color: royalblue;
  font-weight: 700;
  margin-top: -3px;
  margin-bottom: 3px;
  margin-right: -3px;
  margin-left: 3px;
  transition: all 0.3s;
}
.property-services a:hover {
  background-color: #fff;
  color: royalblue;
  margin-top: 0px;
  margin-bottom: 6px;
  margin-right: 0px;
  margin-left: 6px;
  transition: all 0.3s;
}
.property-services a:hover h2 {
  color: royalblue;
  transition: all 0.3s;
}
.anchor {
  position: relative;
  height: 0;
  width: 0.1px;
  visibility: hidden;
}
.anchor i {
  position: absolute;
  left: 0;
  top: -60px;
  height: 0;
  width: 0;
}
@media screen and (max-width: 650px) {
  .property-services a {
    width: fit-content;
  }
  .property-services h2 {
    font-size: 12px;
  }
}
#topics {
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.6px;
  border: 1px solid black;
  border-radius: 4px;
  padding: 4px;
  margin-left: 3px;
  margin-bottom: 10px;
  width: fit-content;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.contact-details-container {
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: black;
}
.contact-details-container-sub {
  display: block;
  width: fit-content;
  height: fit-content;
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  color: black;
  margin: 3px;
}
input[type="name"],
input[type="email"],
input[type="phone"],
input[type="message"],
textarea {
  width: 100%;
  padding: 12px 5px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid rgb(133, 133, 133);
  box-sizing: border-box;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  letter-spacing: -0.6px;
  font-size: 18px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.503);
}
::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
.contact-status-container {
  width: 100%;
  text-align: center;
}
.contact-status-container h2 {
  margin: 5px 0px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  letter-spacing: -0.6px;
  font-size: 24px;
  font-weight: 600;
}
.contact-close-container {
  width: 100%;
  text-align: center;
}
label {
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  letter-spacing: -0.6px;
  font-size: 16px;
  font-weight: 600;
}
button {
  background-color: #2366d1;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  font-size: 24px;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.3);
}
button:hover {
  opacity: 0.8;
  margin-top: 6px;
  margin-bottom: 10px;
  margin-right: -2px;
  margin-left: 2px;
}
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}
img.avatar {
  width: 40%;
  border-radius: 50%;
}
.contact-container {
  padding: 16px;
  text-align: left;
}
span.psw {
  float: right;
  padding-top: 16px;
}
.modal {
  display: block;
  width: 100%;
  height: 100%;
}
.modal-content {
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  color: black;
  margin: 3px;
}
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}
.contact-details-container-sub .nav-block-1 {
  margin-left: 10px;
}
table td {
  width: fit-content;
  vertical-align: top;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  letter-spacing: -0.6px;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 10px;
}
td.mobile {
  display: none;
}
.contact-abn td {
  pointer-events: none;
}
.contact-abn td > a {
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 650px) {
  td.desktop {
    display: none;
  }
  td.mobile {
    display: block;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
span.recaptcha-policy {
  display: block;
  margin-top: 2px;
  text-align: center;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-size: 8px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}
span.recaptcha-policy a {
  color: rgba(0, 0, 255, 1);
}

#lowercase {
  text-transform: unset;
  margin-bottom: 0;
}

#bold {
  color: black;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 700;
  letter-spacing: -1.5px;
  font-size: 21px;
  padding-right: 1px;
  font-style: italic;
  vertical-align: -1px;
}

#span-underline {
  font-weight: bold;
  font-style: normal;
}

.list-container {
  margin-left: 20px;
}

.list-container > li {
  font-size: 16px;
  font-family: "Montserrat", sans-serif, "Trebuchet MS";
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.5;
  opacity: 1;
  padding-bottom: 10px;
}
