/*
Theme Name: The Warehouse Geelong
Theme URI: https://dobble.com.au
Description: The Warehouse Geelong WP Theme
Author: Dobble Pty Ltd
Author URI: https://dobble.com.au
Version:1.0
*/
@font-face {
  font-family: "Patua One";
  src: local("PatuaOne Regular"), local("PatuaOne-Regular"), url("fonts/PatuaOne-Regular.woff2") format("woff2"), url("fonts/PatuaOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A Web";
  src: url("fonts/StyreneAWeb-Light.eot");
  src: local("Styrene A Web Light"), local("StyreneAWeb-Light"), url("fonts/StyreneAWeb-Light.eot?#iefix") format("embedded-opentype"), url("fonts/StyreneAWeb-Light.woff2") format("woff2"), url("fonts/StyreneAWeb-Light.woff") format("woff"), url("fonts/StyreneAWeb-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A Web";
  src: url("fonts/StyreneAWeb-Regular.eot");
  src: local("Styrene A Web Regular"), local("StyreneAWeb-Regular"), url("fonts/StyreneAWeb-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/StyreneAWeb-Regular.woff2") format("woff2"), url("fonts/StyreneAWeb-Regular.woff") format("woff"), url("fonts/StyreneAWeb-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A Web";
  src: url("fonts/StyreneAWeb-Medium.eot");
  src: local("Styrene A Web Medium"), local("StyreneAWeb-Medium"), url("fonts/StyreneAWeb-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/StyreneAWeb-Medium.woff2") format("woff2"), url("fonts/StyreneAWeb-Medium.woff") format("woff"), url("fonts/StyreneAWeb-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A Web";
  src: url("fonts/StyreneAWeb-Bold.eot");
  src: local("Styrene A Web Bold"), local("StyreneAWeb-Bold"), url("fonts/StyreneAWeb-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/StyreneAWeb-Bold.woff2") format("woff2"), url("fonts/StyreneAWeb-Bold.woff") format("woff"), url("fonts/StyreneAWeb-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A Web";
  src: url("fonts/StyreneAWeb-Black.eot");
  src: local("Styrene A Web Black"), local("StyreneAWeb-Black"), url("fonts/StyreneAWeb-Black.eot?#iefix") format("embedded-opentype"), url("fonts/StyreneAWeb-Black.woff2") format("woff2"), url("fonts/StyreneAWeb-Black.woff") format("woff"), url("fonts/StyreneAWeb-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: clamp(2rem, 2vw, 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 120%;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

h6 {
  font-size: clamp(1rem, 2vw, 1.1rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #c0a360;
}
a.underline-on-hover:hover {
  color: inherit;
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.email-at-symbol:after {
  content: "@";
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.space-between {
  justify-content: space-between;
}

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}
.d-grid.g-9-3 {
  grid-template-columns: 9fr 3fr;
}
.d-grid.g-9-3 p {
  margin: 0;
}
.d-grid.g-9-3 .btn, .d-grid.g-9-3 input {
  margin: 0.5rem 0 0;
  line-height: 175%;
}
.d-grid.g-9-3 .btn {
  min-width: 200px;
}
.d-grid.g-9-3 input {
  border: none;
  border-bottom: 1px solid;
  padding: 14px 16px;
}
.d-grid.g-1-1 {
  grid-template-columns: 1fr 1fr;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}
.ai-center .wpcf7-form-control-wrap {
  width: 100%;
}

.ai-end {
  align-items: flex-end;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-col {
  flex-direction: column;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: #000;
}

.text-secondary {
  color: #c0a360;
}

.bg-black {
  background-color: #000;
}

.bg-primary {
  background-color: #000;
}

.bg-secondary {
  background-color: #c0a360;
}

.m-0-auto {
  margin: 0 auto !important;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.p4-0 {
  padding: 4rem 0;
}

.w-100 {
  width: 100%;
  min-width: 0 !important;
}

.mw-480 {
  max-width: 480px;
}

.mw-700 {
  max-width: 700px;
}

.mw-1140 {
  max-width: 1140px !important;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.ctl-mobile {
  text-align: center;
}

.fw-bold {
  font-weight: 600 !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.overflow-auto {
  overflow: auto;
}

.mh-480 {
  max-height: 480px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.border-top {
  border-top: 1px solid #c0a360 !important;
}

.rounded {
  border-radius: 50%;
}

.wpcf7 form .wpcf7-response-output,
.gform_confirmation_message {
  margin: 2rem auto !important;
  padding: 1.2rem !important;
  background-color: #3498db;
  color: #fff;
  line-height: 100% !important;
  text-align: center;
  border: none !important;
}

.gform_confirmation_message {
  background-color: #18bc9c;
}

.gform_wrapper .gform_title {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #18bc9c;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  background-color: #e74c3c;
}
.wpcf7 form.spam .wpcf7-response-output {
  background-color: #f56e28;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #f39c12;
}

body {
  font-family: "Styrene A Web", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2rem;
}

p {
  line-height: 2.5rem;
}

.content-area {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}
.content-area.border-top {
  border-top: 1px solid #fff;
  border-width: calc(100% - 60px);
}

.svg {
  display: inline-block;
  width: 22px;
  height: 22px;
  fill: #c0a360;
  margin-top: 5px;
  margin-bottom: -5px;
  transition: all 0.2s ease-in-out;
}
.svg.svg-text-right {
  margin-right: 6px;
}
.svg.svg-lrg {
  width: 80px;
  height: 80px;
  fill: #000;
  display: block;
  margin: 20px auto;
}

#quicklinks-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 960px;
  margin: 70px auto 0;
  text-align: center;
}
#quicklinks-container .quicklink {
  display: inline-block;
  width: 100%;
  max-width: 210px;
  min-height: 210px;
  margin: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  background-color: transparent;
}
#quicklinks-container .quicklink a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 20px;
  border: 1px solid #000;
}
#quicklinks-container .quicklink a:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}
#quicklinks-container .quicklink a:hover svg {
  fill: #fff;
}

.site-details {
  font-size: 0.9rem;
}

#services,
#other-services {
  grid-template-columns: 1fr 1fr;
}
#services .service,
#other-services .service {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
#services .service .title,
#other-services .service .title {
  margin: 25px auto;
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}
#services .service img,
#other-services .service img {
  width: 100%;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

#other-services {
  grid-template-columns: 1fr 1fr 1fr;
}

.heading-tagline {
  display: block;
  text-transform: uppercase;
  color: #c0a360;
  font-weight: 400;
  margin-top: -10px;
}

.logo-container {
  width: 120px;
  height: 84.59px;
}
.logo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}

.phone-contact-container {
  grid-template-columns: 1fr 1fr;
}
.phone-contact-container .phone-details {
  width: 200px;
}

.gform_wrapper.gravity-theme input[type=submit] {
  background: transparent;
  border: 1px solid #c0a360 !important;
  color: #c0a360;
}
.gform_wrapper.gravity-theme input[type=submit]:hover {
  background-color: #c0a360;
  color: #fff;
}

.testimonials blockquote.testimonial {
  cursor: grab;
  width: auto !important;
}
.testimonials blockquote.testimonial cite {
  color: #c0a360;
  font-family: "Parisienne", cursive;
  font-size: 1.7rem;
}
.testimonials blockquote.testimonial .date {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.gallery {
  grid-template-columns: 1fr 1fr 1fr;
}
.gallery a.gallery-item {
  position: relative;
}
.gallery a.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery a.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery a.gallery-item .overlay {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.gallery a.gallery-item .overlay svg {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.faqs {
  grid-template-columns: 1fr 1fr 1fr;
}

.home-banner-slider {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.home-banner-slider .slide {
  width: 100%;
  height: 600px;
}
.home-banner-slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.grid {
  display: grid;
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.text-with-icon p {
  margin: 0;
  padding: 0;
}
.text-with-icon svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #c0a360;
}
.text-with-icon.multi-line svg {
  margin-top: 10px;
}

.contact-form-and-details {
  grid-template-columns: 1fr 3fr;
}
.contact-form-and-details .heading {
  font-size: 1.25rem;
}
.contact-form-and-details .gform_wrapper {
  margin: 0;
}

header {
  background-color: #fff;
  color: #000;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  padding: 1rem 2rem;
  box-shadow: 0.3125rem 0 0.625rem rgba(0, 0, 0, 0.1);
  transition: all 1s ease-in-out;
}
header.sticky {
  position: sticky;
  width: 100%;
}
header .btn {
  margin-left: -105px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, margin 1s ease-in-out;
}
header.scrolled {
  top: 0;
}
header.scrolled .btn {
  margin-left: -135px;
}
header.scrolled .social-media-container li {
  width: 26px;
  height: 26px;
}
header.scrolled .social-media-container li:first-child {
  margin-left: -40px;
}
header #header-logo-container {
  width: 90px;
  height: 90px;
  line-height: 100%;
  transition: all 1s ease-in-out;
}
header #header-logo-container img.logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 1s ease-in-out;
}
header #header-logo-container.scrolled {
  width: 60px;
  height: 60px;
}

#top-header {
  background-color: #f1f1f1;
  color: #000;
  text-align: center;
  font-size: 0.9rem;
}

#top-header ul li {
  display: inline-block;
  margin-left: 40px;
  font-size: 0.9rem;
}

#top-header ul li a:hover {
  color: #a6a6a6;
}

footer .content-area {
  gap: 4rem;
  font-size: 0.9rem;
}
footer .content-area .footer-widget {
  width: 100%;
}
footer .content-area .footer-widget .heading {
  font-size: 1.1rem;
  font-family: "Playfair Display";
  font-weight: 400;
}
footer .logo {
  width: 140px;
  height: 144px;
  margin-bottom: 2rem;
}
footer .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer #site-details {
  font-size: 0.9rem;
  text-align: center;
}
footer #site-details p {
  line-height: 1.2rem;
}
footer #site-details .site-details a.site-author {
  font-family: "Patua One", cursive;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
footer #site-details .site-details a.site-author:hover {
  color: #6abc9f;
}
footer #legal-links ul li {
  display: inline-block;
  border-right: 1px solid #fff;
  padding: 0px 10px;
  height: 20px;
  vertical-align: middle;
  line-height: 20px;
}
footer #legal-links ul li:last-child {
  border-right: none;
}

#top-footer {
  padding: 0 2rem;
}

.banner {
  width: 100%;
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  line-height: 2rem;
}
.banner.our-space {
  background-image: url("https://cdn.thewarehousegeelong.com.au/wp-content/themes/TheWarehouseGeelong_WPTheme/images/our-space.jpg");
}
.banner.accommodation {
  background-image: url("https://cdn.thewarehousegeelong.com.au/wp-content/themes/TheWarehouseGeelong_WPTheme/images/accommodation.jpg");
}
.banner.catering {
  background-image: url("https://cdn.thewarehousegeelong.com.au/wp-content/themes/TheWarehouseGeelong_WPTheme/images/catering.jpg");
}
.banner.drinks {
  background-image: url("https://cdn.thewarehousegeelong.com.au/wp-content/themes/TheWarehouseGeelong_WPTheme/images/drinks.jpg");
}
.banner.home {
  background-image: url("https://cdn.thewarehousegeelong.com.au/wp-content/themes/TheWarehouseGeelong_WPTheme/images/home-banner.jpg");
  min-height: 560px;
}
.banner.home h1 {
  font-size: 2rem;
}
.banner.home p {
  font-size: 1rem;
  font-weight: 300;
}
.banner.banner.enquiries {
  background-image: url("images/banner-enquiries.png");
  background-attachment: fixed;
  min-height: 560px;
}
.banner.banner.enquiries .overlay {
  background-color: transparent;
  color: #000;
}
.banner.contact {
  background-image: url("images/contact-banner-bg.webp");
  background-attachment: fixed;
}
.banner .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  min-height: 480px;
}
.banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6, .banner .heading, .banner p {
  margin: 1rem 0;
  font-weight: 300;
}
.banner p {
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.banner .heading {
  font-size: clamp(1.9rem, 2.5vw, 2rem);
  line-height: 125%;
}

.services-wrapper .service {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.services-wrapper .service img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.services-wrapper .service .text-overlay {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  position: absolute;
  margin-bottom: 1.8rem;
  color: #fff;
  padding: 5px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid transparent;
  line-height: 100%;
  letter-spacing: 2px;
  transition: all 0.5s ease-in-out;
}
.services-wrapper .service:hover .text-overlay {
  border-bottom: 1px solid #fff;
}

.projects-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.projects-wrapper .project a.project-image {
  position: relative;
  width: 100%;
  height: 240px;
  display: block;
  background-color: aqua;
}
.projects-wrapper .project a.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects-wrapper .project a.project-image .overlay {
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  opacity: 0;
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.projects-wrapper .project a.project-image .overlay .logo {
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
}
.projects-wrapper .project a.project-image:hover .overlay {
  display: flex;
  opacity: 1;
}
.projects-wrapper .project .project-name {
  display: block;
  padding-right: 1rem;
  margin: 1rem 0;
  white-space: nowrap;
}
.projects-wrapper .project hr {
  width: 100%;
  max-width: 500%;
  height: 1px;
  background-color: #000;
  border: none;
}

.capability-statement {
  letter-spacing: 2px;
  height: 320px;
  color: #fff;
}
.capability-statement .logo {
  min-width: 320px;
  height: 100%;
  background-color: #000;
  overflow: hidden;
}
.capability-statement .logo img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.capability-statement .thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}
.capability-statement .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.capability-statement .thumbnail span {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.contact-card {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
}
.contact-card .contact-photo {
  height: 220px;
  width: 220px;
  background-color: #efefef;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.contact-card .contact-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-card .name {
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
}
.contact-card .qualifications {
  display: block;
  margin-bottom: 1rem;
  font-style: italic;
  margin-top: -0.5rem;
}
.contact-card .contact-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.faqs .accordion {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  padding: 10px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font: inherit;
  font-size: 0.95rem;
  border-left: 1px solid #000;
  transition: border 0.1s ease-out;
}
.faqs .accordion.active, .faqs .accordion.accordion:hover {
  border-left: 4px solid #000;
  font-weight: 600;
}
.faqs .accordion.active + .panel {
  border-left: 4px solid #000;
}
.faqs .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
  border-left: 1px solid transparent;
  margin-bottom: 1rem;
}

.hero-banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-banner .overlay {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  flex-direction: column;
}
.hero-banner .overlay h1, .hero-banner .overlay h2, .hero-banner .overlay h3, .hero-banner .overlay h4, .hero-banner .overlay h5, .hero-banner .overlay h6, .hero-banner .overlay .heading, .hero-banner .overlay p {
  margin: 10px auto;
}
.hero-banner .overlay p {
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-banner .overlay .heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 125%;
}
.hero-banner .overlay .locality svg {
  fill: #fff;
  width: 13.95px;
  height: 18px;
  margin-bottom: -3px;
  margin-right: 5px;
}

.quick-contact {
  background-color: #000;
  color: #fff;
  padding: 3rem;
  position: relative;
}
.quick-contact:after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
  background-color: #000;
  bottom: 0;
  left: 50%;
  margin-left: -1rem;
  margin-bottom: -1rem;
  transform: rotate(45deg);
}
.quick-contact .heading {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.quick-contact p {
  margin: 0;
}
.quick-contact .widget {
  border-left: 1px solid #fff;
  padding-left: 1.4rem;
}

.social-media-container {
  line-height: 100%;
  font-size: 0;
}
.social-media-container li {
  width: 2rem;
  height: 2rem;
  margin-left: 8px;
  display: inline-block;
  overflow: hidden;
  font-size: 1rem;
  transition: all 1.5s ease-in-out;
}
.social-media-container li:first-child {
  margin-left: 0;
}
.social-media-container a {
  color: #c0a360;
}
.social-media-container a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}
.social-media-container a:hover img {
  opacity: 1;
}
.social-media-container a svg {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.social-media-container a:hover svg {
  fill: #c0a360;
}

header .social-media-container {
  margin-right: 30px;
}
header .social-media-container li:first-child {
  margin-left: -20px;
}

#mobile-nav-container .social-media-container a svg {
  fill: #000;
}
#mobile-nav-container .social-media-container a:hover svg {
  fill: #c0a360;
}

.team-members {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.team-members .team-member .photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.team-members .team-member .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#primary-menu ul li {
  display: inline-block;
  margin: 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 10px 0;
}
#primary-menu ul li a {
  padding: 5px 0;
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid transparent;
}
#primary-menu ul li a:hover {
  color: inherit;
  border-bottom: 1px solid #c0a360;
}
#primary-menu ul li:last-child {
  margin-right: 0;
}
#primary-menu ul li .sub-menu {
  width: 320px;
  display: none;
  position: absolute;
  top: 100%;
  background-color: #fff;
  border-top: 3px solid #000;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
#primary-menu ul li .sub-menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}
#primary-menu ul li .sub-menu li a {
  padding: 1rem;
}
#primary-menu ul li .sub-menu li a:hover {
  background-color: #c0a360;
  color: #fff;
}
#primary-menu ul li:hover .sub-menu {
  display: block;
}

#mobile-nav-container {
  width: 100%;
  max-width: 260px;
  height: 100%;
  background-color: #fff;
  display: block;
  position: fixed;
  right: -260px;
  top: 0;
  z-index: 9999;
  padding: 40px;
  transition: all 0.5s ease-in-out;
}
#mobile-nav-container .logo {
  width: 129px;
  height: 77px;
  margin-left: 15px;
}
#mobile-nav-container .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#mobile-nav-container .menu-links ul ul {
  text-indent: 30px;
}
#mobile-nav-container .menu-links ul li {
  width: 100%;
  color: inherit;
  line-height: 22px;
  font-weight: 300;
  outline: none;
}
#mobile-nav-container .menu-links ul li a {
  padding: 12px 18px;
  width: 100%;
  height: 100%;
  display: block;
  color: #000;
}
#mobile-nav-container .menu-links ul li a:hover {
  color: #fff;
  background-color: #c0a360;
}
#mobile-nav-container .menu-links ul .sub-menu {
  display: none;
}

.menu-icon {
  width: 30px;
  height: 23px;
  position: relative;
  right: 0;
  display: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-icon:hover span {
  background-color: #c0a360;
}
.menu-icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  z-index: 9999;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.menu-icon span:nth-child(1) {
  top: 0px;
}
.menu-icon span:nth-child(2) {
  top: 9px;
}
.menu-icon span:nth-child(3) {
  top: 18px;
}
.menu-icon.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.menu-icon.open span:nth-child(2) {
  opacity: 0;
}
.menu-icon.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

#menuToggle {
  display: none;
}
#menuToggle:checked ~ #mobile-nav-container {
  right: 0;
}
#menuToggle:checked ~ header .menu-icon {
  right: 260px;
}

.dimmer {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgb(255, 255, 255);
  position: fixed;
  z-index: 9998;
  top: 0;
  transition: all 0.5s ease-in-out;
}

footer #quicklinks li {
  margin: 5px auto;
  line-height: 2rem;
}
footer #quicklinks li a {
  font-size: 0.9rem;
  width: 100%;
  height: 100%;
  display: block;
  border-left: 0px solid transparent;
}
footer #quicklinks li a:hover {
  border-left: 3px solid #c0a360;
  text-indent: 0.6rem;
}

form {
  width: 100%;
}

input,
textarea {
  -webkit-appearance: "none";
  -moz-appearance: "none";
  -o-appearance: "none";
  appearance: "none";
  outline: none;
  width: 100%;
  display: block;
  border: none;
  border-bottom: 1px solid #000;
  font: inherit;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background-color: transparent;
  color: #000;
  transition: border 0.1s ease-in;
}
input:focus,
textarea:focus {
  border-bottom: 1px solid #c0a360;
}

textarea {
  overflow: hidden;
  resize: none;
  height: 9rem;
}

.gform_wrapper {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100% !important;
}

.gfield {
  margin-bottom: 2rem;
}

.gform_body .instruction {
  display: none !important;
}

.gform_wrapper.gravity-theme input[type=submit],
.btn {
  padding: 1.2rem;
  font-weight: 400;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  text-align: center;
  min-width: 200px;
  line-height: 100%;
  transition: all 0.2s ease-in-out;
}

.btn.btn-hollow-primary {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn.btn-hollow-primary:hover {
  background-color: #000;
  color: #fff;
}
.btn.btn-hollow-secondary {
  background: transparent;
  border: 1px solid #c0a360;
  color: #c0a360;
}
.btn.btn-hollow-secondary:hover {
  background-color: #c0a360;
  color: #fff;
}
.btn.btn-hollow-white-primary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-hollow-white-primary:hover {
  background-color: #fff;
  color: #000;
}
.btn.btn-hollow-white-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-hollow-white-secondary:hover {
  background-color: #fff;
  color: #c0a360;
}
.btn.btn-solid-primary {
  background-color: #000;
  color: #fff;
}
.btn.btn-solid-primary:hover {
  background-color: #c0a360;
}
.btn.btn-solid-secondary {
  background-color: #c0a360;
  color: #fff;
}
.btn.btn-solid-secondary:hover {
  background-color: #000;
}
.btn.btn-solid-primary-lighter {
  background-color: #000;
  color: #fff;
}
.btn.btn-solid-primary-lighter:hover {
  background-color: #333333;
}
.btn.btn-solid-secondary-lighter {
  background-color: #c0a360;
  color: #fff;
}
.btn.btn-solid-secondary-lighter:hover {
  background-color: #ddcda9;
}
.btn.btn-solid-primary-darker {
  background-color: #000;
  color: #fff;
}
.btn.btn-solid-primary-darker:hover {
  background-color: black;
}
.btn.btn-solid-secondary-darker {
  background-color: #c0a360;
  color: #fff;
}
.btn.btn-solid-secondary-darker:hover {
  background-color: #856d35;
}
.btn.btn-centered {
  display: inline-block;
  margin: 0 auto;
}

.btn-group .btn {
  margin: 4px auto;
  display: inline-block;
}
.btn-group.list .btn {
  display: block;
  width: 100%;
  margin: 8px auto;
}
@media (max-width: 1200px) {
  #quicklinks-container {
    display: block;
  }
  .mw-1140 {
    max-width: calc(100% - 60px) !important;
  }
  #primary-menu {
    display: none;
  }
  header .social-media-container, header .btn {
    display: none;
  }
  .menu-icon,
  #mobile-nav-container {
    display: block;
  }
  #menuToggle:checked ~ .dimmer {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
  }
  #header-logo-container {
    width: 80px;
    height: 80px;
  }
  #header-logo-container img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 960px) {
  footer .content-area {
    flex-direction: column;
  }
  .projects-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .quick-contact {
    background-color: transparent;
    display: block !important;
    padding: 0;
  }
  .quick-contact:after {
    display: none;
  }
  .quick-contact .widget {
    background-color: #000;
    padding: 1.5rem;
    margin: 20px auto;
    text-align: center;
  }
  #function-rooms {
    display: block;
  }
  #function-rooms .function-room {
    margin-bottom: 60px;
  }
  .g-x-2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .g-x-2 .btn {
    width: 100% !important;
  }
  #top-footer {
    text-align: center;
  }
  #top-footer .footer-widget {
    justify-content: center;
  }
  footer #quicklinks li a {
    border: none;
  }
  footer #quicklinks li a:hover {
    text-indent: 0;
  }
}
@media (max-width: 720px) {
  #top-header {
    display: none;
  }
  #quicklinks-container .quicklink {
    max-width: none;
  }
  .testimonials blockquote.testimonial {
    margin: 2rem;
  }
  .testimonials blockquote.testimonial p {
    line-height: 150% !important;
  }
  .testimonials blockquote.p-3 {
    padding: 0;
  }
  .g-1-1 {
    grid-template-columns: 1fr !important;
  }
  .projects-wrapper {
    grid-template-columns: 1fr;
  }
  .services-wrapper.g-1-1 {
    grid-template-columns: 1fr;
  }
  .g-x-1 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .g-x-1 .btn {
    width: 100% !important;
  }
  .capability-statement {
    position: relative;
  }
  .capability-statement .logo {
    position: absolute;
    z-index: 500;
    bottom: 0;
    left: 0;
    min-width: 80px;
    height: 80px;
  }
  .capability-statement .logo img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  #site-details {
    line-height: 150%;
  }
  #legal-links ul {
    margin-bottom: 20px;
  }
  #legal-links ul li {
    display: block;
    margin: 10px auto;
    height: auto;
    border: none;
  }
  .ctl-mobile {
    text-align: left;
  }
  .btn-group .btn {
    display: block;
  }
  .mobile-flex-center {
    justify-content: center;
    align-items: center;
  }
}
