:root {
	--white: #FFF;
	--blue: #006CBE;
	--light-grey: #EEEEEE;
	--dark-grey: #525057;
}

html {
  scroll-behavior: smooth;
}

a {
	color: var(--blue);
}

a:hover {
	text-decoration: underline;
}

/** wrapper **/
.wrapper {
	overflow: hidden;
}
.container {
	max-width: 100% !important;
}
article {
	max-width: 1200px;
  	margin: 0 auto;
}

/* ----------------------------------------------------- Background Styles ------------------------------------------------- */
.bg-light-grey {
	background-color: var(--light-grey);
}

.bg-white {
	background-color: var(--white);
}
.bg-blue {
	background-color: var(--blue);
	color: var(--white);
}
.bg-blue p, .bg-blue a, .bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4, .bg-blue h5, .bg-blue h6, .bg-blue li {
	color: var(--white);
}


/* ----------------------------------------------------- Menu Styles ------------------------------------------------- */

.menu ul li ul {
	position:absolute;
	left:-999em;
	z-index:9999 !important;
	margin: 0 0 0 -25px;
	width: auto;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: white;
}
.menu ul li ul li {
	display: block;
	margin-bottom: 0;
}
.menu ul li:hover ul, .menu ul li ul:hover {
	left:auto;
}
/** Menu arrows **/
.menu li > a:after {
    content: '  ▾';
	vertical-align: 1px;
}
.menu li > a:hover:after {
    color: #444;
    content: '  ▾';
	vertical-align: 1px;
}
.menu li > a:only-child:after {
    content: '';
}
.menu ul {
	padding: 0px;
	margin: 0;
}
.menu li {
	list-style: none;
	  display: inline-block;
	  background-image: none;
	  border-left: solid 1px;
	  padding-left: 44.5px;
	  padding-right: 44.5px;
	  padding-top: 1%;
	  padding-bottom: 1%;
}
.menu {
	padding-bottom: 0;
	margin-bottom: 0;
	
}
.menu a {
	color: var(--dark-grey);
	text-decoration: none;
}
.menu a:hover {
	color: var(--blue);
}

.menu li:last-child {
    border-right: solid 1px;;
}


/* ----------------------------------------------------- Header And Banner Image Styles ---------------------------------------------------------------- */

header {
	/*position: absolute;*/
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	/*padding: 50px 5%;*/
}
header .logo {
	margin-top: -10px;
}
.nav-bar {
}
.logo {
	max-width: 220px;
	min-width: 160px;
	z-index: 99999;
	position: relative;
}

/* # WooCommerce Cart Icon CSS with FontAwesome 5
---------------------------------------------------------------------------------------------------- */
.basket-icon {
	margin: -5px 10px 0;
	float: right;
}
.basket-icon li {
	list-style: none;
}
.cart-contents {
    position: relative;
    display: flex !important;
    flex-flow: column nowrap;
    justify-content: center;
}

.cart-contents::before {
	font-family: FontAwesome;
    font-weight: 900;	
    content: "\f291" !important;
    font-size: 22px;
	color: var(--navy-blue);
}

.cart-contents:hover {
    text-decoration: none;
}

.cart-contents-count {
	position: absolute;
    	top: 20px;
   	right: -8px;
   	transform: translateY(-105%) translateX(25%);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 12px;
	line-height: 22px;
	height: 22px;
   	width: 22px;
	vertical-align: middle;
	text-align: center;
	color: #fff;
    	background: var(--dark-grey);
    	border-radius: 50%;
    	padding: 1px;  
}
/* ---------------------------------------------- */

.banner-image {
	width: 100%;
	height: auto;
	min-height: 65vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
}
.banner-image-sm {
	min-height: 50vh;
	height: 50vh !important;
}
.full-width-image-bg {
	height: 40vh; 
	background-size: cover; 
	background-repeat: no-repeat; 
	background-position: center;
}
.searchcontainer {
	margin-right: 20px;
	background-color: var(--light-grey);
}
form.searchbox {
	border: 1px solid var(--navy-blue);
}
.searchbox-input {
	border: 0;
	background: none;
	padding-left: 15px;
	font-size: 13px;
}
input.searchbox-submit {
	background: none !important;
  	cursor: pointer;
	color: var(--navy-blue) !important;
	width: 33px;
	padding: 8px;
}

/* ----------------------------------------------------- Generic Content Styles ---------------------------------------------------------------- */

.content-padding {
	padding: 5%;
}
.content-padding-sm {
	padding: 2.5% 5%;
}
.content-padding-sm-sides {
	padding: 2.5%;
}
.content-margin {
	margin: 5% 0;
}
.min-height {
	min-height: 350px;
}
.content-padding-lrg-sides {
	padding: 3.5% 10%;
}

.overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
}

.banner-image-text {
  color: var(--white);
  font-weight: 400;
  font-size: 35px;
  line-height: initial;
	text-align: center;
	padding: 10%;
}

.banner-image {
    width: 100%;
    height: auto;
    /*min-height: 65vh;*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
	background-blend-mode: multiply;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    width: 100%;
    color: #fff;
    height: 100%;
}
.banner-overlay *, .banner-image * {
	color: #fff;
}
.background-centered {
	background-position: center center;
  	background-repeat: no-repeat;
  	background-size: cover;
}

.box-navy-blue-light, .box-blue-light {
	box-shadow: 0 0 rgba(0, 0, 0, 0.2), 0 0px 8px 0 rgba(0, 0, 0, 0.19);
	padding: 20px;
	height: 100%;
}

.team {
    width: 24%;
}



/* ----------------------------------------------------- Header Slider ---------------------------------------------------------------- */
.custom-slider .slide {
    height: 400px; /* or whatever height you want */
}

.custom-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* THIS centres it */
}



.custom-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
	height: 550px; 
}

.custom-slider {
    position: relative;
    display: flex;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 60%;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.5s ease;
    z-index: 1;
}

.slide img {
    width: 100%;
}

.slide-title {
    background: #246fb5;
    color: #fff;
    padding: 14px;
    font-size: 20px;
    text-align: center;
}

/* Centre slide */
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

/* Left */
.slide.left {
    opacity: 0.65;
    transform: translateX(-60%) scale(0.85);
    z-index: 2;
}

/* Right */
.slide.right {
    opacity: 0.65;
    transform: translateX(60%) scale(0.85);
    z-index: 2;
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue);
    border: none;
    font-size: 32px;
    padding: 0;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
    z-index: 10;
	height: 50px;
  width: 50px;
}

.slide-prev { left: 20px; }
.slide-next { right: 20px; }

/* ----------------------------------------------------- Button and A Styles ---------------------------------------------------------------- */

a.button  {
	text-align: center;
	color: var(--white);
	font-weight: bold;
	font-size: 16px;
	padding: 8px 15px;	
	text-decoration: none !important;
}

button  {
	text-align: center;
	background-color: var(--blue);
	color: var(--white) !important;
	font-weight: 400;
	font-size: 16px;
	padding: 8px 20px;	
	text-decoration: none !important;
	border: none;
	transition-property: all;
    transition-duration: 500ms;
	cursor: pointer;
	border-radius: 0px;
}
button:hover {
	background-color: var(--blue) !important;
	color: #fff;
}

.btn-white  {
	text-align: center;
	background-color: var(--white);
	color: var(--blue);
	font-weight: 400;
	font-size: 16px;
	padding: 8px 20px;	
	text-decoration: none !important;
	border: none;
	transition-property: all;
    transition-duration: 500ms;
	cursor: pointer;
	border-radius: 0px;
}
.btn-white:hover  {
	background: var(--grey) !important;
}




.zoom {
  transition: transform .2s;
}
.zoom:hover {
  -ms-transform: scale(1.03); /* IE 9 */
  -webkit-transform: scale(1.03); /* Safari 3-8 */
  transform: scale(1.03); 
}

.woocommerce-Reviews {
	display: none !important;
}

.reviews_tab {
	display: none !important;
}


/* ----------- Blog Styles ----------- */
.blog {
	margin-bottom: 50px;
	transition: opacity .25s ease-in-out;
	  -moz-transition: opacity .25s ease-in-out;
	  -webkit-transition: opacity .25s ease-in-out;
}
.blog a:hover {
	text-decoration: none !important;
}
.blog-image {
	aspect-ratio: 1.7 / 1;
	margin-bottom: 30px;
}
.blog-image-category {
	border-radius: 15px 15px 0 0;
	overflow: hidden;
	 margin-bottom: 0;
}
.featured-cat-img {
	height: 25vw;
}
.blog-image img.attachment-post-thumbnail, .blog-image img.attachment-post-thumbnails {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.blog-image-home img.attachment-post-thumbnail, .blog-image-home img.attachment-post-thumbnails {
	object-fit: cover;
}
.featured-cat-img img.attachment-post-thumbnail, .featured-cat-img img.attachment-post-thumbnails {
	width: 100%;
	height: auto;
}
.blog-text {
	padding: 20px;
}
.blog-text-lrg {
	height: 250px;
}
p.category-tags span {
	border: solid 1px var(--navy-blue);
	padding: 5px 15px;
	border-radius: 15px;
	margin-right: 10px;
	text-wrap: nowrap;
}
p.category-tags span:hover {
	background-color: var(--navy-blue);
	color: var(--white);
}
p.category-tags span.Events {
	display: none;
}

.page-numbers {
	padding: 2px 8px;
	border: 1px solid var(--light-grey);
}
.page-numbers.current {
	background-color: var(--light-grey);
}


/* ----------------------------------------------------- Woocommerce Styles ---------------------------------------------------------------- */

/*START ORIGINAL WOOCOMMERCE STYLES*/

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1; /* makes every image square */
  object-fit: cover;
  display: block;
  margin: 0 0 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 5% !important;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
  padding-bottom: 0 !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 2em;
  padding: 5% !important;
}

#wps-slider-section .sp-wps-product-image-area {
	height: 250px;
}

#wps-slider-section img.wpsf-product-img {
	max-height: 250px;
	width: auto;
}

#sidebar {
	display: none;
}

.woocommerce div.product p.price {
	font-size: 25px;
}

.product-excerpt {
	color: var(--dark-grey) !important;
}

.product-excerpt:hover {
	color: var(--blue) !important;
}

.woocommerce ul.products li.product .button {
	display: none !important;
}
.woocommerce .woocommerce-result-count {
    padding-left: 5.8%;
	display: none;
}
.woocommerce .woocommerce-ordering {
    padding-right: 5.8%;
	display: none;
}
.woocommerce ul.products {
    padding: 2% 5.8% 0 !important;
}
.woocommerce .woocommerce-breadcrumb {
	display: none;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background-color: var(--blue) !important;
	font-weight: 400;
  	margin-top: 40px;
}

.woocommerce button.button.alt {
	border-radius: 0 !important; 
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	font-weight: bold;
}
span.poa {
	font-size: 22px;
	color: var(--blue);
}

form.gift-cards_form.cart {
	padding: 0 !important;
}
.gift-card-content-editor.step-content label {
    margin-top: 2px !important;
}
.gift_card_template_button {
    margin-top: 2em !important;
}
.ywgc-form-preview-separator {
    background: none !important;
}
.ywgc-main-form-preview-container {
	min-height: auto !important;
}
/* hide price for gift card on all products category page */
.woocommerce ul.products li.product.post-19462 .price {
	display: none;
}
.woocommerce ul.products li.product a img {
	transition: transform .2s;
}
.woocommerce ul.products li.product a img:hover {
	transform: scale(1.15);
}
span.price.subscription-price {
	color: var(--primary) !important;
}
ul.wcsatt-options-prompt-radios {
	padding: 0;
}
.woocommerce span.onsale {
	display: grid;
    align-content: space-around;
	width: 75px !important;
    height: 75px !important;
	top: 4% !important;
    right: 12% !important;
	left: auto !important;
	background-color: var(--primary) !important;
}

a.button.product_type_simple {
	position: absolute !important;
	right: 0;
	margin-top: -35px !important;
}

h2.woocommerce-loop-product__title {
	max-width: 85%;
	z-index: 9999;
	position: relative;
}
.woocommerce-loop-category__title {
	z-index: 9999;
	position: relative;
}

/*---Category page---*/
.category-banner {
	height: 65vh;
}
.number {
	max-width: 30%;
	padding-right: 10px;
}
.term-description {
	padding: 5.8% 5.8% 2% 5.8%;
}

/*---Product page---*/
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	float: right !important;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	float: left !important;
	padding-left: 5.8%;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	text-align: center;
}
.woocommerce div.product div.images {
}
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
	padding: 5.8%;
}
.related.products h2 {
	padding-left: 5.8%;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
	margin-top: 10px;
}
/*---Quantity---*/
.woocommerce div.product form.cart div.quantity {
	border: 1px solid var(--primary);
	border-radius: 0;
	padding: 3px;
	float: none !important;
	width: 50%;
	margin: 10px auto !important;
	display: none !important;
}
form.gift-cards_form.cart div.quantity {
	text-align: center !important;
	width: 100% !important;
}
input.minus, input.plus {
	border: 0;
	padding: 2px 14px;
	background: #fff;
}
.woocommerce .quantity input[type="number"] {
	border: 0 !important;
}
.woocommerce div.product form.cart .button {
	border-radius: 0 !important;
	font-weight: normal;
	float: none !important;
	width: 50%;
	margin-bottom: 10px;
}
.woocommerce div.product form.cart .button.gift_card_add_to_cart_button {
	width: 100% !important;
}

.category-description {
}

.sidebar {
	display: none !important;
}

sidebar {
	display: none !important;
}

.product_title {
	font-weight: 700 !important;
}

.product__content img, .woocommerce-product-details__short-description img { /*removed:  */
	margin: 0 15px 0px 0;
    float: left;
}

.product_meta {
	display: none !important;
}

.woocommerce div.product div.images {
  margin-right: 30px;
}

.woocommerce div.product div.summary {
	margin-top: 3%;
}

.related.products {
	display: none;
}

#tab-title-description {
	display: none !important;
}

#tab-description {
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs {
	padding: 0 !important; 
}

.wpsf-product-title {
	text-align: left;
}

#wps-slider-section .wps-product-section:not(.sp-wps-custom-template) .wpsf-product-title {
	font-weight: 400 !important;
}
/*END ORIGINAL WOOCOMMERCE STYLES*/


.woocommerce a.button {
	background-color:  var(--blue) !important;
	text-align: center !important;
	border: solid 1px var(--blue) !important;
	border-radius: 0 !important;
	color: var(--white) !important;
	text-decoration: none !important;
	margin-right: 5px;
	font-weight: 400 !important;
	transition-property: all;
    transition-duration: 500ms;
}

.woocommerce a.button:hover {
	background-color:  var(--blue) !important;
	color: var(--white) !important;
	text-decoration: none !important;
	cursor: pointer;
}
[type="reset"], [type="submit"] {
	background-color:  var(--blue) !important;
	text-align: center !important;
	border: none;
	color: var(--white) !important;
	font-size: 15px;
	padding: 10px;
	text-decoration: none !important;
	margin-right: 5px;	
}

.wc-block-cart__submit-button {
	background-color:  var(--blue) !important;
	color: var(--white) !important;
	border-radius: 50px;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
	display: none;
}
.theme-twentytwenty .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .theme-twentytwenty .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product, .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product {
	font-size: initial !important;
}
.editor-styles-wrapper .wc-block-cart__empty-cart__title, .wc-block-cart__empty-cart__title {
    font-size: revert;
}

/* ---- checkout ---- */

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	max-width: 48% !important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	max-width: 48% !important;
}

/* ----------- Slider styles ------------ */
    .slider-wrapper {
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .slider-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .slider-container {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
    }

    .slider-container::-webkit-scrollbar {
        display: none; /* Optional: hide scrollbar */
    }

    .lozenge-blue {
        padding: 1.5rem;
        border-radius: 12px;
        flex: 0 0 35%; /* Each lozenge takes up 25% of the container */
        box-sizing: border-box;
    }

    .slider-arrow {
        background: var(--blue);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        transition: background 0.2s;
    }

    .slider-arrow:hover {
        background: var(--blue);
    }
	
	.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.slider-title {
    flex: 1;
    min-width: 250px;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}
	
#slider.slider-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#slider.slider-container::-webkit-scrollbar {
  display: none;
}

/* Make each card exactly 25% of the container width (minus gaps) */
#slider .lozenge-blue {
  flex: 0 0 calc((100% - (3 * 16px)) / 4); /* four cards per full viewport width, accounting for three gaps */
  scroll-snap-align: start;
}

/* ----------------------------------------------------- Footer Styles ---------------------------------------------------------------- */
footer {
	background-color: var(--light-grey);
	clear: both;
}
footer p, footer a {
	font-size: 13px;
}
/*
.footer a {
  font-size: 17px;
  font-weight: 400;
}
*/

/* ----------- Plugin Overwrite Styles ----------- */

/* ----------- Ninja Forms Styles ----------- */
.nf-form-content {
	padding: 0 !important;
}
.nf-form-fields-required {
	font-size: 13px;
	margin-bottom: 5px;
}


/* ----------------------------------------------------- 2200px + ---------------------------------------------------------------- */

@media only screen and (min-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 2200px ----------------------------------------------------- */

@media only screen and (max-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 1800px ----------------------------------------------------- */

@media only screen and (max-width : 1800px) {
}


/* ----------------------------------------------------- Smaller than 1750px ----------------------------------------------------- */

@media only screen and (max-width : 1750px) {
}


/* ----------------------------------------------------- Smaller than 1650px ----------------------------------------------------- */

@media only screen and (max-width : 1650px) {	
}


/* ----------------------------------------------------- Smaller than 1550px ----------------------------------------------------- */

@media only screen and (max-width : 1550px) {
	
}


/* ----------------------------------------------------- Smaller than 1450px ----------------------------------------------------- */

@media only screen and (max-width : 1450px) {
}


/* ----------------------------------------------------- Smaller than 1350px ----------------------------------------------------- */

@media only screen and (max-width : 1350px) {
	.logo {
		max-width: 200px;
	}
	.lozenge {
		max-width: 95%;
	}
}


/* ----------------------------------------------------- Smaller than 1250px ----------------------------------------------------- */

@media only screen and (max-width : 1250px) {
} 

/* ----------------------------------------------------- Bigger than 1126px ----------------------------------------------------- */
@media only screen and (min-width : 1126px) {
	.hidden-large-screen {
		display: none !important;
	}
	
}

/* ----------------------------------------------------- Smaller than 1125px ----------------------------------------------------- */

@media only screen and (max-width : 1125px) {
	.hidden-small-screen {
		display: none !important;
	}
	.col-full-width-md {
		width: 100%;
		flex: auto;
	}
}


/* ----------------------------------------------------- Smaller than 1080px ----------------------------------------------------- */
@media only screen and (max-width : 1080px) {
	
	.team {
		width: 33%;
	}
	.lozenge h4 {
		font-size: 28px;
	}

}


/* ----------------------------------------------------- Smaller than 1024px - iPad landscape ----------------------------------------------------- */

@media only screen and (max-width : 1024px) {	
	
}


/* ----------------------------------------------------- Smaller than 991px ------------------------------------------------------ */

@media only screen and (max-width : 991px) {
	.menu li {
		padding: 1px 12px 2px 12px;
	}
}

/* ----------------------------------------------------- Smaller than 870px ------------------------------------------------------ */

@media only screen and (max-width : 870px) {	

	.team {
		width: 49%;
}
}

/* ----------------------------------------------------- Smaller than 800px ------------------------------------------------------ */

@media only screen and (max-width : 800px) {	
	#slider .lozenge-blue {
    flex: 0 0 calc((100% - (1 * 16px)) / 2); /* two per row */
  }
}


/* ----------------------------------------------------- Smaller than 768px - iPad portrait ------------------------------------------------------ */

@media only screen and (max-width : 768px) {
	.hidden-mobile {
		display: none;
	}
	.mobile-center {
		text-align: center !important;
	}
	.mobile-left {
		text-align: left !important;
	}
	.logo {
		max-width: 200px;
	}	
	.team {
		width: 100%;
	}
	.lozenge {
		max-width: 100%;
		border-radius: 60px;
		padding: 22px;
	}
	button {
		margin-bottom: 10px;
	}
	.lozenge-blue {
		margin-bottom: 20px;
	}
	.changing-content-tabs .nav-bar-4col li {
		font-size: 19px;
	}
	.accordion button .accordion-title {
		font-size: 18px;
	}
	.accordion-container {
		flex-wrap: wrap
	}
	.accordion {
		width: 100%;
	}
	.accordion .accordion-item {
		width: calc(100%);
		margin: 10px 0px;
	}
}


/* ----------------------------------------------------- Smaller than 700px ------------------------------------------------------ */

@media only screen and (max-width : 700px) {
	.menu li {
		border: none !important;
	}
	.slide {
		width: 100%;
	}
}

/* ----------------------------------------------------- Smaller than Mobile ----------------------------------------------------- */

@media only screen and (max-width : 650px) {
	.lozenge h4 {
		font-size: 20px;
	}
	.lozenge p {
		line-height: initial;
	}
	.box-navy-blue-light strong, .box-blue-light strong {
		font-size: 18px;
	}
	#nav_tab_1 p, #nav_tab_2 p, #nav_tab_3 p, #nav_tab_4 p, #nav_tab_5 p {
		font-size: 14px;
		line-height: initial;
		margin-bottom: 5px;
	}

}


/* ----------------------------------------------------- Smaller than 540px ------------------------------------------------------ */

@media only screen and (max-width : 540px) {	

}


/* ----------------------------------------------------- Smaller than 480px ------------------------------------------------------ */
@media only screen and (max-width : 480px) {
	#slider .lozenge-blue {
    	flex: 0 0 100%; /* single per row */
  	}
}