/*----------------------------------------*/
/*  MAIN -> COLORS
/*----------------------------------------*/

.main-blue {
    color: #00bfff !important;
}
.main-a-blue {
    color: #00bfff !important;
}
.main-a-blue:hover {
    color: #ffaf23 !important;
}

.main-grey {
    color: #a9b0bc !important;
}
.main-a-grey {
    color: #a9b0bc !important;
}
.main-a-grey:hover {
    color: #ffaf23 !important;
}

.main-green {
    color: #32cd32 !important;
}
.main-a-green {
    color: #32cd32 !important;
}
.main-a-green:hover {
    color: #ffaf23 !important;
}

.main-green-light {
    color: #baebba !important;
}
.main-a-green-light {
    color: #baebba !important;
}
.main-a-green-light:hover {
    color: #ffaf23 !important;
}

.main-red {
    color: #ff0000 !important;
}
.main-a-red {
    color: #ff0000 !important;
}
.main-a-red:hover {
    color: #ffaf23 !important;
}

.main-red-dark {
    color: #e0103a !important;
}
.main-a-red-dark {
    color: #e0103a !important;
}
.main-a-red-dark:hover {
    color: #ffaf23 !important;
}

.main-red-medium {
    color: #ff4b4b !important;
}
.main-a-red-medium {
    color: #ff4b4b !important;
}
.main-a-red-medium:hover {
    color: #ffaf23 !important;
}

.main-red-light {
    color: #ffaeae !important;
}
.main-a-red-light {
    color: #ffaeae !important;
}
.main-a-red-light:hover {
    color: #ffaf23 !important;
}

.main-orange {
    color: #ffaf23 !important;
}
.main-a-orange {
    color: #ffaf23 !important;
}
.main-a-orange:hover {
    color: #00bfff !important;
}

.main-white {
    color: #fff !important;
}
.main-a-white {
    color: #fff !important;
}
.main-a-white:hover {
    color: #ffaf23 !important;
}

.main-grey-light {
    color: var(--tg-body-color) !important;
}
.main-a-grey-light {
    color: var(--tg-body-color) !important;
}
.main-a-grey-light:hover {
    color: #ffaf23 !important;
}

.main-grey-dark {
    color: #777777 !important;
}
.main-a-grey-dark {
    color: #777777 !important;
}
.main-a-grey-dark:hover {
    color: #ffaf23 !important;
}

.main-yellow {
    color: #fffb00 !important;
}
.main-a-yellow {
    color: #fffb00 !important;
}
.main-a-yellow:hover {
    color: #ffaf23 !important;
}

.main-black {
    color: #000 !important;
}
.main-a-black {
    color: #000 !important;
}
.main-a-black:hover {
    color: #ffaf23 !important;
}

.main-purple {
    color: #d100b5 !important;
}
.main-a-purple {
    color: #d100b5 !important;
}
.main-a-purple:hover {
    color: rgb(230, 0, 199) !important;
}

/*----------------------------------------*/
/*  FLEX BOX
/*----------------------------------------*/

.flex-box-column {
    display: flex;
    flex-direction: column;
}

.flex-box-row {
    display: flex;
    flex-direction: row;
}

.flex-box-content {
    display: flex;
}

/*----------------------------------------*/
/*  BUTTONS
/*----------------------------------------*/

.main-button {
    display: block;
    background: var(--tg-common-color-blzblue);
    color: var(--tg-common-color-white);
    font-family: var(--tg-heading-font-family);
    font-weight: var(--tg-fw-bold);
    text-transform: none;
    border: 3px solid var(--tg-common-color-blzblue);
    padding: 12px 15px;
    font-size: 17px;
    letter-spacing: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 0 auto 0 auto !important;
}
@media (max-width: 767.98px) {
    .main-button {
        padding: 12px 32px;
    }
}
.main-button:hover {
    background: var(--tg-common-color-blzblue);
    color: var(--tg-common-color-white);
    border: 3px solid #47a6ff;
}
.main-button:disabled {
    background-color: #43474b;
    border: 3px solid #323538;
    color: #818181;
}

.login-button, .register-button, .content-button {
    width: 100% !important;
    max-width: 500px;
    margin: 30px auto 0 auto !important;
}

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

.breadcrumb-area {
    min-height: 200px;
    padding: 70px 0 80px 0;
    border-top: 1px solid #151d23;
}

.breadcrumb i {
    font-size: 8px;
    margin: 0 8px;
    vertical-align: 2px;
}

.breadcrumb-item a {
    color: #fff;
    text-underline-offset: 5px;
}
.breadcrumb-item a:hover {
    color: var(--tg-theme-primary);
    text-decoration: underline;
}

.breadcrumb__content .breadcrumb .breadcrumb-item.active {
    color: var(--tg-theme-primary);
}

/*----------------------------------------*/
/*  HOME -> TOP -> TABS
/*----------------------------------------*/

.about-area-custom {
    margin-top: 120px;
}
@media (max-width: 767.98px) {
    .about-area-custom {
        margin-top: 80px;
    }
}

.about__tab-wrap .nav-tabs {
    justify-content: flex-start;
    padding: 0;
    position: relative;
    gap: 15px;
}
@media (max-width: 1199.98px) {
    .about__tab-wrap .nav-tabs {
        gap: 15px 30px;
    }
}
@media (max-width: 767.98px) {
    .about__tab-wrap .nav-tabs {
        gap: 20px 25px;
    }
}

.about__tab-wrap .nav-tabs .nav-item .nav-link {
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 7px 15px;
    color: #00bfff;
}
.about__tab-wrap .nav-tabs .nav-item .nav-link:hover {
    border: 1px solid #333333;
}
.nav-tabs .nav-link.active {
    color: #a9b0bc !important;
    background: #131c22;
}

.about__area .tab-content {
    margin: 25px 0 0;
    position: relative;
    overflow: hidden;
}

/*----------------------------------------*/
/*  HOME -> FREE TRIAL
/*----------------------------------------*/

.free-trial-section {
    margin: -25px 0 100px 0;
    justify-content: center;
    align-items: center;
}

.free-trial-button {
    background: var(--tg-theme-primary);
    color: #000;
    border: 3px solid var(--tg-theme-primary);
    /* filter: drop-shadow(2px 2px 1rem #36464d); */
    filter: drop-shadow(0 0 1rem #36464d);
}

.free-trial-button:hover {
    background: var(--tg-theme-primary);
    color: #000;
    border: 3px solid #fe9401;
}

/*----------------------------------------*/
/*  HOME -> BOTTOM -> SCOPE
/*----------------------------------------*/

.roadmap-image {
    border-width: 1px;
    border-style: solid;
    border-top: none;
    border-left: none;
    border-right: none;
    border-image: linear-gradient(to right, transparent 0%, var(--tg-theme-primary) 50%, transparent 100%) 0 0 100% 0;
}

/*----------------------------------------*/
/*  FEATURES -> BOXES
/*----------------------------------------*/

.blog-post-content {
    clip-path: none;
    --webkit-clip-path: none;
    border-radius: 5px;
    text-align: center;
}

.blog-post-content-bg {
    background-image: url('/../img/features/bar.png');
    background-repeat: no-repeat;
    background-position: top;
    filter: drop-shadow(2px 2px 0.5rem #000);
}

.blog-post-content-anchor {
    position: absolute;
    background: #ff0000;
    height: 0;
    width: 0;
    margin-top: -50px;
    top: 0;
    left: 0;
}

.blog-post-content p {
    margin: 0;
    text-align: center;
}

.blog-post-thumb img {
    filter: drop-shadow(2px 2px 0.5rem #000);
}

@media (max-width: 991.98px) {
    .blog-sidebar {
        margin: 25px 0 10px;
    }
}

/*----------------------------------------*/
/*  FAQ
/*----------------------------------------*/

.faq-area
{
    padding: 100px 0;
}