@charset "utf-8";

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

:root {
    --primary_color: #51ADE5;
    --secondary_color: #4590D1;
    --hover_color: #002142;
    --highlight_color: #F8B31A;
    --btn_green: #006D07;
    --btn_red: #C20101;
    --back_grey: #f2f2f2;
    --back_menu: #f2f2f2;
    --box_border: #c2c2c2;
    --box_back: rgba(0,0,0,0.3);
    --input_border: #363636;
    --main_font: 'Montserrat', sans-serif;
    --heading_font: "Roboto", sans-serif;
    --menu-primary-color: #003366;
    --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: #ACCBE6;
}

body {
    font-family: var(--main_font);
    font-size: 1rem;
    color: #fff;
    background-color: #265782;
}

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

a:hover {
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
}

a#rss {
    font-size: 13px;
    font-weight: bold;
    color: #FF9900;
    text-decoration: none;
}

button,
.btn_submit,
.btn_more_details,
.btn,
.btn_more_info {
    background-color: var(--primary_color);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
    display: inline-block;
}

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

.btn.active {
    background: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
}

.caption {
    font-size: 12px;
    color: #657EA5;
}

.center {
    text-align: center;
}

div {
    box-sizing: border-box;
}

fieldset {
    border: none;
}

.hidden {
    display: none;
}

hr {
    clear: both;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font);
    color: var(--primary_color);
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin: 0 0 25px 0;
    font-weight: 700;
}

h1::after,
h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

h2::after {
    content: "";
    flex: 1 1 60px;
    min-width: 60px;
    height: 2px;
    background-color: currentColor;
    opacity: 0.5;
    border-radius: 1px;
}

h2 a {
    color: var(--primary_color);
}

h3 {
    font-size: 2rem;
}

h3 a {
    color: #1A3C57;
}

h4 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 20px;
}

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

h6 {
    font-weight: bold;
}

img {
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
}

img.width100,
img.imagepopup_100,
img.width50,
img.imagepopup_50,
img.width33,
img.imagepopup_33,
img.width25,
img.imagepopup_25 {
    height: auto !important;
    margin: 0.5%;
}

img.width100,
img.imagepopup_100 {
    width: 99% !important;
}

img.width50,
img.imagepopup_50 {
    width: 49% !important;
}

img.width33,
img.imagepopup_33 {
    width: 32.333% !important;
}

img.width25,
img.imagepopup_25 {
    width: 24% !important;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
textarea,
select,
input[type='time'] {
    box-sizing: border-box;
    padding: 10px;
    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;
}

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

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

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

textarea::placeholder,
input::placeholder {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: #868686;
}

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

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

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



p.date {
    font-weight: bold;
    color: #a2a2a2;
    text-transform: capitalize;
    font-size: 14px;
}

p.strapline {
    font-weight: normal;
    font-size: 1.8em !important;
    color: var(--primary_color);
}
p.first, p.first_para {
    font-size: 1.6em;
}
p.medium {
    font-weight: normal;
    font-size: 1.2em !important;
}

p.notes {
    font-weight: normal;
    font-size: 0.8em !important;
}
p.quote {
    font-size: 2rem;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    font-style: italic;
    display: block;
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
}

p.quote::before,
p.quote::after {
    content: '“'; /* Left double quotation mark */
    font-size: 3em;
    position: absolute;
    top: 0;
    left: -20px;
    font-family: 'Times New Roman', Times, serif;
    color: var(--primary_color);
}

p.quote::after {
    content: '”'; /* Right double quotation mark */
    right: 0;
    bottom: -40px;
    left: auto; /* Reset the top property */
    top: auto; /* Reset the top property */
}
.boxGridItem_content h3.heading {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--secondary_color);
}
.boxGridItem_content h3.heading::after {
    display: none;
}
blockquote {
    background-color: var(--back_grey);
    border-left: 5px solid var(--secondary_color);
    padding: 20px;
    margin-left: 0px;
    border-radius: 0px 20px 20px 0px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    /* border-radius: 10px; */
}

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

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

table tr td {
    padding: 10px;
    background-color: var(--box_back);
}

table tr td a {
    text-decoration: none;
}
.strapline_label {
    color: var(--highlight_color);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
/* Bullet List Styles */
ul.bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 20px;
    width: 100%;
}

ul.bullets li {
    max-width: 320px;
    padding: 10px 10px 10px 40px;
    margin: 0;
    background-image: url('/images/bullet.png'); /* Replace with your bullet image path */
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px 20px; /* Adjust bullet size as needed */
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 20px;
}
video {
    width: 100% !important;
    height: auto !important;
}

.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%;
}

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

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

#video_wrapper iframe {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
    clear: both;
}
#home_container {
    width: 50%;
    padding-top: 190px;
    padding-right: 10px;
}
#contact_form_box {
    width: 50%;
    padding: 10px;
    float: right;
}

#contact_form_box label {
    display: none;
}

.video_col {
    width: 50%;
    float: left;
    padding: 10px;
}
#panel_935874 {
    background-image: url(/images/back-mailing.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: auto;
}
#panel_content_935874 {
    padding-top: 20px;
    padding-bottom: 20px;
}
p.mailing-callout {
   font-size: 32px;
   margin-bottom: 0px;
   line-height: 110%;
}

p.mailing-callout a {
    color: var(--highlight_color)!important;
}
p.hero-callout {
   font-size: 26px;
    color: var(--highlight_color);
}

p.hero-callout a {
    color: var(--highlight_color);
}
.wow {
    visibility: hidden;
}
.ml-form-align-center {
    text-align: left!important;
}
@media (max-width: 1020px), (orientation: portrait) {
  /* your styles here */
    #home_container {
        width: 100%;
        padding-top: 38vw;
        padding-right: 0px;
    }

}
@media (max-width: 650px) {
    #contact_form_box,
    .video_col {
        width: 100%;
        padding: 10px;
        float: none;
    }
        #home_container {

        padding-top: 220px;
    }
}

@media (max-width: 480px) {
    img.width100,
    img.width50,
    img.width33,
    img.width25 {
        width: 99% !important;
        height: auto !important;
        margin: 0.5%;
    }

    img.width25 {
        width: 49% !important;
    }
}
