@charset "UTF-8";
/* Font Awesome 6 Free */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
/*  retrocompatibilidade com fontawesome 5 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/v4-shims.min.css');

/* Custom Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead {
    background-color: #cdcdcd;
}

table,
th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

/*  table orange */
table.orange {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.orange thead {
    background-color: #ffa500;
    color: #fff;
}

table.orange,
table.orange th,
table.orange td {
    border: 1px solid #ff8c00;
    padding: 8px;
    text-align: left;
}

table.orange th {
    background-color: #f7ecdf;
    color: #333;
}

table.orange tr:nth-child(even) {
    background-color: #f7ecdf;
}

table.orange tr:hover {
    background-color: #f5c68c;
}

/*  table green */
table.green {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.green thead {
    background-color: #008000;
    color: #fff;
}

table.green,
table.green th,
table.green td {
    border: 1px solid #006400;
    padding: 8px;
    text-align: left;
}

table.green th {
    background-color: #f0fff0;
    color: #333;
}

table.green tr:nth-child(even) {
    background-color: #f0fff0;
}

table.green tr:hover {
    background-color: #98fb98;
}

/*  table blue */
table.blue {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.blue thead {
    background-color: #0000ff;
    color: #fff;
}

table.blue,
table.blue th,
table.blue td {
    border: 1px solid #00008b;
    padding: 8px;
    text-align: left;
}

table.blue th {
    background-color: #f0f8ff;
    color: #333;
}

table.blue tr:nth-child(even) {
    background-color: #f0f8ff;
}

table.blue tr:hover {
    background-color: #add8e6;
}

/*  table red */
table.red {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.red thead {
    background-color: #ff0000;
    color: #fff;
}

table.red,
table.red th,
table.red td {
    border: 1px solid #8b0000;
    padding: 8px;
    text-align: left;
}

table.red th {
    background-color: #ffe4e1;
    color: #333;
}

table.red tr:nth-child(even) {
    background-color: #ffe4e1;
}

table.red tr:hover {
    background-color: #ffb6c1;
}

/*  table purple */
table.purple {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.purple thead {
    background-color: #800080;
    color: #fff;
}

table.purple,
table.purple th,
table.purple td {
    border: 1px solid #4b0082;
    padding: 8px;
    text-align: left;
}

table.purple th {
    background-color: #e6e6fa;
    color: #333;
}

table.purple tr:nth-child(even) {
    background-color: #e6e6fa;
}

table.purple tr:hover {
    background-color: #d8bfd8;
}

/*  table yellow */
table.yellow {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.yellow thead {
    background-color: #ffff00;
    color: #333;
}

table.yellow,
table.yellow th,
table.yellow td {
    border: 1px solid #808000;
    padding: 8px;
    text-align: left;
}

table.yellow th {
    background-color: #ffffe0;
    color: #333;
}

table.yellow tr:nth-child(even) {
    background-color: #ffffe0;
}

table.yellow tr:hover {
    background-color: #ffff99;
}

/*  table pink */
table.pink {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.pink thead {
    background-color: #ff69b4;
    color: #fff;
}

table.pink,
table.pink th,
table.pink td {
    border: 1px solid #ff1493;
    padding: 8px;
    text-align: left;
}

table.pink th {
    background-color: #fff0f5;
    color: #333;
}

table.pink tr:nth-child(even) {
    background-color: #fff0f5;
}

table.pink tr:hover {
    background-color: #ffc0cb;
}

/*  table brown */
table.brown {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.brown thead {
    background-color: #a52a2a;
    color: #fff;
}

table.brown,
table.brown th,
table.brown td {
    border: 1px solid #8b0000;
    padding: 8px;
    text-align: left;
}

table.brown th {
    background-color: #f5deb3;
    color: #333;
}

table.brown tr:nth-child(even) {
    background-color: #f5deb3;
}

table.brown tr:hover {
    background-color: #d2b48c;
}

/* table blue sky */
table.blue-sky {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.blue-sky thead {
    background-color: #87ceeb;
    color: #fff;
}

table.blue-sky,
table.blue-sky th,
table.blue-sky td {
    border: 1px solid #4682b4;
    padding: 8px;
    text-align: left;
}

table.blue-sky th {
    background-color: #f0f8ff;
    color: #333;
}

table.blue-sky tr:nth-child(even) {
    background-color: #f0f8ff;
}

table.blue-sky tr:hover {
    background-color: #add8e6;
}

/* table green yellow */
table.green-yellow {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.green-yellow thead {
    background-color: #adff2f;
    color: #333;
}

table.green-yellow,
table.green-yellow th,
table.green-yellow td {
    border: 1px solid #7fff00;
    padding: 8px;
    text-align: left;
}

table.green-yellow th {
    background-color: #f0fff0;
    color: #333;
}

table.green-yellow tr:nth-child(even) {
    background-color: #f0fff0;
}

table.green-yellow tr:hover {
    background-color: #98fb98;
}

/* table aqua */
table.aqua {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.aqua thead {
    background-color: #00ffff;
    color: #333;
}

table.aqua,
table.aqua th,
table.aqua td {
    border: 1px solid #00ced1;
    padding: 8px;
    text-align: left;
}

table.aqua th {
    background-color: #e0ffff;
    color: #333;
}

table.aqua tr:nth-child(even) {
    background-color: #e0ffff;
}

table.aqua tr:hover {
    background-color: #afeeee;
}

/* table purple pink */
table.purple-pink {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.purple-pink thead {
    background-color: #ff00ff;
    color: #fff;
}

table.purple-pink,
table.purple-pink th,
table.purple-pink td {
    border: 1px solid #8b008b;
    padding: 8px;
    text-align: left;
}

table.purple-pink th {
    background-color: #e6e6fa;
    color: #333;
}

table.purple-pink tr:nth-child(even) {
    background-color: #e6e6fa;
}

table.purple-pink tr:hover {
    background-color: #d8bfd8;
}

/* table marine */
table.marine {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.marine thead {
    background-color: #000080;
    color: #fff;
}

table.marine,
table.marine th,
table.marine td {
    border: 1px solid #00008b;
    padding: 8px;
    text-align: left;
}

table.marine th {
    background-color: #f0f8ff;
    color: #333;
}

table.marine tr:nth-child(even) {
    background-color: #f0f8ff;
}

table.marine tr:hover {
    background-color: #add8e6;
}

/* table lilac */
table.lilac {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.lilac thead {
    background-color: #c8a2c8;
    color: #fff;
}

table.lilac,
table.lilac th,
table.lilac td {
    border: 1px solid #8b668b;
    padding: 8px;
    text-align: left;
}

table.lilac th {
    background-color: #e6e6fa;
    color: #333;
}

table.lilac tr:nth-child(even) {
    background-color: #e6e6fa;
}

table.lilac tr:hover {
    background-color: #d8bfd8;
}

/* table gold (with lightning effect) */
table.gold {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.gold tr,
table.gold th,
table.gold td {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

table.gold thead {
    /* 4 colors */
    background: linear-gradient(46deg, #ffd700 0%, #fff 15%, #ffd700 65%, #fff 100%);
    color: #333;
}

table.gold,
table.gold th,
table.gold td {
    border: 1px solid #ffd700;
    padding: 8px;
    text-align: left;
}

table.gold th {
    background: linear-gradient(46deg, #ffd700 0%, #fff 15%, #ffd700 65%, #fff 100%);
    color: #333;
}

table.gold tr:nth-child(even) {
    background: linear-gradient(46deg, #ffd700 0%, #fff 15%, #ffd700 65%, #fff 100%);
}

table.gold tr:hover {
    background: linear-gradient(46deg, #ffd700 0%, #fff 15%, #ffd700 65%, #fff 100%);
    box-shadow: 0 0 10px #ffd700;
}

/* table silver (with lightning effect) */
table.silver {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.silver tr,
table.silver th,
table.silver td {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

table.silver thead {
    /* 4 colors */
    background: linear-gradient(46deg, #c0c0c0 0%, #fff 15%, #c0c0c0 65%, #fff 100%);
    color: #333;
}

table.silver,
table.silver th,
table.silver td {
    border: 1px solid #c0c0c0;
    padding: 8px;
    text-align: left;
}

table.silver th {
    background: linear-gradient(46deg, #c0c0c0 0%, #fff 15%, #c0c0c0 65%, #fff 100%);
    color: #333;
}

table.silver tr:nth-child(even) {
    background: linear-gradient(46deg, #c0c0c0 0%, #fff 15%, #c0c0c0 65%, #fff 100%);
}

table.silver tr:hover {
    background: linear-gradient(46deg, #c0c0c0 0%, #fff 15%, #c0c0c0 65%, #fff 100%);
    box-shadow: 0 0 10px #c0c0c0;
}

/* table bronze (with lightning effect) */
table.bronze {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.bronze tr,
table.bronze th,
table.bronze td {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

table.bronze thead {
    /* 4 colors */
    background: linear-gradient(46deg, #cd7f32 0%, #fff 15%, #cd7f32 65%, #fff 100%);
    color: #333;
}

table.bronze,
table.bronze th,
table.bronze td {
    border: 1px solid #cd7f32;
    padding: 8px;
    text-align: left;
}

table.bronze th {
    background: linear-gradient(46deg, #cd7f32 0%, #fff 15%, #cd7f32 65%, #fff 100%);
    color: #333;
}

table.bronze tr:nth-child(even) {
    background: linear-gradient(46deg, #cd7f32 0%, #fff 15%, #cd7f32 65%, #fff 100%);
}

table.bronze tr:hover {
    background: linear-gradient(46deg, #cd7f32 0%, #fff 15%, #cd7f32 65%, #fff 100%);
    box-shadow: 0 0 10px #cd7f32;
}

[class*="fas"],
[class*="fab"] [class*="fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important
}

[class*="far"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important
}

[class*="fal"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 300 !important
}

body {
    line-height: 1.75;
}

body.helix-ultimate-preloader:after {
    font-weight: 900;
}

img {
    max-width: 100%;
    height: auto;
}

.article-intro-image,
.article-full-image {
    width: 100%;
    height: auto;
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

#system-message-container {
    position: fixed;
    bottom: 0px;
    right: 15px;
    max-width: 350px
}

#system-message-container .alert {
    font-size: 13px;
    line-height: 1.5
}

#system-message-container .alert>.btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer
}

#system-message-container joomla-alert {
    font-size: 13px
}

.com-users.view-registration #member-registration .modal-dialog,
.com-users.view-registration #member-profile .modal-dialog,
.com-users.view-profile #member-registration .modal-dialog,
.com-users.view-profile #member-profile .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.registration #member-registration #jform_privacyconsent_privacy-lbl {
    display: inline-flex
}

.registration #member-registration #jform_privacyconsent_privacy-lbl>a {
    position: initial;
    display: block;
    color: #7b7b7b
}

.registration #member-registration #jform_privacyconsent_privacy-lbl>a:hover,
.registration #member-registration #jform_privacyconsent_privacy-lbl>a:focus {
    color: #d50744
}

body.com-users.view-registration>#sbox-window {
    overflow: hidden
}

body.com-users.view-registration>#sbox-window>#sbox-btn-close {
    top: 5px;
    right: 5px
}

.modal-dialog.jviewport-width80 {
    width: 80vw;
    max-width: none
}

.btn:focus {
    box-shadow: none !important
}

@media (max-width:1440px) {
    .sp-dropdown.sp-dropdown-mega {
        width: 920px !important
    }
}

a {
    transition: color 400ms, background-color 400ms
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none
}

label {
    font-weight: normal
}

legend {
    color: #333333;
    padding-bottom: 10px
}

img {
    display: block;
    max-width: 100%;
}

#sp-top-bar {
    padding: 8px 0;
    font-size: 0.875rem
}

#sp-top-bar .sp-module {
    margin: 0 0 0 1.25rem
}

ul.social-icons {
    margin: -5px;
    display: inline-block
}

ul.social-icons>li {
    display: inline-block;
    margin: 5px 7px;
    font-size: 2rem;
}

.sp-contact-info {
    margin: 0 -10px
}

.sp-contact-info li {
    margin: 0 10px;
}

.sp-contact-info li i {
    margin: 0 3px
}

#sp-header {
    height: 120px;
    top: 0;
    z-index: 99;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    padding: 0 25px
}

#sp-header .logo {
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

#sp-header.header-sticky {
    z-index: 9999
}

#sp-header.header-sticky #offcanvas-toggler {
    height: 100px;
    line-height: 100px
}

#sp-header .sp-module-content {
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

#sp-title {
    min-height: 0
}

.sp-page-title {
    padding: 220px 0 320px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%)
}

.sp-page-title:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #d50744 100%) transparent;
    z-index: -1
}

.sp-page-title .sp-page-title-heading,
.sp-page-title .sp-page-title-sub-heading {
    color: #fff;
    max-width: 820px
}

.sp-page-title .sp-page-title-heading {
    font-family: Lora;
    font-weight: 400;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: 0px;
}

.sp-page-title .sp-page-title-sub-heading {
    font-size: 35px;
    font-weight: 400;
}

.sp-page-title .breadcrumb {
    margin: 10px 0 0
}

.sp-page-title .breadcrumb>.active {
    color: #c9c9c9
}

.sp-page-title .breadcrumb>li,
.sp-page-title .breadcrumb>li+li:before,
.sp-page-title .breadcrumb>span,
.sp-page-title .breadcrumb>li>a {
    font-family: "Roboto";
    color: #c9c9c9
}

.sp-page-title .breadcrumb>li+li+li:before {
    content: ">"
}

.search .search-results dd,
.search .search-results dt {
    margin: 5px 0
}

.com-content.view-category .blog>.page-header {
    font-family: "Lora";
    font-size: 35px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 60px
}

.com-content.view-category .blog>.page-header h3 {
    font-family: "Lora";
    font-size: 35px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333
}

.com-content.view-category .blog>.page-header .page-subheader {
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #7b7b7b;
    margin-top: 10px
}

.article-list.articles-leading {
    display: flex;
    margin: -15px
}

.article-list.articles-leading .article {
    padding: 15px;
    font-weight: 300
}

.article-list .article {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 0;
}

.article-list .article .article-feature-gallery,
.article-list .article .article-featured-audio,
.article-list .article .article-featured-video,
.article-list .article .article-intro-image {
    overflow: hidden;
    margin: 0;
}

.article-list .article .article-feature-gallery img,
.article-list .article .article-featured-audio img,
.article-list .article .article-featured-video img,
.article-list .article .article-intro-image img {
    width: 100%
}

.article-list .article .article-body {
    padding-top: 20px
}

.article-list .article .article-header h1,
.article-list .article .article-header h2 {
    font-family: "Lora";
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 1rem
}

.article-list .article .article-header h1 a,
.article-list .article .article-header h2 a {
    color: #333
}

.article-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
    position: relative
}

.article-info .published {
    margin-left: -15px;
    margin-right: 15px
}

.article-info>span {
    font-size: 16px;
    font-weight: 400;
    line-height: 2
}

.article-info>span+span::before {
    display: inline-block;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    content: " "
}

.article-info>span a {
    color: #ab1642
}

.article-info>span a:hover {
    color: #d50744
}

.article-info>span.category-name a {
    font-family: "Lora";
    font-size: 12px;
    color: #ab1642;
    border-radius: 11px;
    padding: 4px 15px;
    background-color: #fdeff3
}

.article-info>span.published {
    font-family: "Roboto";
    color: rgba(123, 123, 123, 0.5)
}

.article-info>span.createdby {
    font-family: "Lora";
    text-transform: uppercase;
    color: #ab1642
}

.com-content.view-article .article-header-wrap {
    align-items: center;
    background-color: #fdeff3
}

.com-content.view-article .article-full-image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #d50744 100%) transparent;
    z-index: -1
}

.com-content.view-article .article-info-wrap {
    position: relative
}

.com-content.view-article .article-info-wrap .article-ratings-social-share .article-ratings {
    display: none
}

.com-content.view-article .article-info-wrap .article-ratings-social-share .article-social-widget,
#akengage-comments-section {
    max-width: 1140px;
    margin: auto;
    z-index: 100
}

.com-content.view-article .article-info-wrap .article-ratings-social-share .article-social-widget .article-social-share {
    position: relative;
    top: 100px;
    float: left;
}

.article-details .article-header {
    position: relative;
    max-width: 820px
}

.article-details .article-header h1,
.article-details .article-header h2 {
    font-family: "Lora";
    font-size: 60px;
    font-weight: 400;
    color: #ffffff
}

.article-details .link-edit-article {
    position: absolute;
    right: 0
}

.article-details .article-full-image {
    text-align: center;
}

.article-details .article-feature-gallery,
.article-details .article-featured-audio,
.article-details .article-featured-video {
    margin-bottom: 2rem
}

.article-details .article-info>span {
    color: rgba(255, 255, 255, 0.5)
}

.article-details .article-info>span.published,
.article-details .article-info>span.createdby {
    order: 1
}

.article-details .article-info>span.category-name {
    top: 0
}

.article-details .article-info>span.category-name a {
    color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    text-transform: uppercase;
    font-size: 16px
}

.article-details .article-ratings-social-share {
    padding: 0;
    background-color: #fdeff3;
    margin-bottom: 0;
    border: 0;
}

.article-details .pagination {
    list-style: none;
    padding: 0px;
    padding: 2rem 0 0;
    margin: 2rem 0 0;
    border-top: 1px solid #f5f5f5;
    display: block
}

.article-details .pagination li a {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.article-details .pagination li a:hover,
.article-details .pagination li a:focus,
.article-details .pagination li a:active {
    border-color: #ab1642;
    color: #ab1642;
    background: transparent
}

.tags {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: block
}

.tags>li {
    display: inline-block
}

.pagination {
    width: 100%
}

.pagination::after {
    display: block;
    clear: both;
    content: ""
}

.pagination>li a {
    font-size: 1.2rem;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.article-ratings .rating-symbol span.rating-star {
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.view-category .pagination-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d9d9d9
}

.view-category .pagination-wrapper .mr-auto {
    width: 100%
}

.view-category .pagination-wrapper .pagination {
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    justify-content: center
}

.view-category .pagination-wrapper .pagination .page-item>a,
.view-category .pagination-wrapper .pagination .page-item span {
    font-size: 16px;
    color: #7b7b7b;
    font-weight: 400;
    background-color: transparent;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    line-height: 40px
}

.view-category .pagination-wrapper .pagination .page-item>a:focus,
.view-category .pagination-wrapper .pagination .page-item span:focus {
    box-shadow: none
}

.view-category .pagination-wrapper .pagination .page-item:first-child {
    position: absolute;
    left: 0
}

.view-category .pagination-wrapper .pagination .page-item:first-child .page-link {
    width: auto;
    font-family: "Lora";
    font-size: 22px;
    font-weight: 400;
    color: rgba(123, 123, 123, 0.5);
    padding-left: 45px
}

.view-category .pagination-wrapper .pagination .page-item:first-child .page-link:after {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-weight: 900
}

.view-category .pagination-wrapper .pagination .page-item:last-child {
    position: absolute;
    right: 0
}

.view-category .pagination-wrapper .pagination .page-item:last-child .page-link {
    width: auto;
    font-family: "Lora";
    font-size: 22px;
    font-weight: 400;
    color: rgba(123, 123, 123, 0.5);
    padding-right: 45px
}

.view-category .pagination-wrapper .pagination .page-item:last-child .page-link:after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-weight: 900
}

.view-category .pagination-wrapper .pagination .page-item .page-link {
    border: 0;
    padding: 0;
    margin: 0 3px
}

.view-category .pagination-wrapper .pagination .page-item .page-link.next,
.view-category .pagination-wrapper .pagination .page-item .page-link.previous {
    display: none
}

.view-category .pagination-wrapper .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #ab1642
}

.view-category .pagination-wrapper .pagination .page-item.active {
    position: relative
}

.view-category .pagination-wrapper .pagination .page-item.active .page-link {
    width: 40px;
    font-size: 16px;
    color: #7b7b7b;
    font-weight: 400;
    background-color: transparent;
    border-radius: 100%;
    padding-right: 0;
    padding-left: 0
}

.view-category .pagination-wrapper .pagination .page-item.active .page-link:after {
    display: none
}

.view-category .pagination-counter {
    display: none
}

.article-social-share .social-share-icon ul {
    margin: 0;
    padding-left: 15px
}

.article-social-share .social-share-icon ul li {
    margin-bottom: 10px
}

.article-social-share .social-share-icon ul li a {
    font-size: 1.45rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #f3f3f3;
}

.article-social-share .social-share-icon ul li a:hover {
    color: #ab1642;
    background-color: transparent;
}

.archive-module,
.categories-module,
.category-module,
.form-links,
.latestnews,
.list-striped,
.mostread,
.newsflash-horiz {
    list-style: none;
    padding: 0;
    margin: 0
}

.archive-module li,
.categories-module li,
.category-module li,
.form-links li,
.latestnews li,
.list-striped li,
.mostread li,
.newsflash-horiz li {
    padding: 2px 0
}

.archive-module li h4,
.categories-module li h4,
.category-module li h4,
.form-links li h4,
.latestnews li h4,
.list-striped li h4,
.mostread li h4,
.newsflash-horiz li h4 {
    margin: 5px 0
}

.article-footer-top {
    display: table;
    clear: both;
    width: 100%
}

.article-footer-top .post_rating {
    float: left
}

.contentpane:not(.com-sppagebuilder) {
    padding: 20px
}

#sp-bottom {
    padding: 90px 0 25px;
    font-size: 14px;
    line-height: 1.6
}

#sp-bottom .sp-module {
    margin-bottom: 15px
}

#sp-bottom .sp-module .sp-module-title {
    font-size: 22px;
    font-weight: 400;
    font-family: "Lora";
    margin: 0 0 18px
}

#sp-bottom .sp-module ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#sp-bottom .sp-module ul>li {
    display: block;
    margin-bottom: 15px
}

#sp-bottom .sp-module ul>li:last-child {
    margin-bottom: 0
}

#sp-bottom .sp-module ul>li>a {
    display: block;
    font-family: "Roboto"
}

#sp-bottom .sp-module ul>li.active a {
    color: #FFFFFF
}

#sp-bottom #sp-bottom1 .sp-module ul>li>a {
    font-size: 18px;
    font-family: "Lora";
    font-weight: 400;
    line-height: 1.44;
    color: #FFFFFF;
    position: relative
}

#sp-bottom #sp-bottom1 .sp-module ul>li>a:after {
    content: "\f105";
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    margin-left: 18px;
    font-weight: 900
}

#sp-bottom #sp-bottom1 .sp-module ul>li>a:active,
#sp-bottom #sp-bottom1 .sp-module ul>li>a:focus,
#sp-bottom #sp-bottom1 .sp-module ul>li>a:hover {
    color: rgba(255, 255, 255, 0.5)
}

#sp-footer {
    font-size: 14px;
    padding: 0
}

#sp-footer .container-inner {
    padding: 45px 0;
    border-top: 1px solid rgba(255, 255, 255, 0)
}

#sp-footer .sp-copyright {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5)
}

html.coming-soon body {
    background-position: 50% 40%;
    background-size: cover;
    color: #fff;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #d50744 100%) transparent
}

html.coming-soon .social-icons a {
    color: #fff
}

html.error-page body {
    background-size: cover;
}

html.error-page .error-code {
    margin: 0 0 1rem;
    font-size: 6rem;
    line-break: 1;
    color: #fff
}

html.error-page .error-message {
    margin-bottom: 3rem;
    color: #fff
}

html.error-page a.btn {
    background-color: #ab1642;
    border-color: #ab1642
}

html.error-page a.btn:focus,
html.error-page a.btn:hover {
    background-color: #750f2d;
    color: #fff
}

.sp-scroll-up {
    bottom: 30px;
    background: #333;
    border-radius: 3px;
    z-index: 1000
}

.sp-scroll-up:active,
.sp-scroll-up:focus,
.sp-scroll-up:hover {
    background: #444
}

meter {
    width: 100%
}

select.form-select {
    height: 40px;
    padding: 0px 10px !important
}

input[type="text"]:not(.form-control),
input[type="email"]:not(.form-control),
input[type="url"]:not(.form-control),
input[type="date"]:not(.form-control),
input[type="password"]:not(.form-control),
input[type="search"]:not(.form-control),
input[type="tel"]:not(.form-control),
input[type="number"]:not(.form-control),
select:not(.form-control) {
    padding: 18px 20px;
    font-size: 16px;
    background-color: #f3f3f3;
    color: #7b7b7b;
    border: 0;
    border-radius: 0;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s
}

input[type="text"]:not(.form-control):focus,
input[type="text"]:not(.form-control):hover,
input[type="email"]:not(.form-control):focus,
input[type="email"]:not(.form-control):hover,
input[type="url"]:not(.form-control):focus,
input[type="url"]:not(.form-control):hover,
input[type="date"]:not(.form-control):focus,
input[type="date"]:not(.form-control):hover,
input[type="password"]:not(.form-control):focus,
input[type="password"]:not(.form-control):hover,
input[type="search"]:not(.form-control):focus,
input[type="search"]:not(.form-control):hover,
input[type="tel"]:not(.form-control):focus,
input[type="tel"]:not(.form-control):hover,
input[type="number"]:not(.form-control):focus,
input[type="number"]:not(.form-control):hover,
select:not(.form-control):focus,
select:not(.form-control):hover {
    color: #7b7b7b;
    background-color: rgba(171, 22, 66, 0.05);
    border-color: rgba(171, 22, 66, 0.05);
    outline: 0
}

.form-control,
.sppb-form-control,
.sppb-form-group .sppb-form-control {
    font-size: 16px;
    line-height: 1.25;
    background-color: #f3f3f3;
    color: #7b7b7b;
    padding: 18px 20px;
    border: 0;
    border-radius: 0
}

.input-group-text {
    padding: 10px 22px;
    border: 0
}

.chzn-container.chzn-container-single .chzn-single {
    font-size: 1rem;
    or ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
    box-shadow: none
}

.chzn-container.chzn-container-single .chzn-single div {
    width: 30px;
    background: none
}

.chzn-container.chzn-container-single .chzn-single div>b {
    position: relative
}

.chzn-container.chzn-container-single .chzn-single div>b:after {
    font-family: "Font Awesome 6 Free";
}

.chzn-container.chzn-container-single .chzn-search:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

div.volunteer-slider .sp-slider-outer-stage {
    margin: 0 30px
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sppb-container {
    padding: 0;
    background-color: #fff
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sppb-container .sppb-row {
    margin: 0
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sppb-container .sppb-row [class*="sppb-col-"] {
    padding: 0;
    margin: 0
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sp-slider-image-align-center .sppb-sp-slider-image img {
    width: auto !important;
    height: auto !important
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sp-slider-content-align-center {
    padding: 20px 40px
}

div.volunteer-slider .sp-slider-outer-stage .sp-item .sp-slider-content-align-center .sppb-sp-slider-text img {
    display: block;
    width: auto !important;
    height: auto !important
}

.view-login .login,
.view-login .registration,
.view-registration .login,
.view-registration .registration {
    padding: 60px 0;
    background-color: rgba(171, 22, 66, 0.03)
}

.view-login .login .btn,
.view-login .registration .btn,
.view-registration .login .btn,
.view-registration .registration .btn {
    font-size: 18px;
    font-family: "Roboto";
    line-height: 1.45;
    border-radius: 4px;
    font-weight: 400;
    padding: 15px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.view-login .login .btn.btn-primary:hover,
.view-login .registration .btn.btn-primary:hover,
.view-registration .login .btn.btn-primary:hover,
.view-registration .registration .btn.btn-primary:hover {
    color: #ab1642;
    border-color: transparent;
    background-color: rgba(171, 22, 66, 0.05)
}

.view-login .login .btn.btn-secondary,
.view-login .registration .btn.btn-secondary,
.view-registration .login .btn.btn-secondary,
.view-registration .registration .btn.btn-secondary {
    color: #ab1642;
    border-color: transparent;
    background-color: rgba(171, 22, 66, 0.05)
}

.view-login .login .btn.btn-secondary:hover,
.view-login .registration .btn.btn-secondary:hover,
.view-registration .login .btn.btn-secondary:hover,
.view-registration .registration .btn.btn-secondary:hover {
    color: #ffffff;
    background-color: #ab1642
}

.logout .btn {
    font-size: 18px;
    font-family: "Roboto";
    line-height: 1.45;
    border-radius: 4px;
    font-weight: 400;
    padding: 15px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.logout .btn:hover {
    color: #ab1642;
    border-color: transparent;
    background-color: rgba(171, 22, 66, 0.05)
}

@media (max-width:767px) {
    body h2 {
        font-size: 35px
    }

    body h3 {
        font-size: 28px
    }

    body h4 {
        font-size: 20px
    }

    body h5 {
        font-size: 18px
    }

    body h6 {
        font-size: 16px
    }

    body p {
        font-size: 13px
    }

    .sp-page-title {
        padding: 180px 0 190px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%)
    }

    .sp-page-title .sp-page-title-heading {
        font-size: 45px
    }

    .com-content.view-category .blog>.page-header h3 {
        font-size: 28px
    }

    #sp-footer .container-inner {
        padding: 30px 0
    }

    #sp-bottom {
        padding: 40px 0 10px
    }

    #sp-bottom .sp-module .sp-module-title {
        font-size: 18px
    }

    #sp-bottom .sp-module ul>li {
        margin-bottom: 5px
    }

    #sp-bottom #sp-bottom1 .sp-module ul>li>a {
        font-size: 16px
    }

    .article-list.articles-leading {
        display: block
    }
}

.com-media.view-imagesList ul.manager>li.thumbnail>a>div:first-child>span:before {
    content: "";
    width: 50%;
    height: 12px;
    border-radius: 0 20px 0 0;
    background-color: #92ceff;
    position: absolute;
    top: -12px;
    left: 0px
}

.com-media.view-imagesList ul.manager>li.thumbnail>a>div:first-child img {
    display: inline-block
}

#sp-header {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

#sp-header:not(.header-sticky) {
    background: transparent;
    position: fixed;
    box-shadow: none
}

#sp-header .container {
    max-width: 1840px
}

#sp-header .container .sp-column .sp-module {
    float: right
}

.sp-megamenu-wrapper {
    float: left;
    padding-left: 30px
}

#sp-header .menu>li a,
#sp-header .menu>li span {
    font-family: 'Lora', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.sp-megamenu-parent>li>a,
.sp-megamenu-parent>li>span,
#sp-header .menu>li>a,
#sp-header .menu>li>span {
    font-family: 'Lora', sans-serif;
    text-decoration: none;
    display: inline-block;
    line-height: 1em;
    font-size: 14px;
    --padding-sp-mega-menu-left: 7px;
    --padding-sp-mega-menu-right: 7px;
    padding-left: var(--padding-sp-mega-menu-left);
    padding-right: var(--padding-sp-mega-menu-right);
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.sp-megamenu-parent>li>a,
.sp-megamenu-parent>li>span {
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative
}

.sp-megamenu-parent>li>a:after,
.sp-megamenu-parent>li>span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 2rem;
    left: var(--padding-sp-mega-menu-left);
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sp-megamenu-parent>li.active>a {
    font-weight: 700
}

.sp-megamenu-parent>li.active>a:after {
    width: calc(100% - var(--padding-sp-mega-menu-left) - var(--padding-sp-mega-menu-right));
}

/* hover, focus, active */
.sp-megamenu-parent>li>a:hover::after,
.sp-megamenu-parent>li>a:focus::after,
.sp-megamenu-parent>li>a:active::after,
.sp-megamenu-parent>li>span:hover::after,
.sp-megamenu-parent>li>span:focus::after,
.sp-megamenu-parent>li>span:active::after {
    width: calc(100% - var(--padding-sp-mega-menu-left) - var(--padding-sp-mega-menu-right));
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    padding: 15px 20px
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a.sp-group-title,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge).sp-group-title {
    font-weight: 700
}

#sp-header.header-sticky {
    height: 100px
}

#sp-header.header-sticky .logo {
    height: 100px
}

#sp-header.header-sticky .sp-megamenu-parent>li>a,
#sp-header.header-sticky .sp-megamenu-parent>li>span {
    line-height: 1em;
}

#sp-header.header-sticky .sp-megamenu-parent>li>a:before,
#sp-header.header-sticky .sp-megamenu-parent>li>span:before {
    bottom: 35px
}

#sp-header.header-sticky .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    background-color: #540c21
}

#sp-header.header-sticky .sp-module-content {
    height: auto
}

body.ltr .sp-megamenu-parent>li.sp-has-child>a:after,
body.ltr .sp-megamenu-parent>li.sp-has-child>span:after {
    font-size: 20px;
}

body.ltr .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child>a:after {
    font-family: "Font Awesome 6 Free";
    margin-left: 7px
}

@media (max-width:1300px) {
    #sp-header .logo {
        margin-right: -20px
    }

    #sp-header .sp-megamenu-wrapper {
        padding-left: 80px
    }

}

@media (max-width:1300px) {
    #sp-header .sp-megamenu-wrapper {
        padding-left: 60px
    }

    #sp-header .sp-module-content {
        display: none
    }

    #offcanvas-toggler {
        display: block;
    }

    .sp-megamenu-parent {
        display: none !important;
    }

    #sp-header nav.sp-megamenu-wrapper #offcanvas-toggler {
        display: flex !important;

    }
}

@media (max-width:992px) {
    #sp-header .sp-megamenu-wrapper {
        float: right;
        padding-left: 30px;
        padding-right: 30px
    }

    #sp-header .sp-module-content {
        display: none
    }

    #sp-header .logo-image {
        height: 50px !important;
    }
}

#offcanvas-toggler {
    display: block;
}

.burger-icon>span {
    display: block;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: background-color 0.3s ease-in, opacity 0.3s ease-in, transform 0.3s ease-in;
}

.offcanvas-overlay {
    -webkit-transition: 0.6s;
    transition: 0.6s
}

.body-wrapper {
    position: relative;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    backface-visibility: hidden
}

.close-offcanvas {
    position: absolute;
    top: 15px;
    z-index: 1;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    background: transparent;
    color: #fff
}

.close-offcanvas:hover {
    background: transparent;
    color: #fff
}

.offcanvas-active .burger-icon>span,
#modal-menu-toggler.active .burger-icon>span {
    background-color: #fff;
}

.offcanvas-menu {
    top: 0;
    overflow: inherit;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.offcanvas-menu .offcanvas-inner {
    padding: 30px
}

.offcanvas-menu .offcanvas-inner .sp-module ul {}

.offcanvas-menu .offcanvas-inner .sp-module ul>li span {
    padding: 0.125rem 0;
    position: relative
}

.offcanvas-menu .offcanvas-inner .sp-module ul>li.menu-parent>a>.menu-toggler:after,
.offcanvas-menu .offcanvas-inner .sp-module ul>li ul li a {
    font-size: 0.875rem
}

body.ltr.offcanvs-position-left .offcanvas-menu {
    left: -300px
}

body.ltr.offcanvs-position-left.offcanvas-active .offcanvas-menu {
    left: 0
}

body.ltr.offcanvs-position-left.offcanvas-active .body-wrapper {
    left: 300px
}

body.ltr.offcanvs-position-right .offcanvas-menu {
    right: -300px
}

body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
    right: 0
}

body.ltr.offcanvs-position-right.offcanvas-active .body-wrapper {
    right: 300px
}

body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul>li.menu-parent>a>.menu-toggler,
body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul>li.menu-parent>.menu-separator>.menu-toggler {
    right: 0
}

body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul>li ul {
    margin-left: 10px
}

@media (max-width:768px) {
    body {
        font-size: 13px !important
    }

    body h1 {
        font-size: 35px
    }

    body h2 {
        font-size: 24px
    }

    body h3 {
        font-size: 20px
    }

    body h4 {
        font-size: 18px
    }

    body h5 {
        font-size: 15px
    }

    body h6 {
        font-size: 14px
    }

    body p {
        font-size: 13px
    }

    #sp-header {
        padding: 0 10px
    }

    #sp-header .sp-megamenu-wrapper {
        padding-right: 0
    }
}

.com-content.view-category .blog>.page-header {
    text-align: center
}

.com-content.view-category .blog>.page-header h3 {
    max-width: 540px;
    margin: 0 auto
}

.com-content.view-category .blog>.page-header h3 .page-subheader {
    display: block;
    font-size: 16px;
    line-height: 1.8
}

.com-content.view-article .article-details>.page-header {
    display: none
}

.com-content.view-article #sp-title {
    display: none
}

.com-content.view-article .article-full-image {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%)
}

.com-content.view-article #sp-main-body {
    padding-top: 0
}

.com-content.view-article #sp-main-body>.container {
    max-width: 100%;
    padding: 0
}

.com-content.view-article .article-header-wrap {
    padding: 100px 0;
    min-height: 37vw;
}

.com-content.view-article .article-info-wrap .sppb-row-container {
    margin: 0 auto;
    padding: 0 15px
}

.sp-page-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #d50744 100%) transparent;
    z-index: -1;
}

.com-content.view-article .article-full-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #d50744 100%) transparent;
    z-index: 1;
    left: 0;
}

.social-share-icon>ul {
    display: flex;
    flex-direction: column;
}

.article-details .article-can-edit {
    position: relative;
    margin-bottom: 1rem;
}

.article-details .article-can-edit a {
    position: relative;
    background: transparent;
    height: auto;
    line-height: inherit;
    height: auto !important;
    padding: 0;
}

.article-details .article-can-edit .link-edit-article {
    padding: 1rem;
    border-radius: 4px;
    background-color: #f3f3f3;
    color: #7b7b7b;
    font-size: 16px;
    font-weight: 400;
    width: auto;
    text-align: center;
    border-radius: 12px;
    margin: 0;
    font-size: 0px;
}

.article-details .article-can-edit .link-edit-article span:before {
    content: "\f044";
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
}

.com-content.view-article .article-details.no-sp-page-builder-article-details .article-header-wrap {
    padding-top: 220px;
    padding-right: 0px;
    padding-bottom: 320px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    overflow: hidden;
    position: relative;
    min-height: 37vw;
    z-index: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
    overflow: hidden;
}

.com-content.view-article .article-details.no-sp-page-builder-article-details .article-header-wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
    background: linear-gradient(46deg, #000000 0%, #D50744 100%) transparent;
    /* clip */
    z-index: -1;
}

.sp-contact-info li {
    font-size: 1rem;
}

#akengage-comments-section.akengage-outer-container {
    padding-top: 3rem;
    position: relative;
    display: block;
}

#sp-header .menu {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    z-index: 99;
    display: flex;
    float: right;
    position: relative;
    align-items: center;
}

#sp-header .menu>li {
    display: inline-block;
    position: relative;
    padding: 0;
    font-family: 'Lora', sans-serif;
    text-decoration: none;
    position: relative;
    padding: 0 15px;
}

#sp-header .menu>li:last-child {
    padding-right: 0;
}

#sp-header .menu>li .menu-child li {
    margin: 0 -20px;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#sp-header .menu>li .menu-child li:hover {
    background-color: #83001A;
}


#sp-header .menu .menu-child {
    list-style: none;
    width: 400px;
    min-width: 400px;
    right: 0;

    top: 100%;
    margin: 0;
    position: absolute;
    z-index: 10;
    display: none;

    padding: 15px 20px;


    background: #ab1642;


    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;

}

#sp-header .menu .menu-child a,
#sp-header .menu .menu-child span {
    font-family: 'Lora', sans-serif;
    text-decoration: none;
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    color: #fff;
}

#sp-header .menu>li.current>a::before,
#sp-header .menu>li.current>span::before {
    width: 19px;
}

#sp-header .menu>li>a::before,
#sp-header .menu>li>span::before,
{
content: "";
position: absolute;
width: 0;
height: 3px;
bottom: 43px;
left: 15px;
background-color: #FFFFFF;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

#sp-header .menu>li.menu-deeper.menu-parent>a::after,
#sp-header .menu>li.menu-deeper.menu-parent>span::after {
    font-size: 20px;
}

#sp-header .menu>li.menu-deeper.menu-parent>a::after,
#sp-header .menu>li.menu-deeper.menu-parent>span::after {
    font-family: "Font Awesome 6 Free";
    content: "\f107";
    float: right;
    margin-left: 7px;
    font-weight: 900;
}

#sp-header .menu .menu-deeper.menu-parent:hover>.menu-child {
    animation: spFadeInUp 400ms ease-in;
}

#sp-header .menu .menu-deeper.menu-parent:hover>.menu-child {
    display: block;
}

#sp-header .menu .sp-dropdown.sp-dropdown-main {
    top: 100%;
}