/*
Theme Name: Palmers
Author: JE Consulting
Author URI: https://www.je-consulting.co.uk/
Version: 1.0.0
*/
.headerFirst {
	text-align: right;
	padding: 10px 0;
}
.headerFirst .ButtonWhite {
	margin-left: 10px;
	font-size: 0.75rem;
}
.headerFirst p{
	color: #fff;
}
header {
	background-color: #fff;
	box-shadow: 0px 4px 5px 0px rgb(0 0 0 / 15%);
	padding: 20px 0 10px 0;
}
.TopMenu .menu {
	padding: 0;
	margin: 0;
	display: flex;
	list-style-type: none;
	gap: 10px;
}
.TopMenu {
	display: flex;
	justify-content: end;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
}
.TopMenu .menu a {
	display: block;
	padding: 2px 8px;
	background-color: var(--pink);
	color: #fff;
	font-size: 0.75rem;
}
.TopMenu .menu a:hover{
	background-color: var(--secondary)
}
.HeaderSocial {
	display: flex;
}
.HeaderSocial a {
	font-size: 15px;
	padding: 0 5px;
	border-right: 1px solid var(--primary);
}
.HeaderSocial a:last-child{
	border-right: 0;
	padding-right: 0;
}
.FooterAddresses {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
	margin-bottom: 30px;
}
.FooterInner {
	display: grid;
	grid-template-columns: 70% auto;
	gap: 40px;
}
footer {
	background: #470624;
	background: linear-gradient(0deg,rgba(71, 6, 36, 1) 0%, rgba(87, 5, 43, 1) 100%);
	padding: 30px 0;
}
footer p, footer a, footer li{
	color: #fff;
	font-size: 0.75rem;
}
.FooterMenu .menu {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-bottom: 10px;
	display: flex;
}
.FooterMenu .menu a {
	padding: 0 8px;
	border-right: 1px solid #fff;
}
.FooterMenu .menu li:first-child a{
	padding-left: 0;
}
.FooterMenu .menu li:last-child a{
	padding-right: 0;
	border-right: 0;
}
.LegalFooter {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #fff;
	margin-top: 20px;
	padding-top: 10px;
}
.LegalFooter p{
	margin-bottom: 0;
}
.SmallLogos {
	display: flex;
	justify-content: flex-end;
	gap: 2%;
	flex-wrap: nowrap;
}
.SmallLogos img {
	width: auto;
	height: auto;
	max-width: 18%;
	max-height: 100%;
	object-fit: contain;
}
.YearsLogo {
	text-align: right;
}
/* Resonsive Code */
/* Device = Laptops, Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
}

/* Device = Tablets, Ipads (portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
}

/* Device = Tablets, Ipads (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

/* Device = Low Resolution Tablets, Mobiles (Landscape) */
@media (min-width: 481px) and (max-width: 767px) {
}

/* Device = Most of the Smartphones Mobiles (Portrait) */
@media (min-width: 320px) and (max-width: 480px) {
}