﻿@charset "utf-8";
/* CSS Document */

html {
    font-family: 'Source Sans Pro',Helvetica,Arial,Lucida,sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
}

#site-container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    background-color: #ffffff;
    margin: auto;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}

/* Header styles */

#site-header {
    position: fixed;
    height: 104px;
    background-color: #ffffff;
    top: 0;
    width: 90%;
    max-width: 1200px;
    padding: 0px;
    margin: 0px;
    z-index: 999999;
}

#site-header-content {
    position: relative;
    width: 90%;
    background-color: #ffffff;
    height: 104px;
    margin: auto;
}

#site-header-content-logo {
    float:left;
    width: 110px;
}

#site-header-content-logo-image {
    margin-top: 29px;
    margin-left: 4px;
    height: 47px;
    width: 100px;
}


/* Menu styles */

#site-header-content-menu {
    /*background-color: #cccccc;*/
    float: right;
    margin: 25px 0px 0px 0px;
}

#site-header-content-menu ul {
    float: left;
    list-style: none;
}

#site-header-content-menu ul li {
    display: inline-block;
    margin-left: 22px;
    padding-bottom: 50px;
}

#site-header-content-menu ul li a {
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    font-weight: 600;
}

#site-header-content-menu ul li a:hover {
    color: #818181;
}

#site-header-content-menu ul ul {
    position: absolute;
    top: 124px;
    opacity: 0;
    visibility: hidden;
    margin: 0px;
    padding: 0px;
    transition: top .9s;
    background-color: #ffffff;
    width: 300px;
    border-top: 3px solid #ff0000;
    padding: 25px 0px 25px 0px;
}

#site-header-content-menu ul li:hover > ul {
    top: 104px;
    opacity: 1;
    visibility: visible;
}

#site-header-content-menu ul ul li {
    /*position: relative;*/
    /*width: 130px;*/
    /*float: none;*/
    /*display: list-item;*/
    /*margin: 0px 0px 0px 30px;*/
    /*padding: 15px 20px 15px 20px;*/
    /*background-color: #ff0000;*/
    margin: 0px;
    padding: 0px;
}

#site-header-content-menu ul ul li:hover {
    /*background-color: #f9f9f9;*/
}

#site-header-content-menu ul ul li a {
    display: list-item;
    width: 200px;
    float: none;
    margin: 0px 0px 0px 30px;
    padding: 15px 20px 15px 20px;
}

#site-header-content-menu ul ul li a:hover {
    background-color: #f9f9f9;
    color: #818181;
}

.arrow {
    border: solid #666666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0px 0px 3px 10px;
}

.show, .icon, input {
    display: none;
}

.fa-plus {
    font-size: 15px;
    margin-left: 40px;
}

/* Menu responsive styles */

@media all and (max-width: 1205px) {

    #site-header-content-menu {
        padding-left: 30px;
        width: 100%;
    }

    #site-header-content-menu ul {
        margin-right: 0px;
        float: left;
        width: 100%;
        background-color: #ffffff;
        margin: -1px 0px 0px 0px;
        padding: 25px 0px 25px 0px;
        border-top: 3px solid #2ea3f2;
    }

    #site-header-content-menu ul li {
        display: block;
        width: 90%;
        background-color: aqua;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
    }

    #site-header-content-menu ul li a {
        float: left;
        width: calc(100% - 60px);
        background-color: #f7f7f7;
        padding: 10px 30px 10px 30px;
    }

    #site-header-content-menu ul li a:hover {
        background-color: #f9f9f9;
    }

    #site-header-content-menu ul ul {
        top: 70px;
        border-top: 0px;
        /*float: none;*/
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        margin: 0px 0px 0px 0px;
        padding: 0px;
        width: 100%;
    }

    #site-header-content-menu ul ul li {
        display: block;
        width: 100%;
        margin: 0px;
        padding: 0px;
    }                

    #site-header-content-menu ul ul li a {
        display: block;
        width: calc(100% - 120px);
        margin: 0px 0px 0px 0px;
        background-color: #ffffff;
        padding: 10px 60px 10px 60px;
    }

    .icon {
        display: block;
        position: absolute;
        height: 40px;
        /*width: 40px;*/
        color: aqua;
        top: 40px;
        right: 0px;
        cursor: pointer;
    }

    /*.show {
        display: block;

    .show + a, ul {
        display: none;
    }

    [id^=btn]:checked + ul {
        display: block;
    }
    */
        .whole-menu {
        display: none;
    }

    [id^=btn]:checked + .whole-menu {
        display: block;
    }

    .arrow {
        display: none;
    }

}


/* Content styles */

#site-content {
    background-color: #ffffff;
    margin: 0px 0px 0px 0px;
    padding: 103px 0px 0px 0px;
}

.site-content-container-standard {
    width: 100%;
    min-height: 10px;
    /*border-top: 1px dotted #000000;*/
    /*border-bottom: 1px dotted #000000;*/
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
}

.site-content-container-full-width-image {
    position: relative;
    width: 100%;
    max-height: 332px;
    margin: 0px;
    padding: 0px;
}

.site-content-container-full-width-image img {
    width: 100%;
    height: 100%;
    margin: 0px !important;
    padding: 0px;
    display: block;
}

.background-white {
    background-color: #ffffff;
}

.background-blue {
    background-color: #007eaf;
}

.background-grey {
    background-color: #f4f4f4;
}

.background-black {
    background-color: #000000;
}

.background-green {
    background-color: #557020;
}

.background-purple {
    background-color: #92278f;
}

.background-red {
    background-color: #bc3905;
}

.site-content-container-one-column {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
}

.site-content-container-two-column-left {
    position: relative;
    /* width: 40% */
    flex: 43%;
    margin-left: 5%;
    margin-right: 2%;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
    min-height: 10px;
}

.site-content-container-two-column-right {
    position: relative;
    /* width: 40% */
    flex: 43%;
    margin-left: 2%;
    margin-right: 5%;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
    min-height: 10px;
}

.site-content-container-three-column-left {
    position: relative;
    width: 26%;
    margin-left: 5%;
    margin-right: 3%;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
}

.site-content-container-three-column-middle {
    position: relative;
    width: 26%;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
}

.site-content-container-three-column-right {
    position: relative;
    width: 26%;
    margin-left: 3%;
    margin-right: 5%;
    margin-top: 0px;
    margin-bottom: 0px;
    /*background-color: #cccccc;*/
    padding: 0px;
}

h1 {
    font-size: 32px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    color: #ffffff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
}

h2 {
    font-size: 32px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    color: #ffffff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
}

h3 {
    font-size: 24px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    color: #ffffff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
}

p {
    font-size: 17px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    line-height: 25px;
    color: #ffffff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
}

a {
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
}

a:hover {
    cursor: pointer;
    color: #ffffff;
}

.list-bullet {
    list-style: disc !important;
    margin: 0px 0px 20px 20px !important;
}

.site-content-container-standard ul {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 20px 0px;
    list-style: none;
}

.site-content-container-standard li {
    font-size: 17px;
    line-height: 25px;
    color: #ffffff;
}

.background-white p, .background-white a, .background-white a:hover, .background-white li {
    color: #666666;
}

.background-white h1, .background-white h2, .background-white h3 {
    color: #000000;
}

.background-grey p, .background-grey a, .background-grey a:hover, .background-grey li {
    color: #666666;
}

.background-grey h1, .background-grey h2, .background-white h3 {
    color: #000000;
}

.site-content-container-standard img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
}

.content-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: none;
    margin-bottom: 20px;
}

.content-video iframe, .content-video object, .content-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0px 0px 0px 0px;
}

.content-footer-image {
    width: 100%;
    height: auto;
    border-width: 2px;
    box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 30%);
    margin: 0px 0px 20px 0px !important;
    padding: 0px 0px 0px 0px !important;
    display: block;
}

/* Menu responsive styles */

@media all and (max-width: 900px) {

    .site-content-container-standard {
        display: block;
    }

    .site-content-container-one-column {
    }

    .site-content-container-two-column-left {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
    }

    .site-content-container-two-column-right {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
    }

    .site-content-container-three-column-left {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
    }

    .site-content-container-three-column-middle {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
    }

    .site-content-container-three-column-right {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
    }

    .content-footer-image {
        margin: 0px 0px 20px 0px;
    }

}

/* Footer styles */
#site-footer {
    height: 175px;
    background-color: #007eaf;
    margin: 0px;
    padding: 0px;
}

#footer-top {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    clear: both;
    height: 120px;
}

#footer-logo {
    float: left;
    width: 49%;
    margin: 40px 0px 0px 0px;
    padding: 0px;
}

.footer-logo-img {
    width: 193px;
    height: 59px;
}

#footer-strapline {
    float: right;
    width: 49%;
    margin: 40px 0px 0px 0px;
}

.footer-strapline-a {
    float: right;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0px 0px 0px;
}

#footer-bottom {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    height: 40px;
}

#footer-links {
    float: left;
    width: 69%;
    height: 50px;
}

#footer-links ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: 400px;
}

#footer-links ul li {
    margin: 0px 20px 0px 0px;
    padding: 0px;
    display: inline-block;
}

#footer-links ul li a {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: normal;
}

#footer-copyright {
    float: right;
    width: 29%;
    height: 50px;
}

#footer-copyright-p {
    float: right;
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
    margin: 0px;
    padding: 0px;
}

/* Menu responsive styles */
@media all and (max-width: 870px) {

    #site-footer {
        height: 381px;
        background-color: #007eaf;
        margin: 0px;
        padding: 0px;
    }

    #footer-top {
        height: 120px;
    }

    #footer-logo {
        float: left;
        width: 100%;
        margin: 40px 0px 0px 0px;
        padding: 0px;
    }

    .footer-logo-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 193px;
        height: 59px;
    }

    #footer-strapline {
        float: right;
        width: 100%;
        margin: 0px 0px 0px 0px;
    }

    .footer-strapline-a {
        width: 100%;
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin: 20px 0px 20px 0px;
        padding: 0px;
    }

    #footer-bottom {
        height: 160px;
        margin-top: 64px;
    }

    #footer-links {
        float: left;
        width: 100%;
        height: 120px;
    }

    #footer-links ul {
        margin: 0px;
        padding: 0px;
        list-style: none;
        width: 100%;
    }

    #footer-links ul li {
        margin: 0px 0px 0px 0px;
        padding: 0px;
        display: list-item;
        text-align: center;
    }

    #footer-links ul li a {
        margin: 0px;
        padding: 0px;
        font-size: 18px;
        text-decoration: none;
        color: #ffffff;
        width: 100%;
        text-align: center;
    }

    #footer-copyright {
        float: right;
        width: 100%;
        height: 50px;
    }

    #footer-copyright-p {
        width: 100%;
        font-size: 14px;
        font-weight: normal;
        color: #ffffff;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }
}

/* One Trust styles */

.CookieSettingsButton {
    color: #ffffff !important;
    background-color: #007eaf;
    padding: 10px 30px 10px 30px;
    margin: 0px 0px 30px 0px;
}

#cookie-policy-title {
    color: #000000 !important;
    font-size: 24px !important;
    padding: 10px 0px 20px 0px !important;
}

#cookie-policy-description {
    font-size: 17px !important;
    margin: 0px 0px 0px 0px !important;
    padding: 0px 0px 20px 0px !important;
    line-height: 25px !important;
}

.ot-sdk-cookie-policy-group {
    color: #000000 !important;
    font-size: 24px !important;
    padding: 0px 0px 20px 0px !important;
}

.ot-sdk-cookie-policy-group-desc {
    font-size: 17px !important;
    margin: 0px 0px 0px 0px !important;
    padding: 0px 0px 20px 0px !important;
    line-height: 25px !important;
}

.cookies-used-header {
    color: #000000 !important;
    font-size: 24px !important;
    padding: 0px 0px 20px 0px !important;
}

.cookies-list {
    list-style: disc !important;
    margin: 0px 0px 0px 20px !important;
}

table {
    margin: 0px 0px 30px 0px !important;
}

/* ---------------------- Latest Updates ------------------------------- */


.body__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.articles__container {
	padding: 24px 0px 32px;
    margin: 0px auto;
    width: 100%;
}

.articles__card-grid {
    margin: 8px 8px 0px;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.body {
    max-width: 1400px;
}

.articles-count {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #282828;
    margin: 48px 16px;
}

.articles__card-grid__card-row__card {
    background: #ffffff;
    box-shadow: 0px 0px 64px rgba(0, 44, 75, 0.07);
    border-radius: 12px;
    margin: 16px 0px;
    width: 290px;
    position: relative;
}

.articles__card-grid__card-row__card__image {
    width: 290px;
    height: 178px;
    border-radius: 12px 12px 0px 0px;
}

.articles__card-grid__card-row__card__text {
    padding: 0px 0px 16px;
}

.articles__card-grid__card-row__card__label {
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-transform: capitalize;
    color: #282828;
    padding: 2px 4px;
    display: none;
}

.articles__card-grid__card-row__card__text__title {
    margin: 24px 24px 8px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 23px;
    line-height: 29px;
    color: #282828;
}

.articles__card-grid__card-row__card__text__excerpt {
    margin: 8px 24px 24px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #595959;
}

.content__pagination-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 32px auto;
    max-width: 517px;
}

.content__pagination-box__pagination-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    width: 100%;
}

.content__pagination-box__pagination-link__arrow-back {
    width: 20px;
    height: 20px;
    margin: 0px 8px;
    background-image: url("./assets/icon-pagination-arrow.svg");
    background-size: 90% 90%;
    background-position: center;
    background-repeat: no-repeat;
}

.content__pagination-box__pagination-link__text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #0062a8;
    width: 100%;
}

.content__pagination-box__pagination-link__arrow-forward {
    width: 20px;
    height: 20px;
    margin: 0px 8px;
    background-image: url("../images/icon-pagination-arrow.svg");
    background-size: 90% 90%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

@media all and (min-width: 992px) {
    .body-latest-articles .articles__container {
        padding: 24px 0px 32px;
    }

    .articles-count {
        font-size: 18px;
        line-height: 27px;
        margin: 32px 88px;
    }

.articles__card-grid {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

 .articles__card-grid__card-row__card {
        height: 465px;
        flex-direction: column;
        width: 311px;
    }

.articles__card-grid__card-row__card__image {
        border-radius: 12px 12px 0px 0px;
        width: 100%;
    }

.content__pagination-box {
        justify-content: flex-start;
    }

.content__pagination-box__pagination-link {
        margin: 0px 12px;
        width: auto;
    }

.content__pagination-box__pagination-link:first-of-type {
            margin: 0px 12px 0px 0px;
        }

.content__pagination-box__pagination-link__arrow-back {
        background-size: 100% 100%;
    }

.content__pagination-box__pagination-link__arrow-forward {
        background-size: 100% 100%;
    }
}

@media (max-width: 768px) {
    .articles__card-grid {
        flex-direction: column;
    }

    .articles__card-grid__card-row__card {
        width: 250px;
    }

    .articles__card-grid__card-row__card__image {
        width: 230px;
    }
    
}

@media (max-width: 720px) {
    .articles__card-grid {
        flex-direction: column;
    }

    .articles__card-grid__card-row__card {
        width: 180px;
    }

    .articles__card-grid__card-row__card__image {
        width: 160px;
    }
    
}

.news-image-left {
	max-width: 400px;
	height: auto;
    margin-left: 0;
    margin-right: 10px !important;
    float: left;

}

.news-image-right {
	max-width: 400px;
	height: auto;
    margin-right: 0;
    margin-left: 10px !important;
     float: right;

}

/* -------------- Call to Action Button ------------------- */

.btn,
.user-primary-button,
.user-secondary-button {
    display: inline-block;
    min-width: 15.625rem;
    padding: .625rem 3.125rem;
    margin: .625rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 0;
    border-radius: .125rem;
    transition: all 300ms ease;
    cursor: pointer
}

.btn+.btn,
.user-primary-button+.btn,
.user-secondary-button+.btn,
.btn+.user-primary-button,
.user-primary-button+.user-primary-button,
.user-secondary-button+.user-primary-button,
.btn+.user-secondary-button,
.user-primary-button+.user-secondary-button,
.user-secondary-button+.user-secondary-button {
    margin-left: 1.25rem;
    padding: 5px;
}

.btn .icon,
.user-primary-button .icon,
.user-secondary-button .icon {
    position: relative;
    left: .5rem;
    display: inline-block;
    width: .5rem;
    height: .8125rem;
    vertical-align: middle;
    transition: all 300ms ease
}

.btn.btn--primary,
.user-primary-button,
.btn--primary.user-secondary-button {
    color: #fff;
    background-color: #007eaf;
}

.btn.btn--primary:focus,
.user-primary-button:focus,
.btn--primary.user-secondary-button:focus,
.btn.btn--primary:hover,
.user-primary-button:hover,
.btn--primary.user-secondary-button:hover {
    color: #fff;
    background-color: #00b6d5;
}

.btn.btn--primary:focus .icon,
.user-primary-button:focus .icon,
.btn--primary.user-secondary-button:focus .icon,
.user-secondary-button.user-primary-button:focus .icon,
.btn.btn--primary:hover .icon,
.user-primary-button:hover .icon,
.btn--primary.user-secondary-button:hover .icon,
.user-secondary-button.user-primary-button:hover .icon {
    left: .75rem
}

.btn.btn--primary:active,
.user-primary-button:active,
.btn--primary.user-secondary-button:active {
    background-color: #00b6d5;
}

.btn.btn--secondary,
.btn--secondary.user-primary-button,
.user-secondary-button {
    color: #333;
    background-color: #ccc
}

.btn.btn--secondary:hover,
.btn--secondary.user-primary-button:hover,
.user-secondary-button:hover {
    color: #333;
    background-color: #EDECEC
}

.btn.btn--secondary:hover .icon,
.btn--secondary.user-primary-button:hover .icon,
.user-primary-button.user-secondary-button:hover .icon,
.user-secondary-button:hover .icon {
    left: .75rem
}

.btn.btn--secondary:active,
.btn--secondary.user-primary-button:active,
.user-secondary-button:active {
    background-color: #999
}
