form input.form-control {
  height: 3em !important;
}
form input.form-control,
form textarea.form-control {
  background-color: #f7f5f5;
  color: #464646;
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1400px;
  }
}
.header {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
.header .logo {
  width: 100%;
  max-width: 180px;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  padding: 0.75em 0em;
}
.header .inner ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.header .inner ul a {
  display: block;
  padding: 0.5em 1.5em;
  color: white;
}
.header .inner ul a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.hamburger {
  z-index: 100;
  display: none;
  width: 30px;
  padding-top: 10px;
  margin-right: 30px;
}
.hamburger .line {
  height: 2px;
  margin: 7px 0;
  background-color: white;
  transition: 0.3s ease all;
}

.header.open {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  opacity: 0;
}
.header.open .inner {
  flex-wrap: wrap;
}
.header.open .inner ul {
  display: block;
}
.header.open .inner ul a {
  width: 100%;
}
.header.open .left {
  z-index: 10;
}
.header.open .hamburger .line:first-child {
  transform: rotate(45deg) translate(6px, 7px);
}
.header.open .hamburger .line:nth-child(2) {
  opacity: 0;
}
.header.open .hamburger .line:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header.open .right {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #222222;
}
.header.open .right .nav {
  margin-top: 90px;
}
.header.open .right .nav li {
  padding-left: 0.5em;
  border-top: 1px solid #ccc;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.darkerNav .header {
  background-color: #02101E;
}

@media screen and (min-width: 992px) {
  .header .right {
    display: flex;
  }
}
@media screen and (max-width: 720px) {
  .header .left img {
    max-width: 120px;
  }
}
@media screen and (max-width: 992px) {
  nav .left ul {
    padding: 0;
    margin: 0;
  }
  nav .inner .right {
    display: none;
  }
  nav .inner .right .pill {
    margin: 0;
    border-radius: 0;
    color: white !important;
  }

  .hamburger {
    display: block;
  }
}
footer {
  padding: 3em 1em;
  border-bottom: 4px solid #d12205;
  background-color: #222;
  text-align: center;
}
footer a {
  display: inline-block;
  padding: 0.25em 1em;
}
footer a:hover {
  opacity: 0.8;
}
footer .inner ul {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer .inner .left {
  display: flex;
  align-items: center;
}
footer .inner .right {
  text-align: center;
}
footer .inner .right .footer-logos {
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  background: #FFFFFF;
  padding: 15px;
  gap:15px;
  flex-wrap: wrap;
}
footer .inner .right .footer-logos img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-top: 15px;
}
footer .inner .right .footer-logos img:first-child {
  margin-top: 0;
}
footer .inner .right ul {
  color: #d12205;
}
footer .copyright {
  padding: 0.5em 1em;
}
footer .ihm a {
  color: #e88825;
}

@media screen and (min-width: 520px) {
  footer .inner ul {
    display: flex;
    justify-content: center;
  }
  footer .inner .right {
    text-align: center;
  }
}
@media screen and (min-width: 580px) {
  footer .inner .right {
    text-align: center;
  }
  footer .inner .right .footer-logos {
    display: inline-flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  footer .inner .right .footer-logos img {
    display: inline-block;
    margin-top: 0;
    /* margin-left: 15px; */
  }
  footer .inner .right .footer-logos img:first-child {
    margin-top: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1400px) {
  footer {
    text-align: left;
  }
  footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  footer .inner .left, footer .inner .right {
    min-width: 50%;
  }
  footer .inner .left ul {
    justify-content: flex-start;
  }
  footer .inner .right {
    text-align: right;
  }
  footer .inner .right ul {
    justify-content: flex-end;
  }
  footer .inner .right .footer-logos {
    display: inline-flex;
    flex-flow: row;
  }
  footer .inner .right .footer-logos img {
    display: inline-block;
  }
  footer .bottom {
    display: flex;
    justify-content: space-between;
  }
}
/***********
Root Elements
***********/
html {
  font-size: 16px;
}

body {
  background-color: #f7f5f5;
  color: #666;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
}

hr {
  max-width: 55px;
  height: 3px;
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
}
hr.white {
  background: white;
}
hr.left {
  margin-left: 0;
}

a {
  color: white;
}
a:hover {
  color: white;
  text-decoration: none;
}
a.primary {
  color: #d12205;
}

/***********
Typography
***********/
p {
  line-height: 1.8em;
}

.title {
  font-family: "Cabin", sans-serif;
  font-size: 2.25rem;
}

.subtitle {
  font-family: "Cabin", sans-serif;
  font-size: 1rem;
}

.white {
  color: #fff !important;
}

.primary {
  color: #d12205 !important;
}

.superscript {
  float: left;
}

/***********
Buttons
***********/
.primary-button {
  display: inline-block;
  min-width: 250px;
  padding: 1.4em;
  border: 1px solid transparent;
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-size: 0.8em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0, 4s ease all;
}
.primary-button:hover {
  border: 1px solid #d12205;
  border: 1px solid linear-gradient(154deg, #a51506 0%, #e04619 100%);
  background: #fff;
  color: #d12205;
  text-decoration: none;
}
.primary-button:disabled {
  opacity: 0.7;
  cursor: unset;
  border: 1px solid transparent;
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
  color: #fff;
}

.secondary-button {
  display: inline-block;
  min-width: 250px;
  padding: 1.4em;
  border: 1px solid #d12205;
  background: transparent;
  color: #d12205;
  font-family: "Cabin", sans-serif;
  font-size: 0.8em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0, 4s ease all;
}
.secondary-button:hover {
  border: 1px solid #d12205;
  border: 1px solid transparent;
  background: #d12205;
  color: #d12205;
  text-decoration: none;
}
.secondary-button:disabled {
  opacity: 0.7;
  cursor: unset;
  border: 1px solid #d12205;
  background: transparent;
  color: #d12205;
}
.secondary-button:hover {
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
  color: white;
}

.white-button {
  display: inline-block;
  min-width: 250px;
  padding: 1.4em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-size: 0.8em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0, 4s ease all;
}
.white-button:hover {
  border: 1px solid #d12205;
  border: 1px solid transparent;
  background: #fff;
  color: #d12205;
  text-decoration: none;
}
.white-button:disabled {
  opacity: 0.7;
  cursor: unset;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

/***********
Reusable Blocks
***********/
.page-bg {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.big-hero {
  position: relative;
  padding-top: 8em;
  padding-bottom: 15em;
  background-color: #d12205;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.big-hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.big-hero .content {
  position: relative;
  z-index: 2;
}

.featured .property-block {
  transform: translateY(-1em);
}

.property-block {
  /* margin-bottom: 30px; */

  display: flex !important;
  flex-flow: column;
  height: 100%;
}
.property-block .top {
  position: relative;
}
.property-block .top .icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 25%;
  transform: translate(-50%, 50%);
}
.property-block .top .ribbon {
  position: absolute;
  top: 0;
  right: 0;
}
.property-block .bottom {
  padding: 2em 0.5em 2em 0.5em;
  background-color: #fff;
  color: #464646;

  display: flex;
  flex-flow: column;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
.property-block .bottom .content {
  overflow: hidden;
  /* min-height: 3.5em; */
  /* max-height: 140px; */
}
.property-block .bottom .content.display_address{
  font-weight: 700 !important;
}
.property-block:hover {
  text-decoration: none;
}
.property-block:hover .top {
  background-color: #f2f2f2;
}
.property-block:hover .top .main {
  opacity: 0.9;
}
.property-block:hover .bottom {
  background-color: #f2f2f2;
}

.callout {
  background-image: url(/images/home-callout-bg.jpg);
  background-size: cover;
  padding: 2em;
}
.callout .white-button {
  width: 100%;
}

.image-hero,
.red-hero,
.grey-hero,
.white-hero {
  color: #fff;
  text-align: center;
}
.image-hero p,
.red-hero p,
.grey-hero p,
.white-hero p {
  font-family: "Cabin", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
.image-hero p.summary,
.red-hero p.summary,
.grey-hero p.summary,
.white-hero p.summary {
  font-size: 0.8em;
  font-weight: 300;
}

.red-hero {
  padding: 8em 0 13em 0;
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
}

.white-hero {
  padding: 8em 0 13em 0;
  background: #fff;
}
.white-hero h1 {
  color: #464646;
}

.grey-hero {
  padding: 8em 0 13em 0;
  background: #464646;
}

.image-hero {
  position: relative;
  padding: 9em 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(340deg, rgba(25, 25, 27, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.image-hero .hero-content {
  position: relative;
}

.picture-slider {
  margin-top: -8em;
}

.enquiry-form {
  padding: 1.5em;
  margin-top: 5.5em;
  margin-bottom: 5.5em;
  background-color: #fff;
  box-shadow: 0px 0px 180px 0px rgba(0, 0, 0, 0.12);
}
.enquiry-form ul {
  padding: 0;
  margin-top: 3em;
  font-weight: bold;
  list-style-type: none;
}
.enquiry-form ul i {
  color: #d12205;
}
.enquiry-form ul a {
  color: #222;
}

.properties{
  padding-bottom:50px;
}
.properties .property-block-col{
  margin-bottom: 30px;
}

.pill {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0.5em;
  background-color: #222222;
  border-radius: 1em;
  color: white;
  font-size: 0.8em;
}

@media screen and (min-width: 720px) {
  .title {
    font-size: 3rem;
  }

  .enquiry-form {
    padding: 4.75em;
  }

  .callout {
    padding: 2em;
  }
  .callout .white-button {
    width: auto;
  }

  .big-hero {
    padding-top: 15em;
  }

  .red-hero, .grey-hero, .white-hero {
    padding: 13em 0 13em 0;
  }
}
@media screen and (min-width: 768px) {
  .subtitle {
    font-size: 2.25rem;
  }

  .property-block {
    box-shadow: 0px 0px 180px 0px rgba(0, 0, 0, 0.12);
  }
  .property-block .bottom {
    padding: 2.5em 4em;
  }
}
@media screen and (max-width: 991px) {
  #secondary-slider {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .picture-slider .contents {
    display: flex;
  }
  .picture-slider .contents #primary-slider {
    width: 85%;
    margin-right: 10px;
  }
  .picture-slider .contents #secondary-slider {
    width: 15%;
  }

  .callout {
    padding: 5em 5em;
  }
}
@media screen and (min-width: 1200px) {
  .callout {
    padding: 7em 12em;
  }
  .callout .white-button {
    width: auto;
  }
}
.home-properties {
  margin-bottom: -3.1em;
  transform: translateY(-10em);
}

.home-intro {
  padding-bottom: 8em;
}
.home-intro .secondary-button {
  width: 100%;
}

#home .callout-section {
  padding-bottom: 9em;
}
#home .big-hero {
  background-size: cover;
}
#home .big-hero .content {
  padding-left: 15px;
  padding-right: 15px;
}
#home .big-hero .content .primary-button {
  width: 100%;
}

#home .home-property-block-col{
  margin-bottom:30px;
}

@media screen and (min-width: 720px) {
  .home-intro .secondary-button {
    width: auto;
  }

  #home .title {
    font-size: 3.75em;
  }
  #home .big-hero .content .primary-button {
    width: auto;
  }
}
#properties .properties {
  margin-top: -8em;
}

#property h1 {
  text-align: left;
}
#property .summary {
  text-align: left;
}
#property .price {
  text-align: right;
}

.features {
  margin-top: 2em;
}

.property-information .navigation {
  display: flex;
  padding: 0;
  border-bottom: 1px solid #c3c3c3;
  margin: 0;
  margin-top: 3.5em;
  margin-bottom: 2.5em;
  list-style-type: none;
}
.property-information .navigation span {
  position: relative;
  display: block;
  padding: 1em;
  color: #d12205;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.property-information .navigation span:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
}
.property-information .navigation span:hover {
  text-decoration: none;
}
.property-information .navigation span.selected::before {
  background: linear-gradient(154deg, #a51506 0%, #e04619 100%);
  content: "";
}
.property-information .navigation span:hover::before {
  background: #c3c3c3;
  content: "";
}

.quick-overview {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .property-information .navigation span {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 991px) {
  .property-information .navigation span {
    font-size: 0.75rem;
  }

  .quick-overview {
    padding-top: 30px;
    border-top: 1px solid black;
    margin-top: 30px;
  }
}
@media screen and (max-width: 720px) {
  .contact .enquiry-form {
    margin-top: -5em;
  }
}
/******************************************************************
// this sass file is for repeatable blocks which can be found throughout the website
******************************************************************/

@media screen and (max-width: 768px) {
  footer .footer-nav{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 519px) {
  footer .footer-contact-nav{
    margin-top:30px !important;
    font-size: 16px;
  }
  footer .footer-contact-nav li{
    margin-bottom:15px;
  }
  footer .footer-contact-nav li a{
    padding:0;
  }
}