/*
Theme Name: Nepal Trust
Theme URI: https://nepaltrust-org.stackstaging.com
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: 1 Build-1222
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/

/* eb-garamond-regular - latin */
@font-face {
	font-family: 'EB Garamond';
	font-style: normal;
	font-weight: 400;
	src: local('EB Garamond'),
		 url('fonts/eb-garamond-v26-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('fonts/eb-garamond-v26-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* eb-garamond-700 - latin */
  @font-face {
	font-family: 'EB Garamond';
	font-style: normal;
	font-weight: 700;
	src: local('EB Garamond'),
		 url('fonts/eb-garamond-v26-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('fonts/eb-garamond-v26-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
/* 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: #262822;
    --primary: #D33B48;
    --secondary: #198BD5;
	--cream: #FEF6E1;
	--brown: #B48A62;
	--lgrey: #FAFAFA;
  	--grey: #F2F2F2;
  	--white: #ffffff;
	--jet-black: #000000;
	--black: rgba(0, 0, 0, 0.2);
	--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);
	background-image: url('webp/nepal-pattern.webp');
}
p::selection, h1::selection, h2::selection, h3::selection, li::selection, a::selection { background-color: var(--secondary); color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: var(--secondary); 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;
	}
}

.line-an {
	display: flex;
	width: 100%;
	height: 100px;
}
.line-animation-menu {
	content: "";
	transform: scaleY(0);
	transform-origin: top;
	animation: grow-down 0.5s forwards;
	animation-delay: 1s;
	height: 100%;
	align-self: center;
	border-right: solid 2px var(--primary);
	width: 1px;
	margin: auto;
}
@keyframes grow-down {
	from {
	  transform: scaleY(0);
	}
	to {
	  transform: scaleY(1);
	}
}


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

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

h2 {
	font-size: 1.6rem;
}
h1, h2, h3, .page-title p {
	font-family: 'EB Garamond', serif;
	font-weight: normal;
    word-break: break-word;
}
p {
	line-height:1.6;
}
.main-content li {
	line-height: 2;
}
img {
	border-style: none;
}
.center, .has-text-align-center {
	text-align:center;
}
.absol {
	position:relative;
}
.aligncenter {
	text-align: center;
}
hr {
	width: 200px;
	margin: 6em auto;
	border: dotted thin var(--primary)
}
.feature-split-grid hr {
	margin: 1em auto;
}
/* -------------------- Backgrounds -------------------- */
.cream-background {
    background-color: var(--lgrey);
}
.white-background {
    background-color: var(--white);
}
.grey-background {
	background-color: var(--cream);
}
.dark-background {
	color: var(--white);
    background-color: var(--main-color);
}
.mountain-background {
	background-image: url('webp/mountains-background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--white);
}
.pattern {
	background-image: url('webp/nepal-pattern.webp');
}
/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top: 5em;
}
.drop {
    margin-top: 1em;
}
.ptb {
    padding: 5em 0;
}
.pto {
    padding-top: 1em;
}
.mini {
	margin-top: 2em;
}
.bring-up {
	margin-top: -100px;
	z-index: -1;
}
.push-down {
	margin-top: 200px;
}
.push-up {
	margin-top: -200px;
}
.margin-up {
	margin-top: -150px;
}
/* -------------------- Header -------------------- */
.logo-nav {
	display: grid;
	grid-template-columns: 1fr 20px 50px;
	align-items: center;
	padding: 1em 0 0 0;
	grid-gap: 1em;
	margin-bottom: 1em;
}
.logo {
	text-align: center;
	grid-row: 1;
	width: 150px;
}
.logo svg, .logo img {
    width: 100%;
    height: auto;
    max-width: 230px;
}
.logo-nav__social .social-icons {
	display: none;
}
.social-icons ul, .contact-details ul, .copyright ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-icons ul {
	display: flex;
	align-items: center;
}
.social-icons li {
    padding: 5px;
}
.logo-nav .social-icons {
	fill: var(--main-color);
}
.social-icons svg:hover {
	fill: var(--brown);
}
.social-icons p {
    margin: 0;
    display: none;
}
.slogan {
    position: absolute;
    width: 80%;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 1em 0;
	z-index: 1;
}
.slogan-inner {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 1em 0;
	z-index: 1;
}
.slogan h1 {
	max-width: 30ch;
}
.book-online {
    align-self: auto;
    justify-self: center;
	display: none;
}
.book-online__mobile a {
	background-color: var(--main-color);
	color: var(--white);
	text-align: center;
	display: block;
	padding: 1em 0;
}
.search-icon-link {
	grid-column: 2;
	grid-row: 1;
	text-align: right;
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: none;
    background-color: var(--grey);
}
.navigation-links {
	display: flex;
    justify-content: center;
}

/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--main-color);
	color: var(--white);
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	color: var(--white);
	background-color: var(--main-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--main-color);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
	grid-row: 1;
	margin-left: auto;
	position: absolute;
	top: 0.5em;
	right: 0;
}
.menu-btn:hover {
	background-color: var(--brown);
}
.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: 1em;
	top: 1em;
	color: var(--white);
	background-color: var(--brown);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--brown);
	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: 19px;
	margin: 0;
	padding: 0;
	color: var(--brown);
}
.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);
}
.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);
}

/* -------------------- Breadcrumbs -------------------- */
.breadcrumb-links {
	padding: 1em 0;
	font-size: 16px;
}
.breadcrumb-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
}
.breadcrumb-links ul {
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	height: auto;
}
.breadcrumb-links li {
	flex: 0 0 auto;
	width: auto;
}
.breadcrumb-links li a {
	display: block;
	color: var(--main-color);
	margin-right: 2em;
}
.breadcrumb-links li a:hover {
	color: var(--brown);
}
/* -------------------- Other-Pages Internal Links -------------------- */
.other-services__title h3 {
	color: currentColor;
	font-weight: 700;
}
.other-services__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.other-services__links li {
	width: 46%;
	flex-grow: 1;
	margin: 20px;
	text-align: center;
}
.other-services__links li a {
	display: block;
	color: var(--main-color);
	border-radius: 50px;
	border: solid 1px var(--main-color);
	padding: 20px 30px;
	background-color: var(--lgrey);
}
.other-services__links li a:hover {
	color: var(--main-color);
	background-color: var(--cream);
	box-shadow: 0 .5em 1em var(--black);
}
.other-services .current-menu-item a {
	background-color: var(--cream);
	color: var(--main-color);
	border: solid 1px var(--black);
	opacity: 0.9;
	box-shadow: 0 .5em 1em var(--black);
}
.other-services .current-menu-item a::before {
	content: 'Currently Viewing - ';
	font-size: 10pt;
	font-weight: bold;
}
.shop-links {
	padding: 1em;
	background-color: var(--white);
	color: var(--main-color);
	border-radius: var(--border);
}
/* -------------------- Page Title / CTA -------------------- */
.page-title h1,
.page-title h2,
.page-title__section h2, .page-title__section p, .page-title__article h1 {
    margin: 0;
}
.page-title p {
	margin-top: 0;
	margin-bottom: -0.5em;
}
.page-title h1,
.page-title h2, .page-title__section h2 {
    position: relative;
}
.page-title h2 {
	font-size: 2rem;
}
.brown p {
    color: var(--brown);
    font-size: 1.5rem;
}
.page-title h2::after, .page-title h1::after {
	content: "";
	border-bottom: solid 2px var(--primary);
	width: 15%;
	position: absolute;
	bottom: -0.1em;
	left: 0;
}
.page-title__section h2::after {
	content: "";
	border-bottom: solid 2px var(--primary);
	width: 15%;
	position: absolute;
	top: 0.1em;
	left: 0;
}
.page-title__article hr {
	border: solid 1px var(--primary);
	width: 15%;
}

/* -------------------- Gallery -------------------- */
.gallery, .grid, .links {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 30%;
	flex-grow: 1;
	margin: 5px;
}
.gallery-item img {
	width: 100%;
	height: auto;
	border-radius: var(--border);
}
.gallery-item img:hover {
	opacity: 0.6;
}
.lightcase-contentInner img {
	border-radius: var(--border);
}
/* -------------------- Gallery Wordpress override -------------------- */
.wp-block-gallery {
	width: 100%;
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
/* -------------------- Testimonial -------------------- */
.testimonials {
	background-color: var(--main-color);
	padding: 5em 0;
	color: var(--white);
}
.testimonial-name {
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
}
.testimonial-image a {
	border: none;
}
/* -------------------- Welcome Images -------------------- */
.welcome-images__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
.welcome-images__grid {
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	overflow-y: hidden;
}
/* -------------------- About and YouTube Section -------------------- */
.about-youtube__section {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 4em;
}
.youtube-section__description {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
	padding: 1em;
}
.description_image {
	text-align: right;
}
.decoration-image {
	margin-bottom: -150px;
}
.decoration-image img {
	width: 100%;
	height: auto;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.description_image img {
	border-radius: var(--border);
}
/* -------------------- Banner -------------------- */
.feature-banner {
	height: 80vh;
	overflow: hidden;
}
.feature-banner-image {
	overflow: hidden;
}
.feature-banner img, .welcome-image img, .feature-banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.feature-split-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	background-color: var(--jet-black);
	color: var(--white);
	overflow: hidden;
}
.home .feature-split-grid {
	min-height: 90vh;
}
.inner .feature-split {
	height: 50vh;
}
.Hide-Second-Image {
	display: none;
}
.feature-split-grid img {
	opacity: 0.5;
}
.feature-split-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.google_map iframe, .youtube-section__video iframe {
	width: 100%;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.google_map iframe {
	border: none;
}
.youtube-section__video iframe {
	border: solid 2px var(--main-color);
	transition: border 300ms ease-in-out;
}
.youtube-section__video iframe:hover {
	border: solid 2px var(--brown);
}
.inner .feature-split:nth-child(3) {
	display: none;
}
.inner .feature-split:nth-child(4) {
	display: none;
}
.feature-split video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	opacity: 0.5;
}
.video {
	overflow: hidden;
}
figure {
	margin: 2em 0;
}
.size-full img, .size-large img {
	width: 100%;
	height: auto;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
/* -------------------- Project Card -------------------- */
.projects-grid {
	display: grid;
	grid-gap: 1em;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.projects-grid__blog {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	grid-gap: 2em;
}
.home .projects-grid {
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding-bottom: 2em;
}
.home .project-card, .welcome-image {
	width: 300px;
}
.project-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--boxshadow) var(--black);
	display: grid;
	padding-bottom: 20px;
	color: var(--main-color);
	background-color: var(--white);
}
.dates {
	font-size: 12px;
}
.project-card:hover {
	box-shadow: 0 10px 1em var(--black);
}
.project-card__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: var(--black);
	transition: opacity 0.5s ease-in-out;
}
.project-card:hover .project-card__image {
	opacity: 0.8;
}
.project-card__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.project-card__text {
    padding: 20px;
}
.page-title__section a {
	color: currentColor;
}
.page-title__section h2 {
	margin-top: 0.4em;
	padding-top: 0.4em;
}
.project-card__text .btn {
    text-align: right;
}
.project-card .btn {
	align-self: center;
	text-align: center;
}
/* -------------------- page Numbers -------------------- */
.paginate {
	text-align: center;
	margin-top: 3em;
	margin-bottom: 3em;
}
.page-numbers {
	padding: var(--border);
	border: solid thin var(--primary);
	background-color: var(--primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 5px;
}
.page-numbers:hover {
	background-color: var(--secondary);
	color: var(--white);
	border: solid thin var(--secondary);
}
.current {
	color: var(--white);
	background-color: var(--secondary);
}
/* -------------------- page Selection -------------------- */
.page-selection__grid {
	display: grid;
	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);
}
.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;
}
.page-selection__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 200ms ease-in-out;
}
.page-selection__text {
    color: var(--main-color);
    padding: 1em;
    margin-top: .5em;
}
.page-selection__sleep {
	color: var(--secondary);
	font-weight: var(--bold);
}
.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;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
    z-index: 1;
    border-radius: 0 0 0 50px;
    width: 100px;
    height: 80px;
}
.page-badge p {
	margin: 0;
    width: 95px;
    margin-left: auto;
    line-height: 1.2;
}
.snaps-inline {
	scroll-snap-type: inline mandatory;
	scroll-padding-inline: 1rem;
}
  
.snaps-inline > * {
	scroll-snap-align: start;
}
/* -------------------- Social Share -------------------- */
.share-links {
	margin-top: 2em;
}
.share-links ul {
	display: flex;
	align-self: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.share-links li {
	padding: 0 5px;
	align-self: center;
}
.share-links svg {
	width: 20px;
	height: auto;
}
.share-arrow {
	margin-top: -1em;
}
.share-arrow svg {
	width: 50px;
}
/* -------------------- staff-team -------------------- */
.staff-team-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr;
}
.staff-team {
	border-radius: 10px;
	border: solid thin var(--black);
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--main-color);
	background-color: var(--white);
	transition: box-shadow 0.5s ease-in-out;
}
.staff-team:hover {
	box-shadow: 0 0 1em var(--black);
}

.staff-team__image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	box-shadow: 0 0.5em 1em var(--black);
	background-size: cover;
	background-position: center;
}

.staff-team__image {
	margin: 3em auto auto auto;
}
.staff-team__name {
	text-align: center;
}
.staff-team__name h2 {
	padding-bottom: 10px;
	border-bottom: solid thin var(--primary);
	display: inline-block;
	margin-bottom: 0;
}
.staff-team__name p {
	margin-top: 1em;
	font-size: 16px;
}
.staff-team__bio {
	padding: 0 30px 30px 30px;
}
.staff-team-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-image: url('https://nepaltrust.org/nt/wp-content/uploads/mountains.webp');
	background-size: cover;
	background-position: center;
	z-index: -1;
}
/* -------------------- Packages -------------------- */
.package-grid {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 5em;
}
.packages {
	border: solid thin var(--black);
	padding: 20px;
	border-radius: var(--border);
	background-color: var(--white);
	flex-grow: 1;
	width: 100%;
	transition: box-shadow 0.5s ease-in-out;
}
.packages__image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: -3em auto 2em auto;
	box-shadow: var(--boxshadow) var(--black);
	background-size: cover;
	background-position: center;
}
.packages:hover {
	box-shadow: var(--boxshadow) var(--black);
}
.packages hr {
    border: 1px dashed var(--main-color);
    margin: 30px auto;
}
.selected {
	border: none;
	box-shadow: var(--boxshadow) var(--black);
}
.package-title h2,
.package-title p, .best p {
	margin: 0;
	text-align: center;
}
.package-price {
	text-align: center;
	margin-top: 2em;
}
.package-price strong {
	font-size: 20pt;
	color: var(--primary);
}
.package-description {
	padding: 0 1em 1em 1em;
}
.package-description ul, .partner-logos ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.package-description li {
	line-height: 1.9em;
}
.noselect {
	opacity: 0.2;
}
.packages .best {
	display: none;
}
.packages:nth-child(4) .best {
	display: flex;
}
.best {
	position: absolute;
	width: 80px;
	height: 80px;
	color: var(--white);
	background-color: var(--secondary);
	overflow: hidden;
	border-radius: 50%;
	right: -20px;
	top: -20px;
	padding: 2px;
	box-sizing: border-box;
}
.best p {
	font-weight: bold;
	align-self: center;
	line-height: 1;
}
.package-intro {
	grid-row: 1;
}
.packages-button a {
	padding: 15px 20px;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
	text-align: center;
	display: block;
	color: var(--white);
	background-color: var(--secondary);
}
.packages-button a:hover {
	background-color: var(--primary);
}
/* -------------------- Search Container -------------------- */
.search-container, .search-pages {
    background-color: var(--white);
    border-radius: var(--border);
    padding: 0.75em;
    border: solid thin var(--black);
    transition: box-shadow 0.5s ease-in-out, border 0.5s ease-in-out;
    align-self: center;
}
.search-container:hover, .search-pages:hover {
    box-shadow: var(--boxshadow) var(--lightshadow);
	border: solid thin var(--secondary);
}
.search-container form, .search-pages form {
    display: grid;
    grid-template-columns: 2fr 20px;
}
.search-container input, .search-pages input {
    border: none;
    font-weight: bold;
    color: var(--secondary);
}
#s:focus-visible {
	outline: solid 1px var(--secondary);
	border-radius: 5px;
	outline-offset: .5em;
}
/* -------------------- Search -------------------- */
.search-results {
	width: 100%;
	margin-bottom: 60px;
	border-bottom: solid 1px var(--lgrey);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--white);
	box-shadow: var(--boxshadow) var(--black);
	border-radius: var(--border);
	box-sizing: border-box;
	page-break-inside: avoid;
	will-change: transform;
}
.search-results:hover {
	border-bottom: solid 1px var(--brown);
}
.search-results-text h3, .search-results-text p {
	color: var(--main-color);
}
.search-results-text h3 {
	font-size: 1.8rem;
	margin: 0;
}
.search-results-image {
	margin-bottom: 2em;
	font-size: 12px;
	text-align: center;
	color: currentColor;
}
.search-results-image a {
	color: currentColor;
}
.search-results-image img {
	width: 100%;
	height: 100%;
	border-radius: var(--border);
	object-fit: cover;
}
.search-results-text {
	flex-grow: 1;
	width: 60%;
	padding: 1em;
	box-sizing: border-box;
}
.search label {
	display: none;
}
.search-page input:nth-child(2) {
	width: 80%;
	flex-grow: 1;
}
.search-page #searchform {
	display: flex;
}
.count-grid {
	column-count: auto;
	column-fill: balance;
	column-gap: 1em;
	column-width: 300px;
}
/* -------------------- Search Not Found -------------------- */
.not-found {
	text-align: center;
	margin-bottom: 5em;
}
.unhappy {
	font-size: 3rem;
	font-weight: bold;
}
#searchcar {
	padding-bottom: 3em;
}
.full {
	margin: auto;
}
/* -------------------- Circle Image -------------------- */
.circle-image {
	width: 250px;
	margin-inline: auto;
}
.circle-image img, .partner-logos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
.partner-logos ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}
.partner-logos li {
	width: 200px;
}
/* -------------------- Room Details -------------------- */
blockquote {
	margin: 2em 0;
	color: var(--main-color);
	border-left: solid 5px var(--primary);
	padding-left: 1em;
	font-style: italic;
}

summary {
    padding: 1em 0 0.5em 0;
    cursor: pointer;
    outline: none;
    color: var(--main-color);
    margin-top: 2em;
	margin-bottom: 1em;
	border-bottom: solid thin var(--black);
	font-size: 1.2rem;
	font-weight: var(--bold);
}
details p {
	padding-bottom: 2em;
	padding-left: 1.5em;
}
/* details > summary {
	list-style: none;
} */
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;
	}
}
details .gallery {
	margin-top: 1em;
}
/* -------------------- Team -------------------- */
.team-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	margin-bottom: 6em;
}
.team {
	border-radius: 10px;
	border: solid thin var(--lgrey);
	background-color: var(--white);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.team:hover {
	box-shadow: 0 0 1em var(--black);
}
.team__image {
	width: 150px;
	height: 150px;
	margin: 3em auto auto auto;
	background-color: var(--main-color);
	border-radius: 50%;
	box-shadow: 0 0.5em 1em var(--black);
	background-size: cover;
	background-position: center;
}
.team__name {
	text-align: center;
}
.team__name h2 {
	border-bottom: solid thin var(--secondary);
	display: inline-block;
	margin: 20px 0 5px 0;
	color: var(--primary);
	font-size: 1.5rem;
}
.team__name p {
	margin: 0;
	font-size: 10pt;
}
.team__bio {
	padding: 0 30px 30px 30px;
}
.team-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;

	background-size: cover;
	background-position: center;
	z-index: -1;
}


/* -------------------- Button -------------------- */
.btn a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
}
.btn-outline a {
	color: var(--white);
	border: solid 1px var(--primary);
	background-color: var(--primary);
	box-shadow: 0 0.5em 1em var(--lightshadow);
	outline: solid 1px var(--primary);
	outline-offset: 5px;
	transition: outline-offset 0.1s ease-in-out;
}
.btn-blue a {
	color: var(--white);
	border: solid 1px var(--secondary);
	background-color: var(--secondary);
	box-shadow: 0 0.5em 1em var(--lightshadow);
	outline: solid 1px var(--secondary);
	outline-offset: 5px;
	transition: outline-offset 0.1s ease-in-out;
}
.btn a:hover, button:hover {
	background-color: var(--brown);
	border: solid 1px var(--brown);
	outline: solid 1px var(--brown);
	outline-offset: 2px;
}
/* -------------------- Footer -------------------- */
footer {
	color: var(--white);
	padding: 3em 0;
	background-color: var(--main-color);
}
footer a {
	color: currentColor;
}
footer a:hover {
	color: var(--primary);
}
footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer h4 {
	margin-top: 0;
	margin-bottom: 0;
}
footer svg {
	fill: var(--white);
}
.footer-logo svg {
	width: 100%;
	height: auto;
	max-width: 250px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 60px;
	text-align: center;
}
.footer-logo ul {
	display: flex;
	justify-content: center;
}
.footer-logo li a {
	padding: 5px;
	display: block;
}
.copyright {
	font-size: 12px;
	color: var(--white);
	padding: 5px 0;
	border-top: solid 1px var(--lgrey);
	padding-top: 1em;
}
.copyright p {
	margin: 0;
}
.copyright a, footer a {
	color: var(--white);
}
.copyright a:hover, footer a:hover {
	color: var(--secondary);
}
.grecaptcha-badge {
	opacity: 0;
}
.sbi_photo_wrap {
	border-radius: 10px;
	overflow: hidden;
}
.instagram {
	display: none;
	visibility: hidden;
}

/* -------------------- Enquiry Form -------------------- */
.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(--main-color);
	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(--blue);
	box-shadow: 0 .5em 1em var(--black);
}

input[type=text]:focus,
input[type=email]:focus {
	background-color: var(--lgrey);
	color: var(--brown);
}

input[type=submit] {
	color: var(--white);
	background-color: var(--brown);
	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: pink;
	padding: 0.5em;
	border-radius: 10px;
	margin-top: 1em;
}
.wpcf7 form.sent .wpcf7-response-output {
	background-color: #38883f;
	border-radius: 10px;
}

/* -------------------- 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(--boxshadow) 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(--secondary);
	outline-offset: 5px;
	background-color: var(--secondary);
	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);
	color: var(--white);
}
/* -------------------- Footer -------------------- */


/*

	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: 70em) {
/* -------------------- Navigation -------------------- */
.navigation {
	display: block;
}
.menu-btn, .book-online__mobile {
	display: none;
}
.navigation-mobile {
	display: none;
}
.logo-nav {
    grid-template-columns: 250px 2fr 50px 200px;
    padding: 2em 0
} 
.search-icon-link {
	grid-column: 3;
}
.book-online {
    justify-self: flex-end;
}
.logo-nav__social .social-icons {
	display: block;
}
h1 {
	font-size: 3rem;
}
.page-title h2 {
	 font-size: 3rem;
}
.logo {
	grid-row: 1;
	width: auto;
	grid-column: 2;
}
.gallery-item {
	width: 20%;
}
.book-online {
	display: block;
}
/* -------------------- 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(--secondary);
	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(--secondary); 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(--primary);
	color: var(--white);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
ul.sub-menu {
	margin: -5px 0 0 0;
	width: 50%;
	box-shadow: var(--boxshadow) var(--black);
}
.home .project-card, .welcome-image {
	width: auto;
}
.decoration-image img {
	max-width: 350px;
}
.youtube-section__description {
	grid-template-columns: 2fr 160px;
	grid-gap: 2em;
}
.breadcrumb-links ul {
	justify-content: center;
}
.feature-banner-image {
	max-height: 350px;
}
}


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

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


.social-icons p {
    display: block;
}
.about-youtube__section {
	grid-template-columns: 1fr 2fr;
	grid-gap: 10em;
}
.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%;
}
.inner .feature-split:nth-child(3) {
	display: block;
}
.inner .feature-split:nth-child(4) {
	display: block;
}
.enquiry-form__input {
	width: 48%;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	text-align: left;
}
.instagram {
	display: block;
	visibility: visible;
}
.staff-team-grid {
	grid-template-columns: 1fr 1fr;
}
.logo-nav {
	margin-bottom: 0;
}
}

/*

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


*/

