﻿/*
Theme Name: Melco Coffee Services
Theme URI: https://melcocoffee.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-0622
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/
:root {
	--main-color: #433E3A;
	--brown: #EBDFD7;
	--primary: #898F4B;
	--cream: #FFF9F4;
    --dark-cream: #FBF5F0;
  	--white: #FFFFFF;
	--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:17px;
    font-family: 'Secular One', sans-serif;
	margin: 0;
	padding:0;
  	color: var(--main-color);
	opacity: 1;
}
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 {
	width: min(92%, 1600px);
	margin-inline: auto;
}
.easy-reading {
	width: min(90%, 900px);
	margin-inline: auto;
}
a {
  text-decoration: none;
}
p {
	line-height:1.6;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.absol {
	position:relative;
}
h1,h2,h3,h4 {
	font-weight: normal;
}
h1::before, h1::after,
h2::before, h2::after {
	content: " - "
}

/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.ptb {
	padding-top: 5em;
	padding-bottom: 5em;
}
.drop {
    margin-top: 3em;
}
.pad-down {
	padding-bottom: 5em;
}
.pad-mini {
	padding-bottom: 3em;
}
.bring-up {
	margin-top: -50px;
}
.overlap {
	z-index: 4;
}
/* -------------------- Backgrounds -------------------- */
.green-background {
    background-color: var(--primary);
}
.dark-cream-background {
    background-color: var(--dark-cream);
}
.brown-background {
    background-color: var(--main-color);
}
.bean-pattern {
	background-image: url('svg/bean-pattern.svg');
}
.video {
	z-index: 1;
}
video {
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
	width: 100%;
	height: 100%;
}
.googlemaps {
	z-index: 1;
}
.googlemaps iframe{
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
	width: 100%;
}
/* -------------------- Header -------------------- */
header {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.logo-nav {
	display: grid;
	grid-template-columns: 100px 2fr 50px;
	align-items: center;
	grid-gap: 1em;
}
.logo img {
    width: 100%;
    height: auto;
	max-width: 100px;
}
.telephone {
    color: var(--primary);
    display: none;
	text-align: center;
}
.basket-icon {
	text-align: right;
}
/* -------------------- Feature Section -------------------- */
.feature-section {
    background-color: var(--cream);
    background-image: url('svg/beans-decoration.svg');
    background-size: contain;
    overflow: hidden;
    z-index: 1;
}
.feature-section__sun {
    position: absolute;
    bottom: -80%;
    left: 50%;
    width: 450px;
    z-index: -2;
    transform: translate(-50%, -50%);
}
.feature-section__hill {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.feature-section__hill img, .feature-section__sun img, 
.feature-section__cups img, .feature-section__shadow img, .slogan img,
.section-links__image img {
    width: 100%;
    height: auto;
}
.slogan img {
    max-width: 600px;
}
.feature-section__cups img, .feature-section__shadow img {
    max-width: 350px;
}
.feature-section__cups {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}
.feature-section__cups img:nth-child(1),
.feature-section__cups img:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    margin-inline: auto;
}
.feature-section__cups img:nth-child(1) {
    align-self: flex-end;
    z-index: 2;
}
.feature-section__cups img:nth-child(2) {
    align-self: flex-end;
    z-index: 1;
}
.slogan {
    margin-bottom: 5em;
}
.mobile-view {
	height: 2em;
	margin-top: -2em;
}
/* -------------------- Badge -------------------- */
.buy-now {
    width: min(90%, 400px);
	margin-inline: auto;
    z-index: 4;
}
.buy-now__badge {
	position: absolute;
	background-color: var(--primary);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	top: -50px;
	left: 0;
	border: solid 2px transparent;
	box-shadow: var(--boxshadow) var(--black);
	z-index: 4;
    border: solid 3px var(--white);
	padding: 10px;
	transition: background-color 0.5s linear, transform 0.2s linear;
}
.buy-now__badge a {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white);
}
.complete-coffee {
	position: absolute;
	width: 120px;
	height: 100px;
	top: 0px;
	left: 0;
}
.complete-coffee img {
	width: 100%;
	height: auto;
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: none;
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--primary);
	color: var(--white);
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	color: var(--white);
	background-color: var(--primary);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--primary);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
}
.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: 2em;
	top: 2em;
	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: 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);
}
.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-title p, .page-title h1, .page-title h2 {
	margin: 0;
}
.page-title h1, .page-title h2 {
	font-size: 2em;
}
.page-title p {
	font-size: 1.5em;
}
.white {
	color: var(--white);
}
.green {
	color: var(--primary);
}
.page-intro a {
	color: var(--main-color);
	border-bottom: solid thin var(--main-color);
}
.page-intro a:hover {
	color: var(--black);
	border-bottom: solid thin var(--main-color);
}
/* -------------------- Section Links -------------------- */
.section-links-grid {
	display: grid;
	grid-gap: 1em;
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding-top: 1em;
	padding-bottom: 2em;
}
.section-links, .section-links__long {
	display: grid;
    background-color: var(--white);
    border-radius: var(--border);
    box-shadow: var(--boxshadow) var(--black);
    align-items: center;
    border: solid 2px var(--primary);
}
.section-links {
	width: 285px;
}
/* .snaps-inline {
	scroll-snap-type: inline mandatory;
	scroll-padding-inline: 1rem;
}
.snaps-inline > * {
	scroll-snap-align: start;
} */
.section-links a {
    display: grid;
    grid-template-columns: 100px 2fr;
    grid-gap: 1em;
	color: var(--main-color);
	transition: transform 0.5s ease-in-out;
}
.section-links a:hover .section-links__image {
	transform: translateY(-20px);
}
.section-links:hover, .section-links__long:hover {
    border: solid 2px var(--brown);
    background-color: var(--cream);
}
.section-links__description {
	align-self: center;
	padding: 0 0.2em;
}
.section-links .section-links__image {
	align-self: center;
	transform: translateY(0px);
	transition: transform 0.5s ease-in-out;
}
.section-links__description p {
	margin: 0;
}
.section-links__description p:nth-child(2) {
	display: none;
}
/* -------------------- Section Links Long -------------------- */
.section-links__long a {
    display: grid;
    grid-template-columns: 1fr;
	color: var(--main-color);
	transition: transform 0.5s ease-in-out;
}
.section-links__long .section-links__image {
	transform: translateY(-20px);
	text-align: center;
}
.section-links__long .section-links__image img {
	max-width: 100px;
}
.section-links__long .section-links__description {
	margin-top: -20px;
	padding-bottom: 1em;
}
/* -------------------- Grid Images -------------------- */
.grid-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.grid-image:nth-child(1) {
	grid-column: span 2;
}
/* -------------------- Coffee Machines Layout -------------------- */

.background-change {
    background-color: var(--cream);
}
.background-change .coffee-machine-section:nth-child(odd) {
    background-image: url('webp/machine-bean-top.webp');
	background-size: contain;
	background-repeat: no-repeat;
}
.background-change .coffee-machine-section:nth-child(even) {
    background-color: var(--dark-cream);
	background-image: url('webp/machine-bean.webp');
	background-size: contain;
	background-repeat: no-repeat;
}
.background-change .coffee-machine-section:nth-child(even) .coffee-machine__text {
    grid-column: 1;
}
.coffee-machine-section {
    padding: 3em 0;
}
.coffee-machine-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    align-items: center;
}
.coffee-machine__images {
	display: grid;
	grid-template-columns: 1fr;
	z-index: 1;
}
.coffee-machine__image {
    grid-column: 1;
    grid-row: 1;
    align-self: flex-end;
    margin-bottom: -2em;
}
.coffee-machine__placeholder {
	grid-column: 1;
	grid-row: 1
	;z-index: -1;
	align-self: flex-end;
}
.coffee-machine__text {
    grid-row: 1;
}
.coffee-machine__images img,
.coffee-machine__images svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}
.coffee-machine__image img {
    max-width: 400px;
	transition: transform 0.5s ease-in-out;
}
.coffee-machine__placeholder img,
.coffee-machine__placeholder svg {
    max-width: 500px;
}
#machine-shadow {
	transition: opacity 0.5s ease-in-out;
}
/* -------------------- Machine Animation -------------------- */
.coffee-machine-grid:hover .coffee-machine__images #machine-shadow {
	opacity: 0.03;
}
.coffee-machine-grid:hover .coffee-machine__image img {
	transform: translateY(-20px);
}
/* -------------------- Unordered List -------------------- */
.overview ul li {
	margin-bottom: 1em;
	list-style-type: none;
	padding: 0.25em 0 0 2.5em;
	position: relative;
}
.overview ul li:before {
	content: " ";
	display: block;
	border: solid 0.8em var(--primary);
	border-radius: 0.8em;
	height: 0;
	width: 0;
	position: absolute;
	left: 0.5em;
	top: 40%;
	margin-top: -0.5em;
}
.overview ul li:after {
	content: " ";
	display: block;
	width: 0.3em;
	height: 0.6em;
	border: solid var(--white);
	border-width: 0 0.2em 0.2em 0;
	position: absolute;
	left: 1em;
	top: 40%;
	margin-top: -0.2em;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* -------------------- Show Hide -------------------- */
.Hide-Additional {
	display: none;
}
/* -------------------- Gallery -------------------- */
.gallery, .grid, .links {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 20%;
	flex-grow: 1;
	margin: 5px;
}
.gallery-item img {
	width: 100%;
	height: auto;
}
.gallery-item img:hover {
	opacity: 0.6;
}
.split-images {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	border-radius: var(--border);
	overflow: hidden;
	box-shadow: var(--boxshadow) var(--black);
}
.split-image {
	background-color: var(--white);
}
.split-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* -------------------- Banner -------------------- */
.feature-banner {
	height: 80vh;
	overflow: hidden;
}
.feature-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.google_map iframe {
	width: 100%;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
/* -------------------- Melco Coffee Selection -------------------- */
.melco-coffee-selection__grid {
	display: grid;
	grid-gap: 1em;
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
}
.melco-coffee-selection__link {
	overflow: hidden;
	transition: background-color 200ms ease-in-out;
	width: 300px;
	border-radius: var(--border);
	background-color: var(--white);
/* 	height: 500px; */
	box-shadow: var(--boxshadow) var(--black);
}
.melco-coffee-selection__link:hover {
	background-color: var(--cream);
}
.melco-coffee-selection__link:hover .melco-coffee-selection__image img {
	transform: scale(1.1);
}
.melco-coffee-selection__image {
    overflow: hidden;
    height: 400px;
    border-radius: var(--border);
}
.melco-coffee-selection__image img {
	border-radius: var(--border);
	transition: transform 200ms ease-in-out;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.melco-coffee-selection__text {
	padding: .5em;
	margin-top: .5em;
	position: absolute;
	bottom: 0;
	color: var(--white);
}
.melco-coffee-selection__text a {
	color: currentColor;
}
.melco-coffee-selection__text h2 {
	font-size: 1.5rem;
	margin: 0;
	color: var(--white);
}
.melco-coffee-selection__sleep p {
	margin: 0;
}
.melco-coffee-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
    z-index: 1;
    border-radius: 0 0 0 50px;
    width: 100px;
    height: 80px;
}
.melco-coffee-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;
}
/* -------------------- Button -------------------- */
.btn a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
}
.btn-outline a {
	color: var(--main-color);
	border: solid 1px var(--brown);
	background-color: var(--brown);
	box-shadow: 0 0.5em 1em var(--lightshadow);
	outline: solid 1px var(--brown);
	outline-offset: 5px;
	transition: outline-offset 0.1s ease-in-out;
}
.btn a:hover, button:hover {
    color: var(--white);
	background-color: var(--main-color);
	border: solid 1px var(--main-color);
	outline: solid 1px var(--main-color);
	outline-offset: 2px;
}
/* -------------------- 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(--primary);
	outline-offset: 5px;
	background-color: var(--primary);
	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);
}

/* -------------------- Footer -------------------- */
footer {
	text-align: center;
	position: relative;
	background-color: var(--main-color);
	color: var(--white);
	padding: 5em 0;
}
footer .logo {
	text-align: center;
}
footer a {
	color: var(--white);
}
footer a:hover {
	color: var(--primary);
}
footer .logo {
    text-align: center;
    margin: 0 auto 2em auto;
}
footer .logo img {
	max-width: 100px;
}
footer .contact-details {
	font-size: 16px;
	margin-top: 2em;
}
.copyright ul, .facebook-icon ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.facebook-icon ul {
	display: flex;
	justify-content: center;
}
.facebook-icon li a {
	padding: 5px;
}
.copyright {
	font-size: 12px;
}
.grecaptcha-badge {
	opacity: 0;
}

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

#melco-cup-right {
	transform: rotateY(-60deg);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}
.coffee-machine-grid:hover #melco-cup-right,
.coffee-machine-grid:hover #melco-cup-right_2,
.feature-section:hover #melco-cup-right,
.feature-section:hover #melco-cup-right_2 {
	transform: rotateY(0deg);
}
#melco-cup-right_2 {
	transform: rotateY(70deg);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}
#bean-front {
	transform: rotate(30deg);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}
.coffee-machine-grid:hover #bean-front,
.feature-section:hover #bean-front {
	transform: rotate(0deg);
}
#coffee-fill {
	opacity: 0;
	transition: opacity 0.5s ease-in-out ;
}
.coffee-machine-grid:hover #coffee-fill,
.feature-section:hover #coffee-fill {
	opacity: 1;
}
#glass-inner {
	opacity: 1;
	transition: opacity 0.5s ease-in-out ;
}
.feature-section:hover #glass-inner {
	opacity: 0;
}
#machine-background {
	stroke: var(--white);
	fill: var(--primary);
	transition: fill 0.5s ease-in-out;
}
.coffee-machine-grid:hover #machine-background {
	fill: var(--black);
}
#settings {
	transform-origin: center;
	animation: rotate 3s infinite 0.3s linear;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*

	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) {


.feature-section__sun {
    bottom: -50%;
    left: 50%;
}
.feature-section__cups img, .feature-section__shadow img {
    max-width: 450px;
}
.buy-now__badge {
    left: -3em;
	top: 0;
}
.logo-nav {
    grid-template-columns: 1fr .5fr 100px 50px;
}
.telephone {
	display: block;
}
.grid-images {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}
.grid-image:nth-child(1) {
	grid-column: span 1;
}
	img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: auto 300px!important;
}
}


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

@media all and (min-width: 75em) {
body {
	margin: 1em;
}
.feature-section__hill {
    bottom: -3em;
}
.mobile-view {
	display: none;
}
.coffee-machine-grid {
	grid-template-columns: 1fr 1fr;
}
.coffee-machine__text {
	grid-row: 1;
	grid-column: 2;
}
.logo-nav {
    grid-template-columns: 140px 2fr .5fr 50px;
}
.section-links-grid {
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	grid-auto-flow: dense;
}
.section-links {
	width: auto;
}
.section-links__description p:nth-child(2) {
	display: block;
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: block;
}
.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(--primary);
	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(--primary); 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(--main-color);
	font-weight: normal!important;
}
nav ul ul li a:hover {
	background: var(--main-color);
	color: var(--white);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
ul.sub-menu {
	margin: -5px 0 0 0;
	width: 50%;
}
.complete-coffee {
	width: 180px;
	height: 180px;
	top: -20px;
}
.melco-coffee-selection__grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-flow: unset;
	overflow-x: visible;
	overscroll-behavior-inline: contain;
}
.melco-coffee-selection__link {
	width: 100%;
}
}

/*

	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) {

}



