/*!
* Bitci - Akademi
*/
@import url(bootstrap.min.css);

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bw-4-error {
    position: relative;
    padding: 10rem 0;
    background: -webkit-gradient(linear, right top, left top, from(#ea5607), to(#ff7600));
    background: -o-linear-gradient(right, #ea5607, #ff7600);
    background: linear-gradient(270deg, #ea5607, #ff7600);
    font-family: var(--bw-font-family-inter)
}

.bw-4-error::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: url("../../assets/img/content/error/bitci.svg");
    width: 863px;
    height: 1056px;
    background-size: cover
}

.bw-4-error .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.bw-4-error .content .title {
    font-size: 164px;
    color: var(--bw-natural-white);
    font-weight: 800;
    margin-bottom: 2px
}

.bw-4-error .content .text {
    font-size: var(--bw-font-size-39);
    color: var(--bw-natural-white);
    text-align: center;
    line-height: 40px;
    margin-bottom: 33px
}

.bw-4-error .content .bw-btn {
    background: var(--bw-natural-white);
    color: #f76a02;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter)
}

.bw-4-error .content .bw-btn:hover {
    text-decoration: inherit;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-4-error .content .bw-btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-4-error .content .bw-btn.bw-btn-outline-white {
    color: var(--bw-natural-white);
    background: transparent;
    border: 1px solid var(--bw-natural-white)
}

.bw-4-error .content .bw-btn.bw-btn-outline-white:hover {
    color: var(--bw-primary-orange);
    background: var(--bw-natural-white);
    border-color: transparent
}

@media (max-width: 2000px) {
    .bw-4-error .content .title {
        font-size: 100px
    }

    .bw-4-error .content .text {
        font-size: 30px
    }
}

@media (max-width: 992px) {
    .bw-header .navbar-nav.bw-mobile-nav .nav-item {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .bw-header .navbar-nav.bw-mobile-nav .nav-item .nav-link {
        color: #ffffff;
    }

    .bw-header .navbar-nav .nav-item .nav-link {
        font-size: var(--bw-font-size-14);
        padding: 0.5rem 1rem !important;
    }

    .bw-4-error::before {
        width: 100%;
        height: 100%
    }

    .bw-4-error .content .text {
        font-size: 20px;
        line-height: inherit
    }
}

.bw-footer-bar {
    height: 3px;
    background: -webkit-gradient(linear, right top, left top, from(#ea5607), to(#ff7600));
    background: -o-linear-gradient(right, #ea5607, #ff7600);
    background: linear-gradient(to left, #ea5607, #ff7600)
}

.bw-footer {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5rem 0;
    border-top: 1px solid #f2f2f2;
    background: var(--bw-natural-white);
    font-family: var(--bw-font-family-inter)
}

.bw-footer .bw-nav-t {
    font-weight: 600;
    margin-bottom: 17px;
    font-size: var(--bw-font-size-20)
}

.bw-footer .bw-f-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 11px;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.bw-footer .bw-f-logo:hover {
    text-decoration: inherit
}

.bw-footer .bw-f-logo img,
.bw-footer .bw-f-logo svg {
    width: 153px;
    height: 36px;
    margin-bottom: 11px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.bw-footer .bw-f-logo img:hover,
.bw-footer .bw-f-logo svg:hover {
    -webkit-filter: inherit;
    filter: inherit
}

.bw-footer .bw-f-info {
    font-size: var(--bw-font-size-14);
    color: #6a6a6a;
    font-weight: 400;
    margin-bottom: 21px
}

.bw-footer address {
    font-size: var(--bw-font-size-16);
    color: #6a6a6a;
    font-weight: 400;
    margin-bottom: 20.5px
}

.bw-footer .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.bw-footer .social a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    text-decoration: inherit
}

.bw-footer .social a i {
    font-size: 22px;
    color: #00000080
}

.bw-footer .social a i:hover {
    color: var(--bw-primary-orange)
}

.bw-footer .nav-item .nav-link {
    padding: 0;
    line-height: 35px;
    color: #6a6a6a;
    font-weight: 400;
    font-size: var(--bw-font-size-16)
}

.bw-footer .nav-item .nav-link:hover {
    color: #ea5607
}

.bw-footer .footer-bottom {
    border-top: 1px solid #f4f4f4;
    padding-top: 41.6px;
    margin-top: 57.5px
}

.bw-footer .footer-bottom .nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.bw-footer .footer-bottom .nav-item {
    margin-left: 35px
}

.bw-footer .footer-bottom .ced {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.bw-footer .footer-bottom .ced .ced-logo {
    width: 64px;
    height: 32px
}

@media (max-width: 1200px) {
    .bw-footer .bw-f-info {
        font-size: 12px
    }

    .bw-footer address {
        font-size: 14px
    }

    .bw-footer .bw-nav-t {
        font-size: 16px
    }

    .bw-footer .nav-item .nav-link {
        font-size: 14px
    }
}

@media (max-width: 992px) {
    .bw-footer {
        padding: 4rem 0
    }

    .bw-footer .bw-f-logo {
        justify-content: center;
    }

    .bw-footer .footer-top {
        text-align: center
    }

    .bw-footer .footer-top .social {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .bw-footer .footer-top .footer-menu-b {
        display: none
    }

    .bw-footer .footer-bottom .nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 1.5rem
    }

    .bw-footer .footer-bottom .ced {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width: 768px) {
    .post-detail {
        padding-bottom: 0 !important;
    }

    .social-share {
        position: fixed;
        bottom: 0;
        z-index: 1;
    }

    .bw-p-post .bw-card section .content .info .author {

        margin: 0 15px 0 0;

    }



    .bw-footer {
        padding: 3rem 0
    }
}

@media (max-width: 576px) {
    .bw-footer .social a {
        margin: 0 10px
    }

    .bw-footer .footer-bottom .nav-item {
        margin: 0 17px
    }
}

.bw-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 70px;
    background: var(--bw-natural-white);
    border-bottom: 1px solid #f0f0f0;
    -webkit-box-shadow: 0 6px 12px #dddddd29;
    box-shadow: 0 6px 12px #dddddd29;
    font-family: var(--bw-font-family-inter);
    z-index: 1050
}

.bw-header .navbar-logo {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 24px;
    margin-right: 32px
}

.bw-header .navbar-logo::before {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    height: 70px;
    width: 1px;
    background: #f0f0f0
}

.bw-header .navbar-logo .logo {
    outline: 0;
    margin-right: 16px;
    text-decoration: inherit
}

.bw-header .navbar-logo .academy {
    color: #6a6a6a;
    font-weight: 600;
    text-decoration: initial;
    font-size: var(--bw-font-size-16)
}

.bw-header .navbar-logo .academy:hover {
    color: var(--bw-primary-orange)
}

.bw-header .navbar-menu {
    position: relative;
    width: 23px;
    height: 23px;
    margin-right: 10px;
}

.bw-header .navbar-menu span {
    position: absolute;
    top: 0;
    right: 0;
    background: url("../../assets/img/content/header/menu-bar.svg");
    width: 23px;
    height: 23px;
    background-size: cover
}

.bw-header .navbar-nav {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.bw-header .navbar-nav .nav-item {
    margin-right: 20px
}

.bw-header .navbar-nav .nav-item:hover .nav-link {
    color: var(--bw-primary-orange)
}

.bw-header .navbar-nav .nav-item .nav-link {
    color: var(--bw-primary-black);
    font-weight: 500;
    padding: 10px 0;
    font-size: var(--bw-font-size-16);
    outline: 0
}

.bw-header .navbar-nav .nav-item .bw-avatar {
    width: 46px;
    height: 46px
}

.bw-header .navbar-nav .nav-item.last {
    margin-right: 0
}

.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px
}

.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    outline: 0
}

.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
    background-color: var(--bw-primary-orange)
}

.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--bw-natural-white);
    background-color: var(--bw-primary-orange)
}

.bw-header .navbar-nav .bw-nav-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.bw-header .navbar-nav .bw-nav-search form input {
    display: none;
    width: 170px;
    height: 43px;
    border: 0;
    font-weight: normal;
    padding: 0.5rem 1rem;
    font-size: var(--bw-font-size-16);
    border-radius: 4px 0 0 4px;
    background: #f0f0f0;
    outline: 0
}

.bw-header .navbar-nav .bw-nav-search form input.hide {
    display: none;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.bw-header .navbar-nav .bw-nav-search form input.show {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.bw-header .navbar-nav .bw-nav-search form input:focus {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-header .navbar-nav .bw-nav-search .bw-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    width: 43px;
    height: 43px;
    cursor: pointer
}

.bw-header .navbar-nav .bw-nav-search .bw-btn:hover {
    background: #f0f0f0
}

.bw-header .navbar-nav .bw-nav-search .bw-btn.show {
    background: var(--bw-primary-orange);
    border-radius: 0 4px 4px 0
}

.bw-header .navbar-nav .bw-nav-search .bw-btn.show img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1)
}

.bw-header .navbar-nav .bw-nav-search .bw-btn img {
    width: 20px;
    height: 20px
}

.bw-header .navbar-nav .bw-theme-toggle {
    margin-left: 10px
}

.bw-header .navbar-nav .bw-theme-toggle .bw-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
    width: 43px;
    height: 43px;
    cursor: pointer
}

.bw-header .navbar-nav .bw-theme-toggle .bw-btn:hover {
    background: #f0f0f0
}

.bw-header .navbar-nav .bw-theme-toggle .bw-btn img {
    width: 20px;
    height: 20px
}

.bw-header .navbar-menu-content .h-dropdown-toggle::after {
    content: "";
    display: inline-block;
    border: solid #000;
    border-width: 0 1.4px 1.4px 0;
    padding: 2.5px;
    margin-left: 0.455em;
    vertical-align: 0.255em;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000082;
    z-index: 200;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2)
}

@media (max-width: 1200px) {
    .bw-header .navbar-nav .nav-item .nav-link {
        font-size: 14px
    }
}

@media all and (min-width: 992px) {
    .bw-header .social {
        display: none;
    }

    .bw-header .navbar-register {
        display: none;
    }

    .bw-header .navbar-menu-content .bw-navbar-nav {
        margin-right: auto;
    }



    .bw-header .navbar-nav .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        margin-top: 0;
        border: 1px solid #f0f0f0
    }

    .bw-header .navbar-nav .nav-item .dropdown-menu.fade-down {
        top: 80%;
        -webkit-transform: rotateX(-75deg);
        transform: rotateX(-75deg);
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        transform-origin: 0% 0%
    }

    .bw-header .navbar-nav .nav-item .dropdown-menu.fade-up {
        top: 180%
    }

    .bw-header .navbar-nav .nav-item:hover .nav-link {
        color: var(--bw-primary-orange)
    }

    .bw-header .navbar-nav .nav-item:hover .h-dropdown-toggle::after {
        border: solid var(--bw-primary-orange);
        border-width: 0 1.6px 1.6px 0;
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
        vertical-align: 0.1em
    }

    .bw-header .navbar-nav .nav-item:hover .dropdown-menu {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        border-bottom: 2px solid #f0f0f0;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg)
    }
}

.bw-header .navbar-menu {
    position: relative;
    width: 27px;
    height: 27px;
    margin-right: 10px;
    display: none;
}

@media (max-width: 992px) {
    .bw-header .navbar-menu {
        display: block;
    }

    .bw-header .navbar-menu-content .navbar-bottom .social a i {
        font-size: 18px;
        color: #00000080;
    }

    .bw-header .navbar-menu-content .navbar-bottom .social a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 10px;
        text-decoration: inherit;
    }

    .bw-header .navbar-menu-content .navbar-bottom .social {
        position: fixed;
        bottom: 24px;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bw-header .navbar-nav.bw-mobile-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0.9rem;
        background: -webkit-gradient(linear, right top, left top, from(#ea5607), to(#ff7600));
        background: -o-linear-gradient(right, #ea5607, #ff7600);
        background: linear-gradient(to left, #ea5607, #ff7600);
    }

    .bw-header .navbar-logo {
        padding-right: 0;
        margin-right: auto;
    }

    .bw-header .navbar-logo::before {
        display: none
    }


    .bw-header .navbar-nav .dropdown-menu {
        position: relative;
        top: 0;
        background: #f2f2f2;
        border: 0;
        border-radius: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .bw-header .navbar-nav.bw-mobile-nav .nav-item .wp-b-orange {
        font-size: 14px;
        color: #f76a02;
        background: var(--bw-natural-white);
    }

    .bw-header .navbar-nav .dropdown-menu .dropdown-item {
        padding: 5px 15px
    }

    .bw-header .navbar-nav .dropdown-menu.dropdown-menu-right {
        left: initial;
        right: auto
    }

    .bw-header .navbar-nav .nav-item {
        margin-right: 0;
        width: 100%
    }

    .bw-header .navbar-nav .nav-item .nav-link {
        font-size: var(--bw-font-size-14)
    }

    .bw-header .navbar-nav .nav-item .nav-link[aria-expanded="true"] {
        -webkit-box-shadow: 0 3px 6px #a8a8a82e;
        box-shadow: 0 3px 6px #a8a8a82e
    }

    .bw-header .navbar-nav .bw-nav-search form {
        position: relative;
        right: 0
    }

    .bw-header .navbar-nav .bw-nav-search form input {
        width: 100%;
        display: block;
        font-size: var(--bw-font-size-14);
        border-radius: 4px
    }

    .bw-header .navbar-nav .bw-nav-search .bw-btn {
        display: none
    }

    .bw-header .navbar-nav .bw-theme-toggle {
        margin-left: 0
    }

    .bw-header .navbar-menu-content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: initial;
        -webkit-align-items: initial;
        -ms-flex-align: initial;
        align-items: initial;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 75%;
        background: var(--bw-natural-white);
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        -o-transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
        transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
        transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        z-index: 1200;
    }

    .bw-header .navbar-menu-content.hide {
        display: block;
        -webkit-animation-name: fadeOutLeft;
        animation-name: fadeOutLeft;
        -webkit-animation-duration: var(--animate-duration);
        animation-duration: var(--animate-duration);
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: calc(var(--animate-duration) / 2);
        animation-duration: calc(var(--animate-duration) / 2)
    }

    .bw-header .navbar-menu-content.show {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .bw-header .navbar-menu-content .h-dropdown-toggle::after {
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    .bw-header .navbar-menu-content {
        width: 50%
    }
}

@media (max-width: 576px) {
    .bw-header .navbar-register {
        display: none;
    }

    .bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
        font-size: 14px
    }

    .bw-header .navbar-nav .nav-item .bw-btn {
        font-size: 15px
    }

    .bw-header .navbar-menu-content {
        width: 67%
    }

    .bw-header .navbar-menu-content .navbar-m-top {
        height: auto
    }

    .bw-header .navbar-menu-content .navbar-m-top .login {
        margin-right: 5px
    }
}

@media (max-width: 320px) {
    .bw-header .navbar-menu-content .h-dropdown-toggle::after {
        float: right
    }
}



.bw-h-headline {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5rem 0;
    background: #fbfbfb;
    font-family: var(--bw-font-family-inter);
    overflow: hidden
}

.bw-h-headline::before {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    background: url("../../assets/img/content/home/bitci-c-xl-1.svg");
    width: 777px;
    height: 100%;
    background-size: cover
}

.bw-h-headline .title {
    font-size: var(--bw-font-size-60);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.bw-h-headline .title span {
    font-weight: 400
}

.bw-h-headline .text {
    font-size: var(--bw-font-size-25);
    margin-bottom: 25px;
    color: #6a6a6a
}

.bw-h-headline .text a {
    color: #6a6a6a;
    text-decoration: inherit
}

.bw-h-headline .subscription .bw-input {
    position: relative;
    margin-bottom: 10px
}

.bw-h-headline .subscription .bw-input i {
    color: #d8d8d8;
    font-size: 20px;
    position: absolute;
    top: 20px;
    left: 26px
}

.bw-h-headline .subscription .bw-input input {
    display: block;
    width: 100%;
    height: 60px;
    padding-left: 60px;
    padding-right: 1.5rem;
    border: 2px solid #f0f0f0;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px
}

.bw-h-headline .subscription .bw-input input:focus {
    outline: 0;
    border-color: var(--bw-primary-orange);
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.bw-h-headline .subscription .bw-btn {
    height: 60px;
    color: var(--bw-natural-white);
    background: var(--bw-primary-orange);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter)
}

.bw-h-headline .subscription .bw-btn:hover {
    text-decoration: inherit;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-h-headline .subscription .bw-btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-h-headline .subscription .bw-btn.bw-btn-outline-white {
    color: var(--bw-natural-white);
    background: transparent;
    border: 1px solid var(--bw-natural-white)
}

.bw-h-headline .subscription .bw-btn.bw-btn-outline-white:hover {
    color: var(--bw-primary-orange);
    background: var(--bw-natural-white);
    border-color: transparent
}

.bw-h-headline .subscription .alert {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--bw-font-size-14);
    margin-bottom: 0;
    padding-right: 0;
    padding: 1rem 1rem;
    height: 60px
}

.bw-h-headline .subscription .alert.alert-dismissible .close {
    position: relative;
    margin-top: -6px;
    margin-left: auto;
    top: inherit;
    right: inherit;
    padding: 0;
    opacity: 0.5
}

.bw-h-headline .subscription .alert.alert-dismissible .close i {
    font-size: var(--bw-font-size-16)
}

.bw-h-academy {
    background: #fcfcfc;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-academy .bw-h-academy-sw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    height: inherit;
    border: 1px solid #f2f2f2;
    margin-bottom: 1.5rem
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15.5px;
    height: 67px
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card .a-title {
    position: relative;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: var(--bw-font-size-25)
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card .a-text {
    margin-bottom: 0;
    text-align: center;
    color: #6a6a6a;
    font-size: var(--bw-font-size-16)
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card:hover {
    background: var(--bw-primary-orange);
    color: var(--bw-natural-white)
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card:hover .a-text {
    color: var(--bw-natural-white)
}

.bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1)
}

.bw-h-academy .bw-h-academy-sw .navigation .prev {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-academy .bw-h-academy-sw .navigation .prev::after {
    content: "prev";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-academy .bw-h-academy-sw .navigation .prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-academy .bw-h-academy-sw .navigation .next {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-academy .bw-h-academy-sw .navigation .next::after {
    content: "next";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-academy .bw-h-academy-sw .navigation .next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-personel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-personel .bw-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-personel .bw-section .title {
    position: relative;
    color: var(--bw-primary-orange-1);
    font-size: var(--bw-font-size-25);
    margin-bottom: 41px;
    font-weight: 600;
    text-transform: uppercase
}

.bw-h-personel .bw-section .title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: #ea5607
}

.bw-h-personel .bw-section .text {
    color: #6a6a6a
}

.bw-h-personel .bw-h-personel-sw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 21px;
    border: 1px solid #f2f2f2;
    -webkit-box-shadow: 0 0 15px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 15px rgba(222, 222, 222, 0.16)
}

.bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card .title {
    font-size: var(--bw-font-size-25);
    color: var(--bw-primary-black);
    font-weight: 700
}

.bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    width: 70%
}

.bw-h-personel .bw-h-personel-sw .navigation .prev {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-personel .bw-h-personel-sw .navigation .prev::after {
    content: "prev";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-personel .bw-h-personel-sw .navigation .prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-personel .bw-h-personel-sw .navigation .next {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-personel .bw-h-personel-sw .navigation .next::after {
    content: "next";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-personel .bw-h-personel-sw .navigation .next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-analysis {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 0;
    background: #f9f9f9;
    font-family: var(--bw-font-family-inter)
}

.bw-h-analysis .bw-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-analysis .bw-section .title {
    position: relative;
    color: var(--bw-primary-orange-1);
    font-size: var(--bw-font-size-25);
    margin-bottom: 41px;
    font-weight: 600;
    text-transform: uppercase
}

.bw-h-analysis .bw-section .title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: #ea5607
}

.bw-h-analysis .bw-section .text {
    color: #6a6a6a
}

.bw-h-analysis .bw-h-analysis-sw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    bottom: 0;
    padding: 1.5rem;
    overflow: hidden
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background: -o-linear-gradient(top, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
    border-radius: 4px
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .user {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .user .title {
    color: var(--bw-natural-white);
    text-shadow: 1px 1px 3px var(--bw-primary-black)
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .content .title {
    font-size: var(--bw-font-size-20);
    font-weight: 700;
    color: var(--bw-natural-white);
    text-shadow: 1px 1px 3px var(--bw-primary-black);
    margin-bottom: 5px
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .content time {
    color: var(--bw-natural-white);
    font-size: var(--bw-font-size-16)
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .play {
    margin-right: -25px
}

.bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .play img {
    width: 100px;
    height: 100px
}

.bw-h-analysis .bw-h-analysis-sw .navigation .prev {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-analysis .bw-h-analysis-sw .navigation .prev::after {
    content: "prev";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-analysis .bw-h-analysis-sw .navigation .prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-analysis .bw-h-analysis-sw .navigation .next {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-analysis .bw-h-analysis-sw .navigation .next::after {
    content: "next";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-analysis .bw-h-analysis-sw .navigation .next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-analysis .all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

.bw-h-analysis .all a {
    color: #bfbfbf;
    font-weight: 600;
    font-size: var(--bw-font-size-14);
    text-decoration: none
}

.bw-h-analysis .all a:hover {
    color: var(--bw-primary-orange)
}

.bw-h-what {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-what::before {
    content: "";
    position: absolute;
    top: -83px;
    right: 0;
    background: url(../../assets/img/content/home/w-vector.svg);
    width: 400px;
    height: 315px
}



.bw-h-what .bw-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-what .bw-section .title {
    position: relative;
    color: var(--bw-primary-orange-1);
    font-size: var(--bw-font-size-25);
    margin-bottom: 41px;
    font-weight: 600;
    text-transform: uppercase
}

.bw-h-what .bw-section .title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: #ea5607
}

.bw-h-what .bw-section .text {
    color: #6a6a6a
}

.bw-h-what .bw-h-what-sw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: inherit
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card:hover .content .title {
    color: var(--bw-primary-orange)
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card img {
    width: 100%;
    height: 191px;
    min-height: 191px;
    border-radius: 4px 4px 0 0
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 1.5rem;
    border-radius: 0 0 4px 4px
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    font-size: var(--bw-font-size-16);
    padding: 12px 16px;
    font-weight: 300;
    border-radius: 6px;
    margin-bottom: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge i {
    margin-right: 12px
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-success {
    color: #000000b5;
    background: #02c0a833
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-success i {
    color: #02c076
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-success {
    color: #000000b5;
    border: 2px solid #02c0a833
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-success i {
    color: #02c076
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-success:hover {
    background: #02c0a833;
    border: 2px solid transparent
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-warning {
    color: #000000b5;
    background: #f0b90b33
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-warning i {
    color: #f0b90b
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-warning {
    color: #000000b5;
    border: 2px solid #f0b90b33
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-warning i {
    color: #f0b90b
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-warning:hover {
    background: #f0b90b33;
    border: 2px solid transparent
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-danger {
    color: #000000b5;
    background: #d9304e33
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-danger i {
    color: #d9304e
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-danger {
    color: #000000b5;
    border: 2px solid #d9304e33
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-danger i {
    color: #d9304e
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-outline-danger:hover {
    background: #d9304e33;
    border: 2px solid transparent
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .bw-badge.bw-badge-gray {
    color: #6a6a6a;
    background: #f2f2f2
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .title {
    font-size: var(--bw-font-size-20);
    font-weight: 700;
    margin-bottom: 16px
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content time {
    font-size: var(--bw-font-size-16);
    color: #bfbfbf
}

.bw-h-what .bw-h-what-sw .navigation .prev {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-what .bw-h-what-sw .navigation .prev::after {
    content: "prev";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-what .bw-h-what-sw .navigation .prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-what .bw-h-what-sw .navigation .next {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-what .bw-h-what-sw .navigation .next::after {
    content: "next";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-what .bw-h-what-sw .navigation .next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-what .all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

.bw-h-what .all a {
    color: #bfbfbf;
    font-weight: 600;
    font-size: var(--bw-font-size-14);
    text-decoration: none
}

.bw-h-what .all a:hover {
    color: var(--bw-primary-orange)
}

.bw-h-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-news .bw-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 0;
    font-family: var(--bw-font-family-inter)
}

.bw-h-news .bw-section .title {
    position: relative;
    color: var(--bw-primary-orange-1);
    font-size: var(--bw-font-size-25);
    margin-bottom: 41px;
    font-weight: 600;
    text-transform: uppercase
}

.bw-h-news .bw-section .title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: #ea5607
}

.bw-h-news .bw-section .text {
    color: #6a6a6a
}

.bw-h-news .bw-h-news-sw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: inherit
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card:hover .content .title {
    color: var(--bw-primary-orange)
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card img {
    width: 100%;
    height: 191px;
    border-radius: 4px 4px 0 0;
    object-fit: cover;
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 1.5rem;
    border-radius: 0 0 4px 4px
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content .title {
    font-size: var(--bw-font-size-20);
    font-weight: 700;
    margin-bottom: 16px
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content time {
    font-size: var(--bw-font-size-16);
    color: #bfbfbf
}

.bw-h-news .bw-h-news-sw .navigation .prev {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-news .bw-h-news-sw .navigation .prev::after {
    content: "prev";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-news .bw-h-news-sw .navigation .prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-news .bw-h-news-sw .navigation .next {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: calc(-44px / 2);
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px #b7b7b7a8;
    box-shadow: 0 0 10px #b7b7b7a8;
    border-radius: 50%;
    outline: 0;
    z-index: 10
}

.bw-h-news .bw-h-news-sw .navigation .next::after {
    content: "next";
    font-family: "swiper-icons";
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-size: 19px;
    color: #575757;
    font-weight: 800
}

.bw-h-news .bw-h-news-sw .navigation .next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.bw-h-news .all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

.bw-h-news .all a {
    color: #bfbfbf;
    font-weight: 600;
    font-size: var(--bw-font-size-14);
    text-decoration: none
}

.bw-h-news .all a:hover {
    color: var(--bw-primary-orange)
}

@media all and (min-width: 2000px) {
    .bw-h-headline .title {
        font-size: 45px
    }
}

@media (max-width: 2000px) {
    .bw-h-headline .title {
        font-size: 42px
    }

    .bw-h-headline .text {
        font-size: 22px
    }
}

@media (max-width: 1200px) {
    .bw-h-headline::before {
        opacity: 0.3
    }

    .bw-h-headline .title {
        font-size: 30px
    }

    .bw-h-headline .text {
        font-size: 16px
    }
}

@media (max-width: 992px) {

    .bw-h-headline::before {
        display: none
    }
}

@media (max-width: 576px) {
    .bw-h-headline .title {
        font-size: 30px
    }

    .bw-h-headline .text {
        font-size: 17px
    }

    .bw-h-headline .bw-btn {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        font-size: 14px;
        height: 50px
    }

    .bw-h-headline .subscription .alert {
        font-size: 13px;
        margin-bottom: 10px;
        height: 50px
    }

    .bw-h-headline .subscription .bw-btn {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        font-size: 14px;
        height: 50px
    }

    .bw-h-headline .subscription .bw-input i {
        top: 18px;
        font-size: 17px
    }

    .bw-h-headline .subscription .bw-input input {
        font-size: var(--bw-font-size-14);
        height: 50px
    }

    .bw-h-academy {
        overflow: hidden
    }

    .bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card .a-title {
        font-size: var(--bw-font-size-20)
    }

    .bw-h-academy .bw-h-academy-sw .swiper-slide .bw-card .a-text {
        font-size: var(--bw-font-size-14)
    }

    .bw-h-personel {
        overflow: hidden
    }

    .bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card .title {
        font-size: var(--bw-font-size-20)
    }

    .bw-h-personel .bw-h-personel-sw .swiper-slide .bw-card .text {
        font-size: var(--bw-font-size-14)
    }

    .bw-h-analysis {
        overflow: hidden
    }

    .bw-h-analysis .bw-section .text {
        font-size: 15px;
        text-align: center
    }

    .bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .content .title {
        font-size: var(--bw-font-size-16)
    }

    .bw-h-analysis .bw-h-analysis-sw .swiper-slide .bw-card .body .layer .content time {
        font-size: var(--bw-font-size-14)
    }

    .bw-h-what {
        overflow: hidden
    }

    .bw-h-what::before {
        display: none
    }

    .bw-h-what .bw-section .text {
        font-size: 15px;
        text-align: center
    }

    .bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .title {
        font-size: var(--bw-font-size-16)
    }

    .bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content .text {
        font-size: var(--bw-font-size-14)
    }

    .bw-h-what .bw-h-what-sw .swiper-slide .bw-card .content time {
        font-size: var(--bw-font-size-12)
    }

    .bw-h-news {
        overflow: hidden
    }

    .bw-h-news .bw-section .text {
        font-size: 15px;
        text-align: center
    }

    .bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content .title {
        font-size: var(--bw-font-size-16)
    }

    .bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content .text {
        font-size: var(--bw-font-size-14)
    }

    .bw-h-news .bw-h-news-sw .swiper-slide .bw-card .content time {
        font-size: var(--bw-font-size-12)
    }
}

.bw-p-listing {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0;
    background: #f9f9f9;
    font-family: var(--bw-font-family-inter)
}

.bw-p-listing .headline {
    margin-bottom: 32px
}

.bw-p-listing .headline .text {
    color: #6a6a6a;
    font-weight: 700;
    font-size: var(--bw-font-size-16)
}

.bw-p-listing .bw-card {
    position: relative;
    margin-bottom: 1.5rem
}

.bw-p-listing .bw-card:hover .content .title {
    color: var(--bw-primary-orange)
}

.bw-p-listing .bw-card img {
    width: 100%;
    height: 191px;
    border-radius: 4px 4px 0 0;
    -o-object-fit: cover;
    object-fit: cover
}

.bw-p-listing .bw-card .content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 1.5rem;
    border-radius: 0 0 4px 4px
}

.bw-p-listing .bw-card .content .bw-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    font-size: var(--bw-font-size-16);
    padding: 12px 16px;
    font-weight: 300;
    border-radius: 6px;
    margin-bottom: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.bw-p-listing .bw-card .content .bw-badge i {
    margin-right: 12px
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-success {
    color: #000000b5;
    background: #02c0a833
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-success i {
    color: #02c076
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-success {
    color: #000000b5;
    border: 2px solid #02c0a833
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-success i {
    color: #02c076
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-success:hover {
    background: #02c0a833;
    border: 2px solid transparent
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-warning {
    color: #000000b5;
    background: #f0b90b33
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-warning i {
    color: #f0b90b
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-warning {
    color: #000000b5;
    border: 2px solid #f0b90b33
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-warning i {
    color: #f0b90b
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-warning:hover {
    background: #f0b90b33;
    border: 2px solid transparent
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-danger {
    color: #000000b5;
    background: #d9304e33
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-danger i {
    color: #d9304e
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-danger {
    color: #000000b5;
    border: 2px solid #d9304e33
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-danger i {
    color: #d9304e
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-outline-danger:hover {
    background: #d9304e33;
    border: 2px solid transparent
}

.bw-p-listing .bw-card .content .bw-badge.bw-badge-gray {
    color: #6a6a6a;
    background: #f2f2f2
}

.bw-p-listing .bw-card .content .title {
    font-size: var(--bw-font-size-20);
    font-weight: 700;
    margin-bottom: 16px
}

.bw-p-listing .bw-card .content .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bw-p-listing .bw-card .content time {
    font-size: var(--bw-font-size-16);
    color: #bfbfbf
}

.bw-p-listing-a1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0;
    background: #f9f9f9;
    font-family: var(--bw-font-family-inter)
}

.bw-p-listing-a1 .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 1.5rem;
    margin: 16px 0
}

.bw-p-listing-a1 .bw-card:hover .content .title {
    color: var(--bw-primary-orange)
}

.bw-p-listing-a1 .bw-card .content .title {
    font-size: var(--bw-font-size-20);
    font-weight: 700;
    margin-bottom: 16px
}

.bw-p-listing-a1 .bw-card .content .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    margin-bottom: 0
}

.bw-p-listing-a1 .bw-card .author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.bw-p-listing-a1 .bw-card .author img {
    width: 84px;
    height: 84px;
    border-radius: 50%
}

@media (max-width: 768px) {
    .bw-p-listing-a1 .bw-card {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .bw-p-listing-a1 .bw-card .content {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%
    }

    .bw-p-listing-a1 .bw-card .author {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-bottom: 1.5rem
    }
}

@media (max-width: 576px) {
    .bw-p-listing .bw-card .content time {
        font-size: var(--bw-font-size-14)
    }
}

.bw-p-video {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0;
    background: #fbfbfb;
    font-family: var(--bw-font-family-inter)
}

.bw-p-video .cover .thumb {
    position: relative
}

.bw-p-video .cover .thumb.hide {
    display: none;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.bw-p-video .cover .thumb .bg {
    width: 100%;
    border-radius: 4px 4px 0 0
}

.bw-p-video .cover .thumb .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 143px;
    height: 143px;
    margin: auto;
    cursor: pointer
}

.bw-p-video .cover .video-frame {
    display: none
}

.video-frame iframe {
    height: 438px;
}

.bw-p-video .cover .video-frame.show {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.bw-p-video .cover .video-frame .embed-responsive {
    border-radius: 4px 4px 0 0
}

.bw-p-video .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 2rem;
    border-radius: 0 0 4px 4px
}

.bw-p-video .bw-card section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 27px;
    margin-bottom: 27px
}

.bw-p-video .bw-card section .content .title {
    font-size: var(--bw-font-size-25);
    color: var(--bw-primary-dark);
    font-weight: 700
}

.bw-p-video .bw-card section .content .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.bw-p-video .bw-card section .content .info .viewing {
    font-size: var(--bw-font-size-16);
    color: #c3c3c3
}

.bw-p-video .bw-card section .content .info .line {
    font-size: var(--bw-font-size-16);
    color: #c3c3c3;
    margin: 0 15px
}

.bw-p-video .bw-card section .content .info time {
    font-size: var(--bw-font-size-16);
    color: #c3c3c3
}

.bw-p-video .bw-card section .author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500
}

.bw-p-video .bw-card section .author img {
    width: 83px;
    height: 83px;
    border-radius: 50%
}

.bw-p-video .bw-card article p {
    font-size: var(--bw-font-size-16)
}

.bw-p-video .bw-card article p:nth-last-child(1) {
    margin-bottom: 0
}

.bw-p-author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0;
    background: #e3e3e3;
    font-family: var(--bw-font-family-inter)
}

.bw-p-author .bw-author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.bw-p-author .bw-author img {
    width: 140px;
    height: 140px;
    border-radius: 50%
}

.bw-p-author .bw-author .content {
    margin-left: 24px
}

.bw-p-author .bw-author .content .title {
    font-weight: 700;
    font-size: var(--bw-font-size-25)
}

.bw-p-author .bw-author .content .text {
    font-weight: 500;
    font-size: var(--bw-font-size-20)
}

.bw-p-author .bw-author .content article {
    color: #6a6a6a;
    width: 65%;
    font-size: var(--bw-font-size-16)
}

.bw-p-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0;
    background: #fbfbfb;
    font-family: var(--bw-font-family-inter)
}

.bw-p-post .cover .thumb {
    position: relative
}

.bw-p-post .cover .thumb .bg {
    width: 100%;
    border-radius: 4px 4px 0 0
}

.bw-p-post .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 2rem;
    border-radius: 0 0 4px 4px
}

.bw-p-post .bw-card section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 27px;
    margin-bottom: 27px
}

.bw-p-post .bw-card section .content .title {
    font-size: var(--bw-font-size-25);
    color: var(--bw-primary-dark);
    font-weight: 700
}

.bw-p-post .bw-card section .content .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.bw-p-post .bw-card section .content .info .bw-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    font-size: var(--bw-font-size-16);
    padding: 12px 16px;
    font-weight: 300;
    border-radius: 6px;
    margin-right: 15px
}

.bw-p-post .bw-card section .content .info .bw-badge i {
    margin-right: 12px
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-success {
    color: #000000b5;
    background: #02c0a833
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-success i {
    color: #02c076
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-success {
    color: #000000b5;
    border: 2px solid #02c0a833
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-success i {
    color: #02c076
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-success:hover {
    background: #02c0a833;
    border: 2px solid transparent
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-warning {
    color: #000000b5;
    background: #f0b90b33
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-warning i {
    color: #f0b90b
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-warning {
    color: #000000b5;
    border: 2px solid #f0b90b33
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-warning i {
    color: #f0b90b
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-warning:hover {
    background: #f0b90b33;
    border: 2px solid transparent
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-danger {
    color: #000000b5;
    background: #d9304e33
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-danger i {
    color: #d9304e
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-danger {
    color: #000000b5;
    border: 2px solid #d9304e33
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-danger i {
    color: #d9304e
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-outline-danger:hover {
    background: #d9304e33;
    border: 2px solid transparent
}

.bw-p-post .bw-card section .content .info .bw-badge.bw-badge-gray {
    color: #6a6a6a;
    background: #f2f2f2
}

.bw-p-post .bw-card section .content .info .viewing {

    color: #6a6a6a
}

.bw-p-post .bw-card section .content .info .line {
    font-size: var(--bw-font-size-16);
    color: #6a6a6a;
    margin: 0 15px
}

.bw-p-post .bw-card section .content .info time {
    font-size: var(--bw-font-size-16);
    color: #6a6a6a
}

.bw-p-post .bw-card section .author {
    padding-right: 10px;
    font-weight: 500;
    margin-right: 15px;
    display: flex;
    align-items: center;
    border-right: 2px solid #f3f1f1;
}

.author .detail {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.author .author-title {
    color: #6a6a6a;
    font-weight: 400;
}

.categories {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.categories a {
    color: var(--bw-primary-orange);
}

.categories a:hover {
    text-decoration: none;
}

.bw-p-post .bw-card section .author span {
    margin-left: 5px;
}

.bw-p-post .bw-card section .author img {
    width: 53px;
    height: 53px;
    border-radius: 50%
}

.bw-p-post .bw-card article p {
    font-size: var(--bw-font-size-16)
}

.bw-p-post .bw-card article p:nth-last-child(1) {
    margin-bottom: 0
}

.bw-p-post .bw-card article .ads {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
    height: 130px;
    border-radius: 4px;
    background: -webkit-gradient(linear, left top, right top, from(#ea5607), to(#ff7f00));
    background: -o-linear-gradient(left, #ea5607, #ff7f00);
    background: linear-gradient(to right, #ea5607, #ff7f00);
    margin-bottom: 1rem;
    overflow: hidden
}

.bw-p-post .bw-card article .ads img {
    margin-right: 18px;
    margin-top: -7px;
    width: auto;
}

.bw-p-post .bw-card article .ads .text {
    font-weight: 600;
    font-size: var(--bw-font-size-20);
    color: var(--bw-natural-white);
    margin-right: 40px;
    margin-bottom: 0
}

.bw-p-post .bw-card article .ads .bw-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter);
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.bw-p-post .bw-card article .ads .bw-btn:hover {
    text-decoration: inherit;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card article .ads .bw-btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card article .ads .bw-btn.bw-btn-outline-white {
    color: var(--bw-natural-white);
    background: transparent;
    border: 1px solid var(--bw-natural-white)
}

.bw-p-post .bw-card article .ads .bw-btn.bw-btn-outline-white:hover {
    color: var(--bw-primary-orange);
    background: var(--bw-natural-white);
    border-color: transparent
}

.bw-p-post .bw-card article .ads .bw-btn.bw-btn-outline-white {
    border-width: 2px
}

.bw-p-post .bw-card-sidebar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 0
}

.bw-p-post .bw-card-sidebar .header {
    padding: 1rem 1.2rem;
    color: #8d8d8d;
    background: #efefef;
    font-weight: 700;
    font-size: var(--bw-font-size-18)
}

.bw-p-post .bw-card-sidebar .content {
    padding: 1rem 1.2rem
}

.bw-p-post .bw-card-sidebar .content p {
    margin-bottom: 12px;
    font-size: var(--bw-font-size-16)
}

.bw-p-post .bw-card-sidebar .content p span {
    font-weight: 700
}

.bw-p-post .bw-card-sidebar .content .crypto-amount {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.bw-p-post .bw-card-sidebar .content .crypto-amount input {
    width: 75%;
    border: 2px solid #efefef;
    border-radius: 4px 0 0 4px;
    padding: 0 1rem;
    height: 52px
}

.bw-p-post .bw-card-sidebar .content .crypto-amount input:focus {
    outline: 0
}

.bw-p-post .bw-card-sidebar .content .crypto-amount .currency {
    position: relative;
    width: 25%
}

.bw-p-post .bw-card-sidebar .content .crypto-amount .currency::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    display: inline-block;
    border: solid #000;
    border-width: 0 1.4px 1.4px 0;
    padding: 2.5px;
    margin-left: 0.455em;
    vertical-align: 0.255em;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1
}

.bw-p-post .bw-card-sidebar .content .crypto-amount .currency select {
    position: relative;
    border: 2px solid #efefef;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    padding: 0 5px;
    width: 100%;
    height: 52px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
    cursor: pointer
}

.bw-p-post .bw-card-sidebar .content .crypto-amount .currency select:focus {
    outline: 0
}

.bw-p-post .bw-card-sidebar .content .crypto-amount .currency select:hover {
    background: #efefef
}

.bw-p-post .bw-card-sidebar .content .crypto-list {
    position: relative;
    margin-bottom: 20px
}

.bw-p-post .bw-card-sidebar .content .crypto-list::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    display: inline-block;
    border: solid #000;
    border-width: 0 1.4px 1.4px 0;
    padding: 2.5px;
    margin-left: 0.455em;
    vertical-align: 0.255em;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.bw-p-post .bw-card-sidebar .content .crypto-list select {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    border: 2px solid #efefef;
    border-radius: 4px;
    height: 52px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
    cursor: pointer
}

.bw-p-post .bw-card-sidebar .content .crypto-list select:focus {
    outline: 0
}

.bw-p-post .bw-card-sidebar .content .crypto-list select:hover {
    background: #efefef
}

.bw-p-post .bw-card-sidebar .content .bw-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter);
    width: 100%;
    color: var(--bw-natural-white);
    background: var(--bw-primary-orange);
    margin-bottom: 23px
}

.bw-p-post .bw-card-sidebar .content .bw-btn:hover {
    text-decoration: inherit;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card-sidebar .content .bw-btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card-sidebar .content .bw-btn.bw-btn-outline-white {
    color: var(--bw-natural-white);
    background: transparent;
    border: 1px solid var(--bw-natural-white)
}

.bw-p-post .bw-card-sidebar .content .bw-btn.bw-btn-outline-white:hover {
    color: var(--bw-primary-orange);
    background: var(--bw-natural-white);
    border-color: transparent
}

.bw-p-post .bw-card-sidebar .content .bitci {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: var(--bw-font-size-14)
}

.bw-p-post .bw-card-sidebar .content .bitci img {
    height: 16px;
    width: auto;
    margin-right: 5px;
}

.bw-p-post .bw-card-sidebar-a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    padding: 0
}

.bw-p-post .bw-card-sidebar-a .header {
    padding: 1rem 1.2rem;
    color: var(--bw-natural-white);
    border-radius: 4px 4px 0 0;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, right top, from(#ea5607), to(#ff7f00));
    background: -o-linear-gradient(left, #ea5607, #ff7f00);
    background: linear-gradient(to right, #ea5607, #ff7f00);
    font-size: var(--bw-font-size-18)
}

.bw-p-post .bw-card-sidebar-a .header .title {
    font-size: var(--bw-font-size-16);
    font-weight: 700
}

.bw-p-post .bw-card-sidebar-a .header .text {
    font-size: var(--bw-font-size-14);
    color: #ffffffd9;
    font-weight: 500;
    margin-bottom: 0
}

.bw-p-post .bw-card-sidebar-a .content {
    padding: 1rem 1.2rem
}

.bw-p-post .bw-card-sidebar-a .content .wp-b-orange {
    margin: 0;
}

.bw-p-post .bw-card-sidebar-a .content form .form-email {
    width: 100%;
    border: 2px solid #efefef;
    border-radius: 4px;
    padding: 0 1rem;
    height: 52px;
    font-size: var(--bw-font-size-16);
    margin-bottom: 16px
}

.bw-p-post .bw-card-sidebar-a .content form .form-email:focus {
    outline: 0;
    border-color: var(--bw-primary-orange)
}

.bw-p-post .bw-card-sidebar-a .content form .form-group label {
    color: var(--bw-primary-dark);
    font-size: var(--bw-font-size-14)
}

.bw-p-post .bw-card-sidebar-a .content form .form-group label span {
    color: #6a6a6a
}

.bw-p-post .bw-card-sidebar-a .content form .bw-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter);
    width: 100%;
    color: var(--bw-natural-white);
    background: var(--bw-primary-orange)
}

.bw-p-post .bw-card-sidebar-a .content form .bw-btn:hover {
    text-decoration: inherit;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card-sidebar-a .content form .bw-btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.bw-p-post .bw-card-sidebar-a .content form .bw-btn.bw-btn-outline-white {
    color: var(--bw-natural-white);
    background: transparent;
    border: 1px solid var(--bw-natural-white)
}

.bw-p-post .bw-card-sidebar-a .content form .bw-btn.bw-btn-outline-white:hover {
    color: var(--bw-primary-orange);
    background: var(--bw-natural-white);
    border-color: transparent
}

.bw-p-dictionary-list {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    padding: 1rem 0;
    background: #e3e3e3;
    z-index: 1;
    font-family: var(--bw-font-family-inter)
}

.bw-p-dictionary-list .row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.bw-p-dictionary-list .search {
    position: relative
}

.bw-p-dictionary-list .search::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 16px;
    background: url(../../assets/img/content/page/search.svg);
    background-repeat: no-repeat;
    width: 17px;
    height: 17px
}

.bw-p-dictionary-list .search input {
    color: #727272;
    background: #f0f0f0;
    height: 44px;
    font-weight: 500;
    border-radius: 4px;
    padding-left: 42px;
    font-size: var(--bw-font-size-16)
}

.bw-p-dictionary-list .search input:focus {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
    border-color: #cecece
}

.bw-p-dictionary-list .alphabet-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.bw-p-dictionary-list .alphabet-list .item {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
    -ms-flex: 1 1;
    flex: 1 1;
    font-weight: 500;
    font-size: 22px;
    color: #6a6a6a
}

.bw-p-dictionary-list .alphabet-list .item:hover {
    text-decoration: initial;
    color: #959595
}

.bw-p-dictionary {
    padding-top: 4rem;
    font-family: var(--bw-font-family-inter)
}

.bw-p-dictionary .letter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 107px;
    height: 107px;
    color: #bfbfbf;
    background: #e3e3e3;
    border-radius: 50%;
    font-weight: 700;
    font-size: var(--bw-font-size-60)
}

.bw-p-dictionary .bw-nav-list .bw-card {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    margin-bottom: 24px;
    padding: 1.5rem
}

.bw-p-dictionary .bw-nav-list .bw-card .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px
}

.bw-p-dictionary .bw-nav-list .bw-card .text {
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    margin-bottom: 0
}

.bw-p-press {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0;
    background: #f9f9f9;
    font-family: var(--bw-font-family-inter)
}

.bw-p-press .content {
    position: relative;
    width: 100%
}

.bw-p-press .content .bw-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background: var(--bw-natural-white);
    -webkit-box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    box-shadow: 0 0 10px rgba(222, 222, 222, 0.16);
    font-family: var(--bw-font-family-inter);
    width: 100%;
    padding: 24px;
    margin: 17px 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.bw-p-press .content .bw-card.bw-press-card {
    cursor: pointer
}

.bw-p-press .content .bw-card.bw-press-card.show {
    position: absolute;
    z-index: 1
}

.bw-p-press .content .bw-card.bw-press-card.show .nav {
    display: block;
    margin-top: 1rem;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.bw-p-press .content .bw-card svg,
.bw-p-press .content .bw-card img {
    width: 100%;
    height: 52px
}

.bw-p-press .content .bw-card .number {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #bfbfbf;
    background: #e3e3e3;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: var(--bw-font-size-14)
}

.bw-p-press .content .bw-card .nav {
    display: none
}

.bw-p-press .content .bw-card .nav .nav-item {
    margin-bottom: 13px
}

.bw-p-press .content .bw-card .nav .nav-item:nth-last-child(1) {
    margin-bottom: 0
}

.bw-p-press .content .bw-card .nav .nav-item .nav-link {
    padding: 0;
    font-size: var(--bw-font-size-14);
    color: var(--bw-primary-dark)
}

.bw-p-press .content .bw-card .nav .nav-item .nav-link:hover {
    color: var(--bw-primary-orange)
}

.bw-p-post .bw-card section .content .info>div,
.bw-p-post .bw-card section .content .info>time {
    margin-bottom: 15px;
    margin-top: 15px;

}

@media (max-width: 992px) {

    .bw-p-video .bw-card section {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .bw-p-video .bw-card section .content {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%
    }

    .bw-p-video .bw-card section .author {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-bottom: 1rem
    }

    .bw-p-post .bw-card section {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .bw-p-post .bw-card section .content {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%
    }

    .bw-p-post .bw-card section .content .info {
        margin-top: 1rem;
    }




    .bw-p-dictionary .letter {
        margin-bottom: 1rem
    }

    .bw-p-dictionary-list .search {
        margin-bottom: 10px
    }

    .bw-p-dictionary-list .alphabet-list .item {
        font-size: 30px;
        padding-right: 7px;
        display: inline-block;
    }

    .bw-p-dictionary-list .alphabet-list {
        display: block;
    }
}

@media (max-width: 768px) {
    .bw-p-post .bw-card section .author img {
        width: 32px;
        height: 32px;
    }

    .bw-p-dictionary .letter {
        width: 87px;
        height: 87px;
        font-size: 45px
    }
}

@media (max-width: 576px) {
    .video-frame iframe {
        height: 278px;
    }

    .bw-p-video .cover .thumb .icon {
        width: calc(143px / 1.5);
        height: calc(143px / 1.5)
    }

    .bw-p-video .bw-card section .content .title {
        font-size: var(--bw-font-size-20)
    }

    .bw-p-video .bw-card section .content .info .viewing {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-video .bw-card section .content .info .line {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-video .bw-card section .content .info time {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-video .bw-card section .author {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-video .bw-card section .author img {
        width: calc(83px / 1.6);
        height: calc(83px / 1.6)
    }

    .bw-p-video .bw-card article p {
        font-size: 15px
    }

    .bw-p-post .bw-card {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .bw-p-post .bw-card section .content .title {
        font-size: var(--bw-font-size-20)
    }

    .bw-p-post .bw-card section .content .info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .bw-p-post .bw-card section .content .info .bw-badge {
        height: auto;
        font-size: var(--bw-font-size-14);
        padding: 8px 13px
    }

    .bw-p-post .bw-card section .content .info .viewing {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-post .bw-card section .content .info .line {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-post .bw-card section .content .info time {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-post .bw-card section article p {
        font-size: 15px
    }

    .bw-p-post .bw-card article p {
        font-size: 15px
    }

    .bw-p-post .bw-card article .ads {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        padding: 1.5rem
    }

    .bw-p-post .bw-card article .ads .text {
        font-size: var(--bw-font-size-16);
        margin-bottom: 1rem
    }

    .bw-p-post .bw-card article .ads .bw-btn {
        font-size: var(--bw-font-size-14)
    }

    .bw-p-post .bw-card article .ads img {
        display: none
    }

    .bw-p-dictionary .letter {
        width: 47px;
        height: 47px;
        font-size: 30px
    }
}

.pagination-layer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pagination-layer .bw-pagination {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 4rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pagination-layer .bw-pagination .page-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 0.25rem;
    border-radius: 4px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.pagination-layer .bw-pagination .page-item.disabled .page-link .arrow {
    border: solid #e0e0e0;
    border-width: 0 2px 2px 0
}

.pagination-layer .bw-pagination .page-item.active {
    background: #e6e6e6
}

.pagination-layer .bw-pagination .page-item.active .page-link {
    width: 36px;
    height: 36px;
    color: var(--bw-primary-black)
}

.pagination-layer .bw-pagination .page-item .page-link {
    border-radius: 4px;
    background: transparent;
    border: 0;
    color: var(--bw-primary-black)
}

.pagination-layer .bw-pagination .page-item .page-link:hover {
    background: #e6e6e62e
}

.pagination-layer .bw-pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.pagination-layer .bw-pagination .page-item .page-link .arrow {
    border: solid #626262;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px
}

.pagination-layer .bw-pagination .page-item .page-link .arrow.prev {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.pagination-layer .bw-pagination .page-item .page-link .arrow.next {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.bw-static-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--bw-font-family-inter)
}

.bw-static-nav.bw-author {
    padding: 2rem 0
}

.bw-static-nav.bw-author .bw-breadcrumb {
    margin-bottom: 0
}

.bw-static-nav.bw-author .bw-breadcrumb .breadcrumb {
    margin-bottom: 0
}

.bw-static-nav .bw-breadcrumb {
    margin-bottom: 1rem
}

.bw-static-nav .bw-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0
}

.bw-static-nav .bw-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: var(--bw-font-size-16)
}

.bw-static-nav .bw-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #bfbfbf
}

.bw-static-nav .bw-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--bw-primary-orange)
}

.bw-static-nav .headline .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--bw-font-size-25);
    font-weight: 700;
    margin-bottom: 10px
}

.bw-static-nav .headline .title .bw-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    font-size: var(--bw-font-size-16);
    padding: 12px 16px;
    font-weight: 300;
    border-radius: 6px;
    padding: 6px 12px;
    height: 32px;
    font-weight: 600;
    font-size: var(--bw-font-size-14);
    margin-left: 22px
}

.bw-static-nav .headline .title .bw-badge i {
    margin-right: 12px
}

.bw-static-nav .headline .title .bw-badge.bw-badge-success {
    color: #000000b5;
    background: #02c0a833
}

.bw-static-nav .headline .title .bw-badge.bw-badge-success i {
    color: #02c076
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-success {
    color: #000000b5;
    border: 2px solid #02c0a833
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-success i {
    color: #02c076
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-success:hover {
    background: #02c0a833;
    border: 2px solid transparent
}

.bw-static-nav .headline .title .bw-badge.bw-badge-warning {
    color: #000000b5;
    background: #f0b90b33
}

.bw-static-nav .headline .title .bw-badge.bw-badge-warning i {
    color: #f0b90b
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-warning {
    color: #000000b5;
    border: 2px solid #f0b90b33
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-warning i {
    color: #f0b90b
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-warning:hover {
    background: #f0b90b33;
    border: 2px solid transparent
}

.bw-static-nav .headline .title .bw-badge.bw-badge-danger {
    color: #000000b5;
    background: #d9304e33
}

.bw-static-nav .headline .title .bw-badge.bw-badge-danger i {
    color: #d9304e
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-danger {
    color: #000000b5;
    border: 2px solid #d9304e33
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-danger i {
    color: #d9304e
}

.bw-static-nav .headline .title .bw-badge.bw-badge-outline-danger:hover {
    background: #d9304e33;
    border: 2px solid transparent
}

.bw-static-nav .headline .title .bw-badge.bw-badge-gray {
    color: #6a6a6a;
    background: #f2f2f2
}

.bw-static-nav .headline .text {
    font-size: var(--bw-font-size-16)
}

.bw-static-nav .bw-author-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    padding: 14px 24px;
    border-radius: 4px;
    border: 1px solid #eaeaea
}

.bw-static-nav .bw-author-m img {
    width: 64px;
    height: 64px;
    border-radius: 50%
}

.bw-static-nav .bw-author-m .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 23px
}

.bw-static-nav .bw-author-m .content .title {
    font-weight: 700;
    font-size: 23px;
    color: var(--bw-primary-black)
}

.bw-static-nav .bw-author-m .content .text {
    font-weight: 400;
    margin-bottom: 0;
    font-size: var(--bw-font-size-16);
    color: #6a6a6a
}

.bw-static-nav .l-title {
    font-size: var(--bw-font-size-16);
    font-weight: 600;
    margin-bottom: 10px
}

.bw-static-nav .badge-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.bw-static-nav .badge-list .bw-badge {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    font-size: var(--bw-font-size-16);
    padding: 12px 16px;
    font-weight: 300;
    border-radius: 6px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-right: 15px;
    margin-bottom: 5px
}

.bw-static-nav .badge-list .bw-badge i {
    margin-right: 12px
}

.bw-static-nav .badge-list .bw-badge.bw-badge-success {
    color: #000000b5;
    background: #02c0a833
}

.bw-static-nav .badge-list .bw-badge.bw-badge-success i {
    color: #02c076
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-success {
    color: #000000b5;
    border: 2px solid #02c0a833
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-success i {
    color: #02c076
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-success:hover {
    background: #02c0a833;
    border: 2px solid transparent
}

.bw-static-nav .badge-list .bw-badge.bw-badge-warning {
    color: #000000b5;
    background: #f0b90b33
}

.bw-static-nav .badge-list .bw-badge.bw-badge-warning i {
    color: #f0b90b
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-warning {
    color: #000000b5;
    border: 2px solid #f0b90b33
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-warning i {
    color: #f0b90b
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-warning:hover {
    background: #f0b90b33;
    border: 2px solid transparent
}

.bw-static-nav .badge-list .bw-badge.bw-badge-danger {
    color: #000000b5;
    background: #d9304e33
}

.bw-static-nav .badge-list .bw-badge.bw-badge-danger i {
    color: #d9304e
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-danger {
    color: #000000b5;
    border: 2px solid #d9304e33
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-danger i {
    color: #d9304e
}

.bw-static-nav .badge-list .bw-badge.bw-badge-outline-danger:hover {
    background: #d9304e33;
    border: 2px solid transparent
}

.bw-static-nav .badge-list .bw-badge.bw-badge-gray {
    color: #6a6a6a;
    background: #f2f2f2
}

@media (max-width: 992px) {
    .bw-static-nav .headline {
        margin-bottom: 1.5rem
    }

    .bw-static-nav .bw-author-m .content .title {
        font-size: var(--bw-font-size-20)
    }

    .nav-item .wp-b-orange {
        margin: 0;
    }

    .bw-mobile-nav {
        border-top: 1px solid #efefef;
    }
}

@media (max-width: 768px) {
    .bw-p-author .bw-author {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .bw-p-author .bw-author img {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem
    }

    .bw-p-author .bw-author .content {
        margin-left: 0
    }

    .bw-p-author .bw-author .content article {
        width: 100%
    }
}

@media (max-width: 576px) {
    .bw-static-nav .headline .title {
        font-size: var(--bw-font-size-20)
    }

    .bw-p-author .bw-author img {
        width: 80px;
        height: 80px
    }

    .bw-p-author .bw-author .content .title {
        font-size: var(--bw-font-size-20)
    }

    .bw-p-author .bw-author .content .text {
        font-size: 18px
    }
}

:root {
    --bw-font-size-60: 60px;
    --bw-font-size-48: 48px;
    --bw-font-size-39: 39px;
    --bw-font-size-31: 31px;
    --bw-font-size-25: 25px;
    --bw-font-size-20: 20px;
    --bw-font-size-16: 16px;
    --bw-font-size-14: 14px;
    --bw-font-size-12: 12px;
    --bw-font-size-10: 10px;
    --bw-font-size-8: 8px;
    --bw-font-family-inter: "Inter";
    --bw-primary-black: #000000;
    --bw-primary-orange: #ea5607;
    --bw-natural-white: #ffffff;
    --bw-natural-dark-1: #2b2b2b
}

::-moz-selection {
    background: var(--bw-primary-orange)
}

::selection {
    background: var(--bw-primary-orange)
}

body.overflow-y {
    overflow-y: hidden
}

.homeUserLink:hover {
    text-decoration: none;
}

.wp-b-orange {
    background: #ea5607;
    color: #ffffff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 10px 16px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: var(--bw-font-size-16);
    font-family: var(--bw-font-family-inter);
}

.wp-b-orange:hover {
    outline: 0;
    text-decoration: none;
    color: white;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}


.bw-p-post .cover .thumb img {
    width: 100%;
}


.bw-p-post img {
    width: 100%;
}

.nav-item-b {
    display: flex;
    align-items: center;
}

.nav-item-b span {
    color: #6a6a6a;
    margin: 0 0.3rem;
}

article h2 {
    font-size: 1.4rem;
}

article h3 {
    font-size: 1.2rem;
}

aside {
    margin-bottom: 1rem;
}


.social-share {
    display: flex;
    margin-bottom: 25px;
}

.social-share .social-share-inner {
    padding: 10px;
    box-shadow: 2px 5px 12px 0 rgba(78, 78, 78, 0.16);
    border-radius: 25px;
    background: white;
    z-index: 1;
    display: flex;
}


.social-share span {
    font-size: 12px;
    font-weight: 300;
    margin: 10px 0;
}

.social-share .social-icons {
    display: flex;
}

.social-share .social-icons a:hover {
    text-decoration: none;

    -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
    box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);

    opacity: 1;
    transform: scale(1.1);
}

.social-share .social-icons a {
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding-left: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background: var(--bw-primary-orange);
    color: white;
    height: 30px;
    width: 30px;
}

@media (min-width:768px) {
    .social-share .social-icons a {
        margin: 10px 0;
    }

    .social-share {
        display: block;
        position: absolute;
        top: 0;
        left: -45px;
        bottom: 0;
    }

    .social-share .social-icons {
        display: inline;
        margin: 0;
    }

    .social-share .social-share-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: sticky;
        top: 95px;
    }
}

.aml-kyc {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.aml-kyc .dropdown-item {
    padding: 5px !important;
    width: auto;
}

.warning {
    background: #f5f5f5 !important;
    border-top: 0 !important;

}


.contentDetail {
    margin-right: 15px;

    display: flex;
    color: #6a6a6a;
    font-size: var(--bw-font-size-16);
    display: flex;
    align-items: center;
}

.contentDetail .inner {
    display: flex;
    flex-direction: column;

}

.stickySidebar {
    position: sticky;
    top: 95px;
}

.stickySidebar .bw-card {
    padding: 0;
    margin-bottom: 1rem;
}

.stickySidebar .bw-card h5 {
    font-weight: 500;
    font-size: 14pt;
    line-height: 20pt;
}

.stickySidebar .bw-card .content {
    padding: 16px 10px;

}

.stickySidebar .bw-card .content .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    color: #6A6A6A;
    line-height: 18pt;
    font-size: 11pt;
}

.bar {
    display: block;
    width: 100%;
    height: 16px;
    background: repeating-linear-gradient(45deg, #8d8d8d 0, #fff 5%, #fff 0, #fff 50%) 0/5px 5px;
    margin: 32px 0 0;
}

.previous-post {
    position: fixed;
    bottom: 0;
    width: 730px;
    z-index: 5;
    padding: 10px;
    background: white;
    border-radius: 0 0 4px 4px;
    border: 1px solid #f0f0f0;

    box-shadow: 0 0 10px rgb(222 222 222 / 16%);
    display: flex;
}

.previous-post .inner {
    margin-left: 15px;
}

.previous-post img {
    width: 100px;
    border-radius: 4px;
    object-fit: cover;
}

.previous-post h5 {
    font-weight: 500;
    font-size: 14pt;
    line-height: 20pt;
}

.previous-post span {
    color: var(--bw-primary-orange);
}

.previous-post .progress-bar {
    background-color: #ff66002b;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    transition: width .1s ease;
}

@media (max-width: 1200px) {
    .previous-post {
        width: 609.88px;
    }
}

.bw-p-post .bw-card a {
    color: var(--bw-primary-orange);
}

.size-medium,
.size-large,
.size-full {
    max-width: 100%;
    height: auto;
}

/*# sourceMappingURL=main.min.css.map */

.bw-header .container {max-width:100%;padding:0 20px;}
.bw-header .navbar-logo .logo img {max-height:28px;}
.bw-header .navbar-logo .logo {margin-right:9px;margin-top:-3px;}
.bw-header .navbar-nav .nav-item .nav-link {font-size:13px;font-weight:600;}
/*.bw-header .navbar-nav .nav-item {margin-right:0px !important;}*/
.nav-item .wp-b-orange {font-size:12px;font-weight:600;height:41.5px;padding:0 16px}
.nav-item .wp-b-orange:hover {box-shadow:none;opacity: .8;}
.bw-header .navbar-logo::before {top:-21px;}
/*.bw-header .navbar-nav .nav-item {margin-right:20px;}*/
.navbar {padding:0 0;}
.bw-header .navbar-nav .nav-item .nav-link.disabled {  pointer-events: none;cursor: default;}
.dropdown-menu {min-width:auto;left:-11px;padding-right:0;padding-left:0;}
.dropdown-menu::before {    content: "";
    position: absolute;
    background: #FFFFFF;
    width: 12px;
    height: 10px;
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -6px;
    left: 1rem;
    border-top: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    z-index: 1;}
.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item {padding:4px 20px;font-size:13px;font-weight:600;}
.bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {background:transparent;color:var(--bw-primary-orange);}
.bw-footer .bw-f-logo {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);margin-bottom:0;}
.bw-footer .bw-f-logo svg {-webkit-filter: none;filter: none;color:#000;width:180px !important;height:auto;}
.bw-footer .bw-f-info {color:#717171;font-size: 12px;margin-bottom:8px;}
.bw-footer address {font-size:14px;margin-bottom:14px;}
.bw-footer .social a {margin-right:18px;}
.bw-footer .social a svg {fill:#b1b0af;height:23px;}
.bw-footer .social a svg path {fill:#b1b0af;}
.bw-footer .social a:hover svg path {fill:var(--bw-primary-orange);}

.bw-footer .bw-nav-t {font-size:17px;color:#000000;font-weight: 700;margin-bottom:6px;}
.bw-footer .nav-item .nav-link {font-size:13.5px;color:#000000;line-height:21px;margin-bottom:10px;}
.footer-support {display:flex;flex-direction:column;align-items:baseline;}
.footer-support-item {display:flex;align-items:center;margin-bottom:10px;}
.footer-support-item-icon {display:flex;margin-right:6px;}
.footer-support-item-icon svg {height:15px;color:#b1b0af;}
.footer-support-item-icon path {fill:#b1b0af;}
.footer-support-item span {font-size:13.5px;color:#000000;}
.footer-support-item:hover {text-decoration:none;}
.footer-support-item:hover span {color:var(--bw-primary-orange);}
.footer-etbis {display:inline-block;padding:7px 7px;background:#ebebf0;margin-top:6px;}
.footer-holder svg {max-width:170px !important;}
.footer-bottom-two {    border-top: 1px solid #f4f4f4;
    padding-top: 0;
    margin-top: 16px;}
.footer-bottom {margin-top:0 !important;padding-top:25px !important}
.bw-footer .footer-bottom .nav {justify-content:space-between;}
.bw-footer .footer-bottom .nav-item {margin-right:35px;margin-left:0px;color:#717171;}
.bw-footer .footer-bottom .nav-item .nav-link {font-size:12px !important;}
.bw-footer .footer-bottom .nav-item:last-child {margin-right:0px;}
.bw-static-nav .headline .title h1 {font-size:25px;}

.single-sidebar-header {padding: 1rem 1.2rem;
    color: #8d8d8d;
    background: #efefef;
    font-weight: 700;
font-size: var(--bw-font-size-18);margin-bottom:1rem}

.other-posts {display:flex;justify-content:space-between;margin-top:15px;}
.other-post-item {display:flex;width:calc(50% - 7.5px);background:#fff;padding:10px;border: 1px solid #f0f0f0;box-shadow: 0 0 10px rgb(222 222 222 / 16%);height:100px;align-items:center;border-radius:4px;}
.other-post-item.prev-post {margin-right:auto;}
.other-post-item.next-post {margin-left:auto;}
.other-post-item:hover {}
.other-post-thumb {width:100px;height:80px;border-radius:4px;overflow:hidden;}
.other-post-thumb img {width:100%;height:100%;object-fit:cover;}
.other-post-text {display:flex;flex-direction:column;width:calc(100% - 115px);padding-left:15px;}
.other-post-text span {font-size:14px;color:#ea5607;margin-bottom:3px;}
.other-post-text strong {font-size:15px;line-height:1.2;color:#000000;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.other-post-item:hover {text-decoration:none;}


@media only screen and (max-width: 1024px) {
   .bw-footer .footer-bottom .nav {flex-wrap:wrap;justify-content:center;}
   .hold {display:flex;justify-content:center;}
   .bw-footer .footer-bottom .nav-item {margin:0 17px;}
   .bw-footer .footer-bottom .nav-item:last-child {margin:0 17px;}
   .other-posts {flex-direction:column;}
   .other-post-item {width:100%;margin-bottom:15px;}

}

@media only screen and (max-width: 600px) {
   .bw-footer .footer-bottom .nav {flex-direction:column;align-items: center;}
   .bw-footer .footer-top .social {flex-wrap:wrap;}
   .bw-footer .social a {margin:4px 10px !important;}
   .bw-header .navbar-register {display:flex !important;}
   .bw-header .navbar-register .wp-b-orange {font-size: 12px !important;font-weight: 600;}
   .bw-header .navbar-nav .nav-item .nav-link {padding:7px 30px !important;}
   .bw-header .navbar-nav .nav-item .nav-link:first-child {padding:15px 30px 7px 30px !important;}
   .bw-header .navbar-nav .nav-item .dropdown-menu .dropdown-item {padding:4px 40px !important}
    .bw-header .navbar-nav .nav-item {margin-right: 0px;}
	.bw-header .navbar-nav {    max-height: 68%;
    overflow-x: hidden;
    overflow-y: scroll;}
	.bw-header .navbar-logo .logo img {max-height:22px;}
}