﻿/*
Theme Name: Elgin Storage
Theme URI: https://elginstorage.co.uk/
Description: WordPress theme built by <a href="http://www.hedleyenterprises.co.uk">hedley enterprises</a>. <strong>Web design</strong> starts with a coffee and a chat...
Version: 2 Build-0325
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/

/* poppins-regular - latin */
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Poppins"),
	     url('fonts/poppins-v19-latin-regular.woff2') format('woff2'), 
         url('fonts/poppins-v19-latin-regular.woff') format('woff'); 
}
  /* poppins-700 - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local('Poppins'),
         url('fonts/poppins-v19-latin-700.woff2') format('woff2'), 
		 url('fonts/poppins-v19-latin-700.woff') format('woff'); 
}

:root {
	--main-color: #202020;
	--brown: #D5C9B9;
	--purple: #5e1972;
	--lightpurple: #7f4790;
	--lgrey: #F6F6F6;
  	--cream: #F0EBE5;
  	--white: #ffffff;
	--black: rgba(0, 0, 0, 0.1);
	--lightshadow: rgba(180, 180, 180, 0.1);
	--bold: 700;
	--boxshadow: 0 5px 24px;
	--border: 10px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size:18px;
    font-family: 'Poppins', sans-serif;
	margin:0;
	padding:0;
  	color: var(--main-color);
	opacity: 0;
	background-image: linear-gradient(to bottom, var(--white), var(--cream), var(--white), var(--white));
	animation: fade-in 0.3s forwards 0.3s linear;
}
p::selection, h1::selection, h2::selection, h3::selection { background-color: #320101; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #320101; color: #fff; }

/* -------------------- Animation -------------------- */

section {
	opacity: 0;
}
.inverse, .show-menu {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* -------------------- General Styles -------------------- */

.container, .wrapper {
	width: min(90%, 1600px);
	margin-inline: auto;
}
.easy-reading, footer {
	width: min(90%, 900px);
	margin-inline: auto;
}
a {
  text-decoration: none;
}

h1, h2, h3, summary {
	font-weight: normal;
}
p {
	line-height:1.6;
}
img {
	border-style: none;
}
.center, .has-text-align-center {
	text-align:center;
}
.absol {
	position:relative;
}
hr {
	width: 200px;
	margin: 2em auto;
	border: solid thin var(--lightpurple);
}
/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.drop {
	margin-top: 3em;
}
.bring-up {
	margin-top: -100px;
	z-index: 5;
}
.ptb {
	padding: 5em 0;
}
/* -------------------- Backgrounds -------------------- */
.inner {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 200px;
}
.main-background {
	z-index: 1;
	overflow: hidden;
	margin-top: 0;
	align-content: center;
	align-items: center;
	background-image: linear-gradient(to right, var(--purple), var(--lightpurple));
	color: var(--white);
}
.feature {
	height: 80vh;
}
.feature {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
}
.main-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -10;
}
.purple-background {
	color: var(--white);
	background-color: var(--purple);
}
.lightpurple-background {
	color: var(--white);
	background-color: var(--lightpurple);
}
/* -------------------- Colours -------------------- */
.topbar {
    height: 5px;
    background-image: linear-gradient(to right, var(--purple), var(--lightpurple));
}
.topcontact a {
	color: var(--main-color);
}
.topcontact a:hover {
	color: var(--brown);
}
.purple strong {
	color: var(--purple);
}
/* -------------------- Header -------------------- */
.header-grid {
	display: grid;
	grid-template-columns: 1fr 50px;
	grid-gap: 1em;
	align-items: center;
	margin-top: 1em;
}
.social-icons ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icons li {
	padding: 2px;
}
header .social-icons svg {
	fill: var(--lightpurple);
}
footer .social-icons svg {
	fill: var(--white);
}
.topcontact ul, .social-icons ul, .contact-details ul, .copyright ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.logo {
	text-align: left;
}
.logo img, .logo svg {
	width: 100%;
	height: auto;
	max-width: 294px;
}
.topcontact, .header-grid .social-icons, .header-grid .btn-book {
	display: none;
}
.landing-grid {
	display: grid;
	padding-top: 1em;
	padding-bottom: 1em;
	align-items: center;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	grid-template-areas: 
	"title" 
	"bullets" 
	"cta-buttons";
}
.landing-grid .intro-title {
	grid-area: title;
}
.landing-grid .bullet-points {
	grid-area: bullets;
}
.landing-grid .cta-buttons {
	grid-area: cta-buttons;
	margin-top: 2em;
	margin-bottom: 2em;
}
.landing-grid .bullet-points {
	background-color: var(--lightshadow);
	border: solid thin var(--cream);
	padding: 2em;
	box-sizing: border-box;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: none;
}
.navigation nav {
	box-shadow: var(--boxshadow) var(--black);
	border-radius: var(--border);
	background-color: var(--white);
	border: solid thin var(--white);
	transition: border 300ms;
}
.navigation:hover nav {
	border: solid thin var(--lightpurple);
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--purple);
	color: var(--white);
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	color: var(--white);
	background-color: var(--purple);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--purple);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
	grid-column: 4;
	grid-row: 1;
	margin-top: -20px;
}
.menu-btn:hover {
	background-color: var(--lightpurple);
}
.mobile {
	position: fixed;
	padding: 2em;
	width: calc(100vw - 4em);
	height: calc(100vh - 4em);
	z-index: 200;
	top: -200%;
}
.nav-icon-open, .nav-icon {
	width: 20px;
}
.close-btn {
	cursor: pointer;
	position: absolute;
	right: 2em;
	top: 2em;
	color: var(--white);
	background-color: var(--lightpurple);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--lightpurple);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
}
.show-menu {
	opacity: 0;
	display: block;
}
ul.sub-menu {
	display:none;
}
.nav .sub-menu {
	margin-top: 20px;
	margin-bottom: 20px;
}
.nav .sub-menu li a {
	font-size: 16px;
	margin: 0;
	padding: 0;
	opacity: 0.8;
}
.nav .sub-menu li {
	margin: 0;
}
.slideDown {
  display: block;
}
.menu-contents {
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
}
.nav ul:nth-child(1) {
	font-size: 1.5rem;
}
.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav ul:nth-child(3) {
	margin: 3em 0 0 0;
}
.nav ul, .contact-nav ul, .social-nav ul {
	flex-wrap: wrap;
}
.nav li, .contact-nav li, .social-nav li {
	width: 100%;
	margin-left: 0;
	margin-bottom: 15px;
}
.nav, .contact-nav, .social-nav {
	align-self: center;
	width: 100%;
	text-align: center;
}
.nav, .contact-nav {
	margin-bottom: 20px;
}
.nav li a, .contact-nav li a {
	color: var(--white);
}
.cottageselect #menu-item-55,
.cottageavail #menu-item-80,
.current_page_item a {
	font-weight: bold;
}
/* -------------------- Hamburger Icon -------------------- */
#Rectangle_27, #Rectangle_28, #Rectangle_29,
#Rectangle_30, #Rectangle_31, #Rectangle_32 {
	transition: all 0.5s ease-in-out;
}
#Rectangle_27 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 30px);
}
#open-menu:hover #Rectangle_27 {
	transform: translate(332px, 30px);
}
#Rectangle_28 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 36px);
}
#open-menu:hover #Rectangle_28 {
	transform: translate(326px, 36px);
}
#Rectangle_29 {
	transform: translate(334px, 42px);
}
#open-menu:hover #Rectangle_29 {
	transform: translate(316px, 42px);
}

/* -------------------- Page Title / CTA -------------------- */
.page-intro {
	margin-inline: auto;
	margin-top: 5em;
}
.page-title h2 {
	margin-bottom: 0;
}
.page-title p {
	margin-top: 0;
}
.page-intro h1 strong,
.page-intro h2 strong {
    font-weight: normal;
}
.small-text {
	font-weight: var(--bold);
}
/* -------------------- Bullet-Points -------------------- */
.bullet-points ul {
	padding: 0;
}
.bullet-points li {
	list-style-image: url('/images/tick.png');
	margin: 0px 0px 0px 10px;
	padding: 5px;
}
.location-addresses {
	display: flex;
	justify-content: space-around;
	gap: 2em;
	flex-wrap: wrap;
}
.location-addresses ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: var(--lightshadow);
	padding: 2em;
	width: 100%;
	border: solid thin var(--purple);
	border-radius: var(--border);
	box-sizing: border-box;
}
/* -------------------- Hire -------------------- */
.hire a {
	color: currentColor;
	display: block;
}
.hire a:hover {
	color: var(--brown);
}
.hire h2,.hire p {
	margin: 0;
}
.hire {
	padding: 2em 0;
}
/* -------------------- Split Grid -------------------- */
.split-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 0.5em;
}
.half-grid, .twocol {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2em;
}
.split-image {
	max-height: 400px;
}
.split-image img {
	border: solid thin var(--lightpurple);
	border-radius: var(--border);
}
.info {
	margin-bottom: 2em;
	/*! border-bottom: solid thin var(--black); */
	background-color: var(--lightshadow);
	padding: 1em;
	border-radius: var(--border);
	border: solid thin var(--lightpurple);
 }
.info h2, main h2 {
	margin: 0;
	color: var(--purple);
}
/* -------------------- Banner -------------------- */
.google_map iframe {
	width: 100%;
	border: none;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.feature-banner {
	height: 80vh;
	overflow: hidden;
}
.feature-banner img, .feature img, .split-image img, .showcase-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.showcase-image {
	max-height: 400px;
	padding-bottom: 0.5em;
}
.google_map iframe {
	width: 100%;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.tour svg {
	width: 100%;
	height: auto;
	max-width: 200px;
}
.tour iframe {
	width: 100%;
	height: 500px;
}
.video video {
	width: 100%;
	height: auto;
	border-radius: var(--border);
}
.decoration svg {
	width: 100%;
	height: auto;
	max-width: 200px;
}
/* -------------------- Book Online -------------------- */
.bookonline_select {
	background-color: var(--white);
	padding: 2em;
	border-radius: var(--border);
}
.bookonline_select ul {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
	grid-gap: 1em;
	margin: 1em 0 0 0;
	padding: 0;
	list-style: none;
}
.bookonline_external ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.bookonline_select li a,
.bookonline_external li a {
	text-align: center;
	background-color: var(--purple);
	color: var(--white);
	display: block;
	padding: 1em;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.bookonline_select li a:hover,
.bookonline_external li a:hover {
	background-color: var(--lightpurple);
}
.bookonline_external li {
	flex-grow: 1;
	margin: 5px;
}
.calendar-code {
	padding-bottom: 10em;
}
/* -------------------- page Selection -------------------- */
.page-selection__grid {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
	grid-gap: 1em;
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
}
.page-selection__link {
	overflow: hidden;
	transition: background-color 200ms ease-in-out;
	width: 300px;
	border-radius: var(--border);
	background-color: var(--white);
	border: solid thin var(--lightpurple);
}
.page-selection__link:hover {
	background-color: var(--lgrey);
}
.page-selection__link:hover .page-selection__image img {
	transform: scale(1.1);
}
.page-selection__image {
	overflow: hidden;
	height: 300px;
	border-radius: 10px 10px 0 0;
}
.page-selection__image img {
	transition: transform 200ms ease-in-out;
}
.page-selection__text {
	color: var(--main-color);
	padding: .5em 1em 1em 1em;
	margin-top: .5em;
	text-align: center;
}
.page-selection__sleep {
	font-size: 12px;
	color: var(--red);
}
.page-selection__text h2 {
	font-size: 1.5rem;
	margin: 0;
}
.page-selection__sleep p {
	margin: 0;
}
.page-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--red);
    z-index: 1;
    border-radius: 0 0 0 50px;
    /* padding: 0 5px; */
    width: 100px;
    height: 80px;
}
.page-badge p {
	margin: 0;
    width: 95px;
    margin-left: auto;
    line-height: 1.2;
}
.page-selection__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.snaps-inline {
	scroll-snap-type: inline mandatory;
	scroll-padding-inline: 1rem;
}
  
.snaps-inline > * {
	scroll-snap-align: start;
}
/* -------------------- List -------------------- */
.list-bullets ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 1em;
	flex-wrap: wrap;
}
.list-bullets li {
	width: 40%;
	background-color: var(--lightshadow);
	padding: 1em;
	border-radius: var(--border);
	border: solid thin var(--lightpurple);
	flex-grow: 1;
}
/* -------------------- Details -------------------- */
details {
	background-color: var(--lightshadow);
	padding: 1em 2em;
	margin-bottom: 1em;
	border-radius: var(--border);
	border: solid thin var(--lightpurple);
}
summary {
	padding: 1em 0 0.5em 0;
	cursor: pointer;
	outline: none;
	color: var(--purple);
}
details[open] summary {
    border-bottom: solid thin var(--brown);
}
details[open] p {
	animation-name: comein;
	animation-duration: 500ms, 200ms;
	animation-delay: 0ms, 500ms;

}
@keyframes comein {
	0% {
	  opacity: 0;
	}
	  100% {
		  opacity: 1;
	}
}

/* -------------------- Button -------------------- */
button {
	background: transparent;
	border: transparent;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
}
.btn a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 20px;
	padding: 10px;
}
.btn-outline-clear a {
	color: var(--blue);
	border: solid 2px var(--blue);
	background: linear-gradient(to right, var(--white) 50%, var(--purple) 50%);
	background-size: 200% 100%;
	background-position: left bottom;
	transition: background-position 300ms, outline-offset 300ms;
}
.btn-outline a, .book-button a {
	color: var(--white);
	border: solid 2px var(--white);
	background: linear-gradient(to right, var(--purple) 50%, var(--lightpurple) 50%);
	background-size: 200% 100%;
	background-position: left bottom;
	transition: background-position 300ms, outline-offset 300ms;
}
.btn a:hover {
	color: var(--white);
	background-position: right bottom;
}
/* -------------------- Gallery - Update -------------------- */

.container-gallery .gallery-item img {
  border-radius: 0;
}
.container-gallery .gallery {
  gap: 0;
}
.gallery-item a {
	display: block;
	/*! height: 306px; */
}
.gallery, .links {
	display: flex;
	flex-wrap: wrap;
	/*! grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); */
	gap: 0.5em;
	/* grid-template-rows: 306px 1fr; */
}
.grid {
	display: flex;
	flex-wrap: wrap;
}
.gallery br {
	display: none;
}
.grid {
	display: flex;
	flex-wrap: wrap;
}
.gallery-item {
	position: relative;
	margin: 0;
	width: 35%;
	flex-grow: 1;
}
.gallery br {
	display: none;
}
/* -------------------- Gallery -------------------- */
/* Style for the images */
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 600ms ease;
    display: block;
	border-radius: var(--border);
}

/* Zoom effect on hover */
.gallery-item img:hover {
    transform: scale(1.1);
}
dt {
	overflow: hidden;
}
/* Overlay message */
.gallery-item::after {
    content: "Click to View";
    position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--purple);
	color: var(--white);
	padding: 5px 10px;
	font-size: 12px;
	opacity: 0;
	z-index: 100;
	transition: all 600ms;
	text-transform: uppercase;
	display: none;
}
/* Show overlay message on hover */
.gallery-item:hover::after {
    opacity: 1;
}
.wp-caption-text {
	margin: 0;
	padding: 1em;
	text-align: center;
}
figure {
	margin: 2em auto;
	padding: 0;
}
figure img {
	width: 100%;
	height: auto;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}

/* -------------------- Enquiry Form -------------------- */
.hire-form {
	background-color: var(--white);
	border-radius: var(--border);
	padding: 1em;
	box-sizing: border-box;
}
.hire-logo {
	text-align: center;
	margin-top: 2em;
}
.hire-logo img {
	width: 100%;
	height: auto;
	max-width: 200px;
}
.hire p {
	font-size: 16px;
}
.enquiry-form {
	background-color: var(--lightshadow);
	padding: 1em;
	box-sizing: border-box;
	border: solid thin var(--purple);
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.enquiry-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	margin-top: 15em;
	margin-bottom: 5em;
	box-shadow: 0 0.7em 1em var(--lightshadow);
	padding: 10px;
}
.contact-page .enquiry-form-grid {
	margin-top: 5em;
}
.enquiry-form__details form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.enquiry-logo {
	text-align: center;
}
.enquiry-logo img, .enquiry-logo svg {
	width: 200px;
}
.enquiry-form__input:nth-child(2),
.enquiry-form__input:nth-child(7) {
	width: 100%;
}
.enquiry-form__title {
	margin-bottom: 4em;
}
.enquiry-form__input textarea,
.enquiry-form__input input,
.enquiry-form__input select {
	width: 100%;
}
.enquiry-form__input {
	width: 100%;
	margin-bottom: 1em;
}
.move-right {
	align-self: center;
	text-align: left;
}
.enquiry-form__input textarea, .enquiry-form__input input, .enquiry-form__input select {
	width: 100%;
	border: solid thin var(--brown);
	padding: 10px;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.enquiry-form__input textarea {
	height: 50px;
}
.enquiry-form__input textarea:focus {
	height: 100px;
	background-color: var(--lgrey);
	border: solid thin var(--main-color);
	color: var(--main-color);
	box-shadow: 0 .5em 1em var(--black);
}

input[type=text]:focus,
input[type=email]:focus {
	background-color: var(--lgrey);
	border: solid thin var(--main-color);
	color: var(--main-color);
	box-shadow: 0 .5em 1em var(--black);
}

input[type=submit] {
	color: var(--white);
	background-color: var(--purple);
	border: none;
	width: 200px;
	border-radius: 10px;
	cursor: pointer;
}
label {
	font-weight: var(--bold);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #ffb900;
	border-radius: 10px;
}
.wpcf7-not-valid-tip {
	background-color: lightpurple;
	padding: 0.5em;
	border-radius: 10px;
	margin-top: 1em;
	color: var(--white);
}
.wpcf7 form.sent .wpcf7-response-output {
	background-color: #38883f;
	border-radius: 10px;
	color: var(--white);
}
/* -------------------- Cookie Notice -------------------- */

.cookie-notice {
    width: min(80%, 470px);
    z-index: 50;
    box-sizing: border-box;
    position: fixed;
    bottom: 5%;
    left: 50%;
    max-width: 500px;
    background: var(--white);
    border: solid thin var(--black);
    box-shadow: var(--box-shadow) var(--black);
    transform: translateX(-50%);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    align-items: center;
    padding: 1em;
    opacity: 0;
    animation: fade-in .3s forwards 2s linear;
}
.cookie-notice p {
    margin: 0;
}
.cookie-notice a {
	color: var(--main-color);
}
.cookie-notice-header {
	font-weight: bold;
}
.cookie-notice button {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
	outline: solid thin var(--purple);
	outline-offset: 5px;
	background-color: var(--purple);
	border: none;
	font-weight: bold;
	color: var(--white);
	cursor: pointer;
}
.cookie-notice button:hover {
	outline: solid thin var(--main-color);
	outline-offset: 5px;
	background-color: var(--main-color);
}
/* -------------------- Funder -------------------- */
.sponsor-logos {
	font-size: 12px;
}
.sponsor-logos ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sponsor-logos img {
	width: auto;
	height: 100px;
}
/* -------------------- Footer -------------------- */
footer {
	text-align: center;
}
footer .logo {
	text-align: center;
}
footer a {
	color: var(--white);
}
footer a:hover {
	color: var(--brown);
}
footer .logo svg {
	max-width: 250px;
}
footer .contact-details {
	font-size: 13px;
	margin-top: 2em;
}
.copyright {
	font-size: 12px;
}
.grecaptcha-badge {
	opacity: 0;
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices


*/



/* -------------------- 800 -------------------- */

@media all and (min-width: 50em) {

.header-grid .social-icons, .header-grid .btn-book {
	display: block;
}
.header-grid {
	grid-template-columns: 1fr 100px 171px 50px;
}
.menu-btn {
	margin-top: 0;
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2rem;
}
.page-intro h1 strong,
.page-intro h2 strong {
    font-size: 2rem;
}
.split-grid {
	grid-template-columns: 1fr 1.5fr;
}
.half-grid {
	grid-template-columns: 2fr 1fr;
}
.twocol {
	grid-template-columns: 1fr 1fr;
}
.header-grid {
	margin-top: 2em;
	margin-bottom: 2em;
}
.landing-grid {
	padding-top: 5em;
	padding-bottom: 4em;
}
.landing-grid .cta-buttons {
	grid-area: cta-buttons;
	margin-top: 0;
	margin-bottom: 0;
}
.gallery-item {
	width: 15%;
}
}


/* -------------------- 1200 -------------------- */

@media all and (min-width: 75em) {

.header-grid {
	display: grid;
	grid-template-columns: 250px 1fr 100px 150px;
}
.topcontact {
	display: block;
}
.logo {
	text-align: center;
}
.main-background {
	margin-top: -2em;
}
.landing-grid {
	grid-template-areas: 
	"title bullets" 
	"cta-buttons bullets";
}
.page-selection__grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-flow: unset;
	overflow-x: visible;
	overscroll-behavior-inline: contain;
}
.page-selection__link {
	width: 100%;
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: flex;
	justify-content: center;
	z-index: 2;
}
.menu-btn {
	display: none;
}
.navigation-mobile {
	display: none;
}

/* -------------------- Drop-Down -------------------- */
.sub-menu {
	margin-top: -5px;
}
nav ul ul {
	display: none;
}
nav ul li:hover > ul {
	display: block;
	z-index: 10;
	border-radius: 0 10px 10px 10px;
	overflow: hidden;
}
nav ul {
	padding: 0px 5px 0px 5px;
	list-style: none;
	position: relative;
	margin: .5em 1em;
}
nav ul:after {
	content: ""; clear: both; display: block;
}
nav ul li {
	float: left;
}
nav ul li:hover {
	background-color: var(--purple);
	border-radius: 5px;
}
nav ul li:hover a {
	color: #fff;
}
nav ul li a {
	display: block;
	padding: 10px;
	color: var(--main-color);
	text-decoration: none;
}
nav ul ul {
	background: var(--purple); border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
nav ul ul li {
	float: none;
	position: relative;
}
nav ul ul li a {
	padding: 10px;
	color: var(--lgrey);
	font-weight: normal!important;
}
nav ul ul li a:hover {
	background: var(--brown);
	color: var(--white);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
ul.sub-menu {
	margin: -5px 0 0 0;
	width: 50%;
}
.enquiry-form__input {
	width: 48%;
}
footer .contact-details {
	font-size: 16px;
}
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices with bigger screens


*/


@media all and (min-width: 1900px) {

}


