/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*===== Variables =====*/
:root {
    --primary-color: rgb(40, 119, 123);
    --secondary-color: rgb(102, 200, 202);
    --tertiary-color: rgb(237, 43, 27);
    --yellow-color: rgb(254, 230, 5);
    --dark-color: #000;
    --light-color: #fff;
}

/*===== Preset Styles =====*/
body {
    background: var(--dark-color);
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 24px;
}

.bg-light {
    background-color: var(--light-color);
}
.text-light {
    color: var(--light-color);
}
img {
    width: 100%!important;
    object-fit: contain;
}
table img {
    width: auto;
}
.d-flex {
    display: flex;
}
.d-block {
    display: block;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: start;
}

.justify-content-center {
    justify-content: center;
}

.gap-4 {
    gap: 4px!important;
}

.gap-8 {
    gap: 8px!important;
}

.gap-12 {
    gap: 12px!important;
}

.gap-16 {
    gap: 16px!important;
}

.gap-20 {
    gap: 20px!important;
}

.gap-24 {
    gap: 24px!important;
}

.gap-28 {
    gap: 28px!important;
}

.gap-32 {
    gap: 32px!important;
}

.gap-36 {
    gap: 36px!important;
}

.gap-40 {
    gap: 40px!important;
}

/* Padding */
.p-0 {
    padding: 0px !important;
}

.p-4 {
    padding: 4px !important;
}

.p-8 {
    padding: 8px !important;
}

.p-12 {
    padding: 12px !important;
}

.p-16 {
    padding: 16px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-24 {
    padding: 24px !important;
}

.p-28 {
    padding: 28px !important;
}

.p-32 {
    padding: 32px !important;
}

.p-36 {
    padding: 36px !important;
}

.p-40 {
    padding: 40px !important;
}

/* Padding Left */
.pl-0 {
    padding-left: 0px !important;
}

.pl-4 {
    padding-left: 4px !important;
}

.pl-8 {
    padding-left: 8px !important;
}

.pl-12 {
    padding-left: 12px !important;
}

.pl-16 {
    padding-left: 16px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-24 {
    padding-left: 24px !important;
}

.pl-28 {
    padding-left: 28px !important;
}

.pl-32 {
    padding-left: 32px !important;
}

.pl-36 {
    padding-left: 36px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

/* Padding Right */
.pr-0 {
    padding-right: 0px !important;
}

.pr-4 {
    padding-right: 4px !important;
}

.pr-8 {
    padding-right: 8px !important;
}

.pr-12 {
    padding-right: 12px !important;
}

.pr-16 {
    padding-right: 16px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-24 {
    padding-right: 24px !important;
}

.pr-28 {
    padding-right: 28px !important;
}

.pr-32 {
    padding-right: 32px !important;
}

.pr-36 {
    padding-right: 36px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

/* Padding Top */
.pt-0 {
    padding-top: 0px !important;
}

.pt-4 {
    padding-top: 4px !important;
}

.pt-8 {
    padding-top: 8px !important;
}

.pt-12 {
    padding-top: 12px !important;
}

.pt-16 {
    padding-top: 16px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-24 {
    padding-top: 24px !important;
}

.pt-28 {
    padding-top: 28px !important;
}

.pt-32 {
    padding-top: 32px !important;
}

.pt-36 {
    padding-top: 36px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0px !important;
}

.pb-4 {
    padding-bottom: 4px !important;
}

.pb-8 {
    padding-bottom: 8px !important;
}

.pb-12 {
    padding-bottom: 12px !important;
}

.pb-16 {
    padding-bottom: 16px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-24 {
    padding-bottom: 24px !important;
}

.pb-28 {
    padding-bottom: 28px !important;
}

.pb-32 {
    padding-bottom: 32px !important;
}

.pb-36 {
    padding-bottom: 36px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.split {
    display: grid;
}

.split-1-1 {
    grid-template-columns: repeat(2, 1fr);
}

.split-1-1-1 {
    grid-template-columns: repeat(3, 1fr);
}

.split-1-1-1-1 {
    grid-template-columns: repeat(4, 1fr);
}

.text-center {
    text-align: center;
}
.gallery {
    gap: 4px;
}
.gallery img {
    width: 100%;
    max-height: 290px;
    min-height: 600px;
    object-fit: cover;
}
.header-banner img {
    width: 100%;
}
.featured-img {
    background-color: var(--light-color);
}
.featured-img img {
    max-width: 800px;
    display: block;
    margin: 0 auto;
}
.table-wrap-bordered {
    border: 3px solid #000;
    padding: 8px;
    text-align: center;
}
/*===== Header Styles =====*/
.topbar > p {
    font-size: 24px;
    font-style: italic;
    padding: 16px;
    font-weight: 600;
}
nav {
    background-color: var(--tertiary-color);
}
nav > ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
}
nav > ul li a {
    padding: 10px;
    display: block;
    color: var(--light-color);
    font-weight: 600;
}
.title-bar {
    padding: 12px;
}
.title-bar h4 {
    font-size: 21px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 8px;
}
.title-bar p {
    color: rgb(254, 230, 5);
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}
.text-block {
    text-align: center;
}
.text-block > h3 {
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.text-block p {
    margin-bottom: 8px;
}
.text-block p a {
    color: var(--tertiary-color);
    font-size: 16px;
    font-weight: 700;
}
.featured-box {
    border: 3px solid var(--dark-color);
    background-color: rgb(244, 241, 129);
    padding: 8px;
    margin-top: 12px;
}
.featured-box .box-head {
    display: grid;
    align-items: center;
    grid-template-columns: 120px 1fr;
    gap: 30px;
}
.featured-box .box-head h3 {
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.featured-box .box-body {
}
.featured-box .box-body h2 {
    color: rgb(40, 119, 123);
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}
.featured-box .box-body .gallery img {
    max-height: 130px;
    min-height: 120px;
}
.featured-box .box-body p {
    font-family: Tahoma;
    font-size: 13px;
    margin-bottom: 12px;
}
span.text-featured {
    color: rgb(40, 119, 123);
    font-size: 21px;
    display: block;
    font-weight: 700;
    margin: 4px 0;
}
.bow-fishing {
    margin-top: 20px;
    text-align: center;
}
.bow-fishing > .split.custom {
    grid-template-columns: 1fr 98px;
}
.bow-fishing h2 {
    color: rgb(40, 119, 123);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bow-fishing p {
    color: rgb(40, 119, 123);
    font-size: 16px;
    font-weight: 700;
}
.content > .page-title {
    font-size: 28px;
    background: white;
    text-align: center;
    font-weight: 700;
    padding: 10px;
}
.content > .page-title small {
    display: block;
    font-size: 21px;
    color: var(--tertiary-color);
    margin-top: 8px;

}
.hamburger, .phone-icon, .logo {
    display: none;
}
/*===== Responsive Styles =====*/
@media (max-width: 767px) {
    .split:not(.gallery):not(.sponsors) {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 950px) {
    .container {
        padding: 16px;
    }
    .hamburger, .phone-icon, .logo {
        display: block;
    }
    .phone-icon img {
        max-height: 24px;
    }
    .hamburger {
        max-height: 28px;
    }
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0px;
        background: none;
    }
    nav img {
        width: auto!important;
    }
    .logo {
        max-height: 100px;
    }
    .topbar, .header-banner {
        display: none;
    }
    ul.menu {
        position: fixed;
        z-index: 11111;
        height: 100vh;
        width: 80%;
        background: #fff;
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        transition: left 0.25s;
    }
    ul.menu.visible {
        left: 0;
    }
    .featured-box .box-head {
        grid-template-columns: 1fr;
    }
    .featured-box .box-head > img {
        max-height: 60px;
    }
    .featured-box .box-head {
        text-align: center;
    }
    .bow-fishing img {
         max-height: 90px;
    }
    .close-icon {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 24px;
    }
    ul.menu li a {
        color: #000;
        padding: 16px 0 0 16px;
    }
    .p-24 {
        padding: 16px!important;
    }
}
@media (max-width: 824px) {
    .split-1-1-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .split-1-1-1, .split-1-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery img {
        min-height: unset;
    }
    .featured-box .box-body .gallery img {
        min-height: unset;
        max-height: unset;
    }
    table {
        margin: 12px 0;
    }
    table td {
        padding: 8px 0;
    }
    tr.mobile-flex > td {
        width: 100%;
    }
    tr.mobile-flex {
        display: flex;
        flex-direction: column;
    }
    .split .col p {
        margin-left: 0!important;
        margin-right: 0!important;
    }
}