/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Regular Content
   13.3 Posts
   13.4 Pages
   13.5 Footer
   13.6 Visual Composer
   13.7 Pagination
14.0 Widgets / sidebars
   14.1 Sidebars
   14.2 Widgets
15.0 Media
   15.1 Galleries
16.0 SVGs Fallbacks
17.0 Media Queries
18.0 Print
--------------------------------------------------------------*/
@font-face {
    font-family: 'Heebo';
    src: url('assets/fonts/Heebo-Bold.eot');
    src: url('assets/fonts/Heebo-Bold.eot?#iefix') format('embedded-opentype'),
    url('assets/fonts/Heebo-Bold.woff2') format('woff2'),
    url('assets/fonts/Heebo-Bold.woff') format('woff'),
    url('assets/fonts/Heebo-Bold.ttf') format('truetype'),
    url('assets/fonts/Heebo-Bold.svg#Heebo-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('assets/fonts/Heebo-Light.eot');
    src: url('assets/fonts/Heebo-Light.eot?#iefix') format('embedded-opentype'),
    url('assets/fonts/Heebo-Light.woff2') format('woff2'),
    url('assets/fonts/Heebo-Light.woff') format('woff'),
    url('assets/fonts/Heebo-Light.ttf') format('truetype'),
    url('assets/fonts/Heebo-Light.svg#Heebo-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    overflow-x: hidden;
}

html, body, input {
    font-family: 'Heebo', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    color: #262626;
    letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}

h1 {
    font-size: 40px;
    line-height: 50px;
}

h2 {
    font-size: 30px;
    line-height: 30px;
}

h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
}

h4, h5, h6 {
    font-size: 20px;
    line-height: 30px;
}

p {
    font-size: 20px;
    padding: 0;
    margin: 0 0 30px 0;
    line-height: 30px; /* This should be the same as the margin bottom */
}

p:last-child {
    margin-bottom: 0;
}

.wrap {
    max-width: 1630px;
}

embed,
iframe,
object {
    width: 100%;
}

/*--------------------------------------------------------------
Custom Elements
--------------------------------------------------------------*/
.marginbottom-0px {
    margin-bottom: 0;
}

.marginbottom-15px {
    margin-bottom: 15px;
}

.marginbottom-30px {
    margin-bottom: 30px;
}

.marginbottom-60px {
    margin-bottom: 60px;
}

.filter-toggle {
    display: none;
}

.overflow-visible {
    overflow: visible !important;
}

.spinner svg {
    width: 18px;
    margin-right: 10px;
    vertical-align: middle;
    color: #262626;
    animation: spinner 2s linear infinite;
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.sd-cookie-notice.bl .sd-cookie-notice-inner {
    left: 0;
    border-radius: 0 10px 10px 0;
    width: 600px;
    background-color: #002C6D;
    color: #FFF;
}

.sd-cookie-notice .sd-cookie-notice-close {
    color: #FFF;
}

.sd-cookie-notice .sd-cookie-notice-buttons-container .sd-cookie-notice-save-cookie,
.sd-cookie-notice .sd-cookie-notice-inner .sd-cookie-notice-text a {
    color: #FFF;
    text-decoration: underline;
}

.sd-cookie-notice .sd-cookie-notice-buttons-container .sd-cookie-notice-save-cookie:hover,
.sd-cookie-notice .sd-cookie-notice-inner .sd-cookie-notice-text a:hover {
    color: #FFF;
    text-decoration: none;
}

.sd-cookie-notice .sd-cookie-notice-buttons-container .sd-cookie-notice-accept-cookie {
    background: #FC5210;
    padding: 10px 40px;
    color: #fff;
    transition: all .3s ease;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}

.sd-cookie-notice .sd-cookie-notice-buttons-container .sd-cookie-notice-accept-cookie:hover {
    background-color: #FFF;
    color: #002C6D;
}

/*--------------------------------------------------------------
SD Tabs
--------------------------------------------------------------*/
.sd-tabs .sd-tabs-list {

}

.sd-tabs .sd-tabs-list > li {

}

.sd-tabs .sd-tabs-list > li.active {
    background-color: red;
}

.sd-tabs .sd-tabs-list > li:last-child {

}

.sd-tabs .sd-tabs-content > li {

}

.sd-tabs .sd-tabs-content > li.active {
    border-radius: 10px;
    background-color: #002c6d;
    color: #fff;
}

/*--------------------------------------------------------------
6.0 Forms
--------------------------------------------------------------*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: inherit;
    color: #727272;
}

::-moz-placeholder { /* Firefox 19+ */
    font-size: inherit;
    color: #727272;
}

:-ms-input-placeholder { /* IE 10+ */
    font-size: inherit;
    color: #727272;
}

:-moz-placeholder { /* Firefox 18- */
    font-size: inherit;
    color: #727272;
}

.sd-form .mandatory_icon {

}

.wpcf7,
.sd-form {

}

input[type='week'],
input[type='url'],
input[type='time'],
input[type='password'],
input[type='number'],
input[type='color'],
input[type='month'],
input[type='datetime-local'],
input[type='text'],
input[type='email'],
input[type='tel'] {
    background: #FFF;
    border: 0 none;
    border-radius: 5px;
    display: block;
    padding: 0 20px;
    height: 40px;
    width: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFF;
    font-family: 'Heebo', sans-serif;
    border: 0 none;
    border-radius: 5px;
    display: block;
    padding: 0 20px;
    height: 40px;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    color: #262626;
}

textarea {
    background: #FFF;
    border: 0 none;
    border-radius: 5px;
    display: block;
    padding: 5px 20px;
    width: 100%;
    resize: vertical;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    color: #262626;
    letter-spacing: 1px;
    font-family: 'Heebo', sans-serif;
}

button,
input[type='button'],
button[type='submit'],
input[type='submit'] {
    background: #FC5210;
    padding: 10px 40px;
    color: #fff;
    transition: all .3s ease;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}

button svg,
input[type='button'] svg,
button[type='submit'] svg,
input[type='submit'] svg {
    width: 20px;
    height: 15px;
}

button:hover,
input[type='button']:hover,
button[type='submit']:hover,
input[type='submit']:hover,
button:focus,
input[type='button']:focus,
button[type='submit']:focus,
input[type='submit']:focus{
    background-color: #002c6d !important;
    transition: all .3s ease !important;
}

/* Start privacy checkbox */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.sd-form .SD-type-checkbox {
    padding: 0 0 0 20px;
    margin-bottom: 20px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item input,
.sd-form .SD-type-checkbox input {
    display: none;
}

.sd-form .SD-type-checkbox input.privacyApprovalDate {
    opacity: 0;
    position: absolute;
    display: block;
    left: 1px;
    top: 9px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.sd-form .SD-type-checkbox label {
    position: relative;
    font-size: 18px;
    font-weight: normal;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:before,
.sd-form .SD-type-checkbox label:before {
    content: '';
    height: 15px;
    width: 15px;
    position: absolute;
    left: -20px;
    top: 5px;
    border: 1px solid #dddddd;
    transition: all .3s ease;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:hover:before,
.sd-form .SD-type-checkbox label:hover:before {
    background-color: #fc5210;
    transition: all .3s ease;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label:before,
.sd-form .SD-type-checkbox input:checked + label:before {
    background-color: #fc5210;
    transition: all .3s ease;
}
/* End privacy checkbox */

.SD_FormGen_form .SD-pretty-upload + label {
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: bold;
    line-height: 1;
    color: #262626;
    background-color: #FFF;
    transition: all .3s ease;
    border: none;
}

.SD-pretty-upload + label:hover {
    background-color: #FC5210;
    transition: all .3s ease;
    color: #fff;
}

.SD_FormGen_form .SD-pretty-upload-file-restrictions-label {
    color: #fff;
}

.sd-form .SD-type-checkbox label a {
    color: #fff;
    text-decoration: underline;
}

/* Start whitelabel CF7 */
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0;
}
/* End whitelabel CF7 */

/* Start success messages  */
.wpcf7 form.sent .wpcf7-response-output,
.sd-success-message-container {
    background-color: #73ff88;
    padding: 20px 43px 20px 20px;
    border-radius: 5px;
    position: relative;
    border: 2px solid #0eb427;
    margin-bottom: 20px;
    color: #262626;
}

.sd-success-message {
    font-weight: 200;
    font-size: 18px;
}

.sd-success-message::before {
    content: '';
    background-image: url('assets/icons/success.svg');
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    right: 15px;
    top: 7px;
}
/* End success messages  */

/* Start notification messages  */
.sd-notification-message::before {
    content: '';
    background-image: url('assets/icons/info.svg');
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    right: 15px;
    top: 7px;
}
/* End notification messages  */

/* Start error messages */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted  .wpcf7-response-output,
.sd-error-message-container {
    background-color: #ffa1a0;
    padding: 20px 43px 20px 20px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #DD4847;
    color: #262626;
}

.sd-error-message-general {
    font-weight: 200;
    font-size: 18px;
}

.sd-error-message-general::before {
    content: '';
    background-image: url('assets/icons/error.svg');
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    right: 15px;
    top: 7px;
}
/* End error messages */

.wpcf7 .ajax-loader {
    vertical-align: middle;
}

/*--------------------------------------------------------------
12.0 Navigation
--------------------------------------------------------------*/
.main-navigation {
    margin-bottom: 30px;
}

.main-navigation .menu {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.main-navigation ul li {
    display: block;
}

.main-navigation ul li a {
    color: #FFF;
    font-size: 30px;
}

.main-navigation ul li a:hover {
    color: #FC5210;
}

.main-navigation ul li.current-menu-item > a {
    color: #FC5210;
}

.main-navigation ul li.menu-item-has-children.focus:before,
.main-navigation ul li.menu-item-has-children:hover:before,
.main-navigation ul li.menu-item-has-children.focus:after,
.main-navigation ul li.menu-item-has-children:hover:after,
.main-navigation ul li.page_item_has_children.focus:before,
.main-navigation ul li.page_item_has_children:hover:before,
.main-navigation ul li.page_item_has_children.focus:after,
.main-navigation ul li.page_item_has_children:hover:after {
    display: none;
}

/* Sub Menu */
.main-navigation ul ul.sub-menu {
    background-color: transparent;
    margin-left: 30px;
    padding: 0;
    position: relative;
    border: none;
    margin-top: 15px;
    left: 0;
}

.main-navigation ul li.menu-item-has-children:hover ul.sub-menu {
    left: 0;
}

.main-navigation ul ul.sub-menu li {
    margin-bottom: 15px;
}

.main-navigation ul ul.sub-menu li a {

}

.main-navigation ul ul.sub-menu li.current-menu-item > a {

}

/*--------------------------------------------------------------
13.1 Header
--------------------------------------------------------------*/
header.site-header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background-color: #FFF;
    padding: 10px 25px;
}

header.site-header.fixed.scrolled {
    box-shadow: 0 1px 14px 7px #00000024;
}

.admin-bar header.site-header.fixed {
    top: 32px;
}

header .wrap {
    max-width: 100%;
}

header .header-middlebar-wrap-inner {
    display: flex;
    align-items: center;
}

.header-middlebar-1 {
    display: flex;
    align-items: center;
}

.header-middlebar-2 {
    text-align: center;
}

.header-middlebar-3 {
    display: flex;
    justify-content: right;
    align-items: center;
    column-gap: 15px;
}

header .header-middlebar p {
    font-size: 18px;
}

/*--------------------------------------------------------------
13.2 Regular Content
--------------------------------------------------------------*/
.site-content-contain {
    margin-top: 70px;
}

.vc_row.load-text-white .spinner {
    color: #fff;
    background-color: #002c6d;
    padding: 15px;
    border-radius: 10px 0 0 10px;
    margin: 0 15px;
}

.vc_row.load-text-white .spinner svg path {
    fill: #fff;
}

.logo-white{fill:#FFFFFF;}
.logo-orange{fill:#FC5210;}
.logo-black{fill:#262626;}
.logo-blue{fill:#002c6d;}
/*--------------------------------------------------------------
13.5 Footer
--------------------------------------------------------------*/
footer {
    background-color: #002c6d;
    background-image: url('/wp-content/uploads/2022/09/test-icon.svg');
    background-repeat: no-repeat;
    background-size: 830px;
    background-position: 25% 0;
}

footer a,
footer p {
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    transition: all .1s ease;
}

footer a:hover {
    color: #FC5210;
    transition: all .1s ease;
}

footer .sitemap-container ul,
footer .legal-container ul {
    list-style: none;
}

.footer-middlebar {
    padding: 95px 0 85px 0;
}

.footer-bottombar .copyright-container ul {
    list-style: none;
    margin: 0;
}

.footer-bottombar .copyright-container ul li {
    display: inline-block;
}

.footer-bottombar .copyright-container ul li:not(:last-child)::after {
    content: '|';
    display: inline-block;
    margin: 0 10px;
}

.footer-bottombar .copyright-container ul li,
.footer-bottombar .copyright-container ul li a {
    color: #fff;
    font-size: 16px;
    transition: all .1s ease;
}

.footer-bottombar .copyright-container ul li a:hover {
    transition: all .1s ease;
    text-decoration: underline;
}

/*--------------------------------------------------------------
13.6 Visual Composer
--------------------------------------------------------------*/
.vc_row-fluid:not(.vc_inner) {
    padding-top: 75px;
    padding-bottom: 75px;
}

.vc_row-fluid.vc_inner {
    padding-top: 0;
    padding-bottom: 0;
}

.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0;
}

.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper {
    height: 100%;
}

/*--------------------------------------------------------------
13.7 Pagination
--------------------------------------------------------------*/
.sd-pagination {
    margin-top: 20px;
    position: relative;
    text-align: center;
    font-size: 0;
}

.sd-pagination .page-numbers {
    font-size: 20px;
    margin-right: 5px;
    color: #002c6d;
    transition: all .3s ease;
}

.sd-pagination .page-number:hover,
.sd-pagination .page-numbers.current {
    color: #fc5210;
    transition: all .3s ease;
}

.sd-pagination .page-numbers.prev,
.sd-pagination .page-numbers.next {
    position: absolute;
    font-size: 20px;
    top: 0;
    margin: 0;
    color: #ffffff;
    background-color: #002c6d;
    border-radius: 5px;
    transition: all .3s ease;
    padding: 10px 20px;
}

.sd-pagination .page-numbers.prev:hover,
.sd-pagination .page-numbers.next:hover {
    transition: all .3s ease;
    background-color: #fc5210;
}

.sd-pagination .page-numbers.prev {
    left: 0;
}

.sd-pagination .page-numbers.next {
    right: 0;
}

/*--------------------------------------------------------------
14.0 Widgets / sidebars
--------------------------------------------------------------*/
h3.widget-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 65px;
    padding-top: 26px;
    text-transform: lowercase;
    font-weight: bold;
}