/*
 *---------------------------------------------------------------
 * DEVELOPMENT UTILITIES - REMOVE BEFORE GOING LIVE
 *---------------------------------------------------------------
 * Move this into its own stylesheet...
 */
/*html:after {
    background: red;
    padding: 5px;
    content: '< 30em';
    font-size: 0.7em;
    position: fixed;
    color: #FFFFFF;
    z-index: 999;
    left: 0;
    top: 0;
}

@media screen and (min-width: 30.375em) {
    html:after {
        content: '> 30em';
    }
}

@media screen and (min-width: 40.375em) {
    html:after {
        content: '> 40em';
    }
}

@media screen and (min-width: 56.875em) {
    html:after {
        content: '> 56em';
    }
}

@media screen and (min-width: 61.5625em) {
    html:after {
        content: '> 61em';
    }
}
*/

/*
 *---------------------------------------------------------------
 * ROOT
 *---------------------------------------------------------------
 *
 */

:root {
    --gold: #d5b778;
    --white: #ffffff;
    --black: #0d0d0d;
    --gray: #e5e5e5;
    --gray2: #cccccc;

    --fw100: 100;
    --fw200: 200;
    --fw300: 300;
    --fw400: 400;
    --fw500: 500;
    --fw600: 600;
    --fw700: 700;
    --fw800: 800;
    --fw900: 900;

    --font-size-100: 0.75rem /*12px*/;
    --font-size-200: 0.875rem /*14px*/;
    --font-size-300: 1rem /*16px*/;
    --font-size-400: 1.125rem /*18px*/;
    --font-size-500: 1.25rem /*20px*/;
    --font-size-600: 1.5rem /*24px*/;
    --font-size-700: 1.75rem /*28px*/;
    --font-size-800: 2rem /*32px*/;
    --font-size-900: 2.5rem /*40px*/;
    --font-size-1000: 3rem /*48px*/;

    --site-gutter: 1.875rem /*30px*/;
    --top-bottom-gutter: 1.875rem /*30px*/;
    --nav-item-padding: 0.62em;
}

/*
 *---------------------------------------------------------------
 * FONTS
 *---------------------------------------------------------------
 *
 */

/*
 *  <weight>: Use a value from 100 to 900
    <uniquifier>: Use a unique and descriptive class name
*
*/


.inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */
html {
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
}

body {
    /*font-size: 0.75em;*/ /*12px*/
    /*font-size: 0.875em;*/ /*14px*/
    /*font-size: 1em;*/ /*16px*/
    color: #1a321a;
    font-family: "Inter", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    font-size: var(--font-size-300):
}

.wrap {
    width: 90%;
    max-width: 1200px; /* Adjust based on design */
    margin: 0 auto;
}

/*.wrap-gutter {*/
/*    --gutter: var(--site-gutter);*/
/*    padding-left: var(--gutter);*/
/*    padding-right: var(--gutter);*/
/*}*/

::selection {
    background-color:#333;
    color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.noselect * {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.clear:before, .clear:after {
    content:'';
    display:table;
}

.clear:after {
    clear:both;
}

.fl {
    float:left;
}

.fr {
    float:right;
}

.hidden {
    display: none;
}

.w90 {
    width:90%;
}

.w80 {
    width:80%;
}

.w75 {
    width:75%;
}

.w70 {
    width:70%;
}

.w60 {
    width:60%;
}

.w50, .half {
    width:50%;
}

.w40 {
    width:40%;
}

.w33-3, .third {
    width:33.3333333%;
}

.w30 {
    width:30%;
}

.w25, .quarter {
    width:25%;
}

.w20, .fifth {
    width:20%;
}

.w16-6, .sixth {
    width:16.6666666%;
}

.w12-5, .eighth {
    width:12.5%;
}

.w10, .tenth {
    width:10%;
}

.w5 {
    width: 5%;
}

.dnr {
    display: none;
}

b, strong {
    font-weight: var(--fw600);
}

hr {
    border: 0;
    border-top: 1px solid var(--gray);
}

.bbm {
    border-bottom: 1px solid var(--gray);
}

.altop {
    align-items: flex-start;
}

/*
 *---------------------------------------------------------------
 * A TAG RESET
 *---------------------------------------------------------------
 *
 */
a:link {
    text-decoration: none;
    color: var(--black);
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
    color: var(--black);
}

a:hover {
    text-decoration: underline;
    color: var(--gold);
}

a:active {
    text-decoration: underline;
}

/* Stop iPhone changing numbered links to telephone numbers */

a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}



/*
 *---------------------------------------------------------------
 * DEFAULT TEXT COLOURS
 *---------------------------------------------------------------
 *
 */
h1 {
    color:#2c82c9;
}

h2 {
    font-family: "Limelight", sans-serif;
    color: var(--black);
}

h3 {
    color: #13c975;
}

h4 {
    color: #8913c9;
}

.txtBlack {
    color: #000;
}

.txtWhite {
    color: #fff;
}

.txtGrey {
    color: #666;
}

.txtBlue {
    color:#2c82c9;
}

.txtPurple {
    color: #bb1cc9;
}

.txtGreen {
    color: #13c975;
}

.txtRed {
    color: #c92a12;
}

.txtCenter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

/*
 *---------------------------------------------------------------
 * DEFAULT BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */
.bgBlack {
    background-color: #000;
}

.bgWhite {
    background-color: #fff;
}

.bgGrey {
    background-color: #666;
}

.bgBlue {
    background-color:#2c82c9;
}

.bgPurple {
    background-color: #bb1cc9;
}

.bgGreen {
    background-color: #13c975;
}

.bgRed {
    background-color: #c92a12;
}



/*
 *---------------------------------------------------------------
 * DEFAULT FORMS
 *---------------------------------------------------------------
 *
 */
fieldset {
    border: none;
    padding: 0;
}

label {
    padding: 0.5em 0;
    display: inline-block;
    color: #666;
}

input, select, textarea {
    border:1px solid #d1d1d1;
    width:100%;
    padding: 1em;
    outline: none;
    transition: box-shadow 0.30s ease-in-out;
    /*transition: border 0.30s ease-in-out;*/
}

textarea {
    resize: none;
}

select {
    background: transparent url('../assets/downArrow.svg') no-repeat right;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 2px rgba(81, 203, 238, 1);
    /*border:1px solid rgba(81, 203, 238, 1);*/
}

input[type="submit"] {
    width:100%;
    max-width: 200px;
    margin: 1em 0;
    background-color: var(--black);
    color: #fff;
    transition: background-color 0.8s ease;
    border: 0;
}

input[type="submit"]:hover {
    background-color: var(--gold);
}

/* CHECKBOX AND RADIO */
/* Customize the label (the container) */
.chkRdLabel {
    display: block;
    position: relative;
    padding-left: 2em;
    padding-top: 0.1em;
    margin-bottom: 0.5em;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkRdLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.customCheckbox, .customRadio {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    background-color: #eee;
}

.customRadio {
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.chkRdLabel:hover input ~ .customCheckbox,
.chkRdLabel:hover input ~ .customRadio {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkRdLabel input:checked ~ .customCheckbox,
.chkRdLabel input:checked ~ .customRadio {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheckbox:after,
.customRadio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkRdLabel input:checked ~ .customCheckbox:after,
.chkRdLabel input:checked ~ .customRadio:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkRdLabel .customCheckbox:after {
    left: 0.6em;
    top: 0.35em;
    width: 0.3em;
    height: 0.6em;
    border: solid white;
    border-width: 0 0.2em 0.2em 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the indicator (dot/circle) */
.chkRdLabel .customRadio:after {
    top: 0.42em;
    left: 0.45em;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background: white;
}

/* END CHECKBOX AND RADIO */

::-webkit-input-placeholder {
    color: #d1d1d1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

::-moz-placeholder {
    color: #d1d1d1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

:-ms-input-placeholder {
    color: #d1d1d1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.error input, .error textarea {
    outline:1px solid #b8312f;
}

.field_error {
    color: #9d9d9d;
    font-size: 0.6em;
    margin: 0.5em 0;
}


/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */

table {
    padding:0.4em;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

th, td {
    border: 1px solid #d1d1d1;
    padding:0.6em;
    vertical-align: top;
}

/*
 *---------------------------------------------------------------
 * KEN BURNS/HERO & SLIDER
 *---------------------------------------------------------------
 *
 */

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    /*min-height: 100vh;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    background-color: #000;
    /*z-index: 2;*/
    overflow:hidden !important;
}

.heroCaption {
    position: absolute;
    bottom: 18%;
    left: 5%;
    z-index: 3;
    width: 90%;
    text-align: center;
}

.heroCaption h2 {
    color: var(--white);
    font-weight: 600;

        font-family: "Limelight", sans-serif;
        font-weight: 400;
        font-style: normal;

    font-size: calc(0rem + 6.25vw);
    font-size:clamp(2.5em, 0rem + 4.25vw, 80px);
    margin-bottom: 0em;
}

.heroCaption {
    color: var(--white);
}


.heroCaption p {
    font-size: calc(0rem + 6.25vw);
    font-size:clamp(1em, 0rem + 1.25vw, 80px);
    line-height: 1.5em;
}

.heroCaption br {
    display: block;
}

a.j_link {
    text-decoration: none;
    color: var(--white);
}

a.j_link:hover {
    color: var(--gold);
}

#slides {
    /*position: fixed;*/
    width: 1px;
    height: 1px;
    left: -9999px;
}

#slideshow {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow .slide,
#slideshow span,
#slideshow .static-content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow .slide span {
    background-size: cover;
    background-position: center;
}

#slideshow .slide span.animate.right,
#slideshow .slide span.animate.left {
    left: calc((-4vw + -4vh + -4%) / 3);
    right: calc((-4vw + -4vh + -4%) / 3);
}

#slideshow .slide span.animate.up,
#slideshow .slide span.animate.down {
    top: calc((-4vw + -4vh + -4%) / 3);
    bottom: calc((-4vw + -4vh + -4%) / 3);
}

#slideshow span.animate {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

#slideshow span.animate.right {
    -webkit-animation-name: right;
    animation-name: right;
}

#slideshow span.animate.left {
    -webkit-animation-name: left;
    animation-name: left;
}

#slideshow span.animate.up {
    -webkit-animation-name: up;
    animation-name: up;
}

#slideshow span.animate.down {
    -webkit-animation-name: down;
    animation-name: down;
}

#slideshow span.animate.in {
    -webkit-animation-name: in;
    animation-name: in;
}

#slideshow span.animate.out {
    -webkit-animation-name: out;
    animation-name: out;
}

#slideshow span.animate.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@media screen and (min-width: 0\0) {
    /*.hero {*/
    /*    height: auto;*/
    /*}*/
}

#slideshow .static-content {
    top: auto !important;
    bottom: 0 !important;
    padding: 20px;
    z-index: 2;
}

#slideshow .static-content h1 {
    line-height: normal;
    font-weight: 500;
    /*margin: 0;*/
    font-size: 1.6em;
    color: #FFF;
}

#slideshow .static-content h2 {
    line-height: normal;
    font-weight: 200;
    margin: 0;
    font-size: 2em;
    color: #FFC845;
}

#slideshow .slide:after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.28753508239233194) 0%, rgba(255, 255, 255, 0) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#slideshow {
    position: absolute !important;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE SLIDER JS PLUGIN
 *---------------------------------------------------------------
 *
 */

/*.jsSlides {*/
/*    position: relative;*/
/*    list-style: none;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.jsSlides li {*/
/*    -webkit-backface-visibility: hidden;*/
/*    position: absolute;*/
/*    display: none;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*}*/

/*.jsSlides li:first-child {*/
/*    position: relative;*/
/*    display: block;*/
/*    float: left;*/
/*}*/

/*.jsSlides img {*/
/*    display: block;*/
/*    height: auto;*/
/*    float: left;*/
/*    width: 100%;*/
/*    border: 0;*/
/*}*/

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

/*.searchBox {*/
/*    background-color: #666;*/
/*    width:100%;*/
/*    text-align: center;*/
/*    display: none;*/
/*    height:54px;*/
/*    opacity: 0.8;*/
/*    pposition: fixed;*/
/*    z-index: 999;*/
/*}*/
/*.searchBox input {*/
/*    width:60%;*/
/*    margin: 10px auto;*/
/*    padding: 6px;*/
/*}*/

/*.closeSearch {*/
/*    float:right;*/
/*    padding:10px 20px;*/
/*    margin: 2px;*/
/*    cursor: pointer;*/
/*}*/

/*.liveSearch {*/
/*    background-color: #666;*/
/*    left: -9999px;*/
/*    min-height: auto;*/
/*    position: relative;*/
/*    top:54px;*/
/*    z-index: 999;*/
/*}*/

/*.liveSearch.active {*/
/*    background-color: #666;*/
/*    overflow: scroll;*/
/*    min-height: 100%;*/
/*    left: auto;*/
/*    opacity: 0.9;*/
/*}*/

/*
 *---------------------------------------------------------------
 * RESPONSIVE NAVIGATION (BURGER)
 *---------------------------------------------------------------
 *
 */
.menuIcon {
    position: relative;
    width: 40px;
    height: 40px;

    border-top: 0.2em solid var(--white);
    border-bottom: 0.2em solid var(--white);
    cursor: pointer;
}

.menuIcon:before {
    content: '';
    position: absolute;
    top: 46%;
    left: 0;
    width: 100%;
    border-top: 0.2em solid var(--white);
}


.menu_i_wrap:hover .menuIcon {
    border-top: 0.2em solid var(--gold);
    border-bottom: 0.2em solid var(--gold);
}

.menu_i_wrap:hover .menuIcon:before {
    border-top: 0.2em solid var(--gold);
}


/*
 *---------------------------------------------------------------
 * HEADER CONTENT
 *---------------------------------------------------------------
 *
 */

.resp_wrap {
    display: flex;
    justify-content: space-between;
}

.resp_wrap .menu_i_wrap {
    padding: 15px;
}

.logo a {
    background: url("../assets/cooks_icon.svg") no-repeat center;
    display: flex;
    width: 75px;
    height: 75px;
    color: transparent;
    font-size: 0;
    /*outline: pink solid 1px;*/
}

.mainHeader {
    background: var(--black);
}

.content {
    padding: 1em 0;
}

.menuIcon {
    display: block;
}

.mainMenu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: none; !important;
    flex-direction: column;
}
.mainMenu li {
    display: flex;
    border-bottom: 1px solid #424242;
}

.mainMenu li:last-child {
    border-bottom: 0;
}

.mainMenu > li > a {
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em;
    display: flex;
    color: var(--white);
    width: 100%;
}

.mainMenu > li > a:hover {
    color: var(--gold);
}

/*.dropdown {*/
/*    display: none;*/
/*    position: absolute;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    min-width: 150px;*/
/*}*/
/*.dropdown li a {*/
/*    padding: 10px;*/
/*    display: block;*/
/*    text-decoration: none;*/
/*}*/
/*.dropdown li a:hover {*/
/*    background-color: #ddd;*/
/*}*/
/*.mainMenu li:hover .dropdown {*/
/*    display: block;*/
/*}*/

.show {
    display: flex !important;
}

/*
 *---------------------------------------------------------------
 * FOOTER CONTENT
 *---------------------------------------------------------------
 *
 */

footer {
    background: var(--black);
}

.footer {
    padding: 2em 0;
}

.footer_menu {
    display: flex;
    flex-direction: column;
    color: var(--gray2);
}

.footer_menu a {
    color: var(--gray);
}

.footer_menu > div h3  {
    color: var(--white);
    text-transform: uppercase;
    font-size: var(--font-size-300);
}

.footer_menu > div h3:first-child  {
    margin-top: 0;
}

.footer_menu > div > div {
    margin-bottom: 0.5em;
}

.footer_menu img {
    margin-top: 1em;
    max-width: 200px;
}

.footer_address {
    line-height: 1.5em;
}

article ul {
    /*list-style: none;*/
    padding: 0 0 0 18px;
    margin: 0;
}

article li {
    font-size: 1.3em;
    padding: 0;
    margin: 0;
}

/*
 *---------------------------------------------------------------
 * CUSTOM CONTENT BOX
 *---------------------------------------------------------------
 *
 */

.content_box_1 {
    /*max-width: 1200px;*/
    /*margin: auto;*/
    /*border: 2px solid red;*/
    /*padding: 20px;*/
}


.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-wrapper.altop {
    align-items: flex-start;
}


.text-box {
    flex: 1;
    min-width: 300px;
    /*border: 2px solid green;*/
    /*padding: 20px;*/
    width: 100%;

}

.text-box h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.pages .text-box h2 {
    margin-bottom: 20px;
}

.image-box {
    flex: 1;
    min-width: 300px;
    /*border: 2px solid green;*/
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-box img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
}

.content_box_2 {
    background: var(--black);
}

.content_box_2 h2, .content_box_2 p {
    color: var(--white);
}

h2.award {
    position: relative;
    padding-left: 60px;
}

h2.award:after {
    position: absolute;
    background: var(--black) url("../assets/award.svg") center no-repeat;
    background-size: 70%;
    left: 0;
    border-radius: 45px;
    top: 0;
    display: flex;
    content: '';
    height: 45px;
    width: 45px;
}







/*
 *---------------------------------------------------------------
 * BOTTOM HOMEPAGE SLIDER
 *---------------------------------------------------------------
 *
 */



/*
 *---------------------------------------------------------------
 * PROJECT CARD (SLICK) SLIDER (HOMEPAGE)
 *---------------------------------------------------------------
 *
 */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /*text-align: center;*/
    /*font-size: 18px;*/
    /*background: #fff;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    overflow: visible !important;
}
.swiper p {
    font-size: 0.9em;
}


.swipe_arrows {
    background: pink;
    position: absolute !important;
    display: flex;
    right: 0;
    top: 0;
}

.swiper-button-prev:after {
    /*transform: rotate(-0.50turn) !important;*/
}

.swiper-button-next, .swiper-button-prev {
    width: 44px !important;
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: -30px !important;
    font-size: 2em;
    color: var(--black) !important;
}

.swiper-button-prev {
    right: 54px !important;
}


.swiper-button-next:after, .swiper-button-prev:after {
    content: '' !important;
    /*display: block ;*/
    /*width: 44px !important;*/
    /*height: 100%;*/
    /*background: transparent url('../assets/arrow.svg') no-repeat center;*/
    /*background-size: contain;*/
}







/*
 *---------------------------------------------------------------
 * REPEATING IMAGE & BANNER IMAGE
 *---------------------------------------------------------------
 *
 */

.bg_img {
    background: #252525;
    height: 250px;
    /*float: left;*/
    width: 100%;
    /*height: 100%;*/
    background-position: center center;
    background-size: cover;
    display: block !important;

    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}

.titleBlock {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titleBlock h1, .pages h1 {
    color: var(--white);
    text-transform: uppercase;
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pages h1 {
    color: var(--black);
}

/*
 *---------------------------------------------------------------
 * ACCORDIAN
 *---------------------------------------------------------------
 *
 */

* {
    box-sizing: border-box;
}
.accordion {
    width: 100%;
    /*max-width: 600px;*/
    margin: auto;
}
.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1em;
}
.accordion-header {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 10px;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
}
.accordion-header:after {
    position: absolute;
    background: url("../assets/down.svg") center no-repeat;
    background-size: 80%;
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    right: 0;
    top:0;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-content {
    display: none;
    padding: 1em;
    background: #fbfbfb;
}

.accordion-content a {
    color: var(--gold);
}







/*
 *---------------------------------------------------------------
 * MENUS
 *---------------------------------------------------------------
 *
 */

.menus .menu_box {
    /*min-height: 500px;*/
}

.menus .menu_box > div {
    /*background: var(--black);*/
    /*padding: 2em;*/
    margin-top: 3em;
}

.menus .menu_box {
    background: #374151;
    background: var(--black) !important;
    padding: 3em;
    margin-bottom: 2em;
}

.menus .menu_box h2 {
    position: relative;
    padding: 10px 0 1em 60px;
    line-height: 30px;
    color: var(--white);
    margin: 0;
}

.menus .menu_box h2:after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top:0;
    background: url('../assets/menu.svg') no-repeat center;
    background-size: 100%;
    height: 50px;
    width: 50px;
}

.menus li, .menus p {
    color: var(--white);
}

.menus .menu_box span {
    font-weight: bold;
    color: var(--orange);
    display: block;
    margin: 1em 0;
}

.menus .menu_box img {
    max-width: 100px;
    margin-bottom: 40px;
}

/*
 *---------------------------------------------------------------
 * EVENT BANNER
 *---------------------------------------------------------------
 *
 */
 
 .eventBanner,
 .eventBanner > div {
	 display: flex;
	 align-content: center;
	 justify-content: center;
	  width: 100%;
  }
 
  .eventBanner a {
	  background: var(--gold);
	  padding: 1em 0.5em;
	  text-align: center;
	  color: var(--white);
	  width: 100%;
	  font-weight: var(--fw600);
  }

/*
 *---------------------------------------------------------------
 * RESPONSIVE 30.375em AND WIDER
 *---------------------------------------------------------------
 *
 */

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

@media screen and (min-width: 30.375em) {

}

@media screen and (min-width: 40.375em) {

}

@media screen and (min-width: 56.875em) /* 910px */ {

    .dn {
        display: none;
    }

    .mainHeader > div {

    }

    .wrap {
        width: 85%; /* Slightly reduced width for better spacing */
        max-width: 1300px; /* Increase max width if needed */
        margin: 0 auto;
    }

    .mainHeader > div {
        /*width: 100%;*/
    }

    .mainHeader > div > div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .resp_wrap {
        width: 100%;
        max-width: 20%;
    }

    nav {
        width: 100%;
        max-width: 80%;
    }

    .logo {
        display: flex;
        width: 100%;
    }

    .logo a {
        background: url("../assets/cooks_catering.svg") no-repeat center;
        width: 100%;
    }

    .resp_wrap .menu_i_wrap {
        display: none;
    }

    .menuIcon {
        display: none;
    }

    .mainHeader {
        border-bottom: 1px solid black;
    }

    .mainHeader .wrap {
        display: flex;
        justify-content: space-between;
    }

    .mainMenu {
        justify-content: right;
        display: flex !important;
        flex-direction: row;
        padding: 1em 0;
        margin: 0;
    }

    .mainMenu .show {
        display: flex !important;
    }

    .mainMenu li {
        display: inline-block;
        list-style: none;
        border-bottom: 0;
    }

    .mainMenu > li > a {
        font-weight: var(--fw400);
        font-size: var(--font-size-200);
        padding: var(--nav-item-padding);
    }

    .hero {
        height: 500px;
    }

    .heroCaption br {
        display: none;
    }

    .footer {
        padding: 4em 0;
    }

    .footer_menu {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer_menu > div {
        max-width: 25%;
    }

    .footer_menu > div:last-child {
        position: relative;
    }

/*
    .footer_menu img {
        bottom: 0;
        position: absolute;
    }
*/

    .content-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .content-wrapper.reverse {
        flex-direction: row-reverse !important;
    }

    .wrap-gutter {
        padding: 2em 0;
    }

    .text-box {
        width: 70%;
    }

    .image-box {
        max-width: 400px;
    }

    .text-box, .image-box {
        flex: 1;
        min-width: 300px;
    }

    .text-box h2 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.3em;
    }

}

@media screen and (min-width: 61.5625em) /*(1024px)*/ {

    .logo a {
        height: 106px;
    }

    .mainHeader > div > div {

    }

    .wrap-gutter {
        padding: 3em 0;
    }

}

@media screen and (min-width: 75em) /* (1200px) */ {

    .mainMenu > li > a {
        font-size: var(--font-size-300);
    }

    .resp_wrap {
        max-width: 25%;
    }

    nav {

        max-width: 85%;
    }

    .wrap-gutter {
        padding: 4em 0;
    }

}
