/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.5;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@keyframes loadingspinner
{
    from
    {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    
    to
    {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
  
/* resets */
html,
html *
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html
{
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

html, body, div, ul, li, section, article, figure, figcaption, form, header, main, footer
{
    margin: 0;
    padding: 0;
}

body
{
    background: #FAFAFA;
}

input[type="hidden"]
{
    display: none !important;
    visibility: hidden !important;
}

h1, h2, h3, h4, h5, h6, p
{
    margin-top: 0;
}

p
{
    margin-top: 0;
    margin-bottom: 1em;
}

*:last-child
{
    margin-bottom: 0 !important;
}

/* custom */
a
{
    color: #000000;
}

a:not(.mceToolbar a)
{
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

a:not(.btn):hover
{
    color: var(--accent-color) !important;
}

.cap
{
    text-transform: capitalize;
}

.site-header a,
.site-footer a,
.news-list .news a
{
    text-decoration: none;
}

.news-list .news h2.heading a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select
{
    border: 1px solid #000000;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select
{
    max-width: 100%;
    padding: 0.5em;
    background: #FFFFFF;
}

.btn,
button,
input[type="button"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"],
input[type="radio"] ~ label,
input[type="checkbox"],
input[type="checkbox"] ~ label
{
    cursor: pointer;
}

.btn,
button,
input[type="button"],
input[type="submit"]
{
    display: inline-block;
    padding: 0.5em 1em;
    background: none;
    border-radius: 2em;
    font-weight: normal;
    line-height: inherit;
    color: #000000;
    text-decoration: none !important;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.btn:hover,
.btn:active,
button:hover,
button:active,
input[type="button"]:hover,
input[type="button"]:active,
input[type="submit"]:hover,
input[type="submit"]:active
{
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-fill
{
    background: #000000;
    color: #FFFFFF !important;
}

.btn-fill:hover,
.btn-fill:active
{
    background: var(--accent-color);
    color: #FFFFFF;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus
{
    border-color: var(--accent-color);
    outline: 1px solid var(--accent-color);
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
textarea:disabled
{
    background: #EFEFEF !important;
    border-color: #999999 !important;
}

hr
{
    margin: 2em 0;
}

.icon-box
{
    display: inline-flex;
    align-items: center;
    gap: 0.75em;
}

.icon-box .icon
{
    font-size: inherit;
}

.wrap
{
    /* width: 1280px;
    max-width: 100%; */
    width: calc(80% + 4em);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
}

.heading
{
    font-weight: normal;
}

.site-search
{
    display: flex;
    padding: 0.35em 0.65em;
    border-bottom: 1px solid #999999;
    align-items: center;
    gap: 0.65em;
}

.site-search.focus,
.f-search.site-search:hover
{
    border-color: var(--accent-color) !important;
}

.site-search input,
.site-search button
{
    padding: 0;
    background: none;
    border: 0;
    outline: none !important;    
}

.site-search input[type="text"]
{
    width: 20em;
    text-align: center;
    flex: 1;
}

.site-search input[type="text"]:focus::placeholder
{
    color: transparent;
}

.site-search .icon-box
{
    color: #999999;
}

.site-search.focus .icon-box
{
    color: var(--accent-color);
}

.f-search
{
    width: 25em;
    max-width: 100%;
    padding: 0.25em;
    border: 1px solid #999999;
}

.f-search.site-search
{
    gap: 0.25em;
}

.f-search input[type="text"]
{
    padding: 0 0.25em;
    text-align: left;
}

.f-search.site-search button,
.f-search.site-search.focus .icon-box,
.f-drop .btn .icon-box
{
    display: flex;
    padding: 0.45em;
    background: #999999;
    border-radius: 0.32em;
    font-size: 0.8em;
    line-height: 1;
    color: #FFFFFF;
    align-items: center;
    gap: 0.5em;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.f-search.site-search:hover .submit,
.f-search.site-search.focus .submit,
.f-drop:hover .btn .icon-box,
.f-drop.open .btn .icon-box
{
    background: var(--accent-color) ;
}

.f-search.site-search .clear
{
    background: none;
    color: #999999;
}

.f-search.site-search .clear:hover
{
    background: #F2F2F2;
}

.f-search.site-search:hover .clear,
.f-search.site-search.focus .clear
{
    color: var(--accent-color);
}

.f-drop
{
    --label-width: fit-content;
    position: relative;
}

.f-drop.open
{
    background: #FFFFFF;
}

.f-drop ul,
.f-drop li
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.f-drop ul
{
    display: none;
    position: absolute;
    right: 0;
    width: max-content;
    min-width: 100%;
    max-width: calc(100vw - 2em);
    max-height: calc(2.05em * 8);
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.1);
    overflow: auto;
    z-index: 1;
}

.f-drop.open ul
{
    display: block;
}

.f-drop .label
{
    width: var(--label-width);
    padding: 0 0.25em;
    color: #000000 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.f-drop .opt
{
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.f-drop .opt:hover
{
    background: var(--accent-color);
    color: #FFFFFF !important;
}

.f-drop .btn
{
    padding: 0 0.25em;
    border-radius: 0.2em;
}

.f-drop.open .btn
{
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.f-drop .btn .icon
{
    -webkit-transition: transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out;
    -ms-transition: transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
}

.f-drop.open .btn .icon
{
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
}

.f-alpha
{
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 0.5em;
}

.f-alpha .btn
{
    display: flex;
    width: 1.75em;
    height: 1.75em;
    padding: 0;
    text-decoration: none;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.f-alpha .btn.selected
{
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: bold;
    color: #FFFFFF;
}

.list-filter
{
    margin-bottom: 2em;
    padding: 1em;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 1em;
}

.list-filter .lf-row
{
    display: flex;
    margin-bottom: 1em;
    flex-wrap: wrap;
    justify-content: right;
    gap: 1em;
}

.list-filter .lf-row.action
{
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #EAEAEA;
    gap: 0.5em;
}

.list-filter .lf-row.l-company
{
    flex-direction: column;
    align-items: end;
}

.list-filter .btn
{
    padding: 0.25em 0.68em;
    border-color: #999999;
}

.list-filter .f-drop .btn
{
    padding: 0.25em;
}

.list-filter .btn:hover
{
    border-color: var(--accent-color);
}

/***** header *****/

.site-header
{
    --head-offset: "0px";
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #FFFFFF;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.site-header .wrap
{
    -webkit-transition: all cubic-bezier(0, 0.8, 0.32, 1) 0.5s;
    -moz-transition: all cubic-bezier(0, 0.8, 0.32, 1) 0.5s;
    -ms-transition: all cubic-bezier(0, 0.8, 0.32, 1) 0.5s;
    -o-transition: all cubic-bezier(0, 0.8, 0.32, 1) 0.5s;
    transition: all cubic-bezier(0, 0.8, 0.32, 1) 0.5s;
}

.site-header.wide .wrap
{
    width: 100%;
}

.site-header .top-bar
{
    display: flex;
    background: #FAFAFA;
    border-bottom: 1px solid #D9D9D9;
    font-size: 0.86em;
    color: #999999;
    justify-content: space-between;
}

.site-header .top-bar > *,
.site-header .nav-bar nav,
.site-header .nav-bar nav > *
{
    display: flex;
    list-style: none;
}

.site-header .top-bar > *
{
    padding: 0.5em 1em;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.site-header .top-bar > *:nth-child(2)
{
    flex: 1;
}

.site-header .top-bar a
{
    color: #999999;
}

.site-header .lang
{
    position: relative;
    padding: 0;
    border-right: 1px solid #D9D9D9;
    cursor: default;
}

.site-header .lang a
{
    display: block;
    padding: 0.5em 1em;
}

.site-header .lang > span
{
    padding: 0.5em 2em;
}

.site-header .lang > span svg
{
    width: 0.86em;
    height: 0.86em;
    fill: #999999;
}

.site-header .lang ul,
.site-header .lang li
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .lang ul
{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background: #FAFAFA;
    border: 1px solid #D9D9D9;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.site-header .lang:hover ul,
.site-header .lang.show ul
{
    display: block;
}

.site-header .date-time-ticker
{
    text-align: center;
    justify-content: center;
}

.site-header .mob-nav-head .date-time-ticker
{
    font-size: 0.84em;
}

.site-header .logo-bar,
.site-header .logo-bar > div
{
    display: flex;
    align-items: center;
}

.site-header .logo-bar
{
    padding-top: 1em;
    padding-bottom: 0.5em;
    justify-content: space-between;
    gap: 2.5em;
}

.site-header.wide .logo-bar
{
    gap: 5em;
}

.site-header .logo svg,
.site-header .logo img,
.site-footer .logo svg,
.site-footer .logo img
{
    width: 250px;
    max-width: 100%;
    height: auto;
}

/* .site-header .logo svg,
.site-header .logo img
{
    min-width: 250px;
} */

.site-header .logo-bar > div:nth-child(2)
{
    flex: 1;
}

.site-header .logo-bar > div:last-child
{
    gap: 0.8em;
}

.site-header .logo-bar .site-search
{
    width: 100%;
}

.site-header .logo-bar a:hover
{
    text-decoration: none;
    color: var(--accent-color);
}

.site-header .nav-bar
{
    position: relative;
    background: #FFFFFF;
}

/* .main-bar {
    box-shadow: rgba(0,0,0,0.1) 0 4px 5px
} */

.site-header .nav-bar nav
{
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-header .nav-bar ul,
.site-header .nav-bar li
{
    padding: 0;
    list-style: none;
}

.site-header .nav-bar a:not(.btn)
{
    display: inline-block;
    padding: 0.5em 1em;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    text-decoration: none !important;
    color: #000000;
    transition: all ease-in 0.2s;
    -webkit-transition: all ease-in 0.2s;
    -moz-transition: all ease-in 0.2s;
}

.site-header .nav-bar a:not(.btn):hover,
.site-header .nav-bar a:not(.btn):active,
.site-header .nav-bar .menu:hover > a,
.site-header .nav-bar .menu:active > a,
.site-header .nav-bar .menu.open > a,
.site-header .nav-bar a.current,
.site-header .nav-bar a.current + .toggle
{
    color: var(--accent-color);
}

.site-header .nav-bar a.current
{
    border-bottom-color: var(--accent-color);
    font-weight: bold;
}

.site-header .nav-bar .menu .toggle
{
    display: none;
}

.site-header .nav-bar .menu .icon
{
    font-size: 80%;
    font-weight: normal;
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
    transform-origin: center;
}

.site-header .nav-bar .menu.open .icon,
.site-header .nav-bar .menu.open .toggle .icon
{
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    transform: rotate(540deg);
}

.mob-nav-head,
.mob-nav-foot,
.mob-menu,
.submenu
{
    display: none;
}

.site-header .mob-nav-head,
.site-header .mob-nav-foot
{
    padding: 1em;
}

.site-header .mob-nav-head
{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding-bottom: 2em;
    background: #FAFAFA;
    border-bottom: 1px solid #D9D9D9;
    z-index: 3;
}

.site-header .mob-nav-head div
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}

.site-header .mob-nav-head > div
{
    margin-bottom: 2em;
}

.site-header .mob-nav-foot
{
    font-size: 0.8em;
}

.site-header .mob-menu,
.site-header .submenu .btn
{
    width: 2em;
    min-width: 2em;
    height: 2em;
    min-height: 2em;
    padding: 0;
    background: none;
    font-size: 1.4em;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.site-header .submenu
{
    position: absolute;
    left: 0;
    right: 0;
    height: 100vh;
    max-height: calc(100vh - var(--head-offset));
    padding: 1em;
    background: #FAFAFA;
    overflow: auto;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}


.site-header .nav-bar .menu.open .submenu
{
    display: block;
}

.site-header .submenu > div:first-child
{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
    text-align: right;
}

.site-header .submenu .btn
{
    display: inline-flex;
    font-size: 0.92em;
}

.site-header .submenu > .wrap
{
    width: 100%;
    padding: 0 2em;
}

.site-header .submenu .grp
{
    margin-bottom: 2.5em;
}

.site-header .submenu section > p
{
    margin-bottom: 1em;
    font-weight: bold;
    color: #6B6B6B;
}

/*
.site-header .submenu ul
{
    padding-left: 0.68em;
    border-left: 2px solid #EFEFEF;
}
*/

.subgrp-last {
   flex:1;
}

.site-header .submenu ul.subgrp
{
    padding-left: 0;
    border-left: 0;
}

.site-header .submenu .subgrp
{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}

.site-header .submenu .subgrp b {
   display: inline-block;
   border-bottom:3px solid black;
   margin-bottom: 0.5em;
   padding-bottom: 0.5em;
   padding-right:1em;
}

.site-header .submenu .subgrp .subgrp
{
    flex-direction:column;
    gap:0;
}

.site-header .submenu .subgrp-grid {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:2em;
}

.site-header .submenu .subgrp-grid > li > a {
    font-weight:bold;
    display: inline-block;
    margin-bottom: 0.5em;
}

.site-header .submenu .subgrp.subgrp-wrap {
    flex-direction:column;
    margin-left:1em;
}

.site-header .submenu .subgrp.subgrp-wrap li {
    flex:1;
}

.site-header .submenu .grp-lang .subgrp
{
    gap: 1.5em;
}

.site-header .submenu .subgrp > *
{
    width: max-content;
}

.site-header .submenu a:not(.btn)
{
    padding: 1px 0;
    border: 0;
    color: #176493;
}

.site-header .submenu a:not(.btn):hover,
.site-header .submenu li:hover > a:not(.btn)
{
    background: none;
    text-decoration: underline;
}

/***** main *****/

.site-main
{
    padding: 2.5em 0 5em;
}

.site-main .page-head,
.page-head .heading,
.page-head h3
{
    color: #FFFFFF;
}

.site-main .page-head
{
    margin-top: -2.5em;
    margin-bottom: 3em;
    background: #999999;
}

.page-head .backdrop
{
    padding: 10em 0 3em 0;
    background: rgba(0, 0, 0, 0.2);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1); 
/*    backdrop-filter: blur(5px);*/
    color: #FFFFFF;
}

.page-head .heading
{
    width: fit-content;
    margin-bottom: 0.5em;
    font-size: 3em;
    line-height:1.25em;
}

.page-head h3
{
    font-size: 1.4em;
}

.site-main .news-list
{
    margin-bottom: 5em;
}

.news-list:not(.cards) article
{
    margin-bottom: 2em;
}

.news-list .news
{
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.news-list figure
{
    width: 300px;
    min-width: 300px;
    height: 200px;
    min-height: 200px;
}

.news-list figure img
{
    width: auto;
    height: auto;
    max-height: 100%;
}

.news-list h1,
.news-list h2,
.news-list h3
{
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.news-list h1.heading {
  border-bottom:1px solid #ccc;
  padding-bottom: 1rem;
}

.news-list > .heading
{
    display: flex;
    margin-bottom: 1.32em;
    font-size: 2em;
    align-items: center;
    justify-content: space-between;
}

.news-list > .heading .btn
{
    font-size: 0.5em;
}

.news-list h2
{
    font-size: 1.24em;
    line-height: 1.32em;
}

.news-list h3
{
    font-size: 1em;
    font-weight: bold;
    color: #4D4D4D;
}

.news-list:not(.sidebar .news-list) .news .heading
{
    font-size: 1.4em;
}

.news-list .date
{
    font-weight: normal;
    color: #808080;
    font-size:0.85em;
}

.news-list .list-more
{
    display: flex;
    justify-content: center;
    gap: 1em;
}

.news-list.cards
{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5em;
}

.news-list.cards.col3
{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-list.cards.col4
{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-list.cards.feature-grid
{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-list.cards.feature-grid:not(:last-child)
{
    padding-bottom: 5em;
    /* border-bottom: 2px solid #D9D9D9; */
}

.news-list.cards > .heading,
.news-list.cards .list-more,
.news-list.cards .full-w
{
    grid-column: 1/-1;
}

.news-list.cards > .heading
{
    margin-bottom: 0.5em;
}

.news-list.cards .news
{
    display: block;
}

.news-list.cards.feature-grid .news:nth-of-type(1)
{
    grid-column: 1/3;
    grid-row: 2/4;
}

.news-list.cards.feature-grid .news:nth-of-type(1) h2
{
    font-size: 2em;
}

.news-list .news figure
{
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0 3px 6px 0px;
    border: 1px solid #EEEEEE;
    background-color:white;
}

.news-list.cards .news figure
{
    width: 100%;
    min-width: 100%;
    height: 200px;
    margin-top: 0;
    margin-bottom: 1em;
    background-color:#FFFFFF;
}

.news-list .news:not(.glide .news):hover figure
{
    box-shadow: rgba(0, 0, 0, 0.11) 0 3px 6px 0px;
    border: 1px solid #DDDDDD;
}

.glide .news figure,
.glide .news figure:hover
{
    box-shadow:none;
    border:none;
}

.news-list.cards.feature-grid .news:nth-of-type(1) figure
{
    height: 500px;
}

.news-list .news figure::after
{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    pointer-events: none;
}

.news-list .news:not(.glide .news):hover figure::after
{
    background: rgba(0, 0, 0, 0.05);
}

.news-list .news figure > a
{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.news-list .news img
{
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
}

.news-list .news:not(.glide .news):hover img
{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.news-list .news .summ
{
    margin-bottom: 2em;
}

.news-list .news .more
{
    font-size: 0.8em;
}

.comp-list.cards
{
    gap: 2.5em;
}

.comp-list.cards .full-w
{
    margin-bottom: -2em;
}

.comp-list.cards .news
{
    text-align: center;
}

.comp-list .news .more
{
    font-size: 1em;
}

.comp-prof
{
    margin-bottom: 2.5em;
    padding-bottom: 2.5em;
    border-bottom: 2px solid #CCCCCC;
}

.comp-prof .profile
{
    display: flex;
    padding: 1.5em;
    background: #F0F0F0;
    border-radius: 1em;
    gap: 1.5em;
}

.comp-prof .profile > *:last-child
{
    flex: 1;
}

.comp-prof .profile figure,
.comp-prof .profile figure > a
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-prof .profile figure
{
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 100%;
    outline: 3px solid var(--accent-color);
    overflow: hidden;
}

.comp-prof .profile figure > a
{
    width: 100%;
    height: 100%;
}

.comp-prof .profile figure img
{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.comp-prof .profile ul,
.comp-prof .profile li
{
    list-style: none;
}

.comp-prof .profile li
{
    display: flex;
    margin-left: 3px;
    margin-bottom: 0.5em;
    align-items: first baseline;
    gap: 0.75em;
}

.comp-prof .profile li .icon
{
    color: #666666;
}

.comp-prof .profile .heading
{
    margin-bottom: 0.5em;
    font-size: 2em;
    font-weight: bold;
}

.news-view .date
{
    color: #606060;
}

.story
{
    color: #444444;
}

.story a
{
    overflow-wrap: anywhere;
    word-wrap: anywhere;
}

.story ul,
.story figure
{
    margin-bottom: 1em;
}

.story ul
{
    padding-left: 1em;
}

.story figure,
.story figcaption
{
    text-align: center;
}

.story figure,
.story img
{
    max-width: 100%;
    height: auto;
}

.story figure img
{
    margin: auto;
}

.story figcaption
{
    margin-top: 0.5em;
    font-size: 80%;
    font-style: italic;
}

.story .table-cont
{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow: auto;
}

.story .table-cont table[style]
{
    width: auto !important;
}

.contact-body h2
{
    margin-top: 1.2em;
}

.tab-panel .tabs
{
    margin-bottom: 1em;
    border-bottom: 2px solid #DEDEDE;
}

.tabs a
{
    display: inline-block;
    margin-bottom: -2px !important;
    padding: 0.5em 1em;
    border-bottom: 2px solid transparent;
    color: #666666;
}

.tabs a:hover
{
    text-decoration: none !important;
    color: #00659C;
}

.tabs a.current
{
    border-bottom-color: #CB7C00;
    font-weight: bold;
    color: #CB7C00 !important;
}

.posts-list .post
{
    margin-bottom: 1em;
}

.post,
.post .actions
{
    display: flex;
    align-items: center;
    gap: 1em;
}

.post
{
    padding: 1em;
    border-radius: 0.32em;
}

.post > *:first-child
{
    flex: 1;
}

.post .heading,
.post .heading > *
{
    color: #00659C;
}

.post .actions .btn
{
    padding: 0.5em;
    flex-direction: column;
}

.message
{
    padding: 1.5em;
    background: rgba(0,0,0,0.04);
    border-radius: 0.5em;
    text-align: center;
    color: #000000;
}

.message.error
{
    color: #AF3636;
}

.sb-cont
{
    display: flex;
    align-items: start;
    gap: 3em;
}

.sb-cont > *:first-child
{
    flex: 1;
}

.sidebar
{
    width: 230px;
    font-size: 0.8em;
}

.sidebar > section
{
    margin-bottom: 2.5em;
}

.sidebar .txt-upsize
{
    font-size: 1.2em;
}

.sidebar .cta .btn
{
    font-size: 1.4em;
}

.sidebar .news-list .heading
{
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.sidebar .news-list > .heading
{
    margin-bottom: 0.72em;
}

.sidebar .news-list article
{
    margin-bottom: 1.5em;
}

.sidebar .news-list figure
{
    min-width: unset;
    height: 150px;
    min-height: unset;
}

.sidebar .news-list .news
{
    flex-direction: column;
    gap: 1em;
}

.sidebar .news-list .news > *
{
    width: 100%;
}

.pref.wrap,
.sb-cont .pref
{
    max-width: 780px;
}

.pref form,
.pref .message
{
    width: 100%;
    margin: auto;
}

.pref fieldset
{
    margin-bottom: 2em;
    padding-left: 1em;
}

.pref fieldset legend
{
    display: block;
    width: fit-content;
    margin-left: -1em;
    margin-bottom: 1.5em;
    padding: 0.25em 0.64em;
    background: #F0F0F0;
    border-left: 3px solid #3E63A5;
    font-size: 0.86em;
    font-style: italic;
}

.pref input[type="text"],
.pref input[type="email"],
.pref input[type="password"],
.pref textarea
{
    width: 100%;
}

.pref textarea
{
    height: 300px;
    min-height: 300px;
}

.pref .form-element,
.pref .form-submit
{
    margin-bottom: 1em;
}

.pref .form-submit
{
    margin-top: 2em;
}

.pref .form-element label
{
    display: block;
    margin-bottom: 0.32em;
}

.pref .form-element.single-check,
.pref .form-options-list label,
.pref .form-options-list-item label
{
    display: flex;
    align-items: baseline;
    gap: 0.24em;
}

.pref .form-element.single-check label
{
    margin-bottom: 0;
}

.pref .form-options-list label,
.pref .form-options-list-item label
{
    cursor: pointer;
}

.pref .form-submit,
.post-preview .form-submit
{
    display: flex;
    justify-content: center;
    gap: 0.8em;
}

.post-preview .form-submit
{
    margin: 0;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid black;
}

.post-preview .form-submit.form-submit-bottom
{
    margin: 0;
    margin-top: 1.5em;
    padding: 0;
    padding-top: 1.5em;
    border: 0;
    border-top: 1px solid black;
}

.pref form > .bottom
{
    text-align: center;
}

.pref label .required,
.pref label.required > *:first-child
{
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    color: #FF3D3D !important;
}

.pref .message
{
    padding: 0;
    background: none;
    color: inherit;
}

.pref .success,
.pref .notice,
.pref .error,
.pop-message
{
    margin-bottom: 1.5em;
    padding: 1.5em;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    text-align: center;
    color: #222222;
}

.pop-message
{
    display: none;
    margin-bottom: 0;
}

.fancybox-overlay .pop-message
{
    display: block;
}

.pref .success,
.pop-message.success
{
    background: rgba(59, 153, 59, 0.12);
}

.pref .notice,
.pop-message.notice
{
    background: rgba(181, 181, 0, 0.12);
}

.pref .error,
.pop-message.error
{
    background: rgba(202, 0, 0, 0.12);
}

.pop-loading
{
    padding: 1em;
    text-align: center;
    color: #000000;
}

.pop-loading > *
{
    margin-bottom: 0.5em;
}

.pop-loading .icon
{
    font-size: 2em;
    color: var(--accent-color);
    -webkit-animation: loadingspinner linear 2s infinite;
    -moz-animation: loadingspinner linear 2s infinite;
    -ms-animation: loadingspinner linear 2s infinite;
    -o-animation: loadingspinner linear 2s infinite;
    animation: loadingspinner linear 2s infinite;
}

#regPageForm > h3
{
    margin-bottom: 2em;
}

.postmsg .group
{
    margin-top: 2em;
}

.postmsg .form-options-list
{
    padding-left: 1em;
}

.postmsg .grp-add input,
.postmsg .grp-remove input
{
    font-size: 0.8em;
}

.postmsg .form-options[data-display-count]:has(.form-options-list)
{
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.24em;
}

.postmsg .form-options[data-display-count="1"] { grid-template-rows: repeat(1, auto); }
.postmsg .form-options[data-display-count="2"] { grid-template-rows: repeat(2, auto); }
.postmsg .form-options[data-display-count="3"] { grid-template-rows: repeat(3, auto); }
.postmsg .form-options[data-display-count="4"] { grid-template-rows: repeat(4, auto); }
.postmsg .form-options[data-display-count="5"] { grid-template-rows: repeat(5, auto); }
.postmsg .form-options[data-display-count="6"] { grid-template-rows: repeat(6, auto); }
.postmsg .form-options[data-display-count="7"] { grid-template-rows: repeat(7, auto); }
.postmsg .form-options[data-display-count="8"] { grid-template-rows: repeat(8, auto); }
.postmsg .form-options[data-display-count="9"] { grid-template-rows: repeat(9, auto); }
.postmsg .form-options[data-display-count="10"] { grid-template-rows: repeat(10, auto); }
.postmsg .form-options[data-display-count="11"] { grid-template-rows: repeat(11, auto); }
.postmsg .form-options[data-display-count="12"] { grid-template-rows: repeat(12, auto); }
.postmsg .form-options[data-display-count="13"] { grid-template-rows: repeat(13, auto); }
.postmsg .form-options[data-display-count="14"] { grid-template-rows: repeat(14, auto); }
.postmsg .form-options[data-display-count="15"] { grid-template-rows: repeat(15, auto); }
.postmsg .form-options[data-display-count="16"] { grid-template-rows: repeat(16, auto); }
.postmsg .form-options[data-display-count="17"] { grid-template-rows: repeat(17, auto); }
.postmsg .form-options[data-display-count="18"] { grid-template-rows: repeat(18, auto); }
.postmsg .form-options[data-display-count="19"] { grid-template-rows: repeat(19, auto); }
.postmsg .form-options[data-display-count="20"] { grid-template-rows: repeat(20, auto); }
.postmsg .form-options[data-display-count="21"] { grid-template-rows: repeat(21, auto); }
.postmsg .form-options[data-display-count="22"] { grid-template-rows: repeat(22, auto); }
.postmsg .form-options[data-display-count="23"] { grid-template-rows: repeat(23, auto); }
.postmsg .form-options[data-display-count="24"] { grid-template-rows: repeat(24, auto); }
.postmsg .form-options[data-display-count="25"] { grid-template-rows: repeat(25, auto); }

.postmsg .form-options[data-display-count="2"]:has(.form-options-list)
{
    grid-template-rows: repeat(2, auto);
}

.postmsg .mce-textarea
{
    overflow: auto;
}

.postmsg .tinymce-toggle
{
    font-size: 0.8em;
    cursor: pointer;
}

.postmsg .tinymce-toggle:hover
{
    color: var(--accent-color);
}

/* slideshow */
.glide .news
{
    height: 75vh;
    max-height: 500px;
    min-height: 350px;
}

.glide .news > *
{
    max-height: 100%;
    padding: 2em;
    flex: 1;
}

.glide .news > div
{
    margin: 2em !important;
    padding: 0;
    overflow: auto;
}

.glide .news figure
{
    height: 100%;
    padding: 0;
    flex: 0 0 50%;
}

.glide .news .heading
{
    font-size: 2em !important;
}

.glide .news .date
{
    margin-bottom: 2em;
}

.glide .news .summ
{
    margin-bottom: 0;
}

.glide .news .more
{
    position: sticky;
    bottom: 0;
    padding-top: 2em;
    background: -webkit-linear-gradient(to bottom, transparent 0%, rgba(250, 250, 250, 0.9) 30%, #FAFAFA 65%);
    background: -moz-linear-gradient(to bottom, transparent 0%, rgba(250, 250, 250, 0.9) 30%, #FAFAFA 65%);
    background: linear-gradient(to bottom, transparent 0%, rgba(250, 250, 250, 0.9) 30%, #FAFAFA 65%);
}

.glide .news .more .btn
{
    background: #FAFAFA;
}

.glide .glide__bullets
{
    display: flex;
    position: static;
    margin-top: 1.5em;
    justify-content: space-around;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.glide .glide__bullet
{
    display: flex;
    height: 1.5em;
    margin-left: 1%;
    margin-right: 1%;
    padding: 0;
    background: none !important;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
    flex: 1;
}

.glide .glide__bullet::before
{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #ADADAD;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.glide .glide__bullet.glide__bullet--active::before
{
    background: var(--accent-color);
}

/***** footer *****/

.site-footer
{
    border-top: 2px solid #D9D9D9;
    text-align: center;
    font-size: 0.8em;
}

.site-footer a,
.site-footer .bottom-bar
{
    color: #646464;
}

.site-footer ul,
.site-footer li
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .main-bar
{
    display: flex;
    padding: 5em;
}

.site-footer .main-bar *:last-child
{
    margin-bottom: 0 !important;
}

.site-footer .main-bar > *
{
    padding: 0 1em;
    text-align: left;
    flex: 1;
}

.site-footer .main-bar > *:first-child
{
    padding: 0;
    flex: 0 0 420px;
}

.site-footer .main-bar > div *
{
    margin-bottom: 1em;
}

.site-footer .main-bar > div ul
{
    margin-bottom: 2.5em;
}

.site-footer .main-bar > div p
{
    font-size: 1.24em;
}

.site-footer .icon-box
{
    text-decoration: none !important;
}

.site-footer .icon-box .icon
{
    width: 1em;
    font-size: 1.4em;
    text-align: center;
}

/* .site-footer .icon-box:hover
{
}

.site-footer .icon-box.fb:hover
{
    background: #0866FF;
}

.site-footer .icon-box.xt:hover
{
    background: #000000;
}

.site-footer .icon-box.pi:hover
{
    background: #E60023;
}

.site-footer .icon-box.li:hover
{
    background: #0A66C2;
}

.site-footer .icon-box.rss:hover
{
    background: #FF7C33;
} */

.site-footer .bottom-bar
{
    border-top: 1px solid #1171AE;
    font-size: 1.2em;
}

.site-footer .bottom-bar .wrap
{
    width: 100%;
    padding: 2em 4.2em;
    text-align: left;
}

/* source sidebar */
.company-source
{
    padding:1em;
    background-color: #f0f0f0;
    text-align: left;
    border-radius:10px;
}

.company-source h3.heading
{
    text-transform: uppercase;
    font-size: 12px;
}

.company-source figure
{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap:1em;
    font-weight: bold;
}

.company-source figure img
{
    max-width:100%;
}

.company-source figure figcaption
{
    font-size:1.2em;
}

.heading-more
{
    margin-top:1em;
    padding-top:1em;
    border-top:1px solid black;
}

.share,
.share > *:last-child
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.share
{
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom:1px solid black;
}

.sm
{
    display: flex;
    width: 38px;
    height: 38px;
    background: #999999;
    border-radius: 38px;
    font-size: 22px;
    text-decoration: none;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm:hover,
a.sm:hover
{
    color: #FFFFFF !important;
}

.sm.sm-em
{
    background: var(--accent-color);
}

.sm.sm-fb
{
    background: #1877F2;
}

.sm.sm-xt
{
    background: #000000;
}

.sm.sm-pi
{
    background: #E60023;
}

.sm.sm-li
{
    background: #007AB9;
}

/* fancybox overrides */
.fancybox-lock
{
    overflow: unset !important;
}

.fancybox-close
{
    display: flex;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    background: none;
    padding: 0.5em;
    font-size: 1.2em;
    line-height: 1;
    text-decoration: none;
}

.fancybox-close:before
{
    content: "\f00d";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.fancybox-skin,
.fancybox-opened .fancybox-skin
{
    background: #FAFAFA;
    border-radius: 0;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.08);
}

.fancybox-overlay
{
    background: rgba(0, 0, 0, 0.15);
}

.fancybox-outer
{
    margin-top: 3.75em;
}

/* tinymce overrides */
body .o2k7SkinSilver table.mceLayout,
body .o2k7SkinSilver table.mceLayout tr.mceFirst td,
body .o2k7SkinSilver table.mceLayout tr.mceLast td
{
    border-color: #000000;
}

body .o2k7Skin .mceListBox .mceText
{
    height: 22px;
    line-height: 1.76;
}

body .o2k7Skin table.mceToolbar
{
    margin-top: 2px;
    margin-right: 3px;
}

/* registration widget custom theme */
body #xtenitWrapper
{
    --xtnt-mail-bubble-color: var(--accent-color);
    --xtnt-body-background-color: #FFFFFF;
    --xtnt-body-text-color: #222222;
    --xtnt-primary-button-background-color: #000000;
    --xtnt-primary-button-text-color: #FFFFFF;
    --xtnt-secondary-button-background-color: none;
    --xtnt-secondary-button-text-color: #000000;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.25);
}

body #xtenitWrapper,
body #xtenitWrapper *
{
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

body #xtenitWrapper .xtnt-field input[type="text"],
body #xtenitWrapper .xtnt-field input[type="email"]
{
    border: 1px solid #000000;
    border-radius: 0;
}

body #xtenitWrapper .xtnt-btn
{
    border: 1px solid var(--xtnt-secondary-button-text-color);
    border-radius: 2em;
    box-shadow: none;
    font-weight: normal;
}

body #xtenitWrapper .xtnt-btn.xtnt-secondary
{
    padding: 0.8em 1.2em;
}

body #xtenitWrapper .xtnt-btn:hover,
body #xtenitWrapper .xtnt-btn.xtnt-secondary:hover,
body #xtenitWrapper .xtnt-btn.xtnt-go:hover
{
    background: none;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

body #xtenitWrapper .xtnt-btn.xtnt-go:hover
{
    background: var(--accent-color);
    color: var(--xtnt-primary-button-text-color);
}

.rss-list {
  display: grid;
  padding-left: 1em;
  border-left:3px solid #EA7819;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3em;
}

.rss {
  position:relative;
  padding-left:30px;
}

.rss-b {
  font-weight:bold;
  text-decoration:none;
  display:block;
  margin-bottom:1em;
}

.rss::before {
  content:url('/rss-24.svg');
  position:absolute;
  top:0;
  left:0;
}

@media screen and (max-width: 1200px)
{
    .wrap
    {
        width: 100%;
    }

    .site-header,
    .site-header[style]
    {
        top: 0 !important;
    }

    .site-header .top-bar,
    .site-header .submenu > div:first-child,
    .site-header .logo-bar > div
    {
        display: none;
    }

    .site-header .mob-nav-head
    {
        display: block;
    }

    .site-header .mob-nav-foot
    {
        display: flex;
        justify-content: center;
        gap: 5%;
    }

    .site-header .mob-menu
    {
        display: flex;
    }

    .site-header .logo-bar
    {
        padding: 1em;
    }

    .site-header .logo-bar > div:first-child
    {
        display: flex;
        width: 100%;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 1em;
    }

    .site-header .nav-bar
    {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 75%;
        max-width: 600px;
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-transition: all cubic-bezier(.17,.84,.44,1) 0.3s;
        -moz-transition: all cubic-bezier(.17,.84,.44,1) 0.3s;
        transition: all cubic-bezier(.17,.84,.44,1) 0.3s;
    }

    .site-header .nav-bar.shown
    {
        right: 0;
    }

    .site-header .nav-bar nav,
    .site-header .nav-bar ul,
    .site-header .nav-bar a:not(.btn),
    .site-header .nav-bar .menu .toggle
    {
        display: block;
    }

    .site-header .nav-bar nav
    {
        padding: 0;
    }

    .site-header .nav-bar li
    {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .site-header .nav-bar a:not(.btn)
    {
        padding: 1em 1.5em;
        border: 0;
    }

    .site-header .nav-bar a.current
    {
        border-left: 3px solid var(--accent-color);
    }

    .site-header .nav-bar .menu,
    .site-header .nav-bar .menu .toggle
    {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .site-header .nav-bar .menu > *:first-child
    {
        flex: 1;
    }

    .site-header .nav-bar .menu .toggle
    {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .site-header .nav-bar .menu .toggle:hover,
    .site-header .nav-bar .menu .toggle:active
    {
        background: rgba(0, 0, 0, 0.25) !important;
    }

    .site-header .nav-bar .menu .icon,
    .site-header .nav-bar .menu:hover .submenu
    {
        display: none;
    }

    .site-header .site-menu a:hover
    {
        background: #F3F3F3;
    }

    .site-header .submenu
    {
        position: static;
        height: auto;
        max-height: none !important;
        padding-top: 0;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: none;
        flex-basis: 100%;
    }

    .site-header .submenu > .wrap
    {
        width: 100%;
        padding: 0 1em;
    }

    .site-header .submenu ul
    {
        padding-left: 0;
        border-left-color: #6B6B6B;
    }

    .site-header .submenu .grp
    {
        margin-bottom: 2em;
    }

    .site-header .submenu .subgrp
    {
        display: block;
    }
    
    .site-header .submenu .subgrp > *,
    .site-header .submenu .subgrp li,
    .site-header .submenu a:not(.btn)
    {
        width: auto;
        border: 0;
    }

    .site-header .submenu .subgrp section
    {
        margin-left: 1.5em;
        margin-bottom: 1em;
    }

    .site-header .nav-bar .menu.open .submenu
    {
        display: block;
    }

    .site-header .submenu section > p
    {
        margin: 1em 0;
    }

    .site-header .submenu .subgrp-stack > *
    {
        margin-top: 1.5em;
    }

    .site-header .submenu .subgrp-grid
    {
        display: block;
    }

    .site-header .submenu .subgrp-grid > li > a
    {
        margin-bottom: 0;
    }

    .site-header .nav-bar .menu .toggle .icon
    {
        display: inline-block;
    }

    .site-header .nav-bar .menu:hover .icon
    {
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }

    .nav-bar .site-search
    {
        display: flex;
        width: 90%;
        margin: 2em auto;
        padding: 0.64em 1em;
        background: #FFFFFF;
        clear: both;
    }

    .site-search input[type="text"]
    {
        width: auto;
        min-width: 0;
    }

    .news-list.cards,
    .news-list.cards.feature-grid
    {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-list.cards.feature-grid .news:nth-of-type(1)
    {
        grid-column: 1/-1;
        grid-row: 2;
    }

    .news-list.cards.feature-grid .news:nth-of-type(1) figure
    {
        height: 500px;
    }

    .glide .news figure
    {
        flex-basis: 40%;
    }

    .site-footer .main-bar
    {
        padding: 3em;
        gap: 2em;
    }

    .site-footer .main-bar > :first-child
    {
        flex-basis: 30%;
    }

    .site-footer .bottom-bar .wrap
    {
        padding: 2em 3em;
    }
}

@media screen and (max-width: 950px)
{
    .sb-cont
    {
        display: block;
    }

    .sb-cont .sidebar
    {
        width: auto;
        margin-top: 3em;
        padding-top: 3em;
        border-top: 1px solid #3E63A5;
    }

    .sidebar .news-list .news
    {
        flex-direction: row;
    }

    .sidebar .news-list .news > *
    {
        width: 300px;
    }

    .wrap,
    .site-footer .main-bar,
    .site-footer .bottom-bar .wrap
    {
        padding-left: 1em;
        padding-right: 1em;
    }
}

@media screen and (max-width: 850px)
{
    .rss-list {
    grid-template-columns: repeat(1, 1fr);
    }

    .news-list.cards > .heading
    {
        flex-direction: column;
        align-items: start;
        gap: 0.5em;
    }

    .page-head .backdrop
    {
        padding-top: 3.5em;
        padding-bottom: 1em;
    }

    .page-head .heading
    {
        font-size: 2.4em;
    }

    .page-head h3
    {
        font-size: 1.2em;
    }

    .news-list.cards,
    .news-list.cards.col3,
    .news-list.cards.col4,
    .news-list.cards.feature-grid
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-list figure
    {
        width: 250px;
        min-width: 250px;
    }
    
    .sidebar .news-list .news > *
    {
        width: 200px;
        min-width: 200px;
    }

    .glide .news
    {
        display: block;
        height: auto;
        max-height: none;
    }

    .glide .news figure
    {
        width: 100%;
        height: 500px;
    }

    .site-footer .main-bar
    {
        flex-wrap: wrap;
    }

    .site-footer .main-bar > :first-child
    {
        margin-bottom: 1em;
        flex-basis: 100%;
    }

    .postmsg .mce-textarea
    {
        padding-bottom: 0.5em;
    }
}

@media screen and (max-width: 600px)
{
    .site-header .nav-bar
    {
        width: 100%;
        box-shadow: none;
    }

    .news-list.cards,
    .news-list.cards.col3,
    .news-list.cards.col4,
    .news-list.cards.feature-grid
    {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-list.cards.feature-grid .news:nth-of-type(1) figure,
    .glide .news figure
    {
        height: 380px;
    }

    .news-list figure
    {
        width: 100%;
        height: 200px;
        margin-top: 0;
        margin-bottom: 1em;
    }

    .news-list .news
    {
        display: block;
    }

    .comp-prof .profile
    {
        flex-direction: column;
        align-items: center;
    }

    .comp-prof .profile .heading
    {
        text-align: center;
    }

    .sidebar .news-list .news > *
    {
        width: 100%;
    }

    .pref fieldset
    {
        padding-left: 0;
    }

    .pref fieldset legend
    {
        margin-left: 0;
    }

    .site-footer .main-bar
    {
        flex-direction: column;
    }

    .postmsg .form-options[data-display-count]:has(.form-options-list)
    {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

