@charset "UTF-8";
/* CSS Document */

:root {
	scrollbar-color: #D78131 #222 !important;
  	scrollbar-width: thin !important;
	--queens-dpurple:#3B3153;
	--queens-purple:#662483;
	--queens-lpurple:#D1CCDD;
	--queens-orange:#ED6E3C;
	--queens-blue:#048FBD;
	--queens-green:#52A39A;
	--queens-red:#C20F57;
	--queens-grey:#F2F2F2;
	--white:#FFFFFF;
}

.queens-red-bkgd {
	background:var(--queens-red);
}

.queens-orange-bkgd {
	background:var(--queens-orange);
}

.queens-lpurple-bkgd {
	background:var(--queens-lpurple);
}

.queens-blue-bkgd {
	background:var(--queens-blue);
}

.queens-grey-bkgd {
	background:var(--queens-grey);
}

.queens-purple-bkgd {
	background:var(--queens-dpurple);
}

.queens-green-bkgd {
	background:var(--queens-green);
}

.queens-purple {
	color:var(--queens-purple);
}

.queens-dpurple {
	color:var(--queens-dpurple);
}

.white-text {
	color:var(--white);
}

*,
*:before,
*:after {
	box-sizing: border-box;
	transition: 0.5s ease;
}

.flex {
	display: flex;
}

.fl-wrap {
	flex-wrap: wrap;
}

.fl-d-col {
	flex-direction: column;
}

.fl-d-row {
	flex-direction: row;
}

.fl-row-rev {
	flex-direction: row-reverse;
}

.fl-gap-1 {
	gap:1rem;
}

.fl-gap-2 {
	gap:2rem;
}

.fl-gap-3 {
	gap:3rem;
}

.fl-gap-4 {
	gap:4rem;
}

.fl-gap-5 {
	gap:5rem;
}

.fl-gap-6 {
	gap:6rem;
}

.j-s-fl-start {
	justify-content: flex-start;
}

.j-s-fl-end {
	justify-content: flex-end;
}

.j-s-fl-center {
	justify-content:center;
}

.va-center {
	align-items: center;
}

.j-s-btw {
	justify-content: space-between;
}

.ml-auto {
	margin-left:auto;
}

.mr-auto {
	margin-right:auto;
}

.m-auto {
	margin:auto;
}

.m-0 {
	margin:0;
}

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

.mr-1 {
	margin-right:1rem;
}

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

.ml-0 {
	margin-left:0;
}

.ml-1 {
	margin-left:1rem;
}

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

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

.mr-2 {
	margin-right:2rem;
}

.mr-3 {
	margin-right:3rem;
}

.mr-4 {
	margin-right:4rem;
}

.mr-5 {
	margin-right:5rem;
}

.mr-10 {
	margin-right:10rem;
}

.mb-0 {
	margin-bottom:0;
}

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

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

.ml-2 {
	margin-left:2rem;
}

.ml-3 {
	margin-left:3rem;
}

.ml-4 {
	margin-left:4rem;
}

.ml-5 {
	margin-left:5rem;
}

.ml-10 {
	margin-left:10rem;
}

.p-0 {
	padding:0;
}

.p-1 {
	padding:1rem;
}

.p-2 {
	padding:2rem;
}

.p-3 {
	padding:3rem;
}

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

.pr-1 {
	padding-right:1rem;
}

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

.pl-1 {
	padding-left:1rem;
}

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

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

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

.pr-2 {
	padding-right:2rem;
}

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

.pl-2 {
	padding-left:2rem;
}

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

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

.pl-3 {
	padding-left:3rem;
}

.dblk {
	display: block;
}

.csr {
	cursor: pointer
}

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

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

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

.btn {
	padding:1rem 2rem;
	display:inline-block;
	color:var(--white);
	text-decoration: none;
	border: none;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "apertura", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin:0;
	padding:0;
	font-size:1vw;
	line-height: 1.5;
}

.hidden {
	overflow: hidden;
}

header, section, main, footer {
	width: 100%;
	display: flex;
}

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

.rel {
	position: relative;
}

.abs {
	position:absolute;
	top:0; right:0; bottom:0; left:0;
}

.z-1 {
	z-index: 1;
}

.image {
	width:100%;
	height:100%;
	object-fit: cover;
	font-size:0;
}

h1, h2, h3, h4, h5, h6, p {
	margin:0 0 1rem 0;
	font-weight: 400;
}

h3 {
    font-size: 2vw;
}

.block h3 {
    font-size: 1.5vw;
    color:var(--queens-dpurple);
}

a {
	text-decoration: none;
	color:inherit;
}

.amtn {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.site-header {
	background:var(--white);
}

.sticky {
	position: sticky;
	top:0;
	z-index: 2;
	font-size:1vw;
}

.site-logo {
    background: url(../images/queenswood-logo.png) center center no-repeat;
    background-size: contain;
    width: 275px;
    height: 75px;
    text-indent: -9999px;
}

.logo-scrolled {
    width: 200px;
    height: 55px;
}

.header-container {
	width:80%;
}

.menu-icon {
	background:url("../images/menu-icon.svg") center center no-repeat;
	background-size: contain;
	text-indent: -9999px;
	width:30px;
	height: 25px;
}

.close-menu {
	background:url("../images/close-icon.svg") center center no-repeat;
	background-size: contain;
	text-indent: -9999px;
	width:30px;
	height:30px;
	position: absolute;
	top:2rem;
	right: 2rem;
	cursor: pointer;
}

.hero {
	height:60vh;
	background:var(--queens-dpurple);
	position:relative;
}

.hero-content {
	width:30%;
	margin:auto;
	color:var(--white);
}

.hero-text {
    font-size: 3vw;
}

.contacts-header {
	list-style-type:none;
}

.icon-panel-item {
    width: 30%;
}

.hero-content-pages {
	clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
	-o-clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
	-ms-clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
	background:var(--queens-dpurple);
	position:absolute;
	bottom:0; left:0; right:0;
}

.hero-container {
	width:80%;
	margin:0 auto;
}

.hero-text-pages {
    color: #FFF;
    font-size: 3.25vw;
}

.tel {
	background:url("../images/tel-icon.svg") center left no-repeat;
	background-size:contain;
}

.email {
	background:url("../images/email-icon.svg") center left no-repeat;
	background-size:contain;
}

.site-menu {
	position: fixed;
	width:100%;
	background:rgba(59,49,83,0.975);
	top:0;
	bottom:0;
	right:-100%;
	z-index: 3;
}

.open-menu {
	right:0;
}

.nav-panel {
    width: 75%;
    margin: 7rem auto;
    position: relative;
}

.menu-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.queenswood-q {
    position:absolute;
    top:50%;
    right: -50%;
    transform:translate(50%, -50%);
    width:90%;
}

.hero-image {
	width:50%;
	background:#F8F8F8;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.menu-image {
	width:100%;
	background:#F8F8F8;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.hero-image-pages {
	width:100%;
}

.service-buttons-list {
    width: 80%;
}

.service-button-item {
    flex: 1;
    border-radius: 0.5rem;
}

.service-box-image {
    width: 100%;
    border-radius: 3rem 0;
    overflow: hidden;
}

.service-box-image:after {
  	content:"";
  	display:block;
  	padding-bottom:75%;
}

.queenswood-icon {
    width: 4vw;
}

.service-box-title {
    font-size: 1.75vw;
}

.mt-x5 {
    margin-top: -4rem;
}

.block {
    flex: 1;
}

.content-image {
    width: 74%;
}

.b-rad {
	border-radius: 2rem;
	overflow: hidden;
}

.icons-panel {
	width:80%;
}

.icon {
	width:30%;
}

.icon:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.icon-panel-title {
	color:var(--white);
}

.dark {
    border: 1px solid;
}

.column-container {
	width:80%;
}

.column {
    flex: 1;
}

.contain {
	object-fit: contain;
}

.contact-form {
    width: 80%;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
}

.contact-details {
	display: flex;
}

.form-field {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: none;
	font-family: "apertura", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:1vw;
	background:#F8F8F8;
	border-radius: 5px;
}

.details {
	height: 20rem;
}

.footer-container {
    width: 80%;
}

.footer-row {
    width: 100%;
}

.footer-text {
    font-size: 1vw;
}

.wpforms-container input.wpforms-field-medium {
    max-width:100% !important;
}

.menu-footer {
    list-style-type: none;
}

.menu-footer .menu-item {
    margin:0 1rem;
}

.menu-nav .menu-item {
    margin: 1rem 0;
}

.menu-item:first-child {
    margin-left: 0;
}

.menu-item:last-child {
    margin-right: 0;
}

.menu-nav .menu-item a {
    color: #FFF;
    font-size: 1.25vw;
	display: block;
}

.menu-link {
    font-size: 1vw;
}

.menu-nav .nav-item {
    margin: 1rem 0;
}

.menu-nav .services a {
    background: #CCC;
    padding: 0.5rem 1.5rem;
    border-radius: 30px 0 30px 0;
	color:var(--queens-dpurple) !important;
}

.social-icons {
	display: flex;
	justify-content:space-between;
	margin:0;
	padding:0;
	list-style-type: none;
}

.social-item {
    font-size: 0;
}

.social-item:first-child {
    margin-right: 1rem;
}

.social-link {
	width:2.5vw;
	text-indent: -9999px;
	display: block;
}

.social-link:after {
	display: block;
	content: "";
	padding-bottom:100%;
}

.fb {
	background:url("../images/facebook-icon.png") center center no-repeat;
	background-size:contain;
}

.ins {
	background:url("../images/instagram-icon.png") center center no-repeat;
	background-size:contain;
}

.site-logo-footer {
    background: url(../images/queenswood-logo.png) center center no-repeat;
    background-size: contain;
    width: 200px;
    height: 55px;
    text-indent: -9999px;
}

.list {
    list-style-type: none;
    margin-block-start: 2rem;
    margin-block-end: 2rem;
	padding:0;
}

.list-item {
    background: #F8F8F8;
    padding: 0.5rem 1rem;
    border-left: 3px solid #ED6E3C;
    margin: 0.5rem 0;
    border-radius: 0 100px 100px 0;
}

.gallery {
    height: 20vh;
}

section#gallery {
    width: 80%;
    margin: 0 auto;
	flex-wrap: wrap;
}

.gallery-image {
    width: 20%;
    font-size: 0;
    position: relative;
    border: 0.25rem solid #F8F8F8;
}

.thumb {
    width: 100%;
    height: 100%;
    position: absolute;
	top:0; right:0; bottom:0; left:0;
}

.gallery-image:after {
	content: "";
	display: block;
	padding-bottom:100%;
}

.content.gallery-text {
    width: 80%;
    margin: 3rem auto;
}

.content.full-width-text {
    width: 80%;
    margin: 3rem auto;
}

.meet-the-team-panel {
    width: 80%;
    margin: 0 auto;
}

.meet-the-team {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
	flex-wrap: wrap;
    width: 100%;
	justify-content: space-between;
}

.team-item {
    width: 23%;
}

.team-image {
    background: #CCC;
    font-size: 0;
    position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.team-title {
    margin: 1rem 0 0 0;
}

.lightbox {
	display: none;
}

.quote-content {
	display: flex;
	justify-content: space-between;
}

.form-column {
	width:45%;
}

.image-column {
	width:50%;
}

.title {
    font-size: 2vw;
}

.cta {
	width:80%;
}









.nothing {
	width:100%;
	height:100vh;
	background:#F8F8F8;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}