/* in the name of Allah */
:root {
    --plyr-color-main: var(--main-color);
    --plyr-badge-border-radius: var(--border-radius);
    --plyr-control-radius: var(--border-radius);
    --plyr-menu-radius: var(--border-radius);
    --plyr-tooltip-radius: var(--border-radius);
}
#academy-title {
    background-position: center;
    background-size: cover;
    padding: 3rem 0;
    position: relative;
}
#academy-title small {
    color: white;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
#academy-title h1 {
    font-weight: 900;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    line-height: 1.5;
    /*text-shadow: 0 3px var(--text-dark);*/
}
/* 0000000000000000000000000000000000000 */
/*.inactive {*/
    /*filter: grayscale(1);*/
    /*position: relative;*/
/*}*/
.inactive-msg {
    position: fixed;
    /*inset: 60px 0 74px 0;*/
    inset: 0;
    /* background: #00000047; */
    -webkit-backdrop-filter: grayscale(1);
            backdrop-filter: grayscale(1);
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.inactive-text {
    text-align: center;
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow-hover);
            box-shadow: var(--box-shadow-hover);
}
/*.inactive-text i {*/
/*    font-size: 3rem;*/
/*    color: var(--bs-warning);*/
/*    text-shadow: 1px 4px 44px #ffc107;*/
/*}*/
.inactive-text svg {
    display: inline-block;
    width: 100px;
    height: 100px;
}
.inactive-text h5 {
    margin: 1.4rem 0 1rem 0;
}
/* 0000000000000000000000000000000000000 */
#banner {
    min-height: 350px; overflow: hidden;
    border-radius: var(--border-radius);
    background-position: center;
    background-size: cover;
    margin-bottom: 1rem;
}
#banner .banner-overlay {
    position: relative;
    width: 100%; height: 350px;
    /* background-image: linear-gradient(to left, var(--main-color) 0% 30%, transparent 100%); */
    background-image: -o-linear-gradient(135deg, var(--main-color) 0% 10%, transparent 100%);
    background-image: linear-gradient(315deg, var(--main-color) 0% 10%, transparent 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
    /* justify-content: center; color: white; */
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; color: white;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; padding-bottom: 1.5rem;
    padding-right: 1.5rem; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
#banner .banner-overlay .medal {
    position: absolute;
    top: 0; left: 15px;
    width: 80px;
}
#banner .banner-overlay .teez {
    position: absolute;
    width: 40px; height: 40px;
    border: 20px solid var(--body-bgc);
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    top: calc(50% - 20px);
    left: 0%;
}
#banner .banner-overlay .h1 {
    font-weight: 900;
    text-shadow: -3px 3px 0px #00895f;
}
#banner .banner-overlay small {
    max-width: 300px;
}
/* 0000000000000000000000000000000000000 */
#academy-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: var(--border-radius);
    background-color: #fff;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
}
#academy-meta .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1rem 1rem;
}
#academy-meta .wrap:last-child {
    margin-bottom: 0;
}
#academy-meta .wrap span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--main2-color);
    border-radius: 20rem;
    width: 30px;
    height: 30px;
}
#academy-meta .wrap i {
    color: var(--main-color);
}
#academy-meta .wrap small {
    margin: 0 5px;
}
/* 0000000000000000000000000000000000000 */
.nav-pills .nav-link {
    color: var(--text-dark);
    border-radius: var(--border-radius);
    overflow: hidden; position: relative;
}
.nav-pills .nav-link::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    width: 50px;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-pills .nav-link:hover::after {
    left: 120%;
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    border-radius: var(--border-radius);
    color: var(--text-light);
    background-color: var(--main-color);
    position: relative;
}
.nav-link:focus, .nav-link:hover {
    color: var(--text-dark);
    background-color: var(--main2-color);
}
#detail .nav{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: var(--border-radius);
    background-color: #fff;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}
/* 0000000000000000000000000000000000000 */
.tab-pane {
    border-radius: var(--border-radius);
    background-color: #fff;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
    background-image: url(../img/tab-pane-bg.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 250px;
    position: relative;
}
.tab-pane#about {
    line-height: 2;
}
.tab-pane#attributes {
    padding: 0;
}
/* 0000000000000000000000000000000000000 */
.included .item, .not-included .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-dark);
}
.included .item:not(:last-child), .not-included .item:not(:last-child) {
    margin-bottom: 15px;
}
.included .item span, .not-included .item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20rem;
    background-color: var(--main2-color);
    width: 25px; height: 25px;
    margin-left: 10px;
}
.included .item i {
    color: var(--main-color);
}
.not-included .item span {
    background-color: rgb(255 212 212);
}
.not-included .item i {
    color: rgb(229, 0, 0);
}
/* 0000000000000000000000000000000000000 */
#about .plyr {
    border-radius: var(--border-radius);
}
/* 0000000000000000000000000000000000000 */
.attribute-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1rem;
}
.attribute {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.attribute:not(:last-child) {
    margin-bottom: 20px;
}
.attribute img {
    width: 30px;
    margin-left: 10px;
}
.attribute i {
    margin-right: 10px;
    color: var(--main-color);
}
/* 0000000000000000000000000000000000000 */
#contact-info .table {
    margin: 0;
}
#contact-info .table i {
    color: var(--main-color);
    margin-left: 5px;
    vertical-align: middle;
}
#contact-info .table a {
    font-size: 1.2rem;
}
/* 0000000000000000000000000000000000000 */
#gallery {
    padding: 0;
    /*overflow: hidden;*/
    position: relative;
}
.swiper-gallery-next i, .swiper-gallery-prev i {
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border: 0;
    background-color: var(--main-color);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px;
}
.swiper-gallery-next.swiper-button-disabled, .swiper-gallery-prev.swiper-button-disabled {
    opacity: 0; visibility: hidden;
}
.swiper-gallery-prev i {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    right: 0;
}
.swiper-gallery-next i {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    left: 0;
}
#gallery .full-screen {
    position: absolute;
    top: 0; right: 0;
    color: var(--text-light);
    z-index: 2; cursor: pointer;
    background-color: var(--main-color);
    border-top-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    padding: 7px;
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#gallery .owl-item {
    overflow: hidden;
}
.gallery-wrap a, .gallery-thumbs .img-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.gallery-wrap a {
    height: 200px;
}
.gallery-wrap img {
    max-width: 100%;
    max-height: 100%;
}
.gallery-wrap video {
    max-width: 100%;
    max-height: 100%;
}
.gallery-top {
    height: 80%;
    width: 100%;
}
.gallery-thumbs {
    height: 20%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
}
.gallery-thumbs .img-wrap {
    height: 50px;
}
.gallery-thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}
.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}
/* 0000000000000000000000000000000000000 */
.mfp-bg {
    z-index: 10042;
}
.mfp-wrap {
    z-index: 10043;
}
.mfp-content {
    z-index: 10045;
}
.mfp-preloader {
    z-index: 10044;
}
button.mfp-close, button.mfp-arrow {
    z-index: 10046;
}
/* -------------------------------------------------- */
#map {
    border-radius: var(--border-radius);
    border: 2px solid var(--main-color);
    min-height: 400px;
    width: 100%; margin-top: 0.5rem;
}
/* 0000000000000000000000000000000000000 */
.rate {
    margin-bottom: 0;
}
.rate .rate-average-wrap {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rate .rate-average {
    text-align: center; position: relative;
    border-radius: var(--border-radius);
    border: 1px solid #d3d3d3;
    padding: 1.8rem 1rem 1rem; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.rate .rate-average i {
    position: absolute;
    color: gold;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0px 5px 20px #ffe662;
    top: -24px; left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.rate .rate-average .rate-number {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: -10px;
}
.rate .rate-average .rate-number small {
    font-size: 2rem;
    font-weight: normal;
}
.comments .comment-form {
    margin: 0 0 1rem 0;
    background-color: white;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: 0;
}
.comments .comment-list {
    padding: 0;
    overflow: initial;
}
.comments .comment-list .comment {
    border: 1px solid transparent;
    padding: 1rem;
    background-color: white;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
.comments .comment-list .comment.answer {
    border-color: var(--main-color);
}
.comments .comment-list .comment.answer::before {
    top: -14px;
}
.rate .modal .modal-title small {
    font-size: .9rem;
}
#comment-form .btn {
    min-width: 79.33px;
}
#comment-form .btn i {
    vertical-align: middle;
}
/* 0000000000000000000000000000000000000 */
.rate-detail .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.rate-detail .item:not(:last-child) {
    margin-bottom: 1rem;
}
.rate-detail .prog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rate-detail .prog .progress {
    width: 90%; margin-left: 10px;
    height: 0.5rem;
}
/* 0000000000000000000000000000000000000 */
.range-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.range-item:not(:last-child) {
    margin-bottom: 1rem;
}
.range-item input {
    width: 95%;
    margin-left: 5px;
    -webkit-appearance: none;
    height: 8px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.9;
    -webkit-transition: .2s;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    border-radius: 20rem;
}
.range-item input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 20rem;
}
.range-item input#attr1 {
    background: #569afe
}
.range-item input::-webkit-slider-thumb {
    /*background: #0d6efd;*/
    background: #4d4d4d;
}

.range-item input#attr2 {
    background: #5eab88
}
/*.range-item input#attr2::-webkit-slider-thumb {*/
/*    background: #198754;*/
/*}*/

.range-item input#attr3 {
    background: #ffd452
}
/*.range-item input#attr3::-webkit-slider-thumb {*/
/*    background: #ffc107;*/
/*}*/

.range-item input#attr4 {
    background: #56daf5
}
/*.range-item input#attr4::-webkit-slider-thumb {*/
/*    background: #0dcaf0;*/
/*}*/

.range-item input#attr5 {
    background: #e7727d
}
/*.range-item input#attr5::-webkit-slider-thumb {*/
/*    background: #dc3545;*/
/*}*/

.range-item .value {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}
/* 0000000000000000000000000000000000000 */
#sidebar .position-sticky {
    top: calc(85px + 1rem);
}
.follow-btn {
    width: 100%;
    font-size: larger;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}
.follow-btn i {
    vertical-align: middle;
    margin-left: 0.5rem;
    font-size: 1.6rem;
}
#sidebar .academy-info {
    position: relative;
}
#sidebar .academy-info .medal {
    position: absolute;
    top: 0; left: 15px;
    width: 50px;
}
#sidebar .academy-info .logo {
    max-width: 150px;
    max-height: 130px;
    margin: 0 auto 10px;
    display: block;
}
#sidebar .academy-info .name {
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
}
#sidebar .academy-info .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#sidebar .academy-info .info:not(:last-child) {
    margin-bottom: 0.6rem;
}
#sidebar .academy-info .info a {
    display: block;
    color: inherit;
    -webkit-transition-duration: var(--tr-du);
    -o-transition-duration: var(--tr-du);
    transition-duration: var(--tr-du);
}
#sidebar .academy-info .info a:hover {
    color: var(--main-color);
}
#sidebar .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20rem;
    background-color: var(--main2-color);
    width: 40px;
    height: 40px;
    margin-left: 10px;
    font-size: 1.4rem;
    color: var(--main-color);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
/* 0000000000000000000000000000000000000 */
#sidebar .academy-cats .cats-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#sidebar .academy-cats .cats-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#sidebar .academy-cats .cats-wrap .cat{
    margin: 0 0 0.3rem 0.3rem;
}
/* 0000000000000000000000000000000000000 */
#sidebar .academy-manager .avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.8rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}
#sidebar .academy-manager .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--text-dark);
    -webkit-transition-duration: var(--tr-du);
         -o-transition-duration: var(--tr-du);
            transition-duration: var(--tr-du);
}
#sidebar .academy-manager .name:hover {
    color: var(--main-color);
}
#sidebar .academy-manager .name h6 {
    margin: 0 0.4rem 0 0;
}
#sidebar .socials {
    text-align: center;
}
#sidebar .socials i {
    color: var(--text-dark);
    font-size: 1.7rem;
    -webkit-transition-duration: var(--tr-du);
    -o-transition-duration: var(--tr-du);
    transition-duration: var(--tr-du);
}
#sidebar .socials i:hover {
    color: var(--main-color);
}
#sidebar .socials a:not(:last-child) {
    margin-left: 5px;
}
/* 0000000000000000000000000000000000000 */
#sidebar .blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: var(--border-radius);
    border: 1px solid var(--bc);
    -webkit-transition-duration: var(--tr-du);
    -o-transition-duration: var(--tr-du);
    transition-duration: var(--tr-du);
}
#sidebar .blog-card:hover {
    border: 1px solid var(--bc);
}
#sidebar .blog-card:not(:last-child) {
    margin-bottom: 0.5rem;
}
#sidebar .blog-card .poster {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    background-position: center;
    background-size: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 10px;
}
#sidebar .blog-card .title {
    font-size: .9rem;
    color: var(--text-dark);
    -webkit-transition-duration: var(--tr-du);
    -o-transition-duration: var(--tr-du);
    transition-duration: var(--tr-du);
}
#sidebar .blog-card:hover .title {
    color: var(--main-color);
}
/* 0000000000000000000000000000000000000 */
.academy-courses .course-items .card {
    margin-left: 1.5rem;
}
.academy-courses .course-items .col:last-child .card {
    margin-left: 0;
}
/* 0000000000000000000000000000000000000 */
.comments {
    /*background-color: var(--text-light);*/
}
/* 0000000000000000000000000000000000000 */


/* =========== medias =========== */
@media (min-width:768px) {
    #academy-meta {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    #academy-meta .wrap {
        margin-bottom: 0;
        margin-left: 1.5rem;
    }
    #academy-meta .wrap:not(:last-child) {
        margin-bottom: 0;
    }
    #detail .nav{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .nav-pills .nav-link.active {
        -webkit-box-shadow: var(--box-shadow);
        box-shadow: var(--box-shadow);
    }
    .nav-pills .nav-link:not(.active) {
        background-color: var(--main2-color);
    }
    .nav-pills .nav-link:not(.active):hover {
        background-color: var(--main-color);
        color: var(--text-light);
    }
    .nav-item:not(:last-child) .nav-link {
        border-left: 1px solid var(--bc);
    }
    .nav-item:not(:last-child) {
        margin-left: 1rem;
    }
    #attributes {
        padding-bottom: 0;
    }
    .attribute-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-bottom: 0;
    }
    .attribute {
        width: 50%;
        margin-bottom: 25px !important;
    }
    .gallery-wrap a {
        height: 250px;
    }

    .tab-pane.active.show::before {
        content: '';
        position: absolute;
        top: -16px;
        width: 20px;
        height: 20px;
        border: 10px solid var(--main-color);
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-right-color: transparent;
    }
    .tab-pane:nth-child(1).active.show::before {
        right: 11.3%;
    }
    .tab-pane:nth-child(2).active.show::before {
        right: 38.8%;
    }
    .tab-pane:nth-child(3).active.show::before {
        right: 63.1%;
    }
    .tab-pane:nth-child(4).active.show::before {
        right: 87.1%;
    }
    .academy-courses .card {
        margin-bottom: 0;
    }
}
@media (min-width:992px) {
    .nav-link {
        padding: 0.8rem 1rem;
        font-weight: bold;
    }
    .gallery-wrap a {
        height: 400px;
    }
    .gallery-thumbs .img-wrap {
        height: 100px;
    }
    #sidebar .blog-card {
        border: 1px solid transparent;
    }
    .academy-courses .card {
        margin-bottom: 1.5rem;
    }
}
@media (min-width:1200px) {
    .attribute {
        width: 33.333333%;
    }
    #detail .container-fluid, .comments .container-fluid {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
    .comments .comment-list .comment.answer::before {
        top: -17px;
        height: 17px;
    }
    #comment-form .btn {
        min-width: 98.11px;
    }
}
/* =========== medias =========== */