@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary_color: #003153;
    --secondary_color: #0f4468;
    --hover_color: #002142;
    --highlight_color: #b87333;
    --btn_green: #006D07;
    --btn_red: #C20101;
    --back_grey: #f2f2f2;
    --back_menu: #f2f2f2;
    --box_border: #c2c2c2;
    --box_back: #f8f8f8;
    --input_border: #363636;
    --main_font: 'Roboto', sans-serif;
    --heading_font: 'PT Serif', serif;
    --menu-primary-color: #b87333;
    --menu-primary-text-color: #fff;
    --menu-secondary-color: #2A5CA3;
    --menu-secondary-text-color: #fff;
    --menu-third-color: #f3f3f3;
    --menu-third-text-color: #2A5CA3;
    --menu-border-color: #b87333;
}
body {
    font-family: var(--main_font);
    font-size: 1rem;
}



img {
    padding: 0px;
    margin: 0px;
    padding-bottom: -10px;
    width: auto;
    height: auto;
}
img.width100,
img.imagepopup_100 {
    width: 99% !important;
    height: auto !important;
    margin: 0.5%;
}

img.width50,
img.imagepopup_50 {
    width: 49% !important;
    height: auto !important;
    margin: 0.5%;
}

img.width33,
img.imagepopup_33 {
    width: 32.333% !important;
    height: auto !important;
    margin: 0.5%;
}

img.width25,
img.imagepopup_25 {
    width: 24% !important;
    height: auto !important;
    margin: 0.5%;
}

hr {
    clear: both;
    border: none;
}

p,
li,
th,
td {
    font-weight: normal;
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    line-height: 160%;
}

li,
th,
td {
    padding: 0px;
    line-height: normal;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
}
.center {
    text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font);
    color: var(--highlight_color);
}
h1 {
    font-size: 3.5rem;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
    font-weight: normal;
}

h1::after {
}

h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0px;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
}

h2::after {
}

h2 a {
    color: #003366;
    text-decoration: none;
}

h3 {
    font-size: 2rem;
}

h3::after {
}

h3 a {
    color: #1A3C57;
    text-decoration: none;
}

h4 {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
    padding: 0px;
    font-size: 20px;
}

h5 {
    font-size: 18px;
    font-weight: bold;
}

h6 {
    font-weight: bold;
}
fieldset {
    border: none;
}
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
textarea,
select,
input[type='time'] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid var(--input_border);
    margin-bottom: 5px;
    border-radius: 5px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
select {
    width: 100%;
    vertical-align: middle;
}

textarea {
    height: 120px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

input[type='time'] {
    width: auto;
}

input[type='checkbox'] {
    height: 30px;
    width: 30px;
    vertical-align: middle;
}

input[type='radio'] {
    height: 30px;
    width: 30px;
    vertical-align: middle;
}

textarea::placeholder, input::placeholder {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: #868686;
  }
.btn_submit,
.btn_more_details,
.btn,
.btn_more_info,
button {
    background-color: var(--highlight_color);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.btn.center {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 160px;
    text-align: center;
}

btn.active {
    background: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
}
.centre {
    text-align: center;
}
.hidden {
    display: none;
}
.caption {
    font-size: 12px;
    color: #657EA5;
}
.divider_before {
    margin-top: 40px;
    position: relative;
}
.divider_before::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--highlight_color);
}
.divider_after {
    margin-bottom: 40px;
    position: relative;
}
.divider_after::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--highlight_color);
}
table {
    width: 100%;
    border-collapse: collapse;
    display: table;
    margin-bottom: 20px;
}

table tr {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--highlight_color);
}

table tr th {
    padding: 5px;
    text-align: left;
    background-color: var(--highlight_color);
    color: #fff;
}

table tr td {
    padding: 5px;
    background-color: var(--secondary_color);
}

table tr td a {
    text-decoration: none;
}
div {box-sizing: border-box;}

p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
}

p.first {
    font-size: 1.6em;
}

p.date {
    font-weight: bold;
    color: #000000;
    padding-bottom: 10px;
    color: #a2a2a2;
    text-transform: capitalize;
    font-size: 14px;
}
#layout_strapline {
    text-align: center;
}
.homepage #layout_strapline {
    display: none;
}
#block_907808 {
    grid-row-gap: 0px;
}
p.strapline {
    font-weight: normal;
    font-size: 1.8em !important;
    color: var(--highlight_color)!important;
    font-family: var(--heading_font);
}
p.medium {
    font-weight: normal;
    font-size: 1.2em !important;
    color: #000000;
}

p.notes {
    font-weight: normal;
    font-size: .8em !important;
    color: #000000;
}

a#rss {
    font-size: 13px;
    font-weight: bold;
    color: #FF9900;
    text-decoration: none;
}
video {
    width: 100% !important;
    height: auto !important;
}

#videobox {
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 10px;
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 10px;
}

#video_wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    margin-right: auto;
    margin-left: auto;
}

#video_wrapper iframe {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
    clear: both;
}

#contact_form_box {
    width: 80%;
    padding: 10px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

#contact_form_box label {
    display: none;
}

.video_col {
    width: 50%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wow {
    visibility: hidden;
  }
  .nivo-caption {
    display: none!important
  }
.home_promos_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.home_promos_overlay .home_col_container {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_col_full {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(184, 115, 51, 0.8);
    text-align: center;
    max-width: 980px;
    color: #fff;
    border-bottom: 4px solid var(--primary_color);
    margin-top: 20%;
}

.home_col_full h1 {
    transform: uppercase;
    color: #fff;
    font-size: clamp(1.5rem, 3.5vw, 3.5vw);
}


#block_907751 .imagepanel .imagepanel_container a .contents {
    position: absolute;
    bottom: 30px;
    right: 0px;
    width: auto;
}

#block_907751 .imagepanel .imagepanel_container:nth-child(even) a .contents {
    
    right: auto;
    left: 0px;

}


/* Bullet List Styles */
ul.bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    width: 100%;
}

ul.bullets li {
    padding: 10px 10px 10px 10px;
    margin: 0;
    background-repeat: no-repeat;
    background-position: 10px 15px;
    background-size: 20px 20px; /* Adjust bullet size as needed */
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 16px;
}

ul.bullets li img {
    vertical-align: middle;
}
#block_907808 ul.bullets {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
#panel_content_907826 {
    padding: 20px 0px;
}

#panel_content_907826 .page_block {
    grid-row-gap: 10px;
}
.home_col_full p {
        font-size: clamp(18px, 1.4vw, 28px);
    }
@media (max-width: 1280px) {

}


@media (max-width: 1020px) {
.home_col_full p {
        font-size: 18px;
    }
}

@media (max-width: 850px) {

}


@media (max-width: 650px) {
p.strapline {
    font-size: 1.4em !important;
}
    .home_col_full {
        width: 90%!IMPORTANT;
        margin-top: 40%;
    }
    .home_col_full p {
        font-size: 14px;
    }
    #contact_form_box {
        width: 100%;
        padding: 10px;
        float: none;
    }

    .video_col {
        width: 100%;
    }
}

@media (max-width: 480px) {
p.strapline {
    font-size: 1em !important;
}
    #layout_footer .col_100 p {
        font-size: 20px ;
    }
    #top_logo a img {
        height: 60px;
    }
    img.width100 {
        width: 99% !important;
        height: auto !important;
    }

    img.width50 {
        width: 99% !important;
        height: auto !important;
        margin: 0.5%;
        clear: both;
    }

    img.width33 {
        width: 99% !important;
        height: auto !important;
        margin: 0.5%;
        clear: both;
    }

    img.width25 {
        width: 49% !important;
        height: auto !important;
        margin: 0.5%;
    }
}

