
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    font-family: "Lato", sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: #fff;
    background: #0e0d12;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.layouts-title {
    font-size: 26px;
    margin:15px 0px;
}
.layouts ul li {
    margin-bottom:5px;
}
.layouts ul li a {
    font-size: 17px;
    display: inline-block;
    padding:3px 10px;
}
.layouts ul li a:hover {
    background:#000;
    color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
/* -- main styles -- */

.nopad {
    padding:0px;
}
.nopadleft {
    padding-left:0px;
}
.nopadright {
    padding-right:0px;
}
strong, b {
    font-weight: bold;
}
i {
    font-style: italic;
}
em {
    font-style: italic;
}
.clear {
    clear:both;
}
.left {
    float:left;
    margin-right:15px;
    margin-bottom:15px;
}
.right {
    float:right;
    margin-left:15px;
    margin-bottom:15px;
}
.alignleft {
    float:left;
    margin-right:15px;
    margin-bottom:15px;
}
.alignright {
    float:right;
    margin-left:15px;
    margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    max-width: 100%;
    margin-bottom: 15px;
}
.invi {
    visibility: hidden;
    opacity: 0;
}
.object-fit {
    position: relative;
}
.object-fit > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}
/* .submitting {
    position: relative;
}
.submitting::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0; left: 0;
    z-index: 11;
}
.submitting::after {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #000;
    border-right: 2px solid transparent;
    -webkit-animation: formSpinner .6s linear infinite;
    animation: formSpinner .6s linear infinite;
    z-index: 12;
}
@-webkit-keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
} */

/* preloader */
.preloader {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ccc !important;
    -webkit-animation: a 1s ease-in-out infinite;
    animation: a 1s ease-in-out infinite;
    z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    float: right;

    display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.grid-container {
    width: 100%;
    max-width: 1240px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 10;
}
.grid-container.grid-container-full {
    max-width: 100%;
}
.grid-container.grid-container-md {
    max-width: 1136px;
}



.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.dflex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dflex-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.dflex-cbetween {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.title-44 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.title-44:not(:last-child) {
    margin-bottom: 24px;
}

.title-36 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.title-36:not(:last-child) {
    margin-bottom: 24px;
}

.title-32 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.title-32:not(:last-child) {
    margin-bottom: 24px;
}

.title-24 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.title-24:not(:last-child) {
    margin-bottom: 24px;
}

.text-16 {
    font-size: 16px;
    line-height: 1.2;
}

.text-16 p:not(:last-child) {
    margin-bottom: 8px;
}

.btn-yellow,
.btn-yellow:focus,
.btn-yellow:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: none;
    border: none;
    background: #FFC950;
    min-height: 42px;
    padding: 8px 16px;
    font-size: 16px;
    color: #14131A;
    line-height: 1.2;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-yellow:hover {
    background: #FBD684;
    color: #14131A;
}

.has-plus:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/btn-plus.svg) no-repeat center center / 100% 100%;
    margin-right: 6px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
}

.header-notification-wrap {
    background: #0E0E11;
    padding: 6px 0 5px;
    position: relative;
    z-index: 22;
}

.header-notification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #8A869D;
    font-size: 14px;
    line-height: 1.2;
}
.header-notification img {
    margin-right: 6px;
}

.header-main-wrap {
    background: #1E1F28;
    /* padding: 8px 0; */
    position: relative;
    z-index: 22;
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header-main-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.logo {
    margin-right: 24px;
}
.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 60px;
}

.header-main-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 24px;
    margin-right: 8px;
}
.header-main-cta a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 16px 4px 4px;
    background: #323141;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    transition: 0.2s;
}
.header-main-cta a:hover {
    color: #00E4C9;
    color: #fff;
    background: #1E1F28;
    background: #14131A;
}
.header-main-cta a img {
    max-height: 32px;
    margin-right: 16px;
}

.header-main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-main-nav ul li:not(:last-child) {
    /* margin-right: 32px; */
}
.header-main-nav ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 19px 16px;
    color: #fff;
    transition: 0.2s;
}
.header-main-nav ul li a:hover {
    color: #00E4C9;
    color: #fff;
    background:  #1E1F28;
    background: #0E0E11;
    background: #323141;
    background: #14131A;
}

.header-sec-wrap {
    background: #323141;
    background: #14131A;
    padding: 8px 0;
}

.header-sec-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-sec-nav ul li:not(:last-child) {
    margin-right: 8px;
}
.header-sec-nav ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    white-space: nowrap;
    font-size: 16px;
    padding: 8px 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: #2A2A37;
    border-radius: 8px;
    transition: 0.2s;
}
.header-sec-nav ul li.current a {
    background: #FFC950;
    color: #14131A;
}
.header-sec-nav ul li a:hover {
    color: #FFC950;
    color: #00E4C9;
    background: #FFC950;
    color: #14131A;
}

.single-content-section {
    padding-top: 200px;
    padding-bottom: 30px;
}

.single-content-box {
    background: #14131A;
    padding: 24px 24px 64px;
    border-radius: 24px;
}

.single-content-left {
    width: 75%;
    padding-right: 7px;
}
.single-content-right {
    width: 25%;
    padding-left: 21px;
    position: sticky;
    top: 156px;
}

.single-content-section .section-top {
    max-width: calc(75% - 7px);
    margin-bottom: 40px;
}

.breads {
    margin-bottom: 8px;
}
.breads ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.breads ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;

}
.breads ul li:after {
    content: '';
    width: 12px;
    height: 13px;
    background: url(../img/sign-right.svg) no-repeat center center;
    margin: 0 8px;
}
.breads ul li:last-child:after {
    display: none;
}
.breads ul li a {
    color: #fff;
    transition: 0.2s;
}
.breads ul li a:hover {
    color: #00E4C9;
}

.single-content-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.single-content-details ul li {
    background: #323141;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 28px;
    margin-right: 8px;
    color: #fff;
}
.single-content-details ul li:last-child {
    margin-right: 0;
}
.single-content-details ul li img {
    max-height: 14px;
    margin-right: 4px;
}
.single-content-details ul li u {
    margin-left: 4px;
}

.entry img {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 24px;
}

.entry {
    margin-bottom: 48px;
}

.entry table {
    border-collapse: separate;
    border-radius: 16px;
    border: 2px solid #323141;
}
.entry > *:last-child {
    margin-bottom: 0px;
}
.single-content-box > *:last-child {
    margin-bottom: 0px;
}

.entry p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 8px;
}

.entry h2:not(:first-child),
.entry h3:not(:first-child) {
    margin-top: 48px;
}

.entry h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
    margin-bottom: 20px;
}
.entry h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.entry ul {
    margin-bottom: 8px;
}
.entry ul li {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 2;
    padding-left: 24px;
    position: relative;
}
.entry ul li:before {
    content: '•';
    position: absolute;
    left: 8px;
    top: 0;
}

.entry ol {
    counter-reset: item;
    margin-bottom: 8px;
}
.entry ol li {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 2;
    padding-left: 24px;
    position: relative;
}
.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    left: 4px;
    top: 0;
}

.entry a {
    color: #FFC950;
    font-weight: 700;
    border-bottom: 1px solid #FFC950;
}
.entry a:hover {
    border-bottom: 1px solid transparent
}

.entry-cta-box {
    margin-bottom: 48px;
    background: #FBE7B6;
    padding: 24px 24px;
    border-radius: 16px;
    color: #191919;
}

.entry-cta-left {
    width: 19.78%;
}
.entry-cta-right {
    width: 80.22%;
    max-width: 310px;
    padding-left: 24px;
}

.entry-cta-image {
    padding-bottom: 100%;
}

.entry-cta-button {
    margin-top: 24px;
}

.entry-gallery-hold {
    padding: 0 16px;
    margin-bottom: 48px;
}

.entry-carousel-item {
    padding-bottom: 49.383%;
}
.entry-carousel-item img {
    border-radius: 24px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

.owl-has-nav .owl-nav {

}

.owl-has-nav.owl-carousel .owl-nav button.owl-next,
.owl-has-nav.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #FFC950;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: 0.2s;
}
.owl-has-nav.owl-carousel .owl-nav button.owl-next:hover,
.owl-has-nav.owl-carousel .owl-nav button.owl-prev:hover {
    background: #FBD684;
}

.owl-has-nav.owl-carousel .owl-nav button.owl-prev {
    left: -16px;
}

.owl-has-nav.owl-carousel .owl-nav button.owl-next {
    right: -16px;
}

.single-content-split {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.toc-box {
    background: #14131A;
    border-radius: 16px;
    padding: 24px 16px;
}

.toc-box-title {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.toc-box-links ul li:not(:last-child) {
    margin-bottom: 6px;
}

.toc-box-links ul li a {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 8px;
    border-radius: 5px;
    transition: 0.2s;
}
.toc-box-links ul li.current a {
    background: #1E1F28;
    color: #fff;
}
.toc-box-links ul li a:hover {
    color: #fff;
}

.table-scroll {
    margin-top: 16px;
    margin-bottom: 16px;
}

.entry thead {
    background: #1E1F28;
    background-color: #1E1F28;
    color: #fff
}

.entry tfoot td,
.entry tfoot th,
.entry thead td,
.entry thead th {
    padding: .5rem .625rem .625rem;
    font-weight: 700;
    text-align: left;
}

.entry tbody tr:not(:last-child) td,
.entry tbody tr:not(:last-child) th {
    border-bottom: 2px solid #323141;
}
.entry tbody td:not(:last-child),
.entry tbody th:not(:last-child) {
    border-right: 2px solid #323141;
}
.entry tbody td,
.entry tbody th {
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    /* border: 2px solid #323141; */
}
.entry tbody tr:first-child th:first-child,
.entry tbody tr:first-child td:first-child {
    border-top-left-radius: 16px;
}
.entry tbody tr:first-child th:last-child,
.entry tbody tr:first-child td:last-child {
    border-top-right-radius: 16px;
}
.entry tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.entry tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}
.entry tbody td:first-child,
.entry tbody th:first-child {
    font-weight: 700;
}

.entry tbody,
.entry tfoot {
    border: none;
    background-color: #1E1F28;
}

.entry tbody tr:first-child th {
    background: #0E0E11;
    padding: 14px 20px;
    font-weight: 700;
}
.entry tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #282836;
}

.single-content-bottom {
    width: 75%;
    padding-right: 7px;
    margin-top: 40px;
}

.single-content-bottom-box {
    background: #14131A;
    border-radius: 24px;
    padding: 24px 24px 64px;
    margin-bottom: 40px;
}

.single-content-bottom-box:last-child {
    margin-bottom: 0px;
}

.acc-faq .accordion {
    margin-left: 0;
    background: transparent;
}

.acc-faq .accordion-item {
    background: #1E1F28;
    border-radius: 8px;
    margin-bottom: 12px;
}
.acc-faq .accordion-item:last-child {
    margin-bottom: 0px;
}
.acc-faq .accordion-title {
    padding: 16px 64px 16px 24px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: transparent;
}

.acc-faq .accordion-title:focus,
.acc-faq .accordion-title:hover {
    color: #fff;
    background: transparent;
}

.acc-faq .accordion-content {
    border: none;
    padding: 8px 24px 16px;
    background-color: transparent;
    color: #FFFFFF;
}
.acc-faq .accordion-content .entry {
    margin-bottom: 0;
}
.acc-faq .accordion-content .entry p,
.acc-faq .accordion-content .entry ul li {
    line-height: 1.375;
}

.acc-faq :last-child:not(.is-active)>.accordion-title {
    border-bottom: none;
}

.acc-faq :last-child>.accordion-content:last-child {
    border-bottom: none;
}


.acc-faq .accordion-title::before {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../img/acc-chev-down.svg) no-repeat center center;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    right: 24px;
    margin-top: 0;
    content: "";
}

.acc-faq .is-active>.accordion-title::before {
    content: "";
    transform: translateY(-50%) rotate(180deg);
}


.related-items > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    width: calc(100% + 16px);
    margin-bottom: -16px;
}
.related-items > ul > li {
    width: calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    margin-right: 16px;
    margin-bottom: 16px;
}
.related-items ul li a {
    display: block;
    height: 100%;
    background: #1E1F28;
    border-radius: 16px;
    transition: 0.2s;
}
.related-items ul li a:hover {
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    -moz-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
}

.item-image {
    padding-bottom: 72.84%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}
.item-image img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: 0.6s;
}
a:hover .item-image img {
    /* transform: scale(1.1); */
}
.item-image:after {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e1f28+0,1e1f28+100&0+0,1+100 */
    /* background: linear-gradient(to bottom,  rgba(30,31,40,0) 0%,rgba(30,31,40,1) 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(180deg, rgba(30, 31, 40, 0) 50.28%, #1E1F28 100%),
    radial-gradient(49.99% 49.99% at 50% 50%, rgba(30, 31, 40, 0) 0%, rgba(30, 31, 40, 0.7) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}

.item-image .item-title {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0 8px;
}

.item-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.item-content {
    padding: 8px 8px;
}

.item-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    height: 50px;
    max-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
ul li .single-content-details {
    margin-top: 32px;
}
ul li .single-content-details ul {
    margin: 0;
}
ul li .single-content-details ul li {
    font-size: 12px;
    padding: 4px 8px;
}

.related-items-box .title-32:not(:last-child) {
    margin-bottom: 32px;
}

footer {
    background: #14131A;
    padding: 24px 0;
    position: relative;
    z-index: 50;
}

.footer-payments {
    margin-bottom: 56px;
}

.footer-payments ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-payments ul li {
    color: #898A93;
    font-size: 14px;
    line-height: 1.2;
    margin-right: 10px;
}
.footer-payments ul li:last-child {
    margin-right: 0px;
}

.footer-middle {
    margin-bottom: 60px;
    gap: 24px;
}

.footer-middle-col {
    flex: 1 1 0;
}

.footer-middle-col-1 {
    max-width: 264px;
    padding-right: 10px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 256px;
}

.socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.socials ul li:not(:last-child) {
    margin-right: 16px;
}
.socials ul li a {
    transition: 0.2s;
}
.socials ul li a:hover {
    opacity: 0.7;
}

.footer-nav ul li {
    line-height: 1.2;
}
.footer-nav ul li:not(:last-child) {
    margin-bottom: 16px;
}
.footer-nav ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 16px;
    color: #898A93;
    transition: 0.2s;
}
.footer-nav.v2 ul li a {
    font-weight: 700;
}
.footer-nav ul li a:hover {
    color: #fff;
}

.copyrights {
    font-size: 16px;
    line-height: 1.2;
    color: #898A93;
    margin-right: 24px;
}

.footer-sec-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.footer-sec-nav ul li {
    line-height: 1.2;
}
.footer-sec-nav ul li:not(:last-child) {
    margin-right: 24px;
}
.footer-sec-nav ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 16px;
    color: #898A93;
    transition: 0.2s;
}
.footer-sec-nav.v2 ul li a {
    font-weight: 700;
}
.footer-sec-nav ul li a:hover {
    color: #fff;
}

.single-hero-bg {
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 41.6667%;
}

.page-scroll-progress {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: #1E1F28;
    top: 100%;
}

.page-scroll-progress span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background: #00E4C9;
    background: #FFC950;
}

.header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 8px;
    margin-right: 24px;
}
.nav-trigger span {
    width: 24px;
    height: 24px;
    background: url(../img/icon-menu.svg) no-repeat 50% 50%;
    cursor: pointer;
}

.mob-nav-hold {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    overflow: auto;
    padding: 116px 0 40px;
    background: #1E1F28;
    z-index: 20;
    min-width: 218px;
    -webkit-box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0);
    -moz-box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0);
    box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0);
    transform: translateX(-101%);
    pointer-events: none;
    transition: 0.3s;
}
.mob-nav-hold.active {
    -webkit-box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0.8);
    -moz-box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0.8);
    box-shadow: 0px 0px 0px 100vw rgba(14,14,17,0.8);
    transform: translateX(-0%);
    pointer-events: all;
}

.mob-nav ul li {
    line-height: 1.2;
}
.mob-nav ul li:not(:last-child) {
    margin-bottom: 32px;
}
.mob-nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.2s;
}
.mob-nav ul li a:hover {
    color: #00E4C9;
}

.mob-nav-close {
    position: fixed;
    top: 100px;
    right: 16px;
    width: 56px;
    height: 36px;
    border-radius: 8px;
    z-index: 22;
    background-color: #FFC950;
    background-image: url(../img/icon-close.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.mob-nav-close.active {
    opacity: 1;
    visibility: visible;
}

.no-link {
    pointer-events: none;
}


.reg-items-list > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    width: calc(100% + 16px);
    margin-bottom: -32px;
}
.reg-items-list > ul > li {
    width: calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 32px;
}
.reg-items-list > ul > li > a {
    display: block;
    height: 100%;
    background: #1E1F28;
    border-radius: 16px;
    padding-bottom: 84px;
    position: relative;
    transition: 0.2s;
}
.reg-items-list > ul > li > a:hover {
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    -moz-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
}

.reg-items-list > ul > li.entry-cta-box-in-list {
    width: calc(100% - 16px);
    min-width: calc(100% - 16px);
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 64px;
    margin-top: 32px;
}
.archive-box .entry-cta-box-in-list .entry-cta-box {
    margin-bottom: 0;
}

.reg-items-list .item-image {
    padding-bottom: 48.1%;
    padding-bottom: 56.73%;
}

.reg-items-list > ul > li .single-content-details {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: inherit;
    padding-right: inherit;
}

.reg-item-content {
    padding: 16px 16px 24px;
    padding: 16px 16px 0px;
}

.reg-item-content .item-title {
    max-width: 280px;
    margin-bottom: 8px;
}

.reg-items-more {
    margin-top: 64px;
}

.archive-box {
    background: #14131A;
    border-radius: 24px;
    padding: 24px 24px 40px;
}

.archive-content-section {
    padding: 198px 0 56px;
}

.archive-content-section .section-top {
    margin-bottom: 56px;
}

.archive-featured-hold {
    margin-bottom: 64px;
}

.archive-featured-left {
    width: calc(50% - 13px);
    padding: 24px 24px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.archive-featured-right {
    width: calc(50% + 13px);
}

.archive-featured-image {
    height: 100%;
    padding-bottom: 61.54%;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}
.archive-featured-image img {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    transition: 0.6s;
}
a:hover .archive-featured-image img {
    /* transform: scale(1.1); */
}
.archive-featured-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e1f28+0,1e1f28+100&1+0,0+100 */
    /* background: linear-gradient(to right,  rgba(30,31,40,1) 0%,rgba(30,31,40,0) 70%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(270deg, rgba(30, 31, 40, 0) 80.24%, #1E1F28 100%),
    radial-gradient(49.99% 49.99% at 50% 50%, rgba(30, 31, 40, 0) 0%, rgba(30, 31, 40, 0.7) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}

.archive-featured-item a {
    background: #1E1F28;
    border-radius: 16px;
    color: #fff;
    transition: 0.2s;
}
.archive-featured-item a:hover {
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    -moz-box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
    box-shadow: 0px 0px 0px 2px rgba(255,201,80,1);
}

.archive-box > .title-32:not(:last-child),
.archive-featured-hold > .title-32:not(:last-child) {
    margin-bottom: 32px;
}

.archive-featured-item .item-text {
    height: 34px;
    max-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.archive-featured-left .title-32:not(:last-child) {
    margin-bottom: 15px;
}

.item-cat {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: #898A93;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.archive-featured-item .single-content-details {
    margin-top: 56px;
}

.no-left .entry-cta-right {
    padding-left: 0;
}

.header-cta .btn-yellow,
.header-cta .btn-yellow:focus,
.header-cta .btn-yellow:active {
    min-height: 40px;
    white-space: nowrap;
}

.archive-latest-hold {
    margin-bottom: 64px;
}
.archive-latest-hold .title-32:not(:last-child) {
    margin-bottom: 32px;
}

.archive-box .entry-cta-box {
    margin-bottom: 64px;
}

li.reading-time:before {
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/icon-clock.svg) no-repeat center center;
    margin-right: 4px;
}

.header-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    min-height: 42px;
}

.header-search {
    width: 100%;
    max-width: 300px;
    position: relative;
}
.header-search input,
.header-search input:focus {
    margin: 0;
    outline: none;
    box-shadow: none;
    background: #2A2A37;
    border: 2px solid #323141;
    color: #fff;
    height: 42px;
    font-size: 16px;
    border-radius: 16px;
    padding: 2px 16px 2px 44px;
}
.header-search button {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 42px;
    background: url(../img/icon-search.svg) no-repeat center center;
    border: none;
    outline: none;
}

.form-element input::-webkit-input-placeholder {
    color: #C6C6CC;
    opacity: 1;
}
.form-element input::-moz-placeholder {
    color: #C6C6CC;
    opacity: 1;
}
.form-element input:-ms-input-placeholder {
    color: #C6C6CC;
    opacity: 1;
}
.form-element input:-moz-placeholder {
    color: #C6C6CC;
    opacity: 1;
}


.header-sec-nav-v2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    margin-bottom: -8px;
    width: calc(100% + 8px);
}
.header-sec-nav-v2 ul li {
    margin-bottom: 8px;
    margin-right: 8px;
}
.header-sec-nav-v2 ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    white-space: nowrap;
    font-size: 16px;
    padding: 8px 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: #2A2A37;
    border-radius: 8px;
    transition: 0.2s;
}
.header-sec-nav-v2 ul li.current a {
    background: #FFC950;
    color: #14131A;
}
.header-sec-nav-v2 ul li a:hover {
    background: #FFC950;
    color: #14131A;
}

.search-block-mob {
    background: #14131A;
    border-radius: 24px;
    padding: 24px 24px;
    margin-bottom: 48px;
}

.search-block-mob .header-search {
    max-width: 100%;
    margin-top: 24px;
}

.entry-cta-box.full-width-image-cta {
    padding: 0;
    background: transparent;
}
.entry-cta-box.full-width-image-cta img {
    border-radius: 16px;
}

.entry-carousel.owl-carousel .owl-stage-outer {
    border-radius: 24px;
}

.related-items .item-title {
    font-size: 20px;
}

/* Media */
@media only screen and (max-width: 1199px) {
    .header-main-nav ul li:not(:last-child) {
        /* margin-right: 24px; */
    }
    .header-main-nav ul li a {
        padding: 19px 12px;
    }
    .footer-middle-col-1 {
        max-width: 100%;
        min-width: 26%;
    }
    .header-main-nav ul li a {
        font-size: 16px;
    }
    .header-sec-nav ul li a {
        font-size: 16px;
    }
    .socials ul li:not(:last-child) {
        margin-right: 12px;
    }
    .copyrights {
        margin-right: 0;
        width: 100%;
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 1024px) {
    .mob-nav-hold {
        display: none !important;
    }
}

@media only screen and (max-width: 1023px) {
    .header-main-wrap {
        /* padding: 8px 0; */
    }
    .header-main-left {
        width: 100%;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .single-post .header-cta {
        display: none;
    }
    .archive-box .entry-cta-box-in-list .entry-cta-box {
        height: 100%;
    }
    .reg-items-list > ul > li.entry-cta-box-in-list {
        width: calc(50% - 16px);
        min-width: calc(50% - 16px);
        margin-bottom: 32px;
        margin-top: 0;
    }
    .archive-content-section {
        padding: 116px 0 56px;
    }
    .reg-items-list > ul > li {
        width: calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
    .archive-featured-item .single-content-details {
        margin-top: 36px;
    }
    .header-main-cta {
        margin-right: 0;
    }
    .header-main {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .header-sec-nav ul li a {
        white-space: nowrap;
    }
    .header-sec-nav ul {
        overflow: auto;
        margin-left: -24px;
        padding-left: 24px;
        width: calc(100% + 48px);
    }
    .header-sec-nav ul li:last-child {
        padding-right: 24px;
    }
    .header-sec-nav ul {
        margin-left: -24px;
        padding-left: 24px;
        width: calc(100% + 48px);
        /* min-width: calc(100% + 24px); */
    }
    .socials ul li:not(:last-child) {
        margin-right: 16px;
    }
    .footer-middle-col-1 {
        max-width: 100%;
        min-width: 50%;
        padding-right: 0;
    }
    .footer-middle {
        margin-bottom: 36px;
        gap: 0;
    }
    .footer-middle-col {
        width: calc(50% - 24px);
        min-width: calc(50% - 24px);
        margin-right: 24px;
        margin-bottom: 24px;
    }
    .footer-middle-col:nth-child(2n) {
        margin-right: 0;
    }
    .single-content-bottom-box {
        padding: 24px 24px 48px;
    }
    .entry h2:not(:first-child),
    .entry h3:not(:first-child) {
        margin-top: 40px;
    }
    .entry h2 {
        margin-bottom: 40px;
        margin-bottom: 20px;
    }
    .title-44 {
        font-size: 40px;
    }
    .single-content-bottom {
        width: 100%;
        padding-right: 0;
    }
    .single-content-section .section-top {
        max-width: 100%;
    }
    .single-content-right {
        display: none;
    }
    .single-content-left {
        width: 100%;
        padding-right: 0;
    }
    .single-hero-bg {
        top: 96px;
    }
    .single-content-section {
        padding-top: 108px;
    }
    .single-hero-bg {
        display: none;
    }
}

@media screen and (max-width:639px) {
    .entry img {
        border-radius: 8px;
    }
    .nav-trigger {
        margin-right: 16px;
    }
    .related-items .item-title {
        font-size: 24px;
    }
    .archive-content-section .section-top {
        margin-bottom: 32px;
    }
    .reg-items-list > ul > li.entry-cta-box-in-list {
        width: 100%;
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .search-block-mob {
        padding: 16px 8px;
    }
    .no-left .entry-cta-right {
        width: 100%;
    }
    .reg-items-list .item-image {
        padding-bottom: 56.73%;
    }
    .archive-featured-image {
        height: auto;
        padding-bottom: 56.73%;
    }
    .archive-featured-item .item-cat {
        display: none;
    }
    .archive-featured-left .title-32 {
        font-size: 24px;
    }
    .archive-featured-left .title-32:not(:last-child) {
        margin-bottom: 8px;
    }
    .archive-featured-item .single-content-details {
        margin-top: 32px;
    }
    .reg-items-list > ul > li {
        width: 100%;
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .reg-items-list > ul {
        width: 100%;
        margin-left: 0;
        margin-bottom: -32px;
    }
    .archive-box {
        padding: 24px 8px;
    }
    .archive-featured-image {
        border-top-left-radius: 16px;
        border-bottom-right-radius: 0px;
    }
    .archive-featured-image:after {
        background: linear-gradient(180deg, rgba(30, 31, 40, 0) 50.28%, #1E1F28 100%),
        radial-gradient(49.99% 49.99% at 50% 50%, rgba(30, 31, 40, 0) 0%, rgba(30, 31, 40, 0.7) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
        border-top-left-radius: 16px;
        border-bottom-right-radius: 0px;
    }
    .archive-featured-image img {
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
        border-bottom-right-radius: 0px;
    }
    .archive-featured-left {
        width: 100%;
        order: 2;
        padding: 16px 16px 24px;
    }
    .archive-featured-right {
        width: 100%;
    }
    .single-content-section {
        padding-top: 188px;
        padding-top: 108px;
    }
    .header-sec-nav ul li:last-child {
        padding-right: 16px;
    }
    .header-sec-nav ul {
        margin-left: -16px;
        padding-left: 16px;
        width: calc(100% + 32px);
    }
    .grid-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .title-44 {
        font-size: 32px;
    }
    .btn-yellow, .btn-yellow:focus, .btn-yellow:active {
        min-height: 36px;
        padding: 6px 16px;
        font-size: 14px;
    }
    .entry-cta-left {
        width: 80px;
    }
    .entry-cta-right {
        width: calc(100% - 80px);
        padding-left: 16px;
    }
    .text-16 {
        font-size: 14px;
    }
    .entry-cta-button {
        margin-top: 16px;
    }
    .entry-cta-right .title-24 {
        font-size: 16px;
    }
    .title-24:not(:last-child) {
        margin-bottom: 16px;
    }
    .entry-cta-box {
        margin-bottom: 40px;
        padding: 16px 16px;
    }
    .entry tbody tr:first-child th {
        padding: 14px 8px;
    }
    .entry tbody td, .entry tbody th {
        padding: 10px 8px;
        font-size: 14px;
    }
    .entry ol li {
        font-size: 14px;
    }
    .entry ul li {
        font-size: 14px;
    }
    .entry p {
        font-size: 14px;
    }
    .entry {
        margin-bottom: 40px;
    }
    .entry-carousel .owl-nav {
        display: none !important;
    }
    .entry-gallery-hold {
        padding: 0;
        margin-bottom: 40px;
    }
    .entry-carousel-item img {
        border-radius: 8px;
    }
    .single-content-box {
        padding: 16px 16px 40px;
    }
    .single-content-bottom-box {
        padding: 16px 16px 40px;
    }
    .related-items > ul {
        width: 100%;
    }
    .related-items > ul > li {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
    }
    .socials ul li:not(:last-child) {
        margin-right: 20px;
    }
    .footer-middle-col {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 36px;
    }
    .entry iframe {
        max-width: 100%;
    }
    .footer-payments {
        margin-bottom: 48px;
    }
}

/* Games Menu Styles */
.games-menu-dropdown {
    position: relative;
    display: inline-block;
}

/* Ensure the games menu item doesn't interfere with the flex layout */
.header-sec-nav ul li.games-menu-item {
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

/* Override the flex display for the games menu dropdown content */
.games-menu-dropdown-content {
    display: block !important;
}

.games-menu-dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: block !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    justify-content: unset !important;
    align-items: unset !important;
}

.games-menu-dropdown-content ul li {
    margin: 0;
    padding: 0;
    display: block !important;
    width: 100% !important;
    flex: unset !important;
}

.games-menu-trigger {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    padding: 8px 14px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    background: #2A2A37;
    border-radius: 8px;
    transition: 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.games-menu-trigger:hover {
    color: #00E4C9;
    background: #FFC950;
    color: #14131A;
}

.games-menu-trigger svg {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.games-menu-dropdown:hover .games-menu-trigger svg {
    transform: rotate(180deg);
}

.games-menu-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #2A2A37;
    min-width: 200px;
    max-width: 300px;
    max-height: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #323141;
    overflow: hidden;
}

.games-menu-dropdown:hover .games-menu-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.games-menu-dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    max-height: 384px;
    overflow-y: auto;
    overflow-x: hidden;
}

.games-menu-dropdown-content ul li {
    margin: 0;
    padding: 0;
}

.games-menu-dropdown-content ul li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.games-menu-dropdown-content .game-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.games-menu-dropdown-content .game-name {
    flex: 1;
}

.games-menu-dropdown-content ul li a:hover {
    background: #323141;
    color: #00E4C9;
}

.games-menu-dropdown-content ul li.current a {
    background: #FFC950;
    color: #14131A;
}

/* Custom scrollbar for games menu */
.games-menu-dropdown-content ul::-webkit-scrollbar {
    width: 6px;
}

.games-menu-dropdown-content ul::-webkit-scrollbar-track {
    background: #1E1F28;
    border-radius: 3px;
}

.games-menu-dropdown-content ul::-webkit-scrollbar-thumb {
    background: #323141;
    border-radius: 3px;
}

.games-menu-dropdown-content ul::-webkit-scrollbar-thumb:hover {
    background: #FFC950;
}

/* Firefox scrollbar */
.games-menu-dropdown-content ul {
    scrollbar-width: thin;
    scrollbar-color: #323141 #1E1F28;
}

/* Mobile responsive styles for games menu */
@media screen and (max-width: 1023px) {
    .games-menu-dropdown {
        width: 100%;
    }

    .games-menu-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid #323141;
        background: #2A2A37;
        color: #fff;
    }

    .games-menu-dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        background: #14131A;
        display: none;
        border: none;
        max-width: none;
    }

    .games-menu-dropdown.active .games-menu-dropdown-content {
        display: block;
    }

    .games-menu-dropdown-content ul {
        padding: 0;
        display: block !important;
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .games-menu-dropdown-content ul li {
        display: block !important;
        width: 100% !important;
    }

    .games-menu-dropdown-content ul li a {
        padding: 12px 24px;
        border-bottom: 1px solid #323141;
        color: #fff;
        display: flex;
        align-items: center;
    }

    .games-menu-dropdown-content .game-logo {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        margin-right: 16px;
    }

    .games-menu-dropdown-content ul li a:hover {
        background: #2A2A37;
        color: #00E4C9;
    }

    .games-menu-dropdown-content ul li:last-child a {
        border-bottom: none;
    }  
}
.post-summary{
  color: #ffffff;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}
.is-hidden { display: none; }

/* Pagination styles */
nav.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 0;
}

nav.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: 0 12px;
  border: 1px solid #FBD684;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #FBD684;
  background: transparent;
  transition: 0.2s;
}

nav.pagination .page-numbers:hover {
  background: #FBD684;
  border-color: #FBD684;
  color: #14131A;
}

nav.pagination .page-numbers.current,
nav.pagination .page-numbers.current:hover {
  background: #FFC950;
  border-color: #FFC950;
  color: #14131A;
  cursor: default;
}

nav.pagination .page-numbers.prev,
nav.pagination .page-numbers.next {
  min-width: 42px;
  padding: 0 12px;
}

nav.pagination .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0 6px;
  color: #FBD684;
}

nav.pagination .page-numbers:focus {
  outline: 2px solid #FFC950;
  outline-offset: 2px;
}

/* ToC (auto/manual) level styling */
.toc-box-links .toc-item.toc-level-2 a {
}

.toc-box-links .toc-item.toc-level-3 a {
  opacity: 0.9;
  padding-left: 20px;
  padding-top:0px;
  font-size: 14px;
 
}

.toc-box-links .toc-item.toc-level-4 a {
  opacity: 0.85;
  padding-left: 30px;
  padding-top:0px;
  font-size: 13px;
  
}

/* Make anchor jumps land below sticky header */
.entry h2,
.entry h3,
.entry h4 {
  scroll-margin-top: 90px; 
}

.toc-box {
  position: sticky;
  top: 100px;                         
  max-height: calc(100vh - 150px);    /* viewport minus top/bottom */
  display: flex;
  flex-direction: column;
}

.toc-box-title {
  flex: 0 0 auto;
}

.toc-box-links {
  flex: 1 1 auto;
  overflow: auto;
  min-height: 0;                      /* allows the child to actually scroll */
  -webkit-overflow-scrolling: touch;  /* smooth scrolling on iOS */
}

/* nicer scrollbar (supported browsers) */
.toc-box-links::-webkit-scrollbar { width: 8px; }
.toc-box-links::-webkit-scrollbar-thumb { background: #292a35; border-radius: 6px; }
.toc-box-links::-webkit-scrollbar-track { background: transparent; }

/* Mobile: disable sticky + collapse ToC */
@media (max-width: 1024px) {
  .toc-box {
    position: static;
    max-height: none;
  }
}
.infinite-single.fade-in-start { 
    opacity: 0; 
    transform: translateY(12px); 
}
.infinite-single.fade-in-start.fade-in-in { 
    opacity: 1; 
    transform: translateY(0); 
    transition: opacity .35s ease, transform .35s ease; }
.article-divider {
  border: 0;
  height: 2px;
  background: #FFC950;
  opacity: 1;
  margin: 56px 0; 
  width: 100%;
  max-width: 880px; /* match your .grid-container-md if needed */
}
/* Reduce the huge top gap on appended infinite-scroll articles only */
#infinite-posts .infinite-single .single-content-section {
  padding-top: 30px;   /* tweak 40–64px to taste */
  padding-bottom: 30px; /* keep your existing bottom padding */
}

/* (Optional) slightly tighten on small screens if you want */
@media (max-width: 640px) {
  #infinite-posts .infinite-single .single-content-section {
    padding-top: 30px;
  }
}
#infinite-posts .infinite-single .single-hero-bg { 
    display: none; 
}

span.ayudawp-title{
    color:white!important;
}
/* Apply the 75% layout ONLY to the original article */
#primary-article .single-content-bottom {
  width: 75%;
  padding-right: 7px;
  margin-top: 40px;
}

/* Ensure appended (infinite) articles are full-width for their related section */
.infinite-single .single-content-bottom,
.infinite-single .single-content-bottom-box,
.infinite-single .related-items-box {
  width: 100%;
  padding-right: 24px;
}

/* Limit share button spacing for infinite-scroll articles only */
.infinite-single .ayudawp-share-buttons {
  margin: 30px 0 0; /* top margin only */
}


