/*
Theme Name: Juniper
Version: 1.0.0
*/

body {
    position: relative;
    overflow-x: hidden;
}

.customizer-content {
    font-family: var(--primary-font) !important;
    font-size: var(--default-size, 16px);
}

.customizer-content h1 {
    font-size: var(--h1-size, 36px);
    font-family: var(--hedings-font, --primary-font);
}

.customizer-content h2 {
    font-size: var(--h2-size, 30px);
    font-family: var(--hedings-font, --primary-font);
}

.customizer-content h3 {
    font-size: var(--h3-size, 24px);
    font-family: var(--hedings-font, --primary-font);
}

.customizer-content h4 {
    font-size: var(--h4-size, 18px);
    font-family: var(--hedings-font, --primary-font);
}

.customizer-content h5 {
    font-size: var(--h5-size, 14px);
    font-family: var(--hedings-font, --primary-font);
}

.customizer-content h6 {
    font-size: var(--h6-size, 12px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper {
    font-family: var(--primary-font);
    font-size: var(--default-size, 16px);
}

#juniper h1 {
    font-size: var(--h1-size, 36px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper h2 {
    font-size: var(--h2-size, 30px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper h3 {
    font-size: var(--h3-size, 24px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper h4 {
    font-size: var(--h4-size, 18px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper h5 {
    font-size: var(--h5-size, 14px);
    font-family: var(--hedings-font, --primary-font);
}

#juniper h6 {
    font-size: var(--h6-size, 12px);
    font-family: var(--hedings-font, --primary-font);
}

.tw-bg-secondary {
    background: var(--secondary-color);
    background-color: var(--secondary-color);
}

.tw-bg-primary {
    background: var(--primary-color);
    background-color: var(--primary-color);
}

.tw-bg-tertiary {
    background: var(--tertiary-color);
    background-color: var(--tertiary-color);
}

.tw-secondary {
    color: var(--secondary-color);
}

.tw-primary {
    color: var(--primary-color);
}

.tw-tertiary {
    color: var(--tertiary-color);
}

.tw-primary-dark {
    color: #293b6d;
}
.tw-fb-color {
    color: #1877f2;
}
.tw-fb-twitter {
    color: #1da1f2;
}
.tw-fb-instagram {
    color: #f00073;
}
.tw-fb-youtube {
    color: #ff0000;
}

.tw-btn {
    padding: 10px 35px;
    background: #decb53;
    border-radius: 8px;
    transition: unset;
    border-bottom: none;
    font-size: 17px;
    font-weight: 700;
    color: #07483d;
    display: inline-block;
}
.has-error {
    border: 2px solid #c0392b !important;
}
a.tw-btn {
    text-decoration: none;
}
a.tw-btn:hover {
    color: #07483d;
}
#back-to-top {
    display: none;
    position: fixed;
    right: 27px;
    bottom: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 1000;
    text-align: center;
    transition: 1s;
    box-shadow: 0 16px 32px rgb(0 0 0 / 100%);
    -webkit-text-stroke: 3px var(--primary-color);
}

#back-to-top:hover {
    opacity: 0.8;
}

#back-to-top i {
    color: #ffffff;
    font-size: 35px;
    padding-top: 19%;
    background: transparent;
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 9px 1px var(--primary-color);
}
.fixed-navbar {
    transition: 0.5s;
}

.customizer-wrapper #fixed-header-logo {
    z-index: 0;
}

#fixed-header-logo {
    left: 10px;
    opacity: 0;
    transition: 0.8s;
    padding-top: 0.5rem;
    height: 67px;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    z-index: 1001;
}

.fixed #fixed-header-logo {
    opacity: 1;
}

.fixed.down #fixed-header-logo {
    animation-name: appear;
}

#bottom.up:not(.fixed) #fixed-header-logo {
    animation-name: disappear;
}

#fixed-header-logo img {
    height: 50px;
    width: auto;
    transition: 0.8s;
}

.fixed-side-menu {
    position: fixed;
    right: 0;
    z-index: 999;
}

.fixed-side-menu ul li {
    /*transition: .2s;*/
    width: 160px !important;
    padding-right: 0 !important;
    /*margin-right: 0 !important;*/
    /*width: 50px;*/
}

.fixed-side-menu a span {
    display: none !important;
}

.fixed-side-menu a i:first-child {
    transition: 0.2s;
    display: flex !important;
}

.fixed-side-menu a i:last-child {
    transition: 0.2s;
    display: none;
}

.absolute-side-menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

@keyframes appear {
    0% {
        transform: translatex(-200px);
        /*left: 0;*/
    }
    100% {
        transform: translatex(0px) translatey(0px) translateZ(0px);
        /*left: 0;*/
    }
}

@keyframes disappear {
    0% {
        transform: translatex(0px) translatey(0px) translateZ(0px);
        /*left: 0;*/
    }
    100% {
        transform: translatex(-200px);
        /*left: 0;*/
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .fixed-navbar {
        padding-left: 150px;
    }
}
article .wp-post-image {
    width: 100%;
    height: auto;
    border-radius: 3px 3px 0 0;
}

/*=====================================
  =            HEADER STYLES            =
  =====================================*/

header#headerDefault nav.navbar button.navbar-toggler:focus {
    box-shadow: none;
}
/*----------  hamburger animated  ----------*/
header#headerDefault
    nav.navbar
    button.navbar-toggler
    .tw-hamburger-animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

header#headerDefault
    nav.navbar
    button.navbar-toggler
    .tw-hamburger-animated-icon
    span {
    display: block;
    position: absolute;
    background: #fff;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

header#headerDefault
    nav.navbar
    button.navbar-toggler
    .tw-hamburger-animated-icon
    span:nth-child(1) {
    top: 0px;
}

header#headerDefault
    nav.navbar
    button.navbar-toggler
    .tw-hamburger-animated-icon
    span:nth-child(2) {
    top: 10px;
}

header#headerDefault
    nav.navbar
    button.navbar-toggler
    .tw-hamburger-animated-icon
    span:nth-child(3) {
    top: 20px;
}

header#headerDefault
    nav.navbar
    button[aria-expanded="true"]
    .tw-hamburger-animated-icon
    span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

header#headerDefault
    nav.navbar
    button[aria-expanded="true"]
    .tw-hamburger-animated-icon
    span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

header#headerDefault
    nav.navbar
    button[aria-expanded="true"]
    .tw-hamburger-animated-icon
    span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
header#headerDefault nav.navbar #mainMenuWrapper ul {
    padding-top: 40px;
}
header#headerDefault nav.navbar #mainMenuWrapper ul li {
    border-bottom: 0.5px solid rgba(234, 234, 234, 0.2);
}
/*---------------------------------------------------------------------------*/
header#headerDefault li {
    position: relative;
}
header#headerDefault ul.menu-primary > li > a {
    height: 100%;
}
header#headerDefault a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: 0.2s;
}
header#headerDefault ul.menu-primary ul.dropdown-menu {
    width: 100%;
    margin-top: 0;
    background-clip: unset;
    border: none;
    border-radius: 0;
}
header#headerDefault ul.menu-primary ul.dropdown-menu a {
    font-weight: 400;
}
header#headerDefault.fixed-header #top a.navbar-brand {
    position: absolute;
    top: 67%;
    left: 0;
}
@media (min-width: 768px) {
    header#headerDefault nav.navbar a.navbar-brand {
        position: relative;
        top: 0;
        left: 0;
    }
    header#headerDefault div#tw-header-menus-wrapper {
        margin-top: 0;
        z-index: 1;
    }
    header#headerDefault nav.navbar #mainMenuWrapper ul {
        padding-top: 0;
    }
    header#headerDefault nav.navbar #mainMenuWrapper ul li {
        border-bottom: none;
    }
}
@media (max-width: 991.99px) {
    header#headerDefault .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 992px) {
    header#headerDefault div#bottomHeader li {
        margin-right: 30px;
    }
}
/*=====  End of HEADER STYLES  ======*/

/*------HEADER DEFAULT------*/

#defaultHeader .search-button {
    display: inline-block;
    margin: 4px 2px;
    background-color: #444;
    font-size: 14px;
    padding-left: 32px;
    padding-right: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#defaultHeader .search-button:hover {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    background-color: white;
    color: black;
}

#defaultHeader .search-container {
    position: relative;
    display: inline-block;
    margin: 4px 2px;
    height: 40px;
    width: 40px;
    vertical-align: bottom;
}

#defaultHeader .mglass {
    display: inline-block;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

#defaultHeader .searchbutton {
    position: absolute;
    font-size: 22px;
    width: 100%;
    margin: 0;
    padding: 0;
}

#defaultHeader .search:focus + .searchbutton {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    background-color: white;
    color: black;
}

#defaultHeader .search {
    position: absolute;
    left: 39px; /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
    background-color: white;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 100%;
    z-index: 10;
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    border-bottom: 1px solid var(--primary-color);
}

#defaultHeader .search:focus {
    width: 263px; /* Bar width+1px */
    padding: 0 16px 0 0;
}

#defaultHeader .expandright {
    left: auto;
    right: 39px; /* Button width-1px */
}

#defaultHeader .expandright:focus {
    padding: 0 0 0 16px;
}
/*------END HEADER DEFAULT------*/

/*------MENU PRIMARY------*/

#menuPrimary {
    color: white;
}

#menuPrimary a {
    font-size: 16px;
}

#menuPrimary .nav-link {
    color: white;
}

#menuPrimaryContent {
    justify-content: end;
}

#menuPrimary .nav-item.menu-level-one .nav-link {
    text-transform: uppercase;
}

#menuPrimary .nav-item.menu-level-one .nav-item.dropend.menu-two .nav-link {
    text-transform: none;
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    word-wrap: break-word;
    white-space: normal;
    background-color: transparent;
    border: 0;
}

#menuPrimary
    .nav-item.menu-level-one
    .nav-item.dropend.menu-two
    .nav-link:hover {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

#menuPrimary .navbar-nav .nav-link {
    color: black;
}

#menuPrimary .dropdown-menu {
    position: absolute;
    max-width: 250px;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(34, 41, 47, 0.15);
    border-radius: 0rem;
    margin-top: -5px;
}

#menuPrimary .dropdown-menu.dropdown-mega-menu {
    max-width: 100%;
    width: 100%;
    top: auto;
    left: 0%;
    margin-top: -3px;
}

#menuPrimary .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    word-wrap: break-word;
    white-space: normal;
    background-color: transparent;
    border: 0;
}

#menuPrimary .dropdown-item:hover {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

#menuPrimary .dropdown .dropdown-menu {
    display: none;
}
#menuPrimary .dropdown:hover > .dropdown-menu,
#menuPrimary .dropend:hover > .dropdown-menu {
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 769px) {
    #menuPrimary .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
    #menuPrimary .dropend .dropdown-toggle {
        padding-left: 0.5em;
    }
}
@media screen and (max-width: 768px) {
    #menuPrimary .dropdown-menu {
        position: relative;
    }
    #menuPrimary .dropdown:hover > .dropdown-menu,
    #menuPrimary .dropend:hover > .dropdown-menu {
        display: none;
    }
    #menuPrimary .dropdown-menu {
        display: none;
    }
    .dropdown-menu.show {
        display: block !important;
    }

    .faq-item:first-child {
        display: block !important;
    }
}

/* MEEGA MENU*/
#menuPrimary .dropdown-menu {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
}

#menuPrimary .nav-item.dropdown.dropdown-mega {
    position: static;
}

#menuPrimary .nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
    top: auto;
    left: 0%;
    margin-top: -3px;
    border-bottom: none;
    background-color: transparent;
}

/*Customizer Option*/
#menuPrimary .mega-menu-columns {
    background-color: whitesmoke;
    border: 1px solid rgba(34, 41, 47, 0.15);
    border-bottom: 3px solid red;
}

#menuPrimary .sk-megamenu-column-item-link {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.2rem;
}
#menuPrimary .sk-megamenu-column-item-link:hover {
    color: var(--tertiary-color);
}

#menuPrimary .sk-megamenu-column-item-submenu {
    list-style: none;
    padding-left: 0px;
}

#menuPrimary .sk-megamenu-column-item-submenu-link {
    color: #666;
    text-decoration: none;
}
/*------END MEGA MENU---------*/

/*------END MENU PRIMARY------*/

/*------SECTION HERO------*/

section#sectionHero {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}
section#sectionHero::after,
section#sectionHero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
section#sectionHero::before {
    background-size: cover;
    background-position: center;
}
section#sectionHero::after {
    background: #1a1a1b;
    opacity: 0.5;
}

section#sectionHero .carousel-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 100%;
    right: 0;
    left: 0;
    padding: 0;
}

section#sectionHero .ticker-bar {
    padding: 0.85rem;
    color: white;
}

section#sectionHero .ticker-bar div {
    display: flex;
}

section#sectionHero .ticker-bar p {
    margin: 0;
    padding: 0;
}

section#sectionHero .carousel-caption {
    z-index: 3;
}

section#sectionHero .carousel-control-prev {
    z-index: 3;
}

section#sectionHero .carousel-control-next {
    z-index: 3;
}

section#sectionHero .carousel-indicators {
    z-index: 3;
    margin-bottom: 0px;
}

section#sectionHero #heroSlider .slider-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.01);
    z-index: 1;
}

section#sectionHero #heroSlider h1 {
    font-size: 5rem;
}
section#sectionHero #heroSlider h2 {
    font-size: 3.5rem;
}
section#sectionHero #heroSlider h3 {
    font-size: 2.5rem;
}
section#sectionHero #heroSlider h4 {
    font-size: 2rem;
}
section#sectionHero #heroSlider pre {
    font-size: 1.5rem;
}

/*------END SECTION HERO------*/

/* ------MENU HERO------*/
div#menuHero {
    transition: 0.1s;
    z-index: 999;
}
div#menuHero ul {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 32px rgb(0 0 0 / 30%);
}
div#menuHero ul li {
    position: relative;
    margin-bottom: 5px;
    background: var(--primary-color);
    width: 300px;
    margin-right: -100px;
    padding-right: 100px;
    margin-left: -5px;
    white-space: nowrap;
    transition: margin-left 0.1s, width 0.2s;
}
div#menuHero ul li:last-child {
    margin-bottom: 5px;
}
div#menuHero ul li:first-child {
    margin-top: 5px;
}

div#menuHero ul li:hover {
    color: #fff;
    margin-left: -20px;
    box-shadow: 0 0 4px 1px #000;
}
div#menuHero ul li:active {
    transform: translateY(4px);
}

div#menuHero ul li a i:first-child {
    display: none;
    transition: 0.1s;
    font-size: 30px;
    top: calc(50% - 15px);
    left: 0;
    width: 30px;
    justify-content: center;
    align-items: center;
}

div#menuHero.fixed-side-menu ul li a {
    justify-content: space-between;
}

div#menuHero ul li:hover a i:first-child {
    display: flex;
}

div#menuHero ul li:hover a i:last-child {
    font-size: 12px;
    padding-left: 60px;
}

div#menuHero ul li a {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: font-size 0.1s;
    color: white;
    text-transform: uppercase;
}

.absolute-side-menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

/*------END MENU HERO------*/

/*------HEADER DEFAULT------*/

.default-header {
    color: #fff;
}

.default-header .top-header {
}

.default-header .bottom-header {
    z-index: 998;
    background-color: var(--primary-color);
    color: #fff;
}

.default-header .bottom-header .line {
    height: 5px;
    background-color: white;
    margin-bottom: 0px;
    position: relative;
    bottom: 10px;
    width: 100%;
}

/*------END HEADER DEFAULT------*/

/*------FOOTER DEFAULT------*/

footer#footerDefault {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

footer#footerDefault .footer-top-line {
    background-color: var(--primary-color);
    height: 50px;
    width: 100%;
    border-bottom: 4px solid white;
}

/*------END HEADER DEFAULT------*/

/*------SECTION NEWS DEFAULT------*/
section#sectionNewsDefault {
    margin-top: 100px;
    margin-bottom: 100px;
}

section#sectionNewsDefault span#tw-news-notices-section-latest-news {
    background: #07483d;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    padding: 5px 15px;
}
section#sectionNewsDefault #tw-news-notices-title-wrapper {
    width: 95%;
}
section#sectionNewsDefault h3#tw-news-notices-title {
    z-index: 2;
    width: 50%;
    font-size: 28px;
    height: 70px;
}
section#sectionNewsDefault > div > div > div > div.tw-nn-border {
    border: 1px solid var(--secondary-color);
    height: 377px;
}
section#sectionNewsDefault article {
    height: 375px;
}
section#sectionNewsDefault
    article
    .tw-article-thumbnail.tw-article-thumbnail-absolute {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section#sectionNewsDefault article .tw-article-content {
    margin-top: 70px;
    font-size: 18px;
}
section#sectionNewsDefault
    article
    .tw-article-content
    > div.row
    > div
    > span:last-child {
    color: #b0b7c3;
}
section#sectionNewsDefault
    article
    .tw-article-content
    > div.row
    > div.tw-read-more
    a,
section#sectionNewsDefault article .tw-article-content .tw-title {
    font-size: 20px;
}
section#sectionNewsDefault article .tw-article-content .tw-content {
    color: #8a94a6;
}
section#sectionNewsDefault article .tw-article-content .tw-read-more a {
    text-decoration: none;
}
section#sectionNewsDefault article .tw-article-content .tw-read-more a:hover {
    color: var(--secondary-color);
}
section#sectionNewsDefault .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    padding: 0 10px;
}
.owl-carousel {
    width: auto;
}

.news-single .news-featured-img-wrapper {
    margin-bottom: 20px;
}

.news-single .news-featured-img {
    max-width: 100%;
    border-radius: 15px;
}

@media (max-width: 920px) {
    .news-slider-title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        line-height: 27px;
        max-height: 108px;
        padding-right: 20px;
    }
}

/*------END SECTION NEWS DEFAULT------*/

/*------MENU HERO MOBILE------*/
div#menuHeroMobile ul {
    list-style: none;
    width: 100%;
}

div#menuHeroMobile ul li {
    margin-bottom: 26px;
}

div#menuHeroMobile ul li a {
    background: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: 0.2s;
}

div#menuHeroMobile ul li a:hover {
    background: var(--primary-color);
    color: var(--tertiary-color);
}

/*------MENU NEWS DEFAULT------*/
div#menuNewsDefault ul {
    list-style: none;
}

div#menuNewsDefault ul li {
    margin-bottom: 26px;
}

div#menuNewsDefault ul li a {
    background: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: 0.2s;
}

div#menuNewsDefault ul li a:hover {
    background: var(--primary-color);
    color: var(--tertiary-color);
}

/*------END MENU NEWS DEFAULT------*/

/*------SECTION FREE CONTENT------*/
/* section#sectionFreeContent {
    margin-bottom: 100px;
  }

  section#sectionFreeContent h1 {
    color: var(--primary-color);
  }

  section#sectionFreeContent .free-content-text {
    background-color: var(--tertiary-color);
  }

  section#sectionFreeContent .free-content-image {
    background-color: var(--tertiary-color);
  }

  section#sectionFreeContent .free-content-image {
    background-color: var(--tertiary-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  section#sectionFreeContent .free-content-image img {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
  } */

/*------END SECTION FREE CONTENT------*/

/*------NEWS SINGLE DEFAULT------*/
#newsSingleDefault {
    min-height: 600px;
}

#newsSingleDefault .title {
    color: var(--secondary-color);
}
/*------END NEWS SINGLE DEFAULT------*/

/*===========================
  =            FAQ            =
  ===========================*/
section#tw-faq h3 {
    font-size: 20px;
}
section#tw-faq {
    font-size: 18px;
}

section#tw-faq .tw-faq-wrapper {
    z-index: 1;
    height: 171px;
    margin-top: 10px;
    box-shadow: 0px 2px 12px rgba(223, 223, 223, 0.5);
}
section#tw-faq .tw-faq-wrapper a.tw-collapse-btn {
    width: 64px;
    height: 48px;
    bottom: -24px;
    left: calc(50% - 60px / 2);
    cursor: pointer;
    box-shadow: 0px 1px 6px var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    z-index: 2;
}
section#tw-faq .tw-faq-wrapper a.tw-collapse-btn i {
    transition: 0.3s transform ease-in-out;
}
section#tw-faq .tw-faq-wrapper.tw-faq-wrapper-middle {
    height: 192px;
    margin-top: 0;
    box-shadow: 0px 1px 12px var(--secondary-color);
}
section#tw-faq .tw-faq-wrapper a[aria-expanded="true"] i {
    transform: rotate(180deg);
}
section#tw-faq .tw-faq-wrapper.tw-faq-wrapper-middle a.tw-collapse-btn {
    box-shadow: 0px 1px 10px var(--secondary-color);
    -webkit-text-stroke: 1px #fff;
}
section#tw-faq .card-body {
    /* z-index: -1; */
    border-radius: 0;
    font-size: 16px;
}
section#tw-faq a.tw-faqs-view-more {
    font-size: 16px;
}
@media (min-width: 768px) {
    section#tw-faq h3 {
        font-size: 40px;
    }
    section#tw-faq {
        font-size: 26px;
    }
    .navbar-toggler {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .navbar-toggler {
        margin-bottom: 10px;
    }
}
/*events owl carousel*/
section#tw-faq .tw-owl-dot {
    width: 20px;
    height: 20px;
    box-shadow: none;
    border: none;
    outline: none;
}
section#tw-faq .tw-owl-dot.active {
    background: var(--secondary-color);
}
/*=====  End of FAQ  ======*/

/*------ SECTION DEPARTMENTS DEFAULT ------*/
section#sectionDepartmentsDefault a:hover article {
    color: var(--secondary-color);
}
section#sectionDepartmentsDefault article {
    border-radius: 5px;
    box-shadow: 1px 2px 20px 0px rgb(230 230 230 / 80%);
}
section#sectionDepartmentsDefault article::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--secondary-color);
    right: 0;
    top: 20px;
}
section#sectionDepartmentsDefault article::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    right: 0;
    top: 40px;
}
section#sectionDepartmentsDefault article img.departments-icon {
    width: 80px;
    max-width: 80px;
    height: auto;
    transition: 0.2s;
}
section#sectionDepartmentsDefault a:hover article img.departments-icon {
    transform: scale(1.3);
}
/*------ #SECTION DEPARTMENTS DEFAULT ------*/

/*----------  Accordion Nav Menu  ----------*/
div#tw-department .tw-accordion-menu ul {
    list-style: none;
    padding: 0;
}
div#tw-department .tw-accordion-menu ul > li.active {
    background: #293b6d;
}
div#tw-department aside.tw-accordion-menu ul li a {
    color: #fff;
    padding: 0;
    text-decoration: none;
}
div#tw-department aside.tw-accordion-menu > nav > div > div {
    width: 100%;
}
div#tw-department aside.tw-accordion-menu > nav > div > div > ul > li {
    margin-bottom: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
}
div#tw-department aside.tw-accordion-menu li {
    padding-left: 40px;
    /*padding-right: 20px;*/
    width: 100%;
    background: var(--primary-color);
}
div#tw-department aside.tw-accordion-menu span[data-bs-toggle="collapse"] {
    cursor: pointer;
    position: relative;
    color: #fff;
}
div#tw-department
    aside.tw-accordion-menu
    span[data-bs-toggle="collapse"]::after {
    position: absolute;
    left: -20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f146";
}
div#tw-department
    aside.tw-accordion-menu
    span.collapsed[data-bs-toggle="collapse"]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0fe";
}
/*accordion nav hamburger animated*/
div#tw-department aside.tw-accordion-menu button:focus {
    box-shadow: none;
}
div#tw-department aside.tw-accordion-menu button label {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
}
div#tw-department aside.tw-accordion-menu button label span {
    background: #fff;
    border-radius: 10px;
    height: 4px;
    margin: 4px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
div#tw-department aside.tw-accordion-menu button label span:nth-of-type(1) {
    width: 50%;
}
div#tw-department aside.tw-accordion-menu button label span:nth-of-type(2) {
    width: 100%;
}
div#tw-department aside.tw-accordion-menu button label span:nth-of-type(3) {
    width: 75%;
}
div#tw-department aside.tw-accordion-menu button input[type="checkbox"] {
    display: none;
}
div#tw-department
    aside.tw-accordion-menu
    button
    input[type="checkbox"]:checked
    ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(6px, 0.5px);
}
div#tw-department
    aside.tw-accordion-menu
    button
    input[type="checkbox"]:checked
    ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}
div#tw-department
    aside.tw-accordion-menu
    button
    input[type="checkbox"]:checked
    ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(17px, -6px) rotatez(45deg);
}

/*=============================================
  =            EVENTS SECTION STYLES            =
  =============================================*/
section#tw-events > div::after {
    content: "";
    background: var(--tertiary-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.7;
}
section#tw-events > div::before {
    content: "";
    background-size: 70%;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    filter: blur(1px);
    opacity: 0.3;
}
section#tw-events h3.tw-events-title {
    font-size: 28px;
}
section#tw-events article > div:first-child {
    width: 167px;
    height: 167px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: white;
}
section#tw-events article > div:first-child div.tw-date {
    font-size: 28px;
    word-spacing: 15px;
}
section#tw-events article > div:first-child div.tw-date::after {
    content: "";
    width: 40%;
    height: 1px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -10px;
}
section#tw-events article > div:first-child div.tw-event-title {
    font-size: 14px;
}
section#tw-events article > div:first-child div.tw-event-venue {
    font-size: 12px;
}
section#tw-events article > div:first-child div.tw-event-time {
    font-size: 12px;
    color: #000;
    opacity: 0.36;
}
section#tw-events .owl-nav {
    position: absolute;
    width: 100%;
    top: 44%;
    /*padding: 0 10px;*/
}
@media (min-width: 1200px) {
    section#tw-events > div::before {
        background-size: 760px;
    }
}
@media (max-width: 920px) {
    section#tw-events .tw-date {
        font-size: 22px !important;
    }
    section#tw-events .tw-event-name {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 16px;
        max-height: 64px;
    }
}

/*subscribe*/

section#tw-subscribe #tw-subscribe-inner {
    border: 1px solid var(--primary-color);
}

section#tw-subscribe #tw-subscribe-inner a,
section#tw-subscribe #tw-subscribe-inner label {
    font-size: 17px;
}
section#tw-subscribe #tw-subscribe-inner form .tw-custom-selection input {
    visibility: hidden;
    position: absolute;
}

section#tw-subscribe #tw-subscribe-inner form .tw-custom-selection label {
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    padding: 10px 0;
    border: 2px solid transparent;
}
section#tw-subscribe
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    label {
    border-radius: 10px;
    padding: 0 5px;
    white-space: nowrap;
}
section#tw-subscribe #tw-subscribe-inner form #sub_name,
section#tw-subscribe #tw-subscribe-inner form #sub_email,
section#tw-subscribe #tw-subscribe-inner form #sub_phone {
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}
section#tw-subscribe
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-lg
    label {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
section#tw-subscribe
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-lg
    input:checked
    + label {
    color: #ffffff !important;
    background: var(--primary-color);
}
section#tw-subscribe
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    input
    + label {
    background: var(--primary-color);
    border-radius: 10px;
    font-weight: 900;
    padding: 0 5px;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
    border: 2px solid transparent;
    font-size: 16px;
}
section#tw-subscribe
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    input:checked
    + label {
    background: var(--secondary-color);
}
section#tw-subscribe #tw-subscribe-inner form #homepage-extra-subscribe {
    display: none;
}

/*subscribe in events*/
section#tw-events #tw-subscribe-inner {
    border: 1px solid var(--primary-color);
}
section#tw-events #tw-subscribe-inner a,
section#tw-events #tw-subscribe-inner label {
    font-size: 17px;
}
section#tw-events #tw-subscribe-inner form .tw-custom-selection input {
    visibility: hidden;
    position: absolute;
}

section#tw-events #tw-subscribe-inner form .tw-custom-selection label {
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    padding: 10px 0;
    border: 2px solid transparent;
}
section#tw-events
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    label {
    border-radius: 10px;
    padding: 0 5px;
    white-space: nowrap;
}
section#tw-events #tw-subscribe-inner form #sub_name,
section#tw-events #tw-subscribe-inner form #sub_email,
section#tw-events #tw-subscribe-inner form #sub_phone {
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}
section#tw-events
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-lg
    label {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
section#tw-events
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-lg
    input:checked
    + label {
    color: #ffffff !important;
    background: var(--primary-color);
}
section#tw-events
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    input
    + label {
    background: var(--primary-color);
    border-radius: 10px;
    font-weight: 900;
    padding: 0 5px;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
    border: 2px solid transparent;
    font-size: 16px;
}
section#tw-events
    #tw-subscribe-inner
    form
    .tw-custom-selection.tw-custom-selection-sm
    input:checked
    + label {
    background: var(--secondary-color);
}
section#tw-events #tw-subscribe-inner form #homepage-extra-subscribe {
    display: none;
}
/*=====  End of EVENTS SECTION STYLES  ======*/

/*=============================================
  =            MEETINGS SECTION STYLES          =
  =============================================*/
.tw-meeting-repo-table {
    width: 100%;
}

.twd-rep-form-holder label {
    float: left;
    margin: 0 10px;
}
.twd-rep-form-holder select {
    float: left;
}
.twd-rep-form-holder:after {
    content: "";
    display: block;
    clear: both;
}
.twd-rep-form-holder strong {
    font-width: bold;
    color: #000;
}
.twd-category-name {
    margin-top: 2.5rem !important;
}

.hide-element {
    display: none;
}

/*
  Responsive meeting tables
  */
@media only screen and (min-width: 1024px) {
    .twd-table td.meeting-date-column {
        width: 15%;
    }
    .twd-table td.agenda-column {
        width: 15%;
    }
    .twd-table td.agenda-packet-column {
        width: 10%;
    }
    .twd-table td.meeting-minutes-column {
        width: 15%;
    }
    .twd-table td.audio-column {
        width: 10%;
    }
    .twd-table td.video-column {
        width: 10%;
    }
    .twd-table td.additional-documents-column {
        width: 15%;
    }
}

@media only screen and (max-width: 1024px) {
    .twd-table,
    .twd-table thead,
    .twd-table tbody,
    .twd-table th,
    .twd-table td,
    .twd-table tr {
        display: block;
    }

    .twd-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .twd-table td {
        border: none;
        position: relative;
        padding-left: 50% !important;
        min-height: 40px;
    }

    .twd-table td.empty {
        display: none;
    }

    .twd-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
      Label the data
      */
    .twd-table td.title-column:before {
        content: "Title";
    }
    .twd-table td.meeting-date-column:before {
        content: "Meeting Date";
    }
    .twd-table td.agenda-column:before {
        content: "Agenda";
    }
    .twd-table td.agenda-packet-column:before {
        content: "Packet";
    }
    .twd-table td.meeting-minutes-column:before {
        content: "Meeting Minutes";
    }
    .twd-table td.audio-column:before {
        content: "Audio";
    }
    .twd-table td.video-column:before {
        content: "Video";
    }
    .twd-table td.additional-documents-column:before {
        content: "Additional Docs";
    }
    .twd-table td.notes-column:before {
        content: "Notes";
    }
}

div.Tokenize {
    display: block;
    width: auto;
}
div.Tokenize ul.TokensContainer {
    height: auto;
}
div.Tokenize ul.TokensContainer .Close {
    box-shadow: none;
}

.load-more {
    cursor: pointer;
}
.rep_meeting_homepage #homepage-advanced-filter {
    background: #ffffff;
    border: 1px solid #d1d1d1;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 12px;
}
.rep_meeting_homepage th,
.rep_meeting_homepage td,
.rep_meeting_homepage #homepage-advanced-filter label {
    font-size: 14px !important;
}

/*=====  End of MEETINGS  ======*/

/*Juniper News and Notices Archive Page*/
#juniperNews .archive-item {
    border-radius: 15px;
}

#juniperNews .archive-item-image {
    border-radius: 15px;
}

#juniperNews .archive-item-body {
    min-height: 180px;
}

#juniperNews .archive-item-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#juniperNews .archive-item-snippet {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#juniperNews .archive-item-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
/*END Juniper News and Notices Archive Page*/

/* Juniper Subscribe Page*/

.juniper-subscriber-title {
    display: block;
    margin-bottom: 15px;
}

.juniper-row {
    margin-bottom: 10px;
}

.juniper-row:after {
    content: "";
    display: block;
    clear: both;
}

#juniper-subscribe-topics-parent,
#juniper-subscribe-method-parent {
    padding: 1rem 2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.juniper-subscriber-form-box .sub {
    margin-left: 30px;
}
.juniper-subscriber-form-box .juniper-subscribe-method .custom-selection {
    position: relative;
    display: inline-block;
}
.juniper-subscriber-form-box .juniper-subscribe-method .custom-selection input {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.juniper-subscriber-form-box .juniper-subscribe-method .custom-selection label {
    border: 1px solid #c6c6c6;
    box-sizing: border-box;
    border-radius: 10px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    padding: 10px;
    color: #4c4c4c;
    min-width: 100px;
    margin: 5px;
    padding-bottom: 1.5rem;
}
.juniper-subscriber-form-box
    .juniper-subscribe-method
    .custom-selection
    label
    i {
    display: block;
}
.juniper-subscriber-form-box
    .juniper-subscribe-method
    .custom-selection
    input:checked
    + label {
    border-color: #4245e7 !important;
}
.juniper-subscriber-form-box
    .juniper-subscribe-method
    .custom-selection
    input:checked
    + label
    i {
    color: #4245e7 !important;
}
.juniper-agendas-minutes-packets {
    display: none;
}

/*.heygov-widget-button {
    right: 60px !important;
    bottom: 16px !important;
  } */

/* Lightbox 2*/
.lb-image {
    max-width: inherit !important;
}

@media all and (min-width: 992px) {
    .dropdown-menu {
        width: 13rem;
    }
    .mega-submenu {
        left: 100%;
        top: 0;
        min-width: 25rem;
    }
    .ktm-mega-menu {
        position: static;
    }
    .mega-menu {
        left: 0;
        right: 0;
        width: 100%;
    }
    .dropdown-menu li {
        position: relative;
    }
    .dropdown-menu .submenu {
        display: none;
        left: 100%;
        top: 0;
    }
    .dropdown-menu > li:hover > .submenu,
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/*----------  EVENTS CALENDAR  ----------*/
/*simple*/
.tw-calendar-shortcode .tw-calendar-title {
    /* font-size: 32px; */
}
.tw-calendar-shortcode .tw-calendar-table-header {
    /* font-size: 20px; */
}
.tw-calendar-shortcode .tw-calendar-table-header th {
    width: 14.28%;
}
.tw-calendar-shortcode .tw-calendar-table-body.tw-calendar-table-body-simple {
    /* font: 700 24px "Playfair Display", serif; */
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-simple
    td
    div.tw-calendar-current-date
    span:first-child,
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-simple
    td
    div.tw-calendar-has-events-date
    span:first-child {
    width: 45px;
    height: 45px;
    top: calc(50% - 25px);
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-simple
    td
    div.tw-calendar-current-date
    span:first-child {
    outline: 2px solid red;
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-simple
    td
    div.tw-calendar-day.tw-calendar-day-active
    span:first-child {
    background: var(--tertiary-color);
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-simple
    td
    div.tw-calendar-day.tw-calendar-has-events-date:not(.tw-calendar-day-active)
    span:first-child {
    background: var(--primary-color);
}
.tw-calendar-shortcode .cursor-pointer {
    cursor: pointer;
}
@media (min-width: 768px) {
    .tw-calendar-shortcode .tw-calendar-table-header {
        /* font-size: 30px; */
    }
}
/*rich*/
.tw-calendar-shortcode.tw-calendar-shortcode-rich > div:first-child {
    background: #fff;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-rich
    td
    div {
    min-height: 85px;
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-rich
    td
    div
    span.tw-calendar-day-event-title,
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-rich
    td
    div
    span.tw-calendar-day-event-more {
    font-size: 12px;
}
.tw-calendar-shortcode
    .tw-calendar-table-body.tw-calendar-table-body-rich
    td
    div.tw-calendar-day.tw-calendar-day-active {
    background: #f5f4f3;
}
/*----------  EVENTS LIST  ----------*/
.tw-calendar-shortcode .tw-calendar-events-cards article {
    border-left: 20px solid var(--secondary-color);
    min-height: 160px;
}
.tw-calendar-shortcode.tw-calendar-shortcode-rich
    .tw-calendar-events-cards
    article {
    border-left: none;
    min-height: 130px;
    border: 3px solid #f5f4f3;
    border-radius: 8px;
    transition: 0.1s;
}
.tw-calendar-shortcode.tw-calendar-shortcode-rich
    .tw-calendar-events-cards
    article:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.tw-calendar-shortcode.tw-calendar-shortcode-rich .tw-calendar-events-cards {
    height: 565px;
}
.tw-calendar-shortcode .tw-calendar-events-cards .tw-event-list-scrollbar {
    height: 525px;
    top: 20px;
    bottom: 20px;
}
@media (min-width: 1200px) {
    .tw-calendar-shortcode.tw-calendar-shortcode-rich .tw-calendar-events-cards,
    .tw-calendar-shortcode .tw-calendar-events-cards .tw-event-list-scrollbar {
        height: auto;
    }
}

/*Calendar list scrollbar*/
/* width */
.tw-calendar-events-cards ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.tw-calendar-events-cards ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--secondary-color);
    border-radius: 10px;
}

/* Handle */
.tw-calendar-events-cards ::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

/*============================================
  =            SOCIAL NETWORKS MENU            =
  ============================================*/
ul.social-networks-menu li a {
    color: var(--secondary-color);
    font-size: 34px;
}
/*=====  End of SOCIAL NETWORKS MENU  ======*/

img[src=""] {
    display: none;
}

.heygov-vidget-button {
    right: 60px;
    bottom: 15px;
}

/* Header Social Menu */
#headerSocialMenu li {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 7px;
    margin-right: 5px;
    border-radius: 5px;
}

#headerSocialMenu li a {
    display: flex;
    margin: 0;
    padding: 0;
}
#headerSocialMenu li a i {
    font-size: 1.5rem;
    color: white;
    margin-right: 0px !important;
}

#newsSingleDefault img {
    max-width: 100%;
}

/* highlight advanced search meatches */
#search-results em {
    background-color: darkkhaki;
}
#search-results {
    word-wrap: break-word;
}
